@fusefactory/fuse-three-forcegraph 1.0.5 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +61 -43
- package/dist/index.d.mts +1551 -1540
- package/dist/index.mjs +4535 -4446
- package/package.json +46 -46
package/package.json
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@fusefactory/fuse-three-forcegraph",
|
|
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
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@fusefactory/fuse-three-forcegraph",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "1.0.7",
|
|
5
|
+
"packageManager": "pnpm@10.6.4",
|
|
6
|
+
"description": "A high-performance GPU-accelerated force-directed graph visualization library built with Three.js. Features a modular pass-based architecture for flexible and extensible force simulations.",
|
|
7
|
+
"author": "Matteo Amerena",
|
|
8
|
+
"license": "ISC",
|
|
9
|
+
"homepage": "https://github.com/fusefactory/fuse-three-forcegraph#readme",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/fusefactory/fuse-three-forcegraph.git"
|
|
13
|
+
},
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/fusefactory/fuse-three-forcegraph/issues"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [],
|
|
18
|
+
"exports": {
|
|
19
|
+
".": "./dist/index.mjs",
|
|
20
|
+
"./package.json": "./package.json"
|
|
21
|
+
},
|
|
22
|
+
"types": "./dist/index.d.ts",
|
|
23
|
+
"files": [
|
|
24
|
+
"dist"
|
|
25
|
+
],
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "tsdown",
|
|
28
|
+
"watch": "tsdown --watch"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@rnbo/js": "^1.4.2",
|
|
32
|
+
"camera-controls": "^3.1.1",
|
|
33
|
+
"three": "^0.181.2"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@types/three": "^0.181.0",
|
|
37
|
+
"tsdown": "0.20.0-beta.3",
|
|
38
|
+
"typescript": "^5.9.3",
|
|
39
|
+
"vite-plugin-glsl": "^1.5.5"
|
|
40
|
+
},
|
|
41
|
+
"pnpm": {
|
|
42
|
+
"onlyBuiltDependencies": [
|
|
43
|
+
"esbuild"
|
|
44
|
+
]
|
|
45
|
+
}
|
|
46
|
+
}
|