├── .editorconfig ├── .eslintrc ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .husky ├── .gitignore ├── commit-msg └── pre-commit ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── action.yml ├── dist ├── action.d.ts ├── index.d.ts ├── index.js ├── index.js.cache ├── index.js.cache.js ├── state.d.ts └── util.d.ts ├── package.json ├── screenshots ├── get-app-id.jpg ├── get-private-key.jpg ├── screenshot.jpg └── secrets.jpg ├── src ├── action.ts ├── index.ts ├── state.ts └── util.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | 15 | [Makefile] 16 | indent_style = tab 17 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@bubkoo/eslint-config" 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Release 2 | on: 3 | push: 4 | branches: 5 | - master 6 | - next 7 | - next-major 8 | - alpha 9 | - beta 10 | jobs: 11 | run: 12 | runs-on: ubuntu-latest 13 | steps: 14 | - name: ⤵️ Checkout 15 | uses: actions/checkout@v3 16 | - name: 🚧 Install 17 | run: yarn 18 | - name: 📦 Build 19 | run: yarn build 20 | - name: 🔑 Generate Token 21 | uses: ./ 22 | with: 23 | app_id: ${{ secrets.APP_ID }} 24 | private_key: ${{ secrets.PRIVATE_KEY }} 25 | - name: 📦 Release 26 | uses: wow-actions/release-github-action@v3 27 | env: 28 | GITHUB_TOKEN: ${{ env.BOT_TOKEN }} 29 | GIT_AUTHOR_NAME: ${{ env.BOT_NAME }}[bot] 30 | GIT_AUTHOR_EMAIL: ${{ env.BOT_NAME }}[bot]@users.noreply.github.com 31 | GIT_COMMITTER_NAME: ${{ env.BOT_NAME }}[bot] 32 | GIT_COMMITTER_EMAIL: ${{ env.BOT_NAME }}[bot]@users.noreply.github.com 33 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | npm-debug.log* 4 | yarn-debug.log* 5 | yarn-error.log* 6 | lerna-debug.log* 7 | coverage 8 | *.lcov 9 | .nyc_output 10 | .npm 11 | .env 12 | .env.test 13 | .cache 14 | .DS_Store 15 | lib 16 | -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx @commitlint/cli --extends @bubkoo/commitlint-config --edit "$1" 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "semi": false, 3 | "singleQuote": true, 4 | "printWidth": 80, 5 | "trailingComma": "all", 6 | "proseWrap": "never", 7 | "overrides": [{ "files": ".prettierrc", "options": { "parser": "json" } }] 8 | } 9 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## [2.1.1](https://github.com/wow-actions/use-app-token/compare/v2.1.0...v2.1.1) (2024-10-12) 2 | 3 | # 1.0.0 (2024-10-12) 4 | 5 | 6 | ### Bug Fixes 7 | 8 | * 🐛 action input ([07b2883](https://github.com/wow-actions/use-app-token/commit/07b2883d7b563400f39ec1743db6398e937662d5)) 9 | * 🐛 clean secret ([7549b8e](https://github.com/wow-actions/use-app-token/commit/7549b8ee087af9817c4207f49c316f0122503e17)) 10 | * 🐛 context repo ([2bf8276](https://github.com/wow-actions/use-app-token/commit/2bf82761b6ed4998d256cb408288b01e798260a6)) 11 | * 🐛 custom Octokit ([2fec726](https://github.com/wow-actions/use-app-token/commit/2fec726f2f274a06785e3bf82b01b92dd90e11f5)) 12 | * 🐛 debug info ([897503d](https://github.com/wow-actions/use-app-token/commit/897503d15306279b02db616b0f3aff3f1ab57f8e)) 13 | * 🐛 detect post action ([5b17c0b](https://github.com/wow-actions/use-app-token/commit/5b17c0b9d6877f28d2b55bc963dbd1814a61f353)) 14 | * 🐛 error info ([0a8eaba](https://github.com/wow-actions/use-app-token/commit/0a8eabaa98fadff8994f81299b16e017d537f1b1)) 15 | * 🐛 get public key ([18164f9](https://github.com/wow-actions/use-app-token/commit/18164f96eae6dcab74d161391b1eec1454329266)) 16 | * 🐛 handle post actions ([85cb0ca](https://github.com/wow-actions/use-app-token/commit/85cb0ca276a2615b1f7a1d5947f7bb10cf34b7fe)) 17 | * 🐛 invalid workflow file ([c12c777](https://github.com/wow-actions/use-app-token/commit/c12c777d5852a565e148b469c715bf1e6c8defdc)) 18 | * 🐛 lint staged script ([6b1677b](https://github.com/wow-actions/use-app-token/commit/6b1677bc8d765ef4fe4a35c9b27955d5b5a06002)) 19 | * 🐛 octokit ([029662a](https://github.com/wow-actions/use-app-token/commit/029662a5f0fa377ddf3ec9761099a7a875f254c3)) 20 | * 🐛 pipeline ([2e617c8](https://github.com/wow-actions/use-app-token/commit/2e617c876a19d289508cdac2ff2d0679189756b0)) 21 | * 🐛 pipeline ([e3f4e4e](https://github.com/wow-actions/use-app-token/commit/e3f4e4eaa0d81784a70d5ecbe42bec3ea4c032a8)) 22 | * 🐛 post action ([3283c11](https://github.com/wow-actions/use-app-token/commit/3283c116208a2afadaccd2f29a07a39e8d2fa6ab)) 23 | * 🐛 post action ([1af3528](https://github.com/wow-actions/use-app-token/commit/1af3528087bbcdffa4e8bff2e350900b3e0ec993)) 24 | * 🐛 public api ([e6cf021](https://github.com/wow-actions/use-app-token/commit/e6cf02168b87b2be0bb14cd0065fcf350eae9604)) 25 | * 🐛 set secret ([ef42837](https://github.com/wow-actions/use-app-token/commit/ef428377925c23aee10274ac363433b7c5465618)) 26 | * 🐛 set secret ([655ebe5](https://github.com/wow-actions/use-app-token/commit/655ebe5a9aeba6669e32f6297fad2fd1a5482b9d)) 27 | * 🐛 set secret ([a560364](https://github.com/wow-actions/use-app-token/commit/a5603648145ebd5d2f54f02026990c3f765370a7)) 28 | * 🐛 tkoen ([debf991](https://github.com/wow-actions/use-app-token/commit/debf9915c9c36648f1e783c83abc8867f0199233)) 29 | * 🐛 token ([290c5f6](https://github.com/wow-actions/use-app-token/commit/290c5f67a7703c374240835ff387f2ccaeb47cd9)) 30 | * 🐛 type errors ([ab966ce](https://github.com/wow-actions/use-app-token/commit/ab966ce520a93003338272d29b9c90e8a726fe44)) 31 | * 🐛 use `createAppAuth` to generate token ([27b49b2](https://github.com/wow-actions/use-app-token/commit/27b49b2a95fe3636df7089f1131eb71d3730aecd)) 32 | * post action ([88d3424](https://github.com/wow-actions/use-app-token/commit/88d3424ad43e38fcd2ab6fc2ded045a6ec08c39b)) 33 | * post clean job ([527b8b3](https://github.com/wow-actions/use-app-token/commit/527b8b350dd8e69281cb0799908ce8e682be1f75)) 34 | * post job cleanup ([e49cf78](https://github.com/wow-actions/use-app-token/commit/e49cf787a672e3f4975494f2ed363edcf6d6b009)) 35 | * post job cleanup ([11286d9](https://github.com/wow-actions/use-app-token/commit/11286d9bdeccc28e48f5be4d1ee98f8c7534ceb7)) 36 | * typos ([f673ea8](https://github.com/wow-actions/use-app-token/commit/f673ea8c3109162314df12f97a5a9695f1d6de1a)) 37 | * use env virables ([0927d96](https://github.com/wow-actions/use-app-token/commit/0927d96f1ddc12c7e7f9e798867e2ba74d2b61f3)) 38 | 39 | 40 | ### Features 41 | 42 | * ✨ do not generate default "token" env variable ([7488fcc](https://github.com/wow-actions/use-app-token/commit/7488fcc73fd84c49de0199643d4f6cb1d7d47bd5)) 43 | * ✨ export environment varibale ([e42d1af](https://github.com/wow-actions/use-app-token/commit/e42d1af59d621278a2fed02f7d15d67c53a808a0)) 44 | * ✨ fallback token when failed ([7536254](https://github.com/wow-actions/use-app-token/commit/7536254781a57238cb81e2a27e1401882f93dab0)) 45 | * ✨ init ([fad333d](https://github.com/wow-actions/use-app-token/commit/fad333dacc7dce2014bbbb0f4f296ad9cc9fb95a)) 46 | * ✨ pipeline ([710f897](https://github.com/wow-actions/use-app-token/commit/710f89741825faf635182cd36a2fff27ee326e5a)) 47 | * ✨ post action to cleanup secret ([1c1811e](https://github.com/wow-actions/use-app-token/commit/1c1811e35f54bdb437b58cfda3e48b594605b0e7)) 48 | * ✨ support variable name ([e675890](https://github.com/wow-actions/use-app-token/commit/e67589021bd50b7e1387c3a4f959189154a7e3b4)) 49 | * ✨ test token in secrets ([7b88958](https://github.com/wow-actions/use-app-token/commit/7b889582a4c7aec8dfdb89519bc8ce55ddbd3484)) 50 | * ✨ use GITHUB_TOKEN as custom secret name ([a97d2e8](https://github.com/wow-actions/use-app-token/commit/a97d2e83d27de649db33fcc0e5123419588ca934)) 51 | * export app name to env or save to secret ([5207c76](https://github.com/wow-actions/use-app-token/commit/5207c762d9c975fec66081528f2cd86c8b3d18ed)) 52 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 崖崖崖 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 |

🔑 Use App Token

2 | 3 |

Run GitHub Actions as a GitHub App by using the app's authentication token

4 | 5 |

6 | build 7 | MIT License 8 | Language 9 | PRs Welcome 10 | website 11 |

12 | 13 | This GitHub Action can be used to **impersonate** a GitHub App when `secrets.GITHUB_TOKEN`'s limitations are too restrictive and a personal access token is not suitable. [`secrets.GITHUB_TOKEN`](https://help.github.com/en/actions/configuring-and-managing-workflows/authenticating-with-the-github_token) has limitations such as [not being able to triggering a new workflow from another workflow](https://github.community/t5/GitHub-Actions/Triggering-a-new-workflow-from-another-workflow/td-p/31676). A workaround is to use a [personal access token](https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line) from a [personal user/bot account](https://help.github.com/en/github/getting-started-with-github/types-of-github-accounts#personal-user-accounts). However, for organizations, GitHub Apps are [a more appropriate automation solution](https://developer.github.com/apps/differences-between-apps/#machine-vs-bot-accounts). 14 | 15 | We can also use an app token to [custom an action's name and avatar](https://github.community/t/change-bots-name-avatar/18349). 16 | 17 | ![screenshot](https://github.com/wow-actions/use-app-token/blob/master/screenshots/screenshot.jpg?raw=true) 18 | 19 | ## Usage 20 | 21 | Before staring, we should get the _"APP ID"_ and _"Private Key"_ in the app's setting page. For example, find the two values in my app's setting page [https://github.com/settings/apps/wow-actions-bot](https://github.com/settings/apps/wow-actions-bot). 22 | 23 | Get the app's _"APP ID"_ 24 | 25 | ![get-app-id](https://github.com/wow-actions/use-app-token/blob/master/screenshots/get-app-id.jpg?raw=true) 26 | 27 | Get or create a _"Private Key"_ 28 | 29 | ![get-private-key](https://github.com/wow-actions/use-app-token/blob/master/screenshots/get-private-key.jpg?raw=true) 30 | 31 | **Do not have a Github App? Get a quick start with [probot](https://probot.github.io/).** 32 | 33 | Then add _"APP ID"_ and _"Private Key"_ to the target [repo's secrets](https://docs.github.com/en/free-pro-team@latest/actions/reference/encrypted-secrets). For example, we can add two secrets named `APP_ID` and `PRIVATE_KEY` with corresponding values. 34 | 35 | ![secrets](https://github.com/wow-actions/use-app-token/blob/master/screenshots/secrets.jpg?raw=true) 36 | 37 | Now we can config our workflows. 38 | 39 | ### Method 1: Use action's output in the next steps 40 | 41 | ```yml 42 | jobs: 43 | run: 44 | runs-on: ubuntu-latest 45 | steps: 46 | - uses: wow-actions/use-app-token@v2 47 | id: generate_token 48 | with: 49 | app_id: ${{ secrets.APP_ID }} 50 | private_key: ${{ secrets.PRIVATE_KEY }} 51 | 52 | # Use token in next steps 53 | - uses: 'any other action' 54 | with: 55 | # Use app token in outpus of the 'generate_token' step 56 | GITHUB_TOKEN: ${{ steps.generate_token.outputs.BOT_TOKEN }} 57 | env: 58 | # Use app name in outpus of the 'generate_token' step 59 | GIT_AUTHOR_NAME: ${{ steps.generate_token.outputs.BOT_NAME }}[bot] 60 | GIT_AUTHOR_EMAIL: ${{ steps.generate_token.outputs.BOT_NAME }}[bot]@users.noreply.github.com 61 | GIT_COMMITTER_NAME: ${{ steps.generate_token.outputs.BOT_NAME }}[bot] 62 | GIT_COMMITTER_EMAIL: ${{ steps.generate_token.outputs.BOT_NAME }}[bot]@users.noreply.github.com 63 | ``` 64 | 65 | ### Method 2: Use environment variables in the next steps 66 | 67 | ```yml 68 | jobs: 69 | run: 70 | runs-on: ubuntu-latest 71 | steps: 72 | - uses: wow-actions/use-app-token@v2 73 | with: 74 | app_id: ${{ secrets.APP_ID }} 75 | private_key: ${{ secrets.PRIVATE_KEY }} 76 | 77 | # Use token in next steps 78 | - uses: 'any other action' 79 | with: 80 | # Use app token in the environment variable named "BOT_TOKEN" 81 | GITHUB_TOKEN: ${{ env.BOT_TOKEN }} 82 | env: 83 | # Use app name in the environment variable named "BOT_NAME" 84 | GIT_AUTHOR_NAME: ${{ env.BOT_NAME }}[bot] 85 | GIT_AUTHOR_EMAIL: ${{ env.BOT_NAME }}[bot]@users.noreply.github.com 86 | GIT_COMMITTER_NAME: ${{ env.BOT_NAME }}[bot] 87 | GIT_COMMITTER_EMAIL: ${{ env.BOT_NAME }}[bot]@users.noreply.github.com 88 | ``` 89 | 90 | ### Method 3: Use secrets in the next steps 91 | 92 | ```yml 93 | jobs: 94 | run: 95 | runs-on: ubuntu-latest 96 | steps: 97 | - uses: wow-actions/use-app-token@v2 98 | with: 99 | app_id: ${{ secrets.APP_ID }} 100 | private_key: ${{ secrets.PRIVATE_KEY }} 101 | # Specify true to save app token and app slug into the secrets of current repository 102 | secret: true 103 | # Specify true to clean saved secrets when workflow run completed 104 | clean: true 105 | - uses: 'any other action' 106 | with: 107 | GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} 108 | env: 109 | GIT_AUTHOR_NAME: ${{ secrets.BOT_NAME }}[bot] 110 | GIT_AUTHOR_EMAIL: ${{ secrets.BOT_NAME }}[bot]@users.noreply.github.com 111 | GIT_COMMITTER_NAME: ${{ secrets.BOT_NAME }}[bot] 112 | GIT_COMMITTER_EMAIL: ${{ secrets.BOT_NAME }}[bot]@users.noreply.github.com 113 | ``` 114 | 115 | ### Inputs 116 | 117 | Various inputs are defined to let you configure the action: 118 | 119 | > Note: [Workflow command and parameter names are not case-sensitive](https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-commands-for-github-actions#about-workflow-commands). 120 | 121 | | Name | Description | Default | 122 | |------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------:| 123 | | `app_id` | The ID of the GitHub App. [Create an secret](https://help.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets#creating-encrypted-secrets-for-a-repository) named `'APP_ID'` to store your app ID, then used by `${{ secrets.APP_ID }}` | N/A | 124 | | `private_key` | The private key of the GitHub App (can be Base64 encoded). [Create an secret](https://help.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets#creating-encrypted-secrets-for-a-repository) named `'PRIVATE_KEY'` to store your app private key, then used by `${{ secrets.APP_ID }}` | N/A | 125 | | `fallback` | The fallback token when app token generate failed | N/A | 126 | | `app_slug_name` | The app slug name exported to `env` or saved to `secrets` | `"BOT_NAME"` | 127 | | `app_token_name` | The app token name exported to `env` or saved to `secrets` | `"BOT_TOKEN"` | 128 | | `secret` | Specify `true` to save app token and app slug into the secrets of current repository | `false` | 129 | | `clean` | Specify `true` to clean saved secrets when workflow run completed. Only used when `secret` specfiied to `true` | `true` | 130 | 131 | ## License 132 | 133 | The scripts and documentation in this project are released under the [MIT License](LICENSE) 134 | -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- 1 | name: Use App token 2 | description: Run GitHub Actions as a GitHub App by using the app's authentication token. 3 | author: bubkoo 4 | inputs: 5 | app_id: 6 | description: The ID of the GitHub App. 7 | required: false 8 | private_key: 9 | description: The private key of the GitHub App (can be Base64 encoded). 10 | required: false 11 | fallback: 12 | description: The fallback token when bot token generate failed. 13 | required: false 14 | app_slug_name: 15 | description: The app slug name exported to `env` or saved to `secrets`. 16 | required: false 17 | default: BOT_NAME 18 | app_token_name: 19 | description: The app token name exported to `env` or saved to `secrets`. 20 | required: false 21 | default: BOT_TOKEN 22 | secret: 23 | description: Specify true to save app token and app slug into the secrets of current repository. 24 | required: false 25 | default: false 26 | clean: 27 | description: Specify true to clean saved secrets when workflow run completed. 28 | required: false 29 | default: true 30 | 31 | outputs: 32 | bot_name: 33 | description: The name of the GitHub App on the current repository. 34 | bot_token: 35 | description: The token of the GitHub App on the current repository. 36 | 37 | runs: 38 | using: node20 39 | main: dist/index.js 40 | post: dist/index.js 41 | 42 | branding: 43 | icon: anchor 44 | color: orange # gray-dark purple red orange green blue yellow black white 45 | -------------------------------------------------------------------------------- /dist/action.d.ts: -------------------------------------------------------------------------------- 1 | export declare function run(): Promise; 2 | export declare function cleanup(): Promise; 3 | -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- 1 | const { readFileSync, writeFileSync } = require('fs'), { Script } = require('vm'), { wrap } = require('module'); 2 | const basename = __dirname + '/index.js'; 3 | const source = readFileSync(basename + '.cache.js', 'utf-8'); 4 | const cachedData = !process.pkg && require('process').platform !== 'win32' && readFileSync(basename + '.cache'); 5 | const scriptOpts = { filename: basename + '.cache.js', columnOffset: -62 } 6 | const script = new Script(wrap(source), cachedData ? Object.assign({ cachedData }, scriptOpts) : scriptOpts); 7 | (script.runInThisContext())(exports, require, module, __filename, __dirname); 8 | if (cachedData) process.on('exit', () => { try { writeFileSync(basename + '.cache', script.createCachedData()); } catch(e) {} }); 9 | -------------------------------------------------------------------------------- /dist/index.js.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wow-actions/use-app-token/9e8487c993ab4085b2dd8cb90ab446b6a18cf834/dist/index.js.cache -------------------------------------------------------------------------------- /dist/state.d.ts: -------------------------------------------------------------------------------- 1 | export declare const isPost: boolean; 2 | -------------------------------------------------------------------------------- /dist/util.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getAppSlugName(): string; 2 | export declare function getAppTokenName(): string; 3 | export declare function getAppInfo(): Promise<{ 4 | token: string; 5 | slug: string; 6 | }>; 7 | export declare function createSecret(token: string, secretName: string, secretValue: string): Promise; 8 | export declare function deleteSecret(token: string, secretName: string): Promise; 9 | export declare function deleteToken(token: string): Promise; 10 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "use-app-token", 3 | "version": "2.1.1", 4 | "description": "Run GitHub Actions as a GitHub App by using the app's authentication token", 5 | "main": "dist/index.js", 6 | "files": [ 7 | "dist", 8 | "action.yml" 9 | ], 10 | "scripts": { 11 | "clean": "rimraf dist", 12 | "lint": "eslint 'src/**/*.{js,ts}?(x)' --fix", 13 | "build": "ncc build src/index.ts --minify --v8-cache", 14 | "prebuild": "run-s lint clean", 15 | "prepare": "is-ci || husky install .husky" 16 | }, 17 | "lint-staged": { 18 | "**/*.{js,jsx,tsx,ts,less,md,json}": [ 19 | "pretty-quick — staged" 20 | ], 21 | "*.ts": [ 22 | "eslint --fix" 23 | ] 24 | }, 25 | "license": "MIT", 26 | "author": { 27 | "name": "bubkoo", 28 | "email": "bubkoo.wy@gmail.com" 29 | }, 30 | "contributors": [], 31 | "repository": "https://github.com/wow-actions/use-app-token", 32 | "dependencies": { 33 | "@actions/core": "^1.10.0", 34 | "@actions/github": "^5.1.1", 35 | "@octokit/auth-app": "^4.0.7", 36 | "@octokit/core": "^4.1.0", 37 | "is-base64": "^1.1.0", 38 | "libsodium-wrappers": "^0.7.10" 39 | }, 40 | "devDependencies": { 41 | "@bubkoo/commitlint-config": "^1.0.1", 42 | "@bubkoo/eslint-config": "^1.2.0", 43 | "@bubkoo/tsconfig": "^1.0.0", 44 | "@types/is-base64": "^1.1.0", 45 | "@types/libsodium-wrappers": "^0.7.10", 46 | "@types/node": "^18.11.9", 47 | "@vercel/ncc": "^0.34.0", 48 | "eslint": "^8.28.0", 49 | "husky": "^8.0.2", 50 | "is-ci": "^3.0.1", 51 | "npm-run-all": "^4.1.5", 52 | "prettier": "^2.7.1", 53 | "pretty-quick": "^3.1.3", 54 | "rimraf": "^3.0.2", 55 | "typescript": "^4.9.3" 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /screenshots/get-app-id.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wow-actions/use-app-token/9e8487c993ab4085b2dd8cb90ab446b6a18cf834/screenshots/get-app-id.jpg -------------------------------------------------------------------------------- /screenshots/get-private-key.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wow-actions/use-app-token/9e8487c993ab4085b2dd8cb90ab446b6a18cf834/screenshots/get-private-key.jpg -------------------------------------------------------------------------------- /screenshots/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wow-actions/use-app-token/9e8487c993ab4085b2dd8cb90ab446b6a18cf834/screenshots/screenshot.jpg -------------------------------------------------------------------------------- /screenshots/secrets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wow-actions/use-app-token/9e8487c993ab4085b2dd8cb90ab446b6a18cf834/screenshots/secrets.jpg -------------------------------------------------------------------------------- /src/action.ts: -------------------------------------------------------------------------------- 1 | import * as core from '@actions/core' 2 | import * as util from './util' 3 | 4 | export async function run() { 5 | try { 6 | const { token, slug } = await util.getAppInfo() 7 | const appSlugName = util.getAppSlugName() 8 | const appTokenName = util.getAppTokenName() 9 | 10 | const saveToSecret = core.getBooleanInput('secret') 11 | if (saveToSecret) { 12 | await util.createSecret(token, appSlugName, slug) 13 | await util.createSecret(token, appTokenName, token) 14 | core.info(`Secrets "${appSlugName}" and "${appTokenName}" was created`) 15 | } 16 | 17 | core.setSecret(token) 18 | 19 | core.setOutput('BOT_NAME', slug) 20 | core.setOutput('BOT_TOKEN', token) 21 | // save token in state to be used in cleanup 22 | core.saveState('token', token) 23 | 24 | core.exportVariable(appSlugName, slug) 25 | core.exportVariable(appTokenName, token) 26 | } catch (e) { 27 | core.error(e) 28 | core.setFailed(e.message) 29 | } 30 | } 31 | 32 | export async function cleanup() { 33 | try { 34 | const clean = core.getBooleanInput('clean') 35 | const saveToSecret = core.getBooleanInput('secret') 36 | const token = core.getState('token'); 37 | if (clean) { 38 | if (saveToSecret) { 39 | const { token } = await util.getAppInfo() 40 | const appSlugName = util.getAppSlugName() 41 | const appTokenName = util.getAppTokenName() 42 | await util.deleteSecret(token, appSlugName) 43 | await util.deleteSecret(token, appTokenName) 44 | core.info(`Secrets "${appSlugName}" and "${appTokenName}" were removed`) 45 | } 46 | await util.deleteToken(token); 47 | core.info("Token revoked"); 48 | } 49 | } catch (e) { 50 | core.error(e) 51 | core.setFailed(e.message) 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import { isPost } from './state' 2 | import { run, cleanup } from './action' 3 | 4 | if (!isPost) { 5 | run() 6 | } else { 7 | cleanup() 8 | } 9 | -------------------------------------------------------------------------------- /src/state.ts: -------------------------------------------------------------------------------- 1 | import { getState, saveState } from '@actions/core' 2 | 3 | export const isPost = !!getState('isPost') 4 | 5 | // Publish a variable so that when the POST action runs, it can determine 6 | // it should run the cleanup logic. This is necessary since we don't have 7 | // a separate entry point. 8 | if (!isPost) { 9 | saveState('isPost', true) 10 | } 11 | -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- 1 | import * as core from '@actions/core' 2 | import * as github from '@actions/github' 3 | import isBase64 from 'is-base64' 4 | import sodium from 'libsodium-wrappers' 5 | import { Octokit } from '@octokit/core' 6 | import { createAppAuth } from '@octokit/auth-app' 7 | 8 | export function getAppSlugName() { 9 | return core.getInput('app_slug_name') || 'BOT_NAME' 10 | } 11 | 12 | export function getAppTokenName() { 13 | return core.getInput('app_token_name') || 'BOT_TOKEN' 14 | } 15 | 16 | export async function getAppInfo() { 17 | const fallback = core.getInput('fallback') 18 | const required = fallback == null 19 | const appId = Number(core.getInput('app_id', { required })) 20 | const privateKeyInput = core.getInput('private_key', { required }) 21 | 22 | if (appId == null || privateKeyInput == null) { 23 | return Promise.resolve({ token: fallback, slug: '' }) 24 | } 25 | 26 | const privateKey = isBase64(privateKeyInput) 27 | ? Buffer.from(privateKeyInput, 'base64').toString('utf8') 28 | : privateKeyInput 29 | 30 | const auth = createAppAuth({ 31 | appId, 32 | privateKey, 33 | }) 34 | 35 | // 1. Retrieve JSON Web Token (JWT) to authenticate as app 36 | const { token: jwt } = await auth({ type: 'app' }) 37 | 38 | // 2. Get installationId of the app 39 | const octokit = github.getOctokit(jwt) 40 | const install = await octokit.rest.apps.getRepoInstallation({ 41 | ...github.context.repo, 42 | }) 43 | 44 | // 3. Retrieve installation access token 45 | const { token } = await auth({ 46 | type: 'installation', 47 | installationId: install.data.id, 48 | }) 49 | 50 | return { token, slug: install.data.app_slug } 51 | } 52 | 53 | async function makeSecret(octokit: Octokit, value: string) { 54 | const { repo } = github.context 55 | const res = await octokit.request( 56 | 'GET /repos/:owner/:repo/actions/secrets/public-key', 57 | repo, 58 | ) 59 | 60 | const { key } = res.data 61 | 62 | await sodium.ready 63 | 64 | // Convert Secret & Base64 key to Uint8Array. 65 | const binkey = sodium.from_base64(key, sodium.base64_variants.ORIGINAL) 66 | const binsec = sodium.from_string(value) 67 | 68 | // Encrypt the secret using LibSodium 69 | const encryptedBytes = sodium.crypto_box_seal(binsec, binkey) 70 | 71 | return { 72 | key_id: res.data.key_id, 73 | // Base64 the encrypted secret 74 | encrypted_value: sodium.to_base64( 75 | encryptedBytes, 76 | sodium.base64_variants.ORIGINAL, 77 | ), 78 | } 79 | } 80 | 81 | export async function createSecret( 82 | token: string, 83 | secretName: string, 84 | secretValue: string, 85 | ) { 86 | const octokit = new Octokit({ auth: token }) 87 | const secret = await makeSecret(octokit, secretValue) 88 | await octokit.request( 89 | 'PUT /repos/:owner/:repo/actions/secrets/:secret_name', 90 | { 91 | ...github.context.repo, 92 | secret_name: secretName, 93 | data: secret, 94 | }, 95 | ) 96 | } 97 | 98 | export async function deleteSecret(token: string, secretName: string) { 99 | const octokit = new Octokit({ auth: token }) 100 | await octokit.request( 101 | 'DELETE /repos/:owner/:repo/actions/secrets/:secret_name', 102 | { 103 | ...github.context.repo, 104 | secret_name: secretName, 105 | }, 106 | ) 107 | } 108 | 109 | export async function deleteToken(token: string) { 110 | const octokit = new Octokit({ auth: token }) 111 | await octokit.request( 112 | 'DELETE /installation/token', 113 | ) 114 | } 115 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@bubkoo/tsconfig", 3 | "include": ["src/**/*.ts"] 4 | } 5 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@actions/core@^1.10.0": 6 | version "1.10.0" 7 | resolved "https://registry.npmjs.org/@actions/core/-/core-1.10.0.tgz" 8 | integrity sha512-2aZDDa3zrrZbP5ZYg159sNoLRb61nQ7awl5pSvIq5Qpj81vwDzdMRKzkWJGJuwVvWpvZKx7vspJALyvaaIQyug== 9 | dependencies: 10 | "@actions/http-client" "^2.0.1" 11 | uuid "^8.3.2" 12 | 13 | "@actions/github@^5.1.1": 14 | version "5.1.1" 15 | resolved "https://registry.npmmirror.com/@actions/github/-/github-5.1.1.tgz#40b9b9e1323a5efcf4ff7dadd33d8ea51651bbcb" 16 | integrity sha512-Nk59rMDoJaV+mHCOJPXuvB1zIbomlKS0dmSIqPGxd0enAXBnOfn4VWF+CGtRCwXZG9Epa54tZA7VIRlJDS8A6g== 17 | dependencies: 18 | "@actions/http-client" "^2.0.1" 19 | "@octokit/core" "^3.6.0" 20 | "@octokit/plugin-paginate-rest" "^2.17.0" 21 | "@octokit/plugin-rest-endpoint-methods" "^5.13.0" 22 | 23 | "@actions/http-client@^2.0.1": 24 | version "2.0.1" 25 | resolved "https://registry.npmjs.org/@actions/http-client/-/http-client-2.0.1.tgz" 26 | integrity sha512-PIXiMVtz6VvyaRsGY268qvj57hXQEpsYogYOu2nrQhlf+XCGmZstmuZBbAybUl1nQGnvS1k1eEsQ69ZoD7xlSw== 27 | dependencies: 28 | tunnel "^0.0.6" 29 | 30 | "@ampproject/remapping@^2.1.0": 31 | version "2.2.0" 32 | resolved "https://registry.npmmirror.com/@ampproject/remapping/-/remapping-2.2.0.tgz#56c133824780de3174aed5ab6834f3026790154d" 33 | integrity sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== 34 | dependencies: 35 | "@jridgewell/gen-mapping" "^0.1.0" 36 | "@jridgewell/trace-mapping" "^0.3.9" 37 | 38 | "@babel/code-frame@^7.0.0": 39 | version "7.14.5" 40 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz" 41 | integrity sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw== 42 | dependencies: 43 | "@babel/highlight" "^7.14.5" 44 | 45 | "@babel/code-frame@^7.18.6": 46 | version "7.18.6" 47 | resolved "https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" 48 | integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== 49 | dependencies: 50 | "@babel/highlight" "^7.18.6" 51 | 52 | "@babel/compat-data@^7.19.3": 53 | version "7.19.4" 54 | resolved "https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.19.4.tgz#95c86de137bf0317f3a570e1b6e996b427299747" 55 | integrity sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw== 56 | 57 | "@babel/core@^7.18.6": 58 | version "7.19.6" 59 | resolved "https://registry.npmmirror.com/@babel/core/-/core-7.19.6.tgz#7122ae4f5c5a37c0946c066149abd8e75f81540f" 60 | integrity sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg== 61 | dependencies: 62 | "@ampproject/remapping" "^2.1.0" 63 | "@babel/code-frame" "^7.18.6" 64 | "@babel/generator" "^7.19.6" 65 | "@babel/helper-compilation-targets" "^7.19.3" 66 | "@babel/helper-module-transforms" "^7.19.6" 67 | "@babel/helpers" "^7.19.4" 68 | "@babel/parser" "^7.19.6" 69 | "@babel/template" "^7.18.10" 70 | "@babel/traverse" "^7.19.6" 71 | "@babel/types" "^7.19.4" 72 | convert-source-map "^1.7.0" 73 | debug "^4.1.0" 74 | gensync "^1.0.0-beta.2" 75 | json5 "^2.2.1" 76 | semver "^6.3.0" 77 | 78 | "@babel/generator@^7.19.6": 79 | version "7.19.6" 80 | resolved "https://registry.npmmirror.com/@babel/generator/-/generator-7.19.6.tgz#9e481a3fe9ca6261c972645ae3904ec0f9b34a1d" 81 | integrity sha512-oHGRUQeoX1QrKeJIKVe0hwjGqNnVYsM5Nep5zo0uE0m42sLH+Fsd2pStJ5sRM1bNyTUUoz0pe2lTeMJrb/taTA== 82 | dependencies: 83 | "@babel/types" "^7.19.4" 84 | "@jridgewell/gen-mapping" "^0.3.2" 85 | jsesc "^2.5.1" 86 | 87 | "@babel/helper-annotate-as-pure@^7.18.6": 88 | version "7.18.6" 89 | resolved "https://registry.npmmirror.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz#eaa49f6f80d5a33f9a5dd2276e6d6e451be0a6bb" 90 | integrity sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA== 91 | dependencies: 92 | "@babel/types" "^7.18.6" 93 | 94 | "@babel/helper-compilation-targets@^7.19.3": 95 | version "7.19.3" 96 | resolved "https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.3.tgz#a10a04588125675d7c7ae299af86fa1b2ee038ca" 97 | integrity sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg== 98 | dependencies: 99 | "@babel/compat-data" "^7.19.3" 100 | "@babel/helper-validator-option" "^7.18.6" 101 | browserslist "^4.21.3" 102 | semver "^6.3.0" 103 | 104 | "@babel/helper-environment-visitor@^7.18.9": 105 | version "7.18.9" 106 | resolved "https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz#0c0cee9b35d2ca190478756865bb3528422f51be" 107 | integrity sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg== 108 | 109 | "@babel/helper-function-name@^7.19.0": 110 | version "7.19.0" 111 | resolved "https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz#941574ed5390682e872e52d3f38ce9d1bef4648c" 112 | integrity sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w== 113 | dependencies: 114 | "@babel/template" "^7.18.10" 115 | "@babel/types" "^7.19.0" 116 | 117 | "@babel/helper-hoist-variables@^7.18.6": 118 | version "7.18.6" 119 | resolved "https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz#d4d2c8fb4baeaa5c68b99cc8245c56554f926678" 120 | integrity sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q== 121 | dependencies: 122 | "@babel/types" "^7.18.6" 123 | 124 | "@babel/helper-module-imports@^7.18.6": 125 | version "7.18.6" 126 | resolved "https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz#1e3ebdbbd08aad1437b428c50204db13c5a3ca6e" 127 | integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== 128 | dependencies: 129 | "@babel/types" "^7.18.6" 130 | 131 | "@babel/helper-module-transforms@^7.19.6": 132 | version "7.19.6" 133 | resolved "https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.19.6.tgz#6c52cc3ac63b70952d33ee987cbee1c9368b533f" 134 | integrity sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw== 135 | dependencies: 136 | "@babel/helper-environment-visitor" "^7.18.9" 137 | "@babel/helper-module-imports" "^7.18.6" 138 | "@babel/helper-simple-access" "^7.19.4" 139 | "@babel/helper-split-export-declaration" "^7.18.6" 140 | "@babel/helper-validator-identifier" "^7.19.1" 141 | "@babel/template" "^7.18.10" 142 | "@babel/traverse" "^7.19.6" 143 | "@babel/types" "^7.19.4" 144 | 145 | "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.19.0": 146 | version "7.19.0" 147 | resolved "https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz#4796bb14961521f0f8715990bee2fb6e51ce21bf" 148 | integrity sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw== 149 | 150 | "@babel/helper-simple-access@^7.19.4": 151 | version "7.19.4" 152 | resolved "https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz#be553f4951ac6352df2567f7daa19a0ee15668e7" 153 | integrity sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg== 154 | dependencies: 155 | "@babel/types" "^7.19.4" 156 | 157 | "@babel/helper-split-export-declaration@^7.18.6": 158 | version "7.18.6" 159 | resolved "https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz#7367949bc75b20c6d5a5d4a97bba2824ae8ef075" 160 | integrity sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA== 161 | dependencies: 162 | "@babel/types" "^7.18.6" 163 | 164 | "@babel/helper-string-parser@^7.19.4": 165 | version "7.19.4" 166 | resolved "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz#38d3acb654b4701a9b77fb0615a96f775c3a9e63" 167 | integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw== 168 | 169 | "@babel/helper-validator-identifier@^7.14.5": 170 | version "7.15.7" 171 | resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz" 172 | integrity sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w== 173 | 174 | "@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": 175 | version "7.19.1" 176 | resolved "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" 177 | integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== 178 | 179 | "@babel/helper-validator-option@^7.18.6": 180 | version "7.18.6" 181 | resolved "https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz#bf0d2b5a509b1f336099e4ff36e1a63aa5db4db8" 182 | integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw== 183 | 184 | "@babel/helpers@^7.19.4": 185 | version "7.19.4" 186 | resolved "https://registry.npmmirror.com/@babel/helpers/-/helpers-7.19.4.tgz#42154945f87b8148df7203a25c31ba9a73be46c5" 187 | integrity sha512-G+z3aOx2nfDHwX/kyVii5fJq+bgscg89/dJNWpYeKeBv3v9xX8EIabmx1k6u9LS04H7nROFVRVK+e3k0VHp+sw== 188 | dependencies: 189 | "@babel/template" "^7.18.10" 190 | "@babel/traverse" "^7.19.4" 191 | "@babel/types" "^7.19.4" 192 | 193 | "@babel/highlight@^7.14.5": 194 | version "7.14.5" 195 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz" 196 | integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg== 197 | dependencies: 198 | "@babel/helper-validator-identifier" "^7.14.5" 199 | chalk "^2.0.0" 200 | js-tokens "^4.0.0" 201 | 202 | "@babel/highlight@^7.18.6": 203 | version "7.18.6" 204 | resolved "https://registry.npmmirror.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" 205 | integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== 206 | dependencies: 207 | "@babel/helper-validator-identifier" "^7.18.6" 208 | chalk "^2.0.0" 209 | js-tokens "^4.0.0" 210 | 211 | "@babel/parser@^7.18.10", "@babel/parser@^7.19.6": 212 | version "7.19.6" 213 | resolved "https://registry.npmmirror.com/@babel/parser/-/parser-7.19.6.tgz#b923430cb94f58a7eae8facbffa9efd19130e7f8" 214 | integrity sha512-h1IUp81s2JYJ3mRkdxJgs4UvmSsRvDrx5ICSJbPvtWYv5i1nTBGcBpnog+89rAFMwvvru6E5NUHdBe01UeSzYA== 215 | 216 | "@babel/plugin-syntax-flow@^7.18.6": 217 | version "7.18.6" 218 | resolved "https://registry.npmmirror.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz#774d825256f2379d06139be0c723c4dd444f3ca1" 219 | integrity sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A== 220 | dependencies: 221 | "@babel/helper-plugin-utils" "^7.18.6" 222 | 223 | "@babel/plugin-syntax-jsx@^7.18.6": 224 | version "7.18.6" 225 | resolved "https://registry.npmmirror.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz#a8feef63b010150abd97f1649ec296e849943ca0" 226 | integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q== 227 | dependencies: 228 | "@babel/helper-plugin-utils" "^7.18.6" 229 | 230 | "@babel/plugin-transform-react-jsx@^7.18.6": 231 | version "7.19.0" 232 | resolved "https://registry.npmmirror.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.19.0.tgz#b3cbb7c3a00b92ec8ae1027910e331ba5c500eb9" 233 | integrity sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg== 234 | dependencies: 235 | "@babel/helper-annotate-as-pure" "^7.18.6" 236 | "@babel/helper-module-imports" "^7.18.6" 237 | "@babel/helper-plugin-utils" "^7.19.0" 238 | "@babel/plugin-syntax-jsx" "^7.18.6" 239 | "@babel/types" "^7.19.0" 240 | 241 | "@babel/runtime-corejs3@^7.10.2": 242 | version "7.19.6" 243 | resolved "https://registry.npmmirror.com/@babel/runtime-corejs3/-/runtime-corejs3-7.19.6.tgz#778471a71d915cf3b955a9201bebabfe924f872a" 244 | integrity sha512-oWNn1ZlGde7b4i/3tnixpH9qI0bOAACiUs+KEES4UUCnsPjVWFlWdLV/iwJuPC2qp3EowbAqsm+0XqNwnwYhxA== 245 | dependencies: 246 | core-js-pure "^3.25.1" 247 | regenerator-runtime "^0.13.4" 248 | 249 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.18.9": 250 | version "7.19.4" 251 | resolved "https://registry.npmmirror.com/@babel/runtime/-/runtime-7.19.4.tgz#a42f814502ee467d55b38dd1c256f53a7b885c78" 252 | integrity sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA== 253 | dependencies: 254 | regenerator-runtime "^0.13.4" 255 | 256 | "@babel/template@^7.18.10": 257 | version "7.18.10" 258 | resolved "https://registry.npmmirror.com/@babel/template/-/template-7.18.10.tgz#6f9134835970d1dbf0835c0d100c9f38de0c5e71" 259 | integrity sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA== 260 | dependencies: 261 | "@babel/code-frame" "^7.18.6" 262 | "@babel/parser" "^7.18.10" 263 | "@babel/types" "^7.18.10" 264 | 265 | "@babel/traverse@^7.19.4", "@babel/traverse@^7.19.6": 266 | version "7.19.6" 267 | resolved "https://registry.npmmirror.com/@babel/traverse/-/traverse-7.19.6.tgz#7b4c865611df6d99cb131eec2e8ac71656a490dc" 268 | integrity sha512-6l5HrUCzFM04mfbG09AagtYyR2P0B71B1wN7PfSPiksDPz2k5H9CBC1tcZpz2M8OxbKTPccByoOJ22rUKbpmQQ== 269 | dependencies: 270 | "@babel/code-frame" "^7.18.6" 271 | "@babel/generator" "^7.19.6" 272 | "@babel/helper-environment-visitor" "^7.18.9" 273 | "@babel/helper-function-name" "^7.19.0" 274 | "@babel/helper-hoist-variables" "^7.18.6" 275 | "@babel/helper-split-export-declaration" "^7.18.6" 276 | "@babel/parser" "^7.19.6" 277 | "@babel/types" "^7.19.4" 278 | debug "^4.1.0" 279 | globals "^11.1.0" 280 | 281 | "@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.19.0", "@babel/types@^7.19.4": 282 | version "7.19.4" 283 | resolved "https://registry.npmmirror.com/@babel/types/-/types-7.19.4.tgz#0dd5c91c573a202d600490a35b33246fed8a41c7" 284 | integrity sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw== 285 | dependencies: 286 | "@babel/helper-string-parser" "^7.19.4" 287 | "@babel/helper-validator-identifier" "^7.19.1" 288 | to-fast-properties "^2.0.0" 289 | 290 | "@bubkoo/commitlint-config@^1.0.1": 291 | version "1.0.1" 292 | resolved "https://registry.npmmirror.com/@bubkoo/commitlint-config/-/commitlint-config-1.0.1.tgz#fd525704e85e5e3e17814c3ad70c88b5f931c4c9" 293 | integrity sha512-Kh8jV91W0rI4An1MRAD5z6iIqk3soPU+2A1Mi7HUGoi5jGG2hJ/ogsOU+iMn6vvUpN2Pa/JBEP+OOUUZs0Dk7g== 294 | dependencies: 295 | "@commitlint/config-conventional" "^17.0.3" 296 | 297 | "@bubkoo/eslint-config@^1.2.0": 298 | version "1.2.0" 299 | resolved "https://registry.npmmirror.com/@bubkoo/eslint-config/-/eslint-config-1.2.0.tgz#f290ee11a841d476b43dcbfe22bcf157dc27b95c" 300 | integrity sha512-FbcBZ47KwjIPnzumVeJObOl/agA+JVWqWP2vHRfUfPJOCjGdCi3AEDew/GQ9gSesdKgACUSTG7j3ZgAHAtsfew== 301 | dependencies: 302 | "@babel/core" "^7.18.6" 303 | "@babel/plugin-syntax-flow" "^7.18.6" 304 | "@babel/plugin-transform-react-jsx" "^7.18.6" 305 | "@typescript-eslint/eslint-plugin" "^5.30.6" 306 | "@typescript-eslint/parser" "^5.30.6" 307 | eslint-config-airbnb-base "^15.0.0" 308 | eslint-config-prettier "^8.5.0" 309 | eslint-plugin-eslint-comments "^3.2.0" 310 | eslint-plugin-flowtype "^8.0.3" 311 | eslint-plugin-import "^2.26.0" 312 | eslint-plugin-jest "^26.6.0" 313 | eslint-plugin-jsx-a11y "^6.6.0" 314 | eslint-plugin-prettier "^4.2.1" 315 | eslint-plugin-promise "^6.0.0" 316 | eslint-plugin-react "^7.30.1" 317 | eslint-plugin-react-hooks "^4.6.0" 318 | eslint-plugin-unicorn "^43.0.1" 319 | 320 | "@bubkoo/tsconfig@^1.0.0": 321 | version "1.0.0" 322 | resolved "https://registry.npmmirror.com/@bubkoo/tsconfig/-/tsconfig-1.0.0.tgz#3596696fba7af8a30113a80fe7906c3d296bcb85" 323 | integrity sha512-PPnz2x4VwRXefddHepMiLgApkXv95dikonZy3fH81nFs1hjPEF65jp/ohUiV2fkf161CRoC+Ge/nquEOEoQtog== 324 | 325 | "@commitlint/config-conventional@^17.0.3": 326 | version "17.1.0" 327 | resolved "https://registry.npmmirror.com/@commitlint/config-conventional/-/config-conventional-17.1.0.tgz#9bd852766e08842bfe0fe4deb40e152eb718ec1b" 328 | integrity sha512-WU2p0c9/jLi8k2q2YrDV96Y8XVswQOceIQ/wyJvQxawJSCasLdRB3kUIYdNjOCJsxkpoUlV/b90ZPxp1MYZDiA== 329 | dependencies: 330 | conventional-changelog-conventionalcommits "^5.0.0" 331 | 332 | "@eslint/eslintrc@^1.3.3": 333 | version "1.3.3" 334 | resolved "https://registry.npmmirror.com/@eslint/eslintrc/-/eslintrc-1.3.3.tgz#2b044ab39fdfa75b4688184f9e573ce3c5b0ff95" 335 | integrity sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg== 336 | dependencies: 337 | ajv "^6.12.4" 338 | debug "^4.3.2" 339 | espree "^9.4.0" 340 | globals "^13.15.0" 341 | ignore "^5.2.0" 342 | import-fresh "^3.2.1" 343 | js-yaml "^4.1.0" 344 | minimatch "^3.1.2" 345 | strip-json-comments "^3.1.1" 346 | 347 | "@humanwhocodes/config-array@^0.11.6": 348 | version "0.11.6" 349 | resolved "https://registry.npmmirror.com/@humanwhocodes/config-array/-/config-array-0.11.6.tgz#6a51d603a3aaf8d4cf45b42b3f2ac9318a4adc4b" 350 | integrity sha512-jJr+hPTJYKyDILJfhNSHsjiwXYf26Flsz8DvNndOsHs5pwSnpGUEy8yzF0JYhCEvTDdV2vuOK5tt8BVhwO5/hg== 351 | dependencies: 352 | "@humanwhocodes/object-schema" "^1.2.1" 353 | debug "^4.1.1" 354 | minimatch "^3.0.4" 355 | 356 | "@humanwhocodes/module-importer@^1.0.1": 357 | version "1.0.1" 358 | resolved "https://registry.npmmirror.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" 359 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 360 | 361 | "@humanwhocodes/object-schema@^1.2.1": 362 | version "1.2.1" 363 | resolved "https://registry.npmmirror.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" 364 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 365 | 366 | "@jridgewell/gen-mapping@^0.1.0": 367 | version "0.1.1" 368 | resolved "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz#e5d2e450306a9491e3bd77e323e38d7aff315996" 369 | integrity sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== 370 | dependencies: 371 | "@jridgewell/set-array" "^1.0.0" 372 | "@jridgewell/sourcemap-codec" "^1.4.10" 373 | 374 | "@jridgewell/gen-mapping@^0.3.2": 375 | version "0.3.2" 376 | resolved "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz#c1aedc61e853f2bb9f5dfe6d4442d3b565b253b9" 377 | integrity sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== 378 | dependencies: 379 | "@jridgewell/set-array" "^1.0.1" 380 | "@jridgewell/sourcemap-codec" "^1.4.10" 381 | "@jridgewell/trace-mapping" "^0.3.9" 382 | 383 | "@jridgewell/resolve-uri@3.1.0": 384 | version "3.1.0" 385 | resolved "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz#2203b118c157721addfe69d47b70465463066d78" 386 | integrity sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w== 387 | 388 | "@jridgewell/set-array@^1.0.0", "@jridgewell/set-array@^1.0.1": 389 | version "1.1.2" 390 | resolved "https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72" 391 | integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== 392 | 393 | "@jridgewell/sourcemap-codec@1.4.14", "@jridgewell/sourcemap-codec@^1.4.10": 394 | version "1.4.14" 395 | resolved "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz#add4c98d341472a289190b424efbdb096991bb24" 396 | integrity sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw== 397 | 398 | "@jridgewell/trace-mapping@^0.3.9": 399 | version "0.3.17" 400 | resolved "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz#793041277af9073b0951a7fe0f0d8c4c98c36985" 401 | integrity sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g== 402 | dependencies: 403 | "@jridgewell/resolve-uri" "3.1.0" 404 | "@jridgewell/sourcemap-codec" "1.4.14" 405 | 406 | "@nodelib/fs.scandir@2.1.5": 407 | version "2.1.5" 408 | resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" 409 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 410 | dependencies: 411 | "@nodelib/fs.stat" "2.0.5" 412 | run-parallel "^1.1.9" 413 | 414 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 415 | version "2.0.5" 416 | resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" 417 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 418 | 419 | "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": 420 | version "1.2.8" 421 | resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" 422 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 423 | dependencies: 424 | "@nodelib/fs.scandir" "2.1.5" 425 | fastq "^1.6.0" 426 | 427 | "@octokit/auth-app@^4.0.7": 428 | version "4.0.7" 429 | resolved "https://registry.npmmirror.com/@octokit/auth-app/-/auth-app-4.0.7.tgz#417c327e6a7ada1e6e9651db681146f8c12728e3" 430 | integrity sha512-hjjVCoI/+1oLminVHJPPexguYb9FP4Q60hEHExgy1uAKMMJ5Zf8iJIeRJlIIqneTb4vt7NvUTEj4YDxBLZ1FLg== 431 | dependencies: 432 | "@octokit/auth-oauth-app" "^5.0.0" 433 | "@octokit/auth-oauth-user" "^2.0.0" 434 | "@octokit/request" "^6.0.0" 435 | "@octokit/request-error" "^3.0.0" 436 | "@octokit/types" "^8.0.0" 437 | "@types/lru-cache" "^5.1.0" 438 | deprecation "^2.3.1" 439 | lru-cache "^6.0.0" 440 | universal-github-app-jwt "^1.0.1" 441 | universal-user-agent "^6.0.0" 442 | 443 | "@octokit/auth-oauth-app@^5.0.0": 444 | version "5.0.4" 445 | resolved "https://registry.npmmirror.com/@octokit/auth-oauth-app/-/auth-oauth-app-5.0.4.tgz#ebd9a38f75381093d1a5e08e05b70b94f0918277" 446 | integrity sha512-zlWuii5hAN50vsV6SJC+uIJ7SMhyWjQMEmKJQxkmNDlieE9LjnkZnbOjqRsfcG7VO7WTl4K8ccpo/3A7Kdpmrw== 447 | dependencies: 448 | "@octokit/auth-oauth-device" "^4.0.0" 449 | "@octokit/auth-oauth-user" "^2.0.0" 450 | "@octokit/request" "^6.0.0" 451 | "@octokit/types" "^8.0.0" 452 | "@types/btoa-lite" "^1.0.0" 453 | btoa-lite "^1.0.0" 454 | universal-user-agent "^6.0.0" 455 | 456 | "@octokit/auth-oauth-device@^4.0.0": 457 | version "4.0.3" 458 | resolved "https://registry.npmmirror.com/@octokit/auth-oauth-device/-/auth-oauth-device-4.0.3.tgz#00ce77233517e0d7d39e42a02652f64337d9df81" 459 | integrity sha512-KPTx5nMntKjNZzzltO3X4T68v22rd7Cp/TcLJXQE2U8aXPcZ9LFuww9q9Q5WUNSu3jwi3lRwzfkPguRfz1R8Vg== 460 | dependencies: 461 | "@octokit/oauth-methods" "^2.0.0" 462 | "@octokit/request" "^6.0.0" 463 | "@octokit/types" "^8.0.0" 464 | universal-user-agent "^6.0.0" 465 | 466 | "@octokit/auth-oauth-user@^2.0.0": 467 | version "2.0.4" 468 | resolved "https://registry.npmmirror.com/@octokit/auth-oauth-user/-/auth-oauth-user-2.0.4.tgz#88f060ec678d7d493695af8d827e115dd064e212" 469 | integrity sha512-HrbDzTPqz6GcGSOUkR+wSeF3vEqsb9NMsmPja/qqqdiGmlk/Czkxctc3KeWYogHonp62Ml4kjz2VxKawrFsadQ== 470 | dependencies: 471 | "@octokit/auth-oauth-device" "^4.0.0" 472 | "@octokit/oauth-methods" "^2.0.0" 473 | "@octokit/request" "^6.0.0" 474 | "@octokit/types" "^8.0.0" 475 | btoa-lite "^1.0.0" 476 | universal-user-agent "^6.0.0" 477 | 478 | "@octokit/auth-token@^2.4.4": 479 | version "2.5.0" 480 | resolved "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.5.0.tgz" 481 | integrity sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g== 482 | dependencies: 483 | "@octokit/types" "^6.0.3" 484 | 485 | "@octokit/auth-token@^3.0.0": 486 | version "3.0.2" 487 | resolved "https://registry.npmmirror.com/@octokit/auth-token/-/auth-token-3.0.2.tgz#a0fc8de149fd15876e1ac78f6525c1c5ab48435f" 488 | integrity sha512-pq7CwIMV1kmzkFTimdwjAINCXKTajZErLB4wMLYapR2nuB/Jpr66+05wOTZMSCBXP6n4DdDWT2W19Bm17vU69Q== 489 | dependencies: 490 | "@octokit/types" "^8.0.0" 491 | 492 | "@octokit/core@^3.6.0": 493 | version "3.6.0" 494 | resolved "https://registry.npmmirror.com/@octokit/core/-/core-3.6.0.tgz#3376cb9f3008d9b3d110370d90e0a1fcd5fe6085" 495 | integrity sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q== 496 | dependencies: 497 | "@octokit/auth-token" "^2.4.4" 498 | "@octokit/graphql" "^4.5.8" 499 | "@octokit/request" "^5.6.3" 500 | "@octokit/request-error" "^2.0.5" 501 | "@octokit/types" "^6.0.3" 502 | before-after-hook "^2.2.0" 503 | universal-user-agent "^6.0.0" 504 | 505 | "@octokit/core@^4.1.0": 506 | version "4.1.0" 507 | resolved "https://registry.npmmirror.com/@octokit/core/-/core-4.1.0.tgz#b6b03a478f1716de92b3f4ec4fd64d05ba5a9251" 508 | integrity sha512-Czz/59VefU+kKDy+ZfDwtOIYIkFjExOKf+HA92aiTZJ6EfWpFzYQWw0l54ji8bVmyhc+mGaLUbSUmXazG7z5OQ== 509 | dependencies: 510 | "@octokit/auth-token" "^3.0.0" 511 | "@octokit/graphql" "^5.0.0" 512 | "@octokit/request" "^6.0.0" 513 | "@octokit/request-error" "^3.0.0" 514 | "@octokit/types" "^8.0.0" 515 | before-after-hook "^2.2.0" 516 | universal-user-agent "^6.0.0" 517 | 518 | "@octokit/endpoint@^6.0.1": 519 | version "6.0.12" 520 | resolved "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.12.tgz" 521 | integrity sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA== 522 | dependencies: 523 | "@octokit/types" "^6.0.3" 524 | is-plain-object "^5.0.0" 525 | universal-user-agent "^6.0.0" 526 | 527 | "@octokit/endpoint@^7.0.0": 528 | version "7.0.3" 529 | resolved "https://registry.npmmirror.com/@octokit/endpoint/-/endpoint-7.0.3.tgz#0b96035673a9e3bedf8bab8f7335de424a2147ed" 530 | integrity sha512-57gRlb28bwTsdNXq+O3JTQ7ERmBTuik9+LelgcLIVfYwf235VHbN9QNo4kXExtp/h8T423cR5iJThKtFYxC7Lw== 531 | dependencies: 532 | "@octokit/types" "^8.0.0" 533 | is-plain-object "^5.0.0" 534 | universal-user-agent "^6.0.0" 535 | 536 | "@octokit/graphql@^4.5.8": 537 | version "4.8.0" 538 | resolved "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.8.0.tgz" 539 | integrity sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg== 540 | dependencies: 541 | "@octokit/request" "^5.6.0" 542 | "@octokit/types" "^6.0.3" 543 | universal-user-agent "^6.0.0" 544 | 545 | "@octokit/graphql@^5.0.0": 546 | version "5.0.4" 547 | resolved "https://registry.npmmirror.com/@octokit/graphql/-/graphql-5.0.4.tgz#519dd5c05123868276f3ae4e50ad565ed7dff8c8" 548 | integrity sha512-amO1M5QUQgYQo09aStR/XO7KAl13xpigcy/kI8/N1PnZYSS69fgte+xA4+c2DISKqUZfsh0wwjc2FaCt99L41A== 549 | dependencies: 550 | "@octokit/request" "^6.0.0" 551 | "@octokit/types" "^8.0.0" 552 | universal-user-agent "^6.0.0" 553 | 554 | "@octokit/oauth-authorization-url@^5.0.0": 555 | version "5.0.0" 556 | resolved "https://registry.npmmirror.com/@octokit/oauth-authorization-url/-/oauth-authorization-url-5.0.0.tgz#029626ce87f3b31addb98cd0d2355c2381a1c5a1" 557 | integrity sha512-y1WhN+ERDZTh0qZ4SR+zotgsQUE1ysKnvBt1hvDRB2WRzYtVKQjn97HEPzoehh66Fj9LwNdlZh+p6TJatT0zzg== 558 | 559 | "@octokit/oauth-methods@^2.0.0": 560 | version "2.0.4" 561 | resolved "https://registry.npmmirror.com/@octokit/oauth-methods/-/oauth-methods-2.0.4.tgz#6abd9593ca7f91fe5068375a363bd70abd5516dc" 562 | integrity sha512-RDSa6XL+5waUVrYSmOlYROtPq0+cfwppP4VaQY/iIei3xlFb0expH6YNsxNrZktcLhJWSpm9uzeom+dQrXlS3A== 563 | dependencies: 564 | "@octokit/oauth-authorization-url" "^5.0.0" 565 | "@octokit/request" "^6.0.0" 566 | "@octokit/request-error" "^3.0.0" 567 | "@octokit/types" "^8.0.0" 568 | btoa-lite "^1.0.0" 569 | 570 | "@octokit/openapi-types@^10.2.2": 571 | version "10.2.2" 572 | resolved "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-10.2.2.tgz" 573 | integrity sha512-EVcXQ+ZrC04cg17AMg1ofocWMxHDn17cB66ZHgYc0eUwjFtxS0oBzkyw2VqIrHBwVgtfoYrq1WMQfQmMjUwthw== 574 | 575 | "@octokit/openapi-types@^12.11.0": 576 | version "12.11.0" 577 | resolved "https://registry.npmmirror.com/@octokit/openapi-types/-/openapi-types-12.11.0.tgz#da5638d64f2b919bca89ce6602d059f1b52d3ef0" 578 | integrity sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ== 579 | 580 | "@octokit/openapi-types@^14.0.0": 581 | version "14.0.0" 582 | resolved "https://registry.npmmirror.com/@octokit/openapi-types/-/openapi-types-14.0.0.tgz#949c5019028c93f189abbc2fb42f333290f7134a" 583 | integrity sha512-HNWisMYlR8VCnNurDU6os2ikx0s0VyEjDYHNS/h4cgb8DeOxQ0n72HyinUtdDVxJhFy3FWLGl0DJhfEWk3P5Iw== 584 | 585 | "@octokit/plugin-paginate-rest@^2.17.0": 586 | version "2.21.3" 587 | resolved "https://registry.npmmirror.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.21.3.tgz#7f12532797775640dbb8224da577da7dc210c87e" 588 | integrity sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw== 589 | dependencies: 590 | "@octokit/types" "^6.40.0" 591 | 592 | "@octokit/plugin-rest-endpoint-methods@^5.13.0": 593 | version "5.16.2" 594 | resolved "https://registry.npmmirror.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-5.16.2.tgz#7ee8bf586df97dd6868cf68f641354e908c25342" 595 | integrity sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw== 596 | dependencies: 597 | "@octokit/types" "^6.39.0" 598 | deprecation "^2.3.1" 599 | 600 | "@octokit/request-error@^2.0.5", "@octokit/request-error@^2.1.0": 601 | version "2.1.0" 602 | resolved "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.1.0.tgz" 603 | integrity sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg== 604 | dependencies: 605 | "@octokit/types" "^6.0.3" 606 | deprecation "^2.0.0" 607 | once "^1.4.0" 608 | 609 | "@octokit/request-error@^3.0.0": 610 | version "3.0.2" 611 | resolved "https://registry.npmmirror.com/@octokit/request-error/-/request-error-3.0.2.tgz#f74c0f163d19463b87528efe877216c41d6deb0a" 612 | integrity sha512-WMNOFYrSaX8zXWoJg9u/pKgWPo94JXilMLb2VManNOby9EZxrQaBe/QSC4a1TzpAlpxofg2X/jMnCyZgL6y7eg== 613 | dependencies: 614 | "@octokit/types" "^8.0.0" 615 | deprecation "^2.0.0" 616 | once "^1.4.0" 617 | 618 | "@octokit/request@^5.6.0": 619 | version "5.6.1" 620 | resolved "https://registry.npmjs.org/@octokit/request/-/request-5.6.1.tgz" 621 | integrity sha512-Ls2cfs1OfXaOKzkcxnqw5MR6drMA/zWX/LIS/p8Yjdz7QKTPQLMsB3R+OvoxE6XnXeXEE2X7xe4G4l4X0gRiKQ== 622 | dependencies: 623 | "@octokit/endpoint" "^6.0.1" 624 | "@octokit/request-error" "^2.1.0" 625 | "@octokit/types" "^6.16.1" 626 | is-plain-object "^5.0.0" 627 | node-fetch "^2.6.1" 628 | universal-user-agent "^6.0.0" 629 | 630 | "@octokit/request@^5.6.3": 631 | version "5.6.3" 632 | resolved "https://registry.npmmirror.com/@octokit/request/-/request-5.6.3.tgz#19a022515a5bba965ac06c9d1334514eb50c48b0" 633 | integrity sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A== 634 | dependencies: 635 | "@octokit/endpoint" "^6.0.1" 636 | "@octokit/request-error" "^2.1.0" 637 | "@octokit/types" "^6.16.1" 638 | is-plain-object "^5.0.0" 639 | node-fetch "^2.6.7" 640 | universal-user-agent "^6.0.0" 641 | 642 | "@octokit/request@^6.0.0": 643 | version "6.2.2" 644 | resolved "https://registry.npmmirror.com/@octokit/request/-/request-6.2.2.tgz#a2ba5ac22bddd5dcb3f539b618faa05115c5a255" 645 | integrity sha512-6VDqgj0HMc2FUX2awIs+sM6OwLgwHvAi4KCK3mT2H2IKRt6oH9d0fej5LluF5mck1lRR/rFWN0YIDSYXYSylbw== 646 | dependencies: 647 | "@octokit/endpoint" "^7.0.0" 648 | "@octokit/request-error" "^3.0.0" 649 | "@octokit/types" "^8.0.0" 650 | is-plain-object "^5.0.0" 651 | node-fetch "^2.6.7" 652 | universal-user-agent "^6.0.0" 653 | 654 | "@octokit/types@^6.0.3", "@octokit/types@^6.16.1": 655 | version "6.28.1" 656 | resolved "https://registry.npmjs.org/@octokit/types/-/types-6.28.1.tgz" 657 | integrity sha512-XlxDoQLFO5JnFZgKVQTYTvXRsQFfr/GwDUU108NJ9R5yFPkA2qXhTJjYuul3vE4eLXP40FA2nysOu2zd6boE+w== 658 | dependencies: 659 | "@octokit/openapi-types" "^10.2.2" 660 | 661 | "@octokit/types@^6.39.0", "@octokit/types@^6.40.0": 662 | version "6.41.0" 663 | resolved "https://registry.npmmirror.com/@octokit/types/-/types-6.41.0.tgz#e58ef78d78596d2fb7df9c6259802464b5f84a04" 664 | integrity sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg== 665 | dependencies: 666 | "@octokit/openapi-types" "^12.11.0" 667 | 668 | "@octokit/types@^8.0.0": 669 | version "8.0.0" 670 | resolved "https://registry.npmmirror.com/@octokit/types/-/types-8.0.0.tgz#93f0b865786c4153f0f6924da067fe0bb7426a9f" 671 | integrity sha512-65/TPpOJP1i3K4lBJMnWqPUJ6zuOtzhtagDvydAWbEXpbFYA0oMKKyLb95NFZZP0lSh/4b6K+DQlzvYQJQQePg== 672 | dependencies: 673 | "@octokit/openapi-types" "^14.0.0" 674 | 675 | "@types/btoa-lite@^1.0.0": 676 | version "1.0.0" 677 | resolved "https://registry.npmjs.org/@types/btoa-lite/-/btoa-lite-1.0.0.tgz" 678 | integrity sha512-wJsiX1tosQ+J5+bY5LrSahHxr2wT+uME5UDwdN1kg4frt40euqA+wzECkmq4t5QbveHiJepfdThgQrPw6KiSlg== 679 | 680 | "@types/is-base64@^1.1.0": 681 | version "1.1.1" 682 | resolved "https://registry.npmjs.org/@types/is-base64/-/is-base64-1.1.1.tgz" 683 | integrity sha512-JgnGhP+MeSHEQmvxcobcwPEP4Ew56voiq9/0hmP/41lyQ/3gBw/ZCIRy2v+QkEOdeCl58lRcrf6+Y6WMlJGETA== 684 | 685 | "@types/json-schema@^7.0.9": 686 | version "7.0.11" 687 | resolved "https://registry.npmmirror.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" 688 | integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== 689 | 690 | "@types/json5@^0.0.29": 691 | version "0.0.29" 692 | resolved "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz" 693 | integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= 694 | 695 | "@types/jsonwebtoken@^8.3.3": 696 | version "8.5.5" 697 | resolved "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-8.5.5.tgz" 698 | integrity sha512-OGqtHQ7N5/Ap/TUwO6IgHDuLiAoTmHhGpNvgkCm/F4N6pKzx/RBSfr2OXZSwC6vkfnsEdb6+7DNZVtiXiwdwFw== 699 | dependencies: 700 | "@types/node" "*" 701 | 702 | "@types/libsodium-wrappers@^0.7.10": 703 | version "0.7.10" 704 | resolved "https://registry.npmmirror.com/@types/libsodium-wrappers/-/libsodium-wrappers-0.7.10.tgz" 705 | integrity sha512-BqI9B92u+cM3ccp8mpHf+HzJ8fBlRwdmyd6+fz3p99m3V6ifT5O3zmOMi612PGkpeFeG/G6loxUnzlDNhfjPSA== 706 | 707 | "@types/lru-cache@^5.1.0": 708 | version "5.1.1" 709 | resolved "https://registry.npmjs.org/@types/lru-cache/-/lru-cache-5.1.1.tgz" 710 | integrity sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw== 711 | 712 | "@types/minimatch@^3.0.3": 713 | version "3.0.5" 714 | resolved "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz" 715 | integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ== 716 | 717 | "@types/node@*": 718 | version "16.9.2" 719 | resolved "https://registry.npmjs.org/@types/node/-/node-16.9.2.tgz" 720 | integrity sha512-ZHty/hKoOLZvSz6BtP1g7tc7nUeJhoCf3flLjh8ZEv1vFKBWHXcnMbJMyN/pftSljNyy0kNW/UqI3DccnBnZ8w== 721 | 722 | "@types/node@^18.11.9": 723 | version "18.11.9" 724 | resolved "https://registry.npmmirror.com/@types/node/-/node-18.11.9.tgz#02d013de7058cea16d36168ef2fc653464cfbad4" 725 | integrity sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg== 726 | 727 | "@types/normalize-package-data@^2.4.0": 728 | version "2.4.1" 729 | resolved "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz" 730 | integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== 731 | 732 | "@types/semver@^7.3.12": 733 | version "7.3.13" 734 | resolved "https://registry.npmmirror.com/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91" 735 | integrity sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw== 736 | 737 | "@typescript-eslint/eslint-plugin@^5.30.6": 738 | version "5.41.0" 739 | resolved "https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.41.0.tgz#f8eeb1c6bb2549f795f3ba71aec3b38d1ab6b1e1" 740 | integrity sha512-DXUS22Y57/LAFSg3x7Vi6RNAuLpTXwxB9S2nIA7msBb/Zt8p7XqMwdpdc1IU7CkOQUPgAqR5fWvxuKCbneKGmA== 741 | dependencies: 742 | "@typescript-eslint/scope-manager" "5.41.0" 743 | "@typescript-eslint/type-utils" "5.41.0" 744 | "@typescript-eslint/utils" "5.41.0" 745 | debug "^4.3.4" 746 | ignore "^5.2.0" 747 | regexpp "^3.2.0" 748 | semver "^7.3.7" 749 | tsutils "^3.21.0" 750 | 751 | "@typescript-eslint/parser@^5.30.6": 752 | version "5.41.0" 753 | resolved "https://registry.npmmirror.com/@typescript-eslint/parser/-/parser-5.41.0.tgz#0414a6405007e463dc527b459af1f19430382d67" 754 | integrity sha512-HQVfix4+RL5YRWZboMD1pUfFN8MpRH4laziWkkAzyO1fvNOY/uinZcvo3QiFJVS/siNHupV8E5+xSwQZrl6PZA== 755 | dependencies: 756 | "@typescript-eslint/scope-manager" "5.41.0" 757 | "@typescript-eslint/types" "5.41.0" 758 | "@typescript-eslint/typescript-estree" "5.41.0" 759 | debug "^4.3.4" 760 | 761 | "@typescript-eslint/scope-manager@5.41.0": 762 | version "5.41.0" 763 | resolved "https://registry.npmmirror.com/@typescript-eslint/scope-manager/-/scope-manager-5.41.0.tgz#28e3a41d626288d0628be14cf9de8d49fc30fadf" 764 | integrity sha512-xOxPJCnuktUkY2xoEZBKXO5DBCugFzjrVndKdUnyQr3+9aDWZReKq9MhaoVnbL+maVwWJu/N0SEtrtEUNb62QQ== 765 | dependencies: 766 | "@typescript-eslint/types" "5.41.0" 767 | "@typescript-eslint/visitor-keys" "5.41.0" 768 | 769 | "@typescript-eslint/type-utils@5.41.0": 770 | version "5.41.0" 771 | resolved "https://registry.npmmirror.com/@typescript-eslint/type-utils/-/type-utils-5.41.0.tgz#2371601171e9f26a4e6da918a7913f7266890cdf" 772 | integrity sha512-L30HNvIG6A1Q0R58e4hu4h+fZqaO909UcnnPbwKiN6Rc3BUEx6ez2wgN7aC0cBfcAjZfwkzE+E2PQQ9nEuoqfA== 773 | dependencies: 774 | "@typescript-eslint/typescript-estree" "5.41.0" 775 | "@typescript-eslint/utils" "5.41.0" 776 | debug "^4.3.4" 777 | tsutils "^3.21.0" 778 | 779 | "@typescript-eslint/types@5.41.0": 780 | version "5.41.0" 781 | resolved "https://registry.npmmirror.com/@typescript-eslint/types/-/types-5.41.0.tgz#6800abebc4e6abaf24cdf220fb4ce28f4ab09a85" 782 | integrity sha512-5BejraMXMC+2UjefDvrH0Fo/eLwZRV6859SXRg+FgbhA0R0l6lDqDGAQYhKbXhPN2ofk2kY5sgGyLNL907UXpA== 783 | 784 | "@typescript-eslint/typescript-estree@5.41.0": 785 | version "5.41.0" 786 | resolved "https://registry.npmmirror.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.41.0.tgz#bf5c6b3138adbdc73ba4871d060ae12c59366c61" 787 | integrity sha512-SlzFYRwFSvswzDSQ/zPkIWcHv8O5y42YUskko9c4ki+fV6HATsTODUPbRbcGDFYP86gaJL5xohUEytvyNNcXWg== 788 | dependencies: 789 | "@typescript-eslint/types" "5.41.0" 790 | "@typescript-eslint/visitor-keys" "5.41.0" 791 | debug "^4.3.4" 792 | globby "^11.1.0" 793 | is-glob "^4.0.3" 794 | semver "^7.3.7" 795 | tsutils "^3.21.0" 796 | 797 | "@typescript-eslint/utils@5.41.0", "@typescript-eslint/utils@^5.10.0": 798 | version "5.41.0" 799 | resolved "https://registry.npmmirror.com/@typescript-eslint/utils/-/utils-5.41.0.tgz#f41ae5883994a249d00b2ce69f4188f3a23fa0f9" 800 | integrity sha512-QlvfwaN9jaMga9EBazQ+5DDx/4sAdqDkcs05AsQHMaopluVCUyu1bTRUVKzXbgjDlrRAQrYVoi/sXJ9fmG+KLQ== 801 | dependencies: 802 | "@types/json-schema" "^7.0.9" 803 | "@types/semver" "^7.3.12" 804 | "@typescript-eslint/scope-manager" "5.41.0" 805 | "@typescript-eslint/types" "5.41.0" 806 | "@typescript-eslint/typescript-estree" "5.41.0" 807 | eslint-scope "^5.1.1" 808 | eslint-utils "^3.0.0" 809 | semver "^7.3.7" 810 | 811 | "@typescript-eslint/visitor-keys@5.41.0": 812 | version "5.41.0" 813 | resolved "https://registry.npmmirror.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.41.0.tgz#d3510712bc07d5540160ed3c0f8f213b73e3bcd9" 814 | integrity sha512-vilqeHj267v8uzzakbm13HkPMl7cbYpKVjgFWZPIOHIJHZtinvypUhJ5xBXfWYg4eFKqztbMMpOgFpT9Gfx4fw== 815 | dependencies: 816 | "@typescript-eslint/types" "5.41.0" 817 | eslint-visitor-keys "^3.3.0" 818 | 819 | "@vercel/ncc@^0.34.0": 820 | version "0.34.0" 821 | resolved "https://registry.npmmirror.com/@vercel/ncc/-/ncc-0.34.0.tgz#d0139528320e46670d949c82967044a8f66db054" 822 | integrity sha512-G9h5ZLBJ/V57Ou9vz5hI8pda/YQX5HQszCs3AmIus3XzsmRn/0Ptic5otD3xVST8QLKk7AMk7AqpsyQGN7MZ9A== 823 | 824 | acorn-jsx@^5.3.2: 825 | version "5.3.2" 826 | resolved "https://registry.npmmirror.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 827 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 828 | 829 | acorn@^8.8.0: 830 | version "8.8.1" 831 | resolved "https://registry.npmmirror.com/acorn/-/acorn-8.8.1.tgz#0a3f9cbecc4ec3bea6f0a80b66ae8dd2da250b73" 832 | integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA== 833 | 834 | ajv@^6.10.0, ajv@^6.12.4: 835 | version "6.12.6" 836 | resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" 837 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 838 | dependencies: 839 | fast-deep-equal "^3.1.1" 840 | fast-json-stable-stringify "^2.0.0" 841 | json-schema-traverse "^0.4.1" 842 | uri-js "^4.2.2" 843 | 844 | ansi-regex@^5.0.1: 845 | version "5.0.1" 846 | resolved "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 847 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 848 | 849 | ansi-styles@^3.2.1: 850 | version "3.2.1" 851 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" 852 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 853 | dependencies: 854 | color-convert "^1.9.0" 855 | 856 | ansi-styles@^4.1.0: 857 | version "4.3.0" 858 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" 859 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 860 | dependencies: 861 | color-convert "^2.0.1" 862 | 863 | argparse@^2.0.1: 864 | version "2.0.1" 865 | resolved "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 866 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 867 | 868 | aria-query@^4.2.2: 869 | version "4.2.2" 870 | resolved "https://registry.npmmirror.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b" 871 | integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA== 872 | dependencies: 873 | "@babel/runtime" "^7.10.2" 874 | "@babel/runtime-corejs3" "^7.10.2" 875 | 876 | array-differ@^3.0.0: 877 | version "3.0.0" 878 | resolved "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz" 879 | integrity sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg== 880 | 881 | array-ify@^1.0.0: 882 | version "1.0.0" 883 | resolved "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz" 884 | integrity sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4= 885 | 886 | array-includes@^3.1.4, array-includes@^3.1.5: 887 | version "3.1.5" 888 | resolved "https://registry.npmmirror.com/array-includes/-/array-includes-3.1.5.tgz#2c320010db8d31031fd2a5f6b3bbd4b1aad31bdb" 889 | integrity sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ== 890 | dependencies: 891 | call-bind "^1.0.2" 892 | define-properties "^1.1.4" 893 | es-abstract "^1.19.5" 894 | get-intrinsic "^1.1.1" 895 | is-string "^1.0.7" 896 | 897 | array-union@^2.1.0: 898 | version "2.1.0" 899 | resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" 900 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 901 | 902 | array.prototype.flat@^1.2.5: 903 | version "1.3.0" 904 | resolved "https://registry.npmmirror.com/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz#0b0c1567bf57b38b56b4c97b8aa72ab45e4adc7b" 905 | integrity sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw== 906 | dependencies: 907 | call-bind "^1.0.2" 908 | define-properties "^1.1.3" 909 | es-abstract "^1.19.2" 910 | es-shim-unscopables "^1.0.0" 911 | 912 | array.prototype.flatmap@^1.3.0: 913 | version "1.3.0" 914 | resolved "https://registry.npmmirror.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz#a7e8ed4225f4788a70cd910abcf0791e76a5534f" 915 | integrity sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg== 916 | dependencies: 917 | call-bind "^1.0.2" 918 | define-properties "^1.1.3" 919 | es-abstract "^1.19.2" 920 | es-shim-unscopables "^1.0.0" 921 | 922 | arrify@^2.0.1: 923 | version "2.0.1" 924 | resolved "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz" 925 | integrity sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug== 926 | 927 | ast-types-flow@^0.0.7: 928 | version "0.0.7" 929 | resolved "https://registry.npmmirror.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" 930 | integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== 931 | 932 | axe-core@^4.4.3: 933 | version "4.5.0" 934 | resolved "https://registry.npmmirror.com/axe-core/-/axe-core-4.5.0.tgz#6efe2ecdba205fcc9d7ddb3d48c2cf630f70eb5e" 935 | integrity sha512-4+rr8eQ7+XXS5nZrKcMO/AikHL0hVqy+lHWAnE3xdHl+aguag8SOQ6eEqLexwLNWgXIMfunGuD3ON1/6Kyet0A== 936 | 937 | axobject-query@^2.2.0: 938 | version "2.2.0" 939 | resolved "https://registry.npmmirror.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be" 940 | integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA== 941 | 942 | balanced-match@^1.0.0: 943 | version "1.0.2" 944 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" 945 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 946 | 947 | before-after-hook@^2.2.0: 948 | version "2.2.2" 949 | resolved "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.2.tgz" 950 | integrity sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ== 951 | 952 | brace-expansion@^1.1.7: 953 | version "1.1.11" 954 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" 955 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 956 | dependencies: 957 | balanced-match "^1.0.0" 958 | concat-map "0.0.1" 959 | 960 | braces@^3.0.1: 961 | version "3.0.2" 962 | resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" 963 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 964 | dependencies: 965 | fill-range "^7.0.1" 966 | 967 | browserslist@^4.21.3: 968 | version "4.21.4" 969 | resolved "https://registry.npmmirror.com/browserslist/-/browserslist-4.21.4.tgz#e7496bbc67b9e39dd0f98565feccdcb0d4ff6987" 970 | integrity sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw== 971 | dependencies: 972 | caniuse-lite "^1.0.30001400" 973 | electron-to-chromium "^1.4.251" 974 | node-releases "^2.0.6" 975 | update-browserslist-db "^1.0.9" 976 | 977 | btoa-lite@^1.0.0: 978 | version "1.0.0" 979 | resolved "https://registry.npmjs.org/btoa-lite/-/btoa-lite-1.0.0.tgz" 980 | integrity sha1-M3dm2hWAEhD92VbCLpxokaudAzc= 981 | 982 | buffer-equal-constant-time@1.0.1: 983 | version "1.0.1" 984 | resolved "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz" 985 | integrity sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk= 986 | 987 | builtin-modules@^3.3.0: 988 | version "3.3.0" 989 | resolved "https://registry.npmmirror.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6" 990 | integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw== 991 | 992 | call-bind@^1.0.0, call-bind@^1.0.2: 993 | version "1.0.2" 994 | resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" 995 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 996 | dependencies: 997 | function-bind "^1.1.1" 998 | get-intrinsic "^1.0.2" 999 | 1000 | callsites@^3.0.0: 1001 | version "3.1.0" 1002 | resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" 1003 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 1004 | 1005 | caniuse-lite@^1.0.30001400: 1006 | version "1.0.30001425" 1007 | resolved "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001425.tgz#52917791a453eb3265143d2cd08d80629e82c735" 1008 | integrity sha512-/pzFv0OmNG6W0ym80P3NtapU0QEiDS3VuYAZMGoLLqiC7f6FJFe1MjpQDREGApeenD9wloeytmVDj+JLXPC6qw== 1009 | 1010 | chalk@^2.0.0, chalk@^2.4.1: 1011 | version "2.4.2" 1012 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" 1013 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 1014 | dependencies: 1015 | ansi-styles "^3.2.1" 1016 | escape-string-regexp "^1.0.5" 1017 | supports-color "^5.3.0" 1018 | 1019 | chalk@^3.0.0: 1020 | version "3.0.0" 1021 | resolved "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz" 1022 | integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== 1023 | dependencies: 1024 | ansi-styles "^4.1.0" 1025 | supports-color "^7.1.0" 1026 | 1027 | chalk@^4.0.0: 1028 | version "4.1.2" 1029 | resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" 1030 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 1031 | dependencies: 1032 | ansi-styles "^4.1.0" 1033 | supports-color "^7.1.0" 1034 | 1035 | ci-info@^3.2.0, ci-info@^3.3.2: 1036 | version "3.5.0" 1037 | resolved "https://registry.npmmirror.com/ci-info/-/ci-info-3.5.0.tgz#bfac2a29263de4c829d806b1ab478e35091e171f" 1038 | integrity sha512-yH4RezKOGlOhxkmhbeNuC4eYZKAUsEaGtBuBzDDP1eFUKiccDWzBABxBfOx31IDwDIXMTxWuwAxUGModvkbuVw== 1039 | 1040 | clean-regexp@^1.0.0: 1041 | version "1.0.0" 1042 | resolved "https://registry.npmmirror.com/clean-regexp/-/clean-regexp-1.0.0.tgz#8df7c7aae51fd36874e8f8d05b9180bc11a3fed7" 1043 | integrity sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw== 1044 | dependencies: 1045 | escape-string-regexp "^1.0.5" 1046 | 1047 | color-convert@^1.9.0: 1048 | version "1.9.3" 1049 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" 1050 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 1051 | dependencies: 1052 | color-name "1.1.3" 1053 | 1054 | color-convert@^2.0.1: 1055 | version "2.0.1" 1056 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" 1057 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 1058 | dependencies: 1059 | color-name "~1.1.4" 1060 | 1061 | color-name@1.1.3: 1062 | version "1.1.3" 1063 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" 1064 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 1065 | 1066 | color-name@~1.1.4: 1067 | version "1.1.4" 1068 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" 1069 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 1070 | 1071 | compare-func@^2.0.0: 1072 | version "2.0.0" 1073 | resolved "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz" 1074 | integrity sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA== 1075 | dependencies: 1076 | array-ify "^1.0.0" 1077 | dot-prop "^5.1.0" 1078 | 1079 | concat-map@0.0.1: 1080 | version "0.0.1" 1081 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" 1082 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 1083 | 1084 | confusing-browser-globals@^1.0.10: 1085 | version "1.0.10" 1086 | resolved "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz" 1087 | integrity sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA== 1088 | 1089 | conventional-changelog-conventionalcommits@^5.0.0: 1090 | version "5.0.0" 1091 | resolved "https://registry.npmmirror.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-5.0.0.tgz#41bdce54eb65a848a4a3ffdca93e92fa22b64a86" 1092 | integrity sha512-lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw== 1093 | dependencies: 1094 | compare-func "^2.0.0" 1095 | lodash "^4.17.15" 1096 | q "^1.5.1" 1097 | 1098 | convert-source-map@^1.7.0: 1099 | version "1.9.0" 1100 | resolved "https://registry.npmmirror.com/convert-source-map/-/convert-source-map-1.9.0.tgz#7faae62353fb4213366d0ca98358d22e8368b05f" 1101 | integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A== 1102 | 1103 | core-js-pure@^3.25.1: 1104 | version "3.26.0" 1105 | resolved "https://registry.npmmirror.com/core-js-pure/-/core-js-pure-3.26.0.tgz#7ad8a5dd7d910756f3124374b50026e23265ca9a" 1106 | integrity sha512-LiN6fylpVBVwT8twhhluD9TzXmZQQsr2I2eIKtWNbZI1XMfBT7CV18itaN6RA7EtQd/SDdRx/wzvAShX2HvhQA== 1107 | 1108 | cross-spawn@^6.0.5: 1109 | version "6.0.5" 1110 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz" 1111 | integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 1112 | dependencies: 1113 | nice-try "^1.0.4" 1114 | path-key "^2.0.1" 1115 | semver "^5.5.0" 1116 | shebang-command "^1.2.0" 1117 | which "^1.2.9" 1118 | 1119 | cross-spawn@^7.0.0, cross-spawn@^7.0.2: 1120 | version "7.0.3" 1121 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" 1122 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 1123 | dependencies: 1124 | path-key "^3.1.0" 1125 | shebang-command "^2.0.0" 1126 | which "^2.0.1" 1127 | 1128 | damerau-levenshtein@^1.0.8: 1129 | version "1.0.8" 1130 | resolved "https://registry.npmmirror.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" 1131 | integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== 1132 | 1133 | debug@^2.6.9: 1134 | version "2.6.9" 1135 | resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" 1136 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 1137 | dependencies: 1138 | ms "2.0.0" 1139 | 1140 | debug@^3.2.7: 1141 | version "3.2.7" 1142 | resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" 1143 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 1144 | dependencies: 1145 | ms "^2.1.1" 1146 | 1147 | debug@^4.1.0, debug@^4.3.2, debug@^4.3.4: 1148 | version "4.3.4" 1149 | resolved "https://registry.npmmirror.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 1150 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 1151 | dependencies: 1152 | ms "2.1.2" 1153 | 1154 | debug@^4.1.1: 1155 | version "4.3.2" 1156 | resolved "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz" 1157 | integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== 1158 | dependencies: 1159 | ms "2.1.2" 1160 | 1161 | deep-is@^0.1.3: 1162 | version "0.1.4" 1163 | resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz" 1164 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 1165 | 1166 | define-properties@^1.1.3: 1167 | version "1.1.3" 1168 | resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz" 1169 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== 1170 | dependencies: 1171 | object-keys "^1.0.12" 1172 | 1173 | define-properties@^1.1.4: 1174 | version "1.1.4" 1175 | resolved "https://registry.npmmirror.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" 1176 | integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== 1177 | dependencies: 1178 | has-property-descriptors "^1.0.0" 1179 | object-keys "^1.1.1" 1180 | 1181 | deprecation@^2.0.0, deprecation@^2.3.1: 1182 | version "2.3.1" 1183 | resolved "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz" 1184 | integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ== 1185 | 1186 | dir-glob@^3.0.1: 1187 | version "3.0.1" 1188 | resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" 1189 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 1190 | dependencies: 1191 | path-type "^4.0.0" 1192 | 1193 | doctrine@^2.1.0: 1194 | version "2.1.0" 1195 | resolved "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz" 1196 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 1197 | dependencies: 1198 | esutils "^2.0.2" 1199 | 1200 | doctrine@^3.0.0: 1201 | version "3.0.0" 1202 | resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz" 1203 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 1204 | dependencies: 1205 | esutils "^2.0.2" 1206 | 1207 | dot-prop@^5.1.0: 1208 | version "5.3.0" 1209 | resolved "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz" 1210 | integrity sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q== 1211 | dependencies: 1212 | is-obj "^2.0.0" 1213 | 1214 | ecdsa-sig-formatter@1.0.11: 1215 | version "1.0.11" 1216 | resolved "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz" 1217 | integrity sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ== 1218 | dependencies: 1219 | safe-buffer "^5.0.1" 1220 | 1221 | electron-to-chromium@^1.4.251: 1222 | version "1.4.284" 1223 | resolved "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz#61046d1e4cab3a25238f6bf7413795270f125592" 1224 | integrity sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA== 1225 | 1226 | emoji-regex@^9.2.2: 1227 | version "9.2.2" 1228 | resolved "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" 1229 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== 1230 | 1231 | end-of-stream@^1.1.0: 1232 | version "1.4.4" 1233 | resolved "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz" 1234 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 1235 | dependencies: 1236 | once "^1.4.0" 1237 | 1238 | error-ex@^1.3.1: 1239 | version "1.3.2" 1240 | resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" 1241 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1242 | dependencies: 1243 | is-arrayish "^0.2.1" 1244 | 1245 | es-abstract@^1.18.0-next.2: 1246 | version "1.18.6" 1247 | resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.6.tgz" 1248 | integrity sha512-kAeIT4cku5eNLNuUKhlmtuk1/TRZvQoYccn6TO0cSVdf1kzB0T7+dYuVK9MWM7l+/53W2Q8M7N2c6MQvhXFcUQ== 1249 | dependencies: 1250 | call-bind "^1.0.2" 1251 | es-to-primitive "^1.2.1" 1252 | function-bind "^1.1.1" 1253 | get-intrinsic "^1.1.1" 1254 | get-symbol-description "^1.0.0" 1255 | has "^1.0.3" 1256 | has-symbols "^1.0.2" 1257 | internal-slot "^1.0.3" 1258 | is-callable "^1.2.4" 1259 | is-negative-zero "^2.0.1" 1260 | is-regex "^1.1.4" 1261 | is-string "^1.0.7" 1262 | object-inspect "^1.11.0" 1263 | object-keys "^1.1.1" 1264 | object.assign "^4.1.2" 1265 | string.prototype.trimend "^1.0.4" 1266 | string.prototype.trimstart "^1.0.4" 1267 | unbox-primitive "^1.0.1" 1268 | 1269 | es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19.5: 1270 | version "1.20.4" 1271 | resolved "https://registry.npmmirror.com/es-abstract/-/es-abstract-1.20.4.tgz#1d103f9f8d78d4cf0713edcd6d0ed1a46eed5861" 1272 | integrity sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA== 1273 | dependencies: 1274 | call-bind "^1.0.2" 1275 | es-to-primitive "^1.2.1" 1276 | function-bind "^1.1.1" 1277 | function.prototype.name "^1.1.5" 1278 | get-intrinsic "^1.1.3" 1279 | get-symbol-description "^1.0.0" 1280 | has "^1.0.3" 1281 | has-property-descriptors "^1.0.0" 1282 | has-symbols "^1.0.3" 1283 | internal-slot "^1.0.3" 1284 | is-callable "^1.2.7" 1285 | is-negative-zero "^2.0.2" 1286 | is-regex "^1.1.4" 1287 | is-shared-array-buffer "^1.0.2" 1288 | is-string "^1.0.7" 1289 | is-weakref "^1.0.2" 1290 | object-inspect "^1.12.2" 1291 | object-keys "^1.1.1" 1292 | object.assign "^4.1.4" 1293 | regexp.prototype.flags "^1.4.3" 1294 | safe-regex-test "^1.0.0" 1295 | string.prototype.trimend "^1.0.5" 1296 | string.prototype.trimstart "^1.0.5" 1297 | unbox-primitive "^1.0.2" 1298 | 1299 | es-shim-unscopables@^1.0.0: 1300 | version "1.0.0" 1301 | resolved "https://registry.npmmirror.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" 1302 | integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== 1303 | dependencies: 1304 | has "^1.0.3" 1305 | 1306 | es-to-primitive@^1.2.1: 1307 | version "1.2.1" 1308 | resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz" 1309 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 1310 | dependencies: 1311 | is-callable "^1.1.4" 1312 | is-date-object "^1.0.1" 1313 | is-symbol "^1.0.2" 1314 | 1315 | escalade@^3.1.1: 1316 | version "3.1.1" 1317 | resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" 1318 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1319 | 1320 | escape-string-regexp@^1.0.5: 1321 | version "1.0.5" 1322 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" 1323 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1324 | 1325 | escape-string-regexp@^4.0.0: 1326 | version "4.0.0" 1327 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" 1328 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 1329 | 1330 | eslint-config-airbnb-base@^15.0.0: 1331 | version "15.0.0" 1332 | resolved "https://registry.npmmirror.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-15.0.0.tgz#6b09add90ac79c2f8d723a2580e07f3925afd236" 1333 | integrity sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig== 1334 | dependencies: 1335 | confusing-browser-globals "^1.0.10" 1336 | object.assign "^4.1.2" 1337 | object.entries "^1.1.5" 1338 | semver "^6.3.0" 1339 | 1340 | eslint-config-prettier@^8.5.0: 1341 | version "8.5.0" 1342 | resolved "https://registry.npmmirror.com/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz#5a81680ec934beca02c7b1a61cf8ca34b66feab1" 1343 | integrity sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q== 1344 | 1345 | eslint-import-resolver-node@^0.3.6: 1346 | version "0.3.6" 1347 | resolved "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz" 1348 | integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw== 1349 | dependencies: 1350 | debug "^3.2.7" 1351 | resolve "^1.20.0" 1352 | 1353 | eslint-module-utils@^2.7.3: 1354 | version "2.7.4" 1355 | resolved "https://registry.npmmirror.com/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz#4f3e41116aaf13a20792261e61d3a2e7e0583974" 1356 | integrity sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA== 1357 | dependencies: 1358 | debug "^3.2.7" 1359 | 1360 | eslint-plugin-eslint-comments@^3.2.0: 1361 | version "3.2.0" 1362 | resolved "https://registry.npmjs.org/eslint-plugin-eslint-comments/-/eslint-plugin-eslint-comments-3.2.0.tgz" 1363 | integrity sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ== 1364 | dependencies: 1365 | escape-string-regexp "^1.0.5" 1366 | ignore "^5.0.5" 1367 | 1368 | eslint-plugin-flowtype@^8.0.3: 1369 | version "8.0.3" 1370 | resolved "https://registry.npmmirror.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz#e1557e37118f24734aa3122e7536a038d34a4912" 1371 | integrity sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ== 1372 | dependencies: 1373 | lodash "^4.17.21" 1374 | string-natural-compare "^3.0.1" 1375 | 1376 | eslint-plugin-import@^2.26.0: 1377 | version "2.26.0" 1378 | resolved "https://registry.npmmirror.com/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz#f812dc47be4f2b72b478a021605a59fc6fe8b88b" 1379 | integrity sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA== 1380 | dependencies: 1381 | array-includes "^3.1.4" 1382 | array.prototype.flat "^1.2.5" 1383 | debug "^2.6.9" 1384 | doctrine "^2.1.0" 1385 | eslint-import-resolver-node "^0.3.6" 1386 | eslint-module-utils "^2.7.3" 1387 | has "^1.0.3" 1388 | is-core-module "^2.8.1" 1389 | is-glob "^4.0.3" 1390 | minimatch "^3.1.2" 1391 | object.values "^1.1.5" 1392 | resolve "^1.22.0" 1393 | tsconfig-paths "^3.14.1" 1394 | 1395 | eslint-plugin-jest@^26.6.0: 1396 | version "26.9.0" 1397 | resolved "https://registry.npmmirror.com/eslint-plugin-jest/-/eslint-plugin-jest-26.9.0.tgz#7931c31000b1c19e57dbfb71bbf71b817d1bf949" 1398 | integrity sha512-TWJxWGp1J628gxh2KhaH1H1paEdgE2J61BBF1I59c6xWeL5+D1BzMxGDN/nXAfX+aSkR5u80K+XhskK6Gwq9ng== 1399 | dependencies: 1400 | "@typescript-eslint/utils" "^5.10.0" 1401 | 1402 | eslint-plugin-jsx-a11y@^6.6.0: 1403 | version "6.6.1" 1404 | resolved "https://registry.npmmirror.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz#93736fc91b83fdc38cc8d115deedfc3091aef1ff" 1405 | integrity sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q== 1406 | dependencies: 1407 | "@babel/runtime" "^7.18.9" 1408 | aria-query "^4.2.2" 1409 | array-includes "^3.1.5" 1410 | ast-types-flow "^0.0.7" 1411 | axe-core "^4.4.3" 1412 | axobject-query "^2.2.0" 1413 | damerau-levenshtein "^1.0.8" 1414 | emoji-regex "^9.2.2" 1415 | has "^1.0.3" 1416 | jsx-ast-utils "^3.3.2" 1417 | language-tags "^1.0.5" 1418 | minimatch "^3.1.2" 1419 | semver "^6.3.0" 1420 | 1421 | eslint-plugin-prettier@^4.2.1: 1422 | version "4.2.1" 1423 | resolved "https://registry.npmmirror.com/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz#651cbb88b1dab98bfd42f017a12fa6b2d993f94b" 1424 | integrity sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ== 1425 | dependencies: 1426 | prettier-linter-helpers "^1.0.0" 1427 | 1428 | eslint-plugin-promise@^6.0.0: 1429 | version "6.1.1" 1430 | resolved "https://registry.npmmirror.com/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz#269a3e2772f62875661220631bd4dafcb4083816" 1431 | integrity sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig== 1432 | 1433 | eslint-plugin-react-hooks@^4.6.0: 1434 | version "4.6.0" 1435 | resolved "https://registry.npmmirror.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3" 1436 | integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== 1437 | 1438 | eslint-plugin-react@^7.30.1: 1439 | version "7.31.10" 1440 | resolved "https://registry.npmmirror.com/eslint-plugin-react/-/eslint-plugin-react-7.31.10.tgz#6782c2c7fe91c09e715d536067644bbb9491419a" 1441 | integrity sha512-e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA== 1442 | dependencies: 1443 | array-includes "^3.1.5" 1444 | array.prototype.flatmap "^1.3.0" 1445 | doctrine "^2.1.0" 1446 | estraverse "^5.3.0" 1447 | jsx-ast-utils "^2.4.1 || ^3.0.0" 1448 | minimatch "^3.1.2" 1449 | object.entries "^1.1.5" 1450 | object.fromentries "^2.0.5" 1451 | object.hasown "^1.1.1" 1452 | object.values "^1.1.5" 1453 | prop-types "^15.8.1" 1454 | resolve "^2.0.0-next.3" 1455 | semver "^6.3.0" 1456 | string.prototype.matchall "^4.0.7" 1457 | 1458 | eslint-plugin-unicorn@^43.0.1: 1459 | version "43.0.2" 1460 | resolved "https://registry.npmmirror.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-43.0.2.tgz#b189d58494c8a0985a4b89dba5dbfde3ad7575a5" 1461 | integrity sha512-DtqZ5mf/GMlfWoz1abIjq5jZfaFuHzGBZYIeuJfEoKKGWRHr2JiJR+ea+BF7Wx2N1PPRoT/2fwgiK1NnmNE3Hg== 1462 | dependencies: 1463 | "@babel/helper-validator-identifier" "^7.18.6" 1464 | ci-info "^3.3.2" 1465 | clean-regexp "^1.0.0" 1466 | eslint-utils "^3.0.0" 1467 | esquery "^1.4.0" 1468 | indent-string "^4.0.0" 1469 | is-builtin-module "^3.1.0" 1470 | lodash "^4.17.21" 1471 | pluralize "^8.0.0" 1472 | read-pkg-up "^7.0.1" 1473 | regexp-tree "^0.1.24" 1474 | safe-regex "^2.1.1" 1475 | semver "^7.3.7" 1476 | strip-indent "^3.0.0" 1477 | 1478 | eslint-scope@^5.1.1: 1479 | version "5.1.1" 1480 | resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz" 1481 | integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== 1482 | dependencies: 1483 | esrecurse "^4.3.0" 1484 | estraverse "^4.1.1" 1485 | 1486 | eslint-scope@^7.1.1: 1487 | version "7.1.1" 1488 | resolved "https://registry.npmmirror.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" 1489 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== 1490 | dependencies: 1491 | esrecurse "^4.3.0" 1492 | estraverse "^5.2.0" 1493 | 1494 | eslint-utils@^3.0.0: 1495 | version "3.0.0" 1496 | resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz" 1497 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== 1498 | dependencies: 1499 | eslint-visitor-keys "^2.0.0" 1500 | 1501 | eslint-visitor-keys@^2.0.0: 1502 | version "2.1.0" 1503 | resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz" 1504 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 1505 | 1506 | eslint-visitor-keys@^3.3.0: 1507 | version "3.3.0" 1508 | resolved "https://registry.npmmirror.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" 1509 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== 1510 | 1511 | eslint@^8.28.0: 1512 | version "8.28.0" 1513 | resolved "https://registry.npmmirror.com/eslint/-/eslint-8.28.0.tgz#81a680732634677cc890134bcdd9fdfea8e63d6e" 1514 | integrity sha512-S27Di+EVyMxcHiwDrFzk8dJYAaD+/5SoWKxL1ri/71CRHsnJnRDPNt2Kzj24+MT9FDupf4aqqyqPrvI8MvQ4VQ== 1515 | dependencies: 1516 | "@eslint/eslintrc" "^1.3.3" 1517 | "@humanwhocodes/config-array" "^0.11.6" 1518 | "@humanwhocodes/module-importer" "^1.0.1" 1519 | "@nodelib/fs.walk" "^1.2.8" 1520 | ajv "^6.10.0" 1521 | chalk "^4.0.0" 1522 | cross-spawn "^7.0.2" 1523 | debug "^4.3.2" 1524 | doctrine "^3.0.0" 1525 | escape-string-regexp "^4.0.0" 1526 | eslint-scope "^7.1.1" 1527 | eslint-utils "^3.0.0" 1528 | eslint-visitor-keys "^3.3.0" 1529 | espree "^9.4.0" 1530 | esquery "^1.4.0" 1531 | esutils "^2.0.2" 1532 | fast-deep-equal "^3.1.3" 1533 | file-entry-cache "^6.0.1" 1534 | find-up "^5.0.0" 1535 | glob-parent "^6.0.2" 1536 | globals "^13.15.0" 1537 | grapheme-splitter "^1.0.4" 1538 | ignore "^5.2.0" 1539 | import-fresh "^3.0.0" 1540 | imurmurhash "^0.1.4" 1541 | is-glob "^4.0.0" 1542 | is-path-inside "^3.0.3" 1543 | js-sdsl "^4.1.4" 1544 | js-yaml "^4.1.0" 1545 | json-stable-stringify-without-jsonify "^1.0.1" 1546 | levn "^0.4.1" 1547 | lodash.merge "^4.6.2" 1548 | minimatch "^3.1.2" 1549 | natural-compare "^1.4.0" 1550 | optionator "^0.9.1" 1551 | regexpp "^3.2.0" 1552 | strip-ansi "^6.0.1" 1553 | strip-json-comments "^3.1.0" 1554 | text-table "^0.2.0" 1555 | 1556 | espree@^9.4.0: 1557 | version "9.4.0" 1558 | resolved "https://registry.npmmirror.com/espree/-/espree-9.4.0.tgz#cd4bc3d6e9336c433265fc0aa016fc1aaf182f8a" 1559 | integrity sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw== 1560 | dependencies: 1561 | acorn "^8.8.0" 1562 | acorn-jsx "^5.3.2" 1563 | eslint-visitor-keys "^3.3.0" 1564 | 1565 | esquery@^1.4.0: 1566 | version "1.4.0" 1567 | resolved "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz" 1568 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== 1569 | dependencies: 1570 | estraverse "^5.1.0" 1571 | 1572 | esrecurse@^4.3.0: 1573 | version "4.3.0" 1574 | resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" 1575 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 1576 | dependencies: 1577 | estraverse "^5.2.0" 1578 | 1579 | estraverse@^4.1.1: 1580 | version "4.3.0" 1581 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz" 1582 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 1583 | 1584 | estraverse@^5.1.0, estraverse@^5.2.0: 1585 | version "5.2.0" 1586 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz" 1587 | integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== 1588 | 1589 | estraverse@^5.3.0: 1590 | version "5.3.0" 1591 | resolved "https://registry.npmmirror.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 1592 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 1593 | 1594 | esutils@^2.0.2: 1595 | version "2.0.3" 1596 | resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" 1597 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1598 | 1599 | execa@^4.0.0: 1600 | version "4.1.0" 1601 | resolved "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz" 1602 | integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== 1603 | dependencies: 1604 | cross-spawn "^7.0.0" 1605 | get-stream "^5.0.0" 1606 | human-signals "^1.1.1" 1607 | is-stream "^2.0.0" 1608 | merge-stream "^2.0.0" 1609 | npm-run-path "^4.0.0" 1610 | onetime "^5.1.0" 1611 | signal-exit "^3.0.2" 1612 | strip-final-newline "^2.0.0" 1613 | 1614 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 1615 | version "3.1.3" 1616 | resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" 1617 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 1618 | 1619 | fast-diff@^1.1.2: 1620 | version "1.2.0" 1621 | resolved "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz" 1622 | integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== 1623 | 1624 | fast-glob@^3.2.9: 1625 | version "3.2.12" 1626 | resolved "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" 1627 | integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== 1628 | dependencies: 1629 | "@nodelib/fs.stat" "^2.0.2" 1630 | "@nodelib/fs.walk" "^1.2.3" 1631 | glob-parent "^5.1.2" 1632 | merge2 "^1.3.0" 1633 | micromatch "^4.0.4" 1634 | 1635 | fast-json-stable-stringify@^2.0.0: 1636 | version "2.1.0" 1637 | resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" 1638 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1639 | 1640 | fast-levenshtein@^2.0.6: 1641 | version "2.0.6" 1642 | resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" 1643 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1644 | 1645 | fastq@^1.6.0: 1646 | version "1.13.0" 1647 | resolved "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz" 1648 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== 1649 | dependencies: 1650 | reusify "^1.0.4" 1651 | 1652 | file-entry-cache@^6.0.1: 1653 | version "6.0.1" 1654 | resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz" 1655 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 1656 | dependencies: 1657 | flat-cache "^3.0.4" 1658 | 1659 | fill-range@^7.0.1: 1660 | version "7.0.1" 1661 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" 1662 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1663 | dependencies: 1664 | to-regex-range "^5.0.1" 1665 | 1666 | find-up@^4.1.0: 1667 | version "4.1.0" 1668 | resolved "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" 1669 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 1670 | dependencies: 1671 | locate-path "^5.0.0" 1672 | path-exists "^4.0.0" 1673 | 1674 | find-up@^5.0.0: 1675 | version "5.0.0" 1676 | resolved "https://registry.npmmirror.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 1677 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 1678 | dependencies: 1679 | locate-path "^6.0.0" 1680 | path-exists "^4.0.0" 1681 | 1682 | flat-cache@^3.0.4: 1683 | version "3.0.4" 1684 | resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz" 1685 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 1686 | dependencies: 1687 | flatted "^3.1.0" 1688 | rimraf "^3.0.2" 1689 | 1690 | flatted@^3.1.0: 1691 | version "3.2.2" 1692 | resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.2.tgz" 1693 | integrity sha512-JaTY/wtrcSyvXJl4IMFHPKyFur1sE9AUqc0QnhOaJ0CxHtAoIV8pYDzeEfAaNEtGkOfq4gr3LBFmdXW5mOQFnA== 1694 | 1695 | fs.realpath@^1.0.0: 1696 | version "1.0.0" 1697 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" 1698 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1699 | 1700 | function-bind@^1.1.1: 1701 | version "1.1.1" 1702 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" 1703 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1704 | 1705 | function.prototype.name@^1.1.5: 1706 | version "1.1.5" 1707 | resolved "https://registry.npmmirror.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" 1708 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== 1709 | dependencies: 1710 | call-bind "^1.0.2" 1711 | define-properties "^1.1.3" 1712 | es-abstract "^1.19.0" 1713 | functions-have-names "^1.2.2" 1714 | 1715 | functions-have-names@^1.2.2: 1716 | version "1.2.3" 1717 | resolved "https://registry.npmmirror.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" 1718 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== 1719 | 1720 | gensync@^1.0.0-beta.2: 1721 | version "1.0.0-beta.2" 1722 | resolved "https://registry.npmmirror.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 1723 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1724 | 1725 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: 1726 | version "1.1.1" 1727 | resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz" 1728 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== 1729 | dependencies: 1730 | function-bind "^1.1.1" 1731 | has "^1.0.3" 1732 | has-symbols "^1.0.1" 1733 | 1734 | get-intrinsic@^1.1.3: 1735 | version "1.1.3" 1736 | resolved "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.1.3.tgz#063c84329ad93e83893c7f4f243ef63ffa351385" 1737 | integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A== 1738 | dependencies: 1739 | function-bind "^1.1.1" 1740 | has "^1.0.3" 1741 | has-symbols "^1.0.3" 1742 | 1743 | get-stream@^5.0.0: 1744 | version "5.2.0" 1745 | resolved "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz" 1746 | integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== 1747 | dependencies: 1748 | pump "^3.0.0" 1749 | 1750 | get-symbol-description@^1.0.0: 1751 | version "1.0.0" 1752 | resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz" 1753 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 1754 | dependencies: 1755 | call-bind "^1.0.2" 1756 | get-intrinsic "^1.1.1" 1757 | 1758 | glob-parent@^5.1.2: 1759 | version "5.1.2" 1760 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" 1761 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1762 | dependencies: 1763 | is-glob "^4.0.1" 1764 | 1765 | glob-parent@^6.0.2: 1766 | version "6.0.2" 1767 | resolved "https://registry.npmmirror.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 1768 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 1769 | dependencies: 1770 | is-glob "^4.0.3" 1771 | 1772 | glob@^7.1.3: 1773 | version "7.1.7" 1774 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz" 1775 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== 1776 | dependencies: 1777 | fs.realpath "^1.0.0" 1778 | inflight "^1.0.4" 1779 | inherits "2" 1780 | minimatch "^3.0.4" 1781 | once "^1.3.0" 1782 | path-is-absolute "^1.0.0" 1783 | 1784 | globals@^11.1.0: 1785 | version "11.12.0" 1786 | resolved "https://registry.npmmirror.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1787 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1788 | 1789 | globals@^13.15.0: 1790 | version "13.17.0" 1791 | resolved "https://registry.npmmirror.com/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4" 1792 | integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw== 1793 | dependencies: 1794 | type-fest "^0.20.2" 1795 | 1796 | globby@^11.1.0: 1797 | version "11.1.0" 1798 | resolved "https://registry.npmmirror.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" 1799 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 1800 | dependencies: 1801 | array-union "^2.1.0" 1802 | dir-glob "^3.0.1" 1803 | fast-glob "^3.2.9" 1804 | ignore "^5.2.0" 1805 | merge2 "^1.4.1" 1806 | slash "^3.0.0" 1807 | 1808 | graceful-fs@^4.1.2: 1809 | version "4.2.8" 1810 | resolved "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz" 1811 | integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg== 1812 | 1813 | grapheme-splitter@^1.0.4: 1814 | version "1.0.4" 1815 | resolved "https://registry.npmmirror.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" 1816 | integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== 1817 | 1818 | has-bigints@^1.0.1: 1819 | version "1.0.1" 1820 | resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz" 1821 | integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== 1822 | 1823 | has-bigints@^1.0.2: 1824 | version "1.0.2" 1825 | resolved "https://registry.npmmirror.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" 1826 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== 1827 | 1828 | has-flag@^3.0.0: 1829 | version "3.0.0" 1830 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" 1831 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1832 | 1833 | has-flag@^4.0.0: 1834 | version "4.0.0" 1835 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" 1836 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1837 | 1838 | has-property-descriptors@^1.0.0: 1839 | version "1.0.0" 1840 | resolved "https://registry.npmmirror.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" 1841 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 1842 | dependencies: 1843 | get-intrinsic "^1.1.1" 1844 | 1845 | has-symbols@^1.0.1, has-symbols@^1.0.2: 1846 | version "1.0.2" 1847 | resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz" 1848 | integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== 1849 | 1850 | has-symbols@^1.0.3: 1851 | version "1.0.3" 1852 | resolved "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 1853 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1854 | 1855 | has-tostringtag@^1.0.0: 1856 | version "1.0.0" 1857 | resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz" 1858 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 1859 | dependencies: 1860 | has-symbols "^1.0.2" 1861 | 1862 | has@^1.0.3: 1863 | version "1.0.3" 1864 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz" 1865 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1866 | dependencies: 1867 | function-bind "^1.1.1" 1868 | 1869 | hosted-git-info@^2.1.4: 1870 | version "2.8.9" 1871 | resolved "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz" 1872 | integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== 1873 | 1874 | human-signals@^1.1.1: 1875 | version "1.1.1" 1876 | resolved "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz" 1877 | integrity sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw== 1878 | 1879 | husky@^8.0.2: 1880 | version "8.0.2" 1881 | resolved "https://registry.npmmirror.com/husky/-/husky-8.0.2.tgz#5816a60db02650f1f22c8b69b928fd6bcd77a236" 1882 | integrity sha512-Tkv80jtvbnkK3mYWxPZePGFpQ/tT3HNSs/sasF9P2YfkMezDl3ON37YN6jUUI4eTg5LcyVynlb6r4eyvOmspvg== 1883 | 1884 | ignore@^5.0.5, ignore@^5.1.4: 1885 | version "5.1.8" 1886 | resolved "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz" 1887 | integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== 1888 | 1889 | ignore@^5.2.0: 1890 | version "5.2.0" 1891 | resolved "https://registry.npmmirror.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" 1892 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== 1893 | 1894 | import-fresh@^3.0.0, import-fresh@^3.2.1: 1895 | version "3.3.0" 1896 | resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz" 1897 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1898 | dependencies: 1899 | parent-module "^1.0.0" 1900 | resolve-from "^4.0.0" 1901 | 1902 | imurmurhash@^0.1.4: 1903 | version "0.1.4" 1904 | resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" 1905 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1906 | 1907 | indent-string@^4.0.0: 1908 | version "4.0.0" 1909 | resolved "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz" 1910 | integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== 1911 | 1912 | inflight@^1.0.4: 1913 | version "1.0.6" 1914 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" 1915 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1916 | dependencies: 1917 | once "^1.3.0" 1918 | wrappy "1" 1919 | 1920 | inherits@2: 1921 | version "2.0.4" 1922 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" 1923 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1924 | 1925 | internal-slot@^1.0.3: 1926 | version "1.0.3" 1927 | resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz" 1928 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== 1929 | dependencies: 1930 | get-intrinsic "^1.1.0" 1931 | has "^1.0.3" 1932 | side-channel "^1.0.4" 1933 | 1934 | is-arrayish@^0.2.1: 1935 | version "0.2.1" 1936 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" 1937 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 1938 | 1939 | is-base64@^1.1.0: 1940 | version "1.1.0" 1941 | resolved "https://registry.npmjs.org/is-base64/-/is-base64-1.1.0.tgz" 1942 | integrity sha512-Nlhg7Z2dVC4/PTvIFkgVVNvPHSO2eR/Yd0XzhGiXCXEvWnptXlXa/clQ8aePPiMuxEGcWfzWbGw2Fe3d+Y3v1g== 1943 | 1944 | is-bigint@^1.0.1: 1945 | version "1.0.4" 1946 | resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz" 1947 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 1948 | dependencies: 1949 | has-bigints "^1.0.1" 1950 | 1951 | is-boolean-object@^1.1.0: 1952 | version "1.1.2" 1953 | resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz" 1954 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 1955 | dependencies: 1956 | call-bind "^1.0.2" 1957 | has-tostringtag "^1.0.0" 1958 | 1959 | is-builtin-module@^3.1.0: 1960 | version "3.2.0" 1961 | resolved "https://registry.npmmirror.com/is-builtin-module/-/is-builtin-module-3.2.0.tgz#bb0310dfe881f144ca83f30100ceb10cf58835e0" 1962 | integrity sha512-phDA4oSGt7vl1n5tJvTWooWWAsXLY+2xCnxNqvKhGEzujg+A43wPlPOyDg3C8XQHN+6k/JTQWJ/j0dQh/qr+Hw== 1963 | dependencies: 1964 | builtin-modules "^3.3.0" 1965 | 1966 | is-callable@^1.1.4, is-callable@^1.2.4: 1967 | version "1.2.4" 1968 | resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz" 1969 | integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== 1970 | 1971 | is-callable@^1.2.7: 1972 | version "1.2.7" 1973 | resolved "https://registry.npmmirror.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" 1974 | integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== 1975 | 1976 | is-ci@^3.0.1: 1977 | version "3.0.1" 1978 | resolved "https://registry.npmmirror.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867" 1979 | integrity sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ== 1980 | dependencies: 1981 | ci-info "^3.2.0" 1982 | 1983 | is-core-module@^2.2.0: 1984 | version "2.6.0" 1985 | resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.6.0.tgz" 1986 | integrity sha512-wShG8vs60jKfPWpF2KZRaAtvt3a20OAn7+IJ6hLPECpSABLcKtFKTTI4ZtH5QcBruBHlq+WsdHWyz0BCZW7svQ== 1987 | dependencies: 1988 | has "^1.0.3" 1989 | 1990 | is-core-module@^2.8.1, is-core-module@^2.9.0: 1991 | version "2.11.0" 1992 | resolved "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" 1993 | integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== 1994 | dependencies: 1995 | has "^1.0.3" 1996 | 1997 | is-date-object@^1.0.1: 1998 | version "1.0.5" 1999 | resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz" 2000 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 2001 | dependencies: 2002 | has-tostringtag "^1.0.0" 2003 | 2004 | is-extglob@^2.1.1: 2005 | version "2.1.1" 2006 | resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" 2007 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 2008 | 2009 | is-glob@^4.0.0, is-glob@^4.0.1: 2010 | version "4.0.1" 2011 | resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz" 2012 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 2013 | dependencies: 2014 | is-extglob "^2.1.1" 2015 | 2016 | is-glob@^4.0.3: 2017 | version "4.0.3" 2018 | resolved "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 2019 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 2020 | dependencies: 2021 | is-extglob "^2.1.1" 2022 | 2023 | is-negative-zero@^2.0.1: 2024 | version "2.0.1" 2025 | resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz" 2026 | integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== 2027 | 2028 | is-negative-zero@^2.0.2: 2029 | version "2.0.2" 2030 | resolved "https://registry.npmmirror.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" 2031 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 2032 | 2033 | is-number-object@^1.0.4: 2034 | version "1.0.6" 2035 | resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz" 2036 | integrity sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g== 2037 | dependencies: 2038 | has-tostringtag "^1.0.0" 2039 | 2040 | is-number@^7.0.0: 2041 | version "7.0.0" 2042 | resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" 2043 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 2044 | 2045 | is-obj@^2.0.0: 2046 | version "2.0.0" 2047 | resolved "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz" 2048 | integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== 2049 | 2050 | is-path-inside@^3.0.3: 2051 | version "3.0.3" 2052 | resolved "https://registry.npmmirror.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 2053 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 2054 | 2055 | is-plain-object@^5.0.0: 2056 | version "5.0.0" 2057 | resolved "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz" 2058 | integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== 2059 | 2060 | is-regex@^1.1.4: 2061 | version "1.1.4" 2062 | resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz" 2063 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 2064 | dependencies: 2065 | call-bind "^1.0.2" 2066 | has-tostringtag "^1.0.0" 2067 | 2068 | is-shared-array-buffer@^1.0.2: 2069 | version "1.0.2" 2070 | resolved "https://registry.npmmirror.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" 2071 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 2072 | dependencies: 2073 | call-bind "^1.0.2" 2074 | 2075 | is-stream@^2.0.0: 2076 | version "2.0.1" 2077 | resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz" 2078 | integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== 2079 | 2080 | is-string@^1.0.5, is-string@^1.0.7: 2081 | version "1.0.7" 2082 | resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz" 2083 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 2084 | dependencies: 2085 | has-tostringtag "^1.0.0" 2086 | 2087 | is-symbol@^1.0.2, is-symbol@^1.0.3: 2088 | version "1.0.4" 2089 | resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz" 2090 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 2091 | dependencies: 2092 | has-symbols "^1.0.2" 2093 | 2094 | is-weakref@^1.0.2: 2095 | version "1.0.2" 2096 | resolved "https://registry.npmmirror.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" 2097 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 2098 | dependencies: 2099 | call-bind "^1.0.2" 2100 | 2101 | isexe@^2.0.0: 2102 | version "2.0.0" 2103 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" 2104 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 2105 | 2106 | js-sdsl@^4.1.4: 2107 | version "4.1.5" 2108 | resolved "https://registry.npmmirror.com/js-sdsl/-/js-sdsl-4.1.5.tgz#1ff1645e6b4d1b028cd3f862db88c9d887f26e2a" 2109 | integrity sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q== 2110 | 2111 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: 2112 | version "4.0.0" 2113 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" 2114 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 2115 | 2116 | js-yaml@^4.1.0: 2117 | version "4.1.0" 2118 | resolved "https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 2119 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 2120 | dependencies: 2121 | argparse "^2.0.1" 2122 | 2123 | jsesc@^2.5.1: 2124 | version "2.5.2" 2125 | resolved "https://registry.npmmirror.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 2126 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 2127 | 2128 | json-parse-better-errors@^1.0.1: 2129 | version "1.0.2" 2130 | resolved "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz" 2131 | integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== 2132 | 2133 | json-parse-even-better-errors@^2.3.0: 2134 | version "2.3.1" 2135 | resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" 2136 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 2137 | 2138 | json-schema-traverse@^0.4.1: 2139 | version "0.4.1" 2140 | resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" 2141 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 2142 | 2143 | json-stable-stringify-without-jsonify@^1.0.1: 2144 | version "1.0.1" 2145 | resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz" 2146 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 2147 | 2148 | json5@^1.0.1: 2149 | version "1.0.1" 2150 | resolved "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz" 2151 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 2152 | dependencies: 2153 | minimist "^1.2.0" 2154 | 2155 | json5@^2.2.1: 2156 | version "2.2.1" 2157 | resolved "https://registry.npmmirror.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" 2158 | integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== 2159 | 2160 | jsonwebtoken@^8.5.1: 2161 | version "8.5.1" 2162 | resolved "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz" 2163 | integrity sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w== 2164 | dependencies: 2165 | jws "^3.2.2" 2166 | lodash.includes "^4.3.0" 2167 | lodash.isboolean "^3.0.3" 2168 | lodash.isinteger "^4.0.4" 2169 | lodash.isnumber "^3.0.3" 2170 | lodash.isplainobject "^4.0.6" 2171 | lodash.isstring "^4.0.1" 2172 | lodash.once "^4.0.0" 2173 | ms "^2.1.1" 2174 | semver "^5.6.0" 2175 | 2176 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.2: 2177 | version "3.3.3" 2178 | resolved "https://registry.npmmirror.com/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz#76b3e6e6cece5c69d49a5792c3d01bd1a0cdc7ea" 2179 | integrity sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw== 2180 | dependencies: 2181 | array-includes "^3.1.5" 2182 | object.assign "^4.1.3" 2183 | 2184 | jwa@^1.4.1: 2185 | version "1.4.1" 2186 | resolved "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz" 2187 | integrity sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA== 2188 | dependencies: 2189 | buffer-equal-constant-time "1.0.1" 2190 | ecdsa-sig-formatter "1.0.11" 2191 | safe-buffer "^5.0.1" 2192 | 2193 | jws@^3.2.2: 2194 | version "3.2.2" 2195 | resolved "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz" 2196 | integrity sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA== 2197 | dependencies: 2198 | jwa "^1.4.1" 2199 | safe-buffer "^5.0.1" 2200 | 2201 | language-subtag-registry@~0.3.2: 2202 | version "0.3.22" 2203 | resolved "https://registry.npmmirror.com/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d" 2204 | integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w== 2205 | 2206 | language-tags@^1.0.5: 2207 | version "1.0.5" 2208 | resolved "https://registry.npmmirror.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" 2209 | integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== 2210 | dependencies: 2211 | language-subtag-registry "~0.3.2" 2212 | 2213 | levn@^0.4.1: 2214 | version "0.4.1" 2215 | resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz" 2216 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 2217 | dependencies: 2218 | prelude-ls "^1.2.1" 2219 | type-check "~0.4.0" 2220 | 2221 | libsodium-wrappers@^0.7.10: 2222 | version "0.7.10" 2223 | resolved "https://registry.npmjs.org/libsodium-wrappers/-/libsodium-wrappers-0.7.10.tgz" 2224 | integrity sha512-pO3F1Q9NPLB/MWIhehim42b/Fwb30JNScCNh8TcQ/kIc+qGLQch8ag8wb0keK3EP5kbGakk1H8Wwo7v+36rNQg== 2225 | dependencies: 2226 | libsodium "^0.7.0" 2227 | 2228 | libsodium@^0.7.0: 2229 | version "0.7.10" 2230 | resolved "https://registry.npmjs.org/libsodium/-/libsodium-0.7.10.tgz" 2231 | integrity sha512-eY+z7hDrDKxkAK+QKZVNv92A5KYkxfvIshtBJkmg5TSiCnYqZP3i9OO9whE79Pwgm4jGaoHgkM4ao/b9Cyu4zQ== 2232 | 2233 | lines-and-columns@^1.1.6: 2234 | version "1.1.6" 2235 | resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz" 2236 | integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= 2237 | 2238 | load-json-file@^4.0.0: 2239 | version "4.0.0" 2240 | resolved "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz" 2241 | integrity sha1-L19Fq5HjMhYjT9U62rZo607AmTs= 2242 | dependencies: 2243 | graceful-fs "^4.1.2" 2244 | parse-json "^4.0.0" 2245 | pify "^3.0.0" 2246 | strip-bom "^3.0.0" 2247 | 2248 | locate-path@^5.0.0: 2249 | version "5.0.0" 2250 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" 2251 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 2252 | dependencies: 2253 | p-locate "^4.1.0" 2254 | 2255 | locate-path@^6.0.0: 2256 | version "6.0.0" 2257 | resolved "https://registry.npmmirror.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 2258 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 2259 | dependencies: 2260 | p-locate "^5.0.0" 2261 | 2262 | lodash.includes@^4.3.0: 2263 | version "4.3.0" 2264 | resolved "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz" 2265 | integrity sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8= 2266 | 2267 | lodash.isboolean@^3.0.3: 2268 | version "3.0.3" 2269 | resolved "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz" 2270 | integrity sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY= 2271 | 2272 | lodash.isinteger@^4.0.4: 2273 | version "4.0.4" 2274 | resolved "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz" 2275 | integrity sha1-YZwK89A/iwTDH1iChAt3sRzWg0M= 2276 | 2277 | lodash.isnumber@^3.0.3: 2278 | version "3.0.3" 2279 | resolved "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz" 2280 | integrity sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w= 2281 | 2282 | lodash.isplainobject@^4.0.6: 2283 | version "4.0.6" 2284 | resolved "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz" 2285 | integrity sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs= 2286 | 2287 | lodash.isstring@^4.0.1: 2288 | version "4.0.1" 2289 | resolved "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz" 2290 | integrity sha1-1SfftUVuynzJu5XV2ur4i6VKVFE= 2291 | 2292 | lodash.merge@^4.6.2: 2293 | version "4.6.2" 2294 | resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz" 2295 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 2296 | 2297 | lodash.once@^4.0.0: 2298 | version "4.1.1" 2299 | resolved "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz" 2300 | integrity sha1-DdOXEhPHxW34gJd9UEyI+0cal6w= 2301 | 2302 | lodash@^4.17.15, lodash@^4.17.21: 2303 | version "4.17.21" 2304 | resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" 2305 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 2306 | 2307 | loose-envify@^1.4.0: 2308 | version "1.4.0" 2309 | resolved "https://registry.npmmirror.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 2310 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 2311 | dependencies: 2312 | js-tokens "^3.0.0 || ^4.0.0" 2313 | 2314 | lru-cache@^6.0.0: 2315 | version "6.0.0" 2316 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" 2317 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 2318 | dependencies: 2319 | yallist "^4.0.0" 2320 | 2321 | memorystream@^0.3.1: 2322 | version "0.3.1" 2323 | resolved "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz" 2324 | integrity sha1-htcJCzDORV1j+64S3aUaR93K+bI= 2325 | 2326 | merge-stream@^2.0.0: 2327 | version "2.0.0" 2328 | resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" 2329 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 2330 | 2331 | merge2@^1.3.0, merge2@^1.4.1: 2332 | version "1.4.1" 2333 | resolved "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 2334 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 2335 | 2336 | micromatch@^4.0.4: 2337 | version "4.0.4" 2338 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz" 2339 | integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== 2340 | dependencies: 2341 | braces "^3.0.1" 2342 | picomatch "^2.2.3" 2343 | 2344 | mimic-fn@^2.1.0: 2345 | version "2.1.0" 2346 | resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" 2347 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 2348 | 2349 | min-indent@^1.0.0: 2350 | version "1.0.1" 2351 | resolved "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz" 2352 | integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== 2353 | 2354 | minimatch@^3.0.4: 2355 | version "3.0.4" 2356 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz" 2357 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 2358 | dependencies: 2359 | brace-expansion "^1.1.7" 2360 | 2361 | minimatch@^3.1.2: 2362 | version "3.1.2" 2363 | resolved "https://registry.npmmirror.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 2364 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 2365 | dependencies: 2366 | brace-expansion "^1.1.7" 2367 | 2368 | minimist@^1.2.0: 2369 | version "1.2.5" 2370 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz" 2371 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 2372 | 2373 | minimist@^1.2.6: 2374 | version "1.2.7" 2375 | resolved "https://registry.npmmirror.com/minimist/-/minimist-1.2.7.tgz#daa1c4d91f507390437c6a8bc01078e7000c4d18" 2376 | integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g== 2377 | 2378 | mri@^1.1.5: 2379 | version "1.2.0" 2380 | resolved "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz" 2381 | integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA== 2382 | 2383 | ms@2.0.0: 2384 | version "2.0.0" 2385 | resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" 2386 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= 2387 | 2388 | ms@2.1.2: 2389 | version "2.1.2" 2390 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" 2391 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 2392 | 2393 | ms@^2.1.1: 2394 | version "2.1.3" 2395 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" 2396 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 2397 | 2398 | multimatch@^4.0.0: 2399 | version "4.0.0" 2400 | resolved "https://registry.npmjs.org/multimatch/-/multimatch-4.0.0.tgz" 2401 | integrity sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ== 2402 | dependencies: 2403 | "@types/minimatch" "^3.0.3" 2404 | array-differ "^3.0.0" 2405 | array-union "^2.1.0" 2406 | arrify "^2.0.1" 2407 | minimatch "^3.0.4" 2408 | 2409 | natural-compare@^1.4.0: 2410 | version "1.4.0" 2411 | resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" 2412 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 2413 | 2414 | nice-try@^1.0.4: 2415 | version "1.0.5" 2416 | resolved "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz" 2417 | integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 2418 | 2419 | node-fetch@^2.6.1: 2420 | version "2.6.2" 2421 | resolved "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.2.tgz" 2422 | integrity sha512-aLoxToI6RfZ+0NOjmWAgn9+LEd30YCkJKFSyWacNZdEKTit/ZMcKjGkTRo8uWEsnIb/hfKecNPEbln02PdWbcA== 2423 | 2424 | node-fetch@^2.6.7: 2425 | version "2.6.7" 2426 | resolved "https://registry.npmmirror.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" 2427 | integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== 2428 | dependencies: 2429 | whatwg-url "^5.0.0" 2430 | 2431 | node-releases@^2.0.6: 2432 | version "2.0.6" 2433 | resolved "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503" 2434 | integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg== 2435 | 2436 | normalize-package-data@^2.3.2, normalize-package-data@^2.5.0: 2437 | version "2.5.0" 2438 | resolved "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz" 2439 | integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== 2440 | dependencies: 2441 | hosted-git-info "^2.1.4" 2442 | resolve "^1.10.0" 2443 | semver "2 || 3 || 4 || 5" 2444 | validate-npm-package-license "^3.0.1" 2445 | 2446 | npm-run-all@^4.1.5: 2447 | version "4.1.5" 2448 | resolved "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz" 2449 | integrity sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ== 2450 | dependencies: 2451 | ansi-styles "^3.2.1" 2452 | chalk "^2.4.1" 2453 | cross-spawn "^6.0.5" 2454 | memorystream "^0.3.1" 2455 | minimatch "^3.0.4" 2456 | pidtree "^0.3.0" 2457 | read-pkg "^3.0.0" 2458 | shell-quote "^1.6.1" 2459 | string.prototype.padend "^3.0.0" 2460 | 2461 | npm-run-path@^4.0.0: 2462 | version "4.0.1" 2463 | resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz" 2464 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 2465 | dependencies: 2466 | path-key "^3.0.0" 2467 | 2468 | object-assign@^4.1.1: 2469 | version "4.1.1" 2470 | resolved "https://registry.npmmirror.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 2471 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== 2472 | 2473 | object-inspect@^1.11.0, object-inspect@^1.9.0: 2474 | version "1.11.0" 2475 | resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz" 2476 | integrity sha512-jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg== 2477 | 2478 | object-inspect@^1.12.2: 2479 | version "1.12.2" 2480 | resolved "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" 2481 | integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== 2482 | 2483 | object-keys@^1.0.12, object-keys@^1.1.1: 2484 | version "1.1.1" 2485 | resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" 2486 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 2487 | 2488 | object.assign@^4.1.2: 2489 | version "4.1.2" 2490 | resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz" 2491 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 2492 | dependencies: 2493 | call-bind "^1.0.0" 2494 | define-properties "^1.1.3" 2495 | has-symbols "^1.0.1" 2496 | object-keys "^1.1.1" 2497 | 2498 | object.assign@^4.1.3, object.assign@^4.1.4: 2499 | version "4.1.4" 2500 | resolved "https://registry.npmmirror.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" 2501 | integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== 2502 | dependencies: 2503 | call-bind "^1.0.2" 2504 | define-properties "^1.1.4" 2505 | has-symbols "^1.0.3" 2506 | object-keys "^1.1.1" 2507 | 2508 | object.entries@^1.1.5: 2509 | version "1.1.5" 2510 | resolved "https://registry.npmmirror.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861" 2511 | integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g== 2512 | dependencies: 2513 | call-bind "^1.0.2" 2514 | define-properties "^1.1.3" 2515 | es-abstract "^1.19.1" 2516 | 2517 | object.fromentries@^2.0.5: 2518 | version "2.0.5" 2519 | resolved "https://registry.npmmirror.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251" 2520 | integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw== 2521 | dependencies: 2522 | call-bind "^1.0.2" 2523 | define-properties "^1.1.3" 2524 | es-abstract "^1.19.1" 2525 | 2526 | object.hasown@^1.1.1: 2527 | version "1.1.1" 2528 | resolved "https://registry.npmmirror.com/object.hasown/-/object.hasown-1.1.1.tgz#ad1eecc60d03f49460600430d97f23882cf592a3" 2529 | integrity sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A== 2530 | dependencies: 2531 | define-properties "^1.1.4" 2532 | es-abstract "^1.19.5" 2533 | 2534 | object.values@^1.1.5: 2535 | version "1.1.5" 2536 | resolved "https://registry.npmmirror.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac" 2537 | integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg== 2538 | dependencies: 2539 | call-bind "^1.0.2" 2540 | define-properties "^1.1.3" 2541 | es-abstract "^1.19.1" 2542 | 2543 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 2544 | version "1.4.0" 2545 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz" 2546 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2547 | dependencies: 2548 | wrappy "1" 2549 | 2550 | onetime@^5.1.0: 2551 | version "5.1.2" 2552 | resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" 2553 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 2554 | dependencies: 2555 | mimic-fn "^2.1.0" 2556 | 2557 | optionator@^0.9.1: 2558 | version "0.9.1" 2559 | resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz" 2560 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 2561 | dependencies: 2562 | deep-is "^0.1.3" 2563 | fast-levenshtein "^2.0.6" 2564 | levn "^0.4.1" 2565 | prelude-ls "^1.2.1" 2566 | type-check "^0.4.0" 2567 | word-wrap "^1.2.3" 2568 | 2569 | p-limit@^2.2.0: 2570 | version "2.3.0" 2571 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" 2572 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 2573 | dependencies: 2574 | p-try "^2.0.0" 2575 | 2576 | p-limit@^3.0.2: 2577 | version "3.1.0" 2578 | resolved "https://registry.npmmirror.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 2579 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 2580 | dependencies: 2581 | yocto-queue "^0.1.0" 2582 | 2583 | p-locate@^4.1.0: 2584 | version "4.1.0" 2585 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" 2586 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 2587 | dependencies: 2588 | p-limit "^2.2.0" 2589 | 2590 | p-locate@^5.0.0: 2591 | version "5.0.0" 2592 | resolved "https://registry.npmmirror.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 2593 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 2594 | dependencies: 2595 | p-limit "^3.0.2" 2596 | 2597 | p-try@^2.0.0: 2598 | version "2.2.0" 2599 | resolved "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" 2600 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 2601 | 2602 | parent-module@^1.0.0: 2603 | version "1.0.1" 2604 | resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" 2605 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 2606 | dependencies: 2607 | callsites "^3.0.0" 2608 | 2609 | parse-json@^4.0.0: 2610 | version "4.0.0" 2611 | resolved "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz" 2612 | integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= 2613 | dependencies: 2614 | error-ex "^1.3.1" 2615 | json-parse-better-errors "^1.0.1" 2616 | 2617 | parse-json@^5.0.0: 2618 | version "5.2.0" 2619 | resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" 2620 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 2621 | dependencies: 2622 | "@babel/code-frame" "^7.0.0" 2623 | error-ex "^1.3.1" 2624 | json-parse-even-better-errors "^2.3.0" 2625 | lines-and-columns "^1.1.6" 2626 | 2627 | path-exists@^4.0.0: 2628 | version "4.0.0" 2629 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" 2630 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2631 | 2632 | path-is-absolute@^1.0.0: 2633 | version "1.0.1" 2634 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" 2635 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2636 | 2637 | path-key@^2.0.1: 2638 | version "2.0.1" 2639 | resolved "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz" 2640 | integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 2641 | 2642 | path-key@^3.0.0, path-key@^3.1.0: 2643 | version "3.1.1" 2644 | resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" 2645 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2646 | 2647 | path-parse@^1.0.6, path-parse@^1.0.7: 2648 | version "1.0.7" 2649 | resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" 2650 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 2651 | 2652 | path-type@^3.0.0: 2653 | version "3.0.0" 2654 | resolved "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz" 2655 | integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== 2656 | dependencies: 2657 | pify "^3.0.0" 2658 | 2659 | path-type@^4.0.0: 2660 | version "4.0.0" 2661 | resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" 2662 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 2663 | 2664 | picocolors@^1.0.0: 2665 | version "1.0.0" 2666 | resolved "https://registry.npmmirror.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 2667 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 2668 | 2669 | picomatch@^2.2.3: 2670 | version "2.3.0" 2671 | resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz" 2672 | integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== 2673 | 2674 | pidtree@^0.3.0: 2675 | version "0.3.1" 2676 | resolved "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz" 2677 | integrity sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA== 2678 | 2679 | pify@^3.0.0: 2680 | version "3.0.0" 2681 | resolved "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz" 2682 | integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= 2683 | 2684 | pluralize@^8.0.0: 2685 | version "8.0.0" 2686 | resolved "https://registry.npmmirror.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1" 2687 | integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA== 2688 | 2689 | prelude-ls@^1.2.1: 2690 | version "1.2.1" 2691 | resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz" 2692 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 2693 | 2694 | prettier-linter-helpers@^1.0.0: 2695 | version "1.0.0" 2696 | resolved "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz" 2697 | integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== 2698 | dependencies: 2699 | fast-diff "^1.1.2" 2700 | 2701 | prettier@^2.7.1: 2702 | version "2.7.1" 2703 | resolved "https://registry.npmmirror.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64" 2704 | integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g== 2705 | 2706 | pretty-quick@^3.1.3: 2707 | version "3.1.3" 2708 | resolved "https://registry.npmmirror.com/pretty-quick/-/pretty-quick-3.1.3.tgz#15281108c0ddf446675157ca40240099157b638e" 2709 | integrity sha512-kOCi2FJabvuh1as9enxYmrnBC6tVMoVOenMaBqRfsvBHB0cbpYHjdQEpSglpASDFEXVwplpcGR4CLEaisYAFcA== 2710 | dependencies: 2711 | chalk "^3.0.0" 2712 | execa "^4.0.0" 2713 | find-up "^4.1.0" 2714 | ignore "^5.1.4" 2715 | mri "^1.1.5" 2716 | multimatch "^4.0.0" 2717 | 2718 | prop-types@^15.8.1: 2719 | version "15.8.1" 2720 | resolved "https://registry.npmmirror.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" 2721 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 2722 | dependencies: 2723 | loose-envify "^1.4.0" 2724 | object-assign "^4.1.1" 2725 | react-is "^16.13.1" 2726 | 2727 | pump@^3.0.0: 2728 | version "3.0.0" 2729 | resolved "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz" 2730 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 2731 | dependencies: 2732 | end-of-stream "^1.1.0" 2733 | once "^1.3.1" 2734 | 2735 | punycode@^2.1.0: 2736 | version "2.1.1" 2737 | resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz" 2738 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 2739 | 2740 | q@^1.5.1: 2741 | version "1.5.1" 2742 | resolved "https://registry.npmjs.org/q/-/q-1.5.1.tgz" 2743 | integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= 2744 | 2745 | queue-microtask@^1.2.2: 2746 | version "1.2.3" 2747 | resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" 2748 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 2749 | 2750 | react-is@^16.13.1: 2751 | version "16.13.1" 2752 | resolved "https://registry.npmmirror.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 2753 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 2754 | 2755 | read-pkg-up@^7.0.1: 2756 | version "7.0.1" 2757 | resolved "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz" 2758 | integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== 2759 | dependencies: 2760 | find-up "^4.1.0" 2761 | read-pkg "^5.2.0" 2762 | type-fest "^0.8.1" 2763 | 2764 | read-pkg@^3.0.0: 2765 | version "3.0.0" 2766 | resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz" 2767 | integrity sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k= 2768 | dependencies: 2769 | load-json-file "^4.0.0" 2770 | normalize-package-data "^2.3.2" 2771 | path-type "^3.0.0" 2772 | 2773 | read-pkg@^5.2.0: 2774 | version "5.2.0" 2775 | resolved "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz" 2776 | integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== 2777 | dependencies: 2778 | "@types/normalize-package-data" "^2.4.0" 2779 | normalize-package-data "^2.5.0" 2780 | parse-json "^5.0.0" 2781 | type-fest "^0.6.0" 2782 | 2783 | regenerator-runtime@^0.13.4: 2784 | version "0.13.10" 2785 | resolved "https://registry.npmmirror.com/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz#ed07b19616bcbec5da6274ebc75ae95634bfc2ee" 2786 | integrity sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw== 2787 | 2788 | regexp-tree@^0.1.24, regexp-tree@~0.1.1: 2789 | version "0.1.24" 2790 | resolved "https://registry.npmmirror.com/regexp-tree/-/regexp-tree-0.1.24.tgz#3d6fa238450a4d66e5bc9c4c14bb720e2196829d" 2791 | integrity sha512-s2aEVuLhvnVJW6s/iPgEGK6R+/xngd2jNQ+xy4bXNDKxZKJH6jpPHY6kVeVv1IeLCHgswRj+Kl3ELaDjG6V1iw== 2792 | 2793 | regexp.prototype.flags@^1.4.1, regexp.prototype.flags@^1.4.3: 2794 | version "1.4.3" 2795 | resolved "https://registry.npmmirror.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" 2796 | integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== 2797 | dependencies: 2798 | call-bind "^1.0.2" 2799 | define-properties "^1.1.3" 2800 | functions-have-names "^1.2.2" 2801 | 2802 | regexpp@^3.2.0: 2803 | version "3.2.0" 2804 | resolved "https://registry.npmmirror.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" 2805 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== 2806 | 2807 | resolve-from@^4.0.0: 2808 | version "4.0.0" 2809 | resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" 2810 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 2811 | 2812 | resolve@^1.10.0, resolve@^1.20.0: 2813 | version "1.20.0" 2814 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz" 2815 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== 2816 | dependencies: 2817 | is-core-module "^2.2.0" 2818 | path-parse "^1.0.6" 2819 | 2820 | resolve@^1.22.0: 2821 | version "1.22.1" 2822 | resolved "https://registry.npmmirror.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" 2823 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== 2824 | dependencies: 2825 | is-core-module "^2.9.0" 2826 | path-parse "^1.0.7" 2827 | supports-preserve-symlinks-flag "^1.0.0" 2828 | 2829 | resolve@^2.0.0-next.3: 2830 | version "2.0.0-next.4" 2831 | resolved "https://registry.npmmirror.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" 2832 | integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== 2833 | dependencies: 2834 | is-core-module "^2.9.0" 2835 | path-parse "^1.0.7" 2836 | supports-preserve-symlinks-flag "^1.0.0" 2837 | 2838 | reusify@^1.0.4: 2839 | version "1.0.4" 2840 | resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" 2841 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 2842 | 2843 | rimraf@^3.0.2: 2844 | version "3.0.2" 2845 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" 2846 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 2847 | dependencies: 2848 | glob "^7.1.3" 2849 | 2850 | run-parallel@^1.1.9: 2851 | version "1.2.0" 2852 | resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" 2853 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 2854 | dependencies: 2855 | queue-microtask "^1.2.2" 2856 | 2857 | safe-buffer@^5.0.1: 2858 | version "5.2.1" 2859 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" 2860 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 2861 | 2862 | safe-regex-test@^1.0.0: 2863 | version "1.0.0" 2864 | resolved "https://registry.npmmirror.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" 2865 | integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== 2866 | dependencies: 2867 | call-bind "^1.0.2" 2868 | get-intrinsic "^1.1.3" 2869 | is-regex "^1.1.4" 2870 | 2871 | safe-regex@^2.1.1: 2872 | version "2.1.1" 2873 | resolved "https://registry.npmmirror.com/safe-regex/-/safe-regex-2.1.1.tgz#f7128f00d056e2fe5c11e81a1324dd974aadced2" 2874 | integrity sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A== 2875 | dependencies: 2876 | regexp-tree "~0.1.1" 2877 | 2878 | "semver@2 || 3 || 4 || 5", semver@^5.5.0, semver@^5.6.0: 2879 | version "5.7.1" 2880 | resolved "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" 2881 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 2882 | 2883 | semver@^6.3.0: 2884 | version "6.3.0" 2885 | resolved "https://registry.npmmirror.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 2886 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 2887 | 2888 | semver@^7.3.7: 2889 | version "7.3.8" 2890 | resolved "https://registry.npmmirror.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" 2891 | integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== 2892 | dependencies: 2893 | lru-cache "^6.0.0" 2894 | 2895 | shebang-command@^1.2.0: 2896 | version "1.2.0" 2897 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz" 2898 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 2899 | dependencies: 2900 | shebang-regex "^1.0.0" 2901 | 2902 | shebang-command@^2.0.0: 2903 | version "2.0.0" 2904 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" 2905 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 2906 | dependencies: 2907 | shebang-regex "^3.0.0" 2908 | 2909 | shebang-regex@^1.0.0: 2910 | version "1.0.0" 2911 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz" 2912 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 2913 | 2914 | shebang-regex@^3.0.0: 2915 | version "3.0.0" 2916 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" 2917 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 2918 | 2919 | shell-quote@^1.6.1: 2920 | version "1.7.2" 2921 | resolved "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz" 2922 | integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg== 2923 | 2924 | side-channel@^1.0.4: 2925 | version "1.0.4" 2926 | resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz" 2927 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 2928 | dependencies: 2929 | call-bind "^1.0.0" 2930 | get-intrinsic "^1.0.2" 2931 | object-inspect "^1.9.0" 2932 | 2933 | signal-exit@^3.0.2: 2934 | version "3.0.4" 2935 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.4.tgz" 2936 | integrity sha512-rqYhcAnZ6d/vTPGghdrw7iumdcbXpsk1b8IG/rz+VWV51DM0p7XCtMoJ3qhPLIbp3tvyt3pKRbaaEMZYpHto8Q== 2937 | 2938 | slash@^3.0.0: 2939 | version "3.0.0" 2940 | resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" 2941 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 2942 | 2943 | spdx-correct@^3.0.0: 2944 | version "3.1.1" 2945 | resolved "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz" 2946 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 2947 | dependencies: 2948 | spdx-expression-parse "^3.0.0" 2949 | spdx-license-ids "^3.0.0" 2950 | 2951 | spdx-exceptions@^2.1.0: 2952 | version "2.3.0" 2953 | resolved "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz" 2954 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 2955 | 2956 | spdx-expression-parse@^3.0.0: 2957 | version "3.0.1" 2958 | resolved "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz" 2959 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 2960 | dependencies: 2961 | spdx-exceptions "^2.1.0" 2962 | spdx-license-ids "^3.0.0" 2963 | 2964 | spdx-license-ids@^3.0.0: 2965 | version "3.0.10" 2966 | resolved "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz" 2967 | integrity sha512-oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA== 2968 | 2969 | string-natural-compare@^3.0.1: 2970 | version "3.0.1" 2971 | resolved "https://registry.npmmirror.com/string-natural-compare/-/string-natural-compare-3.0.1.tgz#7a42d58474454963759e8e8b7ae63d71c1e7fdf4" 2972 | integrity sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw== 2973 | 2974 | string.prototype.matchall@^4.0.7: 2975 | version "4.0.7" 2976 | resolved "https://registry.npmmirror.com/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz#8e6ecb0d8a1fb1fda470d81acecb2dba057a481d" 2977 | integrity sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg== 2978 | dependencies: 2979 | call-bind "^1.0.2" 2980 | define-properties "^1.1.3" 2981 | es-abstract "^1.19.1" 2982 | get-intrinsic "^1.1.1" 2983 | has-symbols "^1.0.3" 2984 | internal-slot "^1.0.3" 2985 | regexp.prototype.flags "^1.4.1" 2986 | side-channel "^1.0.4" 2987 | 2988 | string.prototype.padend@^3.0.0: 2989 | version "3.1.2" 2990 | resolved "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.2.tgz" 2991 | integrity sha512-/AQFLdYvePENU3W5rgurfWSMU6n+Ww8n/3cUt7E+vPBB/D7YDG8x+qjoFs4M/alR2bW7Qg6xMjVwWUOvuQ0XpQ== 2992 | dependencies: 2993 | call-bind "^1.0.2" 2994 | define-properties "^1.1.3" 2995 | es-abstract "^1.18.0-next.2" 2996 | 2997 | string.prototype.trimend@^1.0.4: 2998 | version "1.0.4" 2999 | resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz" 3000 | integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== 3001 | dependencies: 3002 | call-bind "^1.0.2" 3003 | define-properties "^1.1.3" 3004 | 3005 | string.prototype.trimend@^1.0.5: 3006 | version "1.0.5" 3007 | resolved "https://registry.npmmirror.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" 3008 | integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== 3009 | dependencies: 3010 | call-bind "^1.0.2" 3011 | define-properties "^1.1.4" 3012 | es-abstract "^1.19.5" 3013 | 3014 | string.prototype.trimstart@^1.0.4: 3015 | version "1.0.4" 3016 | resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz" 3017 | integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== 3018 | dependencies: 3019 | call-bind "^1.0.2" 3020 | define-properties "^1.1.3" 3021 | 3022 | string.prototype.trimstart@^1.0.5: 3023 | version "1.0.5" 3024 | resolved "https://registry.npmmirror.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" 3025 | integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== 3026 | dependencies: 3027 | call-bind "^1.0.2" 3028 | define-properties "^1.1.4" 3029 | es-abstract "^1.19.5" 3030 | 3031 | strip-ansi@^6.0.1: 3032 | version "6.0.1" 3033 | resolved "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 3034 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 3035 | dependencies: 3036 | ansi-regex "^5.0.1" 3037 | 3038 | strip-bom@^3.0.0: 3039 | version "3.0.0" 3040 | resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz" 3041 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 3042 | 3043 | strip-final-newline@^2.0.0: 3044 | version "2.0.0" 3045 | resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz" 3046 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 3047 | 3048 | strip-indent@^3.0.0: 3049 | version "3.0.0" 3050 | resolved "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz" 3051 | integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== 3052 | dependencies: 3053 | min-indent "^1.0.0" 3054 | 3055 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 3056 | version "3.1.1" 3057 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" 3058 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 3059 | 3060 | supports-color@^5.3.0: 3061 | version "5.5.0" 3062 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" 3063 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 3064 | dependencies: 3065 | has-flag "^3.0.0" 3066 | 3067 | supports-color@^7.1.0: 3068 | version "7.2.0" 3069 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" 3070 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 3071 | dependencies: 3072 | has-flag "^4.0.0" 3073 | 3074 | supports-preserve-symlinks-flag@^1.0.0: 3075 | version "1.0.0" 3076 | resolved "https://registry.npmmirror.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 3077 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 3078 | 3079 | text-table@^0.2.0: 3080 | version "0.2.0" 3081 | resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" 3082 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 3083 | 3084 | to-fast-properties@^2.0.0: 3085 | version "2.0.0" 3086 | resolved "https://registry.npmmirror.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 3087 | integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== 3088 | 3089 | to-regex-range@^5.0.1: 3090 | version "5.0.1" 3091 | resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" 3092 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 3093 | dependencies: 3094 | is-number "^7.0.0" 3095 | 3096 | tr46@~0.0.3: 3097 | version "0.0.3" 3098 | resolved "https://registry.npmmirror.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 3099 | integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== 3100 | 3101 | tsconfig-paths@^3.14.1: 3102 | version "3.14.1" 3103 | resolved "https://registry.npmmirror.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" 3104 | integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== 3105 | dependencies: 3106 | "@types/json5" "^0.0.29" 3107 | json5 "^1.0.1" 3108 | minimist "^1.2.6" 3109 | strip-bom "^3.0.0" 3110 | 3111 | tslib@^1.8.1: 3112 | version "1.14.1" 3113 | resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" 3114 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 3115 | 3116 | tsutils@^3.21.0: 3117 | version "3.21.0" 3118 | resolved "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz" 3119 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== 3120 | dependencies: 3121 | tslib "^1.8.1" 3122 | 3123 | tunnel@^0.0.6: 3124 | version "0.0.6" 3125 | resolved "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz" 3126 | integrity sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg== 3127 | 3128 | type-check@^0.4.0, type-check@~0.4.0: 3129 | version "0.4.0" 3130 | resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" 3131 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 3132 | dependencies: 3133 | prelude-ls "^1.2.1" 3134 | 3135 | type-fest@^0.20.2: 3136 | version "0.20.2" 3137 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz" 3138 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 3139 | 3140 | type-fest@^0.6.0: 3141 | version "0.6.0" 3142 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz" 3143 | integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== 3144 | 3145 | type-fest@^0.8.1: 3146 | version "0.8.1" 3147 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz" 3148 | integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 3149 | 3150 | typescript@^4.9.3: 3151 | version "4.9.3" 3152 | resolved "https://registry.npmmirror.com/typescript/-/typescript-4.9.3.tgz#3aea307c1746b8c384435d8ac36b8a2e580d85db" 3153 | integrity sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA== 3154 | 3155 | unbox-primitive@^1.0.1: 3156 | version "1.0.1" 3157 | resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz" 3158 | integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw== 3159 | dependencies: 3160 | function-bind "^1.1.1" 3161 | has-bigints "^1.0.1" 3162 | has-symbols "^1.0.2" 3163 | which-boxed-primitive "^1.0.2" 3164 | 3165 | unbox-primitive@^1.0.2: 3166 | version "1.0.2" 3167 | resolved "https://registry.npmmirror.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" 3168 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== 3169 | dependencies: 3170 | call-bind "^1.0.2" 3171 | has-bigints "^1.0.2" 3172 | has-symbols "^1.0.3" 3173 | which-boxed-primitive "^1.0.2" 3174 | 3175 | universal-github-app-jwt@^1.0.1: 3176 | version "1.1.0" 3177 | resolved "https://registry.npmjs.org/universal-github-app-jwt/-/universal-github-app-jwt-1.1.0.tgz" 3178 | integrity sha512-3b+ocAjjz4JTyqaOT+NNBd5BtTuvJTxWElIoeHSVelUV9J3Jp7avmQTdLKCaoqi/5Ox2o/q+VK19TJ233rVXVQ== 3179 | dependencies: 3180 | "@types/jsonwebtoken" "^8.3.3" 3181 | jsonwebtoken "^8.5.1" 3182 | 3183 | universal-user-agent@^6.0.0: 3184 | version "6.0.0" 3185 | resolved "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz" 3186 | integrity sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w== 3187 | 3188 | update-browserslist-db@^1.0.9: 3189 | version "1.0.10" 3190 | resolved "https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz#0f54b876545726f17d00cd9a2561e6dade943ff3" 3191 | integrity sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== 3192 | dependencies: 3193 | escalade "^3.1.1" 3194 | picocolors "^1.0.0" 3195 | 3196 | uri-js@^4.2.2: 3197 | version "4.4.1" 3198 | resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" 3199 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 3200 | dependencies: 3201 | punycode "^2.1.0" 3202 | 3203 | uuid@^8.3.2: 3204 | version "8.3.2" 3205 | resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz" 3206 | integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== 3207 | 3208 | validate-npm-package-license@^3.0.1: 3209 | version "3.0.4" 3210 | resolved "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz" 3211 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 3212 | dependencies: 3213 | spdx-correct "^3.0.0" 3214 | spdx-expression-parse "^3.0.0" 3215 | 3216 | webidl-conversions@^3.0.0: 3217 | version "3.0.1" 3218 | resolved "https://registry.npmmirror.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 3219 | integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== 3220 | 3221 | whatwg-url@^5.0.0: 3222 | version "5.0.0" 3223 | resolved "https://registry.npmmirror.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" 3224 | integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== 3225 | dependencies: 3226 | tr46 "~0.0.3" 3227 | webidl-conversions "^3.0.0" 3228 | 3229 | which-boxed-primitive@^1.0.2: 3230 | version "1.0.2" 3231 | resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz" 3232 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 3233 | dependencies: 3234 | is-bigint "^1.0.1" 3235 | is-boolean-object "^1.1.0" 3236 | is-number-object "^1.0.4" 3237 | is-string "^1.0.5" 3238 | is-symbol "^1.0.3" 3239 | 3240 | which@^1.2.9: 3241 | version "1.3.1" 3242 | resolved "https://registry.npmjs.org/which/-/which-1.3.1.tgz" 3243 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 3244 | dependencies: 3245 | isexe "^2.0.0" 3246 | 3247 | which@^2.0.1: 3248 | version "2.0.2" 3249 | resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz" 3250 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 3251 | dependencies: 3252 | isexe "^2.0.0" 3253 | 3254 | word-wrap@^1.2.3: 3255 | version "1.2.3" 3256 | resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz" 3257 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 3258 | 3259 | wrappy@1: 3260 | version "1.0.2" 3261 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" 3262 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 3263 | 3264 | yallist@^4.0.0: 3265 | version "4.0.0" 3266 | resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" 3267 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 3268 | 3269 | yocto-queue@^0.1.0: 3270 | version "0.1.0" 3271 | resolved "https://registry.npmmirror.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 3272 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 3273 | --------------------------------------------------------------------------------