-
-
Notifications
You must be signed in to change notification settings - Fork 237
/
package.json
53 lines (53 loc) · 1.88 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
{
"name": "playback",
"version": "1.6.0",
"description": "Video player built using electron and node.js",
"main": "app.js",
"dependencies": {
"JSONStream": "^0.10.0",
"chromecasts": "^1.2.1",
"concat-stream": "^1.4.7",
"dombo": "^3.2.0",
"drag-and-drop-files": "0.0.1",
"duplexify": "^3.2.0",
"end-of-stream": "^1.1.0",
"filereader-stream": "^0.2.0",
"ionicons": "^2.0.1",
"minimist": "^1.1.1",
"multicast-dns": "^2.0.0",
"network-address": "^1.0.0",
"pump": "^1.0.0",
"range-parser": "^1.0.2",
"request": "^2.54.0",
"roboto-fontface": "^0.4.2",
"srt-to-vtt": "^1.0.2",
"titlebar": "^1.1.0",
"webtorrent": "^0.63.3",
"ytdl-core": "^0.5.1"
},
"devDependencies": {
"electron-packager": "^5.1.1",
"electron-prebuilt": "0.35.4"
},
"bin": {
"playback": "./app.js"
},
"scripts": {
"rebuild": "npm rebuild --runtime=electron --target=0.35.4 --disturl=https://atom.io/download/atom-shell",
"start": "electron app.js",
"dev": "electron app.js test.mp4",
"mac-bundle": "electron-packager . Playback --platform=darwin --arch=x64 --version=0.35.4 --ignore=node_modules/electron-prebuilt && cp info.plist Playback-darwin-x64/Playback.app/Contents/Info.plist && cp icon.icns Playback-darwin-x64/Playback.app/Contents/Resources/atom.icns",
"win-bundle": "electron-packager . Playback --platform=win32 --arch=ia32 --version=0.35.4 --icon=icon.ico",
"linux-64-bundle": "electron-packager . Playback --platform=linux --arch=x64 --version=0.35.4 ignore='node_modules/(electron-packager|electron-prebuilt)'"
},
"repository": {
"type": "git",
"url": "https://github.com/mafintosh/playback.git"
},
"author": "Mathias Buus (@mafintosh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mafintosh/playback/issues"
},
"homepage": "https://github.com/mafintosh/playback"
}