35 lines
661 B
JSON
35 lines
661 B
JSON
{
|
|||
|
|
"name": "telegram-codex-bot",
|
||
|
|
"version": "0.1.0",
|
||
|
|
"description": "Telegram bot powered by the local Codex CLI — zero-dependency, pm2-managed, with a built-in PM2 web viewer",
|
||
|
|
"license": "MIT",
|
||
|
|
"type": "commonjs",
|
||
|
|
"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"
|
||
|
|
]
|
||
|
|
}
|