-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.45 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
{
"name": "blackcat",
"version": "6.0.0",
"description": "Black cat Typescipr rewrite version. WIP!",
"main": "index.js",
"type": "module",
"engines": {
"node": ">= 20"
},
"scripts": {
"start": "tsc && node dist/index.js",
"prepare": "husky install",
"postinstall": "tsc"
},
"keywords": [],
"author": "Wolf yuan <[email protected]>",
"license": "Apache-2.0",
"lint-staged": {
"src/**/*.{ts, json}": [
"prettier --write",
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji-conventional"
}
},
"dependencies": {
"@discord-player/equalizer": "^0.2.3",
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.1",
"chalk": "^5.3.0",
"discord-hybrid-sharding": "^2.1.4",
"discord.js": "^14.14.1",
"ffmpeg-static": "^5.2.0",
"play-dl": "^1.9.7",
"prism-media": "^1.3.5",
"sodium-native": "^4.0.5",
"typed-emitter": "^2.1.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/estree": "^1.0.5",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"commitizen": "^4.3.0",
"cz-emoji-conventional": "^1.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}