-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
36 lines (36 loc) · 895 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-autoupdate-scaffold",
"version": "1.0.0",
"description": "Windows 下支持自动更新的 Electron 应用脚手架",
"main": "main.js",
"build": {
"appId": "com.xxx.app",
"publish": [
{
"provider": "generic",
"url": "http://127.0.0.1:8080"
}
]
},
"scripts": {
"start": "electron .",
"build": "electron-builder -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ganyouyin/electron-autoupdate-scaffold.git"
},
"author": "ganyouyin",
"license": "MIT",
"bugs": {
"url": "https://github.com/ganyouyin/electron-autoupdate-scaffold/issues"
},
"homepage": "https://github.com/ganyouyin/electron-autoupdate-scaffold#readme",
"devDependencies": {
"electron": "^2.0.1",
"electron-builder": "^20.15.0"
},
"dependencies": {
"electron-updater": "^2.21.10"
}
}