Files
sfxkeeb/frontend/package.json
T
end 286167d4a6 fix(wails): add build:dev script for wails3 dev
Wails dev mode runs npm run build:dev before starting the app. Add the
script expected by the Taskfile so wails3 dev succeeds.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-29 22:36:21 -07:00

24 lines
703 B
JSON

{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build:dev": "vite build --minify false --mode development && cp -r ../assets dist/assets",
"build": "vite build --mode production && cp -r ../assets dist/assets",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^7.1.2",
"@tsconfig/svelte": "^5.0.8",
"@types/node": "^24.12.3",
"@wailsio/runtime": "^3.0.0-alpha.95",
"svelte": "^5.55.5",
"svelte-check": "^4.4.8",
"typescript": "~6.0.2",
"vite": "^8.0.12"
}
}