@fusefactory/fuse-three-forcegraph 1.0.1 → 1.0.2

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.
Files changed (4) hide show
  1. package/dist/index.d.mts +1478 -1467
  2. package/dist/index.mjs +4183 -4212
  3. package/package.json +40 -47
  4. package/index.ts +0 -34
package/package.json CHANGED
@@ -1,47 +1,40 @@
1
- {
2
- "name": "@fusefactory/fuse-three-forcegraph",
3
- "version": "1.0.1",
4
- "packageManager": "pnpm@10.6.4",
5
- "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.",
6
- "author": "Matteo Amerena",
7
- "license": "ISC",
8
- "keywords": [],
9
- "type": "module",
10
- "types": "./dist/index.d.ts",
11
- "exports": {
12
- ".": "./dist/index.mjs",
13
- "./package.json": "./package.json"
14
- },
15
- "files": [
16
- "dist"
17
- ],
18
- "scripts": {
19
- "build": "tsdown",
20
- "watch": "tsdown --watch"
21
- },
22
- "dependencies": {
23
- "@rnbo/js": "^1.4.2",
24
- "camera-controls": "^3.1.1",
25
- "three": "^0.181.2"
26
- },
27
- "devDependencies": {
28
- "@types/three": "^0.181.0",
29
- "tsdown": "0.20.0-beta.3",
30
- "typescript": "^5.9.3",
31
- "vite-plugin-glsl": "^1.5.5"
32
- },
33
- "pnpm": {
34
- "onlyBuiltDependencies": [
35
- "esbuild"
36
- ]
37
- },
38
- "main": "index.ts",
39
- "repository": {
40
- "type": "git",
41
- "url": "git+https://github.com/fusefactory/fuse-three-forcegraph.git"
42
- },
43
- "bugs": {
44
- "url": "https://github.com/fusefactory/fuse-three-forcegraph/issues"
45
- },
46
- "homepage": "https://github.com/fusefactory/fuse-three-forcegraph#readme"
47
- }
1
+ {
2
+ "name": "@fusefactory/fuse-three-forcegraph",
3
+ "version": "1.0.2",
4
+ "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.",
5
+ "author": "Matteo Amerena",
6
+ "license": "ISC",
7
+ "keywords": [],
8
+ "type": "module",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": "./dist/index.mjs",
12
+ "./package.json": "./package.json"
13
+ },
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "dependencies": {
18
+ "@rnbo/js": "^1.4.2",
19
+ "camera-controls": "^3.1.1",
20
+ "three": "^0.181.2"
21
+ },
22
+ "devDependencies": {
23
+ "@types/three": "^0.181.0",
24
+ "tsdown": "0.20.0-beta.3",
25
+ "typescript": "^5.9.3",
26
+ "vite-plugin-glsl": "^1.5.5"
27
+ },
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/fusefactory/fuse-three-forcegraph.git"
31
+ },
32
+ "bugs": {
33
+ "url": "https://github.com/fusefactory/fuse-three-forcegraph/issues"
34
+ },
35
+ "homepage": "https://github.com/fusefactory/fuse-three-forcegraph#readme",
36
+ "scripts": {
37
+ "build": "tsdown",
38
+ "watch": "tsdown --watch"
39
+ }
40
+ }
package/index.ts DELETED
@@ -1,34 +0,0 @@
1
- // Main orchestrator
2
- export { Engine } from './core/Engine';
3
-
4
- // Core data structures
5
- export { GraphStore } from './core/GraphStore';
6
- export { Clock } from './core/Clock';
7
-
8
- // Styling
9
- export { styleRegistry } from './core/StyleRegistry';
10
- export type { NodeStyle, LinkStyle, ResolvedNodeStyle, ResolvedLinkStyle } from './core/StyleRegistry';
11
-
12
- // Rendering
13
- export { GraphScene } from './rendering/GraphScene';
14
- export type { CameraConfig } from './rendering/CameraController';
15
-
16
- // Simulation
17
- export { ForceSimulation } from './simulation/ForceSimulation';
18
-
19
- // Textures/Buffers
20
- export { StaticAssets, staticAssets } from './textures/StaticAssets';
21
- export { SimulationBuffers } from './textures/SimulationBuffers';
22
- export { PickBuffer } from './textures/PickBuffer';
23
-
24
-
25
- // Interfaces
26
- export type { EngineConfig } from './types/iEngineConfig';
27
- export type { GraphData } from './types/iGraphData';
28
- export type { GraphNode } from './types/iGraphNode';
29
- export { NodeState } from './types/iGraphNode';
30
- export type { GraphLink } from './types/iGraphLink';
31
- export type { ForceConfig } from './types/iForceConfig';
32
- export type { GraphPreset } from './types/iGraphPreset';
33
- export { CameraMode } from './types/iCameraMode';
34
- export type { Attractor, ResolvedAttractor, Vec3 } from './types/iAttractor';