-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
62 lines (56 loc) · 1.34 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
{
"author": "Samy Pesse",
"name": "tv.js",
"description": "Smart TV with P2P streaming in JS (Node/Chrome).",
"version": "0.0.1",
"dependencies": {
"q": "0.9.6",
"underscore": "1.4.4",
"request": "2.22.0",
"express": "3.0.0",
"socket.io": "0.9.16",
"fluent-ffmpeg": "1.5.2",
"peerflix": "~0.1.0",
"readable-stream": "1.0.2",
"hr.js": "0.1.1"
},
"engines": {
"node": "0.8.x",
"npm": "1.1.x"
},
"bin": {
"movies.js": "bin/run.js"
},
"contributors": [
{
"name": "Aaron O'Mullan",
"email": "[email protected]"
}
],
"licenses" : [
{
"type" : "Apache",
"url" : "https://github.com/SamyPesse/tv.js/blob/master/LICENSE"
}
],
"main": "http://localhost:8888",
"node-main": "bin/run.js",
"window": {
"title": "Tv.js",
"icon": "public/main/build/static/images/logo_48.png",
"toolbar": false,
"frame": false,
"width": 800,
"height": 600,
"position": "mouse",
"min_width": 800,
"min_height": 600,
"max_width": 5000,
"max_height": 5000,
"resizable": true,
"fullscreen": true
},
"webkit": {
"plugin": true
}
}