-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 948 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
37
38
39
40
41
42
43
44
45
{
"name": "electron-quick-start",
"version": "1.0.0",
"description": "A minimal Electron application",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"build": {
"appId": "com.watch.app",
"directories": {
"buildResources": "./buildResources/icon.icns"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"icon": "./buildResources/icon.icns",
"category": "Development"
},
"mac": {
"category": "your.app.category.type"
}
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author":{
"name": "sam",
"email": "[email protected]"
},
"license": "CC0-1.0",
"devDependencies": {
"electron": "^7.2.4",
"electron-builder": "^20.43.0"
}
}