hlsdownloader 4.0.1 โ†’ 4.0.2

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 +17 -17
package/package.json CHANGED
@@ -9,12 +9,12 @@
9
9
  },
10
10
  "config": {
11
11
  "commitizen": {
12
- "path": "cz-conventional-changelog"
12
+ "path": "./node_modules/cz-conventional-changelog"
13
13
  }
14
14
  },
15
15
  "dependencies": {
16
- "ky": "^1.11.0",
17
- "p-limit": "^7.1.1"
16
+ "ky": "^1.14.0",
17
+ "p-limit": "^7.2.0"
18
18
  },
19
19
  "description": "Downloads HLS Playlist file and TS chunks",
20
20
  "devDependencies": {
@@ -22,15 +22,16 @@
22
22
  "@commitlint/config-conventional": "^20.0.0",
23
23
  "@types/jest": "^30.0.0",
24
24
  "clean-jsdoc-theme": "^4.3.0",
25
- "esbuild": "^0.25.10",
26
- "eslint": "^9.37.0",
27
- "husky": "^9.1.7",
25
+ "cz-conventional-changelog": "^3.3.0",
26
+ "esbuild": "^0.27.0",
27
+ "eslint": "^9.39.1",
28
28
  "jest": "^30.2.0",
29
- "jsdoc": "^4.0.4",
30
- "lint-staged": "^16.2.3",
29
+ "jsdoc": "^4.0.5",
30
+ "lefthook": "^2.0.4",
31
+ "node-localstorage": "^3.0.5",
31
32
  "prettier": "^3.6.2",
32
- "rimraf": "^6.0.1",
33
- "semantic-release": "24.2.9"
33
+ "rimraf": "^6.1.0",
34
+ "semantic-release": "25.0.2"
34
35
  },
35
36
  "engines": {
36
37
  "node": ">=20",
@@ -43,9 +44,6 @@
43
44
  "build"
44
45
  ],
45
46
  "homepage": "https://nurrony.github.io/hlsdownloader",
46
- "hooks": {
47
- "pre-commit": "npm run commitlint ${1} && npm run lint:fix && npm run lint && npm test"
48
- },
49
47
  "keywords": [
50
48
  "cdn-priming",
51
49
  "chunk",
@@ -84,18 +82,20 @@
84
82
  "docs:clean": "rimraf -fr ./docs && echo '๐Ÿงน All docs has been cleaned.'",
85
83
  "docs:gen": "npm run docs:clean && NODE_OPTIONS=--experimental-vm-modules jsdoc -c jsdoc.json && echo '๐Ÿ“„ Docs has been generated successfully.'",
86
84
  "example": "NODE_OPTIONS=--experimental-vm-modules node example.mjs",
87
- "lint": "eslint . && echo '๐Ÿ’„ Coding style guideline has been followed properly.'",
85
+ "lint": "eslint . && echo '๐Ÿ’„ Coding style guideline has been followed properly.'",
88
86
  "lint:fix": "eslint . --fix && echo '๐Ÿ”ง Coding style has been fixed as per guideline.'",
89
- "prepare": "husky",
87
+ "prepare": "lefthook install",
88
+ "hooks:install": "lefthook install",
89
+ "hooks:uninstall": "lefthook uninstall",
90
90
  "prepublishOnly": "npm run build",
91
91
  "prod:start": "node index.js",
92
92
  "semantic-release": "semantic-release",
93
- "test": "npm run test:coverage:clean && NODE_OPTIONS=--experimental-vm-modules npx jest",
93
+ "test": "npm run test:coverage:clean && NODE_OPTIONS=--experimental-vm-modules node --localstorage-file=.jest-localstorage node_modules/.bin/jest",
94
94
  "test:coverage:clean": "rimraf -fr ./coverage && echo '๐Ÿงน All test coverage reports has been cleaned.'",
95
95
  "test:watch": "NODE_OPTIONS=--experimental-vm-modules npx jest --no-cache --watch",
96
96
  "version": "echo $npm_package_version"
97
97
  },
98
98
  "snyk": true,
99
99
  "type": "module",
100
- "version": "4.0.1"
100
+ "version": "4.0.2"
101
101
  }