matrix-chatgpt-bot/package.json

34 lines
874 B
JSON
Raw Normal View History

2022-12-09 04:41:17 -05:00
{
"name": "matrix-chatgpt-bot",
2023-02-04 12:28:54 -05:00
"version": "2.1.0",
2022-12-09 04:41:17 -05:00
"main": "dist/index.js",
"repository": "git@github.com:matrixgpt/matrix-chatgpt-bot.git",
2022-12-09 04:41:17 -05:00
"author": "Jake Coppinger <jake@jakecoppinger.com>",
"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 && npx tsc",
2023-02-04 11:58:43 -05:00
"start": "node --enable-source-maps dist/index.js",
2022-12-09 04:41:17 -05:00
"typecheck": "npx tsc"
},
"dependencies": {
2023-02-04 11:58:43 -05:00
"@keyv/mongo": "^2.1.8",
"@keyv/postgres": "^1.4.1",
"@keyv/redis": "^2.5.4",
"@keyv/sqlite": "^3.6.4",
2023-02-06 09:08:45 -05:00
"@waylaidwanderer/chatgpt-api": "^1.9.0",
"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": "^4.9.5",
2022-12-29 06:11:52 -05:00
"znv": "^0.3.2",
"zod": "^3.20.2"
2022-12-09 04:41:17 -05:00
}
}