-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.8 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
76
77
78
79
80
81
82
{
"name": "@kridaydave/code-mapper",
"version": "1.0.1",
"description": "MCP server for codebase mapping and analysis with graph visualization",
"type": "module",
"main": "dist/index.js",
"bin": {
"code-mapper": "./bin/code-mapper.mjs"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:cover": "vitest run --coverage",
"setup": "node dist/tui/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"mcp-server",
"code-mapper",
"code-analysis",
"typescript",
"graph-visualization"
],
"author": "kridaydave",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kridaydave/code-mapper.git"
},
"bugs": {
"url": "https://github.com/kridaydave/code-mapper/issues"
},
"homepage": "https://github.com/kridaydave/code-mapper#readme",
"dependencies": {
"@cfworker/json-schema": "^4.1.1",
"@modelcontextprotocol/sdk": "^1.26.0",
"@inquirer/prompts": "^8.2.0",
"chalk": "^5.6.2",
"graphology": "^0.25.0",
"graphology-metrics": "^2.4.0",
"graphology-pagerank": "^1.1.0",
"graphology-shortest-path": "^2.1.0",
"ink": "^5.2.1",
"react": "^19.2.4",
"ts-morph": "^24.0.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^4.1.2",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^4.1.2"
},
"engines": {
"node": ">=18.0.0"
},
"os": [
"win32",
"darwin",
"linux"
],
"cpu": [
"x64",
"arm64"
],
"files": [
"bin",
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public"
}
}