2022-01-04 02:18:28 +05:00
|
|
|
{
|
|
|
|
"name": "jaba",
|
2023-07-07 21:13:11 +05:00
|
|
|
"version": "4.3.3",
|
2022-08-02 17:18:47 +05:00
|
|
|
"description": "My Discord Bot",
|
2022-01-04 02:18:28 +05:00
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2023-07-04 01:31:08 +05:00
|
|
|
"preinstall": "npx only-allow pnpm",
|
2022-01-04 02:18:28 +05:00
|
|
|
"start": "node .",
|
2023-07-04 23:40:22 +05:00
|
|
|
"lint": "eslint . --ext .js"
|
2022-01-04 02:18:28 +05:00
|
|
|
},
|
2023-07-04 01:31:08 +05:00
|
|
|
"author": "Discord: jonny_bro",
|
2022-01-04 02:18:28 +05:00
|
|
|
"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-07-04 01:45:18 +05:00
|
|
|
"@discordjs/rest": "^1.7.1",
|
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",
|
2023-07-04 01:45:18 +05:00
|
|
|
"discord-api-types": "^0.37.47",
|
2022-08-25 21:25:24 +05:00
|
|
|
"discord-giveaways": "^6.0.1",
|
2023-06-27 19:18:42 +05:00
|
|
|
"discord-player": "^6.6.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-07-04 01:45:18 +05:00
|
|
|
"node-fetch": "^2.6.7",
|
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": {
|
2023-07-07 17:34:23 +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",
|
2023-07-07 17:34:23 +05:00
|
|
|
"dot-location": ["error", "property"],
|
2022-12-15 21:02:38 +05:00
|
|
|
"handle-callback-err": "off",
|
2023-07-07 17:34:23 +05:00
|
|
|
"indent": ["error", "tab", { "SwitchCase": 1 }],
|
2022-12-15 21:02:38 +05:00
|
|
|
"keyword-spacing": "error",
|
2023-07-07 17:34:23 +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",
|
2023-07-07 17:34:23 +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",
|
2023-07-07 17:34:23 +05:00
|
|
|
"object-curly-spacing": ["error", "always"],
|
2022-12-15 21:02:38 +05:00
|
|
|
"prefer-const": "error",
|
2023-07-07 17:34:23 +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
|
|
|
}
|
2023-06-27 13:23:45 +05:00
|
|
|
}
|
2022-01-04 02:18:28 +05:00
|
|
|
}
|