-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
32 lines (32 loc) · 890 Bytes
/
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
{
"name": "chatgpt-bot",
"version": "1.3.0",
"description": "A Discord bot based on ChatGPT",
"main": "./src/index.ts",
"scripts": {
"start": "npm run build && node ./dist/src/index.js",
"build": "tsc",
"dev": "ts-node ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hmes98318/ChatGPT-Bot.git"
},
"author": "hmes98318",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/hmes98318/ChatGPT-Bot/issues"
},
"homepage": "https://github.com/hmes98318/ChatGPT-Bot#readme",
"dependencies": {
"console-stamp": "^3.1.1",
"discord.js": "^14.11.0",
"dotenv": "^16.0.3",
"openai": "^3.2.1"
},
"devDependencies": {
"@types/node": "^18.14.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}