forked from mjakal/electron-auto-update
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.24 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "electron-updater-example",
"version": "0.0.5",
"main": "main.js",
"description": "electron-updater example project",
"author": {
"name": "Matt Haggard",
"email": "[email protected]",
"url": "https://example.com/"
},
"scripts": {
"start": "electron .",
"dist": "build --linux",
"serve": "http-server wwwroot/ -p 8080"
},
"dependencies": {
"electron-log": "^3.0.5",
"electron-updater": "^4.0.6"
},
"devDependencies": {
"electron": "^5.0.1",
"electron-builder": "^20.28.4",
"http-server": "^0.11.1"
},
"build": {
"publish": [
{
"provider": "generic",
"url": "http://127.0.0.1:8080/"
}
],
"appId": "com.github.martin.electronupdaterexample",
"mac": {
"category": "your.app.category.type",
"target": [
"zip",
"dmg"
]
},
"linux": {
"category": "Utility",
"icon": "icons/icons",
"target": [
"AppImage",
"deb"
]
},
"appImage": {
"systemIntegration": "doNotAsk"
},
"win": {
"target": "nsis",
"verifyUpdateCodeSignature": false,
"certificateFile": "./certs/some_file.pfx",
"certificatePassword": "some_password"
}
}
}