forked from Andro999b/torrent-player
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.83 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.83 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
{
"name": "torrent-player",
"version": "1.0.1",
"description": "Video player for popular torrent trackers",
"author": {
"name": "Andrii Pivovarov",
"email": "andro999b@gmail.com"
},
"license": "GPL-2.0+",
"main": "./electron/index.js",
"repository": {
"type": "git",
"url": "https://github.com/Andro999b/torrent-player"
},
"scripts": {
"install-mpv-lib": "cp plugins/libs/linux-x64/libmpv.so.1 node_modules/electron/dist/libmpv.so.1",
"start": "cd client && yarn build && cd .. && electron ./electron",
"start:dev": "cd client && yarn build:dev && cd .. && electron ./electron",
"start:nobuild": "electron ./electron",
"start:tv-mode": "electron ./electron --castscreen",
"start:web": "concurrently -n \"SERVER,WEBPACK\" -c \"black.bold,blue.bold\" \"cd server && yarn start\" \"cd client && yarn start\"",
"start:server": "cd client && yarn build && cd ../server && yarn start",
"debug": "concurrently -n \"SERVER,ELECTRON,WEBPACK\" -c \"black.bold,white,blue.bold\" \"cd server && yarn start\" \"electron ./electron --debug\" \"cd client && yarn start\"",
"debug:proxy": "concurrently -n \"SERVER,ELECTRON,WEBPACK\" -c \"black.bold,white,blue.bold\" \"cd server && yarn start:proxy\" \"electron ./electron --debug\" \"cd client && yarn start\"",
"debug:mpv": "MPVJS_TERMINAL=1 MPVJS_VERBOSE=1 yarn debug",
"build": "electron-builder --win --linux",
"build:win": "electron-builder --win",
"build:linux": "electron-builder --linux",
"build:dir": "electron-builder --dir"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"electron": "^4.2.1",
"electron-builder": "^20.39.0",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.13.0"
},
"dependencies": {
"electron-dl": "^1.14.0",
"minimist": "^1.2.3"
}
}