-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
112 lines (112 loc) · 2.86 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
105
106
107
108
109
110
111
112
{
"name": "antv-x6-vue",
"version": "1.3.1",
"description": "the vue toolkit for graph analysis based on x6",
"scripts": {
"prepare": "install-peers",
"serve": "vue-cli-service serve example/main.ts",
"build": "rollup -c",
"lint": "vue-cli-service lint"
},
"repository": {
"type": "git",
"url": "https://github.com/lloydzhou/antv-x6-vue.git"
},
"main": "dist/index.js",
"keywords": [
"antv",
"x6",
"graph",
"svg",
"vue",
"vue3"
],
"peerDependencies": {
"@antv/x6": "^1.33.1",
"antv-x6-html2": "^1.0.5",
"vue": "^3.2.31"
},
"devDependencies": {
"@antv/graphin-icons": "^1.0.0",
"@antv/x6": "^1.33.1",
"@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",
"antv-x6-html2": "^1.0.6",
"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",
"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",
"rollup": "2.27.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-less": "^1.1.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-optimize-lodash-imports": "^1.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.31.2",
"rollup-plugin-vue": "^6.0.0",
"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",
"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": {
"antv-x6-html2": "^1.0.6",
"resize-detector": "^0.3.0"
}
}