matrix-chatgpt-bot/package.json

34 lines
875 B
JSON
Raw Normal View History

2022-12-09 04:41:17 -05:00
{
"name": "matrix-chatgpt-bot",
2023-05-10 07:27:46 -04:00
"version": "3.1.1",
2022-12-09 04:41:17 -05:00
"main": "dist/index.js",
"repository": "git@github.com:matrixgpt/matrix-chatgpt-bot.git",
"author": "Max Kammler <max.kammler@ucc.ovgu.de>",
2022-12-09 04:41:17 -05:00
"license": "AGPL-3.0",
"type": "module",
"engines": {
2023-01-08 11:24:49 -05:00
"node": ">=18.12.1"
2022-12-09 04:41:17 -05:00
},
"scripts": {
"build": "rm -f tsconfig.tsbuildinfo && yarn tsc",
2023-02-04 11:58:43 -05:00
"start": "node --enable-source-maps dist/index.js",
"typecheck": "yarn tsc"
2022-12-09 04:41:17 -05:00
},
"dependencies": {
2023-02-04 11:58:43 -05:00
"@keyv/mongo": "^2.1.8",
"@keyv/postgres": "^1.4.4",
"@keyv/redis": "^2.5.8",
"@keyv/sqlite": "^3.6.5",
"@waylaidwanderer/chatgpt-api": "^1.36.4",
"dotenv": "^16.0.3",
2023-02-04 11:58:43 -05:00
"hash.js": "^1.1.7",
"keyv": "^4.5.2",
"keyv-file": "^0.2.0",
2023-01-08 15:19:43 -05:00
"markdown-it": "^13.0.1",
2022-12-28 22:22:16 -05:00
"matrix-bot-sdk": "^0.6.3",
"typescript": "^5.0.4",
2022-12-29 06:11:52 -05:00
"znv": "^0.3.2",
"zod": "^3.21.4"
2022-12-09 04:41:17 -05:00
}
}