-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1001 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1001 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "pvzge-electron-app",
"version": "0.5.0",
"description": "PvZ Gardendless running in Electron",
"main": "main.js",
"scripts": {
"start": "electron .",
"build:linux": "electron-builder --linux --x64",
"build:win": "electron-builder --win --x64",
"build:mac": "electron-builder --mac --x64"
},
"author": "Gaozih",
"license": "ISC",
"devDependencies": {
"electron": "^31.0.1",
"electron-builder": "^26.0.12"
},
"build": {
"appId": "com.gaozih.pvzge",
"productName": "PvZ Gardendless",
"files": [
"pvzge_web/docs/**/*",
"assets/icons/**",
"main.js",
"package.json"
],
"directories": {
"output": "release"
},
"linux": {
"target": "AppImage",
"category": "Game",
"icon": "assets/icons/icon.png"
},
"win": {
"target": "portable",
"icon": "assets/icons/icon.ico"
},
"mac": {
"target": "dmg",
"icon": "assets/icons/icon.icns"
}
}
}