ckplayer-plus 1.0.7 → 1.1.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.
- package/README.md +3 -1
- package/dist/ckplayer.js +112 -22
- package/dist/ckplayer.min.js +2 -2
- package/dist/index.cjs +493 -422
- package/dist/index.js +492 -422
- package/dist/mpegts.js/LICENSE +202 -0
- package/dist/react.cjs +511 -425
- package/dist/react.js +510 -425
- package/dist/vue.cjs +499 -418
- package/dist/vue.js +498 -418
- package/package.json +9 -2
- package/types/vue.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ckplayer-plus",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Enhanced ckplayer X3 packaging with Vue 2/3 and React wrappers — ESM-ready HTML5 video player",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckplayer",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"html5"
|
|
17
17
|
],
|
|
18
18
|
"license": "MIT",
|
|
19
|
-
"author": "",
|
|
19
|
+
"author": "yuanlonghui (https://gitee.com/yuanlonghui)",
|
|
20
20
|
"repository": {
|
|
21
21
|
"type": "git",
|
|
22
22
|
"url": "https://gitee.com/yuanlonghui/video-playback.git"
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
},
|
|
54
54
|
"./style.css": "./dist/ckplayer.css",
|
|
55
55
|
"./ckplayer.css": "./dist/ckplayer.css",
|
|
56
|
+
"./ckplayer.js": "./dist/ckplayer.js",
|
|
56
57
|
"./ckplayer.min.js": "./dist/ckplayer.min.js",
|
|
57
58
|
"./images/*": "./dist/images/*",
|
|
58
59
|
"./package.json": "./package.json"
|
|
@@ -65,6 +66,10 @@
|
|
|
65
66
|
],
|
|
66
67
|
"scripts": {
|
|
67
68
|
"build": "node scripts/build.mjs",
|
|
69
|
+
"lint": "eslint src scripts",
|
|
70
|
+
"typecheck": "tsc --noEmit",
|
|
71
|
+
"test": "node scripts/smoke.mjs",
|
|
72
|
+
"check": "npm run lint && npm run typecheck && npm run build && npm run test",
|
|
68
73
|
"prepublishOnly": "npm run build"
|
|
69
74
|
},
|
|
70
75
|
"peerDependencies": {
|
|
@@ -98,8 +103,10 @@
|
|
|
98
103
|
"devDependencies": {
|
|
99
104
|
"@types/react": "^19.0.0",
|
|
100
105
|
"esbuild": "^0.25.0",
|
|
106
|
+
"eslint": "^9.0.0",
|
|
101
107
|
"react": "^19.0.0",
|
|
102
108
|
"react-dom": "^19.0.0",
|
|
109
|
+
"typescript": "^5.4.0",
|
|
103
110
|
"vue": "^3.5.0"
|
|
104
111
|
},
|
|
105
112
|
"publishConfig": {
|
package/types/vue.d.ts
CHANGED