-
Notifications
You must be signed in to change notification settings - Fork 214
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.12 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
72
73
74
{
"name": "@visactor/vchart-extension",
"version": "2.1.0",
"description": "vchart extension package, including extension plugins and components",
"sideEffects": false,
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"unpkg": "build/index.min.js",
"unpkgFiles": [
"build/index.js",
"build/index.min.js"
],
"files": [
"cjs",
"esm",
"build"
],
"scripts": {
"compile": "tsc --noEmit",
"eslint": "eslint --debug --fix src/",
"build": "bundle",
"build:umd": "bundle --clean -f umd",
"build:es": "bundle --clean -f es",
"build:cjs": "bundle --clean -f cjs",
"start": "ts-node __tests__/runtime/browser/scripts/initVite.ts && vite serve __tests__/runtime/browser"
},
"dependencies": {
"@visactor/vrender-core": "1.1.1",
"@visactor/vrender-kits": "1.1.1",
"@visactor/vrender-components": "1.1.1",
"@visactor/vrender-animate": "1.1.1",
"@visactor/vchart": "workspace:2.1.0",
"@visactor/vutils": "~1.0.23",
"@visactor/vdataset": "~1.0.23",
"@visactor/vlayouts": "~1.0.23"
},
"devDependencies": {
"@internal/bundler": "workspace:*",
"@internal/eslint-config": "workspace:*",
"@internal/ts-config": "workspace:*",
"@rushstack/eslint-patch": "~1.1.4",
"@types/node": "*",
"@types/offscreencanvas": "2019.6.4",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "3.1.0",
"eslint": "~8.18.0",
"vite": "3.2.6",
"typescript": "4.9.5",
"ts-node": "10.9.0",
"ts-loader": "8.0.2",
"jest": "^26.0.0",
"canvas": "2.11.2",
"rollup-plugin-node-polyfills": "0.2.1",
"rollup-plugin-visualizer": "5.9.2",
"rollup-plugin-gzip": "3.1.0",
"rollup-plugin-bundle-size": "1.0.3",
"rollup-plugin-sizes": "1.0.5",
"rollup": "3.20.5"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/VisActor/VChart",
"directory": "packages/vchart-extension"
},
"license": "MIT"
}