mirror of
https://github.com/Skylar-Tech/node-red-contrib-matrix-chat.git
synced 2025-04-20 04:53:06 -06:00
- made input and output nodes more compatible with each other (for relay purposes). - File/Image input nodes can be combined with a File In node now - Remove console.log debug lines - set version to 0.0.3 - send message node updated to handle message formats and types. - Fixed ignore properties on matrix receive node not saving - created basic readme - WIP on node docs
35 lines
863 B
JSON
35 lines
863 B
JSON
{
|
|
"name": "node-red-contrib-matrix-chat",
|
|
"version": "0.0.3",
|
|
"description": "Matrix chat server client for Node-RED",
|
|
"dependencies": {
|
|
"matrix-js-sdk": "^12.2.0"
|
|
},
|
|
"node-red": {
|
|
"nodes": {
|
|
"matrix-server-config": "src/matrix-server-config.js",
|
|
"matrix-receive": "src/matrix-receive.js",
|
|
"matrix-send-message": "src/matrix-send-message.js",
|
|
"matrix-send-file": "src/matrix-send-file.js",
|
|
"matrix-send-image": "src/matrix-send-image.js",
|
|
"matrix-react": "src/matrix-react.js"
|
|
}
|
|
},
|
|
"keywords": [
|
|
"node-red",
|
|
"matrix",
|
|
"support",
|
|
"bot",
|
|
"chat"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/skylar-tech/node-red-contrib-matrix-chat"
|
|
},
|
|
"author": {
|
|
"name": "Skylar Sadlier",
|
|
"url": "https://skylar.tech"
|
|
},
|
|
"license": "SEE LICENSE FILE"
|
|
}
|