-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.46 KB
/
package.json
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
55
56
57
58
59
60
{
"name": "ddu",
"type": "module",
"version": "0.1.9",
"private": true,
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "echo 'eslint'",
"lint:fix": "eslint . --fix",
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "^2.2.0",
"@tauri-apps/plugin-autostart": "~2.0.0",
"@tauri-apps/plugin-clipboard-manager": "^2.2.0",
"@tauri-apps/plugin-dialog": "~2.0.2",
"@tauri-apps/plugin-fs": "~2.0.4",
"@tauri-apps/plugin-global-shortcut": "~2.0.0",
"@tauri-apps/plugin-os": "~2.0.0",
"@tauri-apps/plugin-positioner": "~2.0.1",
"@tauri-apps/plugin-shell": "^2.2.0",
"@tauri-apps/plugin-store": "~2.1.0",
"@tauri-apps/plugin-window-state": "~2.2.0",
"@vueuse/core": "^11.3.0",
"vue": "^3.5.13"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.0",
"@tauri-apps/cli": "^2.2.2",
"@types/node": "^22.10.2",
"@unocss/eslint-config": "^0.64.1",
"@unocss/preset-mini": "^0.64.1",
"@vitejs/plugin-vue": "^5.2.1",
"eslint": "^9.16.0",
"unocss": "^0.64.1",
"vite": "^6.0.3",
"vue-tsc": "^2.1.10"
},
"dmg": {
"background": "./images/",
"windowSize": {
"width": 200,
"height": 150
},
"windowPosition": {
"x": 400,
"y": 400
},
"appPosition": {
"x": 180,
"y": 220
},
"applicationFolderPosition": {
"x": 480,
"y": 220
}
}
}