strataplayer 1.0.10 → 1.0.11
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/dist/hls.d.ts +3 -1
- package/package.json +68 -61
package/dist/hls.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,61 +1,68 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "strataplayer",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "A robust, secure, and production-grade video player built for the modern web.",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/strataplayer.cjs.js",
|
|
7
|
-
"module": "./dist/strataplayer.es.js",
|
|
8
|
-
"types": "./dist/lib.d.ts",
|
|
9
|
-
"files": [
|
|
10
|
-
"dist"
|
|
11
|
-
],
|
|
12
|
-
"exports": {
|
|
13
|
-
".": {
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
},
|
|
18
|
-
"./hls": {
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
},
|
|
23
|
-
"./style.css": "./dist/style.css"
|
|
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
|
-
"react
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
|
|
61
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "strataplayer",
|
|
3
|
+
"version": "1.0.11",
|
|
4
|
+
"description": "A robust, secure, and production-grade video player built for the modern web.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/strataplayer.cjs.js",
|
|
7
|
+
"module": "./dist/strataplayer.es.js",
|
|
8
|
+
"types": "./dist/lib.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/lib.d.ts",
|
|
15
|
+
"import": "./dist/strataplayer.es.js",
|
|
16
|
+
"require": "./dist/strataplayer.cjs.js"
|
|
17
|
+
},
|
|
18
|
+
"./hls": {
|
|
19
|
+
"types": "./dist/hls.d.ts",
|
|
20
|
+
"import": "./dist/hls.es.js",
|
|
21
|
+
"require": "./dist/hls.cjs.js"
|
|
22
|
+
},
|
|
23
|
+
"./style.css": "./dist/style.css"
|
|
24
|
+
},
|
|
25
|
+
"typesVersions": {
|
|
26
|
+
"*": {
|
|
27
|
+
"hls": [
|
|
28
|
+
"./dist/hls.d.ts"
|
|
29
|
+
]
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"dev": "vite",
|
|
34
|
+
"build": "tsc && vite build --mode lib && vite build --mode demo",
|
|
35
|
+
"build:lib": "tsc && vite build --mode lib",
|
|
36
|
+
"build:site": "tsc && vite build --mode demo",
|
|
37
|
+
"preview": "vite preview"
|
|
38
|
+
},
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"react": ">=18.0.0",
|
|
41
|
+
"react-dom": ">=18.0.0",
|
|
42
|
+
"hls.js": ">=1.0.0"
|
|
43
|
+
},
|
|
44
|
+
"peerDependenciesMeta": {
|
|
45
|
+
"hls.js": {
|
|
46
|
+
"optional": true
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"lucide-react": "^0.462.0"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@types/node": "^20.10.0",
|
|
54
|
+
"@types/react": "^19.0.0",
|
|
55
|
+
"@types/react-dom": "^19.0.0",
|
|
56
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
57
|
+
"autoprefixer": "^10.4.16",
|
|
58
|
+
"hls.js": "^1.5.1",
|
|
59
|
+
"postcss": "^8.4.32",
|
|
60
|
+
"react": "^19.0.0",
|
|
61
|
+
"react-dom": "^19.0.0",
|
|
62
|
+
"tailwindcss": "^3.4.0",
|
|
63
|
+
"typescript": "^5.3.3",
|
|
64
|
+
"vite": "^5.0.10",
|
|
65
|
+
"vite-plugin-dts": "^3.6.4",
|
|
66
|
+
"wouter": "^3.0.0"
|
|
67
|
+
}
|
|
68
|
+
}
|