-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.71 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.71 KB
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
48
49
50
51
52
53
54
55
56
{
"name": "theorphanage-bot",
"version": "2.2.0",
"main": "dist/index.js",
"author": "NorthernStar",
"license": "MIT",
"dependencies": {
"@discord-player/extractor": "^4.1.0",
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.14.0",
"@sapphire/decorators": "^6.0.0",
"@sapphire/discord-utilities": "^3.0.0",
"@sapphire/discord.js-utilities": "6.0.1",
"@sapphire/fetch": "^2.4.1",
"@sapphire/framework": "^4.0.2",
"@sapphire/plugin-api": "^5.0.0",
"@sapphire/plugin-editable-commands": "^3.0.0",
"@sapphire/plugin-logger": "^3.0.1",
"@sapphire/plugin-subcommands": "^4.0.0",
"@sapphire/time-utilities": "^1.7.8",
"@sapphire/type": "^2.3.0",
"@sapphire/utilities": "^3.11.0",
"@skyra/env-utilities": "^1.1.0",
"@types/minecraft-pinger": "^1.0.0",
"canvacord": "^5.4.8",
"discord-player": "^6.0.0",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"ffmpeg-static": "^4.4.1",
"libsodium-wrappers": "^0.7.11",
"minecraft-pinger": "^1.0.5",
"mongoose": "^6.10.0",
"ytdl-core": "^4.11.2"
},
"devDependencies": {
"@sapphire/prettier-config": "^1.4.5",
"@sapphire/ts-config": "^3.3.4",
"@swc/cli": "^0.1.59",
"@swc/core": "^1.3.30",
"@types/node": "^18.11.18",
"@types/ws": "^8.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"tsc-watch": "^6.0.0",
"typescript": "^4.9.4"
},
"scripts": {
"build": "swc src -d dist",
"watch": "swc src -d dist -w",
"start": "node dist/index.js",
"dev": "run-s build start",
"watch:start": "tsc-watch --onSuccess \"node ./dist/index.js\"",
"format": "prettier --write \"src/**/*.ts\""
},
"prettier": "@sapphire/prettier-config"
}