This commit is contained in:
RichardDillman
2025-11-23 01:33:33 -05:00
parent 1a41318db5
commit c4cfcf6eb8
4 changed files with 45 additions and 19 deletions

View File

@@ -1,20 +1,21 @@
{
"name": "claude-telegram-bridge",
"name": "innervoice",
"version": "1.0.0",
"description": "Standalone Telegram notification bridge for Claude Code and any other apps",
"description": "Your inner thoughts, delivered to Telegram - A notification bridge for Claude Code and any other apps",
"main": "dist/index.js",
"type": "module",
"bin": {
"telegram-bridge-mcp": "dist/mcp-server.js"
"innervoice": "dist/mcp-server.js"
},
"scripts": {
"postinstall": "bash scripts/postinstall.sh",
"build": "tsc",
"dev": "tsx src/index.ts",
"mcp": "tsx src/mcp-server.ts",
"start": "node dist/index.js",
"daemon": "pm2 start dist/index.js --name claude-telegram",
"stop": "pm2 stop claude-telegram",
"logs": "pm2 logs claude-telegram",
"daemon": "pm2 start dist/index.js --name innervoice",
"stop": "pm2 stop innervoice",
"logs": "pm2 logs innervoice",
"tools": "node scripts/list-tools.js",
"config": "bash scripts/get-mcp-config.sh"
},