├── .gitattributes ├── package.json ├── commands ├── ping.js └── server.js ├── README.md ├── LICENSE ├── .gitignore ├── .eslintrc.json ├── index.js └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "@discordjs/rest": "^0.1.0-canary.0", 4 | "discord-api-types": "^0.22.0", 5 | "discord.js": "^13.1.0", 6 | "dotenv": "^10.0.0", 7 | "eslint": "^7.32.0" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /commands/ping.js: -------------------------------------------------------------------------------- 1 | const { SlashCommandBuilder } = require('@discordjs/builders'); 2 | 3 | module.exports = { 4 | data: new SlashCommandBuilder() 5 | .setName('ping') 6 | .setDescription('Replies with pong'), 7 | async execute(interaction) { 8 | interaction.reply({ content: 'Pong' }) 9 | } 10 | }; -------------------------------------------------------------------------------- /commands/server.js: -------------------------------------------------------------------------------- 1 | const { SlashCommandBuilder } = require('@discordjs/builders'); 2 | const { MessageEmbed } = require('discord.js'); 3 | module.exports = { 4 | data: new SlashCommandBuilder() 5 | .setName('server') 6 | .setDescription('Display info about this server.'), 7 | async execute(interaction) { 8 | interaction.reply({ embeds: [ 9 | new MessageEmbed() 10 | .setColor('RANDOM') 11 | .setTitle(`Server Name: ${interaction.guild.name}`) 12 | .setDescription(`Total members: ${interaction.guild.memberCount}`) 13 | ] }); 14 | }, 15 | }; -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Discord.js V13 Starter Bot 2 | 3 | ### A fully customizable starter code for Discord.js V13 4 | 5 | [![Deploy on Railway](https://railway.app/button.svg)](https://railway.app/new/template?template=https%3A%2F%2Fgithub.com%2Fkb24x7%2Fdiscordjs-v13-starter&envs=TOKEN%2CTEST_GUILD_ID&optionalEnvs=TEST_GUILD_ID&TOKENDesc=Your+Bot%27s+Token&TEST_GUILD_IDDesc=Your+development+server%27s+guild+ID%2C+only+add+this+if+your+bot+is+in+development&referralCode=7OsmmG) 6 | 7 | ### Setup: 8 | 9 | Create a .env file with the bot's token 10 | 11 | ``` 12 | TOKEN=YOUR_TOKEN_HERE 13 | TEST_GUILD_ID=YOUR_GUILD_ID_HERE [ONLY ADD THIS IF YOU WANT TO TEST THE BOT IN DEVELOPMENT] 14 | ``` 15 | 16 | Install node modules using yarn: 17 | 18 | ``` 19 | yarn 20 | ``` 21 | 22 | #### Free Deployment Platforms: 23 | * [Railway](https://railway.app) 24 | * [Qovery](https://www.qovery.com/) 25 | * [OpeNode](https://www.openode.io/) 26 | * [Heroku](https://heroku.com) 27 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Kunal Bagaria 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (https://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # TypeScript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | # parcel-bundler cache (https://parceljs.org/) 61 | .cache 62 | 63 | # next.js build output 64 | .next 65 | 66 | # nuxt.js build output 67 | .nuxt 68 | 69 | # vuepress build output 70 | .vuepress/dist 71 | 72 | # Serverless directories 73 | .serverless 74 | 75 | # FuseBox cache 76 | .fusebox/ 77 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "eslint:recommended", 3 | "env": { 4 | "node": true, 5 | "es6": true 6 | }, 7 | "parserOptions": { 8 | "ecmaVersion": 2021 9 | }, 10 | "rules": { 11 | "brace-style": ["error", "stroustrup", { "allowSingleLine": true }], 12 | "comma-dangle": ["error", "always-multiline"], 13 | "comma-spacing": "error", 14 | "comma-style": "error", 15 | "curly": ["error", "multi-line", "consistent"], 16 | "dot-location": ["error", "property"], 17 | "handle-callback-err": "off", 18 | "indent": ["error", "tab"], 19 | "max-nested-callbacks": ["error", { "max": 4 }], 20 | "max-statements-per-line": ["error", { "max": 2 }], 21 | "no-console": "off", 22 | "no-empty-function": "error", 23 | "no-floating-decimal": "error", 24 | "no-inline-comments": "error", 25 | "no-lonely-if": "error", 26 | "no-multi-spaces": "error", 27 | "no-multiple-empty-lines": ["error", { "max": 2, "maxEOF": 1, "maxBOF": 0 }], 28 | "no-shadow": ["error", { "allow": ["err", "resolve", "reject"] }], 29 | "no-trailing-spaces": ["error"], 30 | "no-var": "error", 31 | "object-curly-spacing": ["error", "always"], 32 | "prefer-const": "error", 33 | "quotes": ["error", "single"], 34 | "semi": ["error", "always"], 35 | "space-before-blocks": "error", 36 | "space-before-function-paren": ["error", { 37 | "anonymous": "never", 38 | "named": "never", 39 | "asyncArrow": "always" 40 | }], 41 | "space-in-parens": "error", 42 | "space-infix-ops": "error", 43 | "space-unary-ops": "error", 44 | "spaced-comment": "error", 45 | "yoda": "error" 46 | } 47 | } -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const { 3 | REST 4 | } = require('@discordjs/rest'); 5 | const { 6 | Routes 7 | } = require('discord-api-types/v9'); 8 | // Require the necessary discord.js classes 9 | const { 10 | Client, 11 | Intents, 12 | Collection 13 | } = require('discord.js'); 14 | 15 | // Create a new client instance 16 | const client = new Client({ 17 | intents: [Intents.FLAGS.GUILDS] 18 | }); 19 | 20 | // Loading commands from the commands folder 21 | const commands = []; 22 | const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js')); 23 | 24 | // Loading the token from .env file 25 | const dotenv = require('dotenv'); 26 | const envFILE = dotenv.config(); 27 | const TOKEN = process.env['TOKEN']; 28 | 29 | 30 | // Edit your TEST_GUILD_ID here in the env file for development 31 | const TEST_GUILD_ID = envFILE.parsed['TEST_GUILD_ID']; 32 | 33 | 34 | // Creating a collection for commands in client 35 | client.commands = new Collection(); 36 | 37 | for (const file of commandFiles) { 38 | const command = require(`./commands/${file}`); 39 | commands.push(command.data.toJSON()); 40 | client.commands.set(command.data.name, command); 41 | } 42 | 43 | // When the client is ready, run this code (only once) 44 | client.once('ready', () => { 45 | console.log('Ready!'); 46 | // Registering the commands in the client 47 | const CLIENT_ID = client.user.id; 48 | const rest = new REST({ 49 | version: '9' 50 | }).setToken(TOKEN); 51 | (async () => { 52 | try { 53 | if (!TEST_GUILD_ID) { 54 | await rest.put( 55 | Routes.applicationCommands(CLIENT_ID), { 56 | body: commands 57 | }, 58 | ); 59 | console.log('Successfully registered application commands globally'); 60 | } else { 61 | await rest.put( 62 | Routes.applicationGuildCommands(CLIENT_ID, TEST_GUILD_ID), { 63 | body: commands 64 | }, 65 | ); 66 | console.log('Successfully registered application commands for development guild'); 67 | } 68 | } catch (error) { 69 | if (error) console.error(error); 70 | } 71 | })(); 72 | }); 73 | 74 | client.on('interactionCreate', async interaction => { 75 | if (!interaction.isCommand()) return; 76 | const command = client.commands.get(interaction.commandName); 77 | if (!command) return; 78 | try { 79 | await command.execute(interaction); 80 | } catch (error) { 81 | if (error) console.error(error); 82 | await interaction.reply({ content: 'There was an error while executing this command!', ephemeral: true }); 83 | } 84 | }); 85 | 86 | 87 | // Login to Discord with your client's token 88 | client.login(TOKEN); -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@7.12.11": 6 | version "7.12.11" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" 8 | integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== 9 | dependencies: 10 | "@babel/highlight" "^7.10.4" 11 | 12 | "@babel/helper-validator-identifier@^7.14.5": 13 | version "7.14.9" 14 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz#6654d171b2024f6d8ee151bf2509699919131d48" 15 | integrity sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g== 16 | 17 | "@babel/highlight@^7.10.4": 18 | version "7.14.5" 19 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9" 20 | integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg== 21 | dependencies: 22 | "@babel/helper-validator-identifier" "^7.14.5" 23 | chalk "^2.0.0" 24 | js-tokens "^4.0.0" 25 | 26 | "@discordjs/builders@^0.5.0": 27 | version "0.5.0" 28 | resolved "https://registry.yarnpkg.com/@discordjs/builders/-/builders-0.5.0.tgz#646cbea9cc67f68639e6fb70ed1278b26dacdb14" 29 | integrity sha512-HP5y4Rqw68o61Qv4qM5tVmDbWi4mdTFftqIOGRo33SNPpLJ1Ga3KEIR2ibKofkmsoQhEpLmopD1AZDs3cKpHuw== 30 | dependencies: 31 | "@sindresorhus/is" "^4.0.1" 32 | discord-api-types "^0.22.0" 33 | ow "^0.27.0" 34 | ts-mixer "^6.0.0" 35 | tslib "^2.3.0" 36 | 37 | "@discordjs/collection@^0.1.6": 38 | version "0.1.6" 39 | resolved "https://registry.yarnpkg.com/@discordjs/collection/-/collection-0.1.6.tgz#9e9a7637f4e4e0688fd8b2b5c63133c91607682c" 40 | integrity sha512-utRNxnd9kSS2qhyivo9lMlt5qgAUasH2gb7BEOn6p0efFh24gjGomHzWKMAPn2hEReOPQZCJaRKoURwRotKucQ== 41 | 42 | "@discordjs/collection@^0.2.1": 43 | version "0.2.1" 44 | resolved "https://registry.yarnpkg.com/@discordjs/collection/-/collection-0.2.1.tgz#ea4bc7b41b7b7b6daa82e439141222ec95c469b2" 45 | integrity sha512-vhxqzzM8gkomw0TYRF3tgx7SwElzUlXT/Aa41O7mOcyN6wIJfj5JmDWaO5XGKsGSsNx7F3i5oIlrucCCWV1Nog== 46 | 47 | "@discordjs/form-data@^3.0.1": 48 | version "3.0.1" 49 | resolved "https://registry.yarnpkg.com/@discordjs/form-data/-/form-data-3.0.1.tgz#5c9e6be992e2e57d0dfa0e39979a850225fb4697" 50 | integrity sha512-ZfFsbgEXW71Rw/6EtBdrP5VxBJy4dthyC0tpQKGKmYFImlmmrykO14Za+BiIVduwjte0jXEBlhSKf0MWbFp9Eg== 51 | dependencies: 52 | asynckit "^0.4.0" 53 | combined-stream "^1.0.8" 54 | mime-types "^2.1.12" 55 | 56 | "@discordjs/rest@^0.1.0-canary.0": 57 | version "0.1.0-canary.0" 58 | resolved "https://registry.yarnpkg.com/@discordjs/rest/-/rest-0.1.0-canary.0.tgz#666f9a1a0c1f2f5a09a3a79f77aeddaeafbcbcc1" 59 | integrity sha512-d+s//ISYVV+e0w/926wMEeO7vju+Pn11x1JM4tcmVMCHSDgpi6pnFCNAXF1TEdnDcy7xf9tq5cf2pQkb/7ySTQ== 60 | dependencies: 61 | "@discordjs/collection" "^0.1.6" 62 | "@sapphire/async-queue" "^1.1.4" 63 | "@sapphire/snowflake" "^1.3.5" 64 | abort-controller "^3.0.0" 65 | discord-api-types "^0.18.1" 66 | form-data "^4.0.0" 67 | node-fetch "^2.6.1" 68 | tslib "^2.3.0" 69 | 70 | "@eslint/eslintrc@^0.4.3": 71 | version "0.4.3" 72 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.3.tgz#9e42981ef035beb3dd49add17acb96e8ff6f394c" 73 | integrity sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw== 74 | dependencies: 75 | ajv "^6.12.4" 76 | debug "^4.1.1" 77 | espree "^7.3.0" 78 | globals "^13.9.0" 79 | ignore "^4.0.6" 80 | import-fresh "^3.2.1" 81 | js-yaml "^3.13.1" 82 | minimatch "^3.0.4" 83 | strip-json-comments "^3.1.1" 84 | 85 | "@humanwhocodes/config-array@^0.5.0": 86 | version "0.5.0" 87 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.5.0.tgz#1407967d4c6eecd7388f83acf1eaf4d0c6e58ef9" 88 | integrity sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg== 89 | dependencies: 90 | "@humanwhocodes/object-schema" "^1.2.0" 91 | debug "^4.1.1" 92 | minimatch "^3.0.4" 93 | 94 | "@humanwhocodes/object-schema@^1.2.0": 95 | version "1.2.0" 96 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz#87de7af9c231826fdd68ac7258f77c429e0e5fcf" 97 | integrity sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w== 98 | 99 | "@sapphire/async-queue@^1.1.4": 100 | version "1.1.4" 101 | resolved "https://registry.yarnpkg.com/@sapphire/async-queue/-/async-queue-1.1.4.tgz#ae431310917a8880961cebe8e59df6ffa40f2957" 102 | integrity sha512-fFrlF/uWpGOX5djw5Mu2Hnnrunao75WGey0sP0J3jnhmrJ5TAPzHYOmytD5iN/+pMxS+f+u/gezqHa9tPhRHEA== 103 | 104 | "@sapphire/snowflake@^1.3.5": 105 | version "1.3.6" 106 | resolved "https://registry.yarnpkg.com/@sapphire/snowflake/-/snowflake-1.3.6.tgz#166e8c5c08d01c861edd7e2edc80b5739741715f" 107 | integrity sha512-QnzuLp+p9D7agynVub/zqlDVriDza9y3STArBhNiNBUgIX8+GL5FpQxstRfw1jDr5jkZUjcuKYAHxjIuXKdJAg== 108 | 109 | "@sindresorhus/is@^4.0.1": 110 | version "4.0.1" 111 | resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-4.0.1.tgz#d26729db850fa327b7cacc5522252194404226f5" 112 | integrity sha512-Qm9hBEBu18wt1PO2flE7LPb30BHMQt1eQgbV76YntdNk73XZGpn3izvGTYxbGgzXKgbCjiia0uxTd3aTNQrY/g== 113 | 114 | "@types/node@*": 115 | version "16.6.2" 116 | resolved "https://registry.yarnpkg.com/@types/node/-/node-16.6.2.tgz#331b7b9f8621c638284787c5559423822fdffc50" 117 | integrity sha512-LSw8TZt12ZudbpHc6EkIyDM3nHVWKYrAvGy6EAJfNfjusbwnThqjqxUKKRwuV3iWYeW/LYMzNgaq3MaLffQ2xA== 118 | 119 | "@types/ws@^7.4.7": 120 | version "7.4.7" 121 | resolved "https://registry.yarnpkg.com/@types/ws/-/ws-7.4.7.tgz#f7c390a36f7a0679aa69de2d501319f4f8d9b702" 122 | integrity sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww== 123 | dependencies: 124 | "@types/node" "*" 125 | 126 | abort-controller@^3.0.0: 127 | version "3.0.0" 128 | resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" 129 | integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== 130 | dependencies: 131 | event-target-shim "^5.0.0" 132 | 133 | acorn-jsx@^5.3.1: 134 | version "5.3.2" 135 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 136 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 137 | 138 | acorn@^7.4.0: 139 | version "7.4.1" 140 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 141 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 142 | 143 | ajv@^6.10.0, ajv@^6.12.4: 144 | version "6.12.6" 145 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 146 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 147 | dependencies: 148 | fast-deep-equal "^3.1.1" 149 | fast-json-stable-stringify "^2.0.0" 150 | json-schema-traverse "^0.4.1" 151 | uri-js "^4.2.2" 152 | 153 | ajv@^8.0.1: 154 | version "8.6.2" 155 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.6.2.tgz#2fb45e0e5fcbc0813326c1c3da535d1881bb0571" 156 | integrity sha512-9807RlWAgT564wT+DjeyU5OFMPjmzxVobvDFmNAhY+5zD6A2ly3jDp6sgnfyDtlIQ+7H97oc/DGCzzfu9rjw9w== 157 | dependencies: 158 | fast-deep-equal "^3.1.1" 159 | json-schema-traverse "^1.0.0" 160 | require-from-string "^2.0.2" 161 | uri-js "^4.2.2" 162 | 163 | ansi-colors@^4.1.1: 164 | version "4.1.1" 165 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" 166 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== 167 | 168 | ansi-regex@^5.0.0: 169 | version "5.0.0" 170 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 171 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 172 | 173 | ansi-styles@^3.2.1: 174 | version "3.2.1" 175 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 176 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 177 | dependencies: 178 | color-convert "^1.9.0" 179 | 180 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 181 | version "4.3.0" 182 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 183 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 184 | dependencies: 185 | color-convert "^2.0.1" 186 | 187 | argparse@^1.0.7: 188 | version "1.0.10" 189 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 190 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 191 | dependencies: 192 | sprintf-js "~1.0.2" 193 | 194 | astral-regex@^2.0.0: 195 | version "2.0.0" 196 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" 197 | integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== 198 | 199 | asynckit@^0.4.0: 200 | version "0.4.0" 201 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 202 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= 203 | 204 | balanced-match@^1.0.0: 205 | version "1.0.2" 206 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 207 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 208 | 209 | brace-expansion@^1.1.7: 210 | version "1.1.11" 211 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 212 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 213 | dependencies: 214 | balanced-match "^1.0.0" 215 | concat-map "0.0.1" 216 | 217 | callsites@^3.0.0, callsites@^3.1.0: 218 | version "3.1.0" 219 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 220 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 221 | 222 | chalk@^2.0.0: 223 | version "2.4.2" 224 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 225 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 226 | dependencies: 227 | ansi-styles "^3.2.1" 228 | escape-string-regexp "^1.0.5" 229 | supports-color "^5.3.0" 230 | 231 | chalk@^4.0.0: 232 | version "4.1.2" 233 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 234 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 235 | dependencies: 236 | ansi-styles "^4.1.0" 237 | supports-color "^7.1.0" 238 | 239 | color-convert@^1.9.0: 240 | version "1.9.3" 241 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 242 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 243 | dependencies: 244 | color-name "1.1.3" 245 | 246 | color-convert@^2.0.1: 247 | version "2.0.1" 248 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 249 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 250 | dependencies: 251 | color-name "~1.1.4" 252 | 253 | color-name@1.1.3: 254 | version "1.1.3" 255 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 256 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 257 | 258 | color-name@~1.1.4: 259 | version "1.1.4" 260 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 261 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 262 | 263 | combined-stream@^1.0.8: 264 | version "1.0.8" 265 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 266 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== 267 | dependencies: 268 | delayed-stream "~1.0.0" 269 | 270 | concat-map@0.0.1: 271 | version "0.0.1" 272 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 273 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 274 | 275 | cross-spawn@^7.0.2: 276 | version "7.0.3" 277 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 278 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 279 | dependencies: 280 | path-key "^3.1.0" 281 | shebang-command "^2.0.0" 282 | which "^2.0.1" 283 | 284 | debug@^4.0.1, debug@^4.1.1: 285 | version "4.3.2" 286 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" 287 | integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== 288 | dependencies: 289 | ms "2.1.2" 290 | 291 | deep-is@^0.1.3: 292 | version "0.1.3" 293 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 294 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 295 | 296 | delayed-stream@~1.0.0: 297 | version "1.0.0" 298 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 299 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= 300 | 301 | discord-api-types@^0.18.1: 302 | version "0.18.1" 303 | resolved "https://registry.yarnpkg.com/discord-api-types/-/discord-api-types-0.18.1.tgz#5d08ed1263236be9c21a22065d0e6b51f790f492" 304 | integrity sha512-hNC38R9ZF4uaujaZQtQfm5CdQO58uhdkoHQAVvMfIL0LgOSZeW575W8H6upngQOuoxWd8tiRII3LLJm9zuQKYg== 305 | 306 | discord-api-types@^0.22.0: 307 | version "0.22.0" 308 | resolved "https://registry.yarnpkg.com/discord-api-types/-/discord-api-types-0.22.0.tgz#34dc57fe8e016e5eaac5e393646cd42a7e1ccc2a" 309 | integrity sha512-l8yD/2zRbZItUQpy7ZxBJwaLX/Bs2TGaCthRppk8Sw24LOIWg12t9JEreezPoYD0SQcC2htNNo27kYEpYW/Srg== 310 | 311 | discord.js@^13.1.0: 312 | version "13.1.0" 313 | resolved "https://registry.yarnpkg.com/discord.js/-/discord.js-13.1.0.tgz#99f6a2a8be88d31906ff0148e9b1cb603ebb2e2e" 314 | integrity sha512-gxO4CXKdHpqA+WKG+f5RNnd3srTDj5uFJHgOathksDE90YNq/Qijkd2WlMgTTMS6AJoEnHxI7G9eDQHCuZ+xDA== 315 | dependencies: 316 | "@discordjs/builders" "^0.5.0" 317 | "@discordjs/collection" "^0.2.1" 318 | "@discordjs/form-data" "^3.0.1" 319 | "@sapphire/async-queue" "^1.1.4" 320 | "@types/ws" "^7.4.7" 321 | discord-api-types "^0.22.0" 322 | node-fetch "^2.6.1" 323 | ws "^7.5.1" 324 | 325 | doctrine@^3.0.0: 326 | version "3.0.0" 327 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 328 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 329 | dependencies: 330 | esutils "^2.0.2" 331 | 332 | dot-prop@^6.0.1: 333 | version "6.0.1" 334 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-6.0.1.tgz#fc26b3cf142b9e59b74dbd39ed66ce620c681083" 335 | integrity sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA== 336 | dependencies: 337 | is-obj "^2.0.0" 338 | 339 | dotenv@^10.0.0: 340 | version "10.0.0" 341 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" 342 | integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== 343 | 344 | emoji-regex@^8.0.0: 345 | version "8.0.0" 346 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 347 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 348 | 349 | enquirer@^2.3.5: 350 | version "2.3.6" 351 | resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" 352 | integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== 353 | dependencies: 354 | ansi-colors "^4.1.1" 355 | 356 | escape-string-regexp@^1.0.5: 357 | version "1.0.5" 358 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 359 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 360 | 361 | escape-string-regexp@^4.0.0: 362 | version "4.0.0" 363 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 364 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 365 | 366 | eslint-scope@^5.1.1: 367 | version "5.1.1" 368 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" 369 | integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== 370 | dependencies: 371 | esrecurse "^4.3.0" 372 | estraverse "^4.1.1" 373 | 374 | eslint-utils@^2.1.0: 375 | version "2.1.0" 376 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" 377 | integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== 378 | dependencies: 379 | eslint-visitor-keys "^1.1.0" 380 | 381 | eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: 382 | version "1.3.0" 383 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" 384 | integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== 385 | 386 | eslint-visitor-keys@^2.0.0: 387 | version "2.1.0" 388 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" 389 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 390 | 391 | eslint@^7.32.0: 392 | version "7.32.0" 393 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.32.0.tgz#c6d328a14be3fb08c8d1d21e12c02fdb7a2a812d" 394 | integrity sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA== 395 | dependencies: 396 | "@babel/code-frame" "7.12.11" 397 | "@eslint/eslintrc" "^0.4.3" 398 | "@humanwhocodes/config-array" "^0.5.0" 399 | ajv "^6.10.0" 400 | chalk "^4.0.0" 401 | cross-spawn "^7.0.2" 402 | debug "^4.0.1" 403 | doctrine "^3.0.0" 404 | enquirer "^2.3.5" 405 | escape-string-regexp "^4.0.0" 406 | eslint-scope "^5.1.1" 407 | eslint-utils "^2.1.0" 408 | eslint-visitor-keys "^2.0.0" 409 | espree "^7.3.1" 410 | esquery "^1.4.0" 411 | esutils "^2.0.2" 412 | fast-deep-equal "^3.1.3" 413 | file-entry-cache "^6.0.1" 414 | functional-red-black-tree "^1.0.1" 415 | glob-parent "^5.1.2" 416 | globals "^13.6.0" 417 | ignore "^4.0.6" 418 | import-fresh "^3.0.0" 419 | imurmurhash "^0.1.4" 420 | is-glob "^4.0.0" 421 | js-yaml "^3.13.1" 422 | json-stable-stringify-without-jsonify "^1.0.1" 423 | levn "^0.4.1" 424 | lodash.merge "^4.6.2" 425 | minimatch "^3.0.4" 426 | natural-compare "^1.4.0" 427 | optionator "^0.9.1" 428 | progress "^2.0.0" 429 | regexpp "^3.1.0" 430 | semver "^7.2.1" 431 | strip-ansi "^6.0.0" 432 | strip-json-comments "^3.1.0" 433 | table "^6.0.9" 434 | text-table "^0.2.0" 435 | v8-compile-cache "^2.0.3" 436 | 437 | espree@^7.3.0, espree@^7.3.1: 438 | version "7.3.1" 439 | resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" 440 | integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== 441 | dependencies: 442 | acorn "^7.4.0" 443 | acorn-jsx "^5.3.1" 444 | eslint-visitor-keys "^1.3.0" 445 | 446 | esprima@^4.0.0: 447 | version "4.0.1" 448 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 449 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 450 | 451 | esquery@^1.4.0: 452 | version "1.4.0" 453 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" 454 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== 455 | dependencies: 456 | estraverse "^5.1.0" 457 | 458 | esrecurse@^4.3.0: 459 | version "4.3.0" 460 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 461 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 462 | dependencies: 463 | estraverse "^5.2.0" 464 | 465 | estraverse@^4.1.1: 466 | version "4.3.0" 467 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 468 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 469 | 470 | estraverse@^5.1.0, estraverse@^5.2.0: 471 | version "5.2.0" 472 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" 473 | integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== 474 | 475 | esutils@^2.0.2: 476 | version "2.0.3" 477 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 478 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 479 | 480 | event-target-shim@^5.0.0: 481 | version "5.0.1" 482 | resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" 483 | integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== 484 | 485 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 486 | version "3.1.3" 487 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 488 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 489 | 490 | fast-json-stable-stringify@^2.0.0: 491 | version "2.1.0" 492 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 493 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 494 | 495 | fast-levenshtein@^2.0.6: 496 | version "2.0.6" 497 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 498 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 499 | 500 | file-entry-cache@^6.0.1: 501 | version "6.0.1" 502 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 503 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 504 | dependencies: 505 | flat-cache "^3.0.4" 506 | 507 | flat-cache@^3.0.4: 508 | version "3.0.4" 509 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 510 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 511 | dependencies: 512 | flatted "^3.1.0" 513 | rimraf "^3.0.2" 514 | 515 | flatted@^3.1.0: 516 | version "3.2.2" 517 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.2.tgz#64bfed5cb68fe3ca78b3eb214ad97b63bedce561" 518 | integrity sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA== 519 | 520 | form-data@^4.0.0: 521 | version "4.0.0" 522 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" 523 | integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== 524 | dependencies: 525 | asynckit "^0.4.0" 526 | combined-stream "^1.0.8" 527 | mime-types "^2.1.12" 528 | 529 | fs.realpath@^1.0.0: 530 | version "1.0.0" 531 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 532 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 533 | 534 | functional-red-black-tree@^1.0.1: 535 | version "1.0.1" 536 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 537 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 538 | 539 | glob-parent@^5.1.2: 540 | version "5.1.2" 541 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 542 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 543 | dependencies: 544 | is-glob "^4.0.1" 545 | 546 | glob@^7.1.3: 547 | version "7.1.7" 548 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" 549 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== 550 | dependencies: 551 | fs.realpath "^1.0.0" 552 | inflight "^1.0.4" 553 | inherits "2" 554 | minimatch "^3.0.4" 555 | once "^1.3.0" 556 | path-is-absolute "^1.0.0" 557 | 558 | globals@^13.6.0, globals@^13.9.0: 559 | version "13.11.0" 560 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.11.0.tgz#40ef678da117fe7bd2e28f1fab24951bd0255be7" 561 | integrity sha512-08/xrJ7wQjK9kkkRoI3OFUBbLx4f+6x3SGwcPvQ0QH6goFDrOU2oyAWrmh3dJezu65buo+HBMzAMQy6rovVC3g== 562 | dependencies: 563 | type-fest "^0.20.2" 564 | 565 | has-flag@^3.0.0: 566 | version "3.0.0" 567 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 568 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 569 | 570 | has-flag@^4.0.0: 571 | version "4.0.0" 572 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 573 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 574 | 575 | ignore@^4.0.6: 576 | version "4.0.6" 577 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 578 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 579 | 580 | import-fresh@^3.0.0, import-fresh@^3.2.1: 581 | version "3.3.0" 582 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 583 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 584 | dependencies: 585 | parent-module "^1.0.0" 586 | resolve-from "^4.0.0" 587 | 588 | imurmurhash@^0.1.4: 589 | version "0.1.4" 590 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 591 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 592 | 593 | inflight@^1.0.4: 594 | version "1.0.6" 595 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 596 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 597 | dependencies: 598 | once "^1.3.0" 599 | wrappy "1" 600 | 601 | inherits@2: 602 | version "2.0.4" 603 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 604 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 605 | 606 | is-extglob@^2.1.1: 607 | version "2.1.1" 608 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 609 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 610 | 611 | is-fullwidth-code-point@^3.0.0: 612 | version "3.0.0" 613 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 614 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 615 | 616 | is-glob@^4.0.0, is-glob@^4.0.1: 617 | version "4.0.1" 618 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 619 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 620 | dependencies: 621 | is-extglob "^2.1.1" 622 | 623 | is-obj@^2.0.0: 624 | version "2.0.0" 625 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" 626 | integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== 627 | 628 | isexe@^2.0.0: 629 | version "2.0.0" 630 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 631 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 632 | 633 | js-tokens@^4.0.0: 634 | version "4.0.0" 635 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 636 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 637 | 638 | js-yaml@^3.13.1: 639 | version "3.14.1" 640 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 641 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 642 | dependencies: 643 | argparse "^1.0.7" 644 | esprima "^4.0.0" 645 | 646 | json-schema-traverse@^0.4.1: 647 | version "0.4.1" 648 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 649 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 650 | 651 | json-schema-traverse@^1.0.0: 652 | version "1.0.0" 653 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" 654 | integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== 655 | 656 | json-stable-stringify-without-jsonify@^1.0.1: 657 | version "1.0.1" 658 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 659 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 660 | 661 | levn@^0.4.1: 662 | version "0.4.1" 663 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 664 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 665 | dependencies: 666 | prelude-ls "^1.2.1" 667 | type-check "~0.4.0" 668 | 669 | lodash.clonedeep@^4.5.0: 670 | version "4.5.0" 671 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 672 | integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= 673 | 674 | lodash.isequal@^4.5.0: 675 | version "4.5.0" 676 | resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" 677 | integrity sha1-QVxEePK8wwEgwizhDtMib30+GOA= 678 | 679 | lodash.merge@^4.6.2: 680 | version "4.6.2" 681 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 682 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 683 | 684 | lodash.truncate@^4.4.2: 685 | version "4.4.2" 686 | resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" 687 | integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM= 688 | 689 | lru-cache@^6.0.0: 690 | version "6.0.0" 691 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 692 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 693 | dependencies: 694 | yallist "^4.0.0" 695 | 696 | mime-db@1.49.0: 697 | version "1.49.0" 698 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.49.0.tgz#f3dfde60c99e9cf3bc9701d687778f537001cbed" 699 | integrity sha512-CIc8j9URtOVApSFCQIF+VBkX1RwXp/oMMOrqdyXSBXq5RWNEsRfyj1kiRnQgmNXmHxPoFIxOroKA3zcU9P+nAA== 700 | 701 | mime-types@^2.1.12: 702 | version "2.1.32" 703 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.32.tgz#1d00e89e7de7fe02008db61001d9e02852670fd5" 704 | integrity sha512-hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A== 705 | dependencies: 706 | mime-db "1.49.0" 707 | 708 | minimatch@^3.0.4: 709 | version "3.0.4" 710 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 711 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 712 | dependencies: 713 | brace-expansion "^1.1.7" 714 | 715 | ms@2.1.2: 716 | version "2.1.2" 717 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 718 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 719 | 720 | natural-compare@^1.4.0: 721 | version "1.4.0" 722 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 723 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 724 | 725 | node-fetch@^2.6.1: 726 | version "2.6.1" 727 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" 728 | integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== 729 | 730 | once@^1.3.0: 731 | version "1.4.0" 732 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 733 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 734 | dependencies: 735 | wrappy "1" 736 | 737 | optionator@^0.9.1: 738 | version "0.9.1" 739 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 740 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 741 | dependencies: 742 | deep-is "^0.1.3" 743 | fast-levenshtein "^2.0.6" 744 | levn "^0.4.1" 745 | prelude-ls "^1.2.1" 746 | type-check "^0.4.0" 747 | word-wrap "^1.2.3" 748 | 749 | ow@^0.27.0: 750 | version "0.27.0" 751 | resolved "https://registry.yarnpkg.com/ow/-/ow-0.27.0.tgz#d44da088e8184fa11de64b5813206f9f86ab68d0" 752 | integrity sha512-SGnrGUbhn4VaUGdU0EJLMwZWSupPmF46hnTRII7aCLCrqixTAC5eKo8kI4/XXf1eaaI8YEVT+3FeGNJI9himAQ== 753 | dependencies: 754 | "@sindresorhus/is" "^4.0.1" 755 | callsites "^3.1.0" 756 | dot-prop "^6.0.1" 757 | lodash.isequal "^4.5.0" 758 | type-fest "^1.2.1" 759 | vali-date "^1.0.0" 760 | 761 | parent-module@^1.0.0: 762 | version "1.0.1" 763 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 764 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 765 | dependencies: 766 | callsites "^3.0.0" 767 | 768 | path-is-absolute@^1.0.0: 769 | version "1.0.1" 770 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 771 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 772 | 773 | path-key@^3.1.0: 774 | version "3.1.1" 775 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 776 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 777 | 778 | prelude-ls@^1.2.1: 779 | version "1.2.1" 780 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 781 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 782 | 783 | progress@^2.0.0: 784 | version "2.0.3" 785 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 786 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 787 | 788 | punycode@^2.1.0: 789 | version "2.1.1" 790 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 791 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 792 | 793 | regexpp@^3.1.0: 794 | version "3.2.0" 795 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" 796 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== 797 | 798 | require-from-string@^2.0.2: 799 | version "2.0.2" 800 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" 801 | integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== 802 | 803 | resolve-from@^4.0.0: 804 | version "4.0.0" 805 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 806 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 807 | 808 | rimraf@^3.0.2: 809 | version "3.0.2" 810 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 811 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 812 | dependencies: 813 | glob "^7.1.3" 814 | 815 | semver@^7.2.1: 816 | version "7.3.5" 817 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" 818 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== 819 | dependencies: 820 | lru-cache "^6.0.0" 821 | 822 | shebang-command@^2.0.0: 823 | version "2.0.0" 824 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 825 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 826 | dependencies: 827 | shebang-regex "^3.0.0" 828 | 829 | shebang-regex@^3.0.0: 830 | version "3.0.0" 831 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 832 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 833 | 834 | slice-ansi@^4.0.0: 835 | version "4.0.0" 836 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" 837 | integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== 838 | dependencies: 839 | ansi-styles "^4.0.0" 840 | astral-regex "^2.0.0" 841 | is-fullwidth-code-point "^3.0.0" 842 | 843 | sprintf-js@~1.0.2: 844 | version "1.0.3" 845 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 846 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 847 | 848 | string-width@^4.2.0: 849 | version "4.2.2" 850 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5" 851 | integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA== 852 | dependencies: 853 | emoji-regex "^8.0.0" 854 | is-fullwidth-code-point "^3.0.0" 855 | strip-ansi "^6.0.0" 856 | 857 | strip-ansi@^6.0.0: 858 | version "6.0.0" 859 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 860 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 861 | dependencies: 862 | ansi-regex "^5.0.0" 863 | 864 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 865 | version "3.1.1" 866 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 867 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 868 | 869 | supports-color@^5.3.0: 870 | version "5.5.0" 871 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 872 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 873 | dependencies: 874 | has-flag "^3.0.0" 875 | 876 | supports-color@^7.1.0: 877 | version "7.2.0" 878 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 879 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 880 | dependencies: 881 | has-flag "^4.0.0" 882 | 883 | table@^6.0.9: 884 | version "6.7.1" 885 | resolved "https://registry.yarnpkg.com/table/-/table-6.7.1.tgz#ee05592b7143831a8c94f3cee6aae4c1ccef33e2" 886 | integrity sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg== 887 | dependencies: 888 | ajv "^8.0.1" 889 | lodash.clonedeep "^4.5.0" 890 | lodash.truncate "^4.4.2" 891 | slice-ansi "^4.0.0" 892 | string-width "^4.2.0" 893 | strip-ansi "^6.0.0" 894 | 895 | text-table@^0.2.0: 896 | version "0.2.0" 897 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 898 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 899 | 900 | ts-mixer@^6.0.0: 901 | version "6.0.0" 902 | resolved "https://registry.yarnpkg.com/ts-mixer/-/ts-mixer-6.0.0.tgz#4e631d3a36e3fa9521b973b132e8353bc7267f9f" 903 | integrity sha512-nXIb1fvdY5CBSrDIblLn73NW0qRDk5yJ0Sk1qPBF560OdJfQp9jhl+0tzcY09OZ9U+6GpeoI9RjwoIKFIoB9MQ== 904 | 905 | tslib@^2.3.0: 906 | version "2.3.1" 907 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.3.1.tgz#e8a335add5ceae51aa261d32a490158ef042ef01" 908 | integrity sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw== 909 | 910 | type-check@^0.4.0, type-check@~0.4.0: 911 | version "0.4.0" 912 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 913 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 914 | dependencies: 915 | prelude-ls "^1.2.1" 916 | 917 | type-fest@^0.20.2: 918 | version "0.20.2" 919 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 920 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 921 | 922 | type-fest@^1.2.1: 923 | version "1.4.0" 924 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-1.4.0.tgz#e9fb813fe3bf1744ec359d55d1affefa76f14be1" 925 | integrity sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA== 926 | 927 | uri-js@^4.2.2: 928 | version "4.4.1" 929 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 930 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 931 | dependencies: 932 | punycode "^2.1.0" 933 | 934 | v8-compile-cache@^2.0.3: 935 | version "2.3.0" 936 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" 937 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== 938 | 939 | vali-date@^1.0.0: 940 | version "1.0.0" 941 | resolved "https://registry.yarnpkg.com/vali-date/-/vali-date-1.0.0.tgz#1b904a59609fb328ef078138420934f6b86709a6" 942 | integrity sha1-G5BKWWCfsyjvB4E4Qgk09rhnCaY= 943 | 944 | which@^2.0.1: 945 | version "2.0.2" 946 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 947 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 948 | dependencies: 949 | isexe "^2.0.0" 950 | 951 | word-wrap@^1.2.3: 952 | version "1.2.3" 953 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 954 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 955 | 956 | wrappy@1: 957 | version "1.0.2" 958 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 959 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 960 | 961 | ws@^7.5.1: 962 | version "7.5.3" 963 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.3.tgz#160835b63c7d97bfab418fc1b8a9fced2ac01a74" 964 | integrity sha512-kQ/dHIzuLrS6Je9+uv81ueZomEwH0qVYstcAQ4/Z93K8zeko9gtAbttJWzoC5ukqXY1PpoouV3+VSOqEAFt5wg== 965 | 966 | yallist@^4.0.0: 967 | version "4.0.0" 968 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 969 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 970 | --------------------------------------------------------------------------------