-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.73 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "twtch.",
"version": "2.0.0-beta4",
"description": "Twitch desktop client, since Twitch deprecated the official one!",
"main": "index.js",
"scripts": {
"start": "cross-env isDev=TRUE electron .",
"app:dir": "electron-builder --dir",
"app:dist": "electron-builder",
"dist-win": "electron-builder -w",
"dist-linux": "electron-builder -l",
"dist-mac": "electron-builder -m",
"test": "echo \"Error: no test specified\" && exit 1"
},
"build": {
"appId": "com.scatteredbrain.twtch",
"productName": "twtch",
"files": [
"index.js",
"overrides.js",
"overrides.css",
"Twtch.png",
"preload.js"
],
"directories": {
"buildResources": "assets"
},
"win": {
"icon": "Twtch.png",
"target": [
"nsis"
]
},
"nsis": {
"oneClick": true,
"deleteAppDataOnUninstall": true
},
"mac": {
"icon": "Twtch.icns",
"hardenedRuntime": true,
"entitlements": "entitlements.mac.plist",
"entitlementsInherit": "entitlements.mac.plist",
"gatekeeperAssess": false,
"category": "public.app-category.utilities",
"target": [
"dmg"
]
},
"dmg": {
"sign": false,
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
}
},
"author": "Josh Chaiken",
"license": "ISC",
"devDependencies": {
"@electron/packager": "^18.3.2",
"cross-env": "^7.0.3",
"electron": "^30.0.6",
"electron-builder": "^24.13.3",
"electron-notarize": "^1.2.2",
"electron-winstaller": "5.0.0",
"zip-local": "0.3.5"
}
}