-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
69 lines (69 loc) · 2.01 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
{
"name": "jukebox",
"version": "5.6.0",
"private": true,
"description": "Just a simple Discord music bot.",
"homepage": "https://github.com/Hazmi35/jukebox#readme",
"bugs": {
"url": "https://github.com/Hazmi35/jukebox/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hazmi35/jukebox.git"
},
"type": "module",
"license": "AGPL-3.0",
"author": "Hazmi35 <[email protected]> (https://github.com/Hazmi35)",
"main": "dist/main.js",
"scripts": {
"build": "npm run lint && npm run compile",
"compile": "tsc --build tsconfig.json",
"lint": "eslint . --ignore-path .gitignore --ext .ts",
"lint:fix": "eslint . --ignore-path .gitignore --ext .ts --fix",
"start": "node --experimental-specifier-resolution=node dist/main",
"start:dev": "node --no-warnings --experimental-specifier-resolution=node --loader ts-node/esm src/main"
},
"eslintConfig": {
"extends": "@hazmi35/eslint-config/typescript",
"ignorePatterns": "dist/*"
},
"dependencies": {
"@discordjs/voice": "^0.8.0",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"entities": "^4.2.0",
"ffmpeg-static": "^5.0.0",
"opusscript": "^0.0.8",
"pino": "^7.10.0",
"pino-pretty": "^7.6.1",
"plur": "^5.1.0",
"pretty-ms": "^7.0.1",
"prism-media": "^1.3.2",
"strip-indent": "^4.0.0",
"tslib": "^2.3.1",
"tweetnacl": "^1.0.3",
"youtube-dl-exec": "^2.0.9",
"youtubei": "^0.0.1-rc.35"
},
"devDependencies": {
"@hazmi35/eslint-config": "^8.3.0",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.13.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"optionalDependencies": {
"@discordjs/opus": "^0.7.0",
"bufferutil": "^4.0.6",
"erlpack": "github:hzmifork/erlpack",
"libsodium-wrappers": "^0.7.10",
"utf-8-validate": "^5.0.9",
"zlib-sync": "^0.1.7"
},
"engines": {
"node": ">=16.6.0",
"npm": ">=7.0.0"
}
}