GPTcord/package.json

31 lines
818 B
JSON
Raw Normal View History

2023-03-14 21:16:54 +01:00
{
"name": "gptcord",
"version": "0.1.0",
2023-03-14 21:16:54 +01:00
"description": "",
"main": "./dist/src/index.js",
2023-03-14 21:16:54 +01:00
"scripts": {
"start": "tsc && node dist/src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"publishCommands": "tsc && node dist/scripts/pushCommands.js"
2023-03-14 21:16:54 +01:00
},
"author": "Wroclaw",
"license": "MIT",
"dependencies": {
2023-07-30 21:37:37 +02:00
"@prisma/client": "^5.0.0",
2023-03-14 21:16:54 +01:00
"discord.js": "^14.8.0",
"fold-to-ascii": "^5.0.1",
"gpt-3-encoder": "^1.1.4",
2023-09-27 17:14:17 +02:00
"openai": "^4.10.0",
"require-directory": "^2.1.1",
"typescript": "^5.1.6"
2023-03-14 21:16:54 +01:00
},
"devDependencies": {
"@types/fold-to-ascii": "^5.0.0",
"@types/require-directory": "^2.1.2",
2023-07-30 21:37:37 +02:00
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.46.0",
"prisma": "^5.0.0"
2023-03-14 21:16:54 +01:00
}
}