wails-vite-vue-ts/frontend/package.tmpl.json

23 lines
458 B
JSON
Raw Permalink Normal View History

2023-02-19 15:20:29 +00:00
{
"name": "{{.ProjectName}}",
"private": true,
2023-02-19 16:04:11 +00:00
"version": "0.0.1",
"author": "{{.AuthorName}}",
"type": "module",
2023-02-19 15:20:29 +00:00
"scripts": {
"dev": "vite build --watch",
"type-check": "vue-tsc --noEmit",
2023-02-19 16:04:11 +00:00
"build": "vite build",
"preview": "vite preview"
2023-02-19 15:20:29 +00:00
},
"dependencies": {
2023-02-19 16:04:11 +00:00
"vue": "^3.2.45"
2023-02-19 15:20:29 +00:00
},
"devDependencies": {
2023-02-19 16:04:11 +00:00
"@vitejs/plugin-vue": "^4.0.0",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vue-tsc": "^1.0.24"
2023-02-19 15:20:29 +00:00
}
}