-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.29 KB
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
48
49
50
{
"name": "edgargpt",
"version": "4.0.0",
"description": "A Discord bot leveraging OpenAI's GPT models for interactive AI conversations and tasks.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx index.ts",
"start": "node dist/index.js",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write ."
},
"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": {
"date-fns": "^4.1.0",
"discord.js": "^14.25.1",
"dotenv": "^17.3.1",
"node-cron": "^4.2.1",
"openai": "^6.32.0"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@types/node": "^25.5.0",
"@types/node-cron": "^3.0.11",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}