-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.64 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
{
"name": "ast-lens-mcp",
"version": "0.2.0",
"description": "An MCP server that gives AI agents structural understanding of TypeScript/JavaScript codebases via AST analysis, import graphs, dead-code checks, call graphs, and public API surface queries.",
"type": "module",
"license": "MIT",
"author": "Morgan",
"repository": {
"type": "git",
"url": "git+https://github.com/morgan-coded/ast-lens-mcp.git"
},
"bugs": {
"url": "https://github.com/morgan-coded/ast-lens-mcp/issues"
},
"homepage": "https://github.com/morgan-coded/ast-lens-mcp#readme",
"keywords": [
"mcp",
"model-context-protocol",
"ast",
"babel",
"static-analysis",
"typescript",
"javascript",
"code-intelligence",
"llm",
"ai-tools"
],
"bin": {
"ast-lens-mcp": "dist/index.js"
},
"main": "dist/index.js",
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"smoke": "node scripts/smoke.mjs",
"clean": "rm -rf dist"
},
"dependencies": {
"@babel/parser": "^7.29.7",
"@babel/traverse": "^7.29.7",
"@babel/types": "^7.29.7",
"@modelcontextprotocol/sdk": "^1.29.0",
"fast-glob": "^3.3.3",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/babel__traverse": "^7.28.0",
"@types/node": "^22.10.0",
"tsup": "^8.5.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^6.4.2",
"vitest": "^3.2.4"
}
}