-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.16 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
{
"name": "@anagnole/mycelium",
"version": "0.2.0",
"type": "module",
"description": "Small-world agent network infrastructure — graph construction, personality embedding, and topology-driven propagation for multi-agent systems",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./viz": {
"import": "./dist/viz/index.js",
"types": "./dist/viz/index.d.ts"
}
},
"scripts": {
"build": "tsc && vite build -c src/viz/client/vite.config.ts",
"build:core": "tsc",
"build:viz-client": "vite build -c src/viz/client/vite.config.ts",
"test": "vitest --run",
"test:watch": "vitest"
},
"files": [
"dist",
"src"
],
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^5.2.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-force-graph-2d": "^1.29.1",
"recharts": "^3.8.1",
"typescript": "^5.7.0",
"vitest": "^3.0.0",
"zustand": "^5.0.12"
},
"dependencies": {
"ws": "^8.20.0"
}
}