├── .env.example ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ ├── other.yml │ └── support.yml └── PULL_REQUEST_TEMPLATE.MD ├── .gitignore ├── .husky └── pre-commit ├── .pre-commit-config.yaml ├── .prettierignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── package.json ├── src ├── commands │ ├── General │ │ ├── about.ts │ │ ├── faq.ts │ │ ├── info.ts │ │ └── ping.ts │ ├── Hacksquad │ │ ├── leaderboard.ts │ │ └── team.ts │ └── Novu │ │ ├── contributor.ts │ │ └── contributors.ts ├── index.ts ├── interaction-handlers │ └── autocomplete │ │ ├── faq.ts │ │ ├── hacksquadTeam.ts │ │ └── novuContributor.ts ├── lib │ ├── cachedFetch.ts │ ├── constants.ts │ ├── faqData.ts │ ├── pagination.ts │ ├── setup.ts │ ├── types.ts │ └── utils.ts └── listeners │ ├── chatInputCommands │ ├── chatInputCommandDenied.ts │ └── chatInputCommandSuccess.ts │ └── ready.ts ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- 1 | # Discord Token, please fill this for the bot to start operating 2 | DISCORD_TOKEN= 3 | 4 | # ID of the owner of the bot, you can skip it, but skipping it will give warning on the console 5 | OWNERS= 6 | 7 | # ID OF DEVELOPERS 8 | 9 | DEVELOPERS_ID= 10 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "commonjs": true, 4 | "es2021": true, 5 | "node": true 6 | }, 7 | "extends": "eslint:recommended", 8 | "overrides": [], 9 | "parserOptions": { 10 | "ecmaVersion": "latest", 11 | "sourceType": "module" 12 | }, 13 | "rules": {} 14 | } 15 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | --- 8 | 9 | ## Describe the bug 10 | 11 | A clear and concise description of what the bug is. 12 | 13 | ## To Reproduce 14 | 15 | Steps to reproduce the behavior: 16 | 17 | 1. Go to '...' 18 | 2. Click on '....' 19 | 3. Scroll down to '....' 20 | 4. See error 21 | 22 | ## Expected behavior 23 | 24 | A clear and concise description of what you expected to happen. 25 | 26 | ## Screenshots 27 | 28 | If applicable, add screenshots to help explain your problem. 29 | 30 | ## Desktop (please complete the following information): 31 | 32 | - OS: [e.g. iOS] 33 | - Browser [e.g. chrome, safari] 34 | - Version [e.g. 22] 35 | 36 | ## Smartphone (please complete the following information): 37 | 38 | - Device: [e.g. iPhone6] 39 | - OS: [e.g. iOS8.1] 40 | - Browser [e.g. stock browser, safari] 41 | - Version [e.g. 22] 42 | 43 | ## Additional context 44 | 45 | Add any other context about the problem here. 46 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | --- 8 | 9 | ## Is your feature request related to a problem? Please describe. 10 | 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | ## Describe the solution you'd like 14 | 15 | A clear and concise description of what you want to happen. 16 | 17 | ## Describe alternatives you've considered 18 | 19 | A clear and concise description of any alternative solutions or features you've considered. 20 | 21 | ## Additional context 22 | 23 | Add any other context or screenshots about the feature request here. 24 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.yml: -------------------------------------------------------------------------------- 1 | name: Other 2 | description: Describe anything here. 3 | title: Other 4 | labels: [question, Others] 5 | assignees: MrKrishnaAgarwal 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: "# Other issue" 10 | - type: textarea 11 | id: issuedescription 12 | attributes: 13 | label: What would you like to share? 14 | description: Provide a clear and concise explanation of your issue. 15 | validations: 16 | required: true 17 | - type: textarea 18 | id: extrainfo 19 | attributes: 20 | label: Additional information 21 | description: Is there anything else I should know about this issue? 22 | validations: 23 | required: false 24 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support.yml: -------------------------------------------------------------------------------- 1 | name: Contact Support 2 | description: Contact support and get help 3 | title: Contact Support 4 | labels: [support] 5 | assignees: MrKrishnaAgarwal 6 | body: 7 | - type: markdown 8 | attributes: 9 | value: | 10 | # Contact Support 11 | - type: textarea 12 | id: description 13 | attributes: 14 | label: Description 15 | description: Describe your issue or question here 16 | placeholder: Tell us what you need help with 17 | validations: 18 | required: true 19 | - type: textarea 20 | id: screenshots 21 | attributes: 22 | label: Screenshots 23 | description: If applicable, add screenshots to help explain your problem. 24 | placeholder: Add screenshots here 25 | validations: 26 | required: false 27 | - type: textarea 28 | id: logs 29 | attributes: 30 | label: Logs 31 | description: If applicable, add logs to help explain your problem. 32 | placeholder: Add logs here 33 | validations: 34 | required: false 35 | - type: input 36 | id: contact 37 | attributes: 38 | label: Contact Details 39 | description: How can we get in touch with you? 40 | placeholder: ex. 41 | validations: 42 | required: true 43 | - type: checkboxes 44 | id: terms 45 | attributes: 46 | label: Code of Conduct 47 | description: By submitting this issue, you agree to follow our [Code of Conduct](/CODE_OF_CONDUCT.md) 48 | options: 49 | - label: I agree to follow this project's Code of Conduct 50 | required: true 51 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.MD: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## Fixes Issue 4 | 5 | 6 | 7 | 8 | 9 | ## Changes proposed 10 | 11 | 12 | 13 | 14 | 20 | 21 | ## Check List (Check all the applicable boxes) 22 | 23 | - [ ] My code follows the code style of this project. 24 | - [ ] My change requires changes to the documentation. 25 | - [ ] I have updated the documentation accordingly. 26 | - [ ] All new and existing tests passed. 27 | - [ ] This PR does not contain plagiarized content. 28 | - [ ] The title of my pull request is a short description of the requested changes. 29 | 30 | ## Screenshots 31 | 32 | 33 | 34 | ## Note to reviewers 35 | 36 | 37 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Bower dependency directory (https://bower.io/) 32 | bower_components 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (https://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules/ 42 | jspm_packages/ 43 | 44 | 45 | 46 | # TypeScript cache 47 | *.tsbuildinfo 48 | 49 | # Optional npm cache directory 50 | .npm 51 | 52 | # Optional eslint cache 53 | .eslintcache 54 | 55 | 56 | # Microbundle cache 57 | .rpt2_cache/ 58 | .rts2_cache_cjs/ 59 | .rts2_cache_es/ 60 | .rts2_cache_umd/ 61 | 62 | # Optional REPL history 63 | .node_repl_history 64 | 65 | # Output of 'npm pack' 66 | *.tgz 67 | 68 | # Yarn Integrity file 69 | .yarn-integrity 70 | 71 | 72 | 73 | # Nuxt.js build / generate output 74 | .nuxt 75 | dist 76 | 77 | # Gatsby files 78 | .cache/ 79 | 80 | # https://nextjs.org/blog/next-9-1#public-directory-support 81 | # public 82 | 83 | # vuepress build output 84 | .vuepress/dist 85 | 86 | 87 | # Serverless directories 88 | .serverless/ 89 | 90 | # FuseBox cache 91 | .fusebox/ 92 | 93 | # DynamoDB Local files 94 | .dynamodb/ 95 | 96 | # TernJS port file 97 | .tern-port 98 | 99 | 100 | .env 101 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | repos: 2 | - repo: https://github.com/pre-commit/pre-commit-hooks 3 | rev: v3.4.0 4 | hooks: 5 | - id: check-ast # Simply check whether the files parse as valid python 6 | - id: check-case-conflict # Check for files that would conflict in case-insensitive filesystems 7 | - id: check-builtin-literals # Require literal syntax when initializing empty or zero Python builtin types 8 | - id: check-docstring-first # Check a common error of defining a docstring after code 9 | - id: check-merge-conflict # Check for files that contain merge conflict strings 10 | - id: check-yaml # Check yaml files 11 | - id: check-vcs-permalinks # Ensure that links to vcs websites are permalinks 12 | - id: debug-statements # Check for debugger imports and py37+ `breakpoint()` calls in python source 13 | - id: detect-private-key # Detect the presence of private keys 14 | - id: end-of-file-fixer # Ensure that a file is either empty, or ends with one newline 15 | - id: mixed-line-ending # Replace or checks mixed line ending 16 | - id: trailing-whitespace # This hook trims trailing whitespace 17 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | .output/ 3 | node_modules/ 4 | old 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "arrowParens": "always", 3 | "semi": true, 4 | "singleQuote": false, 5 | "trailingComma": "none", 6 | "tabWidth": 4, 7 | "endOfLine": "lf", 8 | "printWidth": 120 9 | } 10 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | - Demonstrating empathy and kindness toward other people 21 | - Being respectful of differing opinions, viewpoints, and experiences 22 | - Giving and gracefully accepting constructive feedback 23 | - Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | - Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | - The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | - Trolling, insulting or derogatory comments, and personal or political attacks 33 | - Public or private harassment 34 | - Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | - Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | https://twitter.com/HackSquadDev. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to this project 2 | 3 | Please take a moment to review this document in order to make the contribution 4 | process easy and effective for everyone involved. 5 | 6 | Following these guidelines helps to communicate that you respect the time of 7 | the developers managing and developing this open source project. In return, 8 | they should reciprocate that respect in addressing your issue or assessing 9 | patches and features. 10 | 11 | ## How to prepare 12 | 13 | - You need a [GitHub account](https://github.com/signup/free) 14 | 15 | ## Using the issue tracker 16 | 17 | The issue tracker is the preferred channel for [bug reports](#bugs), 18 | [features requests](#features) and [submitting pull 19 | requests](#pull-requests), but please respect the following restrictions: 20 | 21 | - Please **do not** use the issue tracker for personal support requests (use 22 | [Stack Overflow](http://stackoverflow.com) or IRC). 23 | 24 | - Please **do not** derail or troll issues. Keep the discussion on topic and 25 | respect the opinions of others. 26 | 27 | 28 | 29 | ## Bug reports 30 | 31 | A bug is a _demonstrable problem_ that is caused by the code in the repository. 32 | Good bug reports are extremely helpful - thank you! 33 | 34 | Guidelines for bug reports: 35 | 36 | 1. **Use the GitHub issue search** — check if the issue has already been 37 | reported. 38 | 39 | 2. **Check if the issue has been fixed** — try to reproduce it using the 40 | latest `main` or development branch in the repository. 41 | 42 | 3. **Isolate the problem** — create a [reduced test 43 | case](http://css-tricks.com/reduced-test-cases/) and a live example. 44 | 45 | A good bug report shouldn't leave others needing to chase you up for more 46 | information. Please try to be as detailed as possible in your report. What is 47 | your environment? What steps will reproduce the issue? What browser(s) and OS 48 | experience the problem? What would you expect to be the outcome? All these 49 | details will help people to fix any potential bugs. 50 | 51 | Example: 52 | 53 | > Short and descriptive example bug report title 54 | > 55 | > A summary of the issue and the browser/OS environment in which it occurs. If 56 | > suitable, include the steps required to reproduce the bug. 57 | > 58 | > 1. This is the first step 59 | > 2. This is the second step 60 | > 3. Further steps, etc. 61 | > 62 | > `` - a link to the reduced test case 63 | > 64 | > Any other information you want to share that is relevant to the issue being 65 | > reported. This might include the lines of code that you have identified as 66 | > causing the bug, and potential solutions (and your opinions on their 67 | > merits). 68 | > 69 | 70 | ## Feature requests 71 | 72 | Feature requests are welcome. But take a moment to find out whether your idea 73 | fits with the scope and aims of the project. It's up to _you_ to make a strong 74 | case to convince the project's developers of the merits of this feature. Please 75 | provide as much detail and context as possible. 76 | 77 | 78 | 79 | ## Pull requests 80 | 81 | Good pull requests - patches, improvements, new features - are a fantastic 82 | help. They should remain focused in scope and avoid containing unrelated 83 | commits. 84 | 85 | **Please ask first** before embarking on any significant pull request (e.g. 86 | implementing features, refactoring code, porting to a different language), 87 | otherwise you risk spending a lot of time working on something that the 88 | project's developers might not want to merge into the project. 89 | 90 | Please adhere to the coding conventions used throughout a project (indentation, 91 | accurate comments, etc.) and any other requirements (such as test coverage). 92 | 93 | Follow this process if you'd like your work considered for inclusion in the 94 | project: 95 | 96 | 1. [Fork](http://help.github.com/fork-a-repo/) the project, clone your fork, 97 | and configure the remotes: 98 | 99 | ```bash 100 | # Clone your fork of the repo into the current directory 101 | git clone https://github.com// 102 | # Navigate to the newly cloned directory 103 | cd 104 | # Assign the original repo to a remote called "upstream" 105 | git remote add upstream https://github.com// 106 | ``` 107 | 108 | 2. If you cloned a while ago, get the latest changes from upstream: 109 | 110 | ```bash 111 | git checkout 112 | git pull upstream 113 | ``` 114 | 115 | 3. Create a new topic branch (off the main project development branch) to 116 | contain your feature, change, or fix: 117 | 118 | ```bash 119 | git checkout -b 120 | ``` 121 | 122 | 4. Commit your changes in logical chunks. Please adhere to these [git commit 123 | message guidelines](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html) 124 | or your code is unlikely be merged into the main project. Use Git's 125 | [interactive rebase](https://help.github.com/articles/interactive-rebase) 126 | feature to tidy up your commits before making them public. 127 | 128 | 5. Locally merge (or rebase) the upstream development branch into your topic branch: 129 | 130 | ```bash 131 | git pull [--rebase] upstream 132 | ``` 133 | 134 | 6. Push your topic branch up to your fork: 135 | 136 | ```bash 137 | git push origin 138 | ``` 139 | 140 | 7. [Open a Pull Request](https://help.github.com/articles/using-pull-requests/) 141 | with a clear title and description. 142 | 143 | **IMPORTANT**: By submitting a patch, you agree to allow the project owner to 144 | license your work under the same license as that used by the project. 145 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:16-bullseye as build 2 | 3 | WORKDIR /app 4 | 5 | COPY ./package.json ./package.json 6 | 7 | COPY ./yarn.lock ./yarn.lock 8 | 9 | RUN yarn install 10 | 11 | COPY ./src ./src 12 | 13 | COPY ./tsconfig.json ./tsconfig.json 14 | 15 | RUN mkdir -p /out 16 | 17 | RUN yarn build && mv ./dist /out/bot 18 | 19 | RUN mv ./node_modules /out/node_modules 20 | 21 | 22 | FROM node:16-alpine as runner 23 | 24 | RUN adduser \ 25 | --disabled-password \ 26 | --gecos "" \ 27 | --home "/none" \ 28 | --shell "/sbin/nologin" \ 29 | --no-create-home \ 30 | bot 31 | 32 | WORKDIR /app 33 | 34 | COPY --from=build /out/node_modules ./node_modules 35 | COPY --from=build /out/bot ./ 36 | 37 | RUN chown -R bot:bot /app 38 | 39 | USER bot 40 | 41 | CMD ["node", "index.js"] 42 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 HackSquad and Contributors 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 | logo 4 | 5 |

6 |

HackSquad discord Bot!

7 |

8 | 9 | License: MIT License 10 | 11 |

12 | 13 | This is a simple discord bot made with discord.js for HackSquad's discord server. 14 | 15 | ### How to use 16 | 17 | 1. Clone the repo 18 | 2. Run `npm install` 19 | 3. Create a file called `.env`, copy the content from `.env.example` and update the values as necessary 20 | 4. Run `npm run watch:start` 21 | 22 | #### Production Mode 23 | 24 | In order to use the bot in production mode run the following commands: 25 | 26 | 1. `npm run build` 27 | 2. `npm run start` 28 | 29 | #### Deploy with Docker 30 | 31 | For easier deployment, you can use our prebuilt images for docker following the steps below: 32 | 33 | 1. `docker pull ` 34 | 1. `docker run -e DISCORD_TOKEN=xxxxxx ` 35 | 36 | ### How to contribute 37 | 38 | 1. Fork the repo 39 | 2. Make your changes 40 | 3. Create a pull request 41 | 42 | ### Contributing 43 | 44 | If you want to contribute to this project, please read the [contributing guidelines](/CONTRIBUTING.md). 45 | Checkout the [issues](/issues) for things you can work on. 46 | 47 | ### License 48 | 49 | This project is licensed under the MIT License - see the [LICENSE](/LICENSE) file for details 50 | 51 | ### Acknowledgments 52 | 53 | - [discord.js](https://discord.js.org/#/) 54 | - [sapphire](https://github.com/sapphiredev/framework) 55 | 56 | ### Maintainers 57 | 58 | - [@HackSquadDev](https://github.com/HackSquadDev) 59 | - [@MrKrishnaAgarwal](https://github.com/MrKrishnaAgarwal) 60 | - [@Miya25](https://github.com/Miya25) 61 | 62 | ### Made with ❤️ by [HackSquad](https://hacksquad.dev) 63 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Supported Versions 4 | 5 | Use this section to tell people about which versions of your project are 6 | currently being supported with security updates. 7 | 8 | | Version | Supported | 9 | | ------- | ------------------ | 10 | | 5.1.x | :white_check_mark: | 11 | | 5.0.x | :x: | 12 | | 4.0.x | :white_check_mark: | 13 | | < 4.0 | :x: | 14 | 15 | ## Reporting a Vulnerability 16 | 17 | Use this section to tell people how to report a vulnerability. 18 | 19 | Tell them where to go, how often they can expect to get an update on a 20 | reported vulnerability, what to expect if the vulnerability is accepted or 21 | declined, etc. 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hacksquad-discord-bot", 3 | "version": "1.0.0", 4 | "main": "dist/index.js", 5 | "author": "HackSquadDev", 6 | "license": "UNLICENSE", 7 | "dependencies": { 8 | "@sapphire/decorators": "^5.0.0", 9 | "@sapphire/discord-utilities": "^2.11.6", 10 | "@sapphire/discord.js-utilities": "^5.0.1", 11 | "@sapphire/fetch": "^2.4.1", 12 | "@sapphire/framework": "^3.1.3", 13 | "@sapphire/plugin-api": "^4.0.1", 14 | "@sapphire/plugin-editable-commands": "^2.0.1", 15 | "@sapphire/plugin-logger": "^3.0.1", 16 | "@sapphire/plugin-subcommands": "^3.2.2", 17 | "@sapphire/time-utilities": "^1.7.8", 18 | "@sapphire/type": "^2.2.4", 19 | "@sapphire/utilities": "^3.10.1", 20 | "colorette": "^2.0.19", 21 | "discord-api-types": "^0.33.5", 22 | "discord.js": "^13.11.0", 23 | "dotenv-cra": "^3.0.2", 24 | "fuse.js": "^6.6.2", 25 | "node-cache": "^5.1.2", 26 | "reflect-metadata": "^0.1.13" 27 | }, 28 | "devDependencies": { 29 | "@sapphire/prettier-config": "^1.4.4", 30 | "@sapphire/ts-config": "^3.3.4", 31 | "@types/node": "^18.8.3", 32 | "@types/ws": "^8.5.3", 33 | "eslint": "^8.25.0", 34 | "husky": "^8.0.1", 35 | "lint-staged": "^13.0.3", 36 | "npm-run-all": "^4.1.5", 37 | "prettier": "^2.7.1", 38 | "tsc-watch": "^5.0.3", 39 | "typescript": "^4.8.4" 40 | }, 41 | "scripts": { 42 | "build": "tsc", 43 | "watch": "tsc -w", 44 | "start": "node dist/index.js", 45 | "dev": "run-s build start", 46 | "watch:start": "tsc-watch --onSuccess \"node ./dist/index.js\"", 47 | "format": "prettier --write \"src/**/*.ts\"", 48 | "prepare": "husky install" 49 | }, 50 | "engines": { 51 | "node": ">=16.x" 52 | }, 53 | "prettier": "@sapphire/prettier-config", 54 | "lint-staged": { 55 | "*.ts": [ 56 | "eslint --fix", 57 | "npm run format" 58 | ] 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /src/commands/General/about.ts: -------------------------------------------------------------------------------- 1 | import { Command } from '@sapphire/framework'; 2 | import { ApplyOptions } from '@sapphire/decorators'; 3 | import { Formatters, MessageActionRow, MessageButton, MessageEmbed } from 'discord.js'; 4 | import { exec } from 'child_process'; 5 | 6 | const GITHUB_URL = 'https://github.com/HackSquadDev/discord-js'; 7 | 8 | @ApplyOptions({ 9 | description: 'A little background story about the bot' 10 | }) 11 | export class UserCommand extends Command { 12 | public override registerApplicationCommands(registry: Command.Registry) { 13 | registry.registerChatInputCommand({ 14 | name: this.name, 15 | description: this.description 16 | }); 17 | } 18 | 19 | private getLastCommits() { 20 | return new Promise((resolve) => { 21 | exec('git log --oneline -3', (err, stdout) => { 22 | if (err) return resolve(null); 23 | const commits = stdout 24 | .split('\n') 25 | .map((m) => { 26 | const [commit, ...message] = m.split(' '); 27 | if (!commit) return ''; 28 | const link = Formatters.hyperlink(`\`${commit}\``, `${GITHUB_URL}/commit/${commit}`); 29 | return `${link} ${message.join(' ')}`; 30 | }) 31 | .filter((r) => r.trim().length > 0) 32 | .join('\n'); 33 | return resolve(commits); 34 | }); 35 | }); 36 | } 37 | 38 | // slash command 39 | public async chatInputRun(interaction: Command.ChatInputInteraction) { 40 | await interaction.deferReply({ fetchReply: true }); 41 | 42 | // 43 | const description = [ 44 | // 45 | '\u200B', 46 | 'The bot was initially started as a mini-challenge during the HackSquad event where the discord bots would be built up in different languages.', 47 | 'As a result of which the idea of this bot was introduced and executed finally.', 48 | '', 49 | 'The bot aims to provide userful information about the HackSquad event and also the peripheral around it.', 50 | '', 51 | 'The bot has been a success only thanks to the contribution from the community.', 52 | `A huge thanks to ${Formatters.hyperlink('all the contributors', `${GITHUB_URL}/graphs/contributors`)} 🙏`, 53 | '', 54 | 'The bot is licensed under **MIT License**, so you guys are more than welcome to contribute to the bot or use the codebase.', 55 | '\u200B' 56 | ].join('\n'); 57 | 58 | // 59 | const buttons = new MessageActionRow().addComponents([ 60 | new MessageButton().setLabel('Source code').setURL(GITHUB_URL).setStyle('LINK'), 61 | new MessageButton().setLabel('Contributors').setURL(`${GITHUB_URL}/graphs/contributors`).setStyle('LINK'), 62 | new MessageButton().setLabel('View Commits').setURL(`${GITHUB_URL}/commits`).setStyle('LINK') 63 | ]); 64 | 65 | // 66 | 67 | const fields = [ 68 | { 69 | name: '❯❯ Tech Stack', 70 | value: [ 71 | `• ${Formatters.hyperlink('TypeScript', 'https://www.typescriptlang.org/')}`, 72 | `• ${Formatters.hyperlink('Discord.js', 'https://discord.js.org/#/')}`, 73 | `• ${Formatters.hyperlink('Sapphire', 'https://www.sapphirejs.dev/')}`, 74 | '\u200B' 75 | ].join('\n') 76 | } 77 | ]; 78 | 79 | const commits = await this.getLastCommits(); 80 | if (commits) 81 | fields.push({ 82 | name: `Last 3 Commits`, 83 | value: commits 84 | }); 85 | 86 | const embed = new MessageEmbed() 87 | .setTitle('About the bot!') 88 | .setColor('BLURPLE') 89 | .setDescription(description) 90 | .addFields(fields) 91 | .setImage('https://user-images.githubusercontent.com/17677196/190159412-34a1d863-1c2f-49bb-930c-054753137118.jpg') 92 | .setTimestamp(); 93 | 94 | // 95 | return await interaction.followUp({ embeds: [embed], components: [buttons] }); 96 | } 97 | } 98 | -------------------------------------------------------------------------------- /src/commands/General/faq.ts: -------------------------------------------------------------------------------- 1 | import { Command } from '@sapphire/framework'; 2 | import { ApplyOptions } from '@sapphire/decorators'; 3 | import { Formatters, MessageEmbed } from 'discord.js'; 4 | import { faqList } from '../../lib/faqData'; 5 | 6 | // 7 | @ApplyOptions({ 8 | description: 'You got some question? We might already have the answer!' 9 | }) 10 | export class FaqCommand extends Command { 11 | public override registerApplicationCommands(registry: Command.Registry) { 12 | registry.registerChatInputCommand({ 13 | name: this.name, 14 | description: this.description, 15 | options: [ 16 | { 17 | type: 'STRING', 18 | name: 'question', 19 | description: 'The question you are willing to ask', 20 | required: true, 21 | autocomplete: true 22 | } 23 | ] 24 | }); 25 | } 26 | 27 | public async chatInputRun(interaction: Command.ChatInputInteraction) { 28 | await interaction.deferReply(); 29 | 30 | // 31 | const question = interaction.options.getString('question', true); 32 | 33 | // Checking if the question actually exists 34 | const foundQuestion = faqList.find((faq) => faq.question.toLowerCase() === question.toLowerCase()); 35 | if (!foundQuestion) { 36 | await interaction.editReply( 37 | `It seems we don't have any answer to your question "**${question}**" yet!\nPlease share your question and ping our team, we will get back to you as soon as possible.` 38 | ); 39 | return; 40 | } 41 | 42 | // 43 | const questionStr = Formatters.bold(foundQuestion.question); 44 | const answerStr = foundQuestion.answer; 45 | 46 | // 47 | const teamInfoEmbed = new MessageEmbed() 48 | .setColor('YELLOW') 49 | .setDescription([questionStr, '', answerStr].join('\n')) 50 | .setFooter({ 51 | text: 'HackSquad', 52 | iconURL: 'https://www.hacksquad.dev/favicon.png' 53 | }) 54 | .setImage('https://user-images.githubusercontent.com/17677196/190159412-34a1d863-1c2f-49bb-930c-054753137118.jpg') 55 | .setTimestamp(); 56 | 57 | await interaction.editReply({ embeds: [teamInfoEmbed] }); 58 | } 59 | } 60 | -------------------------------------------------------------------------------- /src/commands/General/info.ts: -------------------------------------------------------------------------------- 1 | import { Command } from '@sapphire/framework'; 2 | import { ApplyOptions } from '@sapphire/decorators'; 3 | import { Formatters, MessageActionRow, MessageButton, MessageEmbed } from 'discord.js'; 4 | 5 | // 6 | const novuURL = 'https://novu.co/'; 7 | const tooljetURL = 'https://tooljet.io/'; 8 | const dailyDevURL = 'https://daily.dev/'; 9 | const hacksquadURL = 'https://hacksquad.dev'; 10 | const amplicationURL = 'https://amplication.com/'; 11 | 12 | // 13 | @ApplyOptions({ 14 | description: 'Get information about various topics!' 15 | }) 16 | export class UserCommand extends Command { 17 | public override registerApplicationCommands(registry: Command.Registry) { 18 | registry.registerChatInputCommand({ 19 | name: this.name, 20 | description: this.description, 21 | options: [ 22 | { 23 | type: 'STRING', 24 | name: 'topic', 25 | description: 'The topic to get information on', 26 | required: true, 27 | choices: [ 28 | { name: 'HackSquad', value: 'hacksquad' }, 29 | { name: 'Novu (Sponsor)', value: 'novu' }, 30 | { name: 'ToolJet (Sponsor)', value: 'tooljet' }, 31 | { name: 'Daily.dev (Sponsor)', value: 'dailydev' }, 32 | { name: 'Amplication (Sponsor)', value: 'amplication' } 33 | ] 34 | } 35 | ] 36 | }); 37 | } 38 | 39 | // slash command 40 | public async chatInputRun(interaction: Command.ChatInputInteraction) { 41 | const currentTopic = interaction.options.get('topic')?.value ?? 'bot'; 42 | 43 | switch (currentTopic) { 44 | case 'hacksquad': 45 | this.sendHacksquadInfo(interaction); 46 | return; 47 | 48 | case 'novu': 49 | this.sendNovuInfo(interaction); 50 | return; 51 | 52 | case 'amplication': 53 | this.sendAmplicationInfo(interaction); 54 | return; 55 | 56 | case 'tooljet': 57 | this.sendTooljetInfo(interaction); 58 | return; 59 | 60 | case 'dailydev': 61 | this.sendDailyDevInfo(interaction); 62 | return; 63 | } 64 | } 65 | 66 | private async sendHacksquadInfo(interaction: Command.ChatInputInteraction) { 67 | const description = [ 68 | // 69 | '\u200B', 70 | 'Contribute code, meet community members, participate in workshops, and win more SWAG.', 71 | Formatters.hyperlink('Click here for more details!', hacksquadURL), 72 | '\u200B' 73 | ].join('\n'); 74 | 75 | // 76 | const sponsors = [ 77 | `• ${Formatters.hyperlink('Novu.co', novuURL)}`, 78 | `• ${Formatters.hyperlink('ToolJet', tooljetURL)}`, 79 | `• ${Formatters.hyperlink('Amplication', amplicationURL)}`, 80 | `• ${Formatters.hyperlink('Daily.dev', dailyDevURL)}` 81 | ].join('\n'); 82 | 83 | // 84 | const buttons = new MessageActionRow().addComponents([ 85 | new MessageButton().setURL('https://www.hacksquad.dev/#events').setLabel('Events').setStyle('LINK'), 86 | new MessageButton().setURL('https://www.hacksquad.dev/#qa').setLabel('FAQs').setStyle('LINK'), 87 | new MessageButton().setURL('https://www.hacksquad.dev/leaderboard').setLabel('Leaderboard').setStyle('LINK') 88 | ]); 89 | 90 | // 91 | const embed = new MessageEmbed() 92 | .setColor('BLURPLE') 93 | .setAuthor({ 94 | name: 'HackSquad 2022', 95 | iconURL: 'https://www.hacksquad.dev/favicon.png', 96 | url: hacksquadURL 97 | }) 98 | .setDescription(description) 99 | .addFields([ 100 | { 101 | name: '❯❯ Sponsors', 102 | value: sponsors, 103 | inline: false 104 | } 105 | ]) 106 | .setImage('https://user-images.githubusercontent.com/17677196/190159412-34a1d863-1c2f-49bb-930c-054753137118.jpg') 107 | .setTimestamp(); 108 | 109 | await interaction.reply({ embeds: [embed], components: [buttons] }); 110 | } 111 | 112 | private async sendNovuInfo(interaction: Command.ChatInputInteraction) { 113 | const description = [ 114 | '\u200B', 115 | 'The ultimate library for managing multi-channel transactional notifications with a single API.', 116 | '\u200B' 117 | ].join('\n'); 118 | 119 | // 120 | const buttons = new MessageActionRow().addComponents([ 121 | new MessageButton().setURL(novuURL).setLabel('Website').setStyle('LINK'), 122 | new MessageButton().setURL('https://novu.co/contributors/').setLabel('Heroes').setStyle('LINK'), 123 | new MessageButton().setURL('https://docs.novu.co/overview/introduction/').setLabel('Documentation').setStyle('LINK') 124 | ]); 125 | 126 | // 127 | const embed = new MessageEmbed() 128 | .setColor('BLURPLE') 129 | .setAuthor({ 130 | name: 'Novu', 131 | iconURL: 'https://novu.co/favicon-32x32.png', 132 | url: novuURL 133 | }) 134 | .setDescription(description) 135 | .setImage('https://novu.co/images/social-preview.jpg') 136 | .setTimestamp(); 137 | 138 | await interaction.reply({ embeds: [embed], components: [buttons] }); 139 | } 140 | 141 | private async sendAmplicationInfo(interaction: Command.ChatInputInteraction) { 142 | const description = [ 143 | '\u200B', 144 | 'Amplication is the most flexible open-source platform for Node.js app development. We enable developers to auto-generate production-ready backend in minutes. Design modelsand roles, deploy your app, connect with REST or GraphQL API, sync with GitHub. You own the code.', 145 | '\u200B' 146 | ].join('\n'); 147 | 148 | // 149 | const buttons = new MessageActionRow().addComponents([ 150 | new MessageButton().setURL(amplicationURL).setLabel('Website').setStyle('LINK'), 151 | new MessageButton().setURL('https://amplication.com/blog').setLabel('Blog').setStyle('LINK'), 152 | new MessageButton().setURL('https://docs.amplication.com/docs/').setLabel('Documentation').setStyle('LINK') 153 | ]); 154 | 155 | // 156 | const embed = new MessageEmbed() 157 | .setColor('BLURPLE') 158 | .setAuthor({ 159 | name: 'Amplication', 160 | iconURL: 'https://avatars.githubusercontent.com/u/65107786', 161 | url: amplicationURL 162 | }) 163 | .setDescription(description) 164 | .setImage('https://raw.githubusercontent.com/amplication/amplication-site/main/public/images/footer_banner.png') 165 | .setTimestamp(); 166 | 167 | await interaction.reply({ embeds: [embed], components: [buttons] }); 168 | } 169 | 170 | private async sendTooljetInfo(interaction: Command.ChatInputInteraction) { 171 | const description = [ 172 | '\u200B', 173 | 'Open-source low-code framework to build & deploy internal tools, dashboards and business applications in minutes.', 174 | '\u200B' 175 | ].join('\n'); 176 | 177 | // 178 | const buttons = new MessageActionRow().addComponents([ 179 | new MessageButton().setURL(tooljetURL).setLabel('Website').setStyle('LINK'), 180 | new MessageButton().setURL('https://blog.tooljet.com/').setLabel('Blog').setStyle('LINK'), 181 | new MessageButton().setURL('https://docs.tooljet.com/docs/').setLabel('Documentation').setStyle('LINK') 182 | ]); 183 | 184 | // 185 | const embed = new MessageEmbed() 186 | .setColor('BLURPLE') 187 | .setAuthor({ 188 | name: 'ToolJet', 189 | iconURL: 'https://uploads-ssl.webflow.com/6266634263b9179f76b2236e/626782ee14c06caee011b783_favicon-32x32.png', 190 | url: tooljetURL 191 | }) 192 | .setDescription(description) 193 | .setImage('https://user-images.githubusercontent.com/12490590/165771029-bf490c80-397d-4d3a-8409-0499ccc9b593.gif') 194 | .setTimestamp(); 195 | 196 | await interaction.reply({ embeds: [embed], components: [buttons] }); 197 | } 198 | 199 | private async sendDailyDevInfo(interaction: Command.ChatInputInteraction) { 200 | const description = ['\u200B', 'daily.dev is the fastest-growing professional platform for developers to grow together.', '\u200B'].join( 201 | '\n' 202 | ); 203 | 204 | // 205 | const buttons = new MessageActionRow().addComponents([ 206 | new MessageButton().setURL(dailyDevURL).setLabel('Website').setStyle('LINK'), 207 | new MessageButton().setURL('https://daily.dev/apps/').setLabel('Apps').setStyle('LINK'), 208 | new MessageButton().setURL('https://docs.daily.dev/').setLabel('Documentation').setStyle('LINK') 209 | ]); 210 | 211 | // 212 | const embed = new MessageEmbed() 213 | .setColor('BLURPLE') 214 | .setAuthor({ 215 | name: 'Daily.dev', 216 | iconURL: 'https://uploads-ssl.webflow.com/6266634263b9179f76b2236e/626782ee14c06caee011b783_favicon-32x32.png', 217 | url: dailyDevURL 218 | }) 219 | .setDescription(description) 220 | .setImage('https://daily-now-res.cloudinary.com/image/upload/v1621427800/opengraph/Open_Graph_2.jpg') 221 | .setTimestamp(); 222 | 223 | await interaction.reply({ embeds: [embed], components: [buttons] }); 224 | } 225 | } 226 | -------------------------------------------------------------------------------- /src/commands/General/ping.ts: -------------------------------------------------------------------------------- 1 | import { ApplyOptions } from '@sapphire/decorators'; 2 | import { Command } from '@sapphire/framework'; 3 | import { Message } from 'discord.js'; 4 | 5 | @ApplyOptions({ 6 | description: 'ping pong' 7 | }) 8 | export class UserCommand extends Command { 9 | public override registerApplicationCommands(registry: Command.Registry) { 10 | registry.registerChatInputCommand({ 11 | name: this.name, 12 | description: this.description 13 | }); 14 | } 15 | 16 | // slash command 17 | public async chatInputRun(interaction: Command.ChatInputInteraction) { 18 | const msg = await interaction.deferReply({ fetchReply: true }); 19 | const createdTime = msg instanceof Message ? msg.createdTimestamp : Date.parse(msg.timestamp); 20 | 21 | return await interaction.followUp({ 22 | embeds: [ 23 | { 24 | title: 'Pong!', 25 | color: 'BLURPLE', 26 | fields: [ 27 | { 28 | name: 'Gateway Latency', 29 | value: `${Math.round(this.container.client.ws.ping)}ms` 30 | }, 31 | { 32 | name: 'API Latency', 33 | value: `${Date.now() - createdTime}ms` 34 | } 35 | ], 36 | timestamp: Date.now() 37 | } 38 | ] 39 | }); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /src/commands/Hacksquad/leaderboard.ts: -------------------------------------------------------------------------------- 1 | import { Command } from '@sapphire/framework'; 2 | import { ApplyOptions } from '@sapphire/decorators'; 3 | import { MessageEmbed, Formatters, Message } from 'discord.js'; 4 | 5 | // 6 | import { createChunk } from '../../lib/utils'; 7 | import { getTeamList } from '../../lib/cachedFetch'; 8 | import { createPaginationButtons, paginate } from '../../lib/pagination'; 9 | 10 | import type { ILeaderboardResponse } from '../../lib/types'; 11 | 12 | // 13 | const winningTeamsCount = 60; 14 | 15 | type LeaderboardTeam = ILeaderboardResponse['teams']; 16 | 17 | // 18 | @ApplyOptions({ 19 | description: 'Check the leaderboard of HackSquad' 20 | }) 21 | export class UserCommand extends Command { 22 | public override registerApplicationCommands(registry: Command.Registry) { 23 | registry.registerChatInputCommand({ 24 | name: this.name, 25 | description: this.description, 26 | options: [ 27 | { 28 | type: 'INTEGER', 29 | name: 'page', 30 | description: 'Page to lookup on the leaderboard', 31 | minValue: 1 32 | } 33 | ] 34 | }); 35 | } 36 | 37 | public async chatInputRun(interaction: Command.ChatInputInteraction) { 38 | const teams = await getTeamList(); 39 | 40 | const pageSize = 5; 41 | const pages = createChunk(teams, pageSize); 42 | 43 | const pageNumber = (interaction.options.getInteger('page') ?? 1) - 1; 44 | 45 | // If page size is given more than possible length, send the possible page count 46 | if (!pages[pageNumber]) { 47 | return interaction.reply({ 48 | content: `❌ | The **HackSquad** leaderboard currently has only ${pages.length} pages!`, 49 | ephemeral: true 50 | }); 51 | } 52 | 53 | await interaction.deferReply(); 54 | 55 | const buttons = createPaginationButtons(); 56 | 57 | const msg = (await interaction.followUp({ 58 | embeds: [this.createLeaderboardEmbed(pages, teams, pageNumber)], 59 | components: [buttons], 60 | fetchReply: true 61 | })) as Message; 62 | 63 | return paginate( 64 | { 65 | msg, 66 | buttons, 67 | currentPage: pageNumber, 68 | interaction, 69 | pages 70 | }, 71 | async (intr, pageNumber) => { 72 | await intr.editReply({ 73 | embeds: [this.createLeaderboardEmbed(pages, teams, pageNumber)] 74 | }); 75 | } 76 | ); 77 | } 78 | 79 | private createLeaderboardEmbed(pages: LeaderboardTeam[], teams: LeaderboardTeam, pageNumber: number) { 80 | const currentPage = pages[pageNumber] || pages[0]; 81 | 82 | const sourceLink = Formatters.hyperlink('`🔗` **hacksquad.dev**', 'https://www.hacksquad.dev/leaderboard'); 83 | 84 | const embed = new MessageEmbed() 85 | .setColor('BLURPLE') 86 | .setAuthor({ 87 | name: 'HackSquad Leaderboard', 88 | url: 'https://www.hacksquad.dev/leaderboard', 89 | iconURL: 'https://www.hacksquad.dev/favicon.png' 90 | }) 91 | .setFooter({ 92 | text: `Page ${pageNumber + 1} of ${pages.length}` 93 | }) 94 | .setDescription(`This data is taken from ${sourceLink}.\n\u200B`) 95 | .addFields(this.formatTeams(currentPage, teams)) 96 | .setImage('https://user-images.githubusercontent.com/17677196/190159412-34a1d863-1c2f-49bb-930c-054753137118.jpg') 97 | .setTimestamp(); 98 | 99 | return embed; 100 | } 101 | 102 | private formatTeams(page: LeaderboardTeam, teams: LeaderboardTeam) { 103 | const formattedTeams = page.map((team) => { 104 | // 105 | const squadPos = teams.findIndex((t) => t.id === team.id); 106 | const squadPosText = `${squadPos + 1}.`.padStart(3, ' '); 107 | 108 | const squadName = Formatters.bold(team.name); 109 | const squadPoints = Formatters.bold(team.score.toString()); 110 | 111 | const squadLink = Formatters.hyperlink(squadName, `https://hacksquad.dev/team/${team.slug}`); 112 | const squadEmoji = squadPos + 1 <= winningTeamsCount ? '`🏆`' : ''; 113 | 114 | return { 115 | name: `${squadPosText} ${squadName} ${squadEmoji}`, 116 | value: [ 117 | // 118 | `• \`🔢\` \`Points:\` ${squadPoints}`, 119 | `• \`🔗\` \`Link:\` ${squadLink}`, 120 | '\u200B' 121 | ].join('\n') 122 | }; 123 | }); 124 | 125 | return formattedTeams; 126 | } 127 | } 128 | -------------------------------------------------------------------------------- /src/commands/Hacksquad/team.ts: -------------------------------------------------------------------------------- 1 | import { chunk } from '@sapphire/utilities'; 2 | import { Command } from '@sapphire/framework'; 3 | import { ApplyOptions } from '@sapphire/decorators'; 4 | import { fetch, FetchResultTypes } from '@sapphire/fetch'; 5 | import { Formatters, MessageEmbed, MessageActionRow, MessageButton, Message, EmbedFieldData } from 'discord.js'; 6 | 7 | // 8 | import { getTeamList } from '../../lib/cachedFetch'; 9 | import { hackSquadApiUrl } from '../../lib/constants'; 10 | import { createPaginationButtons, paginate } from '../../lib/pagination'; 11 | 12 | // 13 | import type { IPullRequestInfo, ITeamResponse } from '../../lib/types'; 14 | 15 | // 16 | const squadSizeMax = 5; 17 | const winningTeams = 60; 18 | 19 | // 20 | @ApplyOptions({ 21 | description: 'Check the details of a team registered in HackSquad' 22 | }) 23 | export class UserCommand extends Command { 24 | public override registerApplicationCommands(registry: Command.Registry) { 25 | registry.registerChatInputCommand({ 26 | name: this.name, 27 | description: this.description, 28 | options: [ 29 | { 30 | type: 'STRING', 31 | name: 'name', 32 | description: 'Name or Slug of the team to lookup for', 33 | required: true, 34 | autocomplete: true 35 | }, 36 | { 37 | type: 'BOOLEAN', 38 | name: 'prs', 39 | description: 'Show pull requests made by this team', 40 | required: false 41 | } 42 | ] 43 | }); 44 | } 45 | 46 | public async pullRequestsSub(team: ITeamResponse['team'], pullRequests: IPullRequestInfo[], interaction: Command.ChatInputInteraction) { 47 | const prItems = pullRequests 48 | .sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime()) 49 | .map((pr, idx) => { 50 | const [repo, prId] = pr.url.split('github.com/')[1]?.split('/pull/'); 51 | 52 | const prLink = Formatters.hyperlink(repo, pr.url); 53 | const prEmoji = pr.status === 'DELETED' ? '(`❌`)' : ''; 54 | const prTime = Math.floor(new Date(pr.createdAt).getTime() / 1000); 55 | 56 | const description = [ 57 | // 58 | `• ${prLink} #${prId} ${prEmoji}`, 59 | `• Created: `, 60 | '\u200B' 61 | ].join('\n'); 62 | 63 | return { 64 | name: `${++idx}. ${pr.title}`, 65 | value: description 66 | } as EmbedFieldData; 67 | }); 68 | 69 | // 70 | const prList = chunk(prItems, 5); 71 | 72 | // 73 | const buttons = createPaginationButtons(); 74 | 75 | // 76 | const msg = (await interaction.followUp({ 77 | embeds: [this.createPRSEmbed(prList, team, 0)], 78 | components: [buttons], 79 | fetchReply: true 80 | })) as Message; 81 | 82 | return paginate( 83 | { 84 | msg, 85 | buttons, 86 | currentPage: 0, 87 | interaction, 88 | pages: prList 89 | }, 90 | async (intr, pageNumber) => { 91 | await intr.editReply({ 92 | embeds: [this.createPRSEmbed(prList, team, pageNumber)] 93 | }); 94 | } 95 | ); 96 | } 97 | 98 | public createPRSEmbed(pages: EmbedFieldData[][], team: ITeamResponse['team'], page: number) { 99 | const currentPage = pages[page] || pages[0]; 100 | 101 | const embed = new MessageEmbed() 102 | .setTitle(`Pull Requests by ${team.name}`) 103 | .setDescription('\u200B') 104 | .setURL(`https://hacksquad.dev/team/${team.slug}`) 105 | .addFields(currentPage) 106 | .setColor('BLURPLE') 107 | .setFooter({ 108 | text: `Page ${page + 1} of ${pages.length}` 109 | }) 110 | .setImage('https://user-images.githubusercontent.com/17677196/190159412-34a1d863-1c2f-49bb-930c-054753137118.jpg') 111 | .setTimestamp(); 112 | 113 | return embed; 114 | } 115 | 116 | public async chatInputRun(interaction: Command.ChatInputInteraction) { 117 | // Fetching all the teams 118 | const teams = await getTeamList(); 119 | 120 | const teamInputRaw = interaction.options.getString('name', true); 121 | const teamInput = teamInputRaw.toLowerCase().trim(); 122 | 123 | // Checking if the team actually exists 124 | const foundTeam = teams.find((team) => team.name.toLowerCase() === teamInput || team.slug.toLowerCase() === teamInput); 125 | if (!foundTeam) { 126 | await interaction.reply({ 127 | content: `No team named **${teamInputRaw}** was found! Please double check your input. 🙏`, 128 | ephemeral: true 129 | }); 130 | return; 131 | } 132 | 133 | await interaction.deferReply(); 134 | // Fetching the current team details 135 | const { team } = await fetch(`${hackSquadApiUrl}/team?id=${foundTeam.slug}`, FetchResultTypes.JSON); 136 | 137 | const pullRequests: IPullRequestInfo[] = JSON.parse(team.prs); 138 | 139 | if (interaction.options.getBoolean('prs')) { 140 | return this.pullRequestsSub(team, pullRequests, interaction); 141 | } 142 | 143 | // 144 | const teamScoreText = Formatters.bold(team.score.toString()); 145 | const teamSizeText = Formatters.bold(team.users.length.toString()); 146 | const teamSizeInfo = Formatters.italic( 147 | team.users.length === squadSizeMax ? 'A complete squad!' : team.users.length === 1 ? 'Lonely User' : 'Growing squad!' 148 | ); 149 | 150 | // 151 | const teamPosition = teams.findIndex((itm) => itm.id === team.id) + 1; 152 | const teamPositionText = Formatters.bold(teamPosition.toString()); 153 | const teamPositionEmoji = teamPosition <= winningTeams ? '`🏆`' : ''; 154 | 155 | // 156 | const invalidPRCount = pullRequests.filter((pr) => pr.status === 'DELETED').length; 157 | const totalPRCountText = Formatters.bold(pullRequests.length.toString()); 158 | const invalidPRCountText = Formatters.bold(invalidPRCount.toString()); 159 | 160 | // 161 | const teamAutoAssignStr = Formatters.bold('Welcoming new members'); 162 | const teamDisqualifiedStr = Formatters.bold('Disqualified'); 163 | 164 | // 165 | const invalidPREmoji = 166 | pullRequests.length === 0 ? '' : invalidPRCount === 0 ? '`👌`' : invalidPRCount < 5 ? '`🙂`' : invalidPRCount < 15 ? '`😓`' : '`😔`'; 167 | 168 | const teamBonus = team.score - (pullRequests.length - invalidPRCount); 169 | const teamBonusText = teamBonus > 0 ? `(${Formatters.italic(teamBonus.toString())} bonus points)` : ''; 170 | 171 | // 172 | const teamDescriptionArray = [ 173 | '\u200B', 174 | `• \`🔢 Points:\` ${teamScoreText} ${teamBonusText}`, 175 | `• \`🏅 Position:\` ${teamPositionText} (out of ${teams.length}) ${teamPositionEmoji}`, 176 | `• \`👥 Members Count:\` ${teamSizeText} (${teamSizeInfo})`, 177 | '', 178 | `• \`🔢 Total PRs:\` ${totalPRCountText}`, 179 | `• \`🛑 Invalid PRs:\` ${invalidPRCountText} ${invalidPREmoji}`, 180 | '\u200B' 181 | ]; 182 | 183 | // 184 | if (team.allowAutoAssign && !team.disqualified) { 185 | teamDescriptionArray.push(`• ${teamAutoAssignStr} 🙌`); 186 | } 187 | 188 | // 189 | if (team.disqualified) { 190 | teamDescriptionArray.push(`• ${teamDisqualifiedStr} 😔`); 191 | } 192 | 193 | // 194 | const _membersList = team.users 195 | .sort((a, b) => new Date(a.createdAt).getTime() - new Date(b.createdAt).getTime()) 196 | .map((user, index) => { 197 | const memberGithubLink = Formatters.hyperlink(Formatters.bold(user.name), `https://github.com/${user.handle}`); 198 | const ownerEmoji = team.ownerId === user.id ? '(`👑`)' : ''; 199 | 200 | return `\`${index + 1}.\` ${memberGithubLink} ${ownerEmoji}`; 201 | }); 202 | 203 | const membersList = [..._membersList, '\u200B'].join('\n'); 204 | 205 | // 206 | const _last5PRList = pullRequests 207 | .sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime()) 208 | .slice(0, 5) 209 | .map((pr) => { 210 | const prLink = Formatters.hyperlink(Formatters.bold(pr.title), pr.url); 211 | const prEmoji = pr.status === 'DELETED' ? '(`❌`)' : ''; 212 | 213 | return `\`-\` ${prLink} ${prEmoji}`; 214 | }); 215 | 216 | const last5PRList = [..._last5PRList, '\u200B'].join('\n'); 217 | 218 | // 219 | const teamDescription = teamDescriptionArray.join('\n'); 220 | 221 | // Fields to show in embed 222 | const teamFields = [{ name: 'Members `👥`', value: membersList, inline: false }]; 223 | 224 | // 225 | if (pullRequests.length) { 226 | teamFields.push({ name: `Latest ${Math.min(5, pullRequests.length)} Pull Requests`, value: last5PRList, inline: false }); 227 | } 228 | 229 | // 230 | const teamInfoEmbed = new MessageEmbed() 231 | .setColor('RED') 232 | .setAuthor({ 233 | name: `"${team.name}" on HackSquad`, 234 | url: `https://hacksquad.dev/team/${team.slug}` 235 | }) 236 | .setDescription(teamDescription) 237 | .setFooter({ 238 | text: 'HackSquad', 239 | iconURL: 'https://www.hacksquad.dev/favicon.png' 240 | }) 241 | .addFields(teamFields) 242 | .setImage('https://user-images.githubusercontent.com/17677196/190159412-34a1d863-1c2f-49bb-930c-054753137118.jpg') 243 | .setTimestamp(); 244 | 245 | const actionRow = new MessageActionRow(); 246 | actionRow.addComponents( 247 | new MessageButton().setEmoji('🌐').setStyle('LINK').setURL(`https://hacksquad.dev/team/${team.slug}`).setLabel('View Team') 248 | ); 249 | 250 | await interaction.followUp({ embeds: [teamInfoEmbed], components: [actionRow] }); 251 | } 252 | } 253 | -------------------------------------------------------------------------------- /src/commands/Novu/contributor.ts: -------------------------------------------------------------------------------- 1 | import { Command } from '@sapphire/framework'; 2 | import { ApplyOptions } from '@sapphire/decorators'; 3 | import { Formatters, MessageEmbed, MessageActionRow, MessageButton } from 'discord.js'; 4 | import { fetch, FetchResultTypes } from '@sapphire/fetch'; 5 | 6 | import fetchItem from 'node-fetch'; 7 | 8 | // 9 | import { novuApiUrl } from '../../lib/constants'; 10 | import { getContributorsList } from '../../lib/cachedFetch'; 11 | import type { INovuBadgeResponse, INovuContributorResponse } from '../../lib/types'; 12 | 13 | // 14 | const goldRequirement = 7; 15 | const silverRequirement = 3; 16 | const bronzeRequirement = 1; 17 | 18 | // 19 | @ApplyOptions({ 20 | description: 'Check the details of a Novu.co contributor' 21 | }) 22 | export class UserCommand extends Command { 23 | public override registerApplicationCommands(registry: Command.Registry) { 24 | registry.registerChatInputCommand({ 25 | name: this.name, 26 | description: this.description, 27 | options: [ 28 | { 29 | type: 'STRING', 30 | name: 'username', 31 | description: 'Name or github username of the contributor to lookup for', 32 | required: true, 33 | autocomplete: true 34 | } 35 | ] 36 | }); 37 | } 38 | 39 | public async chatInputRun(interaction: Command.ChatInputInteraction) { 40 | // Fetching all the contributors 41 | const contributors = await getContributorsList(); 42 | 43 | // Filtering the contributor list 44 | const list = contributors 45 | // Removing bots and people with no PRs from contributor list 46 | .filter((contributor) => !contributor.github.includes('bot') && contributor.totalPulls > 0); 47 | 48 | const userInputRaw = interaction.options.getString('username', true); 49 | const userInput = userInputRaw.toLowerCase().trim(); 50 | 51 | // Checking if the team actually exists 52 | const foundUser = list.find((user) => user.github.toLowerCase() === userInput); 53 | if (!foundUser) { 54 | await interaction.reply({ 55 | content: `No contributor found with github ID **${userInputRaw}**! Please double check your input. 🙏`, 56 | ephemeral: true 57 | }); 58 | return; 59 | } 60 | 61 | await interaction.deferReply(); 62 | 63 | // Fetching the current team details 64 | const [contributor, badges] = await Promise.all([ 65 | fetch(`${novuApiUrl}/contributor/${foundUser.github}`, FetchResultTypes.JSON), 66 | fetch(`${novuApiUrl}/badge/${foundUser.github}`, FetchResultTypes.JSON) 67 | ]); 68 | 69 | const specialBadges: any = await fetchItem(`https://novu.co/page-data/contributors/${foundUser.github}/page-data.json`, { 70 | headers: { 'Content-Type': 'application/json' } 71 | }) 72 | .then((res) => res.json()) 73 | .catch(() => {}); 74 | 75 | // 76 | const prCount = contributor.totalPulls; 77 | // const prCountText = Formatters.bold(prCount.toString()); 78 | 79 | // 80 | const githubUrl = Formatters.hyperlink(contributor.github, `https://github.com/${contributor.github}`); 81 | const twitterUrl = Formatters.hyperlink(contributor.twitter, `https://twitter.com/${contributor.twitter}`); 82 | 83 | // 84 | const contributorDescriptionArray = []; 85 | 86 | if (contributor.bio) { 87 | const bioText = Formatters.italic(contributor.bio); 88 | 89 | contributorDescriptionArray.push(`"${bioText}"`, ''); 90 | } 91 | 92 | // 93 | if (contributor.github) { 94 | contributorDescriptionArray.push(`• \`ℹ️ Github:\` ${githubUrl}`); 95 | } 96 | 97 | // NOTE: This is not updated in the API, so not displaying outdated data 98 | // 99 | // if (contributor.github_followers) { 100 | // contributorDescriptionArray.push(`   \`↳\` \`Follwers\` - ${contributor.github_followers}`, ''); 101 | // } 102 | 103 | // 104 | if (contributor.twitter) { 105 | contributorDescriptionArray.push(`• \`ℹ️ Twitter:\` ${twitterUrl}`); 106 | } 107 | 108 | // NOTE: This is not updated in the API, so not displaying outdated data 109 | // 110 | // if (contributor.twitter_followers) { 111 | // contributorDescriptionArray.push(`   \`↳\` \`Follwers\` - ${contributor.twitter_followers}`, ''); 112 | // } 113 | 114 | contributorDescriptionArray.push(''); 115 | 116 | // 117 | if (contributor.company) { 118 | contributorDescriptionArray.push(`• \`🏢 Company:\` ${contributor.company}`); 119 | } 120 | 121 | // 122 | if (contributor.location) { 123 | contributorDescriptionArray.push(`• \`🗺 Location:\` ${contributor.location}`); 124 | } 125 | 126 | // 127 | if (contributor.url) { 128 | const websiteUrl = 129 | contributor.url.startsWith('http://') || contributor.url.startsWith('https://') ? contributor.url : `https://${contributor.url}`; 130 | contributorDescriptionArray.push(`• \`🌎 Website:\` ${websiteUrl}`); 131 | } 132 | 133 | // 134 | if (contributor.last_activity_occurred_at) { 135 | const lastActivityTime = Formatters.time(Math.floor(new Date(contributor.last_activity_occurred_at).getTime() / 1000)); 136 | 137 | contributorDescriptionArray.push('', `• \`🕒 Last Activity at:\` ${lastActivityTime}`); 138 | } 139 | 140 | // 141 | const contributorDescription = [...contributorDescriptionArray.filter((itm) => itm !== null), '\u200B'].join('\n'); 142 | 143 | // 144 | const prArray = []; 145 | 146 | // 147 | if (prCount >= goldRequirement) { 148 | const goldBadge = badges.pulls.find((badge) => +badge.total === goldRequirement)?.date; 149 | const goldObtainTime = goldBadge ? Formatters.time(Math.floor(new Date(goldBadge).getTime() / 1000)) : '-'; 150 | 151 | prArray.push(`• \`🥇 Gold Medal\` - ${goldObtainTime}`); 152 | } 153 | 154 | // 155 | if (prCount >= silverRequirement) { 156 | const silverBadge = badges.pulls.find((badge) => +badge.total === silverRequirement)?.date; 157 | const silverObtainTime = silverBadge ? Formatters.time(Math.floor(new Date(silverBadge).getTime() / 1000)) : '-'; 158 | 159 | prArray.push(`• \`🥈 Silver Medal\` - ${silverObtainTime}`); 160 | } 161 | 162 | // 163 | if (prCount >= bronzeRequirement) { 164 | const bronzeBadge = badges.pulls.find((badge) => +badge.total === bronzeRequirement)?.date; 165 | const bronzeObtainTime = bronzeBadge ? Formatters.time(Math.floor(new Date(bronzeBadge).getTime() / 1000)) : '-'; 166 | 167 | prArray.push(`• \`🥉 Bronze Medal\` - ${bronzeObtainTime}`); 168 | } 169 | 170 | // 171 | const specialAchievements = specialBadges?.result?.data?.wpUserAchievement?.userAchievement?.achievementsList; 172 | if (specialAchievements?.length) { 173 | prArray.push(''); 174 | 175 | // 176 | specialAchievements?.forEach((ach: any) => { 177 | const achDate = Formatters.time(Math.floor(new Date(ach?.achievementDate ?? Date.now()).getTime() / 1000)); 178 | prArray.push(`• \`🌟 ${ach?.achievement?.title}\` - ${achDate}`); 179 | }); 180 | } 181 | 182 | // Fields to show in embed 183 | const contributorFields = []; 184 | 185 | if (prArray.length) { 186 | contributorFields.push({ 187 | name: 'Medals', 188 | value: [...prArray, '\u200B'].join('\n'), 189 | inline: false 190 | }); 191 | } 192 | 193 | if (contributor.pulls.length) { 194 | const contributorPRs = contributor.pulls 195 | .sort((a, b) => new Date(b.created_at).getTime() - new Date(a.created_at).getTime()) 196 | .slice(0, 5) 197 | .map((pr) => { 198 | const prLink = Formatters.hyperlink(pr.title, pr.html_url); 199 | 200 | return `• ${prLink} (#${Formatters.bold(pr.number.toString())})`; 201 | }); 202 | 203 | contributorFields.push({ 204 | name: `Latest ${Math.min(5, contributor.pulls.length)} Pull Requests`, 205 | value: [...contributorPRs, '\u200B'].join('\n'), 206 | inline: false 207 | }); 208 | } 209 | 210 | // 211 | const teamInfoEmbed = new MessageEmbed() 212 | .setColor('YELLOW') 213 | .setAuthor({ 214 | name: `"${contributor.name ?? contributor.github}" on Novu.co`, 215 | url: `https://novu.co/contributors/${contributor.github}`, 216 | iconURL: contributor.avatar_url 217 | }) 218 | .setThumbnail(contributor.avatar_url) 219 | .setDescription(contributorDescription) 220 | .setFooter({ 221 | text: 'Novu.co', 222 | iconURL: 'https://novu.co/favicon-32x32.png' 223 | }) 224 | .addFields(contributorFields) 225 | .setImage(`https://contributors.novu.co/profiles/${contributor.github}-small.jpg?t=${Date.now()}`) 226 | .setTimestamp(); 227 | 228 | const actionRow = new MessageActionRow(); 229 | 230 | actionRow.addComponents( 231 | new MessageButton().setEmoji('🌐').setStyle('LINK').setURL(`https://novu.co/contributors/${contributor.github}`).setLabel('View Profile'), 232 | new MessageButton().setStyle('LINK').setURL(`https://github.com/${contributor.github}`).setLabel('View Github') 233 | ); 234 | 235 | await interaction.followUp({ 236 | embeds: [teamInfoEmbed], 237 | components: [actionRow] 238 | }); 239 | } 240 | } 241 | -------------------------------------------------------------------------------- /src/commands/Novu/contributors.ts: -------------------------------------------------------------------------------- 1 | import { Command } from '@sapphire/framework'; 2 | import { ApplyOptions } from '@sapphire/decorators'; 3 | import { MessageEmbed, Formatters } from 'discord.js'; 4 | import type { Message } from 'discord.js'; 5 | 6 | // 7 | import { createChunk } from '../../lib/utils'; 8 | import { getContributorsList } from '../../lib/cachedFetch'; 9 | import { createPaginationButtons, paginate } from '../../lib/pagination'; 10 | 11 | import type { INovuContributorsResponse } from '../../lib/types'; 12 | 13 | // 14 | const goldRequirement = 7; 15 | const silverRequirement = 3; 16 | const bronzeRequirement = 1; 17 | 18 | // 19 | @ApplyOptions({ 20 | description: 'Check the list of contributors for Novu.co' 21 | }) 22 | export class UserCommand extends Command { 23 | public override registerApplicationCommands(registry: Command.Registry) { 24 | registry.registerChatInputCommand({ 25 | name: this.name, 26 | description: this.description, 27 | options: [ 28 | { 29 | type: 'INTEGER', 30 | name: 'page', 31 | description: 'Page to lookup on the contributor list', 32 | minValue: 1 33 | } 34 | ] 35 | }); 36 | } 37 | 38 | public async chatInputRun(interaction: Command.ChatInputInteraction) { 39 | const contributors = await getContributorsList(); 40 | 41 | // Filtering the contributor list 42 | const list = contributors 43 | .filter((contributor) => !contributor.github.includes('bot') && contributor.totalPulls > 0) 44 | .sort((a, b) => b.totalPulls - a.totalPulls); 45 | 46 | const pageSize = 5; 47 | const pages = createChunk(list, pageSize); 48 | const pageNumber = (interaction.options.getInteger('page') ?? 1) - 1; 49 | 50 | // If page size is given more than possible length, send the possible page count 51 | if (!pages[pageNumber]) { 52 | return interaction.reply({ 53 | content: `❌ | The **Novu.co** contributor list leaderboard currently has only ${pages.length} pages!`, 54 | ephemeral: true 55 | }); 56 | } 57 | 58 | await interaction.deferReply(); 59 | 60 | const buttons = createPaginationButtons(); 61 | 62 | const msg = (await interaction.followUp({ 63 | embeds: [this.createLeaderboardEmbed(pages, list, pageNumber)], 64 | components: [buttons], 65 | fetchReply: true, 66 | ephemeral: false 67 | })) as Message; 68 | 69 | return paginate( 70 | { 71 | msg, 72 | buttons, 73 | currentPage: pageNumber, 74 | interaction, 75 | pages 76 | }, 77 | async (intr, pageNumber) => { 78 | await intr.editReply({ 79 | embeds: [this.createLeaderboardEmbed(pages, list, pageNumber)] 80 | }); 81 | } 82 | ); 83 | } 84 | 85 | private createLeaderboardEmbed(pages: INovuContributorsResponse['list'][], list: INovuContributorsResponse['list'], pageNumber: number) { 86 | const currentPage = pages[pageNumber] || pages[0]; 87 | 88 | const sourceLink = Formatters.hyperlink('`🔗` **novu.co**', 'https://novu.co/contributors'); 89 | 90 | const contributorsEmbed = new MessageEmbed() 91 | .setColor('YELLOW') 92 | .setAuthor({ 93 | name: 'Novu.co Contributors', 94 | url: 'https://novu.co/contributors', 95 | iconURL: 'https://novu.co/favicon-32x32.png' 96 | }) 97 | .setDescription(`This data is taken from ${sourceLink}\n\u200B`) 98 | .addFields(this.formatContributorList(currentPage, list)) 99 | .setImage('https://cdn.discordapp.com/attachments/574910905817628672/1028958594634362890/contributors.png') 100 | .setFooter({ text: `Page ${pageNumber + 1} of ${pages.length}` }) 101 | .setTimestamp(); 102 | 103 | return contributorsEmbed; 104 | } 105 | 106 | private formatContributorList(list: INovuContributorsResponse['list'], team: INovuContributorsResponse['list']) { 107 | const formattedContributors = list.map((contributor) => { 108 | // 109 | const contributorPos = `${team.findIndex((r) => r._id === contributor._id) + 1}.`.padStart(3, ' '); 110 | const contributorLink = Formatters.hyperlink(contributor.github, `https://github.com/${contributor.github}`); 111 | const contributorName = Formatters.bold(contributor.name ?? contributor.github); 112 | 113 | // 114 | const pullCount = contributor.totalPulls ?? 0; 115 | const totalPulls = Formatters.bold(pullCount?.toString()); 116 | 117 | // 118 | let medalsEmoji = ''; 119 | if (pullCount >= goldRequirement) medalsEmoji = '🥇'; 120 | else if (pullCount >= silverRequirement) medalsEmoji = '🥈'; 121 | else if (pullCount >= bronzeRequirement) medalsEmoji = '🥉'; 122 | 123 | const medalsEmojiText = medalsEmoji.length ? `(${medalsEmoji})` : ''; 124 | 125 | // 126 | const descriptionList = { 127 | name: `${contributorPos} ${contributorName}`, 128 | value: [ 129 | // 130 | `• \`🔢 Total PRs:\` ${totalPulls} ${medalsEmojiText}`, 131 | `• \`🌐 Github:\` ${contributorLink}`, 132 | '\u200B' 133 | ].join('\n') 134 | }; 135 | 136 | return descriptionList; 137 | }); 138 | 139 | return formattedContributors; 140 | } 141 | } 142 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import './lib/setup'; 2 | 3 | // 4 | import { LogLevel, SapphireClient } from '@sapphire/framework'; 5 | 6 | // 7 | const client = new SapphireClient({ 8 | defaultPrefix: '!', 9 | regexPrefix: /^(hey +)?bot[,! ]/i, 10 | caseInsensitiveCommands: true, 11 | logger: { 12 | level: LogLevel.Debug 13 | }, 14 | shards: 'auto', 15 | intents: ['GUILDS', 'DIRECT_MESSAGES'], 16 | partials: ['CHANNEL'], 17 | loadMessageCommandListeners: true 18 | }); 19 | 20 | // 21 | const main = async () => { 22 | try { 23 | client.logger.info('Logging in'); 24 | await client.login(); 25 | client.logger.info('logged in'); 26 | } catch (error) { 27 | client.logger.fatal(error); 28 | client.destroy(); 29 | process.exit(1); 30 | } 31 | }; 32 | 33 | main(); 34 | -------------------------------------------------------------------------------- /src/interaction-handlers/autocomplete/faq.ts: -------------------------------------------------------------------------------- 1 | import { ApplyOptions } from '@sapphire/decorators'; 2 | import { InteractionHandler, InteractionHandlerTypes } from '@sapphire/framework'; 3 | 4 | // 5 | import type { AutocompleteInteraction } from 'discord.js'; 6 | 7 | // 8 | import { faqFuse, faqList } from '../../lib/faqData'; 9 | 10 | // 11 | @ApplyOptions({ 12 | interactionHandlerType: InteractionHandlerTypes.Autocomplete 13 | }) 14 | export class AutocompleteHandler extends InteractionHandler { 15 | public override async run(interaction: AutocompleteInteraction, result: any) { 16 | return interaction.respond(result); 17 | } 18 | 19 | public override async parse(interaction: AutocompleteInteraction) { 20 | if (interaction.commandName !== 'faq') { 21 | return this.none(); 22 | } 23 | 24 | // 25 | const focusedOption = interaction.options.getFocused(true); 26 | const currentValue = focusedOption.value; 27 | 28 | const searchValue = currentValue.toLowerCase().trim(); 29 | 30 | // Serching with Fuse.js 31 | const searchResult = searchValue 32 | ? // Searching with Fuse.js 33 | faqFuse.search(searchValue).map((itm) => itm.item) 34 | : // Return all items by default 35 | faqList; 36 | 37 | const faqItems = searchResult // 38 | .slice(0, 25) 39 | .map((faq) => ({ name: faq.question, value: faq.question.toLowerCase() })); 40 | 41 | // 42 | return this.some(faqItems); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /src/interaction-handlers/autocomplete/hacksquadTeam.ts: -------------------------------------------------------------------------------- 1 | import { ApplyOptions } from '@sapphire/decorators'; 2 | import { InteractionHandler, InteractionHandlerTypes } from '@sapphire/framework'; 3 | 4 | // 5 | import type { AutocompleteInteraction } from 'discord.js'; 6 | 7 | // 8 | import { getTeamList, hackSquadTeamFuse } from '../../lib/cachedFetch'; 9 | 10 | // 11 | @ApplyOptions({ 12 | interactionHandlerType: InteractionHandlerTypes.Autocomplete 13 | }) 14 | export class AutocompleteHandler extends InteractionHandler { 15 | public override async run(interaction: AutocompleteInteraction, result: any) { 16 | return interaction.respond(result); 17 | } 18 | 19 | public override async parse(interaction: AutocompleteInteraction) { 20 | if (interaction.commandName !== 'team') { 21 | return this.none(); 22 | } 23 | 24 | // Fetching all the teams 25 | const allItems = await getTeamList(); 26 | 27 | // 28 | const focusedOption = interaction.options.getFocused(true); 29 | const currentValue = focusedOption.value; 30 | 31 | const searchValue = currentValue.toLowerCase().trim(); 32 | 33 | // Serching with Fuse.js 34 | const searchResult = searchValue 35 | ? // Searching with Fuse.js 36 | hackSquadTeamFuse.search(searchValue).map((itm) => itm.item) 37 | : // Return all items by default 38 | allItems; 39 | 40 | const teamItems = searchResult // 41 | .slice(0, 25) 42 | .map((team) => ({ name: team.name, value: team.slug })); 43 | 44 | // 45 | return this.some(teamItems); 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /src/interaction-handlers/autocomplete/novuContributor.ts: -------------------------------------------------------------------------------- 1 | import { ApplyOptions } from '@sapphire/decorators'; 2 | import { InteractionHandler, InteractionHandlerTypes } from '@sapphire/framework'; 3 | 4 | // 5 | import type { AutocompleteInteraction } from 'discord.js'; 6 | 7 | // 8 | import { getContributorsList, novuContributorsFuse } from '../../lib/cachedFetch'; 9 | 10 | // 11 | @ApplyOptions({ 12 | interactionHandlerType: InteractionHandlerTypes.Autocomplete 13 | }) 14 | export class AutocompleteHandler extends InteractionHandler { 15 | public override async run(interaction: AutocompleteInteraction, result: any) { 16 | return interaction.respond(result); 17 | } 18 | 19 | public override async parse(interaction: AutocompleteInteraction) { 20 | if (interaction.commandName !== 'contributor') { 21 | return this.none(); 22 | } 23 | 24 | // 25 | const allItems = await getContributorsList(); 26 | 27 | // 28 | const focusedOption = interaction.options.getFocused(true); 29 | const currentValue = focusedOption.value; 30 | 31 | const searchValue = currentValue.toLowerCase().trim(); 32 | 33 | // Filtering the items 34 | const searchResult = searchValue 35 | ? // Do fussy search if there is any input 36 | novuContributorsFuse.search(searchValue).map((itm) => itm.item) 37 | : // Return all items by default 38 | allItems; 39 | 40 | const contributorList = searchResult // 41 | .slice(0, 25) 42 | .map((contributor) => ({ 43 | name: contributor.name ? `${contributor.name} (${contributor.github})` : contributor.github, 44 | value: contributor.github 45 | })); 46 | 47 | // 48 | return this.some(contributorList); 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /src/lib/cachedFetch.ts: -------------------------------------------------------------------------------- 1 | import Fuse from 'fuse.js'; 2 | import NodeCache from 'node-cache'; 3 | import { fetch, FetchResultTypes } from '@sapphire/fetch'; 4 | 5 | // 6 | import { hackSquadApiUrl, novuApiUrl } from './constants'; 7 | import type { ILeaderboardResponse, ILeaderboardTeam, INovuContributorsResponse, NovuContributor } from './types'; 8 | 9 | // 10 | const cache = new NodeCache({ stdTTL: 15 * 60 }); 11 | 12 | // 13 | const teamKey = 'hacksquad-team'; 14 | const contributorKey = 'novu-contributors'; 15 | 16 | // 17 | export const hackSquadTeamFuse = new Fuse([], { 18 | keys: ['name'], 19 | threshold: 0.3 20 | }); 21 | 22 | export const novuContributorsFuse = new Fuse([], { 23 | keys: ['github', 'name'], 24 | threshold: 0.3 25 | }); 26 | 27 | // 28 | export const getTeamList = async () => { 29 | // Findign and erturning from cache 30 | const existingItems = cache.get(teamKey); 31 | if (existingItems) return existingItems; 32 | 33 | // Fetching if not exists 34 | const { teams } = await fetch(`${hackSquadApiUrl}/leaderboard`, FetchResultTypes.JSON); 35 | 36 | // Setting the items to cache 37 | cache.set(teamKey, teams); 38 | 39 | // Setting fuse collection 40 | hackSquadTeamFuse.setCollection(teams); 41 | 42 | // 43 | return teams; 44 | }; 45 | 46 | // 47 | export const getContributorsList = async () => { 48 | // Findign and erturning from cache 49 | const existingItems = cache.get(contributorKey); 50 | if (existingItems) return existingItems; 51 | 52 | // Fetching if not exists 53 | const { list } = await fetch(`${novuApiUrl}/contributors-mini`, FetchResultTypes.JSON); 54 | 55 | // Setting the items to cache 56 | cache.set(contributorKey, list); 57 | 58 | // Setting fuse collection 59 | novuContributorsFuse.setCollection(list); 60 | 61 | // 62 | return list; 63 | }; 64 | -------------------------------------------------------------------------------- /src/lib/constants.ts: -------------------------------------------------------------------------------- 1 | import { join } from 'path'; 2 | 3 | export const rootDir = join(__dirname, '..', '..'); 4 | export const srcDir = join(rootDir, 'src'); 5 | 6 | export const RandomLoadingMessage = ['Computing...', 'Thinking...', 'Cooking some food', 'Give me a moment', 'Loading...']; 7 | 8 | export const hackSquadApiUrl = 'https://www.hacksquad.dev/api'; 9 | export const novuApiUrl = 'https://contributors.novu.co'; 10 | -------------------------------------------------------------------------------- /src/lib/faqData.ts: -------------------------------------------------------------------------------- 1 | import Fuse from 'fuse.js'; 2 | import { Formatters } from 'discord.js'; 3 | 4 | const faqList: IFaqData[] = [ 5 | // FAQs from the website 6 | { 7 | question: "What's in it for me?", 8 | answer: 'Meet amazing new people, get more involved with the open-source community and win awesome swag!' 9 | }, 10 | { 11 | question: 'When is the event happening?', 12 | answer: 'Between 1st - 31st October 2022' 13 | }, 14 | { 15 | question: 'How does it work?', 16 | answer: 'Register to the HackSquad using your GitHub, Join a squad or get assigned to a random squad, contribute code and get Swag!' 17 | }, 18 | { 19 | question: 'How many members can join a squad?', 20 | answer: 'Each squad can have a maximum of 5 members. If you can\'t find all 5, you can always turn on the "Allow random people to join my squad"' 21 | }, 22 | { 23 | question: 'How do we calculate the score?', 24 | answer: 'Each hour we calculate the number of MERGED PRs of each squad member and sum them all up. Each PR is worth 1 point. By the end of the event, the top 60 squads will win awesome swag! **We even have bonuses**' 25 | }, 26 | { 27 | question: 'How many people will get swag?', 28 | answer: 'The top 60 squads will win awesome swag! around ~300 winners!' 29 | }, 30 | { 31 | question: 'Can I register for both Hacktoberfest and Hacksquad?', 32 | answer: 'Yes, and even recommended! Each contribution will be counted for both Hacktoberfest and HackSquad' 33 | }, 34 | { 35 | question: 'Do I need other people to help me contribute code?', 36 | answer: 'You can join a squad and invite friends or we will auto-assign you to another squads' 37 | }, 38 | { 39 | question: 'Which repository can I contribute to?', 40 | answer: 'Any public repository you want! Please make sure not to spam! We check 🤫' 41 | }, 42 | { 43 | question: 'My team won! am I going to get SWAG?', 44 | answer: 'To win swag, even if your team wins, you would need to have 1 MERGED PR' 45 | }, 46 | { 47 | question: 'I want support / get more updates / find a squads member', 48 | answer: `Feel free to follow us on ${Formatters.hyperlink('Twitter', 'https://twitter.com/HackSquadDev')} and join our ${Formatters.hyperlink( 49 | 'Discord', 50 | 'https://discord.gg/vcqkXgT3Xr' 51 | )}` 52 | }, 53 | { 54 | question: 'Is the swag in the picture the actual swag?', 55 | answer: "Most of it is! We will also add more Swag from our sponsors. We still haven't finalized everything." 56 | }, 57 | { 58 | question: 'How long will it take to receive the swag?', 59 | answer: 'We are sending the swag from the US. We assume that it will reach everybody within 60-90 days.' 60 | }, 61 | { 62 | question: 'Do I need to pay duty for the SWAG?', 63 | answer: 'No! We are taking care of it!' 64 | }, 65 | { 66 | question: 'I want to create a workshop for the event during October', 67 | answer: "That's awesome! We would be super happy to give you a stage, please email us at nevo@novu.co" 68 | }, 69 | /** 70 | * Other FAQs 71 | * Will be really handy if the bot is used in the server afterwards! 72 | */ 73 | { 74 | question: 'Why are my PRs getting deleted?', 75 | answer: [ 76 | 'There can be few reasons for your PRs getting deleted:', 77 | '', 78 | '`-` The PR is made on a DSA repository', 79 | '`-` The PR is made just to +1 your PR count during the event', 80 | '`-` The PR is on your own repo (We know valuable contributions can be done to your own repo, but in order to do this you need strong reasons)', 81 | '`-` The PR is on a repo which simply asks you to list our XYZ project (e.g. script, web app list, python collection etc. etc.)' 82 | ].join('\n') 83 | }, 84 | { 85 | question: 'Will there be different (or more) swags for coming on top X position?', 86 | answer: 'Nope the swags are same for everyone' 87 | }, 88 | { 89 | question: 'Can I know who deleted my PR, disqualified me/my team and why?', 90 | answer: `You can check the logs ${Formatters.hyperlink( 91 | 'here', 92 | 'https://www.hacksquad.dev/logs' 93 | )} and ask the respective moderator about the reason if you are not satisfied with the decision 🙏` 94 | }, 95 | { 96 | question: 'All the PRs of my team have dissapeared, can anyone help me?', 97 | answer: 'We are sorry for your inconvenience. This however is a known bug and it seems to be fixed within an hour or two by itself. please have some patience 🙏' 98 | }, 99 | { 100 | question: "I didn't know DSA repositories was not allowed, can you remove the disqualfication from my account?", 101 | answer: [ 102 | 'We definitely want everyone to have a fair chance and appreciate you willing to change after you got to know.', 103 | '', 104 | 'What you can do is start making good contributions and get back to us in a week or by the end of the event, whichever is earlier.', 105 | 'If we see that you did good afterwards the conversation we can definitely bring you back to the game, and then you will even have the points you made for the valid pull requests.' 106 | ].join('\n') 107 | } 108 | ]; 109 | 110 | // 111 | const faqFuse = new Fuse(faqList, { 112 | keys: ['question'], 113 | threshold: 0.3 114 | }); 115 | 116 | // 117 | interface IFaqData { 118 | question: string; 119 | answer: string; 120 | } 121 | 122 | // 123 | export { faqList, faqFuse }; 124 | -------------------------------------------------------------------------------- /src/lib/pagination.ts: -------------------------------------------------------------------------------- 1 | import { MessageActionRow, MessageButton } from 'discord.js'; 2 | 3 | import type { Command } from '@sapphire/framework'; 4 | import type { InteractionButtonOptions, Message, InteractionReplyOptions, ButtonInteraction } from 'discord.js'; 5 | 6 | interface IPaginateProps { 7 | msg: Message; 8 | buttons: ReturnType; 9 | interaction: Command.ChatInputInteraction; 10 | pages: unknown[]; 11 | currentPage: number; 12 | } 13 | 14 | type PaginatorDispatchCallback = (interaction: ButtonInteraction<'cached'>, pageNumber: number) => Awaited; 15 | 16 | export function createPaginationButtons() { 17 | const row = new MessageActionRow(); 18 | const buttons = [ 19 | { 20 | customId: 'first', 21 | emoji: '⏪', 22 | style: 'PRIMARY' 23 | }, 24 | { 25 | customId: 'previous', 26 | emoji: '◀️', 27 | style: 'PRIMARY' 28 | }, 29 | { 30 | customId: 'close', 31 | emoji: '🗑️', 32 | style: 'SECONDARY' 33 | }, 34 | { 35 | customId: 'next', 36 | emoji: '▶️', 37 | style: 'PRIMARY' 38 | }, 39 | { 40 | customId: 'last', 41 | emoji: '⏩', 42 | style: 'PRIMARY' 43 | } 44 | ] as Array; 45 | 46 | return row.addComponents(buttons.map((m) => new MessageButton(m))); 47 | } 48 | 49 | export function paginate({ msg, buttons, interaction, pages, currentPage }: IPaginateProps, dispatch: PaginatorDispatchCallback) { 50 | const collector = msg.createMessageComponentCollector({ 51 | componentType: 'BUTTON', 52 | time: 60_000, 53 | filter: (m) => m.message.id === msg.id && buttons.components.some((r) => r.customId === m.customId) 54 | }); 55 | 56 | collector.on('collect', async (intr) => { 57 | if (interaction.replied) return; 58 | if (interaction.user.id !== intr.user.id) { 59 | const err = { 60 | embeds: [ 61 | { 62 | title: '❌ Permission Error', 63 | description: `Only ${interaction.user.toString()} is allowed to use this button.`, 64 | color: 'RED' 65 | } 66 | ], 67 | ephemeral: true 68 | } as InteractionReplyOptions; 69 | 70 | if (intr.deferred) await intr.followUp(err); 71 | else await intr.reply(err); 72 | 73 | return; 74 | } 75 | 76 | switch (intr.customId) { 77 | case 'first': 78 | case 'last': 79 | collector.resetTimer(); 80 | await intr.deferUpdate(); 81 | currentPage = intr.customId === 'first' ? 0 : pages.length - 1; 82 | await dispatch(intr, currentPage); 83 | break; 84 | 85 | case 'previous': 86 | collector.resetTimer(); 87 | await intr.deferUpdate(); 88 | currentPage = currentPage - 1 < 0 ? pages.length - 1 : currentPage - 1; 89 | await dispatch(intr, currentPage); 90 | break; 91 | 92 | case 'next': 93 | collector.resetTimer(); 94 | await intr.deferUpdate(); 95 | currentPage = currentPage + 1 >= pages.length ? 0 : currentPage + 1; 96 | await dispatch(intr, currentPage); 97 | break; 98 | 99 | case 'close': 100 | if (intr.message.deletable) await intr.message.delete().catch(() => null); 101 | collector.stop(); 102 | break; 103 | } 104 | 105 | return; 106 | }); 107 | 108 | collector.once('end', async () => { 109 | if (msg.editable) { 110 | msg.components.forEach((m) => m.components.map((n) => n.setDisabled(true))); 111 | await msg.edit({ components: msg.components }).catch(() => null); 112 | } 113 | }); 114 | } 115 | -------------------------------------------------------------------------------- /src/lib/setup.ts: -------------------------------------------------------------------------------- 1 | // Unless explicitly defined, set NODE_ENV as development: 2 | process.env.NODE_ENV ??= 'development'; 3 | 4 | import 'reflect-metadata'; 5 | import '@sapphire/plugin-api/register'; 6 | import '@sapphire/plugin-editable-commands/register'; 7 | import '@sapphire/plugin-logger/register'; 8 | import * as colorette from 'colorette'; 9 | import { config } from 'dotenv-cra'; 10 | import { inspect } from 'util'; 11 | 12 | // Read env var 13 | config(); 14 | 15 | // Set default inspection depth 16 | inspect.defaultOptions.depth = 1; 17 | 18 | // Enable colorette 19 | colorette.createColors({ useColor: true }); 20 | -------------------------------------------------------------------------------- /src/lib/types.ts: -------------------------------------------------------------------------------- 1 | // https://www.hacksquad.dev/api/leaderboard 2 | export interface ILeaderboardResponse { 3 | teams: ILeaderboardTeam[]; 4 | } 5 | 6 | export interface ILeaderboardTeam { 7 | id: string; 8 | name: string; 9 | score: number; 10 | slug: string; 11 | } 12 | 13 | // https://www.hacksquad.dev/api/team?id={slug} 14 | export interface ITeamResponse { 15 | team: { 16 | id: string; 17 | name: string; 18 | slug: string; 19 | score: number; 20 | ownerId: string; 21 | prs: string; // Parse JSON 22 | githubTeamId?: string; 23 | allowAutoAssign: boolean; 24 | disqualified: boolean; 25 | users: ITeamUser[]; 26 | }; 27 | } 28 | 29 | interface ITeamUser { 30 | createdAt: string; 31 | id: string; 32 | name: string; 33 | emailVerified?: boolean; 34 | image: string; 35 | moderator: string; 36 | handle: string; 37 | teamId: string; 38 | inviteId?: string; 39 | disqualified: boolean; 40 | githubUserId?: string; 41 | } 42 | 43 | export interface IPullRequestInfo { 44 | id: string; 45 | createdAt: string; 46 | title: string; 47 | url: string; 48 | status?: 'DELETED'; 49 | } 50 | 51 | // https://contributors.novu.co/contributors-mini 52 | export interface INovuContributorsResponse { 53 | list: NovuContributor[]; 54 | } 55 | 56 | export interface NovuContributor { 57 | _id: string; 58 | github: string; 59 | avatar_url: string; 60 | name?: string; 61 | totalPulls: number; 62 | } 63 | 64 | // https://contributors.novu.co/contributor/{name} 65 | export interface INovuContributorResponse { 66 | _id: string; 67 | github: string; 68 | avatar_url: string; 69 | bio?: string; 70 | first_activity_occurred_at: string; 71 | github_followers?: number; 72 | id: string; 73 | languages: string[]; 74 | last_activity_occurred_at?: string; 75 | location: string; 76 | company?: string; 77 | name: string; 78 | pulls: { 79 | url: string; 80 | html_url: string; 81 | number: number; 82 | title: string; 83 | created_at: string; 84 | }[]; 85 | slug: string; 86 | twitter: string; 87 | twitter_followers?: number; 88 | url?: string; 89 | totalPulls: number; 90 | } 91 | 92 | // https://contributors.novu.co/badge/{name} 93 | export interface INovuBadgeResponse { 94 | name: string; 95 | avatar_url: string; 96 | totalPulls: number; 97 | pulls: { 98 | total: string; 99 | date: string; 100 | }[]; 101 | } 102 | -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- 1 | import type { ChatInputCommandSuccessPayload, Command, ContextMenuCommandSuccessPayload, MessageCommandSuccessPayload } from '@sapphire/framework'; 2 | import { container } from '@sapphire/framework'; 3 | import { send } from '@sapphire/plugin-editable-commands'; 4 | import { cyan } from 'colorette'; 5 | import type { APIUser } from 'discord-api-types/v9'; 6 | import { Guild, Message, MessageEmbed, User } from 'discord.js'; 7 | import { RandomLoadingMessage } from './constants'; 8 | 9 | /** 10 | * Picks a random item from an array 11 | * @param array The array to pick a random item from 12 | * @example 13 | * const randomEntry = pickRandom([1, 2, 3, 4]) // 1 14 | */ 15 | export function pickRandom(array: readonly T[]): T { 16 | const { length } = array; 17 | return array[Math.floor(Math.random() * length)]; 18 | } 19 | 20 | /** 21 | * Sends a loading message to the current channel 22 | * @param message The message data for which to send the loading message 23 | */ 24 | export function sendLoadingMessage(message: Message): Promise { 25 | return send(message, { embeds: [new MessageEmbed().setDescription(pickRandom(RandomLoadingMessage)).setColor('#FF0000')] }); 26 | } 27 | 28 | export function logSuccessCommand(payload: ContextMenuCommandSuccessPayload | ChatInputCommandSuccessPayload | MessageCommandSuccessPayload): void { 29 | let successLoggerData: ReturnType; 30 | 31 | if ('interaction' in payload) { 32 | successLoggerData = getSuccessLoggerData(payload.interaction.guild, payload.interaction.user, payload.command); 33 | } else { 34 | successLoggerData = getSuccessLoggerData(payload.message.guild, payload.message.author, payload.command); 35 | } 36 | 37 | container.logger.debug(`${successLoggerData.shard} - ${successLoggerData.commandName} ${successLoggerData.author} ${successLoggerData.sentAt}`); 38 | } 39 | 40 | export function getSuccessLoggerData(guild: Guild | null, user: User, command: Command) { 41 | const shard = getShardInfo(guild?.shardId ?? 0); 42 | const commandName = getCommandInfo(command); 43 | const author = getAuthorInfo(user); 44 | const sentAt = getGuildInfo(guild); 45 | 46 | return { shard, commandName, author, sentAt }; 47 | } 48 | 49 | function getShardInfo(id: number) { 50 | return `[${cyan(id.toString())}]`; 51 | } 52 | 53 | function getCommandInfo(command: Command) { 54 | return cyan(command.name); 55 | } 56 | 57 | function getAuthorInfo(author: User | APIUser) { 58 | return `${author.username}[${cyan(author.id)}]`; 59 | } 60 | 61 | function getGuildInfo(guild: Guild | null) { 62 | if (guild === null) return 'Direct Messages'; 63 | return `${guild.name}[${cyan(guild.id)}]`; 64 | } 65 | 66 | export function createChunk(arr: T[], len: number): T[][] { 67 | const chunks: T[][] = []; 68 | 69 | for (let i = 0; i < arr.length; i += len) { 70 | chunks.push(arr.slice(i, i + len)); 71 | } 72 | 73 | return chunks; 74 | } 75 | -------------------------------------------------------------------------------- /src/listeners/chatInputCommands/chatInputCommandDenied.ts: -------------------------------------------------------------------------------- 1 | import type { ChatInputCommandDeniedPayload, Events } from '@sapphire/framework'; 2 | import { Listener, UserError } from '@sapphire/framework'; 3 | 4 | export class UserEvent extends Listener { 5 | public async run({ context, message: content }: UserError, { interaction }: ChatInputCommandDeniedPayload) { 6 | // `context: { silent: true }` should make UserError silent: 7 | // Use cases for this are for example permissions error when running the `eval` command. 8 | if (Reflect.get(Object(context), 'silent')) return; 9 | 10 | return interaction.reply({ 11 | content, 12 | allowedMentions: { users: [interaction.user.id], roles: [] }, 13 | ephemeral: true 14 | }); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/listeners/chatInputCommands/chatInputCommandSuccess.ts: -------------------------------------------------------------------------------- 1 | import { ChatInputCommandSuccessPayload, Listener, LogLevel } from '@sapphire/framework'; 2 | import type { Logger } from '@sapphire/plugin-logger'; 3 | 4 | // 5 | import { logSuccessCommand } from '../../lib/utils'; 6 | 7 | export class UserListener extends Listener { 8 | public run(payload: ChatInputCommandSuccessPayload) { 9 | logSuccessCommand(payload); 10 | } 11 | 12 | public onLoad() { 13 | this.enabled = (this.container.logger as Logger).level <= LogLevel.Debug; 14 | return super.onLoad(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/listeners/ready.ts: -------------------------------------------------------------------------------- 1 | import { ApplyOptions } from '@sapphire/decorators'; 2 | import { Listener, Store } from '@sapphire/framework'; 3 | import { blue, gray, green, magenta, magentaBright, white, yellow } from 'colorette'; 4 | 5 | const dev = process.env.NODE_ENV !== 'production'; 6 | 7 | @ApplyOptions({ once: true }) 8 | export class UserEvent extends Listener { 9 | private readonly style = dev ? yellow : blue; 10 | 11 | public run() { 12 | this.printBanner(); 13 | this.printStoreDebugInformation(); 14 | } 15 | 16 | private printBanner() { 17 | const success = green('+'); 18 | 19 | const llc = dev ? magentaBright : white; 20 | const blc = dev ? magenta : blue; 21 | 22 | const line01 = llc(''); 23 | const line02 = llc(''); 24 | const line03 = llc(''); 25 | 26 | // Offset Pad 27 | const pad = ' '.repeat(7); 28 | 29 | console.log( 30 | String.raw` 31 | ${line01} ${pad}${blc('1.0.0')} 32 | ${line02} ${pad}[${success}] Gateway 33 | ${line03}${dev ? ` ${pad}${blc('<')}${llc('/')}${blc('>')} ${llc('DEVELOPMENT MODE')}` : ''} 34 | `.trim() 35 | ); 36 | } 37 | 38 | private printStoreDebugInformation() { 39 | const { client, logger } = this.container; 40 | const stores = [...client.stores.values()]; 41 | const last = stores.pop()!; 42 | 43 | for (const store of stores) logger.info(this.styleStore(store, false)); 44 | logger.info(this.styleStore(last, true)); 45 | } 46 | 47 | private styleStore(store: Store, last: boolean) { 48 | return gray(`${last ? '└─' : '├─'} Loaded ${this.style(store.size.toString().padEnd(3, ' '))} ${store.name}.`); 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@sapphire/ts-config", 3 | "compilerOptions": { 4 | "rootDir": "src", 5 | "outDir": "dist", 6 | "tsBuildInfoFile": "dist/.tsbuildinfo" 7 | }, 8 | "include": ["src"] 9 | } 10 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@discordjs/builders@^0.16.0": 6 | version "0.16.0" 7 | resolved "https://registry.yarnpkg.com/@discordjs/builders/-/builders-0.16.0.tgz#3201f57fa57c4dd77aebb480cf47da77b7ba2e8c" 8 | integrity sha512-9/NCiZrLivgRub2/kBc0Vm5pMBE5AUdYbdXsLu/yg9ANgvnaJ0bZKTY8yYnLbsEc/LYUP79lEIdC73qEYhWq7A== 9 | dependencies: 10 | "@sapphire/shapeshift" "^3.5.1" 11 | discord-api-types "^0.36.2" 12 | fast-deep-equal "^3.1.3" 13 | ts-mixer "^6.0.1" 14 | tslib "^2.4.0" 15 | 16 | "@discordjs/collection@^0.7.0": 17 | version "0.7.0" 18 | resolved "https://registry.yarnpkg.com/@discordjs/collection/-/collection-0.7.0.tgz#1a6c00198b744ba2b73a64442145da637ac073b8" 19 | integrity sha512-R5i8Wb8kIcBAFEPLLf7LVBQKBDYUL+ekb23sOgpkpyGT+V4P7V83wTxcsqmX+PbqHt4cEHn053uMWfRqh/Z/nA== 20 | 21 | "@discordjs/collection@^1.1.0": 22 | version "1.2.0" 23 | resolved "https://registry.yarnpkg.com/@discordjs/collection/-/collection-1.2.0.tgz#5cad4bb47521c6f0abd175bf55c84528d1ac94f7" 24 | integrity sha512-VvrrtGb7vbfPHzbhGq9qZB5o8FOB+kfazrxdt0OtxzSkoBuw9dURMkCwWizZ00+rDpiK2HmLHBZX+y6JsG9khw== 25 | 26 | "@discordjs/node-pre-gyp@^0.4.2": 27 | version "0.4.4" 28 | resolved "https://registry.yarnpkg.com/@discordjs/node-pre-gyp/-/node-pre-gyp-0.4.4.tgz#33eea1038784ffc5715ef775e4f9d6cffaa96c73" 29 | integrity sha512-x569MMtdk6jdGo2S58iiZoyv4p/N2Ju8Nh6vvzZb1wyouV7IE3VuU0hg2kqUmTfD0z6r4uD6acvMTuc+iA3f8g== 30 | dependencies: 31 | detect-libc "^2.0.0" 32 | https-proxy-agent "^5.0.0" 33 | make-dir "^3.1.0" 34 | node-fetch "^2.6.7" 35 | nopt "^5.0.0" 36 | npmlog "^5.0.1" 37 | rimraf "^3.0.2" 38 | semver "^7.3.5" 39 | tar "^6.1.11" 40 | 41 | "@eslint/eslintrc@^1.3.3": 42 | version "1.3.3" 43 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.3.tgz#2b044ab39fdfa75b4688184f9e573ce3c5b0ff95" 44 | integrity sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg== 45 | dependencies: 46 | ajv "^6.12.4" 47 | debug "^4.3.2" 48 | espree "^9.4.0" 49 | globals "^13.15.0" 50 | ignore "^5.2.0" 51 | import-fresh "^3.2.1" 52 | js-yaml "^4.1.0" 53 | minimatch "^3.1.2" 54 | strip-json-comments "^3.1.1" 55 | 56 | "@humanwhocodes/config-array@^0.10.5": 57 | version "0.10.7" 58 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.10.7.tgz#6d53769fd0c222767e6452e8ebda825c22e9f0dc" 59 | integrity sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w== 60 | dependencies: 61 | "@humanwhocodes/object-schema" "^1.2.1" 62 | debug "^4.1.1" 63 | minimatch "^3.0.4" 64 | 65 | "@humanwhocodes/module-importer@^1.0.1": 66 | version "1.0.1" 67 | resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" 68 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 69 | 70 | "@humanwhocodes/object-schema@^1.2.1": 71 | version "1.2.1" 72 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" 73 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 74 | 75 | "@nodelib/fs.scandir@2.1.5": 76 | version "2.1.5" 77 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 78 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 79 | dependencies: 80 | "@nodelib/fs.stat" "2.0.5" 81 | run-parallel "^1.1.9" 82 | 83 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 84 | version "2.0.5" 85 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 86 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 87 | 88 | "@nodelib/fs.walk@^1.2.3": 89 | version "1.2.8" 90 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 91 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 92 | dependencies: 93 | "@nodelib/fs.scandir" "2.1.5" 94 | fastq "^1.6.0" 95 | 96 | "@sapphire/async-queue@^1.5.0": 97 | version "1.5.0" 98 | resolved "https://registry.yarnpkg.com/@sapphire/async-queue/-/async-queue-1.5.0.tgz#2f255a3f186635c4fb5a2381e375d3dfbc5312d8" 99 | integrity sha512-JkLdIsP8fPAdh9ZZjrbHWR/+mZj0wvKS5ICibcLrRI1j84UmLMshx5n9QmL8b95d4onJ2xxiyugTgSAX7AalmA== 100 | 101 | "@sapphire/cron@^1.0.0": 102 | version "1.0.0" 103 | resolved "https://registry.yarnpkg.com/@sapphire/cron/-/cron-1.0.0.tgz#55728f3477c5c1d50a877367d5f10cc84d3af03f" 104 | integrity sha512-pKYfpnHiDFknur3yoquA8cqbJZS140y2oqjshwGGmtjiuIbUngQhPHGwdWHNDKDrF6EKbOK06nd2URE+0eUrfQ== 105 | dependencies: 106 | "@sapphire/utilities" "^3.9.3" 107 | 108 | "@sapphire/decorators@^5.0.0": 109 | version "5.0.0" 110 | resolved "https://registry.yarnpkg.com/@sapphire/decorators/-/decorators-5.0.0.tgz#a7437402d613fea8bc09139ed3bc74b51ac6efc8" 111 | integrity sha512-jEHsE79nacjlwbfX2zyRCQ15lEzJLI4gEVZGU9iKmqbXVM0FcwrqZeQoGovIGxq5y0UIymvtYZJXhGkHLBpSdg== 112 | dependencies: 113 | tslib "^2.4.0" 114 | 115 | "@sapphire/discord-utilities@^2.11.6": 116 | version "2.11.6" 117 | resolved "https://registry.yarnpkg.com/@sapphire/discord-utilities/-/discord-utilities-2.11.6.tgz#d9588b79c1e6bbf5ac8c90ec3fe0898cd442203e" 118 | integrity sha512-oFZYl7Prtqy8nD3ymmMpSMRy9Sdhp8E5PSI8n3OoBkHr4eSBvoOcBTxKapvRkHWes+amWeH/uB4UH31x7mG0KQ== 119 | 120 | "@sapphire/discord.js-utilities@^5.0.1": 121 | version "5.0.1" 122 | resolved "https://registry.yarnpkg.com/@sapphire/discord.js-utilities/-/discord.js-utilities-5.0.1.tgz#41f475c7b8964ba0b0e2dc5efc2482706db8780f" 123 | integrity sha512-J3PmnHW0c3Z8VylopSmQzQBunAiBmlMaPYxbeIRZB47xYiMTz/7bcVT9/8z6efprLyM2MdOdJrapoeArodU9CQ== 124 | dependencies: 125 | "@sapphire/discord-utilities" "^2.11.6" 126 | "@sapphire/duration" "^1.0.0" 127 | "@sapphire/utilities" "^3.9.3" 128 | tslib "^2.4.0" 129 | 130 | "@sapphire/duration@^1.0.0": 131 | version "1.0.0" 132 | resolved "https://registry.yarnpkg.com/@sapphire/duration/-/duration-1.0.0.tgz#baec4898ee71099093580db774474b25167150ff" 133 | integrity sha512-B+6nKYnBmIlqqbamcR4iBvbQHz6/Kq2JUVM0rA3lQ+aYUYDdcA1Spt66CKtPWwdTYEtSv0VY6Jv27WCtFNYTUg== 134 | 135 | "@sapphire/fetch@^2.4.1": 136 | version "2.4.1" 137 | resolved "https://registry.yarnpkg.com/@sapphire/fetch/-/fetch-2.4.1.tgz#71bb53602ccf9baf15d5921980288b19d7d704e0" 138 | integrity sha512-jKy1RCkuz2mIjsRZLVLUz9pbmDVZiFst3eVqJoDD/ay3u9NP054DYsRSE08q3EsZXHXte2dFIzVyiwL+iLeRNA== 139 | dependencies: 140 | cross-fetch "^3.1.5" 141 | 142 | "@sapphire/framework@^3.1.3": 143 | version "3.1.3" 144 | resolved "https://registry.yarnpkg.com/@sapphire/framework/-/framework-3.1.3.tgz#dbeac275642983a80f833770fc6f1e488ae6a0ca" 145 | integrity sha512-YHB6oeY095vrRv8ksW0zm/GSWuw+vDLvU0BzJBTGI0KYQfNq2d6OVCjY0ADxFgQSgC9AxOHj2h2GvGcLET+S4g== 146 | dependencies: 147 | "@discordjs/builders" "^0.16.0" 148 | "@sapphire/discord-utilities" "^2.11.6" 149 | "@sapphire/discord.js-utilities" "^5.0.1" 150 | "@sapphire/lexure" "^1.1.1" 151 | "@sapphire/pieces" "^3.5.2" 152 | "@sapphire/ratelimits" "^2.4.5" 153 | "@sapphire/result" "^2.5.0" 154 | "@sapphire/stopwatch" "^1.5.0" 155 | "@sapphire/utilities" "^3.10.0" 156 | tslib "^2.4.0" 157 | 158 | "@sapphire/lexure@^1.1.1": 159 | version "1.1.1" 160 | resolved "https://registry.yarnpkg.com/@sapphire/lexure/-/lexure-1.1.1.tgz#a6b90d973bccb1a9c7f05f6db1cda6dd12bf6a62" 161 | integrity sha512-VVrUBzyTJ+vxFNsXY5ftPzmkNNuCDb0SZ9/vC9rF1ez2vmsQeeBQwFqiGv542bNCGqcqtOlxj4RgN+6PSCjMCw== 162 | dependencies: 163 | "@sapphire/result" "^2.5.0" 164 | 165 | "@sapphire/pieces@^3.5.2": 166 | version "3.5.2" 167 | resolved "https://registry.yarnpkg.com/@sapphire/pieces/-/pieces-3.5.2.tgz#b5bbcb7ccef2bcb3f1e4ba72d6537e92cf3e6f31" 168 | integrity sha512-B8ghwre5naTIMnJIlqJGhKX6ZTpGqz4oAtBd/ihX0CY69cPtbem3VHfZ8Sf5C+50l3mfe2AU7CfZQn9kLQR2fQ== 169 | dependencies: 170 | "@discordjs/collection" "^1.1.0" 171 | "@sapphire/utilities" "^3.10.0" 172 | tslib "^2.4.0" 173 | 174 | "@sapphire/plugin-api@^4.0.1": 175 | version "4.0.1" 176 | resolved "https://registry.yarnpkg.com/@sapphire/plugin-api/-/plugin-api-4.0.1.tgz#83056bdd20fd6ccebc275ccce3b9c9a293f7107e" 177 | integrity sha512-c+7U8isH97Jm26w8COHJ47nNsyGTJdArjy2cW3kIP5EBJPdp9nkl97pNpkuUFYKIbQ789Sx2zE34+gtTwtdUEA== 178 | dependencies: 179 | "@types/node-fetch" "2.6.2" 180 | "@types/psl" "^1.1.0" 181 | "@types/ws" "^8.5.3" 182 | node-fetch "2.6.7" 183 | psl "^1.9.0" 184 | tslib "^2.4.0" 185 | 186 | "@sapphire/plugin-editable-commands@^2.0.1": 187 | version "2.0.1" 188 | resolved "https://registry.yarnpkg.com/@sapphire/plugin-editable-commands/-/plugin-editable-commands-2.0.1.tgz#aaa7a1758a46a3bc3e45b7d50386d00c80208307" 189 | integrity sha512-uXM2YweVLgZWzZxR0TDRPertnWiR6Yi8kuABudLIJuSN4WtAUUxeE65iUNEGN8rzFnIvRwHTRLRPxgIub0I6VQ== 190 | dependencies: 191 | "@skyra/editable-commands" "^2.1.4" 192 | tslib "^2.4.0" 193 | 194 | "@sapphire/plugin-logger@^3.0.1": 195 | version "3.0.1" 196 | resolved "https://registry.yarnpkg.com/@sapphire/plugin-logger/-/plugin-logger-3.0.1.tgz#4b411eebb4dd49ad03b89dc93f5280aaa8fbf2d0" 197 | integrity sha512-sGAYL16bIe8SrUk8k+HOFGVWppSYi8T0F4T+hVCfYw9eiqTvqy5wPQcrzmd5hkvGINb8Ob8INNEl0In7PxXT6Q== 198 | dependencies: 199 | "@sapphire/timestamp" "^1.0.0" 200 | colorette "^2.0.19" 201 | tslib "^2.4.0" 202 | 203 | "@sapphire/plugin-subcommands@^3.2.2": 204 | version "3.2.2" 205 | resolved "https://registry.yarnpkg.com/@sapphire/plugin-subcommands/-/plugin-subcommands-3.2.2.tgz#3a297fe937667a6d0c48eab7c707b2f1a96507f0" 206 | integrity sha512-tzfF000TRnIIwLghuz6q9fqEFBM9FH5ekhSfBrhWBYBuY1MW4JPgIqHDUHDjZoutwsJN8ZsKAuW8u2HhcxrfrA== 207 | dependencies: 208 | "@sapphire/utilities" "^3.10.0" 209 | tslib "^2.4.0" 210 | 211 | "@sapphire/prettier-config@^1.4.4": 212 | version "1.4.4" 213 | resolved "https://registry.yarnpkg.com/@sapphire/prettier-config/-/prettier-config-1.4.4.tgz#9736a15f13fdb35b4c2712959bd8bdd55abdffc9" 214 | integrity sha512-G0UcXQDcN3cOL0C3EtH3y1N/zatLnuncCHXrzcrfWcTFwSCYo+ukWVupnJMy+cihkcU+yDS7MliM8WF5B7gdRg== 215 | dependencies: 216 | prettier "^2.7.1" 217 | 218 | "@sapphire/ratelimits@^2.4.5": 219 | version "2.4.5" 220 | resolved "https://registry.yarnpkg.com/@sapphire/ratelimits/-/ratelimits-2.4.5.tgz#40049436fcd3694acb8ddaf2eb61ea0963a0f9a0" 221 | integrity sha512-2wqpVPRaPUE+CWStLm6wGLj1uA4Ln/9qbH4Ue/eCHC6/R5lJz0+8nGD1LpiYOcyeVLTHbmwODGeD92obkPej2g== 222 | dependencies: 223 | "@sapphire/timer-manager" "^1.0.0" 224 | 225 | "@sapphire/result@^2.5.0": 226 | version "2.5.0" 227 | resolved "https://registry.yarnpkg.com/@sapphire/result/-/result-2.5.0.tgz#1e658e9b5721d3f0d2bf9ba5ca248750cd1a1a8f" 228 | integrity sha512-MpEUUax8jOGjnB6pwIxCTrVmFRPrJG31ODPoqqjmvzWf9aMUsUuUCI5uB6FmqfKn8p8vpaCJ55K+5bWwwQ2MGg== 229 | 230 | "@sapphire/shapeshift@^3.5.1": 231 | version "3.7.0" 232 | resolved "https://registry.yarnpkg.com/@sapphire/shapeshift/-/shapeshift-3.7.0.tgz#488cf06857be75826292dac451c13eeb0143602d" 233 | integrity sha512-A6vI1zJoxhjWo4grsxpBRBgk96SqSdjLX5WlzKp9H+bJbkM07mvwcbtbVAmUZHbi/OG3HLfiZ1rlw4BhH6tsBQ== 234 | dependencies: 235 | fast-deep-equal "^3.1.3" 236 | lodash.uniqwith "^4.5.0" 237 | 238 | "@sapphire/stopwatch@^1.5.0": 239 | version "1.5.0" 240 | resolved "https://registry.yarnpkg.com/@sapphire/stopwatch/-/stopwatch-1.5.0.tgz#4acf7352f969f0c81d69a838ecbfc8b6026ff660" 241 | integrity sha512-DtyKugdy3JTqm6JnEepTY64fGJAqlusDVrlrzifEgSCfGYCqpvB+SBldkWtDH+z+zLcp+PyaFLq7xpVfkhmvGg== 242 | dependencies: 243 | tslib "^2.4.0" 244 | 245 | "@sapphire/time-utilities@^1.7.8": 246 | version "1.7.8" 247 | resolved "https://registry.yarnpkg.com/@sapphire/time-utilities/-/time-utilities-1.7.8.tgz#b96cf739e58b1a9776f8c84abcb5915b020bf84d" 248 | integrity sha512-T6X/nwCvKhxmNRexgmA3KwLt3Z+xzlErkre4viflx46hHOmNNb3hoIyQtekgHYrabEaHWNbqW4PW7gC3hBc+ag== 249 | dependencies: 250 | "@sapphire/cron" "^1.0.0" 251 | "@sapphire/duration" "^1.0.0" 252 | "@sapphire/timer-manager" "^1.0.0" 253 | "@sapphire/timestamp" "^1.0.0" 254 | 255 | "@sapphire/timer-manager@^1.0.0": 256 | version "1.0.0" 257 | resolved "https://registry.yarnpkg.com/@sapphire/timer-manager/-/timer-manager-1.0.0.tgz#e8ecf15a7042ee611048b4f90fab1399653d3934" 258 | integrity sha512-vxxnv75QPMGKt6IB6nL2xRJfwzcUQ9DBGzJLg6G8eS5O4u7j3IR/yr/GQsa4gIpjw6kQOgn8lUdnSTlpnERTbQ== 259 | 260 | "@sapphire/timestamp@^1.0.0": 261 | version "1.0.0" 262 | resolved "https://registry.yarnpkg.com/@sapphire/timestamp/-/timestamp-1.0.0.tgz#572571e8cfc3515265d719704fb2818135f3ad31" 263 | integrity sha512-80g0xYP4zxsgNizMO0HVf+LcM1mD/jxke4feSytDzw8u1pEPr1APfIz3Ix7JB9VI113p0KjLBMywl+ceaN7jrw== 264 | 265 | "@sapphire/ts-config@^3.3.4": 266 | version "3.3.4" 267 | resolved "https://registry.yarnpkg.com/@sapphire/ts-config/-/ts-config-3.3.4.tgz#dabab6a3c1a862ea753b8d4e67a6ac07e9f5d7a7" 268 | integrity sha512-mWEUxCXh3cHKI7C8HJ049exVTMNaq+A/lJEDfM5ENSQ/OOZHd5DdmXn2jrYqFWbTRCHa0Vp2FAmACWBwePsBtg== 269 | dependencies: 270 | tslib "^2.3.1" 271 | typescript "^4.6.3" 272 | 273 | "@sapphire/type@^2.2.4": 274 | version "2.2.4" 275 | resolved "https://registry.yarnpkg.com/@sapphire/type/-/type-2.2.4.tgz#48008f37bcae403a77f6d22e5992b357f583bcbf" 276 | integrity sha512-H3kRw22kscxtwUsb6oN6iXZj9JOUDXyO0qVid4voLVKHlysmK7RIwflt5G+Jc4EQ+JuVGriKNgi7NRcLDPoTRA== 277 | dependencies: 278 | "@discordjs/node-pre-gyp" "^0.4.2" 279 | nan "^2.15.0" 280 | tslib "^2.4.0" 281 | 282 | "@sapphire/utilities@^3.10.0", "@sapphire/utilities@^3.10.1", "@sapphire/utilities@^3.9.3": 283 | version "3.10.1" 284 | resolved "https://registry.yarnpkg.com/@sapphire/utilities/-/utilities-3.10.1.tgz#472defafae75e027fbac5eb70c3f29f4b1112434" 285 | integrity sha512-nHK27Y+Z0NmK8p9wIlvLcrIgXdaICBYQZ78fgwobBj+2GLNU/4PV9QPLqcJ3io5TleQGTGvuNh1JdpGaa+kD/Q== 286 | 287 | "@skyra/editable-commands@^2.1.4": 288 | version "2.1.4" 289 | resolved "https://registry.yarnpkg.com/@skyra/editable-commands/-/editable-commands-2.1.4.tgz#f1549f1740c1f38707712f6c387f0cfa30732286" 290 | integrity sha512-W/m7GVmPCFKmEc49J4dLP6+TRlbBhXUPkN5KAV4PSzk5JaYLOTl5fgjEzHJOxtLHwiQBd36lrQdsWKxL+N9zBQ== 291 | 292 | "@types/node-fetch@2.6.2", "@types/node-fetch@^2.6.2": 293 | version "2.6.2" 294 | resolved "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.6.2.tgz#d1a9c5fd049d9415dce61571557104dec3ec81da" 295 | integrity sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A== 296 | dependencies: 297 | "@types/node" "*" 298 | form-data "^3.0.0" 299 | 300 | "@types/node@*", "@types/node@^18.8.3": 301 | version "18.8.3" 302 | resolved "https://registry.yarnpkg.com/@types/node/-/node-18.8.3.tgz#ce750ab4017effa51aed6a7230651778d54e327c" 303 | integrity sha512-0os9vz6BpGwxGe9LOhgP/ncvYN5Tx1fNcd2TM3rD/aCGBkysb+ZWpXEocG24h6ZzOi13+VB8HndAQFezsSOw1w== 304 | 305 | "@types/psl@^1.1.0": 306 | version "1.1.0" 307 | resolved "https://registry.yarnpkg.com/@types/psl/-/psl-1.1.0.tgz#390c5df1613b166ce3c3eb9fda4d93dc3eeec7b5" 308 | integrity sha512-HhZnoLAvI2koev3czVPzBNRYvdrzJGLjQbWZhqFmS9Q6a0yumc5qtfSahBGb5g+6qWvA8iiQktqGkwoIXa/BNQ== 309 | 310 | "@types/ws@^8.5.3": 311 | version "8.5.3" 312 | resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.3.tgz#7d25a1ffbecd3c4f2d35068d0b283c037003274d" 313 | integrity sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w== 314 | dependencies: 315 | "@types/node" "*" 316 | 317 | abbrev@1: 318 | version "1.1.1" 319 | resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 320 | integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== 321 | 322 | acorn-jsx@^5.3.2: 323 | version "5.3.2" 324 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 325 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 326 | 327 | acorn@^8.8.0: 328 | version "8.8.0" 329 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.0.tgz#88c0187620435c7f6015803f5539dae05a9dbea8" 330 | integrity sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w== 331 | 332 | agent-base@6: 333 | version "6.0.2" 334 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" 335 | integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== 336 | dependencies: 337 | debug "4" 338 | 339 | aggregate-error@^3.0.0: 340 | version "3.1.0" 341 | resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" 342 | integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== 343 | dependencies: 344 | clean-stack "^2.0.0" 345 | indent-string "^4.0.0" 346 | 347 | ajv@^6.10.0, ajv@^6.12.4: 348 | version "6.12.6" 349 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 350 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 351 | dependencies: 352 | fast-deep-equal "^3.1.1" 353 | fast-json-stable-stringify "^2.0.0" 354 | json-schema-traverse "^0.4.1" 355 | uri-js "^4.2.2" 356 | 357 | ansi-escapes@^4.3.0: 358 | version "4.3.2" 359 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" 360 | integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== 361 | dependencies: 362 | type-fest "^0.21.3" 363 | 364 | ansi-regex@^5.0.1: 365 | version "5.0.1" 366 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 367 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 368 | 369 | ansi-regex@^6.0.1: 370 | version "6.0.1" 371 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" 372 | integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== 373 | 374 | ansi-styles@^3.2.1: 375 | version "3.2.1" 376 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 377 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 378 | dependencies: 379 | color-convert "^1.9.0" 380 | 381 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 382 | version "4.3.0" 383 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 384 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 385 | dependencies: 386 | color-convert "^2.0.1" 387 | 388 | ansi-styles@^6.0.0: 389 | version "6.2.0" 390 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.0.tgz#24b0517e8156e12520f389a8ddf938f337f03143" 391 | integrity sha512-3MWBO/XxbkDtc/qpECaUwDM0DQ++ujBjdjs0ElZvChUoPv/P7GOnl3x+R2RF2My5UJHEW5R87q556MiR8U3PLw== 392 | 393 | "aproba@^1.0.3 || ^2.0.0": 394 | version "2.0.0" 395 | resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" 396 | integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== 397 | 398 | are-we-there-yet@^2.0.0: 399 | version "2.0.0" 400 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz#372e0e7bd279d8e94c653aaa1f67200884bf3e1c" 401 | integrity sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw== 402 | dependencies: 403 | delegates "^1.0.0" 404 | readable-stream "^3.6.0" 405 | 406 | argparse@^2.0.1: 407 | version "2.0.1" 408 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 409 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 410 | 411 | array-union@^2.1.0: 412 | version "2.1.0" 413 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 414 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 415 | 416 | astral-regex@^2.0.0: 417 | version "2.0.0" 418 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" 419 | integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== 420 | 421 | asynckit@^0.4.0: 422 | version "0.4.0" 423 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 424 | integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q== 425 | 426 | balanced-match@^1.0.0: 427 | version "1.0.2" 428 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 429 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 430 | 431 | brace-expansion@^1.1.7: 432 | version "1.1.11" 433 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 434 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 435 | dependencies: 436 | balanced-match "^1.0.0" 437 | concat-map "0.0.1" 438 | 439 | braces@^3.0.2: 440 | version "3.0.2" 441 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 442 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 443 | dependencies: 444 | fill-range "^7.0.1" 445 | 446 | call-bind@^1.0.0, call-bind@^1.0.2: 447 | version "1.0.2" 448 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 449 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 450 | dependencies: 451 | function-bind "^1.1.1" 452 | get-intrinsic "^1.0.2" 453 | 454 | callsites@^3.0.0: 455 | version "3.1.0" 456 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 457 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 458 | 459 | chalk@^2.4.1: 460 | version "2.4.2" 461 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 462 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 463 | dependencies: 464 | ansi-styles "^3.2.1" 465 | escape-string-regexp "^1.0.5" 466 | supports-color "^5.3.0" 467 | 468 | chalk@^4.0.0: 469 | version "4.1.2" 470 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 471 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 472 | dependencies: 473 | ansi-styles "^4.1.0" 474 | supports-color "^7.1.0" 475 | 476 | chownr@^2.0.0: 477 | version "2.0.0" 478 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" 479 | integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== 480 | 481 | clean-stack@^2.0.0: 482 | version "2.2.0" 483 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" 484 | integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== 485 | 486 | cli-cursor@^3.1.0: 487 | version "3.1.0" 488 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" 489 | integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== 490 | dependencies: 491 | restore-cursor "^3.1.0" 492 | 493 | cli-truncate@^2.1.0: 494 | version "2.1.0" 495 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" 496 | integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== 497 | dependencies: 498 | slice-ansi "^3.0.0" 499 | string-width "^4.2.0" 500 | 501 | cli-truncate@^3.1.0: 502 | version "3.1.0" 503 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-3.1.0.tgz#3f23ab12535e3d73e839bb43e73c9de487db1389" 504 | integrity sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA== 505 | dependencies: 506 | slice-ansi "^5.0.0" 507 | string-width "^5.0.0" 508 | 509 | clone@2.x: 510 | version "2.1.2" 511 | resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" 512 | integrity sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w== 513 | 514 | color-convert@^1.9.0: 515 | version "1.9.3" 516 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 517 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 518 | dependencies: 519 | color-name "1.1.3" 520 | 521 | color-convert@^2.0.1: 522 | version "2.0.1" 523 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 524 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 525 | dependencies: 526 | color-name "~1.1.4" 527 | 528 | color-name@1.1.3: 529 | version "1.1.3" 530 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 531 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== 532 | 533 | color-name@~1.1.4: 534 | version "1.1.4" 535 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 536 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 537 | 538 | color-support@^1.1.2: 539 | version "1.1.3" 540 | resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" 541 | integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== 542 | 543 | colorette@^2.0.16, colorette@^2.0.17, colorette@^2.0.19: 544 | version "2.0.19" 545 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.19.tgz#cdf044f47ad41a0f4b56b3a0d5b4e6e1a2d5a798" 546 | integrity sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ== 547 | 548 | combined-stream@^1.0.8: 549 | version "1.0.8" 550 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 551 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== 552 | dependencies: 553 | delayed-stream "~1.0.0" 554 | 555 | commander@^9.3.0: 556 | version "9.4.1" 557 | resolved "https://registry.yarnpkg.com/commander/-/commander-9.4.1.tgz#d1dd8f2ce6faf93147295c0df13c7c21141cfbdd" 558 | integrity sha512-5EEkTNyHNGFPD2H+c/dXXfQZYa/scCKasxWcXJaWnNJ99pnQN9Vnmqow+p+PlFPE63Q6mThaZws1T+HxfpgtPw== 559 | 560 | concat-map@0.0.1: 561 | version "0.0.1" 562 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 563 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 564 | 565 | console-control-strings@^1.0.0, console-control-strings@^1.1.0: 566 | version "1.1.0" 567 | resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" 568 | integrity sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ== 569 | 570 | cross-fetch@^3.1.5: 571 | version "3.1.5" 572 | resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" 573 | integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== 574 | dependencies: 575 | node-fetch "2.6.7" 576 | 577 | cross-spawn@^6.0.5: 578 | version "6.0.5" 579 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 580 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 581 | dependencies: 582 | nice-try "^1.0.4" 583 | path-key "^2.0.1" 584 | semver "^5.5.0" 585 | shebang-command "^1.2.0" 586 | which "^1.2.9" 587 | 588 | cross-spawn@^7.0.2, cross-spawn@^7.0.3: 589 | version "7.0.3" 590 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 591 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 592 | dependencies: 593 | path-key "^3.1.0" 594 | shebang-command "^2.0.0" 595 | which "^2.0.1" 596 | 597 | debug@4, debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: 598 | version "4.3.4" 599 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 600 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 601 | dependencies: 602 | ms "2.1.2" 603 | 604 | deep-is@^0.1.3: 605 | version "0.1.4" 606 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 607 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 608 | 609 | define-properties@^1.1.3, define-properties@^1.1.4: 610 | version "1.1.4" 611 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" 612 | integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== 613 | dependencies: 614 | has-property-descriptors "^1.0.0" 615 | object-keys "^1.1.1" 616 | 617 | delayed-stream@~1.0.0: 618 | version "1.0.0" 619 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 620 | integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ== 621 | 622 | delegates@^1.0.0: 623 | version "1.0.0" 624 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 625 | integrity sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ== 626 | 627 | detect-libc@^2.0.0: 628 | version "2.0.1" 629 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.1.tgz#e1897aa88fa6ad197862937fbc0441ef352ee0cd" 630 | integrity sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w== 631 | 632 | dir-glob@^3.0.1: 633 | version "3.0.1" 634 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 635 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 636 | dependencies: 637 | path-type "^4.0.0" 638 | 639 | discord-api-types@^0.33.5: 640 | version "0.33.5" 641 | resolved "https://registry.yarnpkg.com/discord-api-types/-/discord-api-types-0.33.5.tgz#6548b70520f7b944c60984dca4ab58654d664a12" 642 | integrity sha512-dvO5M52v7m7Dy96+XUnzXNsQ/0npsYpU6dL205kAtEDueswoz3aU3bh1UMoK4cQmcGtB1YRyLKqp+DXi05lzFg== 643 | 644 | discord-api-types@^0.36.2: 645 | version "0.36.3" 646 | resolved "https://registry.yarnpkg.com/discord-api-types/-/discord-api-types-0.36.3.tgz#a931b7e57473a5c971d6937fa5f392eb30047579" 647 | integrity sha512-bz/NDyG0KBo/tY14vSkrwQ/n3HKPf87a0WFW/1M9+tXYK+vp5Z5EksawfCWo2zkAc6o7CClc0eff1Pjrqznlwg== 648 | 649 | discord.js@^13.11.0: 650 | version "13.11.0" 651 | resolved "https://registry.yarnpkg.com/discord.js/-/discord.js-13.11.0.tgz#ccfa63e31c0a4281562b79992c1379a215efc3eb" 652 | integrity sha512-/vA6oQtKilFlwVZSIFipPeWg5kU6gjUOffuaYWtDDJwIXKqiThNdymLkmQhnf8Ztlt+3vKsoqXENrgpQdaNCVQ== 653 | dependencies: 654 | "@discordjs/builders" "^0.16.0" 655 | "@discordjs/collection" "^0.7.0" 656 | "@sapphire/async-queue" "^1.5.0" 657 | "@types/node-fetch" "^2.6.2" 658 | "@types/ws" "^8.5.3" 659 | discord-api-types "^0.33.5" 660 | form-data "^4.0.0" 661 | node-fetch "^2.6.7" 662 | ws "^8.8.1" 663 | 664 | doctrine@^3.0.0: 665 | version "3.0.0" 666 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 667 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 668 | dependencies: 669 | esutils "^2.0.2" 670 | 671 | dotenv-cra@^3.0.2: 672 | version "3.0.2" 673 | resolved "https://registry.yarnpkg.com/dotenv-cra/-/dotenv-cra-3.0.2.tgz#ce1565aaa0bb21402f9e7f6f44c8f751ae35219c" 674 | integrity sha512-4SJ1L6tAzAmRgBw7k6B7XaP8ARV8nFvQb2pfLC8Tiudz27auSgkzPPvtfLmmSg6jzhHtsQ6c/USNlqLfWE7mfg== 675 | dependencies: 676 | dotenv "^10.0.0" 677 | dotenv-expand "^5.1.0" 678 | 679 | dotenv-expand@^5.1.0: 680 | version "5.1.0" 681 | resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-5.1.0.tgz#3fbaf020bfd794884072ea26b1e9791d45a629f0" 682 | integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA== 683 | 684 | dotenv@^10.0.0: 685 | version "10.0.0" 686 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-10.0.0.tgz#3d4227b8fb95f81096cdd2b66653fb2c7085ba81" 687 | integrity sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q== 688 | 689 | duplexer@~0.1.1: 690 | version "0.1.2" 691 | resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.2.tgz#3abe43aef3835f8ae077d136ddce0f276b0400e6" 692 | integrity sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg== 693 | 694 | eastasianwidth@^0.2.0: 695 | version "0.2.0" 696 | resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" 697 | integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== 698 | 699 | emoji-regex@^8.0.0: 700 | version "8.0.0" 701 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 702 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 703 | 704 | emoji-regex@^9.2.2: 705 | version "9.2.2" 706 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" 707 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== 708 | 709 | error-ex@^1.3.1: 710 | version "1.3.2" 711 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 712 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 713 | dependencies: 714 | is-arrayish "^0.2.1" 715 | 716 | es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.5: 717 | version "1.20.4" 718 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.4.tgz#1d103f9f8d78d4cf0713edcd6d0ed1a46eed5861" 719 | integrity sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA== 720 | dependencies: 721 | call-bind "^1.0.2" 722 | es-to-primitive "^1.2.1" 723 | function-bind "^1.1.1" 724 | function.prototype.name "^1.1.5" 725 | get-intrinsic "^1.1.3" 726 | get-symbol-description "^1.0.0" 727 | has "^1.0.3" 728 | has-property-descriptors "^1.0.0" 729 | has-symbols "^1.0.3" 730 | internal-slot "^1.0.3" 731 | is-callable "^1.2.7" 732 | is-negative-zero "^2.0.2" 733 | is-regex "^1.1.4" 734 | is-shared-array-buffer "^1.0.2" 735 | is-string "^1.0.7" 736 | is-weakref "^1.0.2" 737 | object-inspect "^1.12.2" 738 | object-keys "^1.1.1" 739 | object.assign "^4.1.4" 740 | regexp.prototype.flags "^1.4.3" 741 | safe-regex-test "^1.0.0" 742 | string.prototype.trimend "^1.0.5" 743 | string.prototype.trimstart "^1.0.5" 744 | unbox-primitive "^1.0.2" 745 | 746 | es-to-primitive@^1.2.1: 747 | version "1.2.1" 748 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 749 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 750 | dependencies: 751 | is-callable "^1.1.4" 752 | is-date-object "^1.0.1" 753 | is-symbol "^1.0.2" 754 | 755 | escape-string-regexp@^1.0.5: 756 | version "1.0.5" 757 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 758 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== 759 | 760 | escape-string-regexp@^4.0.0: 761 | version "4.0.0" 762 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 763 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 764 | 765 | eslint-scope@^7.1.1: 766 | version "7.1.1" 767 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" 768 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== 769 | dependencies: 770 | esrecurse "^4.3.0" 771 | estraverse "^5.2.0" 772 | 773 | eslint-utils@^3.0.0: 774 | version "3.0.0" 775 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" 776 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== 777 | dependencies: 778 | eslint-visitor-keys "^2.0.0" 779 | 780 | eslint-visitor-keys@^2.0.0: 781 | version "2.1.0" 782 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" 783 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 784 | 785 | eslint-visitor-keys@^3.3.0: 786 | version "3.3.0" 787 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" 788 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== 789 | 790 | eslint@^8.25.0: 791 | version "8.25.0" 792 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.25.0.tgz#00eb962f50962165d0c4ee3327708315eaa8058b" 793 | integrity sha512-DVlJOZ4Pn50zcKW5bYH7GQK/9MsoQG2d5eDH0ebEkE8PbgzTTmtt/VTH9GGJ4BfeZCpBLqFfvsjX35UacUL83A== 794 | dependencies: 795 | "@eslint/eslintrc" "^1.3.3" 796 | "@humanwhocodes/config-array" "^0.10.5" 797 | "@humanwhocodes/module-importer" "^1.0.1" 798 | ajv "^6.10.0" 799 | chalk "^4.0.0" 800 | cross-spawn "^7.0.2" 801 | debug "^4.3.2" 802 | doctrine "^3.0.0" 803 | escape-string-regexp "^4.0.0" 804 | eslint-scope "^7.1.1" 805 | eslint-utils "^3.0.0" 806 | eslint-visitor-keys "^3.3.0" 807 | espree "^9.4.0" 808 | esquery "^1.4.0" 809 | esutils "^2.0.2" 810 | fast-deep-equal "^3.1.3" 811 | file-entry-cache "^6.0.1" 812 | find-up "^5.0.0" 813 | glob-parent "^6.0.1" 814 | globals "^13.15.0" 815 | globby "^11.1.0" 816 | grapheme-splitter "^1.0.4" 817 | ignore "^5.2.0" 818 | import-fresh "^3.0.0" 819 | imurmurhash "^0.1.4" 820 | is-glob "^4.0.0" 821 | js-sdsl "^4.1.4" 822 | js-yaml "^4.1.0" 823 | json-stable-stringify-without-jsonify "^1.0.1" 824 | levn "^0.4.1" 825 | lodash.merge "^4.6.2" 826 | minimatch "^3.1.2" 827 | natural-compare "^1.4.0" 828 | optionator "^0.9.1" 829 | regexpp "^3.2.0" 830 | strip-ansi "^6.0.1" 831 | strip-json-comments "^3.1.0" 832 | text-table "^0.2.0" 833 | 834 | espree@^9.4.0: 835 | version "9.4.0" 836 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.0.tgz#cd4bc3d6e9336c433265fc0aa016fc1aaf182f8a" 837 | integrity sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw== 838 | dependencies: 839 | acorn "^8.8.0" 840 | acorn-jsx "^5.3.2" 841 | eslint-visitor-keys "^3.3.0" 842 | 843 | esquery@^1.4.0: 844 | version "1.4.0" 845 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" 846 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== 847 | dependencies: 848 | estraverse "^5.1.0" 849 | 850 | esrecurse@^4.3.0: 851 | version "4.3.0" 852 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 853 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 854 | dependencies: 855 | estraverse "^5.2.0" 856 | 857 | estraverse@^5.1.0, estraverse@^5.2.0: 858 | version "5.3.0" 859 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 860 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 861 | 862 | esutils@^2.0.2: 863 | version "2.0.3" 864 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 865 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 866 | 867 | event-stream@=3.3.4: 868 | version "3.3.4" 869 | resolved "https://registry.yarnpkg.com/event-stream/-/event-stream-3.3.4.tgz#4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571" 870 | integrity sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g== 871 | dependencies: 872 | duplexer "~0.1.1" 873 | from "~0" 874 | map-stream "~0.1.0" 875 | pause-stream "0.0.11" 876 | split "0.3" 877 | stream-combiner "~0.0.4" 878 | through "~2.3.1" 879 | 880 | execa@^6.1.0: 881 | version "6.1.0" 882 | resolved "https://registry.yarnpkg.com/execa/-/execa-6.1.0.tgz#cea16dee211ff011246556388effa0818394fb20" 883 | integrity sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA== 884 | dependencies: 885 | cross-spawn "^7.0.3" 886 | get-stream "^6.0.1" 887 | human-signals "^3.0.1" 888 | is-stream "^3.0.0" 889 | merge-stream "^2.0.0" 890 | npm-run-path "^5.1.0" 891 | onetime "^6.0.0" 892 | signal-exit "^3.0.7" 893 | strip-final-newline "^3.0.0" 894 | 895 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 896 | version "3.1.3" 897 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 898 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 899 | 900 | fast-glob@^3.2.9: 901 | version "3.2.12" 902 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" 903 | integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== 904 | dependencies: 905 | "@nodelib/fs.stat" "^2.0.2" 906 | "@nodelib/fs.walk" "^1.2.3" 907 | glob-parent "^5.1.2" 908 | merge2 "^1.3.0" 909 | micromatch "^4.0.4" 910 | 911 | fast-json-stable-stringify@^2.0.0: 912 | version "2.1.0" 913 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 914 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 915 | 916 | fast-levenshtein@^2.0.6: 917 | version "2.0.6" 918 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 919 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 920 | 921 | fastq@^1.6.0: 922 | version "1.13.0" 923 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" 924 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== 925 | dependencies: 926 | reusify "^1.0.4" 927 | 928 | file-entry-cache@^6.0.1: 929 | version "6.0.1" 930 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 931 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 932 | dependencies: 933 | flat-cache "^3.0.4" 934 | 935 | fill-range@^7.0.1: 936 | version "7.0.1" 937 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 938 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 939 | dependencies: 940 | to-regex-range "^5.0.1" 941 | 942 | find-up@^5.0.0: 943 | version "5.0.0" 944 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 945 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 946 | dependencies: 947 | locate-path "^6.0.0" 948 | path-exists "^4.0.0" 949 | 950 | flat-cache@^3.0.4: 951 | version "3.0.4" 952 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 953 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 954 | dependencies: 955 | flatted "^3.1.0" 956 | rimraf "^3.0.2" 957 | 958 | flatted@^3.1.0: 959 | version "3.2.7" 960 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" 961 | integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== 962 | 963 | form-data@^3.0.0: 964 | version "3.0.1" 965 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" 966 | integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== 967 | dependencies: 968 | asynckit "^0.4.0" 969 | combined-stream "^1.0.8" 970 | mime-types "^2.1.12" 971 | 972 | form-data@^4.0.0: 973 | version "4.0.0" 974 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.0.tgz#93919daeaf361ee529584b9b31664dc12c9fa452" 975 | integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww== 976 | dependencies: 977 | asynckit "^0.4.0" 978 | combined-stream "^1.0.8" 979 | mime-types "^2.1.12" 980 | 981 | from@~0: 982 | version "0.1.7" 983 | resolved "https://registry.yarnpkg.com/from/-/from-0.1.7.tgz#83c60afc58b9c56997007ed1a768b3ab303a44fe" 984 | integrity sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g== 985 | 986 | fs-minipass@^2.0.0: 987 | version "2.1.0" 988 | resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" 989 | integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== 990 | dependencies: 991 | minipass "^3.0.0" 992 | 993 | fs.realpath@^1.0.0: 994 | version "1.0.0" 995 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 996 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 997 | 998 | function-bind@^1.1.1: 999 | version "1.1.1" 1000 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1001 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1002 | 1003 | function.prototype.name@^1.1.5: 1004 | version "1.1.5" 1005 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" 1006 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== 1007 | dependencies: 1008 | call-bind "^1.0.2" 1009 | define-properties "^1.1.3" 1010 | es-abstract "^1.19.0" 1011 | functions-have-names "^1.2.2" 1012 | 1013 | functions-have-names@^1.2.2: 1014 | version "1.2.3" 1015 | resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" 1016 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== 1017 | 1018 | fuse.js@^6.6.2: 1019 | version "6.6.2" 1020 | resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-6.6.2.tgz#fe463fed4b98c0226ac3da2856a415576dc9a111" 1021 | integrity sha512-cJaJkxCCxC8qIIcPBF9yGxY0W/tVZS3uEISDxhYIdtk8OL93pe+6Zj7LjCqVV4dzbqcriOZ+kQ/NE4RXZHsIGA== 1022 | 1023 | gauge@^3.0.0: 1024 | version "3.0.2" 1025 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-3.0.2.tgz#03bf4441c044383908bcfa0656ad91803259b395" 1026 | integrity sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q== 1027 | dependencies: 1028 | aproba "^1.0.3 || ^2.0.0" 1029 | color-support "^1.1.2" 1030 | console-control-strings "^1.0.0" 1031 | has-unicode "^2.0.1" 1032 | object-assign "^4.1.1" 1033 | signal-exit "^3.0.0" 1034 | string-width "^4.2.3" 1035 | strip-ansi "^6.0.1" 1036 | wide-align "^1.1.2" 1037 | 1038 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3: 1039 | version "1.1.3" 1040 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" 1041 | integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== 1042 | dependencies: 1043 | function-bind "^1.1.1" 1044 | has "^1.0.3" 1045 | has-symbols "^1.0.3" 1046 | 1047 | get-stream@^6.0.1: 1048 | version "6.0.1" 1049 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" 1050 | integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== 1051 | 1052 | get-symbol-description@^1.0.0: 1053 | version "1.0.0" 1054 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" 1055 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 1056 | dependencies: 1057 | call-bind "^1.0.2" 1058 | get-intrinsic "^1.1.1" 1059 | 1060 | glob-parent@^5.1.2: 1061 | version "5.1.2" 1062 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 1063 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1064 | dependencies: 1065 | is-glob "^4.0.1" 1066 | 1067 | glob-parent@^6.0.1: 1068 | version "6.0.2" 1069 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 1070 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 1071 | dependencies: 1072 | is-glob "^4.0.3" 1073 | 1074 | glob@^7.1.3: 1075 | version "7.2.3" 1076 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 1077 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 1078 | dependencies: 1079 | fs.realpath "^1.0.0" 1080 | inflight "^1.0.4" 1081 | inherits "2" 1082 | minimatch "^3.1.1" 1083 | once "^1.3.0" 1084 | path-is-absolute "^1.0.0" 1085 | 1086 | globals@^13.15.0: 1087 | version "13.17.0" 1088 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4" 1089 | integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw== 1090 | dependencies: 1091 | type-fest "^0.20.2" 1092 | 1093 | globby@^11.1.0: 1094 | version "11.1.0" 1095 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" 1096 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 1097 | dependencies: 1098 | array-union "^2.1.0" 1099 | dir-glob "^3.0.1" 1100 | fast-glob "^3.2.9" 1101 | ignore "^5.2.0" 1102 | merge2 "^1.4.1" 1103 | slash "^3.0.0" 1104 | 1105 | graceful-fs@^4.1.2: 1106 | version "4.2.10" 1107 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" 1108 | integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== 1109 | 1110 | grapheme-splitter@^1.0.4: 1111 | version "1.0.4" 1112 | resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" 1113 | integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== 1114 | 1115 | has-bigints@^1.0.1, has-bigints@^1.0.2: 1116 | version "1.0.2" 1117 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" 1118 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== 1119 | 1120 | has-flag@^3.0.0: 1121 | version "3.0.0" 1122 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1123 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== 1124 | 1125 | has-flag@^4.0.0: 1126 | version "4.0.0" 1127 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1128 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1129 | 1130 | has-property-descriptors@^1.0.0: 1131 | version "1.0.0" 1132 | resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" 1133 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 1134 | dependencies: 1135 | get-intrinsic "^1.1.1" 1136 | 1137 | has-symbols@^1.0.2, has-symbols@^1.0.3: 1138 | version "1.0.3" 1139 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 1140 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1141 | 1142 | has-tostringtag@^1.0.0: 1143 | version "1.0.0" 1144 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" 1145 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 1146 | dependencies: 1147 | has-symbols "^1.0.2" 1148 | 1149 | has-unicode@^2.0.1: 1150 | version "2.0.1" 1151 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1152 | integrity sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ== 1153 | 1154 | has@^1.0.3: 1155 | version "1.0.3" 1156 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1157 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1158 | dependencies: 1159 | function-bind "^1.1.1" 1160 | 1161 | hosted-git-info@^2.1.4: 1162 | version "2.8.9" 1163 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" 1164 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== 1165 | 1166 | https-proxy-agent@^5.0.0: 1167 | version "5.0.1" 1168 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" 1169 | integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== 1170 | dependencies: 1171 | agent-base "6" 1172 | debug "4" 1173 | 1174 | human-signals@^3.0.1: 1175 | version "3.0.1" 1176 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-3.0.1.tgz#c740920859dafa50e5a3222da9d3bf4bb0e5eef5" 1177 | integrity sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ== 1178 | 1179 | husky@^8.0.1: 1180 | version "8.0.1" 1181 | resolved "https://registry.yarnpkg.com/husky/-/husky-8.0.1.tgz#511cb3e57de3e3190514ae49ed50f6bc3f50b3e9" 1182 | integrity sha512-xs7/chUH/CKdOCs7Zy0Aev9e/dKOMZf3K1Az1nar3tzlv0jfqnYtu235bstsWTmXOR0EfINrPa97yy4Lz6RiKw== 1183 | 1184 | ignore@^5.2.0: 1185 | version "5.2.0" 1186 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" 1187 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== 1188 | 1189 | import-fresh@^3.0.0, import-fresh@^3.2.1: 1190 | version "3.3.0" 1191 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 1192 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1193 | dependencies: 1194 | parent-module "^1.0.0" 1195 | resolve-from "^4.0.0" 1196 | 1197 | imurmurhash@^0.1.4: 1198 | version "0.1.4" 1199 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1200 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1201 | 1202 | indent-string@^4.0.0: 1203 | version "4.0.0" 1204 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" 1205 | integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== 1206 | 1207 | inflight@^1.0.4: 1208 | version "1.0.6" 1209 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1210 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1211 | dependencies: 1212 | once "^1.3.0" 1213 | wrappy "1" 1214 | 1215 | inherits@2, inherits@^2.0.3: 1216 | version "2.0.4" 1217 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1218 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1219 | 1220 | internal-slot@^1.0.3: 1221 | version "1.0.3" 1222 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" 1223 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== 1224 | dependencies: 1225 | get-intrinsic "^1.1.0" 1226 | has "^1.0.3" 1227 | side-channel "^1.0.4" 1228 | 1229 | is-arrayish@^0.2.1: 1230 | version "0.2.1" 1231 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1232 | integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== 1233 | 1234 | is-bigint@^1.0.1: 1235 | version "1.0.4" 1236 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" 1237 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 1238 | dependencies: 1239 | has-bigints "^1.0.1" 1240 | 1241 | is-boolean-object@^1.1.0: 1242 | version "1.1.2" 1243 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" 1244 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 1245 | dependencies: 1246 | call-bind "^1.0.2" 1247 | has-tostringtag "^1.0.0" 1248 | 1249 | is-callable@^1.1.4, is-callable@^1.2.7: 1250 | version "1.2.7" 1251 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" 1252 | integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== 1253 | 1254 | is-core-module@^2.9.0: 1255 | version "2.10.0" 1256 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.10.0.tgz#9012ede0a91c69587e647514e1d5277019e728ed" 1257 | integrity sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg== 1258 | dependencies: 1259 | has "^1.0.3" 1260 | 1261 | is-date-object@^1.0.1: 1262 | version "1.0.5" 1263 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" 1264 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 1265 | dependencies: 1266 | has-tostringtag "^1.0.0" 1267 | 1268 | is-extglob@^2.1.1: 1269 | version "2.1.1" 1270 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1271 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1272 | 1273 | is-fullwidth-code-point@^3.0.0: 1274 | version "3.0.0" 1275 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1276 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1277 | 1278 | is-fullwidth-code-point@^4.0.0: 1279 | version "4.0.0" 1280 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz#fae3167c729e7463f8461ce512b080a49268aa88" 1281 | integrity sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ== 1282 | 1283 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: 1284 | version "4.0.3" 1285 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1286 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1287 | dependencies: 1288 | is-extglob "^2.1.1" 1289 | 1290 | is-negative-zero@^2.0.2: 1291 | version "2.0.2" 1292 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" 1293 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 1294 | 1295 | is-number-object@^1.0.4: 1296 | version "1.0.7" 1297 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" 1298 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== 1299 | dependencies: 1300 | has-tostringtag "^1.0.0" 1301 | 1302 | is-number@^7.0.0: 1303 | version "7.0.0" 1304 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1305 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1306 | 1307 | is-regex@^1.1.4: 1308 | version "1.1.4" 1309 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" 1310 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 1311 | dependencies: 1312 | call-bind "^1.0.2" 1313 | has-tostringtag "^1.0.0" 1314 | 1315 | is-shared-array-buffer@^1.0.2: 1316 | version "1.0.2" 1317 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" 1318 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 1319 | dependencies: 1320 | call-bind "^1.0.2" 1321 | 1322 | is-stream@^3.0.0: 1323 | version "3.0.0" 1324 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" 1325 | integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== 1326 | 1327 | is-string@^1.0.5, is-string@^1.0.7: 1328 | version "1.0.7" 1329 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" 1330 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 1331 | dependencies: 1332 | has-tostringtag "^1.0.0" 1333 | 1334 | is-symbol@^1.0.2, is-symbol@^1.0.3: 1335 | version "1.0.4" 1336 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" 1337 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 1338 | dependencies: 1339 | has-symbols "^1.0.2" 1340 | 1341 | is-weakref@^1.0.2: 1342 | version "1.0.2" 1343 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" 1344 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 1345 | dependencies: 1346 | call-bind "^1.0.2" 1347 | 1348 | isexe@^2.0.0: 1349 | version "2.0.0" 1350 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1351 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 1352 | 1353 | js-sdsl@^4.1.4: 1354 | version "4.1.5" 1355 | resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.1.5.tgz#1ff1645e6b4d1b028cd3f862db88c9d887f26e2a" 1356 | integrity sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q== 1357 | 1358 | js-yaml@^4.1.0: 1359 | version "4.1.0" 1360 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 1361 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1362 | dependencies: 1363 | argparse "^2.0.1" 1364 | 1365 | json-parse-better-errors@^1.0.1: 1366 | version "1.0.2" 1367 | resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" 1368 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 1369 | 1370 | json-schema-traverse@^0.4.1: 1371 | version "0.4.1" 1372 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1373 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1374 | 1375 | json-stable-stringify-without-jsonify@^1.0.1: 1376 | version "1.0.1" 1377 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1378 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 1379 | 1380 | levn@^0.4.1: 1381 | version "0.4.1" 1382 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1383 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1384 | dependencies: 1385 | prelude-ls "^1.2.1" 1386 | type-check "~0.4.0" 1387 | 1388 | lilconfig@2.0.5: 1389 | version "2.0.5" 1390 | resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.5.tgz#19e57fd06ccc3848fd1891655b5a447092225b25" 1391 | integrity sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg== 1392 | 1393 | lint-staged@^13.0.3: 1394 | version "13.0.3" 1395 | resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-13.0.3.tgz#d7cdf03a3830b327a2b63c6aec953d71d9dc48c6" 1396 | integrity sha512-9hmrwSCFroTSYLjflGI8Uk+GWAwMB4OlpU4bMJEAT5d/llQwtYKoim4bLOyLCuWFAhWEupE0vkIFqtw/WIsPug== 1397 | dependencies: 1398 | cli-truncate "^3.1.0" 1399 | colorette "^2.0.17" 1400 | commander "^9.3.0" 1401 | debug "^4.3.4" 1402 | execa "^6.1.0" 1403 | lilconfig "2.0.5" 1404 | listr2 "^4.0.5" 1405 | micromatch "^4.0.5" 1406 | normalize-path "^3.0.0" 1407 | object-inspect "^1.12.2" 1408 | pidtree "^0.6.0" 1409 | string-argv "^0.3.1" 1410 | yaml "^2.1.1" 1411 | 1412 | listr2@^4.0.5: 1413 | version "4.0.5" 1414 | resolved "https://registry.yarnpkg.com/listr2/-/listr2-4.0.5.tgz#9dcc50221583e8b4c71c43f9c7dfd0ef546b75d5" 1415 | integrity sha512-juGHV1doQdpNT3GSTs9IUN43QJb7KHdF9uqg7Vufs/tG9VTzpFphqF4pm/ICdAABGQxsyNn9CiYA3StkI6jpwA== 1416 | dependencies: 1417 | cli-truncate "^2.1.0" 1418 | colorette "^2.0.16" 1419 | log-update "^4.0.0" 1420 | p-map "^4.0.0" 1421 | rfdc "^1.3.0" 1422 | rxjs "^7.5.5" 1423 | through "^2.3.8" 1424 | wrap-ansi "^7.0.0" 1425 | 1426 | load-json-file@^4.0.0: 1427 | version "4.0.0" 1428 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" 1429 | integrity sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw== 1430 | dependencies: 1431 | graceful-fs "^4.1.2" 1432 | parse-json "^4.0.0" 1433 | pify "^3.0.0" 1434 | strip-bom "^3.0.0" 1435 | 1436 | locate-path@^6.0.0: 1437 | version "6.0.0" 1438 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 1439 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1440 | dependencies: 1441 | p-locate "^5.0.0" 1442 | 1443 | lodash.merge@^4.6.2: 1444 | version "4.6.2" 1445 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 1446 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1447 | 1448 | lodash.uniqwith@^4.5.0: 1449 | version "4.5.0" 1450 | resolved "https://registry.yarnpkg.com/lodash.uniqwith/-/lodash.uniqwith-4.5.0.tgz#7a0cbf65f43b5928625a9d4d0dc54b18cadc7ef3" 1451 | integrity sha512-7lYL8bLopMoy4CTICbxygAUq6CdRJ36vFc80DucPueUee+d5NBRxz3FdT9Pes/HEx5mPoT9jwnsEJWz1N7uq7Q== 1452 | 1453 | log-update@^4.0.0: 1454 | version "4.0.0" 1455 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1" 1456 | integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== 1457 | dependencies: 1458 | ansi-escapes "^4.3.0" 1459 | cli-cursor "^3.1.0" 1460 | slice-ansi "^4.0.0" 1461 | wrap-ansi "^6.2.0" 1462 | 1463 | lru-cache@^6.0.0: 1464 | version "6.0.0" 1465 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1466 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1467 | dependencies: 1468 | yallist "^4.0.0" 1469 | 1470 | make-dir@^3.1.0: 1471 | version "3.1.0" 1472 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 1473 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 1474 | dependencies: 1475 | semver "^6.0.0" 1476 | 1477 | map-stream@~0.1.0: 1478 | version "0.1.0" 1479 | resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194" 1480 | integrity sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g== 1481 | 1482 | memorystream@^0.3.1: 1483 | version "0.3.1" 1484 | resolved "https://registry.yarnpkg.com/memorystream/-/memorystream-0.3.1.tgz#86d7090b30ce455d63fbae12dda51a47ddcaf9b2" 1485 | integrity sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw== 1486 | 1487 | merge-stream@^2.0.0: 1488 | version "2.0.0" 1489 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 1490 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 1491 | 1492 | merge2@^1.3.0, merge2@^1.4.1: 1493 | version "1.4.1" 1494 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 1495 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1496 | 1497 | micromatch@^4.0.4, micromatch@^4.0.5: 1498 | version "4.0.5" 1499 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" 1500 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 1501 | dependencies: 1502 | braces "^3.0.2" 1503 | picomatch "^2.3.1" 1504 | 1505 | mime-db@1.52.0: 1506 | version "1.52.0" 1507 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" 1508 | integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== 1509 | 1510 | mime-types@^2.1.12: 1511 | version "2.1.35" 1512 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" 1513 | integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== 1514 | dependencies: 1515 | mime-db "1.52.0" 1516 | 1517 | mimic-fn@^2.1.0: 1518 | version "2.1.0" 1519 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 1520 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 1521 | 1522 | mimic-fn@^4.0.0: 1523 | version "4.0.0" 1524 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" 1525 | integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== 1526 | 1527 | minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: 1528 | version "3.1.2" 1529 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1530 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1531 | dependencies: 1532 | brace-expansion "^1.1.7" 1533 | 1534 | minipass@^3.0.0: 1535 | version "3.3.4" 1536 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.4.tgz#ca99f95dd77c43c7a76bf51e6d200025eee0ffae" 1537 | integrity sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw== 1538 | dependencies: 1539 | yallist "^4.0.0" 1540 | 1541 | minizlib@^2.1.1: 1542 | version "2.1.2" 1543 | resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" 1544 | integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== 1545 | dependencies: 1546 | minipass "^3.0.0" 1547 | yallist "^4.0.0" 1548 | 1549 | mkdirp@^1.0.3: 1550 | version "1.0.4" 1551 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" 1552 | integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== 1553 | 1554 | ms@2.1.2: 1555 | version "2.1.2" 1556 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1557 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1558 | 1559 | nan@^2.15.0: 1560 | version "2.16.0" 1561 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.16.0.tgz#664f43e45460fb98faf00edca0bb0d7b8dce7916" 1562 | integrity sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA== 1563 | 1564 | natural-compare@^1.4.0: 1565 | version "1.4.0" 1566 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1567 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1568 | 1569 | nice-try@^1.0.4: 1570 | version "1.0.5" 1571 | resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 1572 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 1573 | 1574 | node-cache@^5.1.2: 1575 | version "5.1.2" 1576 | resolved "https://registry.yarnpkg.com/node-cache/-/node-cache-5.1.2.tgz#f264dc2ccad0a780e76253a694e9fd0ed19c398d" 1577 | integrity sha512-t1QzWwnk4sjLWaQAS8CHgOJ+RAfmHpxFWmc36IWTiWHQfs0w5JDMBS1b1ZxQteo0vVVuWJvIUKHDkkeK7vIGCg== 1578 | dependencies: 1579 | clone "2.x" 1580 | 1581 | node-cleanup@^2.1.2: 1582 | version "2.1.2" 1583 | resolved "https://registry.yarnpkg.com/node-cleanup/-/node-cleanup-2.1.2.tgz#7ac19abd297e09a7f72a71545d951b517e4dde2c" 1584 | integrity sha512-qN8v/s2PAJwGUtr1/hYTpNKlD6Y9rc4p8KSmJXyGdYGZsDGKXrGThikLFP9OCHFeLeEpQzPwiAtdIvBLqm//Hw== 1585 | 1586 | node-fetch@2.6.7, node-fetch@^2.6.7: 1587 | version "2.6.7" 1588 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" 1589 | integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== 1590 | dependencies: 1591 | whatwg-url "^5.0.0" 1592 | 1593 | nopt@^5.0.0: 1594 | version "5.0.0" 1595 | resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88" 1596 | integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ== 1597 | dependencies: 1598 | abbrev "1" 1599 | 1600 | normalize-package-data@^2.3.2: 1601 | version "2.5.0" 1602 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" 1603 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 1604 | dependencies: 1605 | hosted-git-info "^2.1.4" 1606 | resolve "^1.10.0" 1607 | semver "2 || 3 || 4 || 5" 1608 | validate-npm-package-license "^3.0.1" 1609 | 1610 | normalize-path@^3.0.0: 1611 | version "3.0.0" 1612 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1613 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1614 | 1615 | npm-run-all@^4.1.5: 1616 | version "4.1.5" 1617 | resolved "https://registry.yarnpkg.com/npm-run-all/-/npm-run-all-4.1.5.tgz#04476202a15ee0e2e214080861bff12a51d98fba" 1618 | integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== 1619 | dependencies: 1620 | ansi-styles "^3.2.1" 1621 | chalk "^2.4.1" 1622 | cross-spawn "^6.0.5" 1623 | memorystream "^0.3.1" 1624 | minimatch "^3.0.4" 1625 | pidtree "^0.3.0" 1626 | read-pkg "^3.0.0" 1627 | shell-quote "^1.6.1" 1628 | string.prototype.padend "^3.0.0" 1629 | 1630 | npm-run-path@^5.1.0: 1631 | version "5.1.0" 1632 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.1.0.tgz#bc62f7f3f6952d9894bd08944ba011a6ee7b7e00" 1633 | integrity sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q== 1634 | dependencies: 1635 | path-key "^4.0.0" 1636 | 1637 | npmlog@^5.0.1: 1638 | version "5.0.1" 1639 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-5.0.1.tgz#f06678e80e29419ad67ab964e0fa69959c1eb8b0" 1640 | integrity sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw== 1641 | dependencies: 1642 | are-we-there-yet "^2.0.0" 1643 | console-control-strings "^1.1.0" 1644 | gauge "^3.0.0" 1645 | set-blocking "^2.0.0" 1646 | 1647 | object-assign@^4.1.1: 1648 | version "4.1.1" 1649 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1650 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== 1651 | 1652 | object-inspect@^1.12.2, object-inspect@^1.9.0: 1653 | version "1.12.2" 1654 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" 1655 | integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== 1656 | 1657 | object-keys@^1.1.1: 1658 | version "1.1.1" 1659 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1660 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1661 | 1662 | object.assign@^4.1.4: 1663 | version "4.1.4" 1664 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" 1665 | integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== 1666 | dependencies: 1667 | call-bind "^1.0.2" 1668 | define-properties "^1.1.4" 1669 | has-symbols "^1.0.3" 1670 | object-keys "^1.1.1" 1671 | 1672 | once@^1.3.0: 1673 | version "1.4.0" 1674 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1675 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1676 | dependencies: 1677 | wrappy "1" 1678 | 1679 | onetime@^5.1.0: 1680 | version "5.1.2" 1681 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 1682 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 1683 | dependencies: 1684 | mimic-fn "^2.1.0" 1685 | 1686 | onetime@^6.0.0: 1687 | version "6.0.0" 1688 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4" 1689 | integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== 1690 | dependencies: 1691 | mimic-fn "^4.0.0" 1692 | 1693 | optionator@^0.9.1: 1694 | version "0.9.1" 1695 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 1696 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 1697 | dependencies: 1698 | deep-is "^0.1.3" 1699 | fast-levenshtein "^2.0.6" 1700 | levn "^0.4.1" 1701 | prelude-ls "^1.2.1" 1702 | type-check "^0.4.0" 1703 | word-wrap "^1.2.3" 1704 | 1705 | p-limit@^3.0.2: 1706 | version "3.1.0" 1707 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1708 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1709 | dependencies: 1710 | yocto-queue "^0.1.0" 1711 | 1712 | p-locate@^5.0.0: 1713 | version "5.0.0" 1714 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 1715 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 1716 | dependencies: 1717 | p-limit "^3.0.2" 1718 | 1719 | p-map@^4.0.0: 1720 | version "4.0.0" 1721 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" 1722 | integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== 1723 | dependencies: 1724 | aggregate-error "^3.0.0" 1725 | 1726 | parent-module@^1.0.0: 1727 | version "1.0.1" 1728 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1729 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1730 | dependencies: 1731 | callsites "^3.0.0" 1732 | 1733 | parse-json@^4.0.0: 1734 | version "4.0.0" 1735 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" 1736 | integrity sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw== 1737 | dependencies: 1738 | error-ex "^1.3.1" 1739 | json-parse-better-errors "^1.0.1" 1740 | 1741 | path-exists@^4.0.0: 1742 | version "4.0.0" 1743 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1744 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1745 | 1746 | path-is-absolute@^1.0.0: 1747 | version "1.0.1" 1748 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1749 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1750 | 1751 | path-key@^2.0.1: 1752 | version "2.0.1" 1753 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1754 | integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw== 1755 | 1756 | path-key@^3.1.0: 1757 | version "3.1.1" 1758 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1759 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1760 | 1761 | path-key@^4.0.0: 1762 | version "4.0.0" 1763 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18" 1764 | integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== 1765 | 1766 | path-parse@^1.0.7: 1767 | version "1.0.7" 1768 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1769 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1770 | 1771 | path-type@^3.0.0: 1772 | version "3.0.0" 1773 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" 1774 | integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== 1775 | dependencies: 1776 | pify "^3.0.0" 1777 | 1778 | path-type@^4.0.0: 1779 | version "4.0.0" 1780 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 1781 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1782 | 1783 | pause-stream@0.0.11: 1784 | version "0.0.11" 1785 | resolved "https://registry.yarnpkg.com/pause-stream/-/pause-stream-0.0.11.tgz#fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445" 1786 | integrity sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A== 1787 | dependencies: 1788 | through "~2.3" 1789 | 1790 | picomatch@^2.3.1: 1791 | version "2.3.1" 1792 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1793 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1794 | 1795 | pidtree@^0.3.0: 1796 | version "0.3.1" 1797 | resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.3.1.tgz#ef09ac2cc0533df1f3250ccf2c4d366b0d12114a" 1798 | integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== 1799 | 1800 | pidtree@^0.6.0: 1801 | version "0.6.0" 1802 | resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.6.0.tgz#90ad7b6d42d5841e69e0a2419ef38f8883aa057c" 1803 | integrity sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g== 1804 | 1805 | pify@^3.0.0: 1806 | version "3.0.0" 1807 | resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" 1808 | integrity sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg== 1809 | 1810 | prelude-ls@^1.2.1: 1811 | version "1.2.1" 1812 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1813 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1814 | 1815 | prettier@^2.7.1: 1816 | version "2.7.1" 1817 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64" 1818 | integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g== 1819 | 1820 | ps-tree@^1.2.0: 1821 | version "1.2.0" 1822 | resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.2.0.tgz#5e7425b89508736cdd4f2224d028f7bb3f722ebd" 1823 | integrity sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA== 1824 | dependencies: 1825 | event-stream "=3.3.4" 1826 | 1827 | psl@^1.9.0: 1828 | version "1.9.0" 1829 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" 1830 | integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== 1831 | 1832 | punycode@^2.1.0: 1833 | version "2.1.1" 1834 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1835 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1836 | 1837 | queue-microtask@^1.2.2: 1838 | version "1.2.3" 1839 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1840 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1841 | 1842 | read-pkg@^3.0.0: 1843 | version "3.0.0" 1844 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" 1845 | integrity sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA== 1846 | dependencies: 1847 | load-json-file "^4.0.0" 1848 | normalize-package-data "^2.3.2" 1849 | path-type "^3.0.0" 1850 | 1851 | readable-stream@^3.6.0: 1852 | version "3.6.0" 1853 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" 1854 | integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== 1855 | dependencies: 1856 | inherits "^2.0.3" 1857 | string_decoder "^1.1.1" 1858 | util-deprecate "^1.0.1" 1859 | 1860 | reflect-metadata@^0.1.13: 1861 | version "0.1.13" 1862 | resolved "https://registry.yarnpkg.com/reflect-metadata/-/reflect-metadata-0.1.13.tgz#67ae3ca57c972a2aa1642b10fe363fe32d49dc08" 1863 | integrity sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg== 1864 | 1865 | regexp.prototype.flags@^1.4.3: 1866 | version "1.4.3" 1867 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" 1868 | integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== 1869 | dependencies: 1870 | call-bind "^1.0.2" 1871 | define-properties "^1.1.3" 1872 | functions-have-names "^1.2.2" 1873 | 1874 | regexpp@^3.2.0: 1875 | version "3.2.0" 1876 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" 1877 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== 1878 | 1879 | resolve-from@^4.0.0: 1880 | version "4.0.0" 1881 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1882 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1883 | 1884 | resolve@^1.10.0: 1885 | version "1.22.1" 1886 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" 1887 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== 1888 | dependencies: 1889 | is-core-module "^2.9.0" 1890 | path-parse "^1.0.7" 1891 | supports-preserve-symlinks-flag "^1.0.0" 1892 | 1893 | restore-cursor@^3.1.0: 1894 | version "3.1.0" 1895 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" 1896 | integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== 1897 | dependencies: 1898 | onetime "^5.1.0" 1899 | signal-exit "^3.0.2" 1900 | 1901 | reusify@^1.0.4: 1902 | version "1.0.4" 1903 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 1904 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1905 | 1906 | rfdc@^1.3.0: 1907 | version "1.3.0" 1908 | resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b" 1909 | integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA== 1910 | 1911 | rimraf@^3.0.2: 1912 | version "3.0.2" 1913 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1914 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1915 | dependencies: 1916 | glob "^7.1.3" 1917 | 1918 | run-parallel@^1.1.9: 1919 | version "1.2.0" 1920 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 1921 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 1922 | dependencies: 1923 | queue-microtask "^1.2.2" 1924 | 1925 | rxjs@^7.5.5: 1926 | version "7.5.7" 1927 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.5.7.tgz#2ec0d57fdc89ece220d2e702730ae8f1e49def39" 1928 | integrity sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA== 1929 | dependencies: 1930 | tslib "^2.1.0" 1931 | 1932 | safe-buffer@~5.2.0: 1933 | version "5.2.1" 1934 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 1935 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 1936 | 1937 | safe-regex-test@^1.0.0: 1938 | version "1.0.0" 1939 | resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" 1940 | integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== 1941 | dependencies: 1942 | call-bind "^1.0.2" 1943 | get-intrinsic "^1.1.3" 1944 | is-regex "^1.1.4" 1945 | 1946 | "semver@2 || 3 || 4 || 5", semver@^5.5.0: 1947 | version "5.7.1" 1948 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 1949 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 1950 | 1951 | semver@^6.0.0: 1952 | version "6.3.0" 1953 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1954 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1955 | 1956 | semver@^7.3.5: 1957 | version "7.3.8" 1958 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" 1959 | integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== 1960 | dependencies: 1961 | lru-cache "^6.0.0" 1962 | 1963 | set-blocking@^2.0.0: 1964 | version "2.0.0" 1965 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1966 | integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== 1967 | 1968 | shebang-command@^1.2.0: 1969 | version "1.2.0" 1970 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1971 | integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg== 1972 | dependencies: 1973 | shebang-regex "^1.0.0" 1974 | 1975 | shebang-command@^2.0.0: 1976 | version "2.0.0" 1977 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1978 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1979 | dependencies: 1980 | shebang-regex "^3.0.0" 1981 | 1982 | shebang-regex@^1.0.0: 1983 | version "1.0.0" 1984 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1985 | integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ== 1986 | 1987 | shebang-regex@^3.0.0: 1988 | version "3.0.0" 1989 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1990 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1991 | 1992 | shell-quote@^1.6.1: 1993 | version "1.7.3" 1994 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.3.tgz#aa40edac170445b9a431e17bb62c0b881b9c4123" 1995 | integrity sha512-Vpfqwm4EnqGdlsBFNmHhxhElJYrdfcxPThu+ryKS5J8L/fhAwLazFZtq+S+TWZ9ANj2piSQLGj6NQg+lKPmxrw== 1996 | 1997 | side-channel@^1.0.4: 1998 | version "1.0.4" 1999 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 2000 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 2001 | dependencies: 2002 | call-bind "^1.0.0" 2003 | get-intrinsic "^1.0.2" 2004 | object-inspect "^1.9.0" 2005 | 2006 | signal-exit@^3.0.0, signal-exit@^3.0.2, signal-exit@^3.0.7: 2007 | version "3.0.7" 2008 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" 2009 | integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== 2010 | 2011 | slash@^3.0.0: 2012 | version "3.0.0" 2013 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 2014 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 2015 | 2016 | slice-ansi@^3.0.0: 2017 | version "3.0.0" 2018 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" 2019 | integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== 2020 | dependencies: 2021 | ansi-styles "^4.0.0" 2022 | astral-regex "^2.0.0" 2023 | is-fullwidth-code-point "^3.0.0" 2024 | 2025 | slice-ansi@^4.0.0: 2026 | version "4.0.0" 2027 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" 2028 | integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== 2029 | dependencies: 2030 | ansi-styles "^4.0.0" 2031 | astral-regex "^2.0.0" 2032 | is-fullwidth-code-point "^3.0.0" 2033 | 2034 | slice-ansi@^5.0.0: 2035 | version "5.0.0" 2036 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-5.0.0.tgz#b73063c57aa96f9cd881654b15294d95d285c42a" 2037 | integrity sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ== 2038 | dependencies: 2039 | ansi-styles "^6.0.0" 2040 | is-fullwidth-code-point "^4.0.0" 2041 | 2042 | spdx-correct@^3.0.0: 2043 | version "3.1.1" 2044 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" 2045 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 2046 | dependencies: 2047 | spdx-expression-parse "^3.0.0" 2048 | spdx-license-ids "^3.0.0" 2049 | 2050 | spdx-exceptions@^2.1.0: 2051 | version "2.3.0" 2052 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 2053 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 2054 | 2055 | spdx-expression-parse@^3.0.0: 2056 | version "3.0.1" 2057 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 2058 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 2059 | dependencies: 2060 | spdx-exceptions "^2.1.0" 2061 | spdx-license-ids "^3.0.0" 2062 | 2063 | spdx-license-ids@^3.0.0: 2064 | version "3.0.12" 2065 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz#69077835abe2710b65f03969898b6637b505a779" 2066 | integrity sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA== 2067 | 2068 | split@0.3: 2069 | version "0.3.3" 2070 | resolved "https://registry.yarnpkg.com/split/-/split-0.3.3.tgz#cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f" 2071 | integrity sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA== 2072 | dependencies: 2073 | through "2" 2074 | 2075 | stream-combiner@~0.0.4: 2076 | version "0.0.4" 2077 | resolved "https://registry.yarnpkg.com/stream-combiner/-/stream-combiner-0.0.4.tgz#4d5e433c185261dde623ca3f44c586bcf5c4ad14" 2078 | integrity sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw== 2079 | dependencies: 2080 | duplexer "~0.1.1" 2081 | 2082 | string-argv@^0.1.1: 2083 | version "0.1.2" 2084 | resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.1.2.tgz#c5b7bc03fb2b11983ba3a72333dd0559e77e4738" 2085 | integrity sha512-mBqPGEOMNJKXRo7z0keX0wlAhbBAjilUdPW13nN0PecVryZxdHIeM7TqbsSUA7VYuS00HGC6mojP7DlQzfa9ZA== 2086 | 2087 | string-argv@^0.3.1: 2088 | version "0.3.1" 2089 | resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" 2090 | integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== 2091 | 2092 | "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: 2093 | version "4.2.3" 2094 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 2095 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 2096 | dependencies: 2097 | emoji-regex "^8.0.0" 2098 | is-fullwidth-code-point "^3.0.0" 2099 | strip-ansi "^6.0.1" 2100 | 2101 | string-width@^5.0.0: 2102 | version "5.1.2" 2103 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" 2104 | integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== 2105 | dependencies: 2106 | eastasianwidth "^0.2.0" 2107 | emoji-regex "^9.2.2" 2108 | strip-ansi "^7.0.1" 2109 | 2110 | string.prototype.padend@^3.0.0: 2111 | version "3.1.3" 2112 | resolved "https://registry.yarnpkg.com/string.prototype.padend/-/string.prototype.padend-3.1.3.tgz#997a6de12c92c7cb34dc8a201a6c53d9bd88a5f1" 2113 | integrity sha512-jNIIeokznm8SD/TZISQsZKYu7RJyheFNt84DUPrh482GC8RVp2MKqm2O5oBRdGxbDQoXrhhWtPIWQOiy20svUg== 2114 | dependencies: 2115 | call-bind "^1.0.2" 2116 | define-properties "^1.1.3" 2117 | es-abstract "^1.19.1" 2118 | 2119 | string.prototype.trimend@^1.0.5: 2120 | version "1.0.5" 2121 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" 2122 | integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== 2123 | dependencies: 2124 | call-bind "^1.0.2" 2125 | define-properties "^1.1.4" 2126 | es-abstract "^1.19.5" 2127 | 2128 | string.prototype.trimstart@^1.0.5: 2129 | version "1.0.5" 2130 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" 2131 | integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== 2132 | dependencies: 2133 | call-bind "^1.0.2" 2134 | define-properties "^1.1.4" 2135 | es-abstract "^1.19.5" 2136 | 2137 | string_decoder@^1.1.1: 2138 | version "1.3.0" 2139 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 2140 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== 2141 | dependencies: 2142 | safe-buffer "~5.2.0" 2143 | 2144 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 2145 | version "6.0.1" 2146 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 2147 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 2148 | dependencies: 2149 | ansi-regex "^5.0.1" 2150 | 2151 | strip-ansi@^7.0.1: 2152 | version "7.0.1" 2153 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.0.1.tgz#61740a08ce36b61e50e65653f07060d000975fb2" 2154 | integrity sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw== 2155 | dependencies: 2156 | ansi-regex "^6.0.1" 2157 | 2158 | strip-bom@^3.0.0: 2159 | version "3.0.0" 2160 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2161 | integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== 2162 | 2163 | strip-final-newline@^3.0.0: 2164 | version "3.0.0" 2165 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" 2166 | integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== 2167 | 2168 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 2169 | version "3.1.1" 2170 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 2171 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 2172 | 2173 | supports-color@^5.3.0: 2174 | version "5.5.0" 2175 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2176 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2177 | dependencies: 2178 | has-flag "^3.0.0" 2179 | 2180 | supports-color@^7.1.0: 2181 | version "7.2.0" 2182 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 2183 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2184 | dependencies: 2185 | has-flag "^4.0.0" 2186 | 2187 | supports-preserve-symlinks-flag@^1.0.0: 2188 | version "1.0.0" 2189 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 2190 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 2191 | 2192 | tar@^6.1.11: 2193 | version "6.1.11" 2194 | resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621" 2195 | integrity sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA== 2196 | dependencies: 2197 | chownr "^2.0.0" 2198 | fs-minipass "^2.0.0" 2199 | minipass "^3.0.0" 2200 | minizlib "^2.1.1" 2201 | mkdirp "^1.0.3" 2202 | yallist "^4.0.0" 2203 | 2204 | text-table@^0.2.0: 2205 | version "0.2.0" 2206 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2207 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 2208 | 2209 | through@2, through@^2.3.8, through@~2.3, through@~2.3.1: 2210 | version "2.3.8" 2211 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2212 | integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== 2213 | 2214 | to-regex-range@^5.0.1: 2215 | version "5.0.1" 2216 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2217 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2218 | dependencies: 2219 | is-number "^7.0.0" 2220 | 2221 | tr46@~0.0.3: 2222 | version "0.0.3" 2223 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 2224 | integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== 2225 | 2226 | ts-mixer@^6.0.1: 2227 | version "6.0.1" 2228 | resolved "https://registry.yarnpkg.com/ts-mixer/-/ts-mixer-6.0.1.tgz#7c2627fb98047eb5f3c7f2fee39d1521d18fe87a" 2229 | integrity sha512-hvE+ZYXuINrx6Ei6D6hz+PTim0Uf++dYbK9FFifLNwQj+RwKquhQpn868yZsCtJYiclZF1u8l6WZxxKi+vv7Rg== 2230 | 2231 | tsc-watch@^5.0.3: 2232 | version "5.0.3" 2233 | resolved "https://registry.yarnpkg.com/tsc-watch/-/tsc-watch-5.0.3.tgz#4d0b2bda8f2677c8f9ed36e001c1a86c31701145" 2234 | integrity sha512-Hz2UawwELMSLOf0xHvAFc7anLeMw62cMVXr1flYmhRuOhOyOljwmb1l/O60ZwRyy1k7N1iC1mrn1QYM2zITfuw== 2235 | dependencies: 2236 | cross-spawn "^7.0.3" 2237 | node-cleanup "^2.1.2" 2238 | ps-tree "^1.2.0" 2239 | string-argv "^0.1.1" 2240 | strip-ansi "^6.0.0" 2241 | 2242 | tslib@^2.1.0, tslib@^2.3.1, tslib@^2.4.0: 2243 | version "2.4.0" 2244 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" 2245 | integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== 2246 | 2247 | type-check@^0.4.0, type-check@~0.4.0: 2248 | version "0.4.0" 2249 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 2250 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 2251 | dependencies: 2252 | prelude-ls "^1.2.1" 2253 | 2254 | type-fest@^0.20.2: 2255 | version "0.20.2" 2256 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 2257 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 2258 | 2259 | type-fest@^0.21.3: 2260 | version "0.21.3" 2261 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" 2262 | integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== 2263 | 2264 | typescript@^4.6.3, typescript@^4.8.4: 2265 | version "4.8.4" 2266 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.4.tgz#c464abca159669597be5f96b8943500b238e60e6" 2267 | integrity sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ== 2268 | 2269 | unbox-primitive@^1.0.2: 2270 | version "1.0.2" 2271 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" 2272 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== 2273 | dependencies: 2274 | call-bind "^1.0.2" 2275 | has-bigints "^1.0.2" 2276 | has-symbols "^1.0.3" 2277 | which-boxed-primitive "^1.0.2" 2278 | 2279 | uri-js@^4.2.2: 2280 | version "4.4.1" 2281 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 2282 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 2283 | dependencies: 2284 | punycode "^2.1.0" 2285 | 2286 | util-deprecate@^1.0.1: 2287 | version "1.0.2" 2288 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2289 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== 2290 | 2291 | validate-npm-package-license@^3.0.1: 2292 | version "3.0.4" 2293 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 2294 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 2295 | dependencies: 2296 | spdx-correct "^3.0.0" 2297 | spdx-expression-parse "^3.0.0" 2298 | 2299 | webidl-conversions@^3.0.0: 2300 | version "3.0.1" 2301 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 2302 | integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== 2303 | 2304 | whatwg-url@^5.0.0: 2305 | version "5.0.0" 2306 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" 2307 | integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== 2308 | dependencies: 2309 | tr46 "~0.0.3" 2310 | webidl-conversions "^3.0.0" 2311 | 2312 | which-boxed-primitive@^1.0.2: 2313 | version "1.0.2" 2314 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 2315 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 2316 | dependencies: 2317 | is-bigint "^1.0.1" 2318 | is-boolean-object "^1.1.0" 2319 | is-number-object "^1.0.4" 2320 | is-string "^1.0.5" 2321 | is-symbol "^1.0.3" 2322 | 2323 | which@^1.2.9: 2324 | version "1.3.1" 2325 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 2326 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 2327 | dependencies: 2328 | isexe "^2.0.0" 2329 | 2330 | which@^2.0.1: 2331 | version "2.0.2" 2332 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2333 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2334 | dependencies: 2335 | isexe "^2.0.0" 2336 | 2337 | wide-align@^1.1.2: 2338 | version "1.1.5" 2339 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" 2340 | integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== 2341 | dependencies: 2342 | string-width "^1.0.2 || 2 || 3 || 4" 2343 | 2344 | word-wrap@^1.2.3: 2345 | version "1.2.3" 2346 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 2347 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 2348 | 2349 | wrap-ansi@^6.2.0: 2350 | version "6.2.0" 2351 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" 2352 | integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== 2353 | dependencies: 2354 | ansi-styles "^4.0.0" 2355 | string-width "^4.1.0" 2356 | strip-ansi "^6.0.0" 2357 | 2358 | wrap-ansi@^7.0.0: 2359 | version "7.0.0" 2360 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 2361 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 2362 | dependencies: 2363 | ansi-styles "^4.0.0" 2364 | string-width "^4.1.0" 2365 | strip-ansi "^6.0.0" 2366 | 2367 | wrappy@1: 2368 | version "1.0.2" 2369 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2370 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 2371 | 2372 | ws@^8.8.1: 2373 | version "8.9.0" 2374 | resolved "https://registry.yarnpkg.com/ws/-/ws-8.9.0.tgz#2a994bb67144be1b53fe2d23c53c028adeb7f45e" 2375 | integrity sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg== 2376 | 2377 | yallist@^4.0.0: 2378 | version "4.0.0" 2379 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2380 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2381 | 2382 | yaml@^2.1.1: 2383 | version "2.1.3" 2384 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.1.3.tgz#9b3a4c8aff9821b696275c79a8bee8399d945207" 2385 | integrity sha512-AacA8nRULjKMX2DvWvOAdBZMOfQlypSFkjcOcu9FalllIDJ1kvlREzcdIZmidQUqqeMv7jorHjq2HlLv/+c2lg== 2386 | 2387 | yocto-queue@^0.1.0: 2388 | version "0.1.0" 2389 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 2390 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 2391 | --------------------------------------------------------------------------------