-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.77 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.77 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
{
"name": "use-react-echarts",
"version": "0.8.1",
"description": "React hooks for Apache Echarts.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"doc": "cd ./website && pnpm start",
"clean": "rimraf lib dist",
"lib": "npm run clean && tsc -p tsconfig.prod.json",
"prod": "pnpm build && cd dist && http-server",
"release": "npm run lib && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/RThong/use-react-echarts.git"
},
"keywords": [
"react",
"react-hooks",
"component",
"echarts-react",
"echarts",
"react-echarts",
"chart",
"charts",
"graph"
],
"author": "Hong (https://github.com/RThong)",
"license": "MIT",
"homepage": "https://github.com/RThong/use-react-echarts",
"peerDependencies": {
"echarts": "^5.0.0",
"react": "^17.0.0"
},
"devDependencies": {
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"@vitejs/plugin-react": "^2.0.1",
"echarts": "^5.3.3",
"eslint": "^8.23.0",
"eslint-config-alloy": "^4.6.2",
"eslint-config-prettier": "^8.5.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"typescript": "^4.8.2",
"vite": "^3.0.7"
},
"dependencies": {
"@juggle/resize-observer": "^3.3.1"
}
}