forked from Hazmi35/jukebox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.88 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": "jukebox",
"version": "4.29.1",
"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"
},
"license": "AGPL-3.0",
"author": "Hazmi35 <contact@hzmi.xyz> (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 --cache --cache-location .cache/eslintcache",
"lint:fix": "eslint . --ignore-path .gitignore --ext .ts --fix --cache --cache-location .cache/eslintcache",
"start": "node dist/main",
"start:dev": "echo [INFO] Sharding disabled when using ts-node && ts-node src/bot"
},
"eslintConfig": {
"extends": "@hazmi35/eslint-config/typescript",
"ignorePatterns": "dist/*"
},
"dependencies": {
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"entities": "^2.2.0",
"ffmpeg-static": "^4.2.7",
"iso8601-duration": "^1.3.0",
"node-fetch": "^2.6.1",
"opusscript": "^0.0.7",
"pretty-ms": "^7.0.1",
"tslib": "^2.1.0",
"winston": "^3.3.3",
"ytdl-core": "^4.4.5"
},
"devDependencies": {
"@hazmi35/eslint-config": "^3.4.0",
"@types/node": "^14.14.25",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"optionalDependencies": {
"@discordjs/opus": "^0.4.0",
"bufferutil": "^4.0.3",
"erlpack": "github:discord/erlpack",
"libsodium-wrappers": "^0.7.9",
"utf-8-validate": "^5.0.4",
"zlib-sync": "^0.1.7"
},
"engines": {
"node": ">=12.9.0"
}
}