-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
63 lines (63 loc) · 1.58 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
{
"name": "3d-force-graph-ar",
"version": "1.8.6",
"description": "UI component for a 3D force-directed graph in AR",
"license": "MIT",
"type": "module",
"unpkg": "dist/3d-force-graph-ar.min.js",
"main": "dist/3d-force-graph-ar.mjs",
"module": "dist/3d-force-graph-ar.mjs",
"types": "dist/3d-force-graph-ar.d.ts",
"exports": {
"types": "./dist/3d-force-graph-ar.d.ts",
"umd": "./dist/3d-force-graph-ar.min.js",
"default": "./dist/3d-force-graph-ar.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vasturiano/3d-force-graph-ar.git"
},
"homepage": "https://github.com/vasturiano/3d-force-graph-ar",
"keywords": [
"augmented-reality",
"3d",
"force",
"graph",
"ar.js",
"aframe"
],
"author": {
"name": "Vasco Asturiano",
"url": "https://github.com/vasturiano"
},
"bugs": {
"url": "https://github.com/vasturiano/3d-force-graph-ar/issues"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -w -c rollup.config.dev.js",
"prepare": "npm run build"
},
"files": [
"dist/**/*"
],
"dependencies": {
"aframe-forcegraph-component": "3",
"kapsule": "1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"rimraf": "^6.0.1",
"rollup": "^4.24.3",
"rollup-plugin-dts": "^6.1.1",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=12"
}
}