-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.16 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.16 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
{
"name": "mpv2gether-client",
"productName": "mpv2gether",
"version": "0.0.0",
"description": "watch stuff from mpv - together",
"license": "MIT",
"repository": "goeo-/mpv2gether-client",
"author": {
"name": "avail",
"email": "avail@pomf.se",
"url": "getrektby.us"
},
"scripts": {
"test": "xo",
"start": "electron .",
"build-all": "electron-packager . --out=dist --asar --overwrite --all",
"build-win": "electron-packager . --overwrite --asar=true --platform=win32 --arch=ia32",
"build-mac": "electron-packager . --overwrite --platform=darwin --arch=x64",
"build-linux": "electron-packager . --overwrite --platform=linux --arch=x64"
},
"files": [
"index.js",
"index.html",
"index.css"
],
"keywords": [
"electron-app",
"electron"
],
"dependencies": {
"electron-debug": "^1.0.0",
"node-mpv": "^1.0.3",
"uws": "^8.14.1",
"valid-url": "^1.0.9",
"ws": "^3.2.0"
},
"devDependencies": {
"devtron": "^1.1.0",
"electron-packager": "^8.0.0",
"electron": "^1.3.3",
"xo": "^0.16.0"
},
"xo": {
"esnext": true,
"envs": [
"node",
"browser"
]
}
}