-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.83 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.83 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
{
"name": "easy-select",
"version": "1.2.0",
"private": true,
"author": "fy <fy0748@gmail.com>",
"packageManager": "pnpm@9.0.0",
"scripts": {
"serve": "npm run build-watch",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"analyze": "npm run build --report",
"build-watch": "vue-cli-service build-watch",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'"
},
"dependencies": {
"clipboard": "^2.0.11",
"core-js": "^3.39.0",
"element-ui": "^2.15.14",
"vue": "^2.7.16",
"vue-i18n": "^8.28.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-standard": "^8.0.1",
"@babel/eslint-parser": "^7.25.9",
"babel-plugin-component": "^1.1.1",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^9.31.0",
"vue-cli-plugin-chrome-ext": "0.0.5",
"vue-cli-plugin-i18n": "^2.0.2",
"vue-template-compiler": "^2.7.16",
"webextension-polyfill": "^0.12.0",
"zip-webpack-plugin": "^4.0.1"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "@babel/eslint-parser",
"requireConfigFile": false
},
"globals": {
"browser": true,
"chrome": true
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Edge versions"
]
}