-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.75 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@cutting-mat/widgets",
"version": "1.0.2",
"description": "",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"lib",
"es",
"README.md"
],
"scripts": {
"dev": "vant-cli dev",
"test": "vant-cli test",
"lint": "vant-cli lint",
"build": "vant-cli build",
"prepare": "husky install",
"release": "vant-cli release",
"build-site": "vant-cli build-site"
},
"lint-staged": {
"*.md": "prettier --write",
"*.{ts,tsx,js,vue,less,scss}": "prettier --write",
"*.{ts,tsx,js,vue}": "eslint --fix",
"*.{vue,css,less,scss}": "stylelint --fix"
},
"eslintConfig": {
"root": true,
"extends": [
"@vant"
]
},
"stylelint": {
"extends": [
"@vant/stylelint-config"
]
},
"prettier": {
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "vant-cli commit-lint"
}
},
"peerDependencies": {
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"dependencies": {
"@tower1229/videojs-plugin-marker": "^0.0.9",
"@tower1229/videojs-plugin-source-switcher": "^0.0.6",
"@videojs/vhs-utils": "^3.0.5",
"@videojs/xhr": "^2.6.0",
"echarts": "^5.3.0",
"global": "^4.4.0",
"keycode": "^2.2.1",
"m3u8-parser": "^4.7.1",
"mpd-parser": "^0.21.1",
"mux.js": "^6.1.0",
"safe-json-parse": "^4.0.0",
"video.js": "^7.19.2",
"videojs-vtt.js": "^0.15.3"
},
"devDependencies": {
"@vant/cli": "^2.11.5",
"babel-plugin-import": "^1.13.0",
"husky": "^7.0.4",
"is-plain-object": "^5.0.0",
"vue": "^2.7.8",
"vue-template-compiler": "^2.7.8"
},
"author": "tower1229@foxmail.com",
"license": "MIT",
"browserslist": [
"ie 11"
]
}