-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.28 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
{
"name": "rocket-chat-code-analyzer",
"version": "1.0.0",
"description": "Graph-native code navigator for Rocket.Chat monorepo, exposed as an MCP server",
"main": "src/server/index.ts",
"type": "module",
"scripts": {
"prewarm": "NODE_OPTIONS=\"--max-old-space-size=8192\" npx tsx src/server/index.ts --prewarm",
"start": "NODE_OPTIONS=\"--max-old-space-size=8192\" npx tsx src/server/index.ts",
"inspect": "npx @modelcontextprotocol/inspector npx tsx src/server/index.ts",
"eval": "NODE_OPTIONS=\"--max-old-space-size=8192\" npx tsx src/eval/tool-eval.ts",
"eval:agent": "NODE_OPTIONS=\"--max-old-space-size=8192\" npx tsx src/eval/agent-eval.ts",
"eval:baseline": "npx tsx src/eval/baseline-eval.ts",
"agy": "agy",
"agy:pro": "agy --model gemini-2.5-pro"
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"cli-progress": "^3.12.0",
"dotenv": "^17.3.1",
"fuzzysort": "^3.1.0",
"glob": "^13.0.6",
"graphology": "^0.26.0",
"graphology-metrics": "^2.4.0",
"pdfkit": "^0.17.2",
"strip-ansi": "^7.2.0",
"ts-morph": "^21.0.1"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/node": "^20.11.0",
"tsx": "^4.21.0",
"typescript": "^5.3.3"
}
}