weavebot-telegram
Version:
Generic Telegram bot framework with command registration
50 lines • 1.08 kB
JSON
{
"name": "weavebot-telegram",
"version": "0.1.1",
"description": "Generic Telegram bot framework with command registration",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit"
},
"dependencies": {
"weavebot-core": "^0.1.1",
"telegraf": "^4.15.6",
"dotenv": "^16.6.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.2",
"tsup": "^8.0.0",
"vitest": "^1.0.0"
},
"files": [
"dist/**/*",
"README.md"
],
"keywords": [
"telegram",
"bot",
"weavebot",
"content-processing"
],
"repository": {
"type": "git",
"url": "https://github.com/weavebot/library",
"directory": "packages/telegram"
},
"author": "WeaveBot Team",
"license": "MIT"
}