-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.21 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
{
"name": "@astronautlabs/hls",
"version": "0.0.1",
"description": "Tools for parsing, analyzing and generating HTTP Live Streaming manifests.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"private": false,
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -b",
"build:esm": "tsc -b tsconfig.esm.json",
"prepublishOnly": "npm run build && npm test",
"test": "jest --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/astronautlabs/hls.git"
},
"keywords": [
"hls",
"m3u8",
"manifest",
"playlist",
"live",
"video",
"streaming",
"stream",
"abr",
"adaptive bit rate"
],
"author": "Astronaut Labs, LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/astronautlabs/hls/issues"
},
"homepage": "https://github.com/astronautlabs/hls#readme",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/chai": "^4.2.22",
"@types/node": "^20.11.28",
"chai": "^4.4.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"undici-types": "^6.9.0"
}
}