-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.05 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
74
75
{
"name": "@lusiem/code-atlas",
"version": "0.6.0",
"mcpName": "io.github.lusiem/code-atlas",
"description": "Multi-language code intelligence MCP server: repo architecture maps, symbols, ASTs, call graphs, references, change-impact analysis with affected tests, co-change coupling, web-framework routes, semantic search, and game-engine assets for Claude Code and other MCP clients.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lusiem/code-atlas.git"
},
"homepage": "https://github.com/lusiem/code-atlas#readme",
"bugs": {
"url": "https://github.com/lusiem/code-atlas/issues"
},
"bin": {
"code-atlas": "./dist/index.js"
},
"main": "./dist/index.js",
"files": [
"dist",
"grammars",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=22"
},
"scripts": {
"grammars": "node scripts/copy-grammars.mjs",
"prepare": "node scripts/copy-grammars.mjs",
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build && npm test",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src test",
"format": "prettier --write src test",
"dev": "tsx src/index.ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"tree-sitter",
"ast",
"code-search",
"lsp",
"claude"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"adm-zip": "^0.6.0",
"better-sqlite3": "^12.11.1",
"chokidar": "^5.0.0",
"ignore": "^7.0.5",
"sqlite-vec": "^0.1.9",
"tar": "^7.5.19",
"vscode-jsonrpc": "^9.0.1",
"web-tree-sitter": "^0.26.10",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/adm-zip": "^0.5.8",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^26.1.0",
"@vscode/tree-sitter-wasm": "^0.3.1",
"eslint": "^10.6.0",
"gpt-tokenizer": "^3.4.0",
"prettier": "^3.9.4",
"tsx": "^4.23.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"vitest": "^4.1.9"
}
}