forked from iffy/electron-updater-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 771 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
{
"name": "electron-updater-example",
"version": "0.4.3",
"main": "main.js",
"description": "electron-updater example project",
"author": "Giovanni Giordano",
"scripts": {
"dist": "build --win -p always"
},
"devDependencies": {
"electron": "^1.4.15",
"electron-builder": "^12.3.1"
},
"dependencies": {
"electron-log": "^1.3.0",
"electron-updater": "^1.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/giovannigiordano/electron-updater-example.git"
},
"build": {
"appId": "com.github.giovannigiordano.electronupdaterexample",
"mac": {
"category": "your.app.category.type",
"target": [
"zip",
"dmg"
]
},
"nsis": {
"perMachine": true
}
}
}