-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.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
{
"name": "@codegraph/mcp-server",
"version": "0.1.0",
"private": true,
"description": "MCP Server for CodeGraph - enables AI assistants to query code knowledge graph",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"codegraph-mcp": "./dist/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@codegraph/core": "workspace:*",
"@codegraph/logger": "workspace:*",
"@codegraph/plugin-nlp": "workspace:*",
"@modelcontextprotocol/ext-apps": "^1.7.2",
"@modelcontextprotocol/sdk": "^1.29.0",
"glob": "^10.5.0"
},
"devDependencies": {
"@types/node": "^22.19.19",
"esbuild": "^0.27.7",
"tsx": "^4.22.3",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist"
]
}