-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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
46
47
{
"name": "YtbPlayer",
"version": "1.0.0",
"main": "dist/index.js",
"author": "@sapphire",
"license": "UNLICENSE",
"type": "commonjs",
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.0",
"@sapphire/decorators": "^6.0.2",
"@sapphire/discord.js-utilities": "7.0.2",
"@sapphire/framework": "^4.7.2",
"@sapphire/plugin-logger": "^3.0.6",
"@sapphire/plugin-subcommands": "^5.0.0",
"@sapphire/utilities": "^3.13.0",
"@skyra/env-utilities": "^1.2.1",
"colorette": "^2.0.20",
"discord.js": "^14.13.0",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.2",
"sodium-native": "^4.0.4",
"ytdl-core": "^4.11.5"
},
"devDependencies": {
"@sapphire/cli": "^1.6.1",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.0",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/node": "^20.8.9",
"@types/ws": "^8.5.8",
"prettier": "^3.0.3",
"tsc-watch": "^6.0.4",
"typescript": "^5.2.2"
},
"scripts": {
"sapphire": "sapphire",
"generate": "sapphire generate",
"build": "tsc",
"watch": "tsc -w",
"start": "node dist/index.js",
"dev": "npm run build && npm run start",
"watch:start": "tsc-watch --onSuccess \"npm run start\"",
"format": "prettier --write \"src/\""
},
"prettier": "@sapphire/prettier-config"
}