-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.53 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
48
49
50
51
52
{
"name": "darkbot",
"private": "true",
"version": "1.0.0",
"description": "",
"main": "build/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "swc src -d build --strip-leading-paths --delete-dir-on-start",
"build:watch": "swc -w src -d build --strip-leading-paths --delete-dir-on-start",
"build:dev": "conc 'pnpm swc-watch' 'pnpm start'",
"start": "node --enable-source-maps .",
"format": "prettier --write \"src/**/*.ts\""
},
"imports": {
"#lib/*": "./build/lib/*.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"packageManager": "[email protected]",
"dependencies": {
"@discordjs/collection": "^2.1.1",
"@sapphire/decorators": "^6.1.1",
"@sapphire/framework": "^5.3.1",
"@sapphire/plugin-hmr": "^3.0.2",
"@sapphire/plugin-logger": "^4.0.2",
"@sapphire/plugin-subcommands": "^7.0.1",
"@sapphire/time-utilities": "^1.7.14",
"@sapphire/ts-config": "^5.0.1",
"@sapphire/utilities": "^3.18.1",
"@skyra/env-utilities": "^1.3.0",
"discord.js": "^14.16.3",
"magmastream": "^2.6.0",
"youtube-sr": "^4.3.11"
},
"devDependencies": {
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/prettier-config": "^2.0.0",
"@swc/cli": "0.4.1-nightly.20240914",
"@swc/core": "^1.10.1",
"@types/node": "^22.10.1",
"concurrently": "^9.1.0",
"eslint": "^9.16.0",
"prettier": "^3.4.2"
},
"eslintConfig": {
"extends": "@sapphire"
},
"prettier": "@sapphire/prettier-config"
}