-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.89 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
{
"name": "@omertt27/codemap",
"version": "0.1.0",
"description": "Google Maps for codebases — a local-first architecture map, dependency intelligence, impact analysis, and git time machine for any repository.",
"keywords": [
"code-visualization", "dependency-graph", "architecture", "static-analysis",
"tree-sitter", "monorepo", "impact-analysis", "codebase", "mcp", "developer-tools"
],
"type": "module",
"engines": {
"node": ">=22"
},
"bin": {
"codemap": "dist/cli.js",
"repo-map": "dist/cli.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"ui/index.html",
"ui/style.css",
"ui/dist",
"schema"
],
"scripts": {
"build": "tsc && node scripts/build-ui.mjs",
"prepare": "npm run build",
"build:ui": "node scripts/build-ui.mjs",
"dev": "tsx src/cli.ts",
"dev:ui": "node scripts/build-ui.mjs --watch",
"start": "node dist/cli.js",
"test": "node --import tsx --test \"test/**/*.test.ts\"",
"typecheck": "tsc --noEmit && tsc -p tsconfig.ui.json",
"verify:ui": "node scripts/verify-ui.mjs"
},
"license": "MIT",
"author": "Omer Tahtaci",
"repository": {
"type": "git",
"url": "git+https://github.com/omertt27/CodeMap.git"
},
"homepage": "https://github.com/omertt27/CodeMap#readme",
"bugs": {
"url": "https://github.com/omertt27/CodeMap/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"3d-force-graph": "^1.80.0",
"commander": "^15.0.0",
"cytoscape": "^3.34.0",
"graphology": "^0.26.0",
"graphology-layout-forceatlas2": "^0.10.1",
"ignore": "^7.0.5",
"sigma": "^3.0.3",
"tree-sitter-wasms": "^0.1.13",
"web-tree-sitter": "^0.20.8",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^26.1.0",
"esbuild": "^0.28.1",
"puppeteer-core": "^25.3.0",
"tsx": "^4.23.0",
"typescript": "^6.0.3"
}
}