-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.64 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "discord-server-bot",
"private": true,
"main": "dist/index.js",
"author": "Ryan Murulo",
"repository": "github:GetUsernameFromDatabase/discord-server-bot",
"license": "MIT",
"version": "0.0.1",
"engines": {
"node": ">=20.10.0"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "yarn lint --fix",
"clean": "yarn dlx rimraf dist",
"build:index": " yarn vscode-generate-index-standalone src",
"build": "yarn build:index && swc src -d dist -s",
"build:clean": "yarn clean && yarn build",
"watch": "swc src -d dist -w",
"start": "node dist/index.js",
"start:watch": "run-p watch start",
"start:pm2": "yarn build && yarn start:watch",
"dev": "yarn build:clean && yarn start",
"dev:watch": "yarn build:clean && yarn start:watch",
"dev:piece": "node -r @swc-node/register development/index.ts"
},
"dependencies": {
"@discord-player/equalizer": "^0.2.3",
"@discord-player/extractor": "^4.4.5",
"@discord-player/utils": "^0.2.2",
"@distube/ytdl-core": "^4.13.3",
"@sapphire/discord.js-utilities": "^7.1.5",
"@sapphire/duration": "^1.1.1",
"@sapphire/fetch": "^3.0.1",
"@sapphire/framework": "^5.0.5",
"@sapphire/plugin-api": "^6.1.0",
"@sapphire/plugin-hmr": "^3.0.0",
"@sapphire/plugin-logger": "^4.0.1",
"@sapphire/time-utilities": "^1.7.11",
"@skyra/env-utilities": "^1.3.0",
"better-sqlite3": "^9.2.2",
"cache-manager": "^5.3.2",
"cheerio": "^1.0.0-rc.12",
"colorette": "^2.0.20",
"cronstrue": "^2.47.0",
"discord-api-types": "^0.37.67",
"discord-player": "^6.6.6",
"discord.js": "^14.14.1",
"kysely": "^0.27.2",
"mediaplex": "^0.0.9",
"node-html-markdown": "^1.3.0",
"opusscript": "^0.1.1",
"youtube-ext": "^1.1.16"
},
"devDependencies": {
"@sapphire/ts-config": "^5.0.0",
"@swc-node/register": "^1.6.8",
"@swc/cli": "^0.1.63",
"@swc/core": "^1.3.102",
"@types/better-sqlite3": "^7.6.8",
"@types/eslint": "^8",
"@types/node": "^20.10.6",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.2",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-regexp": "^2.2.0",
"eslint-plugin-unicorn": "^50.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1",
"typescript": "^5.3.3",
"vscode-generate-index-standalone": "^1.7.1"
},
"packageManager": "yarn@4.0.2"
}