-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.67 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.67 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "dasha",
"version": "4.0.0-alpha.12",
"description": "Streaming manifest parser",
"packageManager": "pnpm@10.28.1",
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"lint": "oxlint . && oxfmt --check .",
"fix": "oxlint . --fix && oxfmt --write .",
"typecheck": "tsc --noEmit -p tsconfig.json",
"build": "tsdown dasha.ts --format esm --format cjs",
"prepublishOnly": "pnpm build"
},
"type": "module",
"main": "./dist/dasha.mjs",
"types": "./dist/dasha.d.mts",
"exports": {
".": {
"require": {
"types": "./dist/dasha.d.cts",
"default": "./dist/dasha.cjs"
},
"import": {
"types": "./dist/dasha.d.mts",
"default": "./dist/dasha.mjs"
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/azot-labs/dasha"
},
"keywords": [
"mpeg",
"dash",
"hls",
"adaptive",
"mpd",
"mpd-parser",
"m3u8",
"m3u8-parser",
"manifest",
"playlist"
],
"author": "Vitaly Gashkov <vitalygashkov@vk.com>",
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/azot-labs/dasha/issues",
"email": "vitalygashkov@vk.com"
},
"funding": [
{
"type": "individual",
"url": "https://t.me/tribute/app?startapp=dqW2"
}
],
"engines": {
"node": ">=22.16"
},
"dependencies": {
"@xmldom/xmldom": "^0.9.8",
"barsic": "^0.2.0",
"ky": "^1.14.3",
"temporal-polyfill": "^0.3.2"
},
"devDependencies": {
"@types/node": "^24.10.0",
"oxfmt": "^0.45.0",
"oxlint": "^1.60.0",
"tsdown": "^0.21.8",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
}
}