Files
telegram-codex-bot/package.json
T

42 lines
865 B
JSON
Raw Normal View History

{
"name": "telegram-codex-bot",
2026-08-04 16:32:56 +08:00
"version": "0.1.1",
"description": "Telegram bot powered by the local Codex CLI — zero-dependency, pm2-managed, with a built-in PM2 web viewer",
"license": "MIT",
"type": "commonjs",
2026-08-04 16:28:10 +08:00
"publishConfig": {
"registry": "https://git.catan.com.tw/api/packages/Frontend/npm/"
},
"repository": {
"type": "git",
"url": "git@git.catan.com.tw:Frontend/telegram-codex-bot.git"
},
"main": "src/index.js",
"bin": {
"telegram-codex-bot": "bin/cli.js",
"tgcodex": "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",
"pm2",
"ai",
"agent"
]
}