c98db303d0
Frontend is pure JS (no .ts/JSDoc); CI never ran vue-tsc. Removed the devDep and its orphaned `check` script instead of bumping to v3, and updated the ci.yml comment to match. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
32 lines
644 B
JSON
32 lines
644 B
JSON
{
|
|
"name": "fabledcurator-frontend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"test:unit": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"vue": "^3.4.0",
|
|
"vue-router": "^4.3.0",
|
|
"pinia": "^2.1.0",
|
|
"vuetify": "^3.5.0",
|
|
"@mdi/font": "^7.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
"vite": "^8.0.0",
|
|
"vite-plugin-vuetify": "^2.0.0",
|
|
"sass": "^1.71.0",
|
|
"vitest": "^4.0.0",
|
|
"@vue/test-utils": "^2.4.0",
|
|
"happy-dom": "^20.0.0"
|
|
}
|
|
}
|