@vtx/player 0.0.5 → 0.0.8

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 CHANGED
@@ -1,100 +1,100 @@
1
- {
2
- "name": "@vtx/player",
3
- "version": "0.0.5",
4
- "private": false,
5
- "description": "视频业务组件",
6
- "main": "./dist/index.umd.js",
7
- "module": "./dist/index.es.js",
8
- "types": "./dist/index.d.ts",
9
- "files": [
10
- "dist"
11
- ],
12
- "scripts": {
13
- "start": "start-storybook -p 6006",
14
- "build": "npm run clean && rollup --config",
15
- "build-docs": "build-storybook",
16
- "lint:script": "eslint src --ext .ts,.tsx",
17
- "lint:style": "stylelint src/**/*.less --custom-syntax postcss-less --fix",
18
- "clean": "rimraf dist"
19
- },
20
- "husky": {
21
- "hooks": {
22
- "pre-commit": "lint-staged",
23
- "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
24
- }
25
- },
26
- "lint-staged": {
27
- "src/**/*.{ts,tsx,less,md,mdx,json}": "npm run lint:script",
28
- "src/**/*.{less}": "npm run lint:style"
29
- },
30
- "peerDependencies": {
31
- "react": ">=16.9.0",
32
- "react-dom": ">=16.9.0"
33
- },
34
- "dependencies": {
35
- "ahooks": "^3.4.0",
36
- "antd": "^4.20.7",
37
- "flv.js": "^1.6.2",
38
- "hls.js": "^1.1.5",
39
- "js-base64": "^3.7.2",
40
- "react-collapsed": "^3.3.2"
41
- },
42
- "devDependencies": {
43
- "@babel/core": "^7.18.2",
44
- "@babel/preset-env": "^7.18.2",
45
- "@commitlint/cli": "^17.0.2",
46
- "@commitlint/config-conventional": "^17.0.2",
47
- "@rollup/plugin-babel": "^5.3.1",
48
- "@rollup/plugin-commonjs": "^22.0.0",
49
- "@rollup/plugin-node-resolve": "^13.3.0",
50
- "@rollup/plugin-typescript": "^8.3.2",
51
- "@rollup/plugin-url": "^7.0.0",
52
- "@storybook/addon-actions": "^6.5.7",
53
- "@storybook/addon-essentials": "^6.5.7",
54
- "@storybook/addon-interactions": "^6.5.7",
55
- "@storybook/addon-links": "^6.5.7",
56
- "@storybook/builder-vite": "^0.1.36",
57
- "@storybook/react": "^6.5.7",
58
- "@storybook/testing-library": "^0.0.11",
59
- "@trivago/prettier-plugin-sort-imports": "^3.2.0",
60
- "@types/react": "^18.0.0",
61
- "@types/react-dom": "^18.0.0",
62
- "@typescript-eslint/eslint-plugin": "^5.26.0",
63
- "@typescript-eslint/parser": "^5.26.0",
64
- "@vitejs/plugin-react": "^1.3.0",
65
- "consola": "^2.15.3",
66
- "eslint": "^8.16.0",
67
- "eslint-config-prettier": "^8.5.0",
68
- "eslint-import-resolver-typescript": "^2.7.1",
69
- "eslint-plugin-import": "^2.26.0",
70
- "eslint-plugin-prettier": "^4.0.0",
71
- "eslint-plugin-react": "^7.30.0",
72
- "eslint-plugin-react-hooks": "^4.5.0",
73
- "eslint-plugin-storybook": "^0.5.12",
74
- "husky": "^8.0.1",
75
- "less": "^4.1.2",
76
- "lint-staged": "^13.0.1",
77
- "postcss": "^8.4.14",
78
- "postcss-less": "^6.0.0",
79
- "prettier": "^2.6.2",
80
- "react": "^18.1.0",
81
- "react-dom": "^18.1.0",
82
- "rimraf": "^3.0.2",
83
- "rollup-plugin-dts": "^4.2.2",
84
- "rollup-plugin-peer-deps-external": "^2.2.4",
85
- "rollup-plugin-postcss": "^4.0.2",
86
- "rollup-plugin-terser": "^7.0.2",
87
- "stylelint": "^14.8.5",
88
- "stylelint-config-prettier": "^9.0.3",
89
- "stylelint-config-recess-order": "^3.0.0",
90
- "stylelint-config-recommended": "^7.0.0",
91
- "stylelint-config-standard": "^25.0.0",
92
- "stylelint-order": "^5.0.0",
93
- "typescript": "^4.6.3",
94
- "vite": "^2.9.9",
95
- "vite-plugin-style-import": "^2.0.0"
96
- },
97
- "repository": "https://git.cloudhw.cn:3443/front-end/business/vtx-vis.git",
98
- "author": "chenxinyu <chenxinyu@vortexInfo.cn>",
99
- "license": "MIT"
100
- }
1
+ {
2
+ "name": "@vtx/player",
3
+ "version": "0.0.8",
4
+ "private": false,
5
+ "description": "视频业务组件",
6
+ "main": "./dist/index.umd.js",
7
+ "module": "./dist/index.es.js",
8
+ "types": "./dist/index.d.ts",
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "start": "start-storybook -p 6006",
14
+ "build": "npm run clean && rollup --config",
15
+ "build-docs": "build-storybook",
16
+ "lint:script": "eslint src --ext .ts,.tsx",
17
+ "lint:style": "stylelint src/**/*.less --custom-syntax postcss-less --fix",
18
+ "clean": "rimraf dist"
19
+ },
20
+ "husky": {
21
+ "hooks": {
22
+ "pre-commit": "lint-staged",
23
+ "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
24
+ }
25
+ },
26
+ "lint-staged": {
27
+ "src/**/*.{ts,tsx,less,md,mdx,json}": "npm run lint:script",
28
+ "src/**/*.{less}": "npm run lint:style"
29
+ },
30
+ "peerDependencies": {
31
+ "react": ">=16.9.0",
32
+ "react-dom": ">=16.9.0"
33
+ },
34
+ "dependencies": {
35
+ "ahooks": "^3.4.0",
36
+ "antd": "^4.20.7",
37
+ "flv.js": "^1.6.2",
38
+ "hls.js": "^1.1.5",
39
+ "js-base64": "^3.7.2",
40
+ "react-collapsed": "^3.3.2"
41
+ },
42
+ "devDependencies": {
43
+ "@babel/core": "^7.18.2",
44
+ "@babel/preset-env": "^7.18.2",
45
+ "@commitlint/cli": "^17.0.2",
46
+ "@commitlint/config-conventional": "^17.0.2",
47
+ "@rollup/plugin-babel": "^5.3.1",
48
+ "@rollup/plugin-commonjs": "^22.0.0",
49
+ "@rollup/plugin-node-resolve": "^13.3.0",
50
+ "@rollup/plugin-typescript": "^8.3.2",
51
+ "@rollup/plugin-url": "^7.0.0",
52
+ "@storybook/addon-actions": "^6.5.7",
53
+ "@storybook/addon-essentials": "^6.5.7",
54
+ "@storybook/addon-interactions": "^6.5.7",
55
+ "@storybook/addon-links": "^6.5.7",
56
+ "@storybook/builder-vite": "^0.1.36",
57
+ "@storybook/react": "^6.5.7",
58
+ "@storybook/testing-library": "^0.0.11",
59
+ "@trivago/prettier-plugin-sort-imports": "^3.2.0",
60
+ "@types/react": "^18.0.0",
61
+ "@types/react-dom": "^18.0.0",
62
+ "@typescript-eslint/eslint-plugin": "^5.26.0",
63
+ "@typescript-eslint/parser": "^5.26.0",
64
+ "@vitejs/plugin-react": "^1.3.0",
65
+ "consola": "^2.15.3",
66
+ "eslint": "^8.16.0",
67
+ "eslint-config-prettier": "^8.5.0",
68
+ "eslint-import-resolver-typescript": "^2.7.1",
69
+ "eslint-plugin-import": "^2.26.0",
70
+ "eslint-plugin-prettier": "^4.0.0",
71
+ "eslint-plugin-react": "^7.30.0",
72
+ "eslint-plugin-react-hooks": "^4.5.0",
73
+ "eslint-plugin-storybook": "^0.5.12",
74
+ "husky": "^8.0.1",
75
+ "less": "^4.1.2",
76
+ "lint-staged": "^13.0.1",
77
+ "postcss": "^8.4.14",
78
+ "postcss-less": "^6.0.0",
79
+ "prettier": "^2.6.2",
80
+ "react": "^18.1.0",
81
+ "react-dom": "^18.1.0",
82
+ "rimraf": "^3.0.2",
83
+ "rollup-plugin-dts": "^4.2.2",
84
+ "rollup-plugin-peer-deps-external": "^2.2.4",
85
+ "rollup-plugin-postcss": "^4.0.2",
86
+ "rollup-plugin-terser": "^7.0.2",
87
+ "stylelint": "^14.8.5",
88
+ "stylelint-config-prettier": "^9.0.3",
89
+ "stylelint-config-recess-order": "^3.0.0",
90
+ "stylelint-config-recommended": "^7.0.0",
91
+ "stylelint-config-standard": "^25.0.0",
92
+ "stylelint-order": "^5.0.0",
93
+ "typescript": "^4.6.3",
94
+ "vite": "^2.9.9",
95
+ "vite-plugin-style-import": "^2.0.0"
96
+ },
97
+ "repository": "https://git.cloudhw.cn:3443/front-end/business/vtx-vis.git",
98
+ "author": "chenxinyu <chenxinyu@vortexInfo.cn>",
99
+ "license": "MIT"
100
+ }