-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 919 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 919 Bytes
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
{
"name": "rocket-chat-code-analyzer",
"version": "2.0.0",
"description": "Agentic code analyzer for the Rocket.Chat monorepo: skeleton-first retrieval with a fixed 3-LLM-call QA pipeline",
"type": "module",
"scripts": {
"prewarm": "NODE_OPTIONS=\"--max-old-space-size=8192\" npx tsx src/indexer/prewarm.ts",
"truth": "npx tsx src/eval/truth.ts",
"test": "tsx --test 'tests/**/*.test.ts'",
"ask": "npx tsx src/pipeline/cli.ts",
"mcp": "npx tsx src/mcp/server.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.110.0",
"@google/generative-ai": "^0.21.0",
"@modelcontextprotocol/sdk": "^1.30.0",
"cli-progress": "^3.12.0",
"glob": "^13.0.6",
"minimatch": "^9.0.9",
"ts-morph": "^21.0.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/node": "^20.11.0",
"tsx": "^4.21.0",
"typescript": "^5.3.3"
}
}