-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.44 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
83
84
85
{
"name": "@raymondchins/agentmap",
"version": "0.22.0",
"mcpName": "io.github.raymondchins/agentmap",
"publishConfig": {
"access": "public"
},
"description": "The TS/JS-accurate repo map for coding agents — a compiler-grade ts-morph import/symbol graph (resolves tsconfig paths, vite/webpack alias, #imports subpaths, workspaces) that answers where-is / what-breaks / does-this-exist in ~98% fewer context tokens (up to ~99.9% per task, chars/4 estimate). Ranked, queryable, honestly eval'd: PageRank hubs, Aider-style symbol ranking, token-budgeted digest, a single --any router (file → symbol → feature → live git-grep), a compiler-accurate call graph (--callers/--calls, transitive --depth), BM25 lexical search (--search) for vague queries, and Mermaid/DOT export (--export), with post-commit auto-refresh + a PreToolUse hook.",
"type": "module",
"bin": {
"agentmap": "agentmap.mjs"
},
"main": "agentmap.mjs",
"files": [
"agentmap.mjs",
"mcp.mjs",
"hooks",
"skills",
".claude-plugin",
"server.json",
"NOTICE"
],
"scripts": {
"map": "node agentmap.mjs",
"test": "node --test test/*.test.mjs test/**/*.test.mjs",
"eval": "node eval/eval.mjs",
"typecheck": "tsc -p jsconfig.json",
"coverage": "node --test --experimental-test-coverage --test-coverage-lines=90 --test-coverage-branches=70 test/*.test.mjs test/**/*.test.mjs"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"ts-morph": "28.0.0"
},
"keywords": [
"agentmap",
"repo-map",
"repomap",
"code-map",
"codebase-map",
"repository-map",
"ts-morph",
"typescript",
"javascript",
"pagerank",
"static-analysis",
"ast",
"code-graph",
"call-graph",
"knowledge-graph",
"dependency-graph",
"import-graph",
"code-intelligence",
"code-search",
"bm25",
"mermaid",
"context-engineering",
"token-efficiency",
"mcp",
"claude-code",
"cursor",
"codex",
"ai-agent",
"coding-agent",
"llm",
"claude",
"aider",
"context"
],
"repository": {
"type": "git",
"url": "git+https://github.com/raymondchins/agentmap.git"
},
"homepage": "https://github.com/raymondchins/agentmap#readme",
"bugs": {
"url": "https://github.com/raymondchins/agentmap/issues"
},
"author": "Raymond Surya Chin",
"license": "MIT",
"devDependencies": {
"@types/node": "^26.1.2",
"typescript": "^7.0.2"
}
}