-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.16 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
45
46
47
{
"name": "decryptgpt",
"version": "3.0.1",
"description": "A Discord bot leveraging OpenAI's GPT models for interactive AI conversations and tasks.",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js"
},
"keywords": [
"discord",
"bot",
"AI",
"OpenAI",
"GPT-3",
"discord.js"
],
"author": "Decrypt",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Decryptu/DecryptGPT.git"
},
"bugs": {
"url": "https://github.com/Decryptu/DecryptGPT/issues"
},
"homepage": "https://github.com/Decryptu/DecryptGPT#readme",
"dependencies": {
"axios": "^1.7.7",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"form-data": "^4.0.1",
"openai": "^4.73.0",
"papaparse": "^5.4.1",
"pdf.js-extract": "^0.2.1",
"xlsx": "^0.18.5"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"nodemon": "^3.1.7"
}
}