dasha 3.0.4 → 3.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -9
- package/package.json +10 -9
package/README.md
CHANGED
|
@@ -1,15 +1,10 @@
|
|
|
1
1
|
# dasha
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/dasha)
|
|
4
|
+
[](https://www.npmjs.com/package/dasha)
|
|
5
|
+
[](https://www.npmjs.com/package/dasha)
|
|
6
6
|
|
|
7
|
-
Library for parsing MPEG-DASH and HLS manifests. Made with the purpose of obtaining a simplified representation convenient for further downloading of segments.
|
|
8
|
-
|
|
9
|
-
<div align="left">
|
|
10
|
-
<span>English</span> •
|
|
11
|
-
<a href="https://github.com/vitalygashkov/dasha/tree/main/docs/README.ru.md">Pусский</a>
|
|
12
|
-
</div>
|
|
7
|
+
Library for parsing MPEG-DASH (.mpd) and HLS (.m3u8) manifests. Made with the purpose of obtaining a simplified representation convenient for further downloading of segments.
|
|
13
8
|
|
|
14
9
|
## Install
|
|
15
10
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dasha",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.5",
|
|
4
4
|
"author": "Vitaly Gashkov <vitalygashkov@vk.com>",
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "Streaming manifest parser",
|
|
6
6
|
"license": "AGPL-3.0",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"mpeg",
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"adaptive",
|
|
12
12
|
"mpd",
|
|
13
13
|
"m3u8",
|
|
14
|
-
"manifest"
|
|
14
|
+
"manifest",
|
|
15
|
+
"playlist"
|
|
15
16
|
],
|
|
16
17
|
"readmeFilename": "README.md",
|
|
17
18
|
"repository": {
|
|
@@ -45,16 +46,16 @@
|
|
|
45
46
|
"build:bun": "bun build ./dasha.js --outdir ./dist --format cjs"
|
|
46
47
|
},
|
|
47
48
|
"dependencies": {
|
|
48
|
-
"m3u8-parser": "^7.
|
|
49
|
+
"m3u8-parser": "^7.2.0"
|
|
49
50
|
},
|
|
50
51
|
"devDependencies": {
|
|
51
|
-
"@types/node": "^22.
|
|
52
|
+
"@types/node": "^22.5.5",
|
|
52
53
|
"eslint": "^8.57.0",
|
|
53
54
|
"eslint-config-prettier": "^9.1.0",
|
|
54
|
-
"eslint-plugin-import-x": "^
|
|
55
|
-
"eslint-plugin-prettier": "^5.1
|
|
55
|
+
"eslint-plugin-import-x": "^4.2.1",
|
|
56
|
+
"eslint-plugin-prettier": "^5.2.1",
|
|
56
57
|
"prettier": "^3.3.3",
|
|
57
|
-
"tsup": "^8.2.
|
|
58
|
-
"typescript": "^5.
|
|
58
|
+
"tsup": "^8.2.4",
|
|
59
|
+
"typescript": "^5.6.2"
|
|
59
60
|
}
|
|
60
61
|
}
|