Files
telegram-bot/package.json
T

44 lines
919 B
JSON

{
"name": "telegram-bot",
"version": "0.2.0",
"description": "Telegram bot powered by your local AI CLI (OpenAI Codex or Claude Code) — zero-dependency, pm2-managed, with a web console to manage multiple bots",
"license": "MIT",
"type": "commonjs",
"publishConfig": {
"registry": "https://jianmiau.ddns.net/api/packages/AI/npm/"
},
"repository": {
"type": "git",
"url": "ssh://git@jianmiau.ddns.net:8022/AI/telegram-bot.git"
},
"main": "src/index.js",
"bin": {
"telegram-bot": "bin/cli.js",
"tgbot": "bin/cli.js"
},
"files": [
"bin/",
"src/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "node bin/cli.js web",
"dev": "node --watch src/web/server.js"
},
"keywords": [
"telegram",
"bot",
"codex",
"codex-cli",
"claude",
"claude-code",
"pm2",
"ai",
"agent"
]
}