-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "yuigpt-discord-bot",
"version": "1.0.0",
"description": "You Can Talk Virtual Character Yui via Voice Chat, Powered by WhisperAI and ChatGPT",
"main": "./dist/index.js",
"scripts": {
"dev": "ts-node-dev --respawn ./src/index.ts",
"clean": "rimraf ./dist",
"tsc": "tsc",
"build": "npm-run-all clean tsc",
"start": "node ./dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.21",
"typescript": "^5.1.3"
},
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.0",
"@ffmpeg/ffmpeg": "^0.11.6",
"axios": "^1.4.0",
"discord.js": "^14.11.0",
"dotenv": "^16.1.3",
"ffmpeg-static": "^5.1.0",
"fluent-ffmpeg": "^2.1.2",
"form-data": "^4.0.0",
"node-crc": "^1.3.2",
"node-lame": "^1.3.2",
"npm-run-all": "^4.1.5",
"openai": "^3.2.1",
"opusscript": "^0.0.8",
"prism-media": "^2.0.0-alpha.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tweetnacl": "^1.0.3"
}
}