-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 915 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
33
{
"version": "2.0.0",
"description": "Play music on Discord",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node --env-file=.env index.js",
"dev": "node --watch --env-file=.env index.js",
"lint": "prettier --check --plugin-search-dir=. . && eslint .",
"format": "prettier --write --plugin-search-dir=. .",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.1",
"discord.js": "^14.15.3",
"ffmpeg-static": "^4.4.1",
"libsodium-wrappers": "^0.7.14",
"play-dl": "https://github.com/Yoduh/play-dl-test",
"spotify-web-api-node": "^5.0.2",
"twitch-m3u8": "^1.1.5",
"youtube-sr": "^4.3.11"
},
"devDependencies": {
"@vitest/coverage-v8": "^0.34.6",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"prettier": "^2.8.8",
"typescript": "^4.9.5",
"vitest": "^0.34.6"
}
}