forked from megahertz/electron-simple-updater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.47 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
59
{
"name": "simple-updater-example",
"productName": "Simple Updater Example",
"version": "0.0.1",
"description": "Example of using electron-simple-updater",
"main": "app/main.js",
"scripts": {
"postinstall": "install-app-deps",
"start": "electron .",
"dist": "build",
"publish": "publish",
"release": "npm run dist && npm run publish"
},
"author": "Alexey Prokhorov",
"license": "MIT",
"private": true,
"build": {
"appId": "megahertz.electron-simple-updater-example",
"appImage": {
"systemIntegration": "doNotAsk"
},
"files": [
"!publisher.json",
"!README.md",
"!updates.json"
],
"linux": {
"category": "Development"
},
"mac": {
"category": "public.app-category.developer-tools"
},
"win": {
"target": "squirrel"
},
"squirrelWindows": {
"iconUrl": "https://raw.githubusercontent.com/megahertz/electron-simple-updater/master/example/build/icon.ico"
}
},
"updater": {
"url": "https://raw.githubusercontent.com/megahertz/electron-simple-updater/master/example/updates.json"
},
"engines": {
"node": ">=6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/megahertz/electron-simple-updater.git"
},
"dependencies": {
"electron-simple-updater": "^1.2.0"
},
"devDependencies": {
"electron": "*",
"electron-builder": "*",
"electron-simple-publisher": "*",
"electron-builder-squirrel-windows": "*"
}
}