forked from realcodestudio/EcDashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.15 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "desktopstatus",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build && tauri build",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"@headlessui/vue": "^1.7.19",
"@heroicons/vue": "^2.1.1",
"@vueuse/core": "^10.9.0",
"axios": "^1.6.7",
"chart.js": "^4.4.1",
"pinia": "^2.1.7",
"vue": "^3.4.21",
"vue-chartjs": "^5.3.0"
},
"devDependencies": {
"@tauri-apps/api": "^1.5.3",
"@tauri-apps/cli": "^1.5.9",
"@types/node": "^20.11.24",
"@vitejs/plugin-vue": "^5.0.4",
"autoprefixer": "^10.4.18",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2",
"vite": "^5.1.4",
"vue-tsc": "^1.8.27"
},
"build": {
"appId": "com.desktopstatus.app",
"productName": "Desktop Status",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"mac": {
"category": "public.app-category.utilities"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage"
}
}
}