-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.02 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.02 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
{
"name": "codeorb",
"version": "1.0.0",
"description": "3D interactive knowledge graph for any codebase. JARVIS-style visualization you can explore and talk to.",
"bin": { "codeorb": "./bin/cli.js" },
"scripts": {
"test": "node --test test/*.test.js",
"dev": "node bin/cli.js",
"build": "cd src/frontend && npm run build",
"postinstall": "cd src/frontend && npm install && npm run build"
},
"engines": { "node": ">=18" },
"files": [
"bin/",
"src/scanner/",
"src/server/",
"src/frontend/dist/",
"src/frontend/package.json",
"LICENSE",
"README.md"
],
"keywords": ["codebase", "visualization", "knowledge-graph", "three.js", "developer-tools"],
"author": "Ethan Rogers <contact@ethanrogers.us>",
"license": "MIT",
"repository": { "type": "git", "url": "https://github.com/ethanplusai/codeorb" },
"dependencies": {
"commander": "^12.0.0",
"express": "^4.18.0",
"ws": "^8.16.0",
"ignore": "^5.3.0",
"d3-force-3d": "^3.0.0",
"open": "^10.0.0"
}
}