-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.28 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.28 KB
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
{
"name": "electron-auto-updater-example",
"version": "1.0.2",
"description": "Electron auto updater example",
"main": "src/main.js",
"scripts": {
"dev": "cross-env NODE_ENV=development electron .",
"pack": "electron-builder --dir",
"build": "electron-builder"
},
"repository": "",
"keywords": [
"Electron",
"auto updater",
"start",
"example",
"tutorial",
"demo"
],
"postinstall": "electron-builder install-app-deps",
"author": "Matias Tucci <matiastucci@gmail.com>",
"license": "MIT",
"build": {
"appId": "com.matiastucci.autoupdate",
"productName": "AutoUpdater",
"mac": {
"category": "public.app-category.developer-tools"
},
"win": {
"icon": "icons/icon.ico",
"target": [
"squirrel"
]
},
"squirrelWindows": {
"iconUrl": "https://raw.githubusercontent.com/matiastucci/electron-auto-updater-example/master/icons/icon.ico"
},
"linux": {
"target": [
"deb"
]
}
},
"devDependencies": {
"cross-env": "^5.2.0",
"electron": "~4.1.1",
"electron-builder": "^20.39.0",
"electron-builder-squirrel-windows": "^20.39.0",
"electron-installer-squirrel-windows": "^1.3.0"
},
"dependencies": {
"electron-squirrel-startup": "^1.0.0"
}
}