forked from mifi/hls-vod
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
44 lines (44 loc) · 964 Bytes
/
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
{
"name": "hls-vod-too",
"version": "2.0.3",
"description": "Node CLI for on-demand encoding and streaming of videos",
"repository": "github:kmxz/hls-vod-too",
"contributors": [
{
"name": "Mikael Finstad",
"email": "finstaden@gmail.com",
"url": "mifi.no"
}
],
"license": "MIT",
"files": [
"hls-vod.js",
"static"
],
"scripts": {
"start": "ts-node hls-vod.ts",
"prepare": "tsc && shebang-trim hls-vod.js"
},
"bin": {
"hls-vod-too": "hls-vod.js"
},
"engines": {
"node": ">=10.12"
},
"dependencies": {
"@optoolco/tonic": "^13.1.1",
"express": "^4.17.1",
"fs-extra": "^9.0.1",
"hls.js": "^0.14.13",
"minimist": "^1.2.0"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/fs-extra": "^9.0.1",
"@types/minimist": "^1.2.0",
"@types/node": "^14.11.2",
"shebang-trim": "^1.1.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}