forked from vasturiano/3d-force-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
{
"name": "3d-force-graph",
"version": "1.67.8",
"description": "UI component for a 3D force-directed graph using ThreeJS and d3-force-3d layout engine",
"unpkg": "dist/3d-force-graph.min.js",
"main": "dist/3d-force-graph.common.js",
"module": "dist/3d-force-graph.module.js",
"types": "dist/3d-force-graph.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/3d-force-graph.git"
},
"homepage": "https://github.com/vasturiano/3d-force-graph",
"keywords": [
"3d",
"force",
"graph",
"three",
"ngraph",
"webgl"
],
"author": {
"name": "Vasco Asturiano",
"url": "http://bl.ocks.org/vasturiano"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/vasturiano/3d-force-graph/issues"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -w -c rollup.config.dev.js",
"prepare": "npm run build"
},
"files": [
"dist/**/*",
"example/**/*"
],
"dependencies": {
"accessor-fn": "^1.3.0",
"kapsule": "^1.13.3",
"three": "^0.125.1",
"three-forcegraph": "^1.37.0",
"three-render-objects": "^1.24.6"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.38.0",
"rollup-plugin-dts": "^2.0.1",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.1.3"
}
}