-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.71 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
{
"name": "aframe-forcegraph-component",
"version": "3.3.0",
"description": "A 3D Force-Directed Graph component for A-Frame.",
"type": "module",
"unpkg": "dist/aframe-forcegraph-component.min.js",
"jsdelivr": "dist/aframe-forcegraph-component.min.js",
"main": "dist/aframe-forcegraph-component.mjs",
"module": "dist/aframe-forcegraph-component.mjs",
"exports": {
"umd": "./dist/aframe-forcegraph-component.min.js",
"default": "./dist/aframe-forcegraph-component.mjs"
},
"sideEffects": true,
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/aframe-forcegraph-component.git"
},
"homepage": "https://github.com/vasturiano/aframe-forcegraph-component#readme",
"keywords": [
"aframe",
"aframe-component",
"aframe-vr",
"vr",
"mozvr",
"webvr",
"3d",
"force",
"graph",
"forcegraph",
"d3"
],
"author": {
"name": "Vasco Asturiano <vastur@gmail.com>",
"url": "https://github.com/vasturiano"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/vasturiano/aframe-forcegraph-component/issues"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -w -c",
"prepare": "npm run build"
},
"files": [
"dist/**/*",
"examples/**/*"
],
"dependencies": {
"three-forcegraph": "1"
},
"peerDependencies": {
"aframe": "*"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"rimraf": "^6.0.1",
"rollup": "^4.44.1"
},
"engines": {
"node": ">=12"
}
}