2023-09-30 07:08:38 +08:00
|
|
|
{
|
2023-12-14 23:59:10 +08:00
|
|
|
"name": "bbb-graphql-actions",
|
2024-08-12 20:35:45 +08:00
|
|
|
"homepage": "/html5client/",
|
2023-09-30 07:08:38 +08:00
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "A server component designed to interface between Hasura GraphQL actions and BigBlueButton ecosystem.",
|
|
|
|
"main": "index.ts",
|
|
|
|
"scripts": {
|
|
|
|
"start": "nodemon --watch src --ext ts,json --exec ts-node src/index.ts",
|
|
|
|
"build": "tsc",
|
|
|
|
"serve": "node dist/index.js"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2023-12-14 23:59:10 +08:00
|
|
|
"url": "git+https://github.com/bigbluebutton/bigbluebutton/tree/develop/bbb-graphql-actions"
|
2023-09-30 07:08:38 +08:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"bigbluebutton",
|
|
|
|
"graphql",
|
|
|
|
"actions"
|
|
|
|
],
|
|
|
|
"author": "BigBlueButton Inc.",
|
|
|
|
"license": "LGPL-3.0",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/bigbluebutton/bigbluebutton/issues"
|
|
|
|
},
|
2023-12-14 23:59:10 +08:00
|
|
|
"homepage": "https://github.com/bigbluebutton/bigbluebutton/tree/develop/bbb-graphql-actions#readme",
|
2023-09-30 07:08:38 +08:00
|
|
|
"dependencies": {
|
|
|
|
"@types/express": "^4.17.18",
|
|
|
|
"@types/node": "^20.7.0",
|
|
|
|
"@types/redis": "^4.0.11",
|
2024-08-14 20:52:25 +08:00
|
|
|
"axios": "^1.7.4",
|
2024-10-21 20:57:28 +08:00
|
|
|
"express": "^5.0.1",
|
2023-09-30 07:08:38 +08:00
|
|
|
"redis": "^4.6.10"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"nodemon": "^3.0.1",
|
|
|
|
"ts-node": "^10.9.1",
|
|
|
|
"typescript": "^5.2.2"
|
|
|
|
}
|
|
|
|
}
|