-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.11 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": "graph-explorer",
"version": "1.0.0",
"description": "图谱探索是基于d3的图谱可视化产品",
"main": "lib/index.js",
"module": "es/index.js",
"types": "types/index.d.ts",
"scripts": {
"clean": "rimraf lib dist es types",
"build": "rollup --config ./build/rollup.config.js",
"lint": "eslint --fix --ext .ts,.js, /src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Alex-Li2018/graph-explorer.git"
},
"keywords": [
"graph-explorer"
],
"author": "alex li",
"license": "MIT",
"bugs": {
"url": "https://github.com/Alex-Li2018/graph-explorer/issues"
},
"homepage": "https://github.com/Alex-Li2018/graph-explorer#readme",
"dependencies": {
"chroma-js": "^2.4.2",
"d3": "^7.6.1",
"d3-color": "^3.1.0",
"d3-drag": "^3.0.0",
"d3-ease": "^3.0.1",
"d3-force": "^3.0.0",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-shape": "^3.1.0",
"d3-transition": "^3.0.1",
"d3-zoom": "^3.0.0",
"typescript": "^4.8.3"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@types/chroma-js": "^2.1.4",
"@types/d3": "^7.4.0",
"@types/d3-color": "^3.1.0",
"@types/d3-drag": "^3.0.1",
"@types/d3-ease": "^3.0.0",
"@types/d3-force": "^3.0.3",
"@types/d3-scale": "^4.0.2",
"@types/d3-selection": "^3.0.3",
"@types/d3-shape": "^3.1.0",
"@types/d3-transition": "^3.0.2",
"@types/d3-zoom": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"cross-env": "^7.0.3",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.79.0",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-typescript2": "^0.34.0"
},
"peerDependencies": {
"@babel/runtime": "^7.16.3"
}
}