-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.17 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
{
"name": "mocha",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/index.js",
"dev": "nodemon --watch \"src/**\" --ext \"ts,json\" --ignore \"src/**/*.spec.ts\" --exec \"ts-node src/index.ts\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.0",
"@distube/spotify": "^1.5.1",
"@distube/yt-dlp": "^1.1.3",
"@distube/ytdl-core": "^4.13.2",
"@types/node": "^20.5.0",
"axios": "^1.4.0",
"cheerio": "^1.0.0-rc.12",
"discord.js": "^14.12.1",
"distube": "^4.0.6",
"dotenv": "^16.3.1",
"ffmpeg-static": "^5.1.0",
"libsodium-wrappers": "^0.7.11",
"mongoose": "^7.4.3",
"node": "^20.5.0",
"node-cron": "^3.0.2",
"opusscript": "^0.1.0",
"puppeteer": "^21.0.3",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"tsyringe": "^4.8.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/node-cron": "^3.0.8"
}
}