-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.93 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.93 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
70
71
72
73
{
"name": "rootrouter",
"version": "0.1.1",
"description": "Algebraic agent infrastructure for AI swarms on Celo — root-pair telemetry, interaction graphs, and symmetry-aware routing",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": ["dist", "README.md"],
"repository": {
"type": "git",
"url": "https://github.com/Motus-DAO/RootRouter.git"
},
"homepage": "https://github.com/Motus-DAO/RootRouter#readme",
"bugs": {
"url": "https://github.com/Motus-DAO/RootRouter/issues"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "npm run build",
"dev": "tsx watch src/index.ts",
"demo:basic": "tsx demo/basic.ts",
"demo:swarm": "tsx demo/swarm.ts",
"demo:benchmark": "tsx demo/benchmark.ts",
"test": "tsx test/math.test.ts",
"deploy:contract": "tsx scripts/deploy.ts",
"dashboard": "next dev",
"dashboard:build": "next build"
},
"keywords": [
"ai-agents",
"celo",
"agent-infrastructure",
"weyl-chambers",
"openrouter",
"llm",
"context-filtering",
"telemetry",
"root-systems",
"knowledge-graph"
],
"author": "Gerry Alvarez <gerry@motusdao.org>",
"license": "MIT",
"dependencies": {
"chart.js": "^4.5.1",
"convex": "^1.31.0",
"dotenv": "^16.4.0",
"ethers": "^6.13.0",
"next": "^16.1.6",
"postprocessing": "^6.38.2",
"react": "^19.2.4",
"react-chartjs-2": "^5.3.1",
"react-dom": "^19.2.4",
"react-force-graph-2d": "^1.29.1",
"three": "^0.182.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.182.0",
"@types/uuid": "^9.0.0",
"solc": "^0.8.33",
"tsx": "^4.7.0",
"typescript": "^5.4.0"
}
}