-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 989 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 989 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
30
31
32
33
34
35
36
37
38
{
"name": "codever",
"version": "0.1.0",
"private": true,
"description": "Telegram-driven Claude Code remote agent",
"type": "module",
"bin": {
"codever": "./bin/codever.js",
"codever-mcp": "./dist/mcp/stdio.js"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts",
"test": "vitest run && vitest run --config vitest.e2e.config.ts",
"test:unit": "vitest run",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.19.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@opencode-ai/sdk": "^1.4.3",
"@tencent-ai/agent-sdk": "^0.3.121",
"chalk": "^5.3.0",
"conf": "^12.0.0",
"grammy": "^1.30.0",
"https-proxy-agent": "^9.0.0",
"undici": "^8.3.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": ">=20",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.3.0",
"vitest": "^4.1.4"
}
}