JaBa/package.json

80 lines
2.5 KiB
JSON
Raw Normal View History

2022-01-04 02:18:28 +05:00
{
"name": "jaba",
"version": "4.3.3",
"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",
"@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",
"discord-giveaways": "^6.0.1",
2023-06-27 19:18:42 +05:00
"discord-player": "^6.6.0",
"discord.js": "^14.11.0",
"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,
"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"],
"comma-spacing": "error",
"comma-style": "error",
2023-07-07 17:34:23 +05:00
"dot-location": ["error", "property"],
"handle-callback-err": "off",
2023-07-07 17:34:23 +05:00
"indent": ["error", "tab", { "SwitchCase": 1 }],
"keyword-spacing": "error",
2023-07-07 17:34:23 +05:00
"max-nested-callbacks": ["error", { "max": 4 }],
"max-statements-per-line": ["error", { "max": 2 }],
"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"],
"no-var": "error",
2023-07-07 17:34:23 +05:00
"object-curly-spacing": ["error", "always"],
"prefer-const": "error",
2023-07-07 17:34:23 +05:00
"quotes": ["error", "double"],
"semi": ["error", "always"],
"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
}