mirror of
https://github.com/Skylar-Tech/node-red-contrib-matrix-chat.git
synced 2025-04-20 13:03:12 -06:00
- Updated readme - Support for e2ee is here! It's in beta as I am sure there are still things to do (such as adding a node for encrypting files as files currently are not encrypted). - Added nodes for joining a room (and forcing users into a room), creating rooms, decrypting files, and inviting users to a room. - matrix-synapse-register node name changed from "Synapse Register v1" to "Shared Secret Registration" to make it more self explanatory. - matrix-receive node updated so that instead of selecting what events to ignore you select what events to listen on (this way it isn't a BC every time we add another event). - matrix-receive now handles m.emote & m.sticker events - matrix-server-config updated to now include the device ID and a checkbox to flag whether to enable e2ee support or not. - matrix-synapse-create-edit-user.html updated to include link to the API docs' - matrix-synapse-deactivate-user.html updated to include message about alternative way to deactivate users (in a way that is recoverable) - matrix-synapse-register node does not need to display if connected or not since it users an entirely different API anyways - matrix-synapse-users.html updated to include link to API docs
55 lines
1.8 KiB
JSON
55 lines
1.8 KiB
JSON
{
|
|
"name": "node-red-contrib-matrix-chat",
|
|
"version": "0.1.5",
|
|
"description": "Matrix chat server client for Node-RED",
|
|
"dependencies": {
|
|
"got": "^11.8.2",
|
|
"isomorphic-webcrypto": "^2.3.8",
|
|
"matrix-js-sdk": "^12.2.0",
|
|
"olm": "https://packages.matrix.org/npm/olm/olm-3.1.4.tgz",
|
|
"utf8": "^3.0.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",
|
|
"matrix-create-room": "src/matrix-create-room.js",
|
|
"matrix-invite-room": "src/matrix-invite-room.js",
|
|
"matrix-join-room": "src/matrix-join-room.js",
|
|
"matrix-crypt-file": "src/matrix-crypt-file.js",
|
|
"matrix-room-kick": "src/matrix-room-kick.js",
|
|
"matrix-room-ban": "src/matrix-room-ban.js",
|
|
"matrix-synapse-users": "src/matrix-synapse-users.js",
|
|
"matrix-synapse-register": "src/matrix-synapse-register.js",
|
|
"matrix-synapse-create-edit-user": "src/matrix-synapse-create-edit-user.js",
|
|
"matrix-synapse-deactivate-user": "src/matrix-synapse-deactivate-user.js",
|
|
"matrix-synapse-join-room": "src/matrix-synapse-join-room.js",
|
|
"matrix-whois-user": "src/matrix-whois-user.js",
|
|
"matrix-room-users": "src/matrix-room-users.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",
|
|
"devDependencies": {
|
|
"node-localstorage": "^2.2.1"
|
|
}
|
|
}
|