-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathpackage.json
86 lines (86 loc) · 2.16 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
{
"name": "@visactor/react-vchart",
"version": "1.13.4",
"sideEffects": false,
"description": "The react version of VChart 4.x",
"keywords": [
"react",
"charts",
"visualization",
"VChart",
"animation",
"storytelling",
"VisActor",
"graphics",
"interaction"
],
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"files": [
"esm",
"cjs",
"dist"
],
"scripts": {
"compile": "tsc --noEmit",
"start": "vite ./demo",
"build": "bundle --clean"
},
"dependencies": {
"@visactor/vchart": "workspace:1.13.4",
"@visactor/vutils": "~0.19.3",
"@visactor/vrender-core": "0.21.11",
"@visactor/vrender-kits": "0.21.11",
"@visactor/vgrammar-core": "0.15.5",
"react-is": "^18.2.0"
},
"devDependencies": {
"@internal/bundler": "workspace:*",
"@internal/eslint-config": "workspace:*",
"@internal/ts-config": "workspace:*",
"@rushstack/eslint-patch": "~1.1.4",
"@types/jest": "^26.0.0",
"@types/offscreencanvas": "2019.6.4",
"jest": "^26.0.0",
"ts-jest": "^26.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-is": "^17.0.3",
"eslint": "~8.18.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "7.30.1",
"@rollup/plugin-typescript": "11.1.0",
"rollup": "3.20.5",
"tslib": "2.3.1",
"typescript": "4.9.5",
"@types/node": "*",
"@vitejs/plugin-react": "3.1.0",
"vite": "3.2.6"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"homepage": "https://www.visactor.io/vchart",
"bugs": "https://github.com/VisActor/VChart/issues",
"repository": {
"type": "git",
"url": "https://github.com/VisActor/VChart.git",
"directory": "packages/react-vchart"
},
"author": {
"name": "VisActor",
"url": "https://www.visactor.io/"
},
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}