-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.58 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "vuecharts3",
"version": "2.3.0",
"description": "the vue toolkit based on echarts",
"scripts": {
"prepare": "install-peers",
"start": "ttsc -w & vue-cli-service serve example/main.ts",
"serve": "vue-cli-service serve example/main.ts",
"build": "ttsc -p tsconfig.porduction.json",
"lint": "vue-cli-service lint"
},
"repository": {
"type": "git",
"url": "https://github.com/lloydzhou/vuecharts.git"
},
"keywords": [
"vue",
"vue3",
"echarts"
],
"files": [
"lib"
],
"main": "lib/index.js",
"module": "lib/index.js",
"peerDependencies": {
"echarts": "^5.4.1",
"echarts-gl": "^2.0.9",
"resize-detector": "^0.3.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/babel-plugin-jsx": "^1.1.1",
"@vue/cli-plugin-babel": "~4.5.11",
"@vue/cli-plugin-eslint": "~4.5.11",
"@vue/cli-plugin-typescript": "~4.5.11",
"@vue/cli-service": "~4.5.11",
"@vue/compiler-sfc": "^3.2.31",
"@vue/eslint-config-typescript": "^7.0.0",
"acorn-jsx": "^5.3.2",
"ant-design-vue": "^3.2.1",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"echarts": "^5.4.1",
"echarts-gl": "^2.0.9",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^7.0.0",
"install-peers-cli": "^2.2.0",
"less": "^4.1.2",
"less-loader": "7.3.0",
"lint-staged": "^9.5.0",
"resize-detector": "^0.3.0",
"ts-transformer-keys": "^0.4.3",
"ttypescript": "^1.5.13",
"typescript": "~4.1.5",
"vue": "^3.2.31",
"vue-class-component": "^8.0.0-rc.1"
},
"author": "lloydzhou",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"@vue/typescript/recommended"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-var-requires": "error",
"@typescript-eslint/no-inferrable-types": "off",
"vue/no-setup-props-destructure": "off"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
},
"dependencies": {
"resize-detector": "^0.3.0"
}
}