├── .githooks └── pre-commit ├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── bin └── cmd.js ├── lib ├── cli-handler.js └── scripts │ └── create-textlint-rule.js ├── package.json ├── renovate.json ├── test └── test.sh └── yarn.lock /.githooks/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | npx --no-install lint-staged 3 | -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: test 2 | on: [push, pull_request] 3 | env: 4 | CI: true 5 | jobs: 6 | test: 7 | name: "Test on Node.js ${{ matrix.node-version }}" 8 | runs-on: ubuntu-latest 9 | strategy: 10 | matrix: 11 | node-version: [ 14, 16, 18 ] 12 | steps: 13 | - name: checkout 14 | uses: actions/checkout@v4 15 | - name: setup Node.js ${{ matrix.node-version }} 16 | uses: actions/setup-node@v4 17 | with: 18 | node-version: ${{ matrix.node-version }} 19 | - name: Install 20 | run: yarn install 21 | - name: Test 22 | run: yarn test 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ### https://raw.github.com/github/gitignore/608690d6b9a78c2a003affc792e49a84905b3118/Node.gitignore 2 | 3 | # Logs 4 | logs 5 | *.log 6 | 7 | # Runtime data 8 | pids 9 | *.pid 10 | *.seed 11 | 12 | # Directory for instrumented libs generated by jscoverage/JSCover 13 | lib-cov 14 | 15 | # Coverage directory used by tools like istanbul 16 | coverage 17 | 18 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 19 | .grunt 20 | 21 | # node-waf configuration 22 | .lock-wscript 23 | 24 | # Compiled binary addons (http://nodejs.org/api/addons.html) 25 | build/Release 26 | 27 | # Dependency directory 28 | # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git- 29 | node_modules 30 | 31 | # Debug log from npm 32 | npm-debug.log 33 | 34 | 35 | ### https://raw.github.com/github/gitignore/608690d6b9a78c2a003affc792e49a84905b3118/Global/JetBrains.gitignore 36 | 37 | # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm 38 | 39 | *.iml 40 | 41 | ## Directory-based project format: 42 | .idea/ 43 | # if you remove the above rule, at least ignore the following: 44 | 45 | # User-specific stuff: 46 | # .idea/workspace.xml 47 | # .idea/tasks.xml 48 | # .idea/dictionaries 49 | 50 | # Sensitive or high-churn files: 51 | # .idea/dataSources.ids 52 | # .idea/dataSources.xml 53 | # .idea/sqlDataSources.xml 54 | # .idea/dynamic.xml 55 | # .idea/uiDesigner.xml 56 | 57 | # Gradle: 58 | # .idea/gradle.xml 59 | # .idea/libraries 60 | 61 | # Mongo Explorer plugin: 62 | # .idea/mongoSettings.xml 63 | 64 | ## File-based project format: 65 | *.ipr 66 | *.iws 67 | 68 | ## Plugin-specific files: 69 | 70 | # IntelliJ 71 | out/ 72 | 73 | # mpeltonen/sbt-idea plugin 74 | .idea_modules/ 75 | 76 | # JIRA plugin 77 | atlassian-ide-plugin.xml 78 | 79 | # Crashlytics plugin (for Android Studio and IntelliJ) 80 | com_crashlytics_export_strings.xml 81 | crashlytics.properties 82 | crashlytics-build.properties 83 | 84 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2016 azu 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 | SOFTWARE. 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # create-textlint-rule [![Build Status](https://travis-ci.org/textlint/create-textlint-rule.svg?branch=master)](https://travis-ci.org/textlint/create-textlint-rule) 2 | 3 | Create textlint rule with no configuration. 4 | 5 | This command line tools generate textlint rule project files by one command. 6 | 7 | ## Install 8 | 9 | Install with [npm](https://www.npmjs.com/): 10 | 11 | npm install --global create-textlint-rule 12 | # Or 13 | npx create-textlint-rule 14 | 15 | ## Usage 16 | 17 | Usage of `create-textlint-rule` command. 18 | 19 | Usage 20 | $ create-textlint-rule rule-name 21 | 22 | Options 23 | --help Show help 24 | --yarn Use yarn for installing 25 | --typescript Create TypeScript project 26 | --yes Pass --yes all for initializing process 27 | 28 | Examples 29 | # create textlint-rule-example directory and install 30 | $ create-textlint-rule example 31 | # install to current directory 32 | $ create-textlint-rule . 33 | # create textlint-rule-example directory is based on TypeScript 34 | $ create-textlint-rule example --typescript 35 | 36 | Create textlint rule project by following command: 37 | 38 | ```sh 39 | $ create-textlint-rule no-todo 40 | #`textlint-rule-no-todo` project is created in current dir 41 | ``` 42 | 43 | You can start to develop textlint rule. 44 | 45 | For more details, see [textlint-scripts](https://github.com/textlint/textlint-scripts "textlint-scripts"). 46 | 47 | ### Build 48 | 49 | Builds source codes for publish to the `lib` folder. 50 | You can write ES2015+ source codes in `src/` folder. 51 | 52 | npm run build 53 | 54 | ### Tests 55 | 56 | Run test code in `test` folder. 57 | Test textlint rule by [textlint-tester](https://github.com/textlint/textlint-tester "textlint-tester"). 58 | 59 | npm test 60 | 61 | ### Publish 62 | 63 | Publish your rule to [npm](https://www.npmjs.com/). 64 | 65 | # Update version and git tag `patch` or `minor` or `major` 66 | npm version {patch|minor|major} 67 | npm publish 68 | 69 | 70 | **Next** 71 | 72 | You can learn to create textlint rule. 73 | 74 | - [textlint/README.md at master · textlint/textlint](https://github.com/textlint/textlint/blob/master/docs/README.md "textlint/README.md at master · textlint/textlint") 75 | 76 | ## Reference 77 | 78 | This Command line tools based on these project. 79 | 80 | - [textlint/textlint-rule-template: This is TEMPLATE REPOSITORY for creating textlint rule.](https://github.com/textlint/textlint-rule-template) 81 | - JavaScript Template 82 | - [https://github.com/textlint/textlint-rule-template-ts#textlint-rule-template](https://github.com/textlint/textlint-rule-template-ts#textlint-rule-template) 83 | - TypeScript Template 84 | - [textlint/textlint-scripts: textlint npm-run-scripts CLI help to create textlint rule.](https://github.com/textlint/textlint-scripts) 85 | - [facebookincubator/create-react-app: Create React apps with no build configuration.](https://github.com/facebookincubator/create-react-app "facebookincubator/create-react-app: Create React apps with no build configuration.") 86 | 87 | ## Changelog 88 | 89 | See [Releases page](https://github.com/textlint/create-textlint-rule/releases). 90 | 91 | ## Running tests 92 | 93 | Install devDependencies and Run `npm test`: 94 | 95 | npm i -d && npm test 96 | 97 | ## Contributing 98 | 99 | Pull requests and stars are always welcome. 100 | 101 | For bugs and feature requests, [please create an issue](https://github.com/textlint/create-textlint-rule/issues). 102 | 103 | 1. Fork it! 104 | 2. Create your feature branch: `git checkout -b my-new-feature` 105 | 3. Commit your changes: `git commit -am 'Add some feature'` 106 | 4. Push to the branch: `git push origin my-new-feature` 107 | 5. Submit a pull request :D 108 | 109 | ## Author 110 | 111 | - [github/azu](https://github.com/azu) 112 | - [twitter/azu_re](https://twitter.com/azu_re) 113 | 114 | ## License 115 | 116 | MIT © azu 117 | -------------------------------------------------------------------------------- /bin/cmd.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | import meow from "meow"; 3 | import chalk from "chalk"; 4 | import updateNotifier from "update-notifier"; 5 | import cliHandler from "../lib/cli-handler.js"; 6 | import { readFile } from "node:fs/promises"; 7 | export const getPackageInfo = async () => { 8 | const pkg = await readFile(new URL("../package.json", import.meta.url)); 9 | return JSON.parse(pkg); 10 | }; 11 | const cli = meow( 12 | ` 13 | Usage 14 | $ create-textlint-rule rule-name 15 | 16 | Options 17 | --help Show help 18 | --yarn Use yarn for installing 19 | --typescript Create TypeScript project 20 | --yes Pass --yes all for initializing process 21 | 22 | Examples 23 | # create textlint-rule-example directory and install 24 | $ create-textlint-rule example 25 | # install to current directory 26 | $ create-textlint-rule . 27 | # create textlint-rule-example directory is based on TypeScript 28 | $ create-textlint-rule example --typescript 29 | `, 30 | { 31 | importMeta: import.meta, 32 | autoHelp: true, 33 | autoVersion: true 34 | } 35 | ); 36 | /* 37 | { 38 | input: ['unicorns'], 39 | flags: {rainbow: true}, 40 | ... 41 | } 42 | */ 43 | updateNotifier({ 44 | pkg: await getPackageInfo(), 45 | updateCheckInterval: 1000 * 60 * 60 * 24 * 7 46 | }).notify(); 47 | 48 | if (cli.input.length === 0 || cli.flags.help) { 49 | cli.showHelp(); 50 | } else { 51 | cliHandler(cli.input[0], { 52 | yes: cli.flags.yes, 53 | yarn: cli.flags.yarn, 54 | typescript: cli.flags.typescript, 55 | cwd: process.cwd() 56 | }) 57 | .then(() => { 58 | process.exit(0); 59 | }) 60 | .catch((error) => { 61 | console.log(chalk.red(`✗ Error: ${error.message}`)); 62 | console.log(); 63 | console.error(error); 64 | process.exit(1); 65 | }); 66 | } 67 | -------------------------------------------------------------------------------- /lib/cli-handler.js: -------------------------------------------------------------------------------- 1 | import chalk from "chalk"; 2 | import createTextlintRule from "./scripts/create-textlint-rule.js"; 3 | 4 | /** 5 | * @param {string} projectName 6 | * @param {{ 7 | * yes: boolean, 8 | * yarn: boolean, 9 | * cwd: string 10 | * }} options 11 | * @returns {Promise} 12 | */ 13 | export default function (projectName, options = {}) { 14 | return createTextlintRule(projectName, options).then(() => { 15 | console.log(chalk.green(`✔ Complete: Let's write textlint rule`)); 16 | }); 17 | } 18 | -------------------------------------------------------------------------------- /lib/scripts/create-textlint-rule.js: -------------------------------------------------------------------------------- 1 | import rimraf from "rimraf"; 2 | import chalk from "chalk"; 3 | import spawn from "cross-spawn-promise"; 4 | import path from "node:path"; 5 | 6 | /** 7 | * @see https://github.com/textlint/textlint-rule-template 8 | * @param {string} projectName 9 | * @param {{ 10 | * yes: boolean, 11 | * yarn: boolean, 12 | * typescript: boolean, 13 | * cwd: string 14 | * }} [options] 15 | * @returns {Promise} 16 | */ 17 | export default function (projectName, options = {}) { 18 | const useYarn = options.yarn !== undefined; 19 | const useYes = options.yes !== undefined; 20 | const useTypeScript = options.typescript !== undefined; 21 | const isInitInCurrentDir = projectName === "."; 22 | const ruleName = isInitInCurrentDir 23 | ? path.basename(options.cwd) 24 | : `textlint-rule-${projectName.replace(/^textlint-rule-/, "")}`; 25 | if (isInitInCurrentDir && !/^textlint-rule-/.test(ruleName)) { 26 | throw new Error(`Current directory name should start with "textlint-rule-": ${ruleName}.`); 27 | } 28 | const ruleDir = isInitInCurrentDir ? options.cwd : path.join(options.cwd, ruleName); 29 | const gitRepositoryUrl = useTypeScript 30 | ? "https://github.com/textlint/textlint-rule-template-ts.git" 31 | : "https://github.com/textlint/textlint-rule-template.git"; 32 | return spawn(`git`, ["clone", "--depth=1", gitRepositoryUrl, isInitInCurrentDir ? "." : ruleName], { 33 | stdio: "inherit" 34 | }) 35 | .then(() => { 36 | if (!isInitInCurrentDir) { 37 | console.log(chalk.green(`cd ${ruleDir}`)); 38 | process.chdir(ruleDir); 39 | } 40 | }) 41 | .then(() => { 42 | const gitDir = path.join(ruleDir, ".git"); 43 | rimraf.sync(gitDir); 44 | }) 45 | .then(() => { 46 | const githubDir = path.join(ruleDir, ".github"); 47 | rimraf.sync(githubDir); 48 | }) 49 | .then(() => { 50 | const README = path.join(ruleDir, "README.md"); 51 | rimraf.sync(README); 52 | }) 53 | .then(() => { 54 | return spawn("git", ["init"], { stdio: "inherit" }); 55 | }) 56 | .then(() => { 57 | console.log(chalk.green(`Input information about your textlint rule`)); 58 | return spawn("npm", ["init"].concat(useYes ? ["--yes"] : []), { stdio: "inherit" }); 59 | }) 60 | .then(() => { 61 | console.log(chalk.green(`Wait... Installing npm packages for development`)); 62 | if (useYarn) { 63 | return spawn("yarn", ["install"], { stdio: "inherit" }); 64 | } else { 65 | return spawn("npm", ["install"], { stdio: "inherit" }); 66 | } 67 | }) 68 | .then(() => { 69 | console.log(chalk.green(`Initialize your README!`)); 70 | return spawn(`./node_modules/.bin/textlint-scripts`, ["init"], { stdio: "inherit" }); 71 | }); 72 | } 73 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "create-textlint-rule", 3 | "version": "2.0.0", 4 | "description": "Create textlint rule project with no configuration.", 5 | "keywords": [ 6 | "textlint", 7 | "tools", 8 | "development", 9 | "rule" 10 | ], 11 | "homepage": "https://github.com/textlint/create-textlint-rule", 12 | "bugs": { 13 | "url": "https://github.com/textlint/create-textlint-rule/issues" 14 | }, 15 | "repository": { 16 | "type": "git", 17 | "url": "https://github.com/textlint/create-textlint-rule.git" 18 | }, 19 | "license": "MIT", 20 | "author": "azu", 21 | "type": "module", 22 | "main": "lib/create-textlint-rule.js", 23 | "bin": { 24 | "create-textlint-rule": "bin/cmd.js" 25 | }, 26 | "directories": { 27 | "test": "test" 28 | }, 29 | "files": [ 30 | "bin/", 31 | "lib/" 32 | ], 33 | "engines": { 34 | "node": ">=14.16" 35 | }, 36 | "scripts": { 37 | "format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"", 38 | "prepare": "git config --local core.hooksPath .githooks", 39 | "test": "./test/test.sh" 40 | }, 41 | "lint-staged": { 42 | "*.{js,jsx,ts,tsx,css}": [ 43 | "prettier --write" 44 | ] 45 | }, 46 | "prettier": { 47 | "printWidth": 120, 48 | "singleQuote": false, 49 | "tabWidth": 4, 50 | "trailingComma": "none" 51 | }, 52 | "dependencies": { 53 | "chalk": "^5.3.0", 54 | "cross-spawn": "^7.0.6", 55 | "cross-spawn-promise": "^0.10.2", 56 | "meow": "^11.0.0", 57 | "rimraf": "^4.4.1", 58 | "update-notifier": "^6.0.2" 59 | }, 60 | "devDependencies": { 61 | "lint-staged": "^13.2.3", 62 | "prettier": "^2.7.1" 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "@azu" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -eux 3 | # test rule-name 4 | declare currentDir=$(cd $(dirname $0);pwd) 5 | declare dirName=$(basename "${currentDir}") 6 | declare parentDir=$(dirname "${currentDir}") 7 | declare testRuleName="test-rule-name"; 8 | # test for js 9 | echo "Run: create-textlint-rule ${test-rule-name}" 10 | cd ${currentDir} 11 | node ${parentDir}/bin/cmd.js "${testRuleName}" --yes 12 | ls "${currentDir}/textlint-rule-${testRuleName}/package.json" # check file 13 | rm -rf "${currentDir}/textlint-rule-${testRuleName}" 14 | # test for ts 15 | echo "Run: create-textlint-rule ${test-rule-name} --typescript" 16 | cd ${currentDir} 17 | node ${parentDir}/bin/cmd.js "${testRuleName}" --yes --typescript 18 | ls "${currentDir}/textlint-rule-${testRuleName}/package.json" # check file 19 | rm -rf "${currentDir}/textlint-rule-${testRuleName}" 20 | # test . 21 | echo "Run: create-textlint-rule ." 22 | mkdir "textlint-rule-${testRuleName}" 23 | cd "textlint-rule-${testRuleName}" 24 | node ${parentDir}/bin/cmd.js "." --yes 25 | rm -rf "${currentDir}/textlint-rule-${testRuleName}" 26 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.0.0": 6 | version "7.12.11" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" 8 | integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== 9 | dependencies: 10 | "@babel/highlight" "^7.10.4" 11 | 12 | "@babel/helper-validator-identifier@^7.10.4": 13 | version "7.12.11" 14 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed" 15 | integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw== 16 | 17 | "@babel/highlight@^7.10.4": 18 | version "7.10.4" 19 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" 20 | integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== 21 | dependencies: 22 | "@babel/helper-validator-identifier" "^7.10.4" 23 | chalk "^2.0.0" 24 | js-tokens "^4.0.0" 25 | 26 | "@pnpm/network.ca-file@^1.0.1": 27 | version "1.0.1" 28 | resolved "https://registry.yarnpkg.com/@pnpm/network.ca-file/-/network.ca-file-1.0.1.tgz#16f88d057c68cd5419c1ef3dfa281296ea80b047" 29 | integrity sha512-gkINruT2KUhZLTaiHxwCOh1O4NVnFT0wLjWFBHmTz9vpKag/C/noIMJXBxFe4F0mYpUVX2puLwAieLYFg2NvoA== 30 | dependencies: 31 | graceful-fs "4.2.10" 32 | 33 | "@pnpm/npm-conf@^1.0.4": 34 | version "1.0.5" 35 | resolved "https://registry.yarnpkg.com/@pnpm/npm-conf/-/npm-conf-1.0.5.tgz#3475541fb71d7b6ce68acaaa3392eae9fedf3276" 36 | integrity sha512-hD8ml183638O3R6/Txrh0L8VzGOrFXgRtRDG4qQC4tONdZ5Z1M+tlUUDUvrjYdmK6G+JTBTeaCLMna11cXzi8A== 37 | dependencies: 38 | "@pnpm/network.ca-file" "^1.0.1" 39 | config-chain "^1.1.11" 40 | 41 | "@sindresorhus/is@^5.2.0": 42 | version "5.3.0" 43 | resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-5.3.0.tgz#0ec9264cf54a527671d990eb874e030b55b70dcc" 44 | integrity sha512-CX6t4SYQ37lzxicAqsBtxA3OseeoVrh9cSJ5PFYam0GksYlupRfy1A+Q4aYD3zvcfECLc0zO2u+ZnR2UYKvCrw== 45 | 46 | "@szmarczak/http-timer@^5.0.1": 47 | version "5.0.1" 48 | resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-5.0.1.tgz#c7c1bf1141cdd4751b0399c8fc7b8b664cd5be3a" 49 | integrity sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw== 50 | dependencies: 51 | defer-to-connect "^2.0.1" 52 | 53 | "@types/http-cache-semantics@^4.0.1": 54 | version "4.0.1" 55 | resolved "https://registry.yarnpkg.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.1.tgz#0ea7b61496902b95890dc4c3a116b60cb8dae812" 56 | integrity sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ== 57 | 58 | "@types/minimist@^1.2.2": 59 | version "1.2.2" 60 | resolved "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.2.tgz#ee771e2ba4b3dc5b372935d549fd9617bf345b8c" 61 | integrity sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ== 62 | 63 | "@types/normalize-package-data@^2.4.1": 64 | version "2.4.1" 65 | resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" 66 | integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== 67 | 68 | aggregate-error@^3.0.0: 69 | version "3.1.0" 70 | resolved "https://registry.yarnpkg.com/aggregate-error/-/aggregate-error-3.1.0.tgz#92670ff50f5359bdb7a3e0d40d0ec30c5737687a" 71 | integrity sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA== 72 | dependencies: 73 | clean-stack "^2.0.0" 74 | indent-string "^4.0.0" 75 | 76 | ansi-align@^3.0.1: 77 | version "3.0.1" 78 | resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-3.0.1.tgz#0cdf12e111ace773a86e9a1fad1225c43cb19a59" 79 | integrity sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w== 80 | dependencies: 81 | string-width "^4.1.0" 82 | 83 | ansi-escapes@^4.3.0: 84 | version "4.3.1" 85 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61" 86 | integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA== 87 | dependencies: 88 | type-fest "^0.11.0" 89 | 90 | ansi-regex@^5.0.0: 91 | version "5.0.0" 92 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 93 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 94 | 95 | ansi-regex@^6.0.1: 96 | version "6.0.1" 97 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" 98 | integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== 99 | 100 | ansi-styles@^3.2.1: 101 | version "3.2.1" 102 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 103 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 104 | dependencies: 105 | color-convert "^1.9.0" 106 | 107 | ansi-styles@^4.0.0: 108 | version "4.3.0" 109 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 110 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 111 | dependencies: 112 | color-convert "^2.0.1" 113 | 114 | ansi-styles@^6.0.0: 115 | version "6.1.0" 116 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.1.0.tgz#87313c102b8118abd57371afab34618bf7350ed3" 117 | integrity sha512-VbqNsoz55SYGczauuup0MFUyXNQviSpFTj1RQtFzmQLk18qbVSpTFFGMT293rmDaQuKCT6InmbuEyUne4mTuxQ== 118 | 119 | ansi-styles@^6.1.0: 120 | version "6.2.1" 121 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" 122 | integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== 123 | 124 | arrify@^1.0.1: 125 | version "1.0.1" 126 | resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" 127 | integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= 128 | 129 | astral-regex@^2.0.0: 130 | version "2.0.0" 131 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" 132 | integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== 133 | 134 | balanced-match@^1.0.0: 135 | version "1.0.2" 136 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 137 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 138 | 139 | boxen@^7.0.0: 140 | version "7.0.0" 141 | resolved "https://registry.yarnpkg.com/boxen/-/boxen-7.0.0.tgz#9e5f8c26e716793fc96edcf7cf754cdf5e3fbf32" 142 | integrity sha512-j//dBVuyacJbvW+tvZ9HuH03fZ46QcaKvvhZickZqtB271DxJ7SNRSNxrV/dZX0085m7hISRZWbzWlJvx/rHSg== 143 | dependencies: 144 | ansi-align "^3.0.1" 145 | camelcase "^7.0.0" 146 | chalk "^5.0.1" 147 | cli-boxes "^3.0.0" 148 | string-width "^5.1.2" 149 | type-fest "^2.13.0" 150 | widest-line "^4.0.1" 151 | wrap-ansi "^8.0.1" 152 | 153 | brace-expansion@^2.0.1: 154 | version "2.0.1" 155 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" 156 | integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== 157 | dependencies: 158 | balanced-match "^1.0.0" 159 | 160 | braces@^3.0.2: 161 | version "3.0.2" 162 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 163 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 164 | dependencies: 165 | fill-range "^7.0.1" 166 | 167 | cacheable-lookup@^7.0.0: 168 | version "7.0.0" 169 | resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz#3476a8215d046e5a3202a9209dd13fec1f933a27" 170 | integrity sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w== 171 | 172 | cacheable-request@^10.2.1: 173 | version "10.2.2" 174 | resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-10.2.2.tgz#07c3d5afcaa2de2e9f66959bacb3ff78da3735fd" 175 | integrity sha512-KxjQZM3UIo7/J6W4sLpwFvu1GB3Whv8NtZ8ZrUL284eiQjiXeeqWTdhixNrp/NLZ/JNuFBo6BD4ZaO8ZJ5BN8Q== 176 | dependencies: 177 | "@types/http-cache-semantics" "^4.0.1" 178 | get-stream "^6.0.1" 179 | http-cache-semantics "^4.1.0" 180 | keyv "^4.5.0" 181 | mimic-response "^4.0.0" 182 | normalize-url "^7.2.0" 183 | responselike "^3.0.0" 184 | 185 | camelcase-keys@^8.0.2: 186 | version "8.0.2" 187 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-8.0.2.tgz#a7140ba7c797aea32161d4ce5cdbda11d09eb414" 188 | integrity sha512-qMKdlOfsjlezMqxkUGGMaWWs17i2HoL15tM+wtx8ld4nLrUwU58TFdvyGOz/piNP842KeO8yXvggVQSdQ828NA== 189 | dependencies: 190 | camelcase "^7.0.0" 191 | map-obj "^4.3.0" 192 | quick-lru "^6.1.1" 193 | type-fest "^2.13.0" 194 | 195 | camelcase@^7.0.0: 196 | version "7.0.0" 197 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-7.0.0.tgz#fd112621b212126741f998d614cbc2a8623fd174" 198 | integrity sha512-JToIvOmz6nhGsUhAYScbo2d6Py5wojjNfoxoc2mEVLUdJ70gJK2gnd+ABY1Tc3sVMyK7QDPtN0T/XdlCQWITyQ== 199 | 200 | chalk@5.2.0: 201 | version "5.2.0" 202 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.2.0.tgz#249623b7d66869c673699fb66d65723e54dfcfb3" 203 | integrity sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA== 204 | 205 | chalk@^2.0.0: 206 | version "2.4.2" 207 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 208 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 209 | dependencies: 210 | ansi-styles "^3.2.1" 211 | escape-string-regexp "^1.0.5" 212 | supports-color "^5.3.0" 213 | 214 | chalk@^5.0.1: 215 | version "5.1.2" 216 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.1.2.tgz#d957f370038b75ac572471e83be4c5ca9f8e8c45" 217 | integrity sha512-E5CkT4jWURs1Vy5qGJye+XwCkNj7Od3Af7CP6SujMetSMkLs8Do2RWJK5yx1wamHV/op8Rz+9rltjaTQWDnEFQ== 218 | 219 | chalk@^5.3.0: 220 | version "5.3.0" 221 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.3.0.tgz#67c20a7ebef70e7f3970a01f90fa210cb6860385" 222 | integrity sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w== 223 | 224 | ci-info@^3.2.0: 225 | version "3.6.1" 226 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.6.1.tgz#7594f1c95cb7fdfddee7af95a13af7dbc67afdcf" 227 | integrity sha512-up5ggbaDqOqJ4UqLKZ2naVkyqSJQgJi5lwD6b6mM748ysrghDBX0bx/qJTUHzw7zu6Mq4gycviSF5hJnwceD8w== 228 | 229 | clean-stack@^2.0.0: 230 | version "2.2.0" 231 | resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" 232 | integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== 233 | 234 | cli-boxes@^3.0.0: 235 | version "3.0.0" 236 | resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-3.0.0.tgz#71a10c716feeba005e4504f36329ef0b17cf3145" 237 | integrity sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g== 238 | 239 | cli-cursor@^3.1.0: 240 | version "3.1.0" 241 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" 242 | integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw== 243 | dependencies: 244 | restore-cursor "^3.1.0" 245 | 246 | cli-truncate@^2.1.0: 247 | version "2.1.0" 248 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" 249 | integrity sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg== 250 | dependencies: 251 | slice-ansi "^3.0.0" 252 | string-width "^4.2.0" 253 | 254 | cli-truncate@^3.1.0: 255 | version "3.1.0" 256 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-3.1.0.tgz#3f23ab12535e3d73e839bb43e73c9de487db1389" 257 | integrity sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA== 258 | dependencies: 259 | slice-ansi "^5.0.0" 260 | string-width "^5.0.0" 261 | 262 | color-convert@^1.9.0: 263 | version "1.9.3" 264 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 265 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 266 | dependencies: 267 | color-name "1.1.3" 268 | 269 | color-convert@^2.0.1: 270 | version "2.0.1" 271 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 272 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 273 | dependencies: 274 | color-name "~1.1.4" 275 | 276 | color-name@1.1.3: 277 | version "1.1.3" 278 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 279 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 280 | 281 | color-name@~1.1.4: 282 | version "1.1.4" 283 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 284 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 285 | 286 | colorette@^2.0.19: 287 | version "2.0.19" 288 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.19.tgz#cdf044f47ad41a0f4b56b3a0d5b4e6e1a2d5a798" 289 | integrity sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ== 290 | 291 | commander@^10.0.0: 292 | version "10.0.0" 293 | resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.0.tgz#71797971162cd3cf65f0b9d24eb28f8d303acdf1" 294 | integrity sha512-zS5PnTI22FIRM6ylNW8G4Ap0IEOyk62fhLSD0+uHRT9McRCLGpkVNvao4bjimpK/GShynyQkFFxHhwMcETmduA== 295 | 296 | config-chain@^1.1.11: 297 | version "1.1.13" 298 | resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.13.tgz#fad0795aa6a6cdaff9ed1b68e9dff94372c232f4" 299 | integrity sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ== 300 | dependencies: 301 | ini "^1.3.4" 302 | proto-list "~1.2.1" 303 | 304 | configstore@^6.0.0: 305 | version "6.0.0" 306 | resolved "https://registry.yarnpkg.com/configstore/-/configstore-6.0.0.tgz#49eca2ebc80983f77e09394a1a56e0aca8235566" 307 | integrity sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA== 308 | dependencies: 309 | dot-prop "^6.0.1" 310 | graceful-fs "^4.2.6" 311 | unique-string "^3.0.0" 312 | write-file-atomic "^3.0.3" 313 | xdg-basedir "^5.0.1" 314 | 315 | cross-spawn-promise@^0.10.2: 316 | version "0.10.2" 317 | resolved "https://registry.yarnpkg.com/cross-spawn-promise/-/cross-spawn-promise-0.10.2.tgz#0e6338149caf53a6d557ac5c65efb3086d8704ac" 318 | integrity sha512-74PXJf6DYaab2klRS+D+9qxKJL1Weo3/ao9OPoH6NFzxtINSa/HE2mcyAPu1fpEmRTPD4Gdmpg3xEXQSgI8lpg== 319 | dependencies: 320 | cross-spawn "^5.1.0" 321 | 322 | cross-spawn@^5.1.0: 323 | version "5.1.0" 324 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 325 | integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= 326 | dependencies: 327 | lru-cache "^4.0.1" 328 | shebang-command "^1.2.0" 329 | which "^1.2.9" 330 | 331 | cross-spawn@^7.0.3: 332 | version "7.0.3" 333 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 334 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 335 | dependencies: 336 | path-key "^3.1.0" 337 | shebang-command "^2.0.0" 338 | which "^2.0.1" 339 | 340 | cross-spawn@^7.0.6: 341 | version "7.0.6" 342 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f" 343 | integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA== 344 | dependencies: 345 | path-key "^3.1.0" 346 | shebang-command "^2.0.0" 347 | which "^2.0.1" 348 | 349 | crypto-random-string@^4.0.0: 350 | version "4.0.0" 351 | resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-4.0.0.tgz#5a3cc53d7dd86183df5da0312816ceeeb5bb1fc2" 352 | integrity sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA== 353 | dependencies: 354 | type-fest "^1.0.1" 355 | 356 | debug@^4.3.4: 357 | version "4.3.4" 358 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 359 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 360 | dependencies: 361 | ms "2.1.2" 362 | 363 | decamelize-keys@^1.1.0: 364 | version "1.1.0" 365 | resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9" 366 | integrity sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk= 367 | dependencies: 368 | decamelize "^1.1.0" 369 | map-obj "^1.0.0" 370 | 371 | decamelize@^1.1.0: 372 | version "1.2.0" 373 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 374 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 375 | 376 | decamelize@^6.0.0: 377 | version "6.0.0" 378 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-6.0.0.tgz#8cad4d916fde5c41a264a43d0ecc56fe3d31749e" 379 | integrity sha512-Fv96DCsdOgB6mdGl67MT5JaTNKRzrzill5OH5s8bjYJXVlcXyPYGyPsUkWyGV5p1TXI5esYIYMMeDJL0hEIwaA== 380 | 381 | decompress-response@^6.0.0: 382 | version "6.0.0" 383 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" 384 | integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== 385 | dependencies: 386 | mimic-response "^3.1.0" 387 | 388 | deep-extend@^0.6.0: 389 | version "0.6.0" 390 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 391 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 392 | 393 | defer-to-connect@^2.0.1: 394 | version "2.0.1" 395 | resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587" 396 | integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg== 397 | 398 | dot-prop@^6.0.1: 399 | version "6.0.1" 400 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-6.0.1.tgz#fc26b3cf142b9e59b74dbd39ed66ce620c681083" 401 | integrity sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA== 402 | dependencies: 403 | is-obj "^2.0.0" 404 | 405 | eastasianwidth@^0.2.0: 406 | version "0.2.0" 407 | resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" 408 | integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== 409 | 410 | emoji-regex@^8.0.0: 411 | version "8.0.0" 412 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 413 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 414 | 415 | emoji-regex@^9.2.2: 416 | version "9.2.2" 417 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" 418 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== 419 | 420 | error-ex@^1.3.1: 421 | version "1.3.2" 422 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 423 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 424 | dependencies: 425 | is-arrayish "^0.2.1" 426 | 427 | escape-goat@^4.0.0: 428 | version "4.0.0" 429 | resolved "https://registry.yarnpkg.com/escape-goat/-/escape-goat-4.0.0.tgz#9424820331b510b0666b98f7873fe11ac4aa8081" 430 | integrity sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg== 431 | 432 | escape-string-regexp@^1.0.5: 433 | version "1.0.5" 434 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 435 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 436 | 437 | execa@^7.0.0: 438 | version "7.1.0" 439 | resolved "https://registry.yarnpkg.com/execa/-/execa-7.1.0.tgz#50c6f39438b7ce407e8c7a6829c72b074778238d" 440 | integrity sha512-T6nIJO3LHxUZ6ahVRaxXz9WLEruXLqdcluA+UuTptXmLM7nDAn9lx9IfkxPyzEL21583qSt4RmL44pO71EHaJQ== 441 | dependencies: 442 | cross-spawn "^7.0.3" 443 | get-stream "^6.0.1" 444 | human-signals "^4.3.0" 445 | is-stream "^3.0.0" 446 | merge-stream "^2.0.0" 447 | npm-run-path "^5.1.0" 448 | onetime "^6.0.0" 449 | signal-exit "^3.0.7" 450 | strip-final-newline "^3.0.0" 451 | 452 | fill-range@^7.0.1: 453 | version "7.0.1" 454 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 455 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 456 | dependencies: 457 | to-regex-range "^5.0.1" 458 | 459 | find-up@^6.3.0: 460 | version "6.3.0" 461 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-6.3.0.tgz#2abab3d3280b2dc7ac10199ef324c4e002c8c790" 462 | integrity sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw== 463 | dependencies: 464 | locate-path "^7.1.0" 465 | path-exists "^5.0.0" 466 | 467 | form-data-encoder@^2.1.2: 468 | version "2.1.3" 469 | resolved "https://registry.yarnpkg.com/form-data-encoder/-/form-data-encoder-2.1.3.tgz#682cd821a8423605093992ff895e6b2ed5a9d429" 470 | integrity sha512-KqU0nnPMgIJcCOFTNJFEA8epcseEaoox4XZffTgy8jlI6pL/5EFyR54NRG7CnCJN0biY7q52DO3MH6/sJ/TKlQ== 471 | 472 | fs.realpath@^1.0.0: 473 | version "1.0.0" 474 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 475 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 476 | 477 | function-bind@^1.1.1: 478 | version "1.1.1" 479 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 480 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 481 | 482 | get-stream@^6.0.1: 483 | version "6.0.1" 484 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" 485 | integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== 486 | 487 | glob@^9.2.0: 488 | version "9.3.0" 489 | resolved "https://registry.yarnpkg.com/glob/-/glob-9.3.0.tgz#be6e50d172d025c3fcf87903ae25b36b787c0bb0" 490 | integrity sha512-EAZejC7JvnQINayvB/7BJbpZpNOJ8Lrw2OZNEvQxe0vaLn1SuwMcfV7/MNaX8L/T0wmptBFI4YMtDvSBxYDc7w== 491 | dependencies: 492 | fs.realpath "^1.0.0" 493 | minimatch "^7.4.1" 494 | minipass "^4.2.4" 495 | path-scurry "^1.6.1" 496 | 497 | global-dirs@^3.0.0: 498 | version "3.0.0" 499 | resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-3.0.0.tgz#70a76fe84ea315ab37b1f5576cbde7d48ef72686" 500 | integrity sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA== 501 | dependencies: 502 | ini "2.0.0" 503 | 504 | got@^12.1.0: 505 | version "12.5.3" 506 | resolved "https://registry.yarnpkg.com/got/-/got-12.5.3.tgz#82bdca2dd61258a02e24d668ea6e7abb70ac3598" 507 | integrity sha512-8wKnb9MGU8IPGRIo+/ukTy9XLJBwDiCpIf5TVzQ9Cpol50eMTpBq2GAuDsuDIz7hTYmZgMgC1e9ydr6kSDWs3w== 508 | dependencies: 509 | "@sindresorhus/is" "^5.2.0" 510 | "@szmarczak/http-timer" "^5.0.1" 511 | cacheable-lookup "^7.0.0" 512 | cacheable-request "^10.2.1" 513 | decompress-response "^6.0.0" 514 | form-data-encoder "^2.1.2" 515 | get-stream "^6.0.1" 516 | http2-wrapper "^2.1.10" 517 | lowercase-keys "^3.0.0" 518 | p-cancelable "^3.0.0" 519 | responselike "^3.0.0" 520 | 521 | graceful-fs@4.2.10, graceful-fs@^4.2.6: 522 | version "4.2.10" 523 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" 524 | integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== 525 | 526 | hard-rejection@^2.1.0: 527 | version "2.1.0" 528 | resolved "https://registry.yarnpkg.com/hard-rejection/-/hard-rejection-2.1.0.tgz#1c6eda5c1685c63942766d79bb40ae773cecd883" 529 | integrity sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA== 530 | 531 | has-flag@^3.0.0: 532 | version "3.0.0" 533 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 534 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 535 | 536 | has-yarn@^3.0.0: 537 | version "3.0.0" 538 | resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-3.0.0.tgz#c3c21e559730d1d3b57e28af1f30d06fac38147d" 539 | integrity sha512-IrsVwUHhEULx3R8f/aA8AHuEzAorplsab/v8HBzEiIukwq5i/EC+xmOW+HfP1OaDP+2JkgT1yILHN2O3UFIbcA== 540 | 541 | has@^1.0.3: 542 | version "1.0.3" 543 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 544 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 545 | dependencies: 546 | function-bind "^1.1.1" 547 | 548 | hosted-git-info@^4.0.1: 549 | version "4.1.0" 550 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" 551 | integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== 552 | dependencies: 553 | lru-cache "^6.0.0" 554 | 555 | hosted-git-info@^5.0.0: 556 | version "5.2.1" 557 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-5.2.1.tgz#0ba1c97178ef91f3ab30842ae63d6a272341156f" 558 | integrity sha512-xIcQYMnhcx2Nr4JTjsFmwwnr9vldugPy9uVm0o87bjqqWMv9GaqsTeT+i99wTl0mk1uLxJtHxLb8kymqTENQsw== 559 | dependencies: 560 | lru-cache "^7.5.1" 561 | 562 | http-cache-semantics@^4.1.0: 563 | version "4.1.0" 564 | resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" 565 | integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ== 566 | 567 | http2-wrapper@^2.1.10: 568 | version "2.2.0" 569 | resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-2.2.0.tgz#b80ad199d216b7d3680195077bd7b9060fa9d7f3" 570 | integrity sha512-kZB0wxMo0sh1PehyjJUWRFEd99KC5TLjZ2cULC4f9iqJBAmKQQXEICjxl5iPJRwP40dpeHFqqhm7tYCvODpqpQ== 571 | dependencies: 572 | quick-lru "^5.1.1" 573 | resolve-alpn "^1.2.0" 574 | 575 | human-signals@^4.3.0: 576 | version "4.3.0" 577 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-4.3.0.tgz#2095c3cd5afae40049403d4b811235b03879db50" 578 | integrity sha512-zyzVyMjpGBX2+6cDVZeFPCdtOtdsxOeseRhB9tkQ6xXmGUNrcnBzdEKPy3VPNYz+4gy1oukVOXcrJCunSyc6QQ== 579 | 580 | import-lazy@^4.0.0: 581 | version "4.0.0" 582 | resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-4.0.0.tgz#e8eb627483a0a43da3c03f3e35548be5cb0cc153" 583 | integrity sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw== 584 | 585 | imurmurhash@^0.1.4: 586 | version "0.1.4" 587 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 588 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 589 | 590 | indent-string@^4.0.0: 591 | version "4.0.0" 592 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" 593 | integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== 594 | 595 | indent-string@^5.0.0: 596 | version "5.0.0" 597 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-5.0.0.tgz#4fd2980fccaf8622d14c64d694f4cf33c81951a5" 598 | integrity sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg== 599 | 600 | ini@2.0.0: 601 | version "2.0.0" 602 | resolved "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz#e5fd556ecdd5726be978fa1001862eacb0a94bc5" 603 | integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== 604 | 605 | ini@^1.3.4, ini@~1.3.0: 606 | version "1.3.8" 607 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 608 | integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 609 | 610 | is-arrayish@^0.2.1: 611 | version "0.2.1" 612 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 613 | integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= 614 | 615 | is-ci@^3.0.1: 616 | version "3.0.1" 617 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867" 618 | integrity sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ== 619 | dependencies: 620 | ci-info "^3.2.0" 621 | 622 | is-core-module@^2.5.0, is-core-module@^2.8.1: 623 | version "2.11.0" 624 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" 625 | integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== 626 | dependencies: 627 | has "^1.0.3" 628 | 629 | is-fullwidth-code-point@^3.0.0: 630 | version "3.0.0" 631 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 632 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 633 | 634 | is-fullwidth-code-point@^4.0.0: 635 | version "4.0.0" 636 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz#fae3167c729e7463f8461ce512b080a49268aa88" 637 | integrity sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ== 638 | 639 | is-installed-globally@^0.4.0: 640 | version "0.4.0" 641 | resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.4.0.tgz#9a0fd407949c30f86eb6959ef1b7994ed0b7b520" 642 | integrity sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ== 643 | dependencies: 644 | global-dirs "^3.0.0" 645 | is-path-inside "^3.0.2" 646 | 647 | is-npm@^6.0.0: 648 | version "6.0.0" 649 | resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-6.0.0.tgz#b59e75e8915543ca5d881ecff864077cba095261" 650 | integrity sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ== 651 | 652 | is-number@^7.0.0: 653 | version "7.0.0" 654 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 655 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 656 | 657 | is-obj@^2.0.0: 658 | version "2.0.0" 659 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" 660 | integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== 661 | 662 | is-path-inside@^3.0.2: 663 | version "3.0.2" 664 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.2.tgz#f5220fc82a3e233757291dddc9c5877f2a1f3017" 665 | integrity sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg== 666 | 667 | is-plain-obj@^1.1.0: 668 | version "1.1.0" 669 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 670 | integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= 671 | 672 | is-stream@^3.0.0: 673 | version "3.0.0" 674 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" 675 | integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== 676 | 677 | is-typedarray@^1.0.0: 678 | version "1.0.0" 679 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 680 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 681 | 682 | is-yarn-global@^0.4.0: 683 | version "0.4.1" 684 | resolved "https://registry.yarnpkg.com/is-yarn-global/-/is-yarn-global-0.4.1.tgz#b312d902b313f81e4eaf98b6361ba2b45cd694bb" 685 | integrity sha512-/kppl+R+LO5VmhYSEWARUFjodS25D68gvj8W7z0I7OWhUla5xWu8KL6CtB2V0R6yqhnRgbcaREMr4EEM6htLPQ== 686 | 687 | isexe@^2.0.0: 688 | version "2.0.0" 689 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 690 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 691 | 692 | js-tokens@^4.0.0: 693 | version "4.0.0" 694 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 695 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 696 | 697 | json-buffer@3.0.1: 698 | version "3.0.1" 699 | resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" 700 | integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== 701 | 702 | json-parse-even-better-errors@^2.3.0: 703 | version "2.3.1" 704 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 705 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 706 | 707 | keyv@^4.5.0: 708 | version "4.5.2" 709 | resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.2.tgz#0e310ce73bf7851ec702f2eaf46ec4e3805cce56" 710 | integrity sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g== 711 | dependencies: 712 | json-buffer "3.0.1" 713 | 714 | kind-of@^6.0.3: 715 | version "6.0.3" 716 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" 717 | integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 718 | 719 | latest-version@^7.0.0: 720 | version "7.0.0" 721 | resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-7.0.0.tgz#843201591ea81a4d404932eeb61240fe04e9e5da" 722 | integrity sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg== 723 | dependencies: 724 | package-json "^8.1.0" 725 | 726 | lilconfig@2.1.0: 727 | version "2.1.0" 728 | resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" 729 | integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== 730 | 731 | lines-and-columns@^1.1.6: 732 | version "1.1.6" 733 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" 734 | integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= 735 | 736 | lint-staged@^13.2.3: 737 | version "13.2.3" 738 | resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-13.2.3.tgz#f899aad6c093473467e9c9e316e3c2d8a28f87a7" 739 | integrity sha512-zVVEXLuQIhr1Y7R7YAWx4TZLdvuzk7DnmrsTNL0fax6Z3jrpFcas+vKbzxhhvp6TA55m1SQuWkpzI1qbfDZbAg== 740 | dependencies: 741 | chalk "5.2.0" 742 | cli-truncate "^3.1.0" 743 | commander "^10.0.0" 744 | debug "^4.3.4" 745 | execa "^7.0.0" 746 | lilconfig "2.1.0" 747 | listr2 "^5.0.7" 748 | micromatch "^4.0.5" 749 | normalize-path "^3.0.0" 750 | object-inspect "^1.12.3" 751 | pidtree "^0.6.0" 752 | string-argv "^0.3.1" 753 | yaml "^2.2.2" 754 | 755 | listr2@^5.0.7: 756 | version "5.0.8" 757 | resolved "https://registry.yarnpkg.com/listr2/-/listr2-5.0.8.tgz#a9379ffeb4bd83a68931a65fb223a11510d6ba23" 758 | integrity sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA== 759 | dependencies: 760 | cli-truncate "^2.1.0" 761 | colorette "^2.0.19" 762 | log-update "^4.0.0" 763 | p-map "^4.0.0" 764 | rfdc "^1.3.0" 765 | rxjs "^7.8.0" 766 | through "^2.3.8" 767 | wrap-ansi "^7.0.0" 768 | 769 | locate-path@^7.1.0: 770 | version "7.1.1" 771 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-7.1.1.tgz#8e1e5a75c7343770cef02ff93c4bf1f0aa666374" 772 | integrity sha512-vJXaRMJgRVD3+cUZs3Mncj2mxpt5mP0EmNOsxRSZRMlbqjvxzDEOIUWXGmavo0ZC9+tNZCBLQ66reA11nbpHZg== 773 | dependencies: 774 | p-locate "^6.0.0" 775 | 776 | log-update@^4.0.0: 777 | version "4.0.0" 778 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1" 779 | integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== 780 | dependencies: 781 | ansi-escapes "^4.3.0" 782 | cli-cursor "^3.1.0" 783 | slice-ansi "^4.0.0" 784 | wrap-ansi "^6.2.0" 785 | 786 | lowercase-keys@^3.0.0: 787 | version "3.0.0" 788 | resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-3.0.0.tgz#c5e7d442e37ead247ae9db117a9d0a467c89d4f2" 789 | integrity sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ== 790 | 791 | lru-cache@^4.0.1: 792 | version "4.1.5" 793 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 794 | integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== 795 | dependencies: 796 | pseudomap "^1.0.2" 797 | yallist "^2.1.2" 798 | 799 | lru-cache@^6.0.0: 800 | version "6.0.0" 801 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 802 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 803 | dependencies: 804 | yallist "^4.0.0" 805 | 806 | lru-cache@^7.14.1: 807 | version "7.18.3" 808 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89" 809 | integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA== 810 | 811 | lru-cache@^7.5.1: 812 | version "7.14.1" 813 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.14.1.tgz#8da8d2f5f59827edb388e63e459ac23d6d408fea" 814 | integrity sha512-ysxwsnTKdAx96aTRdhDOCQfDgbHnt8SK0KY8SEjO0wHinhWOFTESbjVCMPbU1uGXg/ch4lifqx0wfjOawU2+WA== 815 | 816 | map-obj@^1.0.0: 817 | version "1.0.1" 818 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 819 | integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0= 820 | 821 | map-obj@^4.3.0: 822 | version "4.3.0" 823 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a" 824 | integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ== 825 | 826 | meow@^11.0.0: 827 | version "11.0.0" 828 | resolved "https://registry.yarnpkg.com/meow/-/meow-11.0.0.tgz#273a19c12d49d013c56effe9f011994022887157" 829 | integrity sha512-Cl0yeeIrko6d94KpUo1M+0X1sB14ikoaqlIGuTH1fW4I+E3+YljL54/hb/BWmVfrV9tTV9zU04+xjw08Fh2WkA== 830 | dependencies: 831 | "@types/minimist" "^1.2.2" 832 | camelcase-keys "^8.0.2" 833 | decamelize "^6.0.0" 834 | decamelize-keys "^1.1.0" 835 | hard-rejection "^2.1.0" 836 | minimist-options "4.1.0" 837 | normalize-package-data "^4.0.1" 838 | read-pkg-up "^9.1.0" 839 | redent "^4.0.0" 840 | trim-newlines "^4.0.2" 841 | type-fest "^3.1.0" 842 | yargs-parser "^21.1.1" 843 | 844 | merge-stream@^2.0.0: 845 | version "2.0.0" 846 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 847 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 848 | 849 | micromatch@^4.0.5: 850 | version "4.0.5" 851 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" 852 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 853 | dependencies: 854 | braces "^3.0.2" 855 | picomatch "^2.3.1" 856 | 857 | mimic-fn@^2.1.0: 858 | version "2.1.0" 859 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 860 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 861 | 862 | mimic-fn@^4.0.0: 863 | version "4.0.0" 864 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" 865 | integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== 866 | 867 | mimic-response@^3.1.0: 868 | version "3.1.0" 869 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" 870 | integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== 871 | 872 | mimic-response@^4.0.0: 873 | version "4.0.0" 874 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-4.0.0.tgz#35468b19e7c75d10f5165ea25e75a5ceea7cf70f" 875 | integrity sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg== 876 | 877 | min-indent@^1.0.1: 878 | version "1.0.1" 879 | resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" 880 | integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== 881 | 882 | minimatch@^7.4.1: 883 | version "7.4.2" 884 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-7.4.2.tgz#157e847d79ca671054253b840656720cb733f10f" 885 | integrity sha512-xy4q7wou3vUoC9k1xGTXc+awNdGaGVHtFUaey8tiX4H1QRc04DZ/rmDFwNm2EBsuYEhAZ6SgMmYf3InGY6OauA== 886 | dependencies: 887 | brace-expansion "^2.0.1" 888 | 889 | minimist-options@4.1.0: 890 | version "4.1.0" 891 | resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" 892 | integrity sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A== 893 | dependencies: 894 | arrify "^1.0.1" 895 | is-plain-obj "^1.1.0" 896 | kind-of "^6.0.3" 897 | 898 | minimist@^1.2.0: 899 | version "1.2.5" 900 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 901 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 902 | 903 | minipass@^4.0.2, minipass@^4.2.4: 904 | version "4.2.5" 905 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-4.2.5.tgz#9e0e5256f1e3513f8c34691dd68549e85b2c8ceb" 906 | integrity sha512-+yQl7SX3bIT83Lhb4BVorMAHVuqsskxRdlmO9kTpyukp8vsm2Sn/fUOV9xlnG8/a5JsypJzap21lz/y3FBMJ8Q== 907 | 908 | ms@2.1.2: 909 | version "2.1.2" 910 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 911 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 912 | 913 | normalize-package-data@^3.0.2: 914 | version "3.0.3" 915 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.3.tgz#dbcc3e2da59509a0983422884cd172eefdfa525e" 916 | integrity sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA== 917 | dependencies: 918 | hosted-git-info "^4.0.1" 919 | is-core-module "^2.5.0" 920 | semver "^7.3.4" 921 | validate-npm-package-license "^3.0.1" 922 | 923 | normalize-package-data@^4.0.1: 924 | version "4.0.1" 925 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-4.0.1.tgz#b46b24e0616d06cadf9d5718b29b6d445a82a62c" 926 | integrity sha512-EBk5QKKuocMJhB3BILuKhmaPjI8vNRSpIfO9woLC6NyHVkKKdVEdAO1mrT0ZfxNR1lKwCcTkuZfmGIFdizZ8Pg== 927 | dependencies: 928 | hosted-git-info "^5.0.0" 929 | is-core-module "^2.8.1" 930 | semver "^7.3.5" 931 | validate-npm-package-license "^3.0.4" 932 | 933 | normalize-path@^3.0.0: 934 | version "3.0.0" 935 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 936 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 937 | 938 | normalize-url@^7.2.0: 939 | version "7.2.0" 940 | resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-7.2.0.tgz#5317f78cff95f5fa1e76cc0b5e33245c43781e11" 941 | integrity sha512-uhXOdZry0L6M2UIo9BTt7FdpBDiAGN/7oItedQwPKh8jh31ZlvC8U9Xl/EJ3aijDHaywXTW3QbZ6LuCocur1YA== 942 | 943 | npm-run-path@^5.1.0: 944 | version "5.1.0" 945 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.1.0.tgz#bc62f7f3f6952d9894bd08944ba011a6ee7b7e00" 946 | integrity sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q== 947 | dependencies: 948 | path-key "^4.0.0" 949 | 950 | object-inspect@^1.12.3: 951 | version "1.12.3" 952 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" 953 | integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== 954 | 955 | onetime@^5.1.0: 956 | version "5.1.2" 957 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 958 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 959 | dependencies: 960 | mimic-fn "^2.1.0" 961 | 962 | onetime@^6.0.0: 963 | version "6.0.0" 964 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4" 965 | integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== 966 | dependencies: 967 | mimic-fn "^4.0.0" 968 | 969 | p-cancelable@^3.0.0: 970 | version "3.0.0" 971 | resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-3.0.0.tgz#63826694b54d61ca1c20ebcb6d3ecf5e14cd8050" 972 | integrity sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw== 973 | 974 | p-limit@^4.0.0: 975 | version "4.0.0" 976 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-4.0.0.tgz#914af6544ed32bfa54670b061cafcbd04984b644" 977 | integrity sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ== 978 | dependencies: 979 | yocto-queue "^1.0.0" 980 | 981 | p-locate@^6.0.0: 982 | version "6.0.0" 983 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-6.0.0.tgz#3da9a49d4934b901089dca3302fa65dc5a05c04f" 984 | integrity sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw== 985 | dependencies: 986 | p-limit "^4.0.0" 987 | 988 | p-map@^4.0.0: 989 | version "4.0.0" 990 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" 991 | integrity sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ== 992 | dependencies: 993 | aggregate-error "^3.0.0" 994 | 995 | package-json@^8.1.0: 996 | version "8.1.0" 997 | resolved "https://registry.yarnpkg.com/package-json/-/package-json-8.1.0.tgz#2a22806f1ed7c786c8e6ff26cfe20003bf4c6850" 998 | integrity sha512-hySwcV8RAWeAfPsXb9/HGSPn8lwDnv6fabH+obUZKX169QknRkRhPxd1yMubpKDskLFATkl3jHpNtVtDPFA0Wg== 999 | dependencies: 1000 | got "^12.1.0" 1001 | registry-auth-token "^5.0.1" 1002 | registry-url "^6.0.0" 1003 | semver "^7.3.7" 1004 | 1005 | parse-json@^5.2.0: 1006 | version "5.2.0" 1007 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" 1008 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 1009 | dependencies: 1010 | "@babel/code-frame" "^7.0.0" 1011 | error-ex "^1.3.1" 1012 | json-parse-even-better-errors "^2.3.0" 1013 | lines-and-columns "^1.1.6" 1014 | 1015 | path-exists@^5.0.0: 1016 | version "5.0.0" 1017 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-5.0.0.tgz#a6aad9489200b21fab31e49cf09277e5116fb9e7" 1018 | integrity sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ== 1019 | 1020 | path-key@^3.1.0: 1021 | version "3.1.1" 1022 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1023 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1024 | 1025 | path-key@^4.0.0: 1026 | version "4.0.0" 1027 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18" 1028 | integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== 1029 | 1030 | path-scurry@^1.6.1: 1031 | version "1.6.1" 1032 | resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.6.1.tgz#dab45f7bb1d3f45a0e271ab258999f4ab7e23132" 1033 | integrity sha512-OW+5s+7cw6253Q4E+8qQ/u1fVvcJQCJo/VFD8pje+dbJCF1n5ZRMV2AEHbGp+5Q7jxQIYJxkHopnj6nzdGeZLA== 1034 | dependencies: 1035 | lru-cache "^7.14.1" 1036 | minipass "^4.0.2" 1037 | 1038 | picomatch@^2.3.1: 1039 | version "2.3.1" 1040 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1041 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1042 | 1043 | pidtree@^0.6.0: 1044 | version "0.6.0" 1045 | resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.6.0.tgz#90ad7b6d42d5841e69e0a2419ef38f8883aa057c" 1046 | integrity sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g== 1047 | 1048 | prettier@^2.7.1: 1049 | version "2.7.1" 1050 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.7.1.tgz#e235806850d057f97bb08368a4f7d899f7760c64" 1051 | integrity sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g== 1052 | 1053 | proto-list@~1.2.1: 1054 | version "1.2.4" 1055 | resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" 1056 | integrity sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA== 1057 | 1058 | pseudomap@^1.0.2: 1059 | version "1.0.2" 1060 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1061 | integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= 1062 | 1063 | pupa@^3.1.0: 1064 | version "3.1.0" 1065 | resolved "https://registry.yarnpkg.com/pupa/-/pupa-3.1.0.tgz#f15610274376bbcc70c9a3aa8b505ea23f41c579" 1066 | integrity sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug== 1067 | dependencies: 1068 | escape-goat "^4.0.0" 1069 | 1070 | quick-lru@^5.1.1: 1071 | version "5.1.1" 1072 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" 1073 | integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== 1074 | 1075 | quick-lru@^6.1.1: 1076 | version "6.1.1" 1077 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-6.1.1.tgz#f8e5bf9010376c126c80c1a62827a526c0e60adf" 1078 | integrity sha512-S27GBT+F0NTRiehtbrgaSE1idUAJ5bX8dPAQTdylEyNlrdcH5X4Lz7Edz3DYzecbsCluD5zO8ZNEe04z3D3u6Q== 1079 | 1080 | rc@1.2.8: 1081 | version "1.2.8" 1082 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 1083 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== 1084 | dependencies: 1085 | deep-extend "^0.6.0" 1086 | ini "~1.3.0" 1087 | minimist "^1.2.0" 1088 | strip-json-comments "~2.0.1" 1089 | 1090 | read-pkg-up@^9.1.0: 1091 | version "9.1.0" 1092 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-9.1.0.tgz#38ca48e0bc6c6b260464b14aad9bcd4e5b1fbdc3" 1093 | integrity sha512-vaMRR1AC1nrd5CQM0PhlRsO5oc2AAigqr7cCrZ/MW/Rsaflz4RlgzkpL4qoU/z1F6wrbd85iFv1OQj/y5RdGvg== 1094 | dependencies: 1095 | find-up "^6.3.0" 1096 | read-pkg "^7.1.0" 1097 | type-fest "^2.5.0" 1098 | 1099 | read-pkg@^7.1.0: 1100 | version "7.1.0" 1101 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-7.1.0.tgz#438b4caed1ad656ba359b3e00fd094f3c427a43e" 1102 | integrity sha512-5iOehe+WF75IccPc30bWTbpdDQLOCc3Uu8bi3Dte3Eueij81yx1Mrufk8qBx/YAbR4uL1FdUr+7BKXDwEtisXg== 1103 | dependencies: 1104 | "@types/normalize-package-data" "^2.4.1" 1105 | normalize-package-data "^3.0.2" 1106 | parse-json "^5.2.0" 1107 | type-fest "^2.0.0" 1108 | 1109 | redent@^4.0.0: 1110 | version "4.0.0" 1111 | resolved "https://registry.yarnpkg.com/redent/-/redent-4.0.0.tgz#0c0ba7caabb24257ab3bb7a4fd95dd1d5c5681f9" 1112 | integrity sha512-tYkDkVVtYkSVhuQ4zBgfvciymHaeuel+zFKXShfDnFP5SyVEP7qo70Rf1jTOTCx3vGNAbnEi/xFkcfQVMIBWag== 1113 | dependencies: 1114 | indent-string "^5.0.0" 1115 | strip-indent "^4.0.0" 1116 | 1117 | registry-auth-token@^5.0.1: 1118 | version "5.0.1" 1119 | resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-5.0.1.tgz#5e6cd106e6c251135a046650c58476fc03e92833" 1120 | integrity sha512-UfxVOj8seK1yaIOiieV4FIP01vfBDLsY0H9sQzi9EbbUdJiuuBjJgLa1DpImXMNPnVkBD4eVxTEXcrZA6kfpJA== 1121 | dependencies: 1122 | "@pnpm/npm-conf" "^1.0.4" 1123 | 1124 | registry-url@^6.0.0: 1125 | version "6.0.1" 1126 | resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-6.0.1.tgz#056d9343680f2f64400032b1e199faa692286c58" 1127 | integrity sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q== 1128 | dependencies: 1129 | rc "1.2.8" 1130 | 1131 | resolve-alpn@^1.2.0: 1132 | version "1.2.1" 1133 | resolved "https://registry.yarnpkg.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz#b7adbdac3546aaaec20b45e7d8265927072726f9" 1134 | integrity sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g== 1135 | 1136 | responselike@^3.0.0: 1137 | version "3.0.0" 1138 | resolved "https://registry.yarnpkg.com/responselike/-/responselike-3.0.0.tgz#20decb6c298aff0dbee1c355ca95461d42823626" 1139 | integrity sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg== 1140 | dependencies: 1141 | lowercase-keys "^3.0.0" 1142 | 1143 | restore-cursor@^3.1.0: 1144 | version "3.1.0" 1145 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" 1146 | integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA== 1147 | dependencies: 1148 | onetime "^5.1.0" 1149 | signal-exit "^3.0.2" 1150 | 1151 | rfdc@^1.3.0: 1152 | version "1.3.0" 1153 | resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b" 1154 | integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA== 1155 | 1156 | rimraf@^4.4.1: 1157 | version "4.4.1" 1158 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-4.4.1.tgz#bd33364f67021c5b79e93d7f4fa0568c7c21b755" 1159 | integrity sha512-Gk8NlF062+T9CqNGn6h4tls3k6T1+/nXdOcSZVikNVtlRdYpA7wRJJMoXmuvOnLW844rPjdQ7JgXCYM6PPC/og== 1160 | dependencies: 1161 | glob "^9.2.0" 1162 | 1163 | rxjs@^7.8.0: 1164 | version "7.8.0" 1165 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.0.tgz#90a938862a82888ff4c7359811a595e14e1e09a4" 1166 | integrity sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg== 1167 | dependencies: 1168 | tslib "^2.1.0" 1169 | 1170 | semver-diff@^4.0.0: 1171 | version "4.0.0" 1172 | resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-4.0.0.tgz#3afcf5ed6d62259f5c72d0d5d50dffbdc9680df5" 1173 | integrity sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA== 1174 | dependencies: 1175 | semver "^7.3.5" 1176 | 1177 | semver@^7.3.4: 1178 | version "7.3.4" 1179 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97" 1180 | integrity sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw== 1181 | dependencies: 1182 | lru-cache "^6.0.0" 1183 | 1184 | semver@^7.3.5, semver@^7.3.7: 1185 | version "7.3.8" 1186 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" 1187 | integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== 1188 | dependencies: 1189 | lru-cache "^6.0.0" 1190 | 1191 | shebang-command@^1.2.0: 1192 | version "1.2.0" 1193 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 1194 | integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 1195 | dependencies: 1196 | shebang-regex "^1.0.0" 1197 | 1198 | shebang-command@^2.0.0: 1199 | version "2.0.0" 1200 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1201 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1202 | dependencies: 1203 | shebang-regex "^3.0.0" 1204 | 1205 | shebang-regex@^1.0.0: 1206 | version "1.0.0" 1207 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 1208 | integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 1209 | 1210 | shebang-regex@^3.0.0: 1211 | version "3.0.0" 1212 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1213 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1214 | 1215 | signal-exit@^3.0.2: 1216 | version "3.0.3" 1217 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 1218 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 1219 | 1220 | signal-exit@^3.0.7: 1221 | version "3.0.7" 1222 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" 1223 | integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== 1224 | 1225 | slice-ansi@^3.0.0: 1226 | version "3.0.0" 1227 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-3.0.0.tgz#31ddc10930a1b7e0b67b08c96c2f49b77a789787" 1228 | integrity sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ== 1229 | dependencies: 1230 | ansi-styles "^4.0.0" 1231 | astral-regex "^2.0.0" 1232 | is-fullwidth-code-point "^3.0.0" 1233 | 1234 | slice-ansi@^4.0.0: 1235 | version "4.0.0" 1236 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" 1237 | integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== 1238 | dependencies: 1239 | ansi-styles "^4.0.0" 1240 | astral-regex "^2.0.0" 1241 | is-fullwidth-code-point "^3.0.0" 1242 | 1243 | slice-ansi@^5.0.0: 1244 | version "5.0.0" 1245 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-5.0.0.tgz#b73063c57aa96f9cd881654b15294d95d285c42a" 1246 | integrity sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ== 1247 | dependencies: 1248 | ansi-styles "^6.0.0" 1249 | is-fullwidth-code-point "^4.0.0" 1250 | 1251 | spdx-correct@^3.0.0: 1252 | version "3.1.1" 1253 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9" 1254 | integrity sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== 1255 | dependencies: 1256 | spdx-expression-parse "^3.0.0" 1257 | spdx-license-ids "^3.0.0" 1258 | 1259 | spdx-exceptions@^2.1.0: 1260 | version "2.3.0" 1261 | resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" 1262 | integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== 1263 | 1264 | spdx-expression-parse@^3.0.0: 1265 | version "3.0.1" 1266 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" 1267 | integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== 1268 | dependencies: 1269 | spdx-exceptions "^2.1.0" 1270 | spdx-license-ids "^3.0.0" 1271 | 1272 | spdx-license-ids@^3.0.0: 1273 | version "3.0.7" 1274 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz#e9c18a410e5ed7e12442a549fbd8afa767038d65" 1275 | integrity sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ== 1276 | 1277 | string-argv@^0.3.1: 1278 | version "0.3.1" 1279 | resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" 1280 | integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== 1281 | 1282 | string-width@^4.1.0, string-width@^4.2.0: 1283 | version "4.2.0" 1284 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" 1285 | integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== 1286 | dependencies: 1287 | emoji-regex "^8.0.0" 1288 | is-fullwidth-code-point "^3.0.0" 1289 | strip-ansi "^6.0.0" 1290 | 1291 | string-width@^5.0.0, string-width@^5.0.1, string-width@^5.1.2: 1292 | version "5.1.2" 1293 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" 1294 | integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== 1295 | dependencies: 1296 | eastasianwidth "^0.2.0" 1297 | emoji-regex "^9.2.2" 1298 | strip-ansi "^7.0.1" 1299 | 1300 | strip-ansi@^6.0.0: 1301 | version "6.0.0" 1302 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 1303 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 1304 | dependencies: 1305 | ansi-regex "^5.0.0" 1306 | 1307 | strip-ansi@^7.0.1: 1308 | version "7.0.1" 1309 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.0.1.tgz#61740a08ce36b61e50e65653f07060d000975fb2" 1310 | integrity sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw== 1311 | dependencies: 1312 | ansi-regex "^6.0.1" 1313 | 1314 | strip-final-newline@^3.0.0: 1315 | version "3.0.0" 1316 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" 1317 | integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== 1318 | 1319 | strip-indent@^4.0.0: 1320 | version "4.0.0" 1321 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-4.0.0.tgz#b41379433dd06f5eae805e21d631e07ee670d853" 1322 | integrity sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA== 1323 | dependencies: 1324 | min-indent "^1.0.1" 1325 | 1326 | strip-json-comments@~2.0.1: 1327 | version "2.0.1" 1328 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 1329 | integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= 1330 | 1331 | supports-color@^5.3.0: 1332 | version "5.5.0" 1333 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1334 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1335 | dependencies: 1336 | has-flag "^3.0.0" 1337 | 1338 | through@^2.3.8: 1339 | version "2.3.8" 1340 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 1341 | integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 1342 | 1343 | to-regex-range@^5.0.1: 1344 | version "5.0.1" 1345 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1346 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1347 | dependencies: 1348 | is-number "^7.0.0" 1349 | 1350 | trim-newlines@^4.0.2: 1351 | version "4.0.2" 1352 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-4.0.2.tgz#d6aaaf6a0df1b4b536d183879a6b939489808c7c" 1353 | integrity sha512-GJtWyq9InR/2HRiLZgpIKv+ufIKrVrvjQWEj7PxAXNc5dwbNJkqhAUoAGgzRmULAnoOM5EIpveYd3J2VeSAIew== 1354 | 1355 | tslib@^2.1.0: 1356 | version "2.4.0" 1357 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" 1358 | integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== 1359 | 1360 | type-fest@^0.11.0: 1361 | version "0.11.0" 1362 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" 1363 | integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== 1364 | 1365 | type-fest@^1.0.1: 1366 | version "1.4.0" 1367 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-1.4.0.tgz#e9fb813fe3bf1744ec359d55d1affefa76f14be1" 1368 | integrity sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA== 1369 | 1370 | type-fest@^2.0.0, type-fest@^2.13.0, type-fest@^2.5.0: 1371 | version "2.19.0" 1372 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" 1373 | integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== 1374 | 1375 | type-fest@^3.1.0: 1376 | version "3.2.0" 1377 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.2.0.tgz#2c8b49e775d9e314a73ea6fcee0b2e8549d5f886" 1378 | integrity sha512-Il3wdLRzWvbAEtocgxGQA9YOoRVeVUGOMBtel5LdEpNeEAol6GJTLw8GbX6Z8EIMfvfhoOXs2bwOijtAZdK5og== 1379 | 1380 | typedarray-to-buffer@^3.1.5: 1381 | version "3.1.5" 1382 | resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" 1383 | integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== 1384 | dependencies: 1385 | is-typedarray "^1.0.0" 1386 | 1387 | unique-string@^3.0.0: 1388 | version "3.0.0" 1389 | resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-3.0.0.tgz#84a1c377aff5fd7a8bc6b55d8244b2bd90d75b9a" 1390 | integrity sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ== 1391 | dependencies: 1392 | crypto-random-string "^4.0.0" 1393 | 1394 | update-notifier@^6.0.2: 1395 | version "6.0.2" 1396 | resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-6.0.2.tgz#a6990253dfe6d5a02bd04fbb6a61543f55026b60" 1397 | integrity sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og== 1398 | dependencies: 1399 | boxen "^7.0.0" 1400 | chalk "^5.0.1" 1401 | configstore "^6.0.0" 1402 | has-yarn "^3.0.0" 1403 | import-lazy "^4.0.0" 1404 | is-ci "^3.0.1" 1405 | is-installed-globally "^0.4.0" 1406 | is-npm "^6.0.0" 1407 | is-yarn-global "^0.4.0" 1408 | latest-version "^7.0.0" 1409 | pupa "^3.1.0" 1410 | semver "^7.3.7" 1411 | semver-diff "^4.0.0" 1412 | xdg-basedir "^5.1.0" 1413 | 1414 | validate-npm-package-license@^3.0.1, validate-npm-package-license@^3.0.4: 1415 | version "3.0.4" 1416 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" 1417 | integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== 1418 | dependencies: 1419 | spdx-correct "^3.0.0" 1420 | spdx-expression-parse "^3.0.0" 1421 | 1422 | which@^1.2.9: 1423 | version "1.3.1" 1424 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 1425 | integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 1426 | dependencies: 1427 | isexe "^2.0.0" 1428 | 1429 | which@^2.0.1: 1430 | version "2.0.2" 1431 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1432 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1433 | dependencies: 1434 | isexe "^2.0.0" 1435 | 1436 | widest-line@^4.0.1: 1437 | version "4.0.1" 1438 | resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-4.0.1.tgz#a0fc673aaba1ea6f0a0d35b3c2795c9a9cc2ebf2" 1439 | integrity sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig== 1440 | dependencies: 1441 | string-width "^5.0.1" 1442 | 1443 | wrap-ansi@^6.2.0: 1444 | version "6.2.0" 1445 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53" 1446 | integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA== 1447 | dependencies: 1448 | ansi-styles "^4.0.0" 1449 | string-width "^4.1.0" 1450 | strip-ansi "^6.0.0" 1451 | 1452 | wrap-ansi@^7.0.0: 1453 | version "7.0.0" 1454 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 1455 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 1456 | dependencies: 1457 | ansi-styles "^4.0.0" 1458 | string-width "^4.1.0" 1459 | strip-ansi "^6.0.0" 1460 | 1461 | wrap-ansi@^8.0.1: 1462 | version "8.0.1" 1463 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.0.1.tgz#2101e861777fec527d0ea90c57c6b03aac56a5b3" 1464 | integrity sha512-QFF+ufAqhoYHvoHdajT/Po7KoXVBPXS2bgjIam5isfWJPfIOnQZ50JtUiVvCv/sjgacf3yRrt2ZKUZ/V4itN4g== 1465 | dependencies: 1466 | ansi-styles "^6.1.0" 1467 | string-width "^5.0.1" 1468 | strip-ansi "^7.0.1" 1469 | 1470 | write-file-atomic@^3.0.3: 1471 | version "3.0.3" 1472 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" 1473 | integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== 1474 | dependencies: 1475 | imurmurhash "^0.1.4" 1476 | is-typedarray "^1.0.0" 1477 | signal-exit "^3.0.2" 1478 | typedarray-to-buffer "^3.1.5" 1479 | 1480 | xdg-basedir@^5.0.1, xdg-basedir@^5.1.0: 1481 | version "5.1.0" 1482 | resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-5.1.0.tgz#1efba19425e73be1bc6f2a6ceb52a3d2c884c0c9" 1483 | integrity sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ== 1484 | 1485 | yallist@^2.1.2: 1486 | version "2.1.2" 1487 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 1488 | integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= 1489 | 1490 | yallist@^4.0.0: 1491 | version "4.0.0" 1492 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 1493 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 1494 | 1495 | yaml@^2.2.2: 1496 | version "2.2.2" 1497 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.2.2.tgz#ec551ef37326e6d42872dad1970300f8eb83a073" 1498 | integrity sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA== 1499 | 1500 | yargs-parser@^21.1.1: 1501 | version "21.1.1" 1502 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" 1503 | integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== 1504 | 1505 | yocto-queue@^1.0.0: 1506 | version "1.0.0" 1507 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-1.0.0.tgz#7f816433fb2cbc511ec8bf7d263c3b58a1a3c251" 1508 | integrity sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g== 1509 | --------------------------------------------------------------------------------