generated from iffy/electron-updater-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 972 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 972 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
{
"name": "electron-updater-example",
"version": "0.9.6",
"main": "main.js",
"description": "electron-updater example project",
"author": "Matt Haggard",
"scripts": {
"build": "electron-builder --win",
"publish": "electron-builder --win -p always"
},
"devDependencies": {
"electron": "^31.3.1",
"electron-builder": "^24.13.3",
"electron-notarize": "^1.2.2"
},
"dependencies": {
"electron-log": "^5.1.7",
"electron-updater": "^6.3.2"
},
"build": {
"appId": "com.github.jaclynt.electronupdaterexample",
"artifactName": "${name}-${version}-${platform}-${arch}.${ext}",
"mac": {
"category": "your.app.category.type"
},
"win": {
"target": "nsis"
},
"nsis": {
"oneClick": false
},
"linux": {
"category": "your.app.category.type",
"target": "AppImage"
},
"publish": [{
"provider": "github",
"owner": "jaclynt",
"repo": "electron-updater-example"
}]
}
}