-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.34 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.34 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
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
82
83
84
85
{
"name": "marquinhosbot",
"version": "2.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --target=bun --outdir=./dist --sourcemap=external",
"typecheck": "tsc --noEmit",
"test": "bun test",
"register-commands": "bun run src/register-slash-commands.ts",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"lint:check": "eslint 'src/**/*.ts' --max-warnings=0",
"format": "prettier --write \"src/**/*.ts\" && bun run lint:fix",
"format:check": "prettier --check \"src/**/*.ts\" && bun run lint:check",
"prepare": "husky"
},
"author": "",
"license": "GPL-3.0",
"type": "module",
"dependencies": {
"@discord-player/extractor": "^7.2.0",
"@discordjs/voice": "^0.19.2",
"@meonode/canvas": "^2.0.2",
"@napi-rs/canvas": "^0.1.97",
"color": "^5.0.3",
"discord-player": "^7.2.0",
"discord-player-deezer": "^2.6.0",
"discord.js": "^14.26.2",
"dotenv": "^17.4.0",
"ffmpeg": "0.0.4",
"ffmpeg-static": "^5.3.0",
"fluent-ffmpeg": "^2.1.3",
"font-color-contrast": "^11.1.0",
"googleapis": "^171.4.0",
"mediaplex": "^1.0.0",
"sharp": "^0.34.5",
"winston": "^3.19.0"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@types/bun": "^1.3.11",
"@types/color": "^4.2.1",
"@types/fuzzy-search": "^2.1.5",
"@types/node": "^25.5.2",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^10.2.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"typescript": "^6.0.2"
},
"trustedDependencies": [
"esbuild",
"ffmpeg-static",
"sharp",
"skia-canvas"
],
"engines": {
"bun": ">=1.0.0"
},
"overrides": {
"axios": "0.30.3",
"file-type": "21.3.4",
"flatted": "3.4.2",
"lodash": "4.18.1",
"picomatch": "4.0.4",
"tar": "7.5.13",
"undici": "6.24.1"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
]
}
}