-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.72 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "Electron-Vue3-Vite",
"version": "0.0.0",
"private": true,
"main": "dist-electron/index.js",
"scripts": {
"dev": "chcp 65001 && vite",
"build": "vite build && electron-builder",
"preview": "vite preview"
},
"dependencies": {
"axios": "^1.4.0",
"cross-env": "^7.0.3",
"dayjs": "^1.11.7",
"element-plus": "^2.3.4",
"path": "^0.12.7",
"pinia": "^2.0.35",
"sass": "^1.62.1",
"vite-plugin-compression": "^0.5.1",
"vue": "^3.2.47",
"vue-router": "^4.1.6"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.2.1",
"electron": "^22.0.0",
"electron-builder": "^23.6.0",
"unplugin-element-plus": "^0.7.1",
"vite": "^4.3.4",
"vite-plugin-electron": "^0.11.2",
"vite-plugin-electron-renderer": "^0.14.2"
},
"build": {
"appId": "com.electron.desktop",
"productName": "x-inspect",
"asar": true,
"copyright": "Copyright © 2023 electron",
"directories": {
"output": "release/"
},
"files": [
"dist",
"dist-electron"
],
"mac": {
"artifactName": "${productName}_${version}.${ext}",
"target": [
"dmg"
]
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"ia32",
"x64"
]
}
],
"artifactName": "${productName}_${version}.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": false
},
"publish": [
{
"provider": "generic",
"url": "http://127.0.0.1:8080"
}
],
"releaseInfo": {
"releaseNotes": "版本更新的具体内容"
}
}
}