-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.81 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.81 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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "eyevinn-channel-engine",
"version": "5.1.0",
"description": "OTT TV Channel Engine",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --project ./ && cp ./package.json dist/",
"debug-server": "DEBUG=engine-*,vod-to-live node dist/server.js",
"test": "jasmine",
"version:rc": "npm version prerelease --preid=rc",
"postversion": "git push && git push --tags",
"start": "node dist/examples/default.js",
"start-demux": "node dist/examples/demux.js",
"start-livemix": "node dist/examples/livemix.js",
"start-livemix-demux": "node dist/examples/livemix-demux.js"
},
"engines": {
"node": ">=20"
},
"author": "Eyevinn Technology AB <work@eyevinn.se>",
"contributors": [
"Jonas Birmé <jonas.birme@eyevinn.se> (Eyevinn Technology AB)",
"Alan Allard <alan.allard@eyevinn.se> (Eyevinn Technology AB)",
"Craig McEldowney <craig@ottera.tv>",
"Nicholas Frederiksen <nicholas.frederiksen@eyevinn.se> (Eyevinn Technology AB)",
"Johan Lautakoski <johan.lautakoski@eyevinn.se> (Eyevinn Technology AB)"
],
"repository": "https://github.com/Eyevinn/channel-engine",
"license": "Apache-2.0",
"dependencies": {
"@eyevinn/hls-repeat": "^0.3.0",
"@eyevinn/hls-truncate": "^0.4.0",
"@eyevinn/hls-vodtolive": "^4.1.9",
"@eyevinn/m3u8": "^0.5.6",
"@fastify/static": "^9.1.1",
"abort-controller": "^3.0.0",
"debug": "^3.2.7",
"fastify": "^5.0.0",
"ioredis": "^5.3.2",
"memcache-client": "^0.10.1",
"node-fetch": "^2.6.1",
"promise.allsettled": "^1.0.4",
"uuid": "^14.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"jasmine": "^3.1.0",
"nock": "^13.1.1",
"typescript": "^5.0.0",
"undici-types": "^8.1.0"
}
}