forked from stegripe/rawon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.12 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
{
"name": "disc-11",
"version": "1.55.0",
"private": true,
"description": "A dedicated open-source music bot for Zhycorp based on Jukebox",
"homepage": "https://github.com/zhycorp/disc-11#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zhycorp/disc-11.git"
},
"bugs": {
"url": "https://github.com/zhycorp/disc-11/issues"
},
"license": "AGPL-3.0",
"author": "Zhycorp <support@zhycorp.com> (https://github.com/zhycorp)",
"main": "start.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 .",
"start:dev": "echo [INFO] Sharding disabled when using ts-node && ts-node src/bot"
},
"eslintConfig": {
"extends": "@zhycorp/eslint-config/typescript",
"ignorePatterns": "dist/*"
},
"dependencies": {
"@zhycorp/eslint-config": "^2.5.0",
"discord.js": "^12.5.3",
"dotenv": "^8.2.0",
"entities": "^2.2.0",
"ffmpeg-static": "^4.3.0",
"iso8601-duration": "^1.3.0",
"node-fetch": "^2.6.1",
"opusscript": "^0.0.8",
"parse-ms": "^2.1.0",
"pretty-ms": "^7.0.1",
"spotify-url-info": "^2.2.0",
"tslib": "^2.1.0",
"winston": "^3.3.3",
"ytdl-core": "^4.5.0",
"ytpl": "^2.1.0",
"ytsr": "^3.4.0"
},
"devDependencies": {
"@types/node": "^14.14.37",
"@types/node-fetch": "^2.5.9",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"optionalDependencies": {
"@discordjs/opus": "^0.5.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": "14.x"
}
}