-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 956 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 956 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
45
46
47
48
49
50
{
"name": "Snowball",
"version": "0.0.1",
"description": "An A.I. checkers player.",
"main": "index.js",
"scripts": {
"postinstall": "install-app-deps",
"start": "npm install & electron index.js",
"pack": "build --dir",
"dist": "build"
},
"builds": {
"appId": "snowball",
"category": "your.app.category.type",
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "Squirrel",
"icon": "build/icon.ico"
}
},
"dependencies": {
"electron-prompt": "^0.5.0"
},
"devDependencies": {
"electron": "^5.0.6",
"electron-builder": "latest"
},
"keywords": [],
"author": "Ryan Stonebraker",
"license": "MIT"
}