2021-08-14 23:01:36 +08:00
|
|
|
{
|
2023-02-13 10:13:47 +08:00
|
|
|
"name": "node-red-contrib-matrix-chat-jw",
|
2023-02-13 16:10:06 +08:00
|
|
|
"version": "0.7.3",
|
2021-08-17 11:56:53 +08:00
|
|
|
"description": "Matrix chat server client for Node-RED",
|
2021-08-14 23:01:36 +08:00
|
|
|
"dependencies": {
|
2022-12-06 12:18:16 +08:00
|
|
|
"abort-controller": "^3.0.0",
|
2022-12-07 09:47:41 +08:00
|
|
|
"fs-extra": "^11.1.0",
|
2022-03-18 11:06:15 +08:00
|
|
|
"got": "^12.0.2",
|
2021-08-24 00:17:08 +08:00
|
|
|
"isomorphic-webcrypto": "^2.3.8",
|
2022-12-07 09:47:41 +08:00
|
|
|
"matrix-js-sdk": "^22.0.0",
|
2022-12-06 12:18:16 +08:00
|
|
|
"node-fetch": "^3.3.0",
|
2021-09-02 10:48:39 +08:00
|
|
|
"node-localstorage": "^2.2.1",
|
2022-12-06 10:49:55 +08:00
|
|
|
"olm": "https://gitlab.matrix.org/matrix-org/olm/-/package_files/472/download",
|
|
|
|
"request": "^2.88.2",
|
2021-09-02 10:48:39 +08:00
|
|
|
"utf8": "^3.0.0"
|
2021-08-14 23:01:36 +08:00
|
|
|
},
|
|
|
|
"node-red": {
|
2022-02-10 03:13:27 +08:00
|
|
|
"version": ">=1.3.0",
|
2021-08-14 23:01:36 +08:00
|
|
|
"nodes": {
|
|
|
|
"matrix-server-config": "src/matrix-server-config.js",
|
2021-08-17 11:56:53 +08:00
|
|
|
"matrix-receive": "src/matrix-receive.js",
|
|
|
|
"matrix-send-message": "src/matrix-send-message.js",
|
2022-03-13 17:58:17 +08:00
|
|
|
"matrix-delete-event": "src/matrix-delete-event.js",
|
2021-08-14 23:01:36 +08:00
|
|
|
"matrix-send-file": "src/matrix-send-file.js",
|
|
|
|
"matrix-send-image": "src/matrix-send-image.js",
|
2021-08-19 01:18:29 +08:00
|
|
|
"matrix-react": "src/matrix-react.js",
|
2021-08-24 00:17:08 +08:00
|
|
|
"matrix-create-room": "src/matrix-create-room.js",
|
|
|
|
"matrix-invite-room": "src/matrix-invite-room.js",
|
2022-12-06 14:40:05 +08:00
|
|
|
"matrix-room-invite": "src/matrix-room-invite.js",
|
2021-08-24 00:17:08 +08:00
|
|
|
"matrix-join-room": "src/matrix-join-room.js",
|
2022-12-06 14:40:05 +08:00
|
|
|
"matrix-leave-room": "src/matrix-leave-room.js",
|
2021-08-24 00:17:08 +08:00
|
|
|
"matrix-crypt-file": "src/matrix-crypt-file.js",
|
2021-08-19 01:18:29 +08:00
|
|
|
"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",
|
2021-08-24 00:17:08 +08:00
|
|
|
"matrix-synapse-join-room": "src/matrix-synapse-join-room.js",
|
2021-08-19 01:18:29 +08:00
|
|
|
"matrix-whois-user": "src/matrix-whois-user.js",
|
|
|
|
"matrix-room-users": "src/matrix-room-users.js"
|
2021-08-14 23:01:36 +08:00
|
|
|
}
|
|
|
|
},
|
2022-02-10 03:13:27 +08:00
|
|
|
"engines": {
|
|
|
|
"node": ">=14.0.0"
|
|
|
|
},
|
2021-08-14 23:01:36 +08:00
|
|
|
"keywords": [
|
|
|
|
"node-red",
|
|
|
|
"matrix",
|
2022-12-07 12:53:30 +08:00
|
|
|
"chat",
|
|
|
|
"chatbot",
|
|
|
|
"federated"
|
2021-08-14 23:01:36 +08:00
|
|
|
],
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2023-02-13 10:13:47 +08:00
|
|
|
"url": "https://git-x.kongjian.xin/Matrix/node-red-contrib-matrix-chat"
|
2021-08-14 23:01:36 +08:00
|
|
|
},
|
|
|
|
"author": {
|
2023-02-13 10:13:47 +08:00
|
|
|
"name": "jingweiht",
|
|
|
|
"url": "https://jingweiht.com"
|
2021-08-14 23:01:36 +08:00
|
|
|
},
|
2021-08-26 23:39:04 +08:00
|
|
|
"license": "SEE LICENSE FILE"
|
2021-08-14 23:01:36 +08:00
|
|
|
}
|