UNPKG

iobroker.telegram

Version:

The adapter allows to send and receive telegram messages from ioBroker and to be a broker.

106 lines (105 loc) 3.37 kB
{ "name": "iobroker.telegram", "description": "The adapter allows to send and receive telegram messages from ioBroker and to be a broker.", "version": "4.1.0", "author": { "name": "bluefox", "email": "dogafox@gmail.com" }, "contributors": [ { "name": "bluefox", "email": "dogafox@gmail.com" }, { "name": "apollon77", "email": "iobroker@fischer-ka.de" }, { "name": "Matthias Kleine", "email": "info@haus-automatisierung.com" } ], "homepage": "https://github.com/iobroker-community-adapters/ioBroker.telegram", "repository": { "type": "git", "url": "https://github.com/iobroker-community-adapters/ioBroker.telegram" }, "keywords": [ "ioBroker", "notification", "telegram", "message" ], "engines": { "node": ">=20" }, "dependencies": { "@iobroker/adapter-core": "^3.2.3", "@iobroker/webserver": "^1.2.0", "axios": "^1.8.4", "node-telegram-bot-api": "^0.66.0" }, "devDependencies": { "@alcalzone/release-script": "^3.8.0", "@alcalzone/release-script-plugin-iobroker": "^3.7.2", "@alcalzone/release-script-plugin-license": "^3.7.0", "@alcalzone/release-script-plugin-manual-review": "^3.7.0", "@iobroker/adapter-dev": "^1.4.0", "@iobroker/eslint-config": "^2.0.1", "@iobroker/build-tools": "^2.0.15", "@iobroker/testing": "^5.0.3", "@types/chai": "^4.3.20", "@types/chai-as-promised": "^7.1.8", "@types/mocha": "^10.0.10", "@types/node": "^22.13.10", "@types/proxyquire": "^1.3.31", "@types/sinon": "^17.0.4", "@types/sinon-chai": "^3.2.12", "chai": "^4.5.0", "chai-as-promised": "^7.1.2", "mocha": "^11.1.0", "proxyquire": "^2.1.3", "sinon": "^19.0.4", "sinon-chai": "^3.7.0", "typescript": "~5.8.2" }, "bugs": { "url": "https://github.com/iobroker-community-adapters/ioBroker.telegram/issues" }, "main": "main.js", "files": [ "admin/", "lib/", "io-package.json", "LICENSE", "main.js" ], "scripts": { "test:package": "mocha test/package --exit", "test:integration": "mocha test/integration --exit", "test:js": "echo skip", "test": "npm run test:package", "check": "tsc --noEmit -p tsconfig.check.json", "lint": "eslint -c eslint.config.mjs .", "translate": "translate-adapter", "release": "release-script", "release-patch": "release-script patch --yes", "release-minor": "release-script minor --yes", "release-major": "release-script major --yes", "update-packages": "npx -y npm-check-updates --upgrade && cd src && npx -y npm-check-updates --upgrade && cd ../src-admin && npx -y npm-check-updates --upgrade", "npm": "npm i && cd src && npm i -f && cd ../src-admin && npm i -f && cd ..", "rules-0-clean": "node tasks --rules-0-clean", "rules-1-npm": "node tasks --rules-1-npm", "rules-2-compile": "node tasks --rules-2-compile", "rules-3-copy": "node tasks --rules-3-copy", "rules-build": "node tasks --rules-build", "admin-0-clean": "node tasks --admin-0-clean", "admin-1-npm": "node tasks --admin-1-npm", "admin-2-compile": "node tasks --admin-2-compile", "admin-3-copy": "node tasks --admin-3-copy", "admin-build": "node tasks --admin-build", "build": "node tasks --default" }, "license": "MIT" }