-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.49 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.49 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "react-use-echarts",
"version": "1.2.0",
"private": false,
"description": "React hooks & component for Apache ECharts — TypeScript, auto-resize, themes, lazy init",
"keywords": [
"chart-linkage",
"charts",
"data-visualization",
"echarts",
"hooks",
"lazy-loading",
"react",
"resize-observer",
"themes",
"typescript",
"vite-plus"
],
"homepage": "https://github.com/chensid/react-use-echarts#readme",
"bugs": {
"url": "https://github.com/chensid/react-use-echarts/issues"
},
"license": "MIT",
"author": "Ethan",
"repository": {
"type": "git",
"url": "git+https://github.com/chensid/react-use-echarts.git"
},
"files": [
"AGENTS.md",
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.umd.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.js",
"default": "./dist/index.js"
},
"./themes/registry": {
"types": "./dist/themes/registry.d.ts",
"import": "./dist/themes/registry.js",
"default": "./dist/themes/registry.js"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"dev": "vp dev",
"build": "vp build",
"build:pages": "vp build",
"pack": "vp pack",
"test": "vp test",
"coverage": "vp test run --coverage",
"lint": "vp lint .",
"check": "vp check",
"prepublishOnly": "vp pack",
"typecheck": "tsc -b",
"prepare": "vp config"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@rolldown/plugin-babel": "^0.2.3",
"@shikijs/langs": "^4.0.2",
"@shikijs/themes": "^4.0.2",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.4",
"babel-plugin-react-compiler": "^1.0.0",
"echarts": "^6.0.0",
"jsdom": "^29.0.2",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-router-dom": "^7.14.1",
"shiki": "^4.0.2",
"typescript": "~6.0.3",
"vite": "npm:@voidzero-dev/vite-plus-core@^0.1.18",
"vite-plus": "^0.1.18",
"vitest": "npm:@voidzero-dev/vite-plus-test@^0.1.18"
},
"peerDependencies": {
"echarts": "^6.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"packageManager": "pnpm@10.33.0"
}