forked from electron/electron-quick-start
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.28 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
{
"name": "100pals-streamkit",
"productName": "100Pals Streamkit",
"email": "[email protected]",
"description": "A streaming kit for twitch, youtube, etc for those who like achivement hunting",
"version": "0.1.2",
"main": "main.js",
"license": "MIT",
"author": "100Pals <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/100Pals/streamkit"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron .",
"pack": "build --dir",
"dist": "build",
"publish": "electron-builder --publish always"
},
"build": {
"appId": "com.github.100pals.streamkit",
"mac": {
"category": "public.app-category.entertainment",
"publish": [
"github"
]
},
"linux": {
"category": "Game",
"target": [
"AppImage",
"deb"
],
"publish": [
"github"
]
},
"win": {
"target": [
"squirrel",
"NSIS"
],
"publish": [
"github"
]
}
},
"dependencies": {
"electron-settings": "^3.1.4",
"electron-updater": "^2.16.3"
},
"devDependencies": {
"electron": "^1.7.9",
"electron-builder": "^19.48.2",
"electron-builder-squirrel-windows": "^19.48.0"
}
}