-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.53 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
{
"name": "7dmap",
"version": "0.1.7",
"author": "zzy77@qq2673926013",
"description": "7日杀地图查看器",
"private": true,
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"start": "nodemon --exec electron . --watch ./ --ext .js,.html,.vue,.css",
"elec-build": "electron-builder"
},
"dependencies": {
"child_process": "^1.0.2",
"csv-parse": "^5.5.3",
"element-plus": "^2.5.4",
"gm": "^1.25.0",
"jimp": "^0.22.10",
"pinia": "^2.1.7",
"sax": "^1.3.0",
"vue": "^3.3.11",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.5.2",
"electron": "^28.1.3",
"electron-builder": "^24.9.1",
"unplugin-auto-import": "^0.17.3",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.10"
},
"build": {
"appId": "com.zzy77.7dmap",
"productName": "7dmap",
"directories": {
"output": "build"
},
"files": [
"dist/**/*",
"public/**/*",
"electron/**/*",
"package.json"
],
"extraFiles": [
{
"from": "src/res",
"to": "res",
"filter": [
"**/*"
]
},
{
"from": "src/assets",
"to": "assets"
},
{
"from": "ImgProcess.exe",
"to": "ImgProcess.exe"
}
],
"win": {
"target": "nsis",
"icon": "src/assets/favicon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
}
}