forked from Tsuk1ko/bilibili-live-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.68 KB
/
package.json
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
{
"name": "bilibili-live-chat",
"version": "2.8.1",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"postversion": "tpv"
},
"dependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"bilibili-live-ws": "^6.3.1",
"buffer": "^6.0.3",
"core-js": "^3.32.2",
"lodash": "^4.17.21",
"lru-cache": "^10.0.1",
"md5": "^2.3.0",
"pako": "^2.1.0",
"protobufjs": "^7.2.5",
"query-string": "^7.1.3",
"uuid": "^9.0.1",
"vue": "^3.3.4"
},
"devDependencies": {
"@tsuk1ko/postversion": "^1.0.2",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/compiler-sfc": "^3.3.4",
"babel-eslint": "^10.1.0",
"babel-plugin-lodash": "^3.3.4",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^9.17.0",
"lint-staged": "^13.3.0",
"prettier": "^3.0.3",
"sass": "^1.68.0",
"sass-loader": "^13.3.2"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"no-empty": "off",
"no-unused-vars": "warn",
"vue/multi-word-component-names": "off"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"prettier --write",
"git add"
]
}
}