-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
42
43
44
45
{
"name": "text-to-speech",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/sohcah/megalodon",
"author": "sohcah",
"scripts": {
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"build": "tsc",
"start": "node lib/index.js",
"postinstall": "prisma generate",
"dev": "tsc && cross-env MEGDEV=true node lib/index.js"
},
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.18.0",
"@google-cloud/text-to-speech": "^4.1.0",
"@prisma/client": "4.9.0",
"discord.js": "^14.16.3",
"elevenlabs-node": "^1.2.0",
"ffmpeg-static": "^5.1.0",
"node-fetch": "^2.7.0",
"psl": "^1.10.0",
"sodium-native": "^4.3.1",
"speechmarkdown-js": "^2.1.0",
"to-readable-stream": "^2.1.0",
"url-parse": "^1.5.10"
},
"devDependencies": {
"@types/node-fetch": "^2.6.11",
"@types/psl": "^1.1.0",
"@types/url-parse": "^1.4.8",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"cross-env": "^7.0.3",
"eslint": "^8.32.0",
"prisma": "^4.9.0",
"typescript": "^5.2.2"
},
"packageManager": "yarn@4.5.1",
"volta": {
"node": "20.18.0",
"yarn": "4.5.1"
}
}