2022-01-04 02:18:28 +05:00
|
|
|
{
|
|
|
|
"name": "jaba",
|
2023-06-26 17:29:51 +05:00
|
|
|
"version": "4.3.0",
|
2022-08-02 17:18:47 +05:00
|
|
|
"description": "My Discord Bot",
|
2022-01-04 02:18:28 +05:00
|
|
|
"main": "index.js",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
|
|
|
"start": "node .",
|
|
|
|
"lint": "eslint . --ext .js",
|
2022-07-22 19:15:47 +05:00
|
|
|
"testcfg": "node scripts/verify-config.js"
|
2022-01-04 02:18:28 +05:00
|
|
|
},
|
2022-07-31 17:08:00 +05:00
|
|
|
"author": "Jonny_Bro#4226",
|
2022-01-04 02:18:28 +05:00
|
|
|
"license": "ISC",
|
|
|
|
"dependencies": {
|
2023-06-26 17:25:17 +05:00
|
|
|
"@discord-player/extractor": "^4.3.1",
|
2022-11-16 14:40:21 +05:00
|
|
|
"@discordjs/opus": "^0.9.0",
|
2023-04-06 00:14:28 +05:00
|
|
|
"@discordjs/voice": "^0.16.0",
|
2023-03-28 16:19:20 +05:00
|
|
|
"canvas": "^2.10.2",
|
2022-08-29 21:31:36 +05:00
|
|
|
"chalk": "^4.1.2",
|
|
|
|
"cron": "^2.1.0",
|
2023-06-26 17:25:17 +05:00
|
|
|
"dbd-soft-ui": "^1.6.48-beta.1",
|
|
|
|
"discord-dashboard": "^2.3.61",
|
2022-08-25 21:25:24 +05:00
|
|
|
"discord-giveaways": "^6.0.1",
|
2023-06-26 17:25:17 +05:00
|
|
|
"discord-player": "^6.5.0",
|
2023-05-22 12:36:43 +05:00
|
|
|
"discord.js": "^14.11.0",
|
2022-03-09 20:29:30 +05:00
|
|
|
"gamedig": "^4.0.2",
|
2022-08-29 21:31:36 +05:00
|
|
|
"i18next": "^21.9.1",
|
|
|
|
"i18next-fs-backend": "^1.1.5",
|
2022-01-04 02:18:28 +05:00
|
|
|
"md5": "^2.2.1",
|
|
|
|
"moment": "^2.26.0",
|
2022-08-29 21:31:36 +05:00
|
|
|
"mongoose": "^5.13.15",
|
2023-04-06 00:14:28 +05:00
|
|
|
"ms": "^2.1.3",
|
2023-06-26 17:25:17 +05:00
|
|
|
"play-dl": "^1.9.6"
|
2022-01-04 02:18:28 +05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-08-29 21:31:36 +05:00
|
|
|
"eslint": "^8.23.0"
|
2022-01-04 02:18:28 +05:00
|
|
|
},
|
|
|
|
"eslintConfig": {
|
|
|
|
"env": {
|
|
|
|
"commonjs": true,
|
|
|
|
"es6": true,
|
2022-08-01 20:06:09 +05:00
|
|
|
"es2020": true,
|
2022-01-04 02:18:28 +05:00
|
|
|
"node": true
|
|
|
|
},
|
|
|
|
"extends": "eslint:recommended",
|
|
|
|
"globals": {
|
|
|
|
"Atomics": "readonly",
|
|
|
|
"SharedArrayBuffer": "readonly"
|
|
|
|
},
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": 2020
|
|
|
|
},
|
|
|
|
"rules": {
|
2022-12-16 23:50:54 +05:00
|
|
|
"arrow-spacing": [
|
|
|
|
"warn",
|
|
|
|
{
|
|
|
|
"before": true,
|
|
|
|
"after": true
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"comma-dangle": [
|
|
|
|
"error",
|
|
|
|
"always-multiline"
|
|
|
|
],
|
2022-12-15 21:02:38 +05:00
|
|
|
"comma-spacing": "error",
|
|
|
|
"comma-style": "error",
|
2022-12-16 23:50:54 +05:00
|
|
|
"dot-location": [
|
|
|
|
"error",
|
|
|
|
"property"
|
|
|
|
],
|
2022-12-15 21:02:38 +05:00
|
|
|
"handle-callback-err": "off",
|
2022-12-16 23:50:54 +05:00
|
|
|
"indent": [
|
|
|
|
"error",
|
|
|
|
"tab",
|
|
|
|
{
|
|
|
|
"SwitchCase": 1
|
|
|
|
}
|
|
|
|
],
|
2022-12-15 21:02:38 +05:00
|
|
|
"keyword-spacing": "error",
|
2022-12-16 23:50:54 +05:00
|
|
|
"max-nested-callbacks": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
"max": 4
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"max-statements-per-line": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
"max": 2
|
|
|
|
}
|
|
|
|
],
|
2022-12-15 21:02:38 +05:00
|
|
|
"no-console": "off",
|
|
|
|
"no-multi-spaces": "error",
|
2022-12-16 23:50:54 +05:00
|
|
|
"no-multiple-empty-lines": [
|
|
|
|
"error",
|
|
|
|
{
|
|
|
|
"max": 2,
|
|
|
|
"maxEOF": 1,
|
|
|
|
"maxBOF": 0
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"no-trailing-spaces": [
|
|
|
|
"error"
|
|
|
|
],
|
2022-12-15 21:02:38 +05:00
|
|
|
"no-var": "error",
|
2022-12-16 23:50:54 +05:00
|
|
|
"object-curly-spacing": [
|
|
|
|
"error",
|
|
|
|
"always"
|
|
|
|
],
|
2022-12-15 21:02:38 +05:00
|
|
|
"prefer-const": "error",
|
2022-12-16 23:50:54 +05:00
|
|
|
"quotes": [
|
|
|
|
"error",
|
|
|
|
"double"
|
|
|
|
],
|
|
|
|
"semi": [
|
|
|
|
"error",
|
|
|
|
"always"
|
|
|
|
],
|
2022-12-15 21:02:38 +05:00
|
|
|
"space-in-parens": "error",
|
|
|
|
"space-infix-ops": "error",
|
|
|
|
"space-unary-ops": "error",
|
|
|
|
"yoda": "error"
|
2022-01-04 02:18:28 +05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"eslintIgnore": [
|
|
|
|
"dashboard/public"
|
|
|
|
]
|
|
|
|
}
|