mirror of
https://github.com/linshenkx/prompt-optimizer.git
synced 2026-05-23 04:49:52 +08:00
- restore locale bootstrap defaults across UI and MCP startup paths - localize template, context editor, favorites, Prompt Garden, and history feedback toasts - isolate UI consumer typechecks needed by the localization rollout - add regression tests covering english-first runtime behavior and localized fallbacks
28 lines
671 B
JSON
28 lines
671 B
JSON
{
|
|
"name": "@prompt-optimizer/extension",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"typecheck": "vue-tsc --noEmit -p tsconfig.typecheck.json",
|
|
"test": "vitest",
|
|
"test:coverage": "vitest run --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@prompt-optimizer/ui": "workspace:*",
|
|
"vue": "^3.5.31"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/node22": "^22.0.5",
|
|
"@types/node": "^22.19.15",
|
|
"@vitejs/plugin-basic-ssl": "^2.3.0",
|
|
"@vitejs/plugin-vue": "^6.0.5",
|
|
"@vue/tsconfig": "^0.9.1",
|
|
"vite": "^8.0.3",
|
|
"vitest": "^4.1.2"
|
|
}
|
|
}
|