@kkcompany/player 2.9.20 → 2.25.0-canary.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/CHANGELOG.md +48 -0
- package/README.md +40 -8
- package/dist/core.mjs +889 -6677
- package/dist/index.js +9831 -18714
- package/dist/index.mjs +2688 -9884
- package/dist/modules.mjs +307 -7201
- package/dist/plugins.mjs +4 -6961
- package/dist/react.mjs +5535 -12362
- package/package.json +4 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kkcompany/player",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.25.0-canary.0",
|
|
4
4
|
"module": "dist/index.mjs",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
92
92
|
"eslint-config-prettier": "^8.3.0",
|
|
93
93
|
"eslint-import-resolver-webpack": "^0.13.2",
|
|
94
|
-
"eslint-plugin-compat": "^
|
|
94
|
+
"eslint-plugin-compat": "^6.0.2",
|
|
95
95
|
"eslint-plugin-import": "^2.25.3",
|
|
96
96
|
"eslint-plugin-jest": "^25.2.4",
|
|
97
97
|
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
@@ -123,17 +123,14 @@
|
|
|
123
123
|
"@emotion/css": "^11.9.0",
|
|
124
124
|
"@emotion/react": "^11.9.3",
|
|
125
125
|
"@juggle/resize-observer": "^3.3.1",
|
|
126
|
-
"axios": "<1",
|
|
127
|
-
"dlv": "^1.1.3",
|
|
128
126
|
"mitt": "^3.0.0",
|
|
129
127
|
"react-cool-dimensions": "^2.0.7",
|
|
130
128
|
"react-cool-onclickoutside": "1.7.0",
|
|
131
|
-
"shaka-player": "
|
|
129
|
+
"shaka-player": "~4.15.2",
|
|
132
130
|
"ua-parser-js": "^1.0.37"
|
|
133
131
|
},
|
|
134
132
|
"peerDependencies": {
|
|
135
133
|
"@babel/runtime": "^7.0.0",
|
|
136
|
-
"bitmovin-player": "^8.83.0",
|
|
137
134
|
"react": ">=16.14.0",
|
|
138
135
|
"react-dom": ">=16.14.0"
|
|
139
136
|
},
|
|
@@ -224,6 +221,7 @@
|
|
|
224
221
|
"node": true
|
|
225
222
|
},
|
|
226
223
|
"rules": {
|
|
224
|
+
"compat/compat": "warn",
|
|
227
225
|
"no-unused-expressions": "warn",
|
|
228
226
|
"no-nested-ternary": "warn",
|
|
229
227
|
"no-unsafe-optional-chaining": "warn",
|