Files
prompt-optimizer/packages/web/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

27 lines
629 B
JSON

{
"name": "@prompt-optimizer/web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --force",
"build": "vite build",
"preview": "vite preview",
"typecheck": "vue-tsc --noEmit -p tsconfig.typecheck.json",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run tests/unit"
},
"dependencies": {
"@prompt-optimizer/ui": "workspace:*",
"vue": "^3.5.31"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.5",
"jsdom": "^29.0.1",
"vite": "^8.0.3",
"vitest": "^4.1.2"
}
}