-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.44 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
{
"name": "codexmap",
"version": "0.1.0-alpha.1",
"description": "Real-time self-healing multi-agent cockpit for code generation & context drift prevention",
"author": "Soumyajit Ghosh <somuai>",
"license": "MIT",
"main": "serve.js",
"bin": {
"codexmap": "./bin/codexmap.js",
"map": "./bin/codexmap.js"
},
"files": [
"agents",
"bin",
"engines",
"lib",
"ui",
"scripts",
"serve.js",
"orchestrator.js",
"LICENSE",
"README.md"
],
"scripts": {
"start": "node bin/codexmap.js",
"doctor": "node bin/codexmap.js doctor",
"check": "node scripts/check-js.js",
"check-js": "node scripts/check-js.js",
"test": "node scripts/unit-tests.js",
"test:e2e": "bash scripts/fake-engine-e2e.sh",
"test:e2e:fake": "bash scripts/fake-engine-e2e.sh",
"pack:smoke": "bash scripts/package-smoke-test.sh",
"release:preflight": "bash scripts/release-preflight.sh"
},
"keywords": [
"agentic-ai",
"multi-agent-systems",
"code-generation",
"self-healing",
"context-drift",
"ast",
"cytoscape",
"gemini-api",
"developer-tools",
"devtools"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@babel/parser": "^7.24.0",
"@babel/traverse": "^7.24.0",
"bcryptjs": "^2.4.3",
"chokidar": "^3.6.0",
"cytoscape": "^3.28.1",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"ws": "^8.16.0"
}
}