- Remove noautoinject Wails scripts from config.html (Vite 6 requires type="module" on all script tags; Wails auto-injects them anyway). - Replace vite-tsconfig-paths plugin with Vite native resolve.alias, fixing path alias resolution that was silently broken during builds. - Remove unused vite-tsconfig-paths dependency.
26 lines
532 B
JSON
26 lines
532 B
JSON
{
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@awesome.me/webawesome": "^3.2.1",
|
|
"@lit-labs/signals": "^0.1.2",
|
|
"htmx.org": "2.0.4",
|
|
"lit": "^3.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"stylelint-config-standard": "^38.0.0",
|
|
"ts-lit-plugin": "^2.0.2",
|
|
"typescript-lit-html-plugin": "^0.9.0",
|
|
"vite": "^6.3.5",
|
|
"vite-plugin-static-copy": "^2.3.1"
|
|
},
|
|
"stylelint": {
|
|
"extends": [
|
|
"stylelint-config-standard"
|
|
]
|
|
}
|
|
}
|