forked from entrylabs/entry-hw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.23 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.23 KB
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
{
"name": "Entry_HW",
"scripts": {
"clean": "rimraf dist",
"pack": "build",
"dist": "build --arch ia32",
"start": "set NODE_ENV=development&&electron -d app"
},
"build": {
"dmg": {
"icon": "build/icon.icns",
"iconSize": 80,
"background": "build/background.png",
"contents": [
{
"x": 240,
"y": 120
},
{
"x": 380,
"y": 250,
"type": "file",
"path": "./app/README.md"
},
{
"x": 240,
"y": 380,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": "dir",
"title": "Entry-HW",
"authors": "EntryLabs",
"#certificateSubjectName": "my",
"#rfc3161TimeStampServer": "http://timestamp.geotrust.com/tsa"
},
"asar": true,
"appId": "org.playentry.entryhw",
"productName": "Entry_HW",
"extend-info": "build/build.plist",
"iconUrl": "https://raw.githubusercontent.com/entrylabs/entry-hw/feature/electron/build/icon.ico"
},
"devDependencies": {
"electron": "1.4.15",
"electron-builder": "10.5.0",
"electron-packager": "^8.1.0",
"rimraf": "^2.5.4"
},
"dependencies": {}
}