Files
prompt-optimizer/packages/extension/package.json
linshen 54fbd76685 fix(i18n): restore locale defaults and localized feedback
- 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
2026-04-09 22:17:34 +08:00

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"
}
}