forked from MackDing/CodexClaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.64 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
{
"name": "codex-telegram-claws",
"version": "0.1.0",
"description": "A super Telegram bot that securely orchestrates Codex CLI with PTY streaming, MCP routing, and GitHub automation skills.",
"type": "module",
"main": "src/index.js",
"scripts": {
"start": "tsx src/index.js",
"dev": "tsx watch src/index.js",
"check": "npm run typecheck",
"typecheck": "tsc --noEmit",
"test": "node --import tsx --test",
"lint": "eslint src tests scripts eslint.config.js ecosystem.config.cjs",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"healthcheck": "tsx scripts/healthcheck.js",
"healthcheck:strict": "tsx scripts/healthcheck.js --strict",
"telegram:smoke": "tsx scripts/telegramSmoke.js",
"ci": "npm run check && npm run lint && npm run format:check && npm test && npm run healthcheck"
},
"keywords": [
"telegram",
"telegraf",
"codex",
"node-pty",
"mcp",
"agent"
],
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.2",
"@octokit/rest": "^22.0.0",
"dotenv": "^16.4.7",
"lodash.throttle": "^4.1.1",
"node-cron": "^4.0.5",
"node-pty": "^1.0.0",
"simple-git": "^3.28.0",
"strip-ansi": "^7.1.0",
"telegraf": "^4.16.3"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"eslint": "^9.17.0",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}