forked from iffy/electron-updater-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 880 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
{
"name": "electron-updater-example",
"version": "0.7.10",
"main": "main.js",
"description": "electron-updater example project",
"author": "Matt Haggard",
"scripts": {
"publish": "build -p always"
},
"devDependencies": {
"electron": "^3.0.2",
"electron-builder": "^20.28.4"
},
"dependencies": {
"electron-log": "^1.3.0",
"electron-updater": "^4.0.6"
},
"build": {
"appId": "com.github.web-pencil.electronupdaterexample",
"publish": [{
"provider": "github",
"owner": "web-pencil",
"repo": "electron-updater-example"
}],
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": false
},
"mac": {
"category": "your.app.category.type",
"target": [
"zip",
"dmg"
]
}
}
}