- Adds basic project structure for Tauri and Vue - Configures the Vite, TypeScript, and Vuetify environments - Implements basic spray-on components and Rust backend logic - Sets up routing, plugins, and the style system
40 lines
989 B
JSON
40 lines
989 B
JSON
{
|
|
"name": "spary",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc --noEmit && vite build",
|
|
"preview": "vite preview",
|
|
"tauri": "tauri"
|
|
},
|
|
"dependencies": {
|
|
"@fontsource/roboto": "5.2.7",
|
|
"@mdi/font": "7.4.47",
|
|
"vue": "^3.5.21",
|
|
"vue-router": "^4.5.1",
|
|
"vuetify": "^3.10.1",
|
|
"@tauri-apps/api": "^2",
|
|
"@tauri-apps/plugin-opener": "^2"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/node22": "^22.0.0",
|
|
"@types/node": "^22.9.0",
|
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
"@vue/tsconfig": "^0.8.1",
|
|
"eslint": "^9.35.0",
|
|
"eslint-config-vuetify": "^4.2.0",
|
|
"npm-run-all2": "^8.0.4",
|
|
"sass-embedded": "^1.92.1",
|
|
"typescript": "~5.9.2",
|
|
"unplugin-fonts": "^1.4.0",
|
|
"unplugin-vue-components": "^29.0.0",
|
|
"unplugin-vue-router": "^0.15.0",
|
|
"vite": "^7.1.5",
|
|
"vite-plugin-vuetify": "^2.1.2",
|
|
"vue-tsc": "^3.0.7",
|
|
"@tauri-apps/cli": "^2"
|
|
}
|
|
}
|