UNPKG

n8n-nodes-telegram-mtproto

Version:

Telegram MTPROTO API integration for n8n - Real-time new message listening and automation

66 lines 1.74 kB
{ "name": "n8n-nodes-telegram-mtproto", "version": "0.1.16", "description": "Telegram MTPROTO API integration for n8n - Real-time new message listening and automation", "keywords": [ "n8n-community-node-package", "telegram", "mtproto", "gramjs", "messaging", "automation", "bot", "trigger", "real-time" ], "license": "MIT", "homepage": "", "author": { "name": "vzxp" }, "repository": { "type": "git", "url": "https://github.com/veezex/n8n-nodes-telegram-mtproto.git" }, "engines": { "bun": ">=1.00" }, "main": "index.js", "scripts": { "patch": "bun run version.ts patch", "build": "bun run rimraf dist && bun tsc && bun run gulp build:icons", "dev": "bun tsc --watch", "format": "bun run prettier nodes credentials --write", "lint": "bun run eslint nodes credentials package.json", "lintfix": "bun run eslint nodes credentials package.json --fix", "prepublishOnly": "bun run build && bun run lint -c .eslintrc.prepublish.js nodes credentials package.json", "test:connection": "node scripts/test-connection.js" }, "files": [ "dist" ], "n8n": { "n8nNodesApiVersion": 1, "credentials": [ "dist/credentials/TelegramMTPROTOApi.credentials.js" ], "nodes": [ "dist/nodes/TelegramApiTrigger/TelegramApiTrigger.node.js" ] }, "devDependencies": { "@types/bun": "^1.2.16", "@typescript-eslint/parser": "^8.34.1", "eslint": "^8.57.1", "eslint-plugin-n8n-nodes-base": "^1.16.3", "gulp": "^5.0.1", "prettier": "^3.5.3", "typescript": "^5.8.3" }, "peerDependencies": { "n8n-workflow": "^1.82.0" }, "dependencies": { "telegram": "^2.26.22" } }