forked from vasturiano/react-force-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.83 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
{
"name": "react-force-graph",
"version": "1.41.14",
"description": "React component for 2D, 3D, VR and AR force directed graphs",
"license": "MIT",
"unpkg": "dist/react-force-graph.min.js",
"main": "dist/react-force-graph.common.js",
"module": "dist/react-force-graph.module.js",
"types": "dist/react-force-graph.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/react-force-graph.git"
},
"homepage": "https://github.com/vasturiano/react-force-graph",
"keywords": [
"react",
"force",
"graph",
"3d",
"2d",
"vr",
"ar",
"three",
"webgl",
"canvas"
],
"author": {
"name": "Vasco Asturiano",
"url": "http://bl.ocks.org/vasturiano"
},
"bugs": {
"url": "https://github.com/vasturiano/react-force-graph/issues"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -w -c rollup.config.dev.js",
"prepare": "npm run build"
},
"files": [
"dist/**/*"
],
"dependencies": {
"3d-force-graph": "^1.70",
"3d-force-graph-ar": "^1.7",
"3d-force-graph-vr": "^2.0",
"force-graph": "^1.42",
"prop-types": "^15.8",
"react-kapsule": "^2.2"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
"@babel/preset-env": "^7.18.10",
"@babel/preset-react": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@types/react": "^18.0.17",
"rimraf": "^3.0.2",
"rollup": "^2.78.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.7.4"
}
}