-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 924 Bytes
/
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
{
"name": "Your-Game-Name",
"productName": "Your Game's Name",
"version": "0.1.0",
"description": "Your Game's Description",
"devDependencies": {
"electron": "^1.6.10",
"electron-builder": "^18.2.2"
},
"scripts": {
"pack": "build --dir",
"dist": "build -mwl",
"postinstall": "install-app-deps",
"start": "electron ./app --enable-logging",
"dev": "NODE_ENV='development' npm run start"
},
"author": "Your Name <[email protected]>",
"license": "MIT",
"build": {
"appId": "com.example.mygame",
"mac": {
"category": "public.app-category.games",
"target": [
"zip"
]
},
"linux": {
"category": "Game",
"target": [
"snap",
"AppImage",
"deb",
"rpm",
"freebsd",
"pacman"
],
"executableName": "Your Game's Name",
"synopsis": "Your Game's Description"
}
}
}