-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "chatgpt-bot",
"version": "1.0.0",
"description": "💬 Discord bot that interacts with the unofficial ChatGPT API.",
"main": "src/index.ts",
"dependencies": {
"advanced-logs": "^2.1.3",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"eventsource-parser": "^0.1.0",
"glob": "^8.1.0",
"gpt-3-encoder": "^1.1.4",
"keyv": "^4.5.2",
"p-timeout": "4.1.0",
"quick-lru": "5.1.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/glob": "^8.0.1",
"@types/node": "^18.11.18",
"@types/uuid": "^9.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"scripts": {
"start": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Swothh/chatgpt-bot.git"
},
"keywords": [
"discord",
"bot",
"ai",
"chatgpt"
],
"author": "Swôth",
"license": "MIT",
"bugs": {
"url": "https://github.com/Swothh/chatgpt-bot/issues"
},
"homepage": "https://github.com/Swothh/chatgpt-bot#readme"
}