-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.01 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
{
"name": "code-analyzer",
"version": "0.1.0",
"description": "Agentic inference context reduction for Rocket.Chat — GSoC 2026",
"main": "dist/demo.js",
"scripts": {
"build": "tsc",
"start": "node dist/mcpLazyServer.js",
"demo": "npx tsx src/demo.ts",
"mcp:server": "node dist/mcpLazyServer.js",
"mcp:server:dev": "npx tsx src/mcpLazyServer.ts",
"demo:mcp": "npx tsx src/demo.ts --mode mcp",
"test": "jest"
},
"keywords": ["rocket.chat", "gemini", "context-reduction", "ts-morph", "gsoc"],
"author": "Prajan Manoj Kumar Rekha",
"license": "MIT",
"dependencies": {
"@google/genai": "^0.7.0",
"dotenv": "^16.4.7",
"ts-morph": "^24.0.0",
"tsx": "^4.0.0",
"typescript":
"^5.0.0"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^22.0.0",
"jest": "^29.0.0",
"jest-util": "^29.7.0",
"ts-jest": "^29.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": ["**/tests/**/*.test.ts"]
}
}