generated from iffy/electron-updater-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 798 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
{
"name": "electron-updater-example",
"version": "0.8.1",
"main": "main.js",
"description": "electron-updater example project",
"author": "Matt Haggard",
"scripts": {
"publish": "electron-builder -p always"
},
"devDependencies": {
"electron": "^14.0.1",
"electron-builder": "^22.11.7",
"electron-notarize": "^1.1.1"
},
"dependencies": {
"electron-log": "^4.4.1",
"electron-updater": "^4.3.9"
},
"build": {
"appId": "com.github.iffy.electronupdaterexample",
"afterSign": "./build/notarize.js",
"mac": {
"category": "your.app.category.type"
},
"win": {
"target": "nsis"
},
"nsis": {
"oneClick": false
},
"linux": {
"category": "your.app.category.type",
"target": "AppImage"
}
}
}