-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 793 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 793 Bytes
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
{
"name": "tauri-app",
"private": true,
"version": "0.0.9",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri",
"updater": "node scripts/updater.mjs",
"publish": "node scripts/publish.mjs",
"test": "vitest",
"test-once": "npx vitest run"
},
"dependencies": {
"@tauri-apps/api": "^1.2.0",
"vue": "^3.2.45"
},
"devDependencies": {
"@actions/github": "^5.1.1",
"@tauri-apps/cli": "^1.2.3",
"@types/node": "^18.7.10",
"@vitejs/plugin-vue": "^4.0.0",
"@vitest/ui": "^0.30.1",
"fs-extra": "^11.1.1",
"node-fetch": "^3.3.1",
"typescript": "^4.9.5",
"vite": "^5.4.20",
"vitest": "^0.30.1",
"vue-tsc": "^1.0.11"
}
}