matrix-chatgpt-bot/package.json

29 lines
666 B
JSON
Raw Normal View History

2022-12-09 09:41:17 +00:00
{
"name": "matrix-chatgpt-bot",
2023-01-27 18:05:24 +00:00
"version": "1.4.1",
2022-12-09 09:41:17 +00:00
"main": "dist/index.js",
"repository": "git@github.com:matrixgpt/matrix-chatgpt-bot.git",
2022-12-09 09:41:17 +00:00
"author": "Jake Coppinger <jake@jakecoppinger.com>",
"license": "AGPL-3.0",
"type": "module",
"engines": {
2023-01-08 16:24:49 +00:00
"node": ">=18.12.1"
2022-12-09 09:41:17 +00:00
},
"scripts": {
"build": "rm -f tsconfig.tsbuildinfo && npx tsc",
"start": "node dist/index.js",
"typecheck": "npx tsc"
},
"dependencies": {
2023-02-03 08:42:09 +00:00
"chatgpt": "^4.1.1",
"dotenv": "^16.0.3",
2023-01-08 20:19:43 +00:00
"markdown-it": "^13.0.1",
2022-12-29 03:22:16 +00:00
"matrix-bot-sdk": "^0.6.3",
"typescript": "^4.9.4",
2022-12-29 11:11:52 +00:00
"znv": "^0.3.2",
"zod": "^3.20.2"
2022-12-09 09:41:17 +00:00
},
"devDependencies": {
}
}