-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 800 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 800 Bytes
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
{
"name": "gptbotts",
"version": "0.0.1",
"private": true,
"author": "Luck",
"main": "dist/index.js",
"scripts": {
"start": "npx tsc && node dist/index.js",
"build": "npx tsc",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"license": "GPL-3.0-or-later",
"dependencies": {
"@keyv/mongo": "^2.1.8",
"@types/keyv": "^4.2.0",
"axios": "^1.4.0",
"chalk": "4.1.2",
"discord.js": "^14.9.0",
"dotenv": "^16.0.3",
"keyv": "^4.5.2",
"object-to-xml": "^2.0.0",
"openai": "^3.2.1"
},
"devDependencies": {
"@types/node": "^20.8.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}