@skax/hls-io 0.1.0-beta.1

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/package.json ADDED
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "@skax/hls-io",
3
+ "version": "0.1.0-beta.1",
4
+ "description": "A comprehensive HLS (HTTP Live Streaming) IO client with live/VOD support, LL-HLS, segment caching, retry, heartbeat, and more.",
5
+ "main": "dist/index.cjs",
6
+ "module": "dist/index.esm.js",
7
+ "types": "dist/types/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/types/index.d.ts",
11
+ "import": "./dist/index.esm.js",
12
+ "require": "./dist/index.cjs",
13
+ "default": "./dist/index.cjs"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "scripts": {
20
+ "dev": "npm run clean && cross-env NODE_ENV=development rollup --config rollup.config.mjs --watch",
21
+ "build": "npm run clean && cross-env NODE_ENV=production rollup --config rollup.config.mjs",
22
+ "clean": "rimraf dist",
23
+ "test": "jest --coverage",
24
+ "test:watch": "jest --watch",
25
+ "lint": "eslint --fix \"./src/**/*.{ts,tsx,js,jsx,mjs,vue,cjs}\"",
26
+ "lint:check": "eslint \"./src/**/*.{ts,tsx,js,jsx,mjs,vue,cjs}\"",
27
+ "fmt": "prettier --write \"./**/*.{ts,tsx,js,jsx,mjs,json,md,yml,yaml,vue,cjs,css,scss,sass}\"",
28
+ "fmt:check": "prettier --check \"./**/*.{ts,tsx,js,jsx,mjs,json,md,yml,yaml,vue,cjs,css,scss,sass}\"",
29
+ "docs": "typedoc",
30
+ "prepare": "husky"
31
+ },
32
+ "keywords": [
33
+ "hls",
34
+ "http-live-streaming",
35
+ "m3u8",
36
+ "low-latency",
37
+ "ll-hls",
38
+ "streaming",
39
+ "video"
40
+ ],
41
+ "engines": {
42
+ "node": ">=16"
43
+ },
44
+ "license": "MIT",
45
+ "devDependencies": {
46
+ "@commitlint/cli": "^20.2.0",
47
+ "@commitlint/config-conventional": "^20.2.0",
48
+ "@skax/rollup-config": "^1.0.8",
49
+ "@types/jest": "^29.5.11",
50
+ "cross-env": "^10.1.0",
51
+ "eslint": "^9.39.4",
52
+ "eslint-config-xx": "^2.2.5",
53
+ "http-server": "^14.1.1",
54
+ "jest": "^29.7.0",
55
+ "husky": "^9.1.7",
56
+ "pretty-quick": "^4.2.2",
57
+ "jest-environment-jsdom": "^29.7.0",
58
+ "prettier": "^3.8.1",
59
+ "rimraf": "^6.1.2",
60
+ "rollup": "^4.60.2",
61
+ "ts-jest": "^29.1.1",
62
+ "tslib": "^2.6.2",
63
+ "typedoc": "^0.28.14",
64
+ "typedoc-plugin-mdn-links": "^5.0.10",
65
+ "typedoc-plugin-rename-defaults": "^0.7.3",
66
+ "typedoc-plugin-replace-text": "^4.2.0",
67
+ "typescript": "^5.9.3"
68
+ },
69
+ "dependencies": {
70
+ "@skax/logger": "^2.0.0",
71
+ "deepmerge": "^4.3.1",
72
+ "eventemitter3": "^5.0.1"
73
+ }
74
+ }