@ezuikit/player-theme 0.0.1-alpha.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/README.md +40 -0
- package/dist/index.js +10606 -0
- package/dist/index.mjs +10592 -0
- package/dist/index.umd.js +13844 -0
- package/dist/style.css +30 -0
- package/dist/style.js +6 -0
- package/dist/types/index.d.ts +2556 -0
- package/package.json +48 -0
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ezuikit/player-theme",
|
|
3
|
+
"version": "0.0.1-alpha.1",
|
|
4
|
+
"description": "player theme",
|
|
5
|
+
"title": "theme",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/types/index.d.ts",
|
|
8
|
+
"module": "dist/index.mjs",
|
|
9
|
+
"scripts": {
|
|
10
|
+
"dev": "cross-env NODE_ENV=development rollup --config rollup.config.mjs --watch",
|
|
11
|
+
"build": "npm run clean && cross-env NODE_ENV=production rollup --config rollup.config.mjs",
|
|
12
|
+
"clean": "rimraf docs dist coverage",
|
|
13
|
+
"types": "tsc src/index.ts --emitDeclarationOnly --declaration --declarationDir dist/types --esModuleInterop",
|
|
14
|
+
"docs": "typedoc --tsconfig typedoc.config.js"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"keywords": [
|
|
20
|
+
"player",
|
|
21
|
+
"theme",
|
|
22
|
+
"ui"
|
|
23
|
+
],
|
|
24
|
+
"author": "Ezviz-OpenBiz",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@ezuikit/utils-i18n": "^1.1.1",
|
|
28
|
+
"@ezuikit/utils-logger": "^1.1.0",
|
|
29
|
+
"@ezuikit/utils-tools": "^1.1.1-beta.1",
|
|
30
|
+
"@juggle/resize-observer": "^3.4.0",
|
|
31
|
+
"@skax/delegate": "3.2.0",
|
|
32
|
+
"@skax/picker": "0.1.1",
|
|
33
|
+
"deepmerge": "^4.3.1",
|
|
34
|
+
"eventemitter3": "^5.0.1",
|
|
35
|
+
"screenfull": "5.2.0"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@common/rollup": "workspace:*",
|
|
39
|
+
"@ezuikit/control-date-picker": "workspace:*",
|
|
40
|
+
"@ezuikit/control-ptz": "workspace:*",
|
|
41
|
+
"@ezuikit/control-zoom": "workspace:*",
|
|
42
|
+
"@ezuikit/control-time-line": "workspace:*"
|
|
43
|
+
},
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"registry": "https://registry.npmjs.org/",
|
|
46
|
+
"access": "public"
|
|
47
|
+
}
|
|
48
|
+
}
|