mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-21 20:54:58 +05:00
124 lines
3.2 KiB
JSON
124 lines
3.2 KiB
JSON
{
|
|
"name": "jaba",
|
|
"version": "4.3.5",
|
|
"description": "My Discord Bot",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"preinstall": "npx only-allow pnpm",
|
|
"start": "node .",
|
|
"lint": "eslint . --ext .js"
|
|
},
|
|
"author": "Discord: jonny_bro",
|
|
"dependencies": {
|
|
"@discord-player/extractor": "^4.4.4",
|
|
"@discordjs/opus": "^0.9.0",
|
|
"@discordjs/rest": "^1.7.1",
|
|
"@discordjs/voice": "^0.16.0",
|
|
"canvas": "^2.10.2",
|
|
"chalk": "^4.1.2",
|
|
"cron": "^2.1.0",
|
|
"discord-api-types": "^0.37.47",
|
|
"discord-giveaways": "^6.0.1",
|
|
"discord-player": "^6.6.4",
|
|
"discord.js": "^14.13.0",
|
|
"gamedig": "^4.0.2",
|
|
"i18next": "^21.9.1",
|
|
"i18next-fs-backend": "^1.1.5",
|
|
"md5": "^2.2.1",
|
|
"moment": "^2.26.0",
|
|
"mongoose": "^7.6.3",
|
|
"ms": "^2.1.3",
|
|
"node-fetch": "^2.6.7",
|
|
"youtube-ext": "^1.1.14"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^8.23.0"
|
|
},
|
|
"eslintConfig": {
|
|
"env": {
|
|
"commonjs": true,
|
|
"es6": true,
|
|
"es2020": true,
|
|
"node": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"globals": {
|
|
"Atomics": "readonly",
|
|
"SharedArrayBuffer": "readonly"
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2020
|
|
},
|
|
"rules": {
|
|
"arrow-spacing": [
|
|
"warn",
|
|
{
|
|
"before": true,
|
|
"after": true
|
|
}
|
|
],
|
|
"comma-dangle": [
|
|
"error",
|
|
"always-multiline"
|
|
],
|
|
"comma-spacing": "error",
|
|
"comma-style": "error",
|
|
"dot-location": [
|
|
"error",
|
|
"property"
|
|
],
|
|
"handle-callback-err": "off",
|
|
"indent": [
|
|
"error",
|
|
"tab",
|
|
{
|
|
"SwitchCase": 1
|
|
}
|
|
],
|
|
"keyword-spacing": "error",
|
|
"max-nested-callbacks": [
|
|
"error",
|
|
{
|
|
"max": 4
|
|
}
|
|
],
|
|
"max-statements-per-line": [
|
|
"error",
|
|
{
|
|
"max": 2
|
|
}
|
|
],
|
|
"no-console": "off",
|
|
"no-multi-spaces": "error",
|
|
"no-multiple-empty-lines": [
|
|
"error",
|
|
{
|
|
"max": 2,
|
|
"maxEOF": 1,
|
|
"maxBOF": 0
|
|
}
|
|
],
|
|
"no-trailing-spaces": [
|
|
"error"
|
|
],
|
|
"no-var": "error",
|
|
"object-curly-spacing": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"prefer-const": "error",
|
|
"quotes": [
|
|
"error",
|
|
"double"
|
|
],
|
|
"semi": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"space-in-parens": "error",
|
|
"space-infix-ops": "error",
|
|
"space-unary-ops": "error",
|
|
"yoda": "error"
|
|
}
|
|
}
|
|
}
|