Files
innervoice/package.json
RichardDillman c4cfcf6eb8 cleanup
2025-11-23 01:33:33 -05:00

44 lines
1.1 KiB
JSON

{
"name": "innervoice",
"version": "1.0.0",
"description": "Your inner thoughts, delivered to Telegram - A notification bridge for Claude Code and any other apps",
"main": "dist/index.js",
"type": "module",
"bin": {
"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 innervoice",
"stop": "pm2 stop innervoice",
"logs": "pm2 logs innervoice",
"tools": "node scripts/list-tools.js",
"config": "bash scripts/get-mcp-config.sh"
},
"keywords": [
"telegram",
"notifications",
"claude",
"bridge"
],
"author": "rdillman@gmail.com",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.22.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"node-fetch": "^3.3.2",
"telegraf": "^4.16.3"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}