mirror of
https://github.com/linshenkx/prompt-optimizer.git
synced 2026-05-07 14:06:53 +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
27 lines
629 B
JSON
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"
|
|
}
|
|
}
|