This repository was archived by the owner on Mar 4, 2026. It is now read-only.
forked from coleam00/remote-agentic-coding-system
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.87 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.87 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "remote-coding-agent",
"version": "1.0.0",
"description": "Webton Remote Agentic Coding System - Control AI coding assistants from Telegram, Slack, and GitHub",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"mcp": "node dist/index.js --mcp",
"setup-auth": "node dist/scripts/setup-auth.js",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "npm run type-check && npm run lint && npm run test",
"type-check": "tsc --noEmit",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"sync:types": "copyfiles -f src/types/index.ts webui/src/types/",
"sync:utils": "copyfiles -f src/utils/tool-formatter.ts webui/src/utils/"
},
"keywords": [
"ai",
"coding-assistant",
"telegram",
"slack",
"github",
"claude",
"codex"
],
"author": "Kenny R. Güçü (Webton e.U.)",
"license": "MIT",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.30",
"@modelcontextprotocol/sdk": "^1.25.3",
"@octokit/rest": "^22.0.0",
"@openai/codex-sdk": "^0.57.0",
"@types/multer": "^2.0.0",
"@types/ws": "^8.18.1",
"dotenv": "^16.4.0",
"express": "^4.18.0",
"multer": "^2.0.2",
"pg": "^8.11.0",
"telegraf": "^4.16.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/express": "^4.17.0",
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/pg": "^8.11.0",
"copyfiles": "^2.4.1",
"eslint": "^9.39.1",
"eslint-config-prettier": "10.1.8",
"jest": "^29.7.0",
"prettier": "3.6.2",
"ts-jest": "^29.1.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.46.4"
},
"engines": {
"node": ">=20.0.0"
}
}