feat: initialize Tauri v2 + Vue 3 project

This commit is contained in:
Your Name
2026-02-17 17:46:39 +02:00
parent e3070461c7
commit 051de9604b
11 changed files with 7787 additions and 0 deletions

34
package.json Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "zeroclock",
"version": "1.0.0",
"description": "Time tracking desktop application",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"vue": "^3.5.0",
"vue-router": "^4.5.0",
"pinia": "^2.3.0",
"@vueuse/core": "^12.0.0",
"chart.js": "^4.4.0",
"vue-chartjs": "^5.3.0",
"jspdf": "^2.5.0",
"lucide-vue-next": "^0.400.0",
"shadcn-vue": "^2.4.3",
"@tauri-apps/api": "^2.2.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2.2.0",
"@vitejs/plugin-vue": "^5.2.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vue-tsc": "^2.2.0",
"tailwindcss": "^4.0.0",
"@tailwindcss/vite": "^4.0.0",
"autoprefixer": "^10.4.0"
}
}