-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.29 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
{
"name": "repomap-mcp",
"version": "0.1.1",
"description": "MCP server and CLI tool for generating repository maps using Tree-sitter AST analysis and PageRank ranking",
"type": "module",
"main": "dist/index.js",
"bin": {
"repomap-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"inspect": "npx @modelcontextprotocol/inspector --config mcp.json",
"prepublishOnly": "pnpm build"
},
"files": [
"dist",
"queries"
],
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"mcp",
"repomap",
"tree-sitter",
"code-analysis",
"repository-map"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fl0w1nd/repomap-mcp.git"
},
"homepage": "https://github.com/fl0w1nd/repomap-mcp",
"bugs": {
"url": "https://github.com/fl0w1nd/repomap-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"gpt-tokenizer": "^3.4.0",
"ignore": "^7.0.5",
"tree-sitter-wasms": "^0.1.13",
"web-tree-sitter": "^0.25.10",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.21.0",
"typescript": "^5.7.0"
},
"packageManager": "pnpm@10.28.2"
}