Files
mealplanner/frontend/package.json
Claude 16a8bb1ae5 fix: separate typecheck from build, add tsconfig.node.json
vue-tsc fails in Docker bun:1 image due to module resolution.
Split into build (vite only) and typecheck scripts. Added missing
tsconfig.node.json referenced by tsconfig.json.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-16 07:09:15 +00:00

26 lines
529 B
JSON

{
"name": "mealplanner-frontend",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"typecheck": "vue-tsc --noEmit",
"preview": "vite preview"
},
"dependencies": {
"vue": "^3.5.0",
"vue-router": "^4.0.0",
"pinia": "^2.0.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.0",
"@tailwindcss/vite": "^4.0.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vue-tsc": "^2.0.0"
}
}