-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.56 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.56 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
{
"name": "@gingerdev/codemap-cli",
"version": "0.6.2",
"description": "Static analysis CLI that generates relationship maps of codebases for AI-assisted development",
"main": "dist/cli/index.js",
"bin": {
"codemap": "dist/cli/index.js",
"codemap-mcp": "dist/mcp/server.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli/index.ts",
"start": "node dist/cli/index.js",
"lint": "eslint src --ext .ts",
"test": "jest",
"postinstall": "node dist/cli/postinstall.js || true",
"prepublishOnly": "npm run build"
},
"keywords": [
"codemap",
"static-analysis",
"ast",
"dependency-graph",
"call-graph",
"code-relationships",
"ai-tools",
"developer-tools"
],
"author": "Edmund Hee",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/EdmundHee/codemap-cli.git"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"fast-glob": "^3.3.2",
"ora": "^8.0.1",
"tree-sitter-wasms": "^0.1.11",
"ts-morph": "^23.0.0",
"web-tree-sitter": "^0.24.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.14.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.0"
}
}