├── .yarnrc ├── .gitignore ├── images └── icon.png ├── .prettierrc ├── .vscode-test.js ├── CHANGELOG.md ├── .vscodeignore ├── .vscode ├── extensions.json ├── settings.json ├── tasks.json └── launch.json ├── tsconfig.json ├── src ├── extension.ts ├── test │ └── extension.test.ts └── formatter.ts ├── .github └── workflows │ └── ci.yml ├── LICENSE ├── .eslintrc.yaml ├── README.md ├── package.json ├── CODE_OF_CONDUCT.md └── yarn.lock /.yarnrc: -------------------------------------------------------------------------------- 1 | --ignore-engines true -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | dist 3 | node_modules 4 | .vscode-test/ 5 | *.vsix 6 | -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stripe/vscode-endsmart/main/images/icon.png -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "arrowParens": "always", 3 | "bracketSpacing": false, 4 | "singleQuote": true, 5 | "trailingComma": "all" 6 | } -------------------------------------------------------------------------------- /.vscode-test.js: -------------------------------------------------------------------------------- 1 | const { defineConfig } = require('@vscode/test-cli'); 2 | 3 | module.exports = defineConfig({ files: 'out/test/**/*.test.js' }); -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Version History 2 | 3 | ## 0.1.1 4 | 5 | - Fix issue where the `end` keyword would be added after `return if` statements. 6 | 7 | ## 0.1.0 8 | 9 | - Initial version. 10 | -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | .vscode-test/** 3 | out/** 4 | !out/extension.js 5 | src/** 6 | .gitignore 7 | tsconfig.json 8 | xvfb.out 9 | node_modules/** 10 | **/*.js.map 11 | .vscode-test.js 12 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | // See http://go.microsoft.com/fwlink/?LinkId=827846 3 | // for the documentation about the extensions.json format 4 | "recommendations": [ 5 | "dbaeumer.vscode-eslint" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.exclude": { 3 | "out": false 4 | }, 5 | "search.exclude": { 6 | "out": true 7 | }, 8 | "typescript.tsc.autoDetect": "off", 9 | "editor.defaultFormatter": "esbenp.prettier-vscode", 10 | "editor.formatOnSave": true 11 | } 12 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "module": "Node16", 4 | "target": "ES2022", 5 | "outDir": "out", 6 | "lib": ["ES2022"], 7 | "sourceMap": true, 8 | "rootDir": "src", 9 | "strict": true, 10 | "noUnusedLocals": true, 11 | "noUnusedParameters": true, 12 | "noImplicitReturns": true 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- 1 | import {ExtensionContext, languages} from 'vscode'; 2 | import EndsmartOnTypeFormatter from './formatter'; 3 | 4 | export function activate(context: ExtensionContext): void { 5 | context.subscriptions.push( 6 | languages.registerOnTypeFormattingEditProvider( 7 | {scheme: 'file', language: 'ruby'}, 8 | new EndsmartOnTypeFormatter(), 9 | '\n', 10 | ), 11 | ); 12 | } 13 | 14 | export function deactivate() {} 15 | -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- 1 | // See https://go.microsoft.com/fwlink/?LinkId=733558 2 | // for the documentation about the tasks.json format 3 | { 4 | "version": "2.0.0", 5 | "tasks": [ 6 | { 7 | "type": "npm", 8 | "script": "watch", 9 | "problemMatcher": "$tsc-watch", 10 | "isBackground": true, 11 | "presentation": { 12 | "reveal": "never" 13 | }, 14 | "group": { 15 | "kind": "build", 16 | "isDefault": true 17 | } 18 | } 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: Extension test and build CI 2 | 3 | on: 4 | push: 5 | branches: [ "main" ] 6 | pull_request: 7 | branches: [ "main" ] 8 | 9 | jobs: 10 | package: 11 | runs-on: ubuntu-latest 12 | 13 | steps: 14 | - uses: actions/checkout@v4 15 | - name: Setup Node.js 16 | uses: actions/setup-node@v4 17 | with: 18 | node-version: 20.x 19 | cache: 'npm' 20 | - run: npm i 21 | - run: npm run package 22 | test: 23 | runs-on: ubuntu-latest 24 | 25 | steps: 26 | - uses: actions/checkout@v4 27 | - name: Setup Node.js 28 | uses: actions/setup-node@v4 29 | with: 30 | node-version: 20.x 31 | cache: 'npm' 32 | - run: npm i 33 | - run: npm run pretest 34 | - run: xvfb-run -a npm test 35 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | // A launch configuration that compiles the extension and then opens it inside a new window 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | { 6 | "version": "0.2.0", 7 | "configurations": [ 8 | { 9 | "name": "Run Extension", 10 | "type": "extensionHost", 11 | "request": "launch", 12 | "args": [ 13 | "--extensionDevelopmentPath=${workspaceFolder}" 14 | ], 15 | "outFiles": [ 16 | "${workspaceFolder}/out/**/*.js" 17 | ], 18 | "preLaunchTask": "${defaultBuildTask}" 19 | }, 20 | { 21 | "name": "Extension Tests", 22 | "type": "extensionHost", 23 | "request": "launch", 24 | "args": [ 25 | "--extensionDevelopmentPath=${workspaceFolder}", 26 | "--extensionTestsPath=${workspaceFolder}/out/test/suite/index" 27 | ], 28 | "outFiles": [ 29 | "${workspaceFolder}/out/test/**/*.js" 30 | ], 31 | "preLaunchTask": "${defaultBuildTask}" 32 | } 33 | ] 34 | } 35 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2024- Stripe, Inc 2 | Copyright (c) 2021- Kai Wood 3 | 4 | All rights reserved. 5 | 6 | MIT License 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation 9 | files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, 10 | modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software 11 | is furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED _AS IS_, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 16 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 17 | BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT 18 | OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 19 | -------------------------------------------------------------------------------- /.eslintrc.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | root: true 3 | rules: 4 | class-methods-use-this: 0 5 | # Allow functions with name starting with capital letter for HOC 6 | import/no-named-as-default-member: 0 7 | import/no-named-as-default: 0 8 | new-cap: 0 9 | eslint-comments/no-unused-disable: 2 10 | eslint-comments/no-unused-enable: 2 11 | prettier/prettier: 2 12 | # Turn this off because eslint gets this wrong for instance variables 13 | # and the typescript compiler already checks for possibly undefined 14 | # variables 15 | no-undef: 0 16 | # Turn this off because eslint can't seem to figure out imports 17 | # and class names used in type declarations, and the typescript 18 | # compiler already checks for unused vars 19 | no-unused-vars: 0 20 | # Allow console.log because official docs seem say this is the 21 | # recommended way to have logging from your extension 22 | no-console: 0 23 | # This is not useful since prettier inserts semicolons everywhere. 24 | no-plusplus: 0 25 | # This requires way too much space otherwise between fields. 26 | lines-between-class-members: 27 | - 2 28 | - always 29 | - exceptAfterSingleLine: true 30 | no-shadow: off 31 | # the default rule doesn't handle constructor with field initializer 32 | no-useless-constructor: off 33 | '@typescript-eslint/no-useless-constructor': 1 34 | no-empty-function: 0 35 | plugins: 36 | - eslint-comments 37 | - prettier 38 | - '@typescript-eslint' 39 | parser: '@typescript-eslint/parser' 40 | settings: 41 | import/ignore: 42 | - node_modules 43 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Endsmart 2 | 3 | [![Visual Studio Marketplace Version](https://img.shields.io/visual-studio-marketplace/v/Stripe.endsmart)](https://marketplace.visualstudio.com/items?itemName=Stripe.endsmart) 4 | 5 | A replacement for the [endwise extension](https://marketplace.visualstudio.com/items?itemName=kaiwood.endwise) with the same objective: be able to intelligently add `end` statements when needed to Ruby blocks. 6 | 7 | Compared to endwise, this extension tries to use more modern VSCode APIs rather than low-level command processing. The end result remains roughly the same but with better performance characteristics and generally behaving better in [remote development scenarios](https://code.visualstudio.com/docs/remote/remote-overview) by reducing typing latency. 8 | 9 | ## Usage 10 | 11 | Once installed [from the marketplace](https://marketplace.visualstudio.com/items?itemName=Stripe.endsmart), you will need to enable on-type formatting (globally or specifically for Ruby) for the extension to work properly (as it is implemented as a formatter). 12 | 13 | Here is an example user configuration: 14 | 15 | ```json 16 | "[ruby]": { 17 | "editor.formatOnType": true 18 | }, 19 | ``` 20 | 21 | ## Contributing 22 | 23 | This extension is voluntarily kept fairly simple and focused on doing its core job well. As a result we do not expect a tremendous amount of extra changes to be needed. 24 | 25 | However contributions and feedback to this extension are still welcome, so please open issues for feature requests, questions and alike. 26 | 27 | ## License 28 | 29 | See [LICENSE](LICENSE) 30 | 31 | ## Code of Conduct 32 | 33 | This project has adopted the Stripe Code of Conduct. See [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md) 34 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "endsmart", 3 | "displayName": "Endsmart", 4 | "description": "A modern version of endwise that relies on more recent VSCode APIs.", 5 | "license": "MIT", 6 | "version": "0.1.1", 7 | "publisher": "stripe", 8 | "icon": "images/icon.png", 9 | "engines": { 10 | "vscode": "^1.84.0" 11 | }, 12 | "repository": { 13 | "type": "git", 14 | "url": "https://github.com/stripe/vscode-endsmart" 15 | }, 16 | "categories": [ 17 | "Programming Languages", 18 | "Formatters" 19 | ], 20 | "keywords": [ 21 | "stripe", 22 | "ruby", 23 | "endwise", 24 | "blocks", 25 | "end" 26 | ], 27 | "activationEvents": [ 28 | "onLanguage:ruby" 29 | ], 30 | "main": "./out/extension.js", 31 | "contributes": {}, 32 | "scripts": { 33 | "bundle": "esbuild ./src/extension.ts --bundle --outdir=out --external:vscode --format=cjs --platform=node --minify", 34 | "vscode:prepublish": "yarn run bundle", 35 | "compile": "tsc -p ./", 36 | "watch": "tsc -watch -p ./", 37 | "pretest": "yarn run compile && yarn run lint", 38 | "lint": "eslint src --ext ts", 39 | "test": "vscode-test", 40 | "package": "vsce package --out endsmart.vsix" 41 | }, 42 | "devDependencies": { 43 | "@types/mocha": "^10.0.3", 44 | "@types/node": "18.x", 45 | "@types/vscode": "^1.84.0", 46 | "@typescript-eslint/eslint-plugin": "^6.9.0", 47 | "@typescript-eslint/parser": "^6.9.0", 48 | "@vscode/test-cli": "^0.0.4", 49 | "@vscode/test-electron": "^2.3.6", 50 | "@vscode/vsce": "^2.24.0", 51 | "esbuild": "^0.19.8", 52 | "eslint": "^8.52.0", 53 | "eslint-plugin-eslint-comments": "^3.2.0", 54 | "eslint-plugin-prettier": "^5.0.1", 55 | "glob": "^10.3.10", 56 | "mocha": "^10.2.0", 57 | "prettier": "^3.1.0", 58 | "typescript": "^5.2.2" 59 | } 60 | } -------------------------------------------------------------------------------- /src/test/extension.test.ts: -------------------------------------------------------------------------------- 1 | import * as assert from 'assert'; 2 | 3 | import * as vscode from 'vscode'; 4 | import EndsmartOnTypeFormatter from '../formatter'; 5 | 6 | suite('formatter tests', () => { 7 | const createDocument = async ( 8 | content: string, 9 | ): Promise => 10 | vscode.workspace.openTextDocument({ 11 | language: 'ruby', 12 | content, 13 | }); 14 | 15 | const runFormatter = async ( 16 | content: string, 17 | ): Promise<[vscode.TextEdit[] | undefined | null, vscode.TextDocument]> => { 18 | const formatter = new EndsmartOnTypeFormatter(); 19 | // Cursor should be after the newline 20 | const cursorPosition = content.indexOf('$') + 1; 21 | // Create a document where the newline was added where the cursor was 22 | const doc = await createDocument(content.replace('$', '\n')); 23 | const cancellationToken = new vscode.CancellationTokenSource().token; 24 | const edits = await formatter.provideOnTypeFormattingEdits( 25 | doc, 26 | doc.positionAt(cursorPosition), 27 | '\n', 28 | {insertSpaces: true, tabSize: 2}, 29 | cancellationToken, 30 | ); 31 | return [edits, doc]; 32 | }; 33 | 34 | test('can add end to a block', async () => { 35 | const content = 'if foo$'; 36 | const [edits] = await runFormatter(content); 37 | 38 | assert.notStrictEqual(edits, null); 39 | assert.strictEqual(edits?.length, 1); 40 | assert.strictEqual(edits![0].newText, 'end\n'); 41 | // Inserted at end of document 42 | assert.deepEqual(edits![0].range, new vscode.Range(2, 0, 2, 0)); 43 | }); 44 | 45 | test('does not add end if it exists already', async () => { 46 | const content = 'if foo$\nend'; 47 | const [edits] = await runFormatter(content); 48 | 49 | // No edits should be returned since the doc is balanced 50 | assert.strictEqual(edits, undefined); 51 | }); 52 | 53 | test('support nested blocks, add end', async () => { 54 | const content = ` 55 | if foo 56 | begin$ 57 | end`; 58 | const [edits] = await runFormatter(content); 59 | 60 | assert.notStrictEqual(edits, null); 61 | assert.strictEqual(edits?.length, 1); 62 | assert.strictEqual(edits![0].newText, ' end\n'); 63 | // Inserted after begin and before the last end 64 | assert.deepEqual(edits![0].range, new vscode.Range(4, 0, 4, 0)); 65 | }); 66 | 67 | test('support nested blocks, does not add end', async () => { 68 | const content = ` 69 | if foo 70 | begin$ 71 | end 72 | end`; 73 | const [edits] = await runFormatter(content); 74 | 75 | // No edits should be returned since the doc is balanced 76 | assert.strictEqual(edits, undefined); 77 | }); 78 | 79 | test('does not add end with a return if statement', async () => { 80 | const content = ` 81 | return if foo$`; 82 | const [edits] = await runFormatter(content); 83 | assert.strictEqual(edits, undefined); 84 | }); 85 | 86 | test('does not add end to a random statement even a portion of a trigger keyword is in it', async () => { 87 | const content = ` 88 | Module::Factorify::SbeginClass.method()$`; 89 | const [edits] = await runFormatter(content); 90 | assert.strictEqual(edits, undefined); 91 | }); 92 | 93 | test('does not add end if cursor is inside an if statement expression', async () => { 94 | const content = 'if ![$]'; 95 | const [edits] = await runFormatter(content); 96 | assert.strictEqual(edits, undefined); 97 | }); 98 | }); 99 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, sex characteristics, gender identity and expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | - Using welcoming and inclusive language 18 | - Being respectful of differing viewpoints and experiences 19 | - Gracefully accepting constructive criticism 20 | - Focusing on what is best for the community 21 | - Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | - The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | - Trolling, insulting/derogatory comments, and personal or political attacks 28 | - Public or private harassment 29 | - Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | - Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at conduct@stripe.com. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 72 | 73 | [homepage]: https://www.contributor-covenant.org 74 | 75 | For answers to common questions about this code of conduct, see 76 | https://www.contributor-covenant.org/faq 77 | -------------------------------------------------------------------------------- /src/formatter.ts: -------------------------------------------------------------------------------- 1 | import { 2 | CancellationToken, 3 | FormattingOptions, 4 | OnTypeFormattingEditProvider, 5 | Position, 6 | ProviderResult, 7 | TextDocument, 8 | TextEdit, 9 | TextLine, 10 | } from 'vscode'; 11 | 12 | const TRIGGER_STATEMENTS = [ 13 | /^(if|unless|for|while|class|module|until|def|case)\s/, 14 | /^begin/, 15 | /.*\sdo/, 16 | ]; 17 | const SINGLE_LINE_DEFINITION = /;\s*end[\s;]*$/; 18 | const LINE_PARSE_LIMIT = 1000; 19 | 20 | export default class EndsmartOnTypeFormatter 21 | implements OnTypeFormattingEditProvider 22 | { 23 | provideOnTypeFormattingEdits( 24 | document: TextDocument, 25 | position: Position, 26 | _ch: string, 27 | options: FormattingOptions, 28 | _token: CancellationToken, 29 | ): ProviderResult { 30 | const lineBeforeNewLine = document.lineAt(Math.max(0, position.line - 1)); 31 | 32 | // If the line is whitespace, nothing to do 33 | if (lineBeforeNewLine.isEmptyOrWhitespace) { 34 | return; 35 | } 36 | 37 | // Exit early if we find out we may be dealing with a comment or a string as we don't care in that case 38 | const firstChar = 39 | lineBeforeNewLine.text[ 40 | lineBeforeNewLine.firstNonWhitespaceCharacterIndex 41 | ]; 42 | if (['#', '"', "'"].includes(firstChar)) { 43 | return; 44 | } 45 | 46 | // Exit early if we are in the presence of a single statement line 47 | if (lineBeforeNewLine.text.match(SINGLE_LINE_DEFINITION)) { 48 | return; 49 | } 50 | 51 | // Try to find a keyword that would indicate we need to trigger the logic 52 | if (!this.lineMatchOpening(lineBeforeNewLine)) { 53 | return; 54 | } 55 | 56 | // If we have found a beginning keyword, make sure that the cursor is not currently 57 | // in the middle of an expression (typical of an if statement e.g. `if ![$]` where 58 | // the end insertion would be wrong because it would end up inside `[]`). We do this 59 | // by seeing if the line represented by position is an empty line which it should be 60 | // if Enter was pressed at the end of the previous line 61 | const currentLine = document.lineAt(position.line); 62 | if (!currentLine.isEmptyOrWhitespace) { 63 | return; 64 | } 65 | 66 | // Save what the previous line indentation is, if we are using tabs it's directly the value 67 | // if using spaces we need to calculate an amount 68 | const indentationLevel = this.indentationFor(lineBeforeNewLine, options); 69 | 70 | // Cool we are good to proceed, we should see if we need to add a `end` statement now 71 | if ( 72 | !this.shouldAddEnd(document, position.line, indentationLevel, options) 73 | ) { 74 | return; 75 | } 76 | 77 | // Return the edits necessary to place the end statement 78 | const indentationString = lineBeforeNewLine.text.substring( 79 | 0, 80 | lineBeforeNewLine.firstNonWhitespaceCharacterIndex, 81 | ); 82 | const insertPosition = new Position(position.line + 1, 0); 83 | return [ 84 | // Add the `end` keyword with the right indentation 85 | TextEdit.insert(insertPosition, `${indentationString}end\n`), 86 | ]; 87 | } 88 | 89 | private lineMatchOpening(line: TextLine): boolean { 90 | const mainLineContent = line.text.substring( 91 | line.firstNonWhitespaceCharacterIndex, 92 | ); 93 | if (!TRIGGER_STATEMENTS.some((ts) => ts.test(mainLineContent))) { 94 | return false; 95 | } 96 | return true; 97 | } 98 | 99 | private indentationFor(line: TextLine, options: FormattingOptions) { 100 | return options.insertSpaces 101 | ? line.firstNonWhitespaceCharacterIndex / options.tabSize 102 | : line.firstNonWhitespaceCharacterIndex; 103 | } 104 | 105 | /* This logic is mostly lifted from the original endwise extension so that behavior 106 | * remains as consistent as possible. 107 | * Original implementation: https://github.com/kaiwood/vscode-endwise/blob/c846a9e0210a32c8d919aade048039aeb01a123a/src/extension.ts#L164 108 | */ 109 | private shouldAddEnd( 110 | document: TextDocument, 111 | lineNumber: number, 112 | currentIndentation: number, 113 | options: FormattingOptions, 114 | ): boolean { 115 | let stackCount = 0; 116 | const documentLineCount = document.lineCount; 117 | 118 | // Do not add "end" if code structure is already balanced 119 | for (let ln = lineNumber; ln <= lineNumber + LINE_PARSE_LIMIT; ln++) { 120 | // Close if we are at the end of the document 121 | if (documentLineCount <= ln + 1) return true; 122 | 123 | const line = document.lineAt(ln + 1); 124 | const lineStartsWithEnd = line.text.startsWith( 125 | 'end', 126 | line.firstNonWhitespaceCharacterIndex, 127 | ); 128 | 129 | // Always close the statement if there is another closing found on a smaller indentation level 130 | if ( 131 | currentIndentation > this.indentationFor(line, options) && 132 | lineStartsWithEnd 133 | ) { 134 | return true; 135 | } 136 | 137 | if (currentIndentation === this.indentationFor(line, options)) { 138 | // If another opening is found, increment the stack counter 139 | if (this.lineMatchOpening(line)) { 140 | stackCount += 1; 141 | } 142 | 143 | if (lineStartsWithEnd && stackCount > 0) { 144 | stackCount -= 1; 145 | } else if (lineStartsWithEnd) { 146 | return false; 147 | } 148 | } 149 | } 150 | 151 | return false; 152 | } 153 | } 154 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@aashutoshrathi/word-wrap@^1.2.3": 6 | version "1.2.6" 7 | resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" 8 | integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== 9 | 10 | "@esbuild/aix-ppc64@0.19.12": 11 | version "0.19.12" 12 | resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz#d1bc06aedb6936b3b6d313bf809a5a40387d2b7f" 13 | integrity sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA== 14 | 15 | "@esbuild/android-arm64@0.19.12": 16 | version "0.19.12" 17 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.19.12.tgz#7ad65a36cfdb7e0d429c353e00f680d737c2aed4" 18 | integrity sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA== 19 | 20 | "@esbuild/android-arm@0.19.12": 21 | version "0.19.12" 22 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.19.12.tgz#b0c26536f37776162ca8bde25e42040c203f2824" 23 | integrity sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w== 24 | 25 | "@esbuild/android-x64@0.19.12": 26 | version "0.19.12" 27 | resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.19.12.tgz#cb13e2211282012194d89bf3bfe7721273473b3d" 28 | integrity sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew== 29 | 30 | "@esbuild/darwin-arm64@0.19.12": 31 | version "0.19.12" 32 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.19.12.tgz#cbee41e988020d4b516e9d9e44dd29200996275e" 33 | integrity sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g== 34 | 35 | "@esbuild/darwin-x64@0.19.12": 36 | version "0.19.12" 37 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.19.12.tgz#e37d9633246d52aecf491ee916ece709f9d5f4cd" 38 | integrity sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A== 39 | 40 | "@esbuild/freebsd-arm64@0.19.12": 41 | version "0.19.12" 42 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.12.tgz#1ee4d8b682ed363b08af74d1ea2b2b4dbba76487" 43 | integrity sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA== 44 | 45 | "@esbuild/freebsd-x64@0.19.12": 46 | version "0.19.12" 47 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.19.12.tgz#37a693553d42ff77cd7126764b535fb6cc28a11c" 48 | integrity sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg== 49 | 50 | "@esbuild/linux-arm64@0.19.12": 51 | version "0.19.12" 52 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.19.12.tgz#be9b145985ec6c57470e0e051d887b09dddb2d4b" 53 | integrity sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA== 54 | 55 | "@esbuild/linux-arm@0.19.12": 56 | version "0.19.12" 57 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.19.12.tgz#207ecd982a8db95f7b5279207d0ff2331acf5eef" 58 | integrity sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w== 59 | 60 | "@esbuild/linux-ia32@0.19.12": 61 | version "0.19.12" 62 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.19.12.tgz#d0d86b5ca1562523dc284a6723293a52d5860601" 63 | integrity sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA== 64 | 65 | "@esbuild/linux-loong64@0.19.12": 66 | version "0.19.12" 67 | resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.19.12.tgz#9a37f87fec4b8408e682b528391fa22afd952299" 68 | integrity sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA== 69 | 70 | "@esbuild/linux-mips64el@0.19.12": 71 | version "0.19.12" 72 | resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.19.12.tgz#4ddebd4e6eeba20b509d8e74c8e30d8ace0b89ec" 73 | integrity sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w== 74 | 75 | "@esbuild/linux-ppc64@0.19.12": 76 | version "0.19.12" 77 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.19.12.tgz#adb67dadb73656849f63cd522f5ecb351dd8dee8" 78 | integrity sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg== 79 | 80 | "@esbuild/linux-riscv64@0.19.12": 81 | version "0.19.12" 82 | resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.19.12.tgz#11bc0698bf0a2abf8727f1c7ace2112612c15adf" 83 | integrity sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg== 84 | 85 | "@esbuild/linux-s390x@0.19.12": 86 | version "0.19.12" 87 | resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.19.12.tgz#e86fb8ffba7c5c92ba91fc3b27ed5a70196c3cc8" 88 | integrity sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg== 89 | 90 | "@esbuild/linux-x64@0.19.12": 91 | version "0.19.12" 92 | resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.19.12.tgz#5f37cfdc705aea687dfe5dfbec086a05acfe9c78" 93 | integrity sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg== 94 | 95 | "@esbuild/netbsd-x64@0.19.12": 96 | version "0.19.12" 97 | resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.19.12.tgz#29da566a75324e0d0dd7e47519ba2f7ef168657b" 98 | integrity sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA== 99 | 100 | "@esbuild/openbsd-x64@0.19.12": 101 | version "0.19.12" 102 | resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.19.12.tgz#306c0acbdb5a99c95be98bdd1d47c916e7dc3ff0" 103 | integrity sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw== 104 | 105 | "@esbuild/sunos-x64@0.19.12": 106 | version "0.19.12" 107 | resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.19.12.tgz#0933eaab9af8b9b2c930236f62aae3fc593faf30" 108 | integrity sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA== 109 | 110 | "@esbuild/win32-arm64@0.19.12": 111 | version "0.19.12" 112 | resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.19.12.tgz#773bdbaa1971b36db2f6560088639ccd1e6773ae" 113 | integrity sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A== 114 | 115 | "@esbuild/win32-ia32@0.19.12": 116 | version "0.19.12" 117 | resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.19.12.tgz#000516cad06354cc84a73f0943a4aa690ef6fd67" 118 | integrity sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ== 119 | 120 | "@esbuild/win32-x64@0.19.12": 121 | version "0.19.12" 122 | resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.19.12.tgz#c57c8afbb4054a3ab8317591a0b7320360b444ae" 123 | integrity sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA== 124 | 125 | "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": 126 | version "4.4.0" 127 | resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" 128 | integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== 129 | dependencies: 130 | eslint-visitor-keys "^3.3.0" 131 | 132 | "@eslint-community/regexpp@^4.5.1", "@eslint-community/regexpp@^4.6.1": 133 | version "4.10.0" 134 | resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.10.0.tgz#548f6de556857c8bb73bbee70c35dc82a2e74d63" 135 | integrity sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA== 136 | 137 | "@eslint/eslintrc@^2.1.4": 138 | version "2.1.4" 139 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad" 140 | integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ== 141 | dependencies: 142 | ajv "^6.12.4" 143 | debug "^4.3.2" 144 | espree "^9.6.0" 145 | globals "^13.19.0" 146 | ignore "^5.2.0" 147 | import-fresh "^3.2.1" 148 | js-yaml "^4.1.0" 149 | minimatch "^3.1.2" 150 | strip-json-comments "^3.1.1" 151 | 152 | "@eslint/js@8.56.0": 153 | version "8.56.0" 154 | resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.56.0.tgz#ef20350fec605a7f7035a01764731b2de0f3782b" 155 | integrity sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A== 156 | 157 | "@humanwhocodes/config-array@^0.11.13": 158 | version "0.11.14" 159 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.14.tgz#d78e481a039f7566ecc9660b4ea7fe6b1fec442b" 160 | integrity sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg== 161 | dependencies: 162 | "@humanwhocodes/object-schema" "^2.0.2" 163 | debug "^4.3.1" 164 | minimatch "^3.0.5" 165 | 166 | "@humanwhocodes/module-importer@^1.0.1": 167 | version "1.0.1" 168 | resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" 169 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 170 | 171 | "@humanwhocodes/object-schema@^2.0.2": 172 | version "2.0.2" 173 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz#d9fae00a2d5cb40f92cfe64b47ad749fbc38f917" 174 | integrity sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw== 175 | 176 | "@isaacs/cliui@^8.0.2": 177 | version "8.0.2" 178 | resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" 179 | integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== 180 | dependencies: 181 | string-width "^5.1.2" 182 | string-width-cjs "npm:string-width@^4.2.0" 183 | strip-ansi "^7.0.1" 184 | strip-ansi-cjs "npm:strip-ansi@^6.0.1" 185 | wrap-ansi "^8.1.0" 186 | wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" 187 | 188 | "@nodelib/fs.scandir@2.1.5": 189 | version "2.1.5" 190 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 191 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 192 | dependencies: 193 | "@nodelib/fs.stat" "2.0.5" 194 | run-parallel "^1.1.9" 195 | 196 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 197 | version "2.0.5" 198 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 199 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 200 | 201 | "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": 202 | version "1.2.8" 203 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 204 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 205 | dependencies: 206 | "@nodelib/fs.scandir" "2.1.5" 207 | fastq "^1.6.0" 208 | 209 | "@pkgjs/parseargs@^0.11.0": 210 | version "0.11.0" 211 | resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" 212 | integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== 213 | 214 | "@pkgr/core@^0.1.0": 215 | version "0.1.1" 216 | resolved "https://registry.yarnpkg.com/@pkgr/core/-/core-0.1.1.tgz#1ec17e2edbec25c8306d424ecfbf13c7de1aaa31" 217 | integrity sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA== 218 | 219 | "@tootallnate/once@1": 220 | version "1.1.2" 221 | resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" 222 | integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== 223 | 224 | "@types/json-schema@^7.0.12": 225 | version "7.0.15" 226 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" 227 | integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== 228 | 229 | "@types/mocha@^10.0.2", "@types/mocha@^10.0.3": 230 | version "10.0.6" 231 | resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-10.0.6.tgz#818551d39113081048bdddbef96701b4e8bb9d1b" 232 | integrity sha512-dJvrYWxP/UcXm36Qn36fxhUKu8A/xMRXVT2cliFF1Z7UA9liG5Psj3ezNSZw+5puH2czDXRLcXQxf8JbJt0ejg== 233 | 234 | "@types/node@18.x": 235 | version "18.19.14" 236 | resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.14.tgz#1880ff1b3ac913f3877f711588e5ed227da01886" 237 | integrity sha512-EnQ4Us2rmOS64nHDWr0XqAD8DsO6f3XR6lf9UIIrZQpUzPVdN/oPuEzfDWNHSyXLvoGgjuEm/sPwFGSSs35Wtg== 238 | dependencies: 239 | undici-types "~5.26.4" 240 | 241 | "@types/semver@^7.5.0": 242 | version "7.5.6" 243 | resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.6.tgz#c65b2bfce1bec346582c07724e3f8c1017a20339" 244 | integrity sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A== 245 | 246 | "@types/vscode@^1.84.0": 247 | version "1.86.0" 248 | resolved "https://registry.yarnpkg.com/@types/vscode/-/vscode-1.86.0.tgz#5d5f233137b27e51d7ad1462600005741296357a" 249 | integrity sha512-DnIXf2ftWv+9LWOB5OJeIeaLigLHF7fdXF6atfc7X5g2w/wVZBgk0amP7b+ub5xAuW1q7qP5YcFvOcit/DtyCQ== 250 | 251 | "@typescript-eslint/eslint-plugin@^6.9.0": 252 | version "6.21.0" 253 | resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.21.0.tgz#30830c1ca81fd5f3c2714e524c4303e0194f9cd3" 254 | integrity sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA== 255 | dependencies: 256 | "@eslint-community/regexpp" "^4.5.1" 257 | "@typescript-eslint/scope-manager" "6.21.0" 258 | "@typescript-eslint/type-utils" "6.21.0" 259 | "@typescript-eslint/utils" "6.21.0" 260 | "@typescript-eslint/visitor-keys" "6.21.0" 261 | debug "^4.3.4" 262 | graphemer "^1.4.0" 263 | ignore "^5.2.4" 264 | natural-compare "^1.4.0" 265 | semver "^7.5.4" 266 | ts-api-utils "^1.0.1" 267 | 268 | "@typescript-eslint/parser@^6.9.0": 269 | version "6.21.0" 270 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.21.0.tgz#af8fcf66feee2edc86bc5d1cf45e33b0630bf35b" 271 | integrity sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ== 272 | dependencies: 273 | "@typescript-eslint/scope-manager" "6.21.0" 274 | "@typescript-eslint/types" "6.21.0" 275 | "@typescript-eslint/typescript-estree" "6.21.0" 276 | "@typescript-eslint/visitor-keys" "6.21.0" 277 | debug "^4.3.4" 278 | 279 | "@typescript-eslint/scope-manager@6.21.0": 280 | version "6.21.0" 281 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz#ea8a9bfc8f1504a6ac5d59a6df308d3a0630a2b1" 282 | integrity sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg== 283 | dependencies: 284 | "@typescript-eslint/types" "6.21.0" 285 | "@typescript-eslint/visitor-keys" "6.21.0" 286 | 287 | "@typescript-eslint/type-utils@6.21.0": 288 | version "6.21.0" 289 | resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.21.0.tgz#6473281cfed4dacabe8004e8521cee0bd9d4c01e" 290 | integrity sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag== 291 | dependencies: 292 | "@typescript-eslint/typescript-estree" "6.21.0" 293 | "@typescript-eslint/utils" "6.21.0" 294 | debug "^4.3.4" 295 | ts-api-utils "^1.0.1" 296 | 297 | "@typescript-eslint/types@6.21.0": 298 | version "6.21.0" 299 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.21.0.tgz#205724c5123a8fef7ecd195075fa6e85bac3436d" 300 | integrity sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg== 301 | 302 | "@typescript-eslint/typescript-estree@6.21.0": 303 | version "6.21.0" 304 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz#c47ae7901db3b8bddc3ecd73daff2d0895688c46" 305 | integrity sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ== 306 | dependencies: 307 | "@typescript-eslint/types" "6.21.0" 308 | "@typescript-eslint/visitor-keys" "6.21.0" 309 | debug "^4.3.4" 310 | globby "^11.1.0" 311 | is-glob "^4.0.3" 312 | minimatch "9.0.3" 313 | semver "^7.5.4" 314 | ts-api-utils "^1.0.1" 315 | 316 | "@typescript-eslint/utils@6.21.0": 317 | version "6.21.0" 318 | resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.21.0.tgz#4714e7a6b39e773c1c8e97ec587f520840cd8134" 319 | integrity sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ== 320 | dependencies: 321 | "@eslint-community/eslint-utils" "^4.4.0" 322 | "@types/json-schema" "^7.0.12" 323 | "@types/semver" "^7.5.0" 324 | "@typescript-eslint/scope-manager" "6.21.0" 325 | "@typescript-eslint/types" "6.21.0" 326 | "@typescript-eslint/typescript-estree" "6.21.0" 327 | semver "^7.5.4" 328 | 329 | "@typescript-eslint/visitor-keys@6.21.0": 330 | version "6.21.0" 331 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz#87a99d077aa507e20e238b11d56cc26ade45fe47" 332 | integrity sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A== 333 | dependencies: 334 | "@typescript-eslint/types" "6.21.0" 335 | eslint-visitor-keys "^3.4.1" 336 | 337 | "@ungap/structured-clone@^1.2.0": 338 | version "1.2.0" 339 | resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" 340 | integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== 341 | 342 | "@vscode/test-cli@^0.0.4": 343 | version "0.0.4" 344 | resolved "https://registry.yarnpkg.com/@vscode/test-cli/-/test-cli-0.0.4.tgz#eeeb5620ff8b9eb31ae3e5b01af322ca68fcfaae" 345 | integrity sha512-Tx0tfbxeSb2Xlo+jpd+GJrNLgKQHobhRHrYvOipZRZQYWZ82sKiK02VY09UjU1Czc/YnZnqyAnjUfaVGl3h09w== 346 | dependencies: 347 | "@types/mocha" "^10.0.2" 348 | chokidar "^3.5.3" 349 | glob "^10.3.10" 350 | minimatch "^9.0.3" 351 | mocha "^10.2.0" 352 | supports-color "^9.4.0" 353 | yargs "^17.7.2" 354 | 355 | "@vscode/test-electron@^2.3.6": 356 | version "2.3.9" 357 | resolved "https://registry.yarnpkg.com/@vscode/test-electron/-/test-electron-2.3.9.tgz#f61181392634b408411e4302aef6e1cd2dd41474" 358 | integrity sha512-z3eiChaCQXMqBnk2aHHSEkobmC2VRalFQN0ApOAtydL172zXGxTwGrRtviT5HnUB+Q+G3vtEYFtuQkYqBzYgMA== 359 | dependencies: 360 | http-proxy-agent "^4.0.1" 361 | https-proxy-agent "^5.0.0" 362 | jszip "^3.10.1" 363 | semver "^7.5.2" 364 | 365 | "@vscode/vsce@^2.24.0": 366 | version "2.24.0" 367 | resolved "https://registry.yarnpkg.com/@vscode/vsce/-/vsce-2.24.0.tgz#7f835b9fdd5bfedcecd62a6c4d684841a74974d4" 368 | integrity sha512-p6CIXpH5HXDqmUkgFXvIKTjZpZxy/uDx4d/UsfhS9vQUun43KDNUbYeZocyAHgqcJlPEurgArHz9te1PPiqPyA== 369 | dependencies: 370 | azure-devops-node-api "^11.0.1" 371 | chalk "^2.4.2" 372 | cheerio "^1.0.0-rc.9" 373 | commander "^6.2.1" 374 | glob "^7.0.6" 375 | hosted-git-info "^4.0.2" 376 | jsonc-parser "^3.2.0" 377 | leven "^3.1.0" 378 | markdown-it "^12.3.2" 379 | mime "^1.3.4" 380 | minimatch "^3.0.3" 381 | parse-semver "^1.1.1" 382 | read "^1.0.7" 383 | semver "^7.5.2" 384 | tmp "^0.2.1" 385 | typed-rest-client "^1.8.4" 386 | url-join "^4.0.1" 387 | xml2js "^0.5.0" 388 | yauzl "^2.3.1" 389 | yazl "^2.2.2" 390 | optionalDependencies: 391 | keytar "^7.7.0" 392 | 393 | acorn-jsx@^5.3.2: 394 | version "5.3.2" 395 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 396 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 397 | 398 | acorn@^8.9.0: 399 | version "8.11.3" 400 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.3.tgz#71e0b14e13a4ec160724b38fb7b0f233b1b81d7a" 401 | integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg== 402 | 403 | agent-base@6: 404 | version "6.0.2" 405 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" 406 | integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== 407 | dependencies: 408 | debug "4" 409 | 410 | ajv@^6.12.4: 411 | version "6.12.6" 412 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 413 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 414 | dependencies: 415 | fast-deep-equal "^3.1.1" 416 | fast-json-stable-stringify "^2.0.0" 417 | json-schema-traverse "^0.4.1" 418 | uri-js "^4.2.2" 419 | 420 | ansi-colors@4.1.1: 421 | version "4.1.1" 422 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" 423 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== 424 | 425 | ansi-regex@^5.0.1: 426 | version "5.0.1" 427 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 428 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 429 | 430 | ansi-regex@^6.0.1: 431 | version "6.0.1" 432 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" 433 | integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== 434 | 435 | ansi-styles@^3.2.1: 436 | version "3.2.1" 437 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 438 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 439 | dependencies: 440 | color-convert "^1.9.0" 441 | 442 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 443 | version "4.3.0" 444 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 445 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 446 | dependencies: 447 | color-convert "^2.0.1" 448 | 449 | ansi-styles@^6.1.0: 450 | version "6.2.1" 451 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" 452 | integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== 453 | 454 | anymatch@~3.1.2: 455 | version "3.1.3" 456 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" 457 | integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== 458 | dependencies: 459 | normalize-path "^3.0.0" 460 | picomatch "^2.0.4" 461 | 462 | argparse@^2.0.1: 463 | version "2.0.1" 464 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 465 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 466 | 467 | array-union@^2.1.0: 468 | version "2.1.0" 469 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 470 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 471 | 472 | azure-devops-node-api@^11.0.1: 473 | version "11.2.0" 474 | resolved "https://registry.yarnpkg.com/azure-devops-node-api/-/azure-devops-node-api-11.2.0.tgz#bf04edbef60313117a0507415eed4790a420ad6b" 475 | integrity sha512-XdiGPhrpaT5J8wdERRKs5g8E0Zy1pvOYTli7z9E8nmOn3YGp4FhtjhrOyFmX/8veWCwdI69mCHKJw6l+4J/bHA== 476 | dependencies: 477 | tunnel "0.0.6" 478 | typed-rest-client "^1.8.4" 479 | 480 | balanced-match@^1.0.0: 481 | version "1.0.2" 482 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 483 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 484 | 485 | base64-js@^1.3.1: 486 | version "1.5.1" 487 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" 488 | integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== 489 | 490 | binary-extensions@^2.0.0: 491 | version "2.2.0" 492 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" 493 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 494 | 495 | bl@^4.0.3: 496 | version "4.1.0" 497 | resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" 498 | integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== 499 | dependencies: 500 | buffer "^5.5.0" 501 | inherits "^2.0.4" 502 | readable-stream "^3.4.0" 503 | 504 | boolbase@^1.0.0: 505 | version "1.0.0" 506 | resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" 507 | integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== 508 | 509 | brace-expansion@^1.1.7: 510 | version "1.1.11" 511 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 512 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 513 | dependencies: 514 | balanced-match "^1.0.0" 515 | concat-map "0.0.1" 516 | 517 | brace-expansion@^2.0.1: 518 | version "2.0.1" 519 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" 520 | integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== 521 | dependencies: 522 | balanced-match "^1.0.0" 523 | 524 | braces@^3.0.3, braces@~3.0.2: 525 | version "3.0.3" 526 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" 527 | integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== 528 | dependencies: 529 | fill-range "^7.1.1" 530 | 531 | browser-stdout@1.3.1: 532 | version "1.3.1" 533 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" 534 | integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== 535 | 536 | buffer-crc32@~0.2.3: 537 | version "0.2.13" 538 | resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" 539 | integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== 540 | 541 | buffer@^5.5.0: 542 | version "5.7.1" 543 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" 544 | integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== 545 | dependencies: 546 | base64-js "^1.3.1" 547 | ieee754 "^1.1.13" 548 | 549 | call-bind@^1.0.6: 550 | version "1.0.7" 551 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" 552 | integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== 553 | dependencies: 554 | es-define-property "^1.0.0" 555 | es-errors "^1.3.0" 556 | function-bind "^1.1.2" 557 | get-intrinsic "^1.2.4" 558 | set-function-length "^1.2.1" 559 | 560 | callsites@^3.0.0: 561 | version "3.1.0" 562 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 563 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 564 | 565 | camelcase@^6.0.0: 566 | version "6.3.0" 567 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" 568 | integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== 569 | 570 | chalk@^2.4.2: 571 | version "2.4.2" 572 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 573 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 574 | dependencies: 575 | ansi-styles "^3.2.1" 576 | escape-string-regexp "^1.0.5" 577 | supports-color "^5.3.0" 578 | 579 | chalk@^4.0.0, chalk@^4.1.0: 580 | version "4.1.2" 581 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 582 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 583 | dependencies: 584 | ansi-styles "^4.1.0" 585 | supports-color "^7.1.0" 586 | 587 | cheerio-select@^2.1.0: 588 | version "2.1.0" 589 | resolved "https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-2.1.0.tgz#4d8673286b8126ca2a8e42740d5e3c4884ae21b4" 590 | integrity sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g== 591 | dependencies: 592 | boolbase "^1.0.0" 593 | css-select "^5.1.0" 594 | css-what "^6.1.0" 595 | domelementtype "^2.3.0" 596 | domhandler "^5.0.3" 597 | domutils "^3.0.1" 598 | 599 | cheerio@^1.0.0-rc.9: 600 | version "1.0.0-rc.12" 601 | resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.12.tgz#788bf7466506b1c6bf5fae51d24a2c4d62e47683" 602 | integrity sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q== 603 | dependencies: 604 | cheerio-select "^2.1.0" 605 | dom-serializer "^2.0.0" 606 | domhandler "^5.0.3" 607 | domutils "^3.0.1" 608 | htmlparser2 "^8.0.1" 609 | parse5 "^7.0.0" 610 | parse5-htmlparser2-tree-adapter "^7.0.0" 611 | 612 | chokidar@3.5.3, chokidar@^3.5.3: 613 | version "3.5.3" 614 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" 615 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== 616 | dependencies: 617 | anymatch "~3.1.2" 618 | braces "~3.0.2" 619 | glob-parent "~5.1.2" 620 | is-binary-path "~2.1.0" 621 | is-glob "~4.0.1" 622 | normalize-path "~3.0.0" 623 | readdirp "~3.6.0" 624 | optionalDependencies: 625 | fsevents "~2.3.2" 626 | 627 | chownr@^1.1.1: 628 | version "1.1.4" 629 | resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" 630 | integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== 631 | 632 | cliui@^7.0.2: 633 | version "7.0.4" 634 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 635 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 636 | dependencies: 637 | string-width "^4.2.0" 638 | strip-ansi "^6.0.0" 639 | wrap-ansi "^7.0.0" 640 | 641 | cliui@^8.0.1: 642 | version "8.0.1" 643 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" 644 | integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== 645 | dependencies: 646 | string-width "^4.2.0" 647 | strip-ansi "^6.0.1" 648 | wrap-ansi "^7.0.0" 649 | 650 | color-convert@^1.9.0: 651 | version "1.9.3" 652 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 653 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 654 | dependencies: 655 | color-name "1.1.3" 656 | 657 | color-convert@^2.0.1: 658 | version "2.0.1" 659 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 660 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 661 | dependencies: 662 | color-name "~1.1.4" 663 | 664 | color-name@1.1.3: 665 | version "1.1.3" 666 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 667 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== 668 | 669 | color-name@~1.1.4: 670 | version "1.1.4" 671 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 672 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 673 | 674 | commander@^6.2.1: 675 | version "6.2.1" 676 | resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" 677 | integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== 678 | 679 | concat-map@0.0.1: 680 | version "0.0.1" 681 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 682 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 683 | 684 | core-util-is@~1.0.0: 685 | version "1.0.3" 686 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85" 687 | integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ== 688 | 689 | cross-spawn@^7.0.0, cross-spawn@^7.0.2: 690 | version "7.0.3" 691 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 692 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 693 | dependencies: 694 | path-key "^3.1.0" 695 | shebang-command "^2.0.0" 696 | which "^2.0.1" 697 | 698 | css-select@^5.1.0: 699 | version "5.1.0" 700 | resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6" 701 | integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg== 702 | dependencies: 703 | boolbase "^1.0.0" 704 | css-what "^6.1.0" 705 | domhandler "^5.0.2" 706 | domutils "^3.0.1" 707 | nth-check "^2.0.1" 708 | 709 | css-what@^6.1.0: 710 | version "6.1.0" 711 | resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" 712 | integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== 713 | 714 | debug@4, debug@4.3.4, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: 715 | version "4.3.4" 716 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 717 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 718 | dependencies: 719 | ms "2.1.2" 720 | 721 | decamelize@^4.0.0: 722 | version "4.0.0" 723 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837" 724 | integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ== 725 | 726 | decompress-response@^6.0.0: 727 | version "6.0.0" 728 | resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" 729 | integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== 730 | dependencies: 731 | mimic-response "^3.1.0" 732 | 733 | deep-extend@^0.6.0: 734 | version "0.6.0" 735 | resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" 736 | integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== 737 | 738 | deep-is@^0.1.3: 739 | version "0.1.4" 740 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 741 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 742 | 743 | define-data-property@^1.1.2: 744 | version "1.1.4" 745 | resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" 746 | integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== 747 | dependencies: 748 | es-define-property "^1.0.0" 749 | es-errors "^1.3.0" 750 | gopd "^1.0.1" 751 | 752 | detect-libc@^2.0.0: 753 | version "2.0.2" 754 | resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.2.tgz#8ccf2ba9315350e1241b88d0ac3b0e1fbd99605d" 755 | integrity sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw== 756 | 757 | diff@5.0.0: 758 | version "5.0.0" 759 | resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" 760 | integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== 761 | 762 | dir-glob@^3.0.1: 763 | version "3.0.1" 764 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 765 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 766 | dependencies: 767 | path-type "^4.0.0" 768 | 769 | doctrine@^3.0.0: 770 | version "3.0.0" 771 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 772 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 773 | dependencies: 774 | esutils "^2.0.2" 775 | 776 | dom-serializer@^2.0.0: 777 | version "2.0.0" 778 | resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" 779 | integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== 780 | dependencies: 781 | domelementtype "^2.3.0" 782 | domhandler "^5.0.2" 783 | entities "^4.2.0" 784 | 785 | domelementtype@^2.3.0: 786 | version "2.3.0" 787 | resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" 788 | integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== 789 | 790 | domhandler@^5.0.2, domhandler@^5.0.3: 791 | version "5.0.3" 792 | resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" 793 | integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== 794 | dependencies: 795 | domelementtype "^2.3.0" 796 | 797 | domutils@^3.0.1: 798 | version "3.1.0" 799 | resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e" 800 | integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA== 801 | dependencies: 802 | dom-serializer "^2.0.0" 803 | domelementtype "^2.3.0" 804 | domhandler "^5.0.3" 805 | 806 | eastasianwidth@^0.2.0: 807 | version "0.2.0" 808 | resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" 809 | integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== 810 | 811 | emoji-regex@^8.0.0: 812 | version "8.0.0" 813 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 814 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 815 | 816 | emoji-regex@^9.2.2: 817 | version "9.2.2" 818 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" 819 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== 820 | 821 | end-of-stream@^1.1.0, end-of-stream@^1.4.1: 822 | version "1.4.4" 823 | resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" 824 | integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== 825 | dependencies: 826 | once "^1.4.0" 827 | 828 | entities@^4.2.0, entities@^4.4.0: 829 | version "4.5.0" 830 | resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" 831 | integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== 832 | 833 | entities@~2.1.0: 834 | version "2.1.0" 835 | resolved "https://registry.yarnpkg.com/entities/-/entities-2.1.0.tgz#992d3129cf7df6870b96c57858c249a120f8b8b5" 836 | integrity sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w== 837 | 838 | es-define-property@^1.0.0: 839 | version "1.0.0" 840 | resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" 841 | integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== 842 | dependencies: 843 | get-intrinsic "^1.2.4" 844 | 845 | es-errors@^1.3.0: 846 | version "1.3.0" 847 | resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" 848 | integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== 849 | 850 | esbuild@^0.19.8: 851 | version "0.19.12" 852 | resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.19.12.tgz#dc82ee5dc79e82f5a5c3b4323a2a641827db3e04" 853 | integrity sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg== 854 | optionalDependencies: 855 | "@esbuild/aix-ppc64" "0.19.12" 856 | "@esbuild/android-arm" "0.19.12" 857 | "@esbuild/android-arm64" "0.19.12" 858 | "@esbuild/android-x64" "0.19.12" 859 | "@esbuild/darwin-arm64" "0.19.12" 860 | "@esbuild/darwin-x64" "0.19.12" 861 | "@esbuild/freebsd-arm64" "0.19.12" 862 | "@esbuild/freebsd-x64" "0.19.12" 863 | "@esbuild/linux-arm" "0.19.12" 864 | "@esbuild/linux-arm64" "0.19.12" 865 | "@esbuild/linux-ia32" "0.19.12" 866 | "@esbuild/linux-loong64" "0.19.12" 867 | "@esbuild/linux-mips64el" "0.19.12" 868 | "@esbuild/linux-ppc64" "0.19.12" 869 | "@esbuild/linux-riscv64" "0.19.12" 870 | "@esbuild/linux-s390x" "0.19.12" 871 | "@esbuild/linux-x64" "0.19.12" 872 | "@esbuild/netbsd-x64" "0.19.12" 873 | "@esbuild/openbsd-x64" "0.19.12" 874 | "@esbuild/sunos-x64" "0.19.12" 875 | "@esbuild/win32-arm64" "0.19.12" 876 | "@esbuild/win32-ia32" "0.19.12" 877 | "@esbuild/win32-x64" "0.19.12" 878 | 879 | escalade@^3.1.1: 880 | version "3.1.2" 881 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27" 882 | integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== 883 | 884 | escape-string-regexp@4.0.0, escape-string-regexp@^4.0.0: 885 | version "4.0.0" 886 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 887 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 888 | 889 | escape-string-regexp@^1.0.5: 890 | version "1.0.5" 891 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 892 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== 893 | 894 | eslint-plugin-eslint-comments@^3.2.0: 895 | version "3.2.0" 896 | resolved "https://registry.yarnpkg.com/eslint-plugin-eslint-comments/-/eslint-plugin-eslint-comments-3.2.0.tgz#9e1cd7b4413526abb313933071d7aba05ca12ffa" 897 | integrity sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ== 898 | dependencies: 899 | escape-string-regexp "^1.0.5" 900 | ignore "^5.0.5" 901 | 902 | eslint-plugin-prettier@^5.0.1: 903 | version "5.1.3" 904 | resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.3.tgz#17cfade9e732cef32b5f5be53bd4e07afd8e67e1" 905 | integrity sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw== 906 | dependencies: 907 | prettier-linter-helpers "^1.0.0" 908 | synckit "^0.8.6" 909 | 910 | eslint-scope@^7.2.2: 911 | version "7.2.2" 912 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" 913 | integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== 914 | dependencies: 915 | esrecurse "^4.3.0" 916 | estraverse "^5.2.0" 917 | 918 | eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: 919 | version "3.4.3" 920 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" 921 | integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== 922 | 923 | eslint@^8.52.0: 924 | version "8.56.0" 925 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.56.0.tgz#4957ce8da409dc0809f99ab07a1b94832ab74b15" 926 | integrity sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ== 927 | dependencies: 928 | "@eslint-community/eslint-utils" "^4.2.0" 929 | "@eslint-community/regexpp" "^4.6.1" 930 | "@eslint/eslintrc" "^2.1.4" 931 | "@eslint/js" "8.56.0" 932 | "@humanwhocodes/config-array" "^0.11.13" 933 | "@humanwhocodes/module-importer" "^1.0.1" 934 | "@nodelib/fs.walk" "^1.2.8" 935 | "@ungap/structured-clone" "^1.2.0" 936 | ajv "^6.12.4" 937 | chalk "^4.0.0" 938 | cross-spawn "^7.0.2" 939 | debug "^4.3.2" 940 | doctrine "^3.0.0" 941 | escape-string-regexp "^4.0.0" 942 | eslint-scope "^7.2.2" 943 | eslint-visitor-keys "^3.4.3" 944 | espree "^9.6.1" 945 | esquery "^1.4.2" 946 | esutils "^2.0.2" 947 | fast-deep-equal "^3.1.3" 948 | file-entry-cache "^6.0.1" 949 | find-up "^5.0.0" 950 | glob-parent "^6.0.2" 951 | globals "^13.19.0" 952 | graphemer "^1.4.0" 953 | ignore "^5.2.0" 954 | imurmurhash "^0.1.4" 955 | is-glob "^4.0.0" 956 | is-path-inside "^3.0.3" 957 | js-yaml "^4.1.0" 958 | json-stable-stringify-without-jsonify "^1.0.1" 959 | levn "^0.4.1" 960 | lodash.merge "^4.6.2" 961 | minimatch "^3.1.2" 962 | natural-compare "^1.4.0" 963 | optionator "^0.9.3" 964 | strip-ansi "^6.0.1" 965 | text-table "^0.2.0" 966 | 967 | espree@^9.6.0, espree@^9.6.1: 968 | version "9.6.1" 969 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" 970 | integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== 971 | dependencies: 972 | acorn "^8.9.0" 973 | acorn-jsx "^5.3.2" 974 | eslint-visitor-keys "^3.4.1" 975 | 976 | esquery@^1.4.2: 977 | version "1.5.0" 978 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" 979 | integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== 980 | dependencies: 981 | estraverse "^5.1.0" 982 | 983 | esrecurse@^4.3.0: 984 | version "4.3.0" 985 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 986 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 987 | dependencies: 988 | estraverse "^5.2.0" 989 | 990 | estraverse@^5.1.0, estraverse@^5.2.0: 991 | version "5.3.0" 992 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 993 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 994 | 995 | esutils@^2.0.2: 996 | version "2.0.3" 997 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 998 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 999 | 1000 | expand-template@^2.0.3: 1001 | version "2.0.3" 1002 | resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" 1003 | integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== 1004 | 1005 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 1006 | version "3.1.3" 1007 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 1008 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 1009 | 1010 | fast-diff@^1.1.2: 1011 | version "1.3.0" 1012 | resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.3.0.tgz#ece407fa550a64d638536cd727e129c61616e0f0" 1013 | integrity sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw== 1014 | 1015 | fast-glob@^3.2.9: 1016 | version "3.3.2" 1017 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" 1018 | integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== 1019 | dependencies: 1020 | "@nodelib/fs.stat" "^2.0.2" 1021 | "@nodelib/fs.walk" "^1.2.3" 1022 | glob-parent "^5.1.2" 1023 | merge2 "^1.3.0" 1024 | micromatch "^4.0.4" 1025 | 1026 | fast-json-stable-stringify@^2.0.0: 1027 | version "2.1.0" 1028 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1029 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1030 | 1031 | fast-levenshtein@^2.0.6: 1032 | version "2.0.6" 1033 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1034 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 1035 | 1036 | fastq@^1.6.0: 1037 | version "1.17.1" 1038 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" 1039 | integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== 1040 | dependencies: 1041 | reusify "^1.0.4" 1042 | 1043 | fd-slicer@~1.1.0: 1044 | version "1.1.0" 1045 | resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" 1046 | integrity sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g== 1047 | dependencies: 1048 | pend "~1.2.0" 1049 | 1050 | file-entry-cache@^6.0.1: 1051 | version "6.0.1" 1052 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 1053 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 1054 | dependencies: 1055 | flat-cache "^3.0.4" 1056 | 1057 | fill-range@^7.1.1: 1058 | version "7.1.1" 1059 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" 1060 | integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== 1061 | dependencies: 1062 | to-regex-range "^5.0.1" 1063 | 1064 | find-up@5.0.0, find-up@^5.0.0: 1065 | version "5.0.0" 1066 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 1067 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 1068 | dependencies: 1069 | locate-path "^6.0.0" 1070 | path-exists "^4.0.0" 1071 | 1072 | flat-cache@^3.0.4: 1073 | version "3.2.0" 1074 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee" 1075 | integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw== 1076 | dependencies: 1077 | flatted "^3.2.9" 1078 | keyv "^4.5.3" 1079 | rimraf "^3.0.2" 1080 | 1081 | flat@^5.0.2: 1082 | version "5.0.2" 1083 | resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" 1084 | integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== 1085 | 1086 | flatted@^3.2.9: 1087 | version "3.2.9" 1088 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.9.tgz#7eb4c67ca1ba34232ca9d2d93e9886e611ad7daf" 1089 | integrity sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ== 1090 | 1091 | foreground-child@^3.1.0: 1092 | version "3.1.1" 1093 | resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.1.1.tgz#1d173e776d75d2772fed08efe4a0de1ea1b12d0d" 1094 | integrity sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg== 1095 | dependencies: 1096 | cross-spawn "^7.0.0" 1097 | signal-exit "^4.0.1" 1098 | 1099 | fs-constants@^1.0.0: 1100 | version "1.0.0" 1101 | resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" 1102 | integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== 1103 | 1104 | fs.realpath@^1.0.0: 1105 | version "1.0.0" 1106 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1107 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 1108 | 1109 | fsevents@~2.3.2: 1110 | version "2.3.3" 1111 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" 1112 | integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== 1113 | 1114 | function-bind@^1.1.2: 1115 | version "1.1.2" 1116 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" 1117 | integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== 1118 | 1119 | get-caller-file@^2.0.5: 1120 | version "2.0.5" 1121 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1122 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1123 | 1124 | get-intrinsic@^1.1.3, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: 1125 | version "1.2.4" 1126 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" 1127 | integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== 1128 | dependencies: 1129 | es-errors "^1.3.0" 1130 | function-bind "^1.1.2" 1131 | has-proto "^1.0.1" 1132 | has-symbols "^1.0.3" 1133 | hasown "^2.0.0" 1134 | 1135 | github-from-package@0.0.0: 1136 | version "0.0.0" 1137 | resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" 1138 | integrity sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw== 1139 | 1140 | glob-parent@^5.1.2, glob-parent@~5.1.2: 1141 | version "5.1.2" 1142 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 1143 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1144 | dependencies: 1145 | is-glob "^4.0.1" 1146 | 1147 | glob-parent@^6.0.2: 1148 | version "6.0.2" 1149 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 1150 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 1151 | dependencies: 1152 | is-glob "^4.0.3" 1153 | 1154 | glob@7.2.0: 1155 | version "7.2.0" 1156 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" 1157 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== 1158 | dependencies: 1159 | fs.realpath "^1.0.0" 1160 | inflight "^1.0.4" 1161 | inherits "2" 1162 | minimatch "^3.0.4" 1163 | once "^1.3.0" 1164 | path-is-absolute "^1.0.0" 1165 | 1166 | glob@^10.3.10: 1167 | version "10.3.10" 1168 | resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.10.tgz#0351ebb809fd187fe421ab96af83d3a70715df4b" 1169 | integrity sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g== 1170 | dependencies: 1171 | foreground-child "^3.1.0" 1172 | jackspeak "^2.3.5" 1173 | minimatch "^9.0.1" 1174 | minipass "^5.0.0 || ^6.0.2 || ^7.0.0" 1175 | path-scurry "^1.10.1" 1176 | 1177 | glob@^7.0.6, glob@^7.1.3: 1178 | version "7.2.3" 1179 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 1180 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 1181 | dependencies: 1182 | fs.realpath "^1.0.0" 1183 | inflight "^1.0.4" 1184 | inherits "2" 1185 | minimatch "^3.1.1" 1186 | once "^1.3.0" 1187 | path-is-absolute "^1.0.0" 1188 | 1189 | globals@^13.19.0: 1190 | version "13.24.0" 1191 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz#8432a19d78ce0c1e833949c36adb345400bb1171" 1192 | integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ== 1193 | dependencies: 1194 | type-fest "^0.20.2" 1195 | 1196 | globby@^11.1.0: 1197 | version "11.1.0" 1198 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" 1199 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 1200 | dependencies: 1201 | array-union "^2.1.0" 1202 | dir-glob "^3.0.1" 1203 | fast-glob "^3.2.9" 1204 | ignore "^5.2.0" 1205 | merge2 "^1.4.1" 1206 | slash "^3.0.0" 1207 | 1208 | gopd@^1.0.1: 1209 | version "1.0.1" 1210 | resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" 1211 | integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== 1212 | dependencies: 1213 | get-intrinsic "^1.1.3" 1214 | 1215 | graphemer@^1.4.0: 1216 | version "1.4.0" 1217 | resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" 1218 | integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== 1219 | 1220 | has-flag@^3.0.0: 1221 | version "3.0.0" 1222 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1223 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== 1224 | 1225 | has-flag@^4.0.0: 1226 | version "4.0.0" 1227 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1228 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1229 | 1230 | has-property-descriptors@^1.0.1: 1231 | version "1.0.2" 1232 | resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" 1233 | integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== 1234 | dependencies: 1235 | es-define-property "^1.0.0" 1236 | 1237 | has-proto@^1.0.1: 1238 | version "1.0.1" 1239 | resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" 1240 | integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== 1241 | 1242 | has-symbols@^1.0.3: 1243 | version "1.0.3" 1244 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 1245 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1246 | 1247 | hasown@^2.0.0: 1248 | version "2.0.1" 1249 | resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.1.tgz#26f48f039de2c0f8d3356c223fb8d50253519faa" 1250 | integrity sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA== 1251 | dependencies: 1252 | function-bind "^1.1.2" 1253 | 1254 | he@1.2.0: 1255 | version "1.2.0" 1256 | resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" 1257 | integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== 1258 | 1259 | hosted-git-info@^4.0.2: 1260 | version "4.1.0" 1261 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" 1262 | integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== 1263 | dependencies: 1264 | lru-cache "^6.0.0" 1265 | 1266 | htmlparser2@^8.0.1: 1267 | version "8.0.2" 1268 | resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-8.0.2.tgz#f002151705b383e62433b5cf466f5b716edaec21" 1269 | integrity sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA== 1270 | dependencies: 1271 | domelementtype "^2.3.0" 1272 | domhandler "^5.0.3" 1273 | domutils "^3.0.1" 1274 | entities "^4.4.0" 1275 | 1276 | http-proxy-agent@^4.0.1: 1277 | version "4.0.1" 1278 | resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" 1279 | integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== 1280 | dependencies: 1281 | "@tootallnate/once" "1" 1282 | agent-base "6" 1283 | debug "4" 1284 | 1285 | https-proxy-agent@^5.0.0: 1286 | version "5.0.1" 1287 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" 1288 | integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== 1289 | dependencies: 1290 | agent-base "6" 1291 | debug "4" 1292 | 1293 | ieee754@^1.1.13: 1294 | version "1.2.1" 1295 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" 1296 | integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== 1297 | 1298 | ignore@^5.0.5, ignore@^5.2.0, ignore@^5.2.4: 1299 | version "5.3.1" 1300 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef" 1301 | integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw== 1302 | 1303 | immediate@~3.0.5: 1304 | version "3.0.6" 1305 | resolved "https://registry.yarnpkg.com/immediate/-/immediate-3.0.6.tgz#9db1dbd0faf8de6fbe0f5dd5e56bb606280de69b" 1306 | integrity sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ== 1307 | 1308 | import-fresh@^3.2.1: 1309 | version "3.3.0" 1310 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 1311 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1312 | dependencies: 1313 | parent-module "^1.0.0" 1314 | resolve-from "^4.0.0" 1315 | 1316 | imurmurhash@^0.1.4: 1317 | version "0.1.4" 1318 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1319 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1320 | 1321 | inflight@^1.0.4: 1322 | version "1.0.6" 1323 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1324 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1325 | dependencies: 1326 | once "^1.3.0" 1327 | wrappy "1" 1328 | 1329 | inherits@2, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3: 1330 | version "2.0.4" 1331 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1332 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1333 | 1334 | ini@~1.3.0: 1335 | version "1.3.8" 1336 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 1337 | integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 1338 | 1339 | is-binary-path@~2.1.0: 1340 | version "2.1.0" 1341 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 1342 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 1343 | dependencies: 1344 | binary-extensions "^2.0.0" 1345 | 1346 | is-extglob@^2.1.1: 1347 | version "2.1.1" 1348 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1349 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1350 | 1351 | is-fullwidth-code-point@^3.0.0: 1352 | version "3.0.0" 1353 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1354 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1355 | 1356 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: 1357 | version "4.0.3" 1358 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1359 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1360 | dependencies: 1361 | is-extglob "^2.1.1" 1362 | 1363 | is-number@^7.0.0: 1364 | version "7.0.0" 1365 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1366 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1367 | 1368 | is-path-inside@^3.0.3: 1369 | version "3.0.3" 1370 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 1371 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 1372 | 1373 | is-plain-obj@^2.1.0: 1374 | version "2.1.0" 1375 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" 1376 | integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== 1377 | 1378 | is-unicode-supported@^0.1.0: 1379 | version "0.1.0" 1380 | resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7" 1381 | integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== 1382 | 1383 | isarray@~1.0.0: 1384 | version "1.0.0" 1385 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1386 | integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ== 1387 | 1388 | isexe@^2.0.0: 1389 | version "2.0.0" 1390 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1391 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 1392 | 1393 | jackspeak@^2.3.5: 1394 | version "2.3.6" 1395 | resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.3.6.tgz#647ecc472238aee4b06ac0e461acc21a8c505ca8" 1396 | integrity sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ== 1397 | dependencies: 1398 | "@isaacs/cliui" "^8.0.2" 1399 | optionalDependencies: 1400 | "@pkgjs/parseargs" "^0.11.0" 1401 | 1402 | js-yaml@4.1.0, js-yaml@^4.1.0: 1403 | version "4.1.0" 1404 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 1405 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1406 | dependencies: 1407 | argparse "^2.0.1" 1408 | 1409 | json-buffer@3.0.1: 1410 | version "3.0.1" 1411 | resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" 1412 | integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== 1413 | 1414 | json-schema-traverse@^0.4.1: 1415 | version "0.4.1" 1416 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1417 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1418 | 1419 | json-stable-stringify-without-jsonify@^1.0.1: 1420 | version "1.0.1" 1421 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1422 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 1423 | 1424 | jsonc-parser@^3.2.0: 1425 | version "3.2.1" 1426 | resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.1.tgz#031904571ccf929d7670ee8c547545081cb37f1a" 1427 | integrity sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA== 1428 | 1429 | jszip@^3.10.1: 1430 | version "3.10.1" 1431 | resolved "https://registry.yarnpkg.com/jszip/-/jszip-3.10.1.tgz#34aee70eb18ea1faec2f589208a157d1feb091c2" 1432 | integrity sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g== 1433 | dependencies: 1434 | lie "~3.3.0" 1435 | pako "~1.0.2" 1436 | readable-stream "~2.3.6" 1437 | setimmediate "^1.0.5" 1438 | 1439 | keytar@^7.7.0: 1440 | version "7.9.0" 1441 | resolved "https://registry.yarnpkg.com/keytar/-/keytar-7.9.0.tgz#4c6225708f51b50cbf77c5aae81721964c2918cb" 1442 | integrity sha512-VPD8mtVtm5JNtA2AErl6Chp06JBfy7diFQ7TQQhdpWOl6MrCRB+eRbvAZUsbGQS9kiMq0coJsy0W0vHpDCkWsQ== 1443 | dependencies: 1444 | node-addon-api "^4.3.0" 1445 | prebuild-install "^7.0.1" 1446 | 1447 | keyv@^4.5.3: 1448 | version "4.5.4" 1449 | resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" 1450 | integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== 1451 | dependencies: 1452 | json-buffer "3.0.1" 1453 | 1454 | leven@^3.1.0: 1455 | version "3.1.0" 1456 | resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" 1457 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== 1458 | 1459 | levn@^0.4.1: 1460 | version "0.4.1" 1461 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1462 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1463 | dependencies: 1464 | prelude-ls "^1.2.1" 1465 | type-check "~0.4.0" 1466 | 1467 | lie@~3.3.0: 1468 | version "3.3.0" 1469 | resolved "https://registry.yarnpkg.com/lie/-/lie-3.3.0.tgz#dcf82dee545f46074daf200c7c1c5a08e0f40f6a" 1470 | integrity sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ== 1471 | dependencies: 1472 | immediate "~3.0.5" 1473 | 1474 | linkify-it@^3.0.1: 1475 | version "3.0.3" 1476 | resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-3.0.3.tgz#a98baf44ce45a550efb4d49c769d07524cc2fa2e" 1477 | integrity sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ== 1478 | dependencies: 1479 | uc.micro "^1.0.1" 1480 | 1481 | locate-path@^6.0.0: 1482 | version "6.0.0" 1483 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 1484 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1485 | dependencies: 1486 | p-locate "^5.0.0" 1487 | 1488 | lodash.merge@^4.6.2: 1489 | version "4.6.2" 1490 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 1491 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1492 | 1493 | log-symbols@4.1.0: 1494 | version "4.1.0" 1495 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503" 1496 | integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== 1497 | dependencies: 1498 | chalk "^4.1.0" 1499 | is-unicode-supported "^0.1.0" 1500 | 1501 | lru-cache@^6.0.0: 1502 | version "6.0.0" 1503 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1504 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1505 | dependencies: 1506 | yallist "^4.0.0" 1507 | 1508 | "lru-cache@^9.1.1 || ^10.0.0": 1509 | version "10.2.0" 1510 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.2.0.tgz#0bd445ca57363465900f4d1f9bd8db343a4d95c3" 1511 | integrity sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q== 1512 | 1513 | markdown-it@^12.3.2: 1514 | version "12.3.2" 1515 | resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-12.3.2.tgz#bf92ac92283fe983fe4de8ff8abfb5ad72cd0c90" 1516 | integrity sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg== 1517 | dependencies: 1518 | argparse "^2.0.1" 1519 | entities "~2.1.0" 1520 | linkify-it "^3.0.1" 1521 | mdurl "^1.0.1" 1522 | uc.micro "^1.0.5" 1523 | 1524 | mdurl@^1.0.1: 1525 | version "1.0.1" 1526 | resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" 1527 | integrity sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g== 1528 | 1529 | merge2@^1.3.0, merge2@^1.4.1: 1530 | version "1.4.1" 1531 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 1532 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1533 | 1534 | micromatch@^4.0.4: 1535 | version "4.0.8" 1536 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202" 1537 | integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA== 1538 | dependencies: 1539 | braces "^3.0.3" 1540 | picomatch "^2.3.1" 1541 | 1542 | mime@^1.3.4: 1543 | version "1.6.0" 1544 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 1545 | integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== 1546 | 1547 | mimic-response@^3.1.0: 1548 | version "3.1.0" 1549 | resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" 1550 | integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== 1551 | 1552 | minimatch@5.0.1: 1553 | version "5.0.1" 1554 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.0.1.tgz#fb9022f7528125187c92bd9e9b6366be1cf3415b" 1555 | integrity sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g== 1556 | dependencies: 1557 | brace-expansion "^2.0.1" 1558 | 1559 | minimatch@9.0.3, minimatch@^9.0.1, minimatch@^9.0.3: 1560 | version "9.0.3" 1561 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825" 1562 | integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== 1563 | dependencies: 1564 | brace-expansion "^2.0.1" 1565 | 1566 | minimatch@^3.0.3, minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: 1567 | version "3.1.2" 1568 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1569 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1570 | dependencies: 1571 | brace-expansion "^1.1.7" 1572 | 1573 | minimist@^1.2.0, minimist@^1.2.3: 1574 | version "1.2.8" 1575 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" 1576 | integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== 1577 | 1578 | "minipass@^5.0.0 || ^6.0.2 || ^7.0.0": 1579 | version "7.0.4" 1580 | resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.4.tgz#dbce03740f50a4786ba994c1fb908844d27b038c" 1581 | integrity sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ== 1582 | 1583 | mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3: 1584 | version "0.5.3" 1585 | resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" 1586 | integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== 1587 | 1588 | mocha@^10.2.0: 1589 | version "10.2.0" 1590 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-10.2.0.tgz#1fd4a7c32ba5ac372e03a17eef435bd00e5c68b8" 1591 | integrity sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg== 1592 | dependencies: 1593 | ansi-colors "4.1.1" 1594 | browser-stdout "1.3.1" 1595 | chokidar "3.5.3" 1596 | debug "4.3.4" 1597 | diff "5.0.0" 1598 | escape-string-regexp "4.0.0" 1599 | find-up "5.0.0" 1600 | glob "7.2.0" 1601 | he "1.2.0" 1602 | js-yaml "4.1.0" 1603 | log-symbols "4.1.0" 1604 | minimatch "5.0.1" 1605 | ms "2.1.3" 1606 | nanoid "3.3.3" 1607 | serialize-javascript "6.0.0" 1608 | strip-json-comments "3.1.1" 1609 | supports-color "8.1.1" 1610 | workerpool "6.2.1" 1611 | yargs "16.2.0" 1612 | yargs-parser "20.2.4" 1613 | yargs-unparser "2.0.0" 1614 | 1615 | ms@2.1.2: 1616 | version "2.1.2" 1617 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1618 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1619 | 1620 | ms@2.1.3: 1621 | version "2.1.3" 1622 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1623 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1624 | 1625 | mute-stream@~0.0.4: 1626 | version "0.0.8" 1627 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" 1628 | integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== 1629 | 1630 | nanoid@3.3.3: 1631 | version "3.3.3" 1632 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.3.tgz#fd8e8b7aa761fe807dba2d1b98fb7241bb724a25" 1633 | integrity sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w== 1634 | 1635 | napi-build-utils@^1.0.1: 1636 | version "1.0.2" 1637 | resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806" 1638 | integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg== 1639 | 1640 | natural-compare@^1.4.0: 1641 | version "1.4.0" 1642 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1643 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1644 | 1645 | node-abi@^3.3.0: 1646 | version "3.54.0" 1647 | resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.54.0.tgz#f6386f7548817acac6434c6cba02999c9aebcc69" 1648 | integrity sha512-p7eGEiQil0YUV3ItH4/tBb781L5impVmmx2E9FRKF7d18XXzp4PGT2tdYMFY6wQqgxD0IwNZOiSJ0/K0fSi/OA== 1649 | dependencies: 1650 | semver "^7.3.5" 1651 | 1652 | node-addon-api@^4.3.0: 1653 | version "4.3.0" 1654 | resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-4.3.0.tgz#52a1a0b475193e0928e98e0426a0d1254782b77f" 1655 | integrity sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ== 1656 | 1657 | normalize-path@^3.0.0, normalize-path@~3.0.0: 1658 | version "3.0.0" 1659 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1660 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1661 | 1662 | nth-check@^2.0.1: 1663 | version "2.1.1" 1664 | resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" 1665 | integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== 1666 | dependencies: 1667 | boolbase "^1.0.0" 1668 | 1669 | object-inspect@^1.13.1: 1670 | version "1.13.1" 1671 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2" 1672 | integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== 1673 | 1674 | once@^1.3.0, once@^1.3.1, once@^1.4.0: 1675 | version "1.4.0" 1676 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1677 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1678 | dependencies: 1679 | wrappy "1" 1680 | 1681 | optionator@^0.9.3: 1682 | version "0.9.3" 1683 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" 1684 | integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== 1685 | dependencies: 1686 | "@aashutoshrathi/word-wrap" "^1.2.3" 1687 | deep-is "^0.1.3" 1688 | fast-levenshtein "^2.0.6" 1689 | levn "^0.4.1" 1690 | prelude-ls "^1.2.1" 1691 | type-check "^0.4.0" 1692 | 1693 | p-limit@^3.0.2: 1694 | version "3.1.0" 1695 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1696 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1697 | dependencies: 1698 | yocto-queue "^0.1.0" 1699 | 1700 | p-locate@^5.0.0: 1701 | version "5.0.0" 1702 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 1703 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 1704 | dependencies: 1705 | p-limit "^3.0.2" 1706 | 1707 | pako@~1.0.2: 1708 | version "1.0.11" 1709 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf" 1710 | integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw== 1711 | 1712 | parent-module@^1.0.0: 1713 | version "1.0.1" 1714 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1715 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1716 | dependencies: 1717 | callsites "^3.0.0" 1718 | 1719 | parse-semver@^1.1.1: 1720 | version "1.1.1" 1721 | resolved "https://registry.yarnpkg.com/parse-semver/-/parse-semver-1.1.1.tgz#9a4afd6df063dc4826f93fba4a99cf223f666cb8" 1722 | integrity sha512-Eg1OuNntBMH0ojvEKSrvDSnwLmvVuUOSdylH/pSCPNMIspLlweJyIWXCE+k/5hm3cj/EBUYwmWkjhBALNP4LXQ== 1723 | dependencies: 1724 | semver "^5.1.0" 1725 | 1726 | parse5-htmlparser2-tree-adapter@^7.0.0: 1727 | version "7.0.0" 1728 | resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz#23c2cc233bcf09bb7beba8b8a69d46b08c62c2f1" 1729 | integrity sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g== 1730 | dependencies: 1731 | domhandler "^5.0.2" 1732 | parse5 "^7.0.0" 1733 | 1734 | parse5@^7.0.0: 1735 | version "7.1.2" 1736 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.1.2.tgz#0736bebbfd77793823240a23b7fc5e010b7f8e32" 1737 | integrity sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw== 1738 | dependencies: 1739 | entities "^4.4.0" 1740 | 1741 | path-exists@^4.0.0: 1742 | version "4.0.0" 1743 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1744 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1745 | 1746 | path-is-absolute@^1.0.0: 1747 | version "1.0.1" 1748 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1749 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1750 | 1751 | path-key@^3.1.0: 1752 | version "3.1.1" 1753 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1754 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1755 | 1756 | path-scurry@^1.10.1: 1757 | version "1.10.1" 1758 | resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.1.tgz#9ba6bf5aa8500fe9fd67df4f0d9483b2b0bfc698" 1759 | integrity sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ== 1760 | dependencies: 1761 | lru-cache "^9.1.1 || ^10.0.0" 1762 | minipass "^5.0.0 || ^6.0.2 || ^7.0.0" 1763 | 1764 | path-type@^4.0.0: 1765 | version "4.0.0" 1766 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 1767 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1768 | 1769 | pend@~1.2.0: 1770 | version "1.2.0" 1771 | resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" 1772 | integrity sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg== 1773 | 1774 | picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: 1775 | version "2.3.1" 1776 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1777 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1778 | 1779 | prebuild-install@^7.0.1: 1780 | version "7.1.1" 1781 | resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.1.tgz#de97d5b34a70a0c81334fd24641f2a1702352e45" 1782 | integrity sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw== 1783 | dependencies: 1784 | detect-libc "^2.0.0" 1785 | expand-template "^2.0.3" 1786 | github-from-package "0.0.0" 1787 | minimist "^1.2.3" 1788 | mkdirp-classic "^0.5.3" 1789 | napi-build-utils "^1.0.1" 1790 | node-abi "^3.3.0" 1791 | pump "^3.0.0" 1792 | rc "^1.2.7" 1793 | simple-get "^4.0.0" 1794 | tar-fs "^2.0.0" 1795 | tunnel-agent "^0.6.0" 1796 | 1797 | prelude-ls@^1.2.1: 1798 | version "1.2.1" 1799 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1800 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1801 | 1802 | prettier-linter-helpers@^1.0.0: 1803 | version "1.0.0" 1804 | resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" 1805 | integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== 1806 | dependencies: 1807 | fast-diff "^1.1.2" 1808 | 1809 | prettier@^3.1.0: 1810 | version "3.2.5" 1811 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.2.5.tgz#e52bc3090586e824964a8813b09aba6233b28368" 1812 | integrity sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A== 1813 | 1814 | process-nextick-args@~2.0.0: 1815 | version "2.0.1" 1816 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" 1817 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== 1818 | 1819 | pump@^3.0.0: 1820 | version "3.0.0" 1821 | resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" 1822 | integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== 1823 | dependencies: 1824 | end-of-stream "^1.1.0" 1825 | once "^1.3.1" 1826 | 1827 | punycode@^2.1.0: 1828 | version "2.3.1" 1829 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" 1830 | integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== 1831 | 1832 | qs@^6.9.1: 1833 | version "6.11.2" 1834 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" 1835 | integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA== 1836 | dependencies: 1837 | side-channel "^1.0.4" 1838 | 1839 | queue-microtask@^1.2.2: 1840 | version "1.2.3" 1841 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1842 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1843 | 1844 | randombytes@^2.1.0: 1845 | version "2.1.0" 1846 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" 1847 | integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== 1848 | dependencies: 1849 | safe-buffer "^5.1.0" 1850 | 1851 | rc@^1.2.7: 1852 | version "1.2.8" 1853 | resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" 1854 | integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== 1855 | dependencies: 1856 | deep-extend "^0.6.0" 1857 | ini "~1.3.0" 1858 | minimist "^1.2.0" 1859 | strip-json-comments "~2.0.1" 1860 | 1861 | read@^1.0.7: 1862 | version "1.0.7" 1863 | resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4" 1864 | integrity sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ== 1865 | dependencies: 1866 | mute-stream "~0.0.4" 1867 | 1868 | readable-stream@^3.1.1, readable-stream@^3.4.0: 1869 | version "3.6.2" 1870 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" 1871 | integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== 1872 | dependencies: 1873 | inherits "^2.0.3" 1874 | string_decoder "^1.1.1" 1875 | util-deprecate "^1.0.1" 1876 | 1877 | readable-stream@~2.3.6: 1878 | version "2.3.8" 1879 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" 1880 | integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== 1881 | dependencies: 1882 | core-util-is "~1.0.0" 1883 | inherits "~2.0.3" 1884 | isarray "~1.0.0" 1885 | process-nextick-args "~2.0.0" 1886 | safe-buffer "~5.1.1" 1887 | string_decoder "~1.1.1" 1888 | util-deprecate "~1.0.1" 1889 | 1890 | readdirp@~3.6.0: 1891 | version "3.6.0" 1892 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" 1893 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== 1894 | dependencies: 1895 | picomatch "^2.2.1" 1896 | 1897 | require-directory@^2.1.1: 1898 | version "2.1.1" 1899 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1900 | integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== 1901 | 1902 | resolve-from@^4.0.0: 1903 | version "4.0.0" 1904 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1905 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1906 | 1907 | reusify@^1.0.4: 1908 | version "1.0.4" 1909 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 1910 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1911 | 1912 | rimraf@^3.0.0, rimraf@^3.0.2: 1913 | version "3.0.2" 1914 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1915 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1916 | dependencies: 1917 | glob "^7.1.3" 1918 | 1919 | run-parallel@^1.1.9: 1920 | version "1.2.0" 1921 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 1922 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 1923 | dependencies: 1924 | queue-microtask "^1.2.2" 1925 | 1926 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@~5.2.0: 1927 | version "5.2.1" 1928 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 1929 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 1930 | 1931 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 1932 | version "5.1.2" 1933 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 1934 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 1935 | 1936 | sax@>=0.6.0: 1937 | version "1.3.0" 1938 | resolved "https://registry.yarnpkg.com/sax/-/sax-1.3.0.tgz#a5dbe77db3be05c9d1ee7785dbd3ea9de51593d0" 1939 | integrity sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA== 1940 | 1941 | semver@^5.1.0: 1942 | version "5.7.2" 1943 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" 1944 | integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== 1945 | 1946 | semver@^7.3.5, semver@^7.5.2, semver@^7.5.4: 1947 | version "7.6.0" 1948 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d" 1949 | integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg== 1950 | dependencies: 1951 | lru-cache "^6.0.0" 1952 | 1953 | serialize-javascript@6.0.0: 1954 | version "6.0.0" 1955 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8" 1956 | integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag== 1957 | dependencies: 1958 | randombytes "^2.1.0" 1959 | 1960 | set-function-length@^1.2.1: 1961 | version "1.2.1" 1962 | resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.1.tgz#47cc5945f2c771e2cf261c6737cf9684a2a5e425" 1963 | integrity sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g== 1964 | dependencies: 1965 | define-data-property "^1.1.2" 1966 | es-errors "^1.3.0" 1967 | function-bind "^1.1.2" 1968 | get-intrinsic "^1.2.3" 1969 | gopd "^1.0.1" 1970 | has-property-descriptors "^1.0.1" 1971 | 1972 | setimmediate@^1.0.5: 1973 | version "1.0.5" 1974 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" 1975 | integrity sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA== 1976 | 1977 | shebang-command@^2.0.0: 1978 | version "2.0.0" 1979 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1980 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1981 | dependencies: 1982 | shebang-regex "^3.0.0" 1983 | 1984 | shebang-regex@^3.0.0: 1985 | version "3.0.0" 1986 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1987 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1988 | 1989 | side-channel@^1.0.4: 1990 | version "1.0.5" 1991 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.5.tgz#9a84546599b48909fb6af1211708d23b1946221b" 1992 | integrity sha512-QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ== 1993 | dependencies: 1994 | call-bind "^1.0.6" 1995 | es-errors "^1.3.0" 1996 | get-intrinsic "^1.2.4" 1997 | object-inspect "^1.13.1" 1998 | 1999 | signal-exit@^4.0.1: 2000 | version "4.1.0" 2001 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" 2002 | integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== 2003 | 2004 | simple-concat@^1.0.0: 2005 | version "1.0.1" 2006 | resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" 2007 | integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== 2008 | 2009 | simple-get@^4.0.0: 2010 | version "4.0.1" 2011 | resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz#4a39db549287c979d352112fa03fd99fd6bc3543" 2012 | integrity sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA== 2013 | dependencies: 2014 | decompress-response "^6.0.0" 2015 | once "^1.3.1" 2016 | simple-concat "^1.0.0" 2017 | 2018 | slash@^3.0.0: 2019 | version "3.0.0" 2020 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 2021 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 2022 | 2023 | "string-width-cjs@npm:string-width@^4.2.0": 2024 | version "4.2.3" 2025 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 2026 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 2027 | dependencies: 2028 | emoji-regex "^8.0.0" 2029 | is-fullwidth-code-point "^3.0.0" 2030 | strip-ansi "^6.0.1" 2031 | 2032 | string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: 2033 | version "4.2.3" 2034 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 2035 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 2036 | dependencies: 2037 | emoji-regex "^8.0.0" 2038 | is-fullwidth-code-point "^3.0.0" 2039 | strip-ansi "^6.0.1" 2040 | 2041 | string-width@^5.0.1, string-width@^5.1.2: 2042 | version "5.1.2" 2043 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" 2044 | integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== 2045 | dependencies: 2046 | eastasianwidth "^0.2.0" 2047 | emoji-regex "^9.2.2" 2048 | strip-ansi "^7.0.1" 2049 | 2050 | string_decoder@^1.1.1: 2051 | version "1.3.0" 2052 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" 2053 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== 2054 | dependencies: 2055 | safe-buffer "~5.2.0" 2056 | 2057 | string_decoder@~1.1.1: 2058 | version "1.1.1" 2059 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" 2060 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== 2061 | dependencies: 2062 | safe-buffer "~5.1.0" 2063 | 2064 | "strip-ansi-cjs@npm:strip-ansi@^6.0.1": 2065 | version "6.0.1" 2066 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 2067 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 2068 | dependencies: 2069 | ansi-regex "^5.0.1" 2070 | 2071 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 2072 | version "6.0.1" 2073 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 2074 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 2075 | dependencies: 2076 | ansi-regex "^5.0.1" 2077 | 2078 | strip-ansi@^7.0.1: 2079 | version "7.1.0" 2080 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" 2081 | integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== 2082 | dependencies: 2083 | ansi-regex "^6.0.1" 2084 | 2085 | strip-json-comments@3.1.1, strip-json-comments@^3.1.1: 2086 | version "3.1.1" 2087 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 2088 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 2089 | 2090 | strip-json-comments@~2.0.1: 2091 | version "2.0.1" 2092 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2093 | integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== 2094 | 2095 | supports-color@8.1.1: 2096 | version "8.1.1" 2097 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" 2098 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== 2099 | dependencies: 2100 | has-flag "^4.0.0" 2101 | 2102 | supports-color@^5.3.0: 2103 | version "5.5.0" 2104 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2105 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2106 | dependencies: 2107 | has-flag "^3.0.0" 2108 | 2109 | supports-color@^7.1.0: 2110 | version "7.2.0" 2111 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 2112 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2113 | dependencies: 2114 | has-flag "^4.0.0" 2115 | 2116 | supports-color@^9.4.0: 2117 | version "9.4.0" 2118 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-9.4.0.tgz#17bfcf686288f531db3dea3215510621ccb55954" 2119 | integrity sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw== 2120 | 2121 | synckit@^0.8.6: 2122 | version "0.8.8" 2123 | resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.8.8.tgz#fe7fe446518e3d3d49f5e429f443cf08b6edfcd7" 2124 | integrity sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ== 2125 | dependencies: 2126 | "@pkgr/core" "^0.1.0" 2127 | tslib "^2.6.2" 2128 | 2129 | tar-fs@^2.0.0: 2130 | version "2.1.1" 2131 | resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" 2132 | integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== 2133 | dependencies: 2134 | chownr "^1.1.1" 2135 | mkdirp-classic "^0.5.2" 2136 | pump "^3.0.0" 2137 | tar-stream "^2.1.4" 2138 | 2139 | tar-stream@^2.1.4: 2140 | version "2.2.0" 2141 | resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" 2142 | integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== 2143 | dependencies: 2144 | bl "^4.0.3" 2145 | end-of-stream "^1.4.1" 2146 | fs-constants "^1.0.0" 2147 | inherits "^2.0.3" 2148 | readable-stream "^3.1.1" 2149 | 2150 | text-table@^0.2.0: 2151 | version "0.2.0" 2152 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2153 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 2154 | 2155 | tmp@^0.2.1: 2156 | version "0.2.1" 2157 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" 2158 | integrity sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ== 2159 | dependencies: 2160 | rimraf "^3.0.0" 2161 | 2162 | to-regex-range@^5.0.1: 2163 | version "5.0.1" 2164 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2165 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2166 | dependencies: 2167 | is-number "^7.0.0" 2168 | 2169 | ts-api-utils@^1.0.1: 2170 | version "1.2.1" 2171 | resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.2.1.tgz#f716c7e027494629485b21c0df6180f4d08f5e8b" 2172 | integrity sha512-RIYA36cJn2WiH9Hy77hdF9r7oEwxAtB/TS9/S4Qd90Ap4z5FSiin5zEiTL44OII1Y3IIlEvxwxFUVgrHSZ/UpA== 2173 | 2174 | tslib@^2.6.2: 2175 | version "2.6.2" 2176 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" 2177 | integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== 2178 | 2179 | tunnel-agent@^0.6.0: 2180 | version "0.6.0" 2181 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 2182 | integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== 2183 | dependencies: 2184 | safe-buffer "^5.0.1" 2185 | 2186 | tunnel@0.0.6: 2187 | version "0.0.6" 2188 | resolved "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.6.tgz#72f1314b34a5b192db012324df2cc587ca47f92c" 2189 | integrity sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg== 2190 | 2191 | type-check@^0.4.0, type-check@~0.4.0: 2192 | version "0.4.0" 2193 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 2194 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 2195 | dependencies: 2196 | prelude-ls "^1.2.1" 2197 | 2198 | type-fest@^0.20.2: 2199 | version "0.20.2" 2200 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 2201 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 2202 | 2203 | typed-rest-client@^1.8.4: 2204 | version "1.8.11" 2205 | resolved "https://registry.yarnpkg.com/typed-rest-client/-/typed-rest-client-1.8.11.tgz#6906f02e3c91e8d851579f255abf0fd60800a04d" 2206 | integrity sha512-5UvfMpd1oelmUPRbbaVnq+rHP7ng2cE4qoQkQeAqxRL6PklkxsM0g32/HL0yfvruK6ojQ5x8EE+HF4YV6DtuCA== 2207 | dependencies: 2208 | qs "^6.9.1" 2209 | tunnel "0.0.6" 2210 | underscore "^1.12.1" 2211 | 2212 | typescript@^5.2.2: 2213 | version "5.3.3" 2214 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.3.tgz#b3ce6ba258e72e6305ba66f5c9b452aaee3ffe37" 2215 | integrity sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw== 2216 | 2217 | uc.micro@^1.0.1, uc.micro@^1.0.5: 2218 | version "1.0.6" 2219 | resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac" 2220 | integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== 2221 | 2222 | underscore@^1.12.1: 2223 | version "1.13.6" 2224 | resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.13.6.tgz#04786a1f589dc6c09f761fc5f45b89e935136441" 2225 | integrity sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A== 2226 | 2227 | undici-types@~5.26.4: 2228 | version "5.26.5" 2229 | resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" 2230 | integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== 2231 | 2232 | uri-js@^4.2.2: 2233 | version "4.4.1" 2234 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 2235 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 2236 | dependencies: 2237 | punycode "^2.1.0" 2238 | 2239 | url-join@^4.0.1: 2240 | version "4.0.1" 2241 | resolved "https://registry.yarnpkg.com/url-join/-/url-join-4.0.1.tgz#b642e21a2646808ffa178c4c5fda39844e12cde7" 2242 | integrity sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA== 2243 | 2244 | util-deprecate@^1.0.1, util-deprecate@~1.0.1: 2245 | version "1.0.2" 2246 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2247 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== 2248 | 2249 | which@^2.0.1: 2250 | version "2.0.2" 2251 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2252 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2253 | dependencies: 2254 | isexe "^2.0.0" 2255 | 2256 | workerpool@6.2.1: 2257 | version "6.2.1" 2258 | resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.2.1.tgz#46fc150c17d826b86a008e5a4508656777e9c343" 2259 | integrity sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw== 2260 | 2261 | "wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": 2262 | version "7.0.0" 2263 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 2264 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 2265 | dependencies: 2266 | ansi-styles "^4.0.0" 2267 | string-width "^4.1.0" 2268 | strip-ansi "^6.0.0" 2269 | 2270 | wrap-ansi@^7.0.0: 2271 | version "7.0.0" 2272 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 2273 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 2274 | dependencies: 2275 | ansi-styles "^4.0.0" 2276 | string-width "^4.1.0" 2277 | strip-ansi "^6.0.0" 2278 | 2279 | wrap-ansi@^8.1.0: 2280 | version "8.1.0" 2281 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" 2282 | integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== 2283 | dependencies: 2284 | ansi-styles "^6.1.0" 2285 | string-width "^5.0.1" 2286 | strip-ansi "^7.0.1" 2287 | 2288 | wrappy@1: 2289 | version "1.0.2" 2290 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2291 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 2292 | 2293 | xml2js@^0.5.0: 2294 | version "0.5.0" 2295 | resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.5.0.tgz#d9440631fbb2ed800203fad106f2724f62c493b7" 2296 | integrity sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA== 2297 | dependencies: 2298 | sax ">=0.6.0" 2299 | xmlbuilder "~11.0.0" 2300 | 2301 | xmlbuilder@~11.0.0: 2302 | version "11.0.1" 2303 | resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3" 2304 | integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== 2305 | 2306 | y18n@^5.0.5: 2307 | version "5.0.8" 2308 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 2309 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 2310 | 2311 | yallist@^4.0.0: 2312 | version "4.0.0" 2313 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2314 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2315 | 2316 | yargs-parser@20.2.4: 2317 | version "20.2.4" 2318 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" 2319 | integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== 2320 | 2321 | yargs-parser@^20.2.2: 2322 | version "20.2.9" 2323 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" 2324 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== 2325 | 2326 | yargs-parser@^21.1.1: 2327 | version "21.1.1" 2328 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" 2329 | integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== 2330 | 2331 | yargs-unparser@2.0.0: 2332 | version "2.0.0" 2333 | resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb" 2334 | integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA== 2335 | dependencies: 2336 | camelcase "^6.0.0" 2337 | decamelize "^4.0.0" 2338 | flat "^5.0.2" 2339 | is-plain-obj "^2.1.0" 2340 | 2341 | yargs@16.2.0: 2342 | version "16.2.0" 2343 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" 2344 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 2345 | dependencies: 2346 | cliui "^7.0.2" 2347 | escalade "^3.1.1" 2348 | get-caller-file "^2.0.5" 2349 | require-directory "^2.1.1" 2350 | string-width "^4.2.0" 2351 | y18n "^5.0.5" 2352 | yargs-parser "^20.2.2" 2353 | 2354 | yargs@^17.7.2: 2355 | version "17.7.2" 2356 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" 2357 | integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== 2358 | dependencies: 2359 | cliui "^8.0.1" 2360 | escalade "^3.1.1" 2361 | get-caller-file "^2.0.5" 2362 | require-directory "^2.1.1" 2363 | string-width "^4.2.3" 2364 | y18n "^5.0.5" 2365 | yargs-parser "^21.1.1" 2366 | 2367 | yauzl@^2.3.1: 2368 | version "2.10.0" 2369 | resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" 2370 | integrity sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g== 2371 | dependencies: 2372 | buffer-crc32 "~0.2.3" 2373 | fd-slicer "~1.1.0" 2374 | 2375 | yazl@^2.2.2: 2376 | version "2.5.1" 2377 | resolved "https://registry.yarnpkg.com/yazl/-/yazl-2.5.1.tgz#a3d65d3dd659a5b0937850e8609f22fffa2b5c35" 2378 | integrity sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw== 2379 | dependencies: 2380 | buffer-crc32 "~0.2.3" 2381 | 2382 | yocto-queue@^0.1.0: 2383 | version "0.1.0" 2384 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 2385 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 2386 | --------------------------------------------------------------------------------