forked from jhiesey/videostream
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
39 lines (39 loc) · 1.13 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
{
"name": "videostream",
"version": "5.5.2",
"description": "Streams data from a file-like seekable object into a `video` or `audio` node (a HTMLMediaElement)",
"main": "videostream.js",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/meganz/videostream.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"build-example": "browserify example/index.js > example/built.js",
"browserify": "node ./bundle/build-browserify.js > ./bundle/videostream.js",
"rollup": "rollup -c",
"start": "http-server example"
},
"author": "John Hiesey",
"license": "MIT",
"dependencies": {
"binary-search": "^1.3.6",
"ebml": "2.2.3",
"eventemitter3": "^5.0.1",
"inherits": "^2.0.4",
"mediasource": "^2.4.0",
"mp4-box-encoding": "^1.4.1",
"mp4-stream": "3.0.0",
"promise-decode-audio-data": "^0.4.1",
"pump": "^3.0.2",
"range-slice-stream": "^3.0.0",
"readable-stream": "3.6.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"browserify": "^17.0.1",
"uglify-js": "3.10.4"
}
}