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

21 lines
407 B
JSON
Raw Normal View History

2023-02-19 15:20:29 +00:00
{
"name": "{{.ProjectName}}",
"version": "0.1.0",
"author": "{{.AuthorName}}",
"private": true,
"scripts": {
"dev": "vite build --watch",
"type-check": "vue-tsc --noEmit",
"build": "vite build"
},
"dependencies": {
"vue": "^3.2.13"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.9.0",
"typescript": "^4.4.3",
"vite": "^2.5.10",
"vue-tsc": "^0.3.0"
}
}