-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.86 KB
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
{
"name": "disc-11",
"version": "1.6.2",
"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.xyz> (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 --cache --cache-location .cache/eslintcache",
"lint:fix": "eslint . --ignore-path .gitignore --ext .ts --fix --cache --cache-location .cache/eslintcache",
"start": "node start",
"start:dev": "echo [INFO] Sharding disabled when using ts-node && ts-node src/bot"
},
"eslintConfig": {
"extends": "@hazmi35/eslint-config/typescript",
"ignorePatterns": "dist/*"
},
"dependencies": {
"date-fns": "^2.16.1",
"discord.js": "^12.4.1",
"dotenv": "^8.2.0",
"entities": "^2.1.0",
"ffmpeg-static": "^4.2.7",
"got": "^11.8.0",
"iso8601-duration": "^1.2.0",
"opusscript": "^0.0.7",
"tslib": "^2.0.3",
"winston": "^3.3.3",
"ytdl-core": "^4.0.3"
},
"devDependencies": {
"@hazmi35/eslint-config": "^3.0.0",
"@types/node": "^14.14.5",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"optionalDependencies": {
"@discordjs/opus": "^0.3.3",
"bufferutil": "^4.0.1",
"erlpack": "github:discord/erlpack",
"libsodium-wrappers": "^0.7.8",
"utf-8-validate": "^5.0.2",
"zlib-sync": "^0.1.7"
},
"engines": {
"node": ">=12.x"
}
}