package.json 412 B

12345678910111213141516
  1. {
  2. "type": "module",
  3. "name": "opencode-telegram-plugin",
  4. "version": "1.0.0",
  5. "description": "Telegram notifications for OpenCode sessions",
  6. "main": "telegram-notify.ts",
  7. "scripts": {
  8. "start": "bun telegram-bot.ts",
  9. "build": "bun build telegram-bot.ts --outdir dist"
  10. },
  11. "devDependencies": {
  12. "@types/node": "^24.2.1",
  13. "@opencode-ai/plugin": "^0.5.1",
  14. "bun-types": "latest"
  15. }
  16. }