forked from KrozT/openai-discord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.15 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
{
"name": "openai-discord",
"version": "1.10.1",
"description": "A very simple Discord Bot that integrates the OpenAI library to make use of ChatGPT",
"author": "Matias Espinoza <[email protected]>",
"private": true,
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "yarn tsc && tsc-alias",
"start": "node dist/index.js",
"dev": "ts-node-dev -r tsconfig-paths/register src/index.ts",
"lint": "eslint . --ext .ts"
},
"repository": {
"url": "https://github.com/KrozT/openai-discord",
"type": "git"
},
"devDependencies": {
"@types/node": "^18.15.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.3",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.5"
},
"dependencies": {
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"openai": "^3.2.1",
"winston": "^3.8.2",
"ytdl-core": "^4.9.1",
"@discordjs/voice": "^0.16.0"
}
}