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
57 lines (57 loc) · 1.41 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.41 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
{
"name": "remote-coding-agent",
"version": "1.0.0",
"description": "Remote agentic coding platform - 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",
"setup-auth": "node dist/scripts/setup-auth.js",
"test": "jest",
"test:watch": "jest --watch",
"type-check": "tsc --noEmit",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [
"ai",
"coding-assistant",
"telegram",
"slack",
"github",
"claude",
"codex"
],
"author": "",
"license": "MIT",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.30",
"@octokit/rest": "^22.0.0",
"@openai/codex-sdk": "^0.57.0",
"dotenv": "^16.4.0",
"express": "^4.18.0",
"pg": "^8.11.0",
"telegraf": "^4.16.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",
"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"
}
}