dasha 3.1.9 → 3.2.0

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.
Files changed (1) hide show
  1. package/package.json +29 -29
package/package.json CHANGED
@@ -1,43 +1,27 @@
1
1
  {
2
2
  "name": "dasha",
3
- "version": "3.1.9",
3
+ "version": "3.2.0",
4
4
  "description": "Streaming manifest parser",
5
- "files": [
6
- "dasha.js",
7
- "lib",
8
- "types"
9
- ],
10
- "scripts": {
11
- "test": "npm run lint && npm run types && node --test",
12
- "types": "tsc -p tsconfig.json",
13
- "lint": "eslint . && prettier --check .",
14
- "fix": "eslint . --fix && prettier --write .",
15
- "build": "tsup dasha.js --format esm,cjs",
16
- "prepublishOnly": "npm run build"
17
- },
18
- "main": "dasha.js",
19
- "types": "./types/dasha.d.ts",
20
- "repository": {
21
- "type": "git",
22
- "url": "https://github.com/vitalygashkov/dasha"
23
- },
24
5
  "keywords": [
25
- "mpeg",
6
+ "adaptive",
26
7
  "dash",
27
8
  "hls",
28
- "adaptive",
29
- "mpd",
30
9
  "m3u8",
31
10
  "manifest",
11
+ "mpd",
12
+ "mpeg",
32
13
  "playlist"
33
14
  ],
34
- "author": "Vitaly Gashkov <vitalygashkov@vk.com>",
35
- "license": "MIT",
36
- "readmeFilename": "README.md",
37
15
  "bugs": {
38
16
  "url": "https://github.com/vitalygashkov/dasha/issues",
39
17
  "email": "vitalygashkov@vk.com"
40
18
  },
19
+ "license": "MIT",
20
+ "author": "Vitaly Gashkov <vitalygashkov@vk.com>",
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "https://github.com/vitalygashkov/dasha"
24
+ },
41
25
  "funding": [
42
26
  {
43
27
  "type": "individual",
@@ -48,8 +32,20 @@
48
32
  "url": "https://www.patreon.com/vitalygashkov"
49
33
  }
50
34
  ],
51
- "engines": {
52
- "node": "20 || 21 || 22"
35
+ "files": [
36
+ "dasha.js",
37
+ "lib",
38
+ "types"
39
+ ],
40
+ "main": "dasha.js",
41
+ "types": "./types/dasha.d.ts",
42
+ "scripts": {
43
+ "test": "npm run lint && npm run types && node --test",
44
+ "types": "tsc -p tsconfig.json",
45
+ "lint": "eslint . && prettier --check .",
46
+ "fix": "eslint . --fix && prettier --write .",
47
+ "build": "tsup dasha.js --format esm,cjs",
48
+ "prepublishOnly": "npm run build"
53
49
  },
54
50
  "dependencies": {
55
51
  "m3u8-parser": "^7.2.0"
@@ -64,5 +60,9 @@
64
60
  "prettier": "^3.4.2",
65
61
  "tsup": "^8.3.5",
66
62
  "typescript": "^5.7.2"
67
- }
63
+ },
64
+ "engines": {
65
+ "node": ">=22.19"
66
+ },
67
+ "readmeFilename": "README.md"
68
68
  }