-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.74 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
{
"name": "blussymon",
"version": "4.0.0",
"description": "Discord music bot built with discord.js",
"main": "index.ts",
"author": {
"email": "[email protected]",
"name": "Jyotirmoy Bandyopadhayaya"
},
"private": true,
"homepage": "https://github.com/TheNestDevs/blussymon",
"repository": "https://github.com/TheNestDevs/blussymon",
"bugs": "https://github.com/TheNestDevs/blussymon/issues",
"engines": {
"node": ">=16.11.0"
},
"type": "module",
"scripts": {
"dev": "node --loader @esbuild-kit/esm-loader index.ts",
"start": "node --loader @esbuild-kit/esm-loader index.ts",
"build": "tsc --build",
"prod": "npm run build && node ./dist/index.js",
"commit": "cz",
"format": "npx prettier --write '**/*.ts' --config .prettierrc"
},
"dependencies": {
"@discordjs/voice": "^0.16.1",
"array-move": "^3.0.1",
"discord.js": "^14.14.1",
"dotenv": "^16.3.1",
"ffmpeg-static": "^4.4.1",
"i18n": "^0.15.1",
"lyrics-finder": "^21.0.5",
"play-dl": "^1.9.7",
"soundcloud-downloader": "^0.2.3",
"string-progressbar": "^1.0.4",
"youtube-sr": "~4.3.0"
},
"devDependencies": {
"@esbuild-kit/esm-loader": "^2.6.5",
"@types/i18n": "^0.13.10",
"@types/node": "^20.10.0",
"cz-conventional-changelog": "^3.0.1",
"nodemon": "^2.0.22",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"optionalDependencies": {
"@discordjs/opus": "^0.9.0",
"libsodium-wrappers": "^0.7.13",
"opusscript": "^0.1.1",
"sodium-native": "^3.4.1",
"tweetnacl": "^1.0.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog",
"disableScopeLowerCase": false,
"disableSubjectLowerCase": false
}
}
}