├── .eslintrc.js ├── .github ├── dependabot.yml └── workflows │ ├── add-to-project.yaml │ ├── ci.yaml │ ├── emergency-review-bypass.yaml │ ├── notify-approval-bypass.yaml │ └── pr-title.yaml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── LICENSE ├── Makefile ├── README.md ├── action.yml ├── dist ├── main.js └── main.js.map ├── examples ├── detect-and-push.yaml ├── detect-in-directory.yaml └── simple-change-detection.yaml ├── package-lock.json ├── package.json ├── src ├── buf.ts ├── error.ts ├── main.ts └── run.ts ├── static └── img │ └── breaking.png └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- 1 | // Copyright 2020-2025 Buf Technologies, Inc. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // http://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | const ignoreFiles = [".eslintrc.js", "dist/**/*"]; 16 | 17 | module.exports = { 18 | env: { 19 | es2022: true, 20 | }, 21 | ignorePatterns: ignoreFiles, 22 | extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"], 23 | parser: "@typescript-eslint/parser", 24 | parserOptions: { 25 | project: "tsconfig.json", 26 | tsconfigRootDir: __dirname, 27 | ecmaFeatures: { 28 | jsx: true, 29 | }, 30 | ecmaVersion: 12, 31 | sourceType: "module", 32 | }, 33 | plugins: ["@typescript-eslint"], 34 | rules: {}, 35 | }; 36 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "npm" 4 | directory: "/" 5 | schedule: 6 | interval: "monthly" 7 | -------------------------------------------------------------------------------- /.github/workflows/add-to-project.yaml: -------------------------------------------------------------------------------- 1 | name: Add issues and PRs to project 2 | 3 | on: 4 | issues: 5 | types: 6 | - opened 7 | - reopened 8 | - transferred 9 | pull_request_target: 10 | types: 11 | - opened 12 | - reopened 13 | issue_comment: 14 | types: 15 | - created 16 | 17 | jobs: 18 | call-workflow-add-to-project: 19 | name: Call workflow to add issue to project 20 | uses: bufbuild/base-workflows/.github/workflows/add-to-project.yaml@main 21 | secrets: inherit 22 | -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- 1 | name: ci 2 | on: 3 | push: 4 | branches: [main] 5 | pull_request: 6 | branches: [main] 7 | workflow_dispatch: {} # support manual runs 8 | # Prevent writing to the repository using the CI token. 9 | # Ref: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#permissions 10 | permissions: read-all 11 | jobs: 12 | ci: 13 | runs-on: ubuntu-latest 14 | steps: 15 | - name: Checkout Code 16 | uses: actions/checkout@v4 17 | with: 18 | fetch-depth: 1 19 | - name: Install Go 20 | uses: actions/setup-go@v5 21 | with: 22 | go-version: 1.22 23 | - name: Install Node 24 | uses: actions/setup-node@v4 25 | with: 26 | node-version: 20 27 | - name: Generate 28 | run: make generate && make checkgenerate 29 | - name: Build 30 | run: make build && make checkgenerate 31 | - name: Install Buf 32 | uses: bufbuild/buf-setup-action@v1 33 | - name: Setup Test 34 | run: | 35 | echo "version: v1" >> buf.yaml 36 | echo 'syntax = "proto3"; message A { string a = 1; }' >> test.proto 37 | - name: Validate Action 38 | uses: ./ 39 | with: 40 | against: . 41 | -------------------------------------------------------------------------------- /.github/workflows/emergency-review-bypass.yaml: -------------------------------------------------------------------------------- 1 | name: Bypass review in case of emergency 2 | on: 3 | pull_request: 4 | types: 5 | - labeled 6 | permissions: 7 | pull-requests: write 8 | jobs: 9 | approve: 10 | if: github.event.label.name == 'Emergency Bypass Review' 11 | uses: bufbuild/base-workflows/.github/workflows/emergency-review-bypass.yaml@main 12 | secrets: inherit 13 | -------------------------------------------------------------------------------- /.github/workflows/notify-approval-bypass.yaml: -------------------------------------------------------------------------------- 1 | name: PR Approval Bypass Notifier 2 | on: 3 | pull_request: 4 | types: 5 | - closed 6 | branches: 7 | - main 8 | permissions: 9 | pull-requests: read 10 | jobs: 11 | approval: 12 | uses: bufbuild/base-workflows/.github/workflows/notify-approval-bypass.yaml@main 13 | secrets: inherit 14 | -------------------------------------------------------------------------------- /.github/workflows/pr-title.yaml: -------------------------------------------------------------------------------- 1 | name: Lint PR Title 2 | # Prevent writing to the repository using the CI token. 3 | # Ref: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#permissions 4 | permissions: 5 | pull-requests: read 6 | on: 7 | pull_request: 8 | # By default, a workflow only runs when a pull_request's activity type is opened, 9 | # synchronize, or reopened. We explicity override here so that PR titles are 10 | # re-linted when the PR text content is edited. 11 | types: 12 | - opened 13 | - edited 14 | - reopened 15 | - synchronize 16 | jobs: 17 | lint: 18 | uses: bufbuild/base-workflows/.github/workflows/pr-title.yaml@main 19 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .tmp/ 3 | .vscode/ 4 | node_modules/ 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.11.1 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /dist 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright 2020-2025 Buf Technologies, Inc. 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | # See https://tech.davis-hansson.com/p/make/ 2 | SHELL := bash 3 | .DELETE_ON_ERROR: 4 | .SHELLFLAGS := -eu -o pipefail -c 5 | .DEFAULT_GOAL := all 6 | MAKEFLAGS += --warn-undefined-variables 7 | MAKEFLAGS += --no-builtin-rules 8 | MAKEFLAGS += --no-print-directory 9 | BIN := .tmp/bin 10 | COPYRIGHT_YEARS := 2020-2025 11 | LICENSE_IGNORE := -e dist\/ 12 | 13 | .PHONY: all 14 | all: ## Format, Lint and build (default) 15 | $(MAKE) build 16 | 17 | .PHONY: format 18 | format: node_modules 19 | npm run format 20 | 21 | .PHONY: lint 22 | lint: node_modules 23 | npm run lint 24 | 25 | .PHONY: build 26 | build: node_modules format lint 27 | npm run build 28 | 29 | .PHONY: generate 30 | generate: $(BIN)/license-header ## Regenerate licenses 31 | @# We want to operate on a list of modified and new files, excluding 32 | @# deleted and ignored files. git-ls-files can't do this alone. comm -23 takes 33 | @# two files and prints the union, dropping lines common to both (-3) and 34 | @# those only in the second file (-2). We make one git-ls-files call for 35 | @# the modified, cached, and new (--others) files, and a second for the 36 | @# deleted files. 37 | comm -23 \ 38 | <(git ls-files --cached --modified --others --no-empty-directory --exclude-standard | sort -u | grep -v $(LICENSE_IGNORE) ) \ 39 | <(git ls-files --deleted | sort -u) | \ 40 | xargs $(BIN)/license-header \ 41 | --license-type apache \ 42 | --copyright-holder "Buf Technologies, Inc." \ 43 | --year-range "$(COPYRIGHT_YEARS)" 44 | 45 | .PHONY: checkgenerate 46 | checkgenerate: 47 | @# Used in CI to verify that `make generate` doesn't produce a diff. 48 | test -z "$$(git status --porcelain | tee /dev/stderr)" 49 | 50 | node_modules: package-lock.json 51 | npm ci 52 | 53 | $(BIN)/license-header: Makefile 54 | @mkdir -p $(@D) 55 | GOBIN=$(abspath $(@D)) go install \ 56 | github.com/bufbuild/buf/private/pkg/licenseheader/cmd/license-header@v1.6.0 57 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # `buf-breaking-action` 2 | 3 | > [!NOTE] 4 | > This action has been deprecated in favor of the [`buf-action`][buf-action] which combines the 5 | > functionality of `buf-breaking-action` with the ability to run Buf commands in the same step. Please 6 | > see the [`buf-action`][buf-action] documentation for more information. 7 | 8 | This [Action][actions] enables you to run [breaking change detection][breaking] with 9 | [Buf] in your GitHub Actions pipelines. If it detects breaking changes in a pull request, it 10 | automatically creates inline comments under specific lines in your `.proto` files. 11 | 12 | ![image](./static/img/breaking.png) 13 | 14 | `buf-breaking-action` is also commonly used alongside other `buf` Actions, such as 15 | [`buf-lint`][buf-lint], which [lints][lint] Protobuf sources, and [`buf-push`][buf-push], 16 | which pushes Buf [modules] to the [Buf Schema Registry][bsr] (BSR). See [example 17 | configurations](#example-configurations) for more. 18 | 19 | ## Usage 20 | 21 | Here's an example usage of the `buf-breaking` Action: 22 | 23 | ```yaml 24 | on: pull_request # Apply to all pull requests 25 | jobs: 26 | validate-protos: 27 | steps: 28 | # Run `git checkout` 29 | - uses: actions/checkout@v2 30 | # Install the `buf` CLI 31 | - uses: bufbuild/buf-setup-action@v1 32 | # Run breaking change detection against the `main` branch 33 | - uses: bufbuild/buf-breaking-action@v1 34 | with: 35 | against: 'https://github.com/acme/weather.git#branch=main' 36 | ``` 37 | 38 | With this configuration, the `buf` CLI detects breaking changes between the Protobuf sources in the 39 | current branch against the `main` branch of the repository. 40 | 41 | ## Prerequisites 42 | 43 | For the `buf-breaking` Action to run, you need to install the `buf` CLI in the GitHub Actions Runner 44 | first. We recommend using the [`buf-setup`][buf-setup] Action to install it (as in the example 45 | [above](#usage)). 46 | 47 | ## Configuration 48 | 49 | You can configure `buf-breaking-action` with these parameters: 50 | 51 | Parameter | Description | Required | Default 52 | :---------|:------------|:---------|:------- 53 | `input` | The path of the [Buf input][input] you want to compare with `against` | | `.` 54 | `against` | The reference to check compatibility against | ✅ | 55 | `buf_input_https_username` | The username for the repository to check compatibility against. | | [`${{github.actor}}`][context] 56 | `buf_input_https_password` | The password for the repository to check compatibility against. | | [`${{github.token}}`][context] 57 | `buf_token` | The Buf [authentication token][token] used for private [inputs][input]. | | 58 | 59 | > These parameters are derived from [`action.yml`](./action.yml). 60 | 61 | ### Output 62 | 63 | | Parameter | Description | 64 | |-----------|-------------------------------------------------------------------| 65 | | `results` | The generated breaking change messages with the file annotations. | 66 | 67 | ### Constraints 68 | 69 | For the `buf-breaking-action` to detect changes successfully, both the `input` and the `against` 70 | need to be properly formed inputs, that is, `buf` needs to be able to [build][buf-build] both into 71 | a [Buf image][image]. You can verify this locally using the [`buf build`][buf-build] command on both inputs. 72 | Some examples: 73 | 74 | ```sh 75 | # Build the `main` branch 76 | buf build .git#branch=main 77 | 78 | # Build the v0.1.0 feature tag 79 | buf build .git#ref=v0.1.0 80 | 81 | # Build the Protobuf sources in a sub-directory 82 | buf build ./proto 83 | ``` 84 | 85 | ### Example configurations 86 | 87 | Example | Config file 88 | :-------|:----------- 89 | Simple breaking change detection | [`examples/simple-change-detection.yaml`](./examples/simple-change-detection.yaml) 90 | Detect breaking changes, then push | [`examples/detect-and-push.yaml`](./examples/detect-and-push.yaml) 91 | Detect breaking changes in a sub-directory | [`examples/detect-in-directory.yaml`](./examples/detect-in-directory.yaml) 92 | 93 | ## Common tasks 94 | 95 | ### Run on push 96 | 97 | A common Buf workflow in GitHub Actions is to push the Protobuf sources in the current branch to the 98 | [Buf Schema Registry][bsr] if no breaking changes are detected against the previous commit (where 99 | `ref` is `HEAD~1`). 100 | 101 | ```yaml 102 | on: # Apply to all pushes to `main` 103 | push: 104 | branches: 105 | - main 106 | jobs: 107 | validate-protos: 108 | steps: 109 | # Run `git checkout` 110 | - uses: actions/checkout@v2 111 | # Install the `buf` CLI 112 | - uses: bufbuild/buf-setup-action@v1 113 | # Run breaking change detection against the last commit 114 | - uses: bufbuild/buf-breaking-action@v1 115 | with: 116 | against: 'https://github.com/acme/weather.git#branch=main,ref=HEAD~1' 117 | ``` 118 | 119 | ### Run against input in sub-directory 120 | 121 | Some repositories are structured in such a way that their [`buf.yaml`][buf-yaml] is defined in a 122 | sub-directory alongside their Protobuf sources, such as a `proto/` directory. Here's an example: 123 | 124 | ```sh 125 | $ tree 126 | . 127 | └── proto 128 | ├── acme 129 | │   └── weather 130 | │   └── v1 131 | │   └── weather.proto 132 | └── buf.yaml 133 | ``` 134 | 135 | In that case, you can target the `proto` sub-directory by setting 136 | 137 | * `input` to `proto`, and 138 | * `subdir` to `proto` in the `against` reference. 139 | 140 | ```yaml 141 | steps: 142 | - uses: actions/checkout@v2 143 | - uses: bufbuild/buf-setup-action@v1 144 | # Run breaking change detection against the last commit 145 | - uses: bufbuild/buf-breaking-action@v1 146 | with: 147 | input: 'proto' 148 | against: 'https://github.com/acme/weather.git#branch=main,ref=HEAD~1,subdir=proto' 149 | ``` 150 | 151 | [actions]: https://docs.github.com/actions 152 | [buf-action]: https://github.com/bufbuild/buf-action 153 | [breaking]: https://docs.buf.build/breaking 154 | [bsr]: https://docs.buf.build/bsr 155 | [buf]: https://buf.build 156 | [buf-build]: https://docs.buf.build/build/usage 157 | [buf-lint]: https://github.com/marketplace/actions/buf-lint 158 | [buf-push]: https://github.com/marketplace/actions/buf-push 159 | [buf-setup]: https://github.com/marketplace/actions/buf-setup 160 | [buf-yaml]: https://docs.buf.build/configuration/v1/buf-yaml 161 | [context]: https://docs.github.com/en/actions/learn-github-actions/contexts#github-context 162 | [image]: https://docs.buf.build/reference/images 163 | [input]: https://docs.buf.build/reference/inputs 164 | [lint]: https://docs.buf.build/lint/usage 165 | [modules]: https://docs.buf.build/bsr/overview#module 166 | [token]: https://docs.buf.build/bsr/authentication#create-an-api-token 167 | -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- 1 | name: "buf-breaking" 2 | description: > 3 | Check that the Input location has no breaking changes compared to the "against" location. 4 | branding: 5 | icon: alert-triangle 6 | color: blue 7 | inputs: 8 | # For more on Buf Inputs: 9 | # https://docs.buf.build/inputs#specifying-an-input 10 | input: 11 | description: "The Input path. Defaults to the root of the current repository." 12 | required: false 13 | default: "." 14 | # For more on "against" in breaking change detection: 15 | # https://docs.buf.build/breaking/usage#run-breaking-change-detection 16 | against: 17 | description: "The Input to check compatibility against." 18 | required: true 19 | buf_input_https_username: 20 | description: "The username for the repository to check compatibility against." 21 | required: false 22 | default: ${{ github.actor }} 23 | buf_input_https_password: 24 | description: "The password for the repository to check compatibility against." 25 | required: false 26 | default: ${{ github.token }} 27 | buf_token: 28 | description: "The buf authentication token used for private inputs." 29 | required: false 30 | outputs: 31 | results: 32 | description: "The generated breaking change messages with the file annotations." 33 | runs: 34 | using: "node20" 35 | main: "./dist/main.js" 36 | -------------------------------------------------------------------------------- /examples/detect-and-push.yaml: -------------------------------------------------------------------------------- 1 | # Apply to all pushes to `main` 2 | on: 3 | push: 4 | branches: 5 | - main 6 | jobs: 7 | validate-protos: 8 | steps: 9 | # Run `git checkout` 10 | - uses: actions/checkout@v2 11 | # Install the `buf` CLI 12 | - uses: bufbuild/buf-setup-action@v0.5.0 13 | # Perform breaking change detection against the last commit 14 | - uses: bufbuild/buf-breaking-action@v1 15 | with: 16 | against: 'https://github.com/acme/weather.git#branch=main,ref=HEAD~1' 17 | # Push the changes to the Buf Schema Registry if breaking change detection succeeds 18 | - uses: bufbuild/buf-push-action@v1 19 | with: 20 | buf_token: ${{ secrets.BUF_TOKEN }} 21 | -------------------------------------------------------------------------------- /examples/detect-in-directory.yaml: -------------------------------------------------------------------------------- 1 | # Apply to all pull requests 2 | on: pull_request 3 | jobs: 4 | validate-protos: 5 | steps: 6 | # Run `git checkout` 7 | - uses: actions/checkout@v2 8 | # Install the `buf` CLI 9 | - uses: bufbuild/buf-setup-action@v0.5.0 10 | # Perform breaking change detection against the `proto` directory in the `main` branch 11 | - uses: bufbuild/buf-breaking-action@v1 12 | with: 13 | input: 'proto' 14 | against: 'https://github.com/acme/weather.git#branch=main,ref=HEAD~1,subdir=proto' 15 | -------------------------------------------------------------------------------- /examples/simple-change-detection.yaml: -------------------------------------------------------------------------------- 1 | # Apply to all pull requests 2 | on: pull_request 3 | jobs: 4 | validate-protos: 5 | steps: 6 | # Run `git checkout` 7 | - uses: actions/checkout@v2 8 | # Install the `buf` CLI 9 | - uses: bufbuild/buf-setup-action@v0.5.0 10 | # Perform breaking change detection against the `main` branch 11 | - uses: bufbuild/buf-breaking-action@v1 12 | with: 13 | against: "https://github.com/acme/weather.git#branch=main" 14 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "buf-breaking", 3 | "version": "1.0.0", 4 | "lockfileVersion": 2, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "buf-breaking", 9 | "version": "1.0.0", 10 | "dependencies": { 11 | "@actions/core": "^1.10.1", 12 | "@actions/github": "^6.0.0", 13 | "@actions/io": "^1.1.3" 14 | }, 15 | "devDependencies": { 16 | "@types/node": "^20.11.19", 17 | "@types/semver": "^7.5.7", 18 | "@typescript-eslint/eslint-plugin": "^7.0.1", 19 | "@typescript-eslint/parser": "^7.0.1", 20 | "esbuild": "^0.20.1", 21 | "prettier": "^3.2.5", 22 | "typescript": "^5.3.3" 23 | }, 24 | "engines": { 25 | "node": ">=20", 26 | "npm": ">=8" 27 | } 28 | }, 29 | "node_modules/@aashutoshrathi/word-wrap": { 30 | "version": "1.2.6", 31 | "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", 32 | "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", 33 | "dev": true, 34 | "peer": true, 35 | "engines": { 36 | "node": ">=0.10.0" 37 | } 38 | }, 39 | "node_modules/@actions/core": { 40 | "version": "1.10.1", 41 | "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.10.1.tgz", 42 | "integrity": "sha512-3lBR9EDAY+iYIpTnTIXmWcNbX3T2kCkAEQGIQx4NVQ0575nk2k3GRZDTPQG+vVtS2izSLmINlxXf0uLtnrTP+g==", 43 | "dependencies": { 44 | "@actions/http-client": "^2.0.1", 45 | "uuid": "^8.3.2" 46 | } 47 | }, 48 | "node_modules/@actions/github": { 49 | "version": "6.0.0", 50 | "resolved": "https://registry.npmjs.org/@actions/github/-/github-6.0.0.tgz", 51 | "integrity": "sha512-alScpSVnYmjNEXboZjarjukQEzgCRmjMv6Xj47fsdnqGS73bjJNDpiiXmp8jr0UZLdUB6d9jW63IcmddUP+l0g==", 52 | "dependencies": { 53 | "@actions/http-client": "^2.2.0", 54 | "@octokit/core": "^5.0.1", 55 | "@octokit/plugin-paginate-rest": "^9.0.0", 56 | "@octokit/plugin-rest-endpoint-methods": "^10.0.0" 57 | } 58 | }, 59 | "node_modules/@actions/http-client": { 60 | "version": "2.2.0", 61 | "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-2.2.0.tgz", 62 | "integrity": "sha512-q+epW0trjVUUHboliPb4UF9g2msf+w61b32tAkFEwL/IwP0DQWgbCMM0Hbe3e3WXSKz5VcUXbzJQgy8Hkra/Lg==", 63 | "dependencies": { 64 | "tunnel": "^0.0.6", 65 | "undici": "^5.25.4" 66 | } 67 | }, 68 | "node_modules/@actions/io": { 69 | "version": "1.1.3", 70 | "resolved": "https://registry.npmjs.org/@actions/io/-/io-1.1.3.tgz", 71 | "integrity": "sha512-wi9JjgKLYS7U/z8PPbco+PvTb/nRWjeoFlJ1Qer83k/3C5PHQi28hiVdeE2kHXmIL99mQFawx8qt/JPjZilJ8Q==" 72 | }, 73 | "node_modules/@esbuild/aix-ppc64": { 74 | "version": "0.20.1", 75 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.1.tgz", 76 | "integrity": "sha512-m55cpeupQ2DbuRGQMMZDzbv9J9PgVelPjlcmM5kxHnrBdBx6REaEd7LamYV7Dm8N7rCyR/XwU6rVP8ploKtIkA==", 77 | "cpu": [ 78 | "ppc64" 79 | ], 80 | "dev": true, 81 | "optional": true, 82 | "os": [ 83 | "aix" 84 | ], 85 | "engines": { 86 | "node": ">=12" 87 | } 88 | }, 89 | "node_modules/@esbuild/android-arm": { 90 | "version": "0.20.1", 91 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.1.tgz", 92 | "integrity": "sha512-4j0+G27/2ZXGWR5okcJi7pQYhmkVgb4D7UKwxcqrjhvp5TKWx3cUjgB1CGj1mfdmJBQ9VnUGgUhign+FPF2Zgw==", 93 | "cpu": [ 94 | "arm" 95 | ], 96 | "dev": true, 97 | "optional": true, 98 | "os": [ 99 | "android" 100 | ], 101 | "engines": { 102 | "node": ">=12" 103 | } 104 | }, 105 | "node_modules/@esbuild/android-arm64": { 106 | "version": "0.20.1", 107 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.1.tgz", 108 | "integrity": "sha512-hCnXNF0HM6AjowP+Zou0ZJMWWa1VkD77BXe959zERgGJBBxB+sV+J9f/rcjeg2c5bsukD/n17RKWXGFCO5dD5A==", 109 | "cpu": [ 110 | "arm64" 111 | ], 112 | "dev": true, 113 | "optional": true, 114 | "os": [ 115 | "android" 116 | ], 117 | "engines": { 118 | "node": ">=12" 119 | } 120 | }, 121 | "node_modules/@esbuild/android-x64": { 122 | "version": "0.20.1", 123 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.1.tgz", 124 | "integrity": "sha512-MSfZMBoAsnhpS+2yMFYIQUPs8Z19ajwfuaSZx+tSl09xrHZCjbeXXMsUF/0oq7ojxYEpsSo4c0SfjxOYXRbpaA==", 125 | "cpu": [ 126 | "x64" 127 | ], 128 | "dev": true, 129 | "optional": true, 130 | "os": [ 131 | "android" 132 | ], 133 | "engines": { 134 | "node": ">=12" 135 | } 136 | }, 137 | "node_modules/@esbuild/darwin-arm64": { 138 | "version": "0.20.1", 139 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.1.tgz", 140 | "integrity": "sha512-Ylk6rzgMD8klUklGPzS414UQLa5NPXZD5tf8JmQU8GQrj6BrFA/Ic9tb2zRe1kOZyCbGl+e8VMbDRazCEBqPvA==", 141 | "cpu": [ 142 | "arm64" 143 | ], 144 | "dev": true, 145 | "optional": true, 146 | "os": [ 147 | "darwin" 148 | ], 149 | "engines": { 150 | "node": ">=12" 151 | } 152 | }, 153 | "node_modules/@esbuild/darwin-x64": { 154 | "version": "0.20.1", 155 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.1.tgz", 156 | "integrity": "sha512-pFIfj7U2w5sMp52wTY1XVOdoxw+GDwy9FsK3OFz4BpMAjvZVs0dT1VXs8aQm22nhwoIWUmIRaE+4xow8xfIDZA==", 157 | "cpu": [ 158 | "x64" 159 | ], 160 | "dev": true, 161 | "optional": true, 162 | "os": [ 163 | "darwin" 164 | ], 165 | "engines": { 166 | "node": ">=12" 167 | } 168 | }, 169 | "node_modules/@esbuild/freebsd-arm64": { 170 | "version": "0.20.1", 171 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.1.tgz", 172 | "integrity": "sha512-UyW1WZvHDuM4xDz0jWun4qtQFauNdXjXOtIy7SYdf7pbxSWWVlqhnR/T2TpX6LX5NI62spt0a3ldIIEkPM6RHw==", 173 | "cpu": [ 174 | "arm64" 175 | ], 176 | "dev": true, 177 | "optional": true, 178 | "os": [ 179 | "freebsd" 180 | ], 181 | "engines": { 182 | "node": ">=12" 183 | } 184 | }, 185 | "node_modules/@esbuild/freebsd-x64": { 186 | "version": "0.20.1", 187 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.1.tgz", 188 | "integrity": "sha512-itPwCw5C+Jh/c624vcDd9kRCCZVpzpQn8dtwoYIt2TJF3S9xJLiRohnnNrKwREvcZYx0n8sCSbvGH349XkcQeg==", 189 | "cpu": [ 190 | "x64" 191 | ], 192 | "dev": true, 193 | "optional": true, 194 | "os": [ 195 | "freebsd" 196 | ], 197 | "engines": { 198 | "node": ">=12" 199 | } 200 | }, 201 | "node_modules/@esbuild/linux-arm": { 202 | "version": "0.20.1", 203 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.1.tgz", 204 | "integrity": "sha512-LojC28v3+IhIbfQ+Vu4Ut5n3wKcgTu6POKIHN9Wpt0HnfgUGlBuyDDQR4jWZUZFyYLiz4RBBBmfU6sNfn6RhLw==", 205 | "cpu": [ 206 | "arm" 207 | ], 208 | "dev": true, 209 | "optional": true, 210 | "os": [ 211 | "linux" 212 | ], 213 | "engines": { 214 | "node": ">=12" 215 | } 216 | }, 217 | "node_modules/@esbuild/linux-arm64": { 218 | "version": "0.20.1", 219 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.1.tgz", 220 | "integrity": "sha512-cX8WdlF6Cnvw/DO9/X7XLH2J6CkBnz7Twjpk56cshk9sjYVcuh4sXQBy5bmTwzBjNVZze2yaV1vtcJS04LbN8w==", 221 | "cpu": [ 222 | "arm64" 223 | ], 224 | "dev": true, 225 | "optional": true, 226 | "os": [ 227 | "linux" 228 | ], 229 | "engines": { 230 | "node": ">=12" 231 | } 232 | }, 233 | "node_modules/@esbuild/linux-ia32": { 234 | "version": "0.20.1", 235 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.1.tgz", 236 | "integrity": "sha512-4H/sQCy1mnnGkUt/xszaLlYJVTz3W9ep52xEefGtd6yXDQbz/5fZE5dFLUgsPdbUOQANcVUa5iO6g3nyy5BJiw==", 237 | "cpu": [ 238 | "ia32" 239 | ], 240 | "dev": true, 241 | "optional": true, 242 | "os": [ 243 | "linux" 244 | ], 245 | "engines": { 246 | "node": ">=12" 247 | } 248 | }, 249 | "node_modules/@esbuild/linux-loong64": { 250 | "version": "0.20.1", 251 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.1.tgz", 252 | "integrity": "sha512-c0jgtB+sRHCciVXlyjDcWb2FUuzlGVRwGXgI+3WqKOIuoo8AmZAddzeOHeYLtD+dmtHw3B4Xo9wAUdjlfW5yYA==", 253 | "cpu": [ 254 | "loong64" 255 | ], 256 | "dev": true, 257 | "optional": true, 258 | "os": [ 259 | "linux" 260 | ], 261 | "engines": { 262 | "node": ">=12" 263 | } 264 | }, 265 | "node_modules/@esbuild/linux-mips64el": { 266 | "version": "0.20.1", 267 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.1.tgz", 268 | "integrity": "sha512-TgFyCfIxSujyuqdZKDZ3yTwWiGv+KnlOeXXitCQ+trDODJ+ZtGOzLkSWngynP0HZnTsDyBbPy7GWVXWaEl6lhA==", 269 | "cpu": [ 270 | "mips64el" 271 | ], 272 | "dev": true, 273 | "optional": true, 274 | "os": [ 275 | "linux" 276 | ], 277 | "engines": { 278 | "node": ">=12" 279 | } 280 | }, 281 | "node_modules/@esbuild/linux-ppc64": { 282 | "version": "0.20.1", 283 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.1.tgz", 284 | "integrity": "sha512-b+yuD1IUeL+Y93PmFZDZFIElwbmFfIKLKlYI8M6tRyzE6u7oEP7onGk0vZRh8wfVGC2dZoy0EqX1V8qok4qHaw==", 285 | "cpu": [ 286 | "ppc64" 287 | ], 288 | "dev": true, 289 | "optional": true, 290 | "os": [ 291 | "linux" 292 | ], 293 | "engines": { 294 | "node": ">=12" 295 | } 296 | }, 297 | "node_modules/@esbuild/linux-riscv64": { 298 | "version": "0.20.1", 299 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.1.tgz", 300 | "integrity": "sha512-wpDlpE0oRKZwX+GfomcALcouqjjV8MIX8DyTrxfyCfXxoKQSDm45CZr9fanJ4F6ckD4yDEPT98SrjvLwIqUCgg==", 301 | "cpu": [ 302 | "riscv64" 303 | ], 304 | "dev": true, 305 | "optional": true, 306 | "os": [ 307 | "linux" 308 | ], 309 | "engines": { 310 | "node": ">=12" 311 | } 312 | }, 313 | "node_modules/@esbuild/linux-s390x": { 314 | "version": "0.20.1", 315 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.1.tgz", 316 | "integrity": "sha512-5BepC2Au80EohQ2dBpyTquqGCES7++p7G+7lXe1bAIvMdXm4YYcEfZtQrP4gaoZ96Wv1Ute61CEHFU7h4FMueQ==", 317 | "cpu": [ 318 | "s390x" 319 | ], 320 | "dev": true, 321 | "optional": true, 322 | "os": [ 323 | "linux" 324 | ], 325 | "engines": { 326 | "node": ">=12" 327 | } 328 | }, 329 | "node_modules/@esbuild/linux-x64": { 330 | "version": "0.20.1", 331 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.1.tgz", 332 | "integrity": "sha512-5gRPk7pKuaIB+tmH+yKd2aQTRpqlf1E4f/mC+tawIm/CGJemZcHZpp2ic8oD83nKgUPMEd0fNanrnFljiruuyA==", 333 | "cpu": [ 334 | "x64" 335 | ], 336 | "dev": true, 337 | "optional": true, 338 | "os": [ 339 | "linux" 340 | ], 341 | "engines": { 342 | "node": ">=12" 343 | } 344 | }, 345 | "node_modules/@esbuild/netbsd-x64": { 346 | "version": "0.20.1", 347 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.1.tgz", 348 | "integrity": "sha512-4fL68JdrLV2nVW2AaWZBv3XEm3Ae3NZn/7qy2KGAt3dexAgSVT+Hc97JKSZnqezgMlv9x6KV0ZkZY7UO5cNLCg==", 349 | "cpu": [ 350 | "x64" 351 | ], 352 | "dev": true, 353 | "optional": true, 354 | "os": [ 355 | "netbsd" 356 | ], 357 | "engines": { 358 | "node": ">=12" 359 | } 360 | }, 361 | "node_modules/@esbuild/openbsd-x64": { 362 | "version": "0.20.1", 363 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.1.tgz", 364 | "integrity": "sha512-GhRuXlvRE+twf2ES+8REbeCb/zeikNqwD3+6S5y5/x+DYbAQUNl0HNBs4RQJqrechS4v4MruEr8ZtAin/hK5iw==", 365 | "cpu": [ 366 | "x64" 367 | ], 368 | "dev": true, 369 | "optional": true, 370 | "os": [ 371 | "openbsd" 372 | ], 373 | "engines": { 374 | "node": ">=12" 375 | } 376 | }, 377 | "node_modules/@esbuild/sunos-x64": { 378 | "version": "0.20.1", 379 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.1.tgz", 380 | "integrity": "sha512-ZnWEyCM0G1Ex6JtsygvC3KUUrlDXqOihw8RicRuQAzw+c4f1D66YlPNNV3rkjVW90zXVsHwZYWbJh3v+oQFM9Q==", 381 | "cpu": [ 382 | "x64" 383 | ], 384 | "dev": true, 385 | "optional": true, 386 | "os": [ 387 | "sunos" 388 | ], 389 | "engines": { 390 | "node": ">=12" 391 | } 392 | }, 393 | "node_modules/@esbuild/win32-arm64": { 394 | "version": "0.20.1", 395 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.1.tgz", 396 | "integrity": "sha512-QZ6gXue0vVQY2Oon9WyLFCdSuYbXSoxaZrPuJ4c20j6ICedfsDilNPYfHLlMH7vGfU5DQR0czHLmJvH4Nzis/A==", 397 | "cpu": [ 398 | "arm64" 399 | ], 400 | "dev": true, 401 | "optional": true, 402 | "os": [ 403 | "win32" 404 | ], 405 | "engines": { 406 | "node": ">=12" 407 | } 408 | }, 409 | "node_modules/@esbuild/win32-ia32": { 410 | "version": "0.20.1", 411 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.1.tgz", 412 | "integrity": "sha512-HzcJa1NcSWTAU0MJIxOho8JftNp9YALui3o+Ny7hCh0v5f90nprly1U3Sj1Ldj/CvKKdvvFsCRvDkpsEMp4DNw==", 413 | "cpu": [ 414 | "ia32" 415 | ], 416 | "dev": true, 417 | "optional": true, 418 | "os": [ 419 | "win32" 420 | ], 421 | "engines": { 422 | "node": ">=12" 423 | } 424 | }, 425 | "node_modules/@esbuild/win32-x64": { 426 | "version": "0.20.1", 427 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.1.tgz", 428 | "integrity": "sha512-0MBh53o6XtI6ctDnRMeQ+xoCN8kD2qI1rY1KgF/xdWQwoFeKou7puvDfV8/Wv4Ctx2rRpET/gGdz3YlNtNACSA==", 429 | "cpu": [ 430 | "x64" 431 | ], 432 | "dev": true, 433 | "optional": true, 434 | "os": [ 435 | "win32" 436 | ], 437 | "engines": { 438 | "node": ">=12" 439 | } 440 | }, 441 | "node_modules/@eslint-community/eslint-utils": { 442 | "version": "4.4.0", 443 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 444 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 445 | "dev": true, 446 | "dependencies": { 447 | "eslint-visitor-keys": "^3.3.0" 448 | }, 449 | "engines": { 450 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 451 | }, 452 | "peerDependencies": { 453 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 454 | } 455 | }, 456 | "node_modules/@eslint-community/regexpp": { 457 | "version": "4.10.0", 458 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", 459 | "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", 460 | "dev": true, 461 | "engines": { 462 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 463 | } 464 | }, 465 | "node_modules/@eslint/eslintrc": { 466 | "version": "2.1.4", 467 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", 468 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", 469 | "dev": true, 470 | "peer": true, 471 | "dependencies": { 472 | "ajv": "^6.12.4", 473 | "debug": "^4.3.2", 474 | "espree": "^9.6.0", 475 | "globals": "^13.19.0", 476 | "ignore": "^5.2.0", 477 | "import-fresh": "^3.2.1", 478 | "js-yaml": "^4.1.0", 479 | "minimatch": "^3.1.2", 480 | "strip-json-comments": "^3.1.1" 481 | }, 482 | "engines": { 483 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 484 | }, 485 | "funding": { 486 | "url": "https://opencollective.com/eslint" 487 | } 488 | }, 489 | "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { 490 | "version": "1.1.11", 491 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 492 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 493 | "dev": true, 494 | "peer": true, 495 | "dependencies": { 496 | "balanced-match": "^1.0.0", 497 | "concat-map": "0.0.1" 498 | } 499 | }, 500 | "node_modules/@eslint/eslintrc/node_modules/minimatch": { 501 | "version": "3.1.2", 502 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 503 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 504 | "dev": true, 505 | "peer": true, 506 | "dependencies": { 507 | "brace-expansion": "^1.1.7" 508 | }, 509 | "engines": { 510 | "node": "*" 511 | } 512 | }, 513 | "node_modules/@eslint/js": { 514 | "version": "8.56.0", 515 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", 516 | "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", 517 | "dev": true, 518 | "peer": true, 519 | "engines": { 520 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 521 | } 522 | }, 523 | "node_modules/@fastify/busboy": { 524 | "version": "2.1.0", 525 | "resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.0.tgz", 526 | "integrity": "sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==", 527 | "engines": { 528 | "node": ">=14" 529 | } 530 | }, 531 | "node_modules/@humanwhocodes/config-array": { 532 | "version": "0.11.14", 533 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", 534 | "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", 535 | "dev": true, 536 | "peer": true, 537 | "dependencies": { 538 | "@humanwhocodes/object-schema": "^2.0.2", 539 | "debug": "^4.3.1", 540 | "minimatch": "^3.0.5" 541 | }, 542 | "engines": { 543 | "node": ">=10.10.0" 544 | } 545 | }, 546 | "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { 547 | "version": "1.1.11", 548 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 549 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 550 | "dev": true, 551 | "peer": true, 552 | "dependencies": { 553 | "balanced-match": "^1.0.0", 554 | "concat-map": "0.0.1" 555 | } 556 | }, 557 | "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { 558 | "version": "3.1.2", 559 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 560 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 561 | "dev": true, 562 | "peer": true, 563 | "dependencies": { 564 | "brace-expansion": "^1.1.7" 565 | }, 566 | "engines": { 567 | "node": "*" 568 | } 569 | }, 570 | "node_modules/@humanwhocodes/module-importer": { 571 | "version": "1.0.1", 572 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 573 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 574 | "dev": true, 575 | "peer": true, 576 | "engines": { 577 | "node": ">=12.22" 578 | }, 579 | "funding": { 580 | "type": "github", 581 | "url": "https://github.com/sponsors/nzakas" 582 | } 583 | }, 584 | "node_modules/@humanwhocodes/object-schema": { 585 | "version": "2.0.2", 586 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", 587 | "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", 588 | "dev": true, 589 | "peer": true 590 | }, 591 | "node_modules/@nodelib/fs.scandir": { 592 | "version": "2.1.5", 593 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 594 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 595 | "dev": true, 596 | "dependencies": { 597 | "@nodelib/fs.stat": "2.0.5", 598 | "run-parallel": "^1.1.9" 599 | }, 600 | "engines": { 601 | "node": ">= 8" 602 | } 603 | }, 604 | "node_modules/@nodelib/fs.stat": { 605 | "version": "2.0.5", 606 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 607 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 608 | "dev": true, 609 | "engines": { 610 | "node": ">= 8" 611 | } 612 | }, 613 | "node_modules/@nodelib/fs.walk": { 614 | "version": "1.2.8", 615 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 616 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 617 | "dev": true, 618 | "dependencies": { 619 | "@nodelib/fs.scandir": "2.1.5", 620 | "fastq": "^1.6.0" 621 | }, 622 | "engines": { 623 | "node": ">= 8" 624 | } 625 | }, 626 | "node_modules/@octokit/auth-token": { 627 | "version": "4.0.0", 628 | "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-4.0.0.tgz", 629 | "integrity": "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==", 630 | "engines": { 631 | "node": ">= 18" 632 | } 633 | }, 634 | "node_modules/@octokit/core": { 635 | "version": "5.1.0", 636 | "resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.1.0.tgz", 637 | "integrity": "sha512-BDa2VAMLSh3otEiaMJ/3Y36GU4qf6GI+VivQ/P41NC6GHcdxpKlqV0ikSZ5gdQsmS3ojXeRx5vasgNTinF0Q4g==", 638 | "dependencies": { 639 | "@octokit/auth-token": "^4.0.0", 640 | "@octokit/graphql": "^7.0.0", 641 | "@octokit/request": "^8.0.2", 642 | "@octokit/request-error": "^5.0.0", 643 | "@octokit/types": "^12.0.0", 644 | "before-after-hook": "^2.2.0", 645 | "universal-user-agent": "^6.0.0" 646 | }, 647 | "engines": { 648 | "node": ">= 18" 649 | } 650 | }, 651 | "node_modules/@octokit/endpoint": { 652 | "version": "9.0.4", 653 | "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.4.tgz", 654 | "integrity": "sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==", 655 | "dependencies": { 656 | "@octokit/types": "^12.0.0", 657 | "universal-user-agent": "^6.0.0" 658 | }, 659 | "engines": { 660 | "node": ">= 18" 661 | } 662 | }, 663 | "node_modules/@octokit/graphql": { 664 | "version": "7.0.2", 665 | "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-7.0.2.tgz", 666 | "integrity": "sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==", 667 | "dependencies": { 668 | "@octokit/request": "^8.0.1", 669 | "@octokit/types": "^12.0.0", 670 | "universal-user-agent": "^6.0.0" 671 | }, 672 | "engines": { 673 | "node": ">= 18" 674 | } 675 | }, 676 | "node_modules/@octokit/openapi-types": { 677 | "version": "19.1.0", 678 | "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-19.1.0.tgz", 679 | "integrity": "sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw==" 680 | }, 681 | "node_modules/@octokit/plugin-paginate-rest": { 682 | "version": "9.1.5", 683 | "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.1.5.tgz", 684 | "integrity": "sha512-WKTQXxK+bu49qzwv4qKbMMRXej1DU2gq017euWyKVudA6MldaSSQuxtz+vGbhxV4CjxpUxjZu6rM2wfc1FiWVg==", 685 | "dependencies": { 686 | "@octokit/types": "^12.4.0" 687 | }, 688 | "engines": { 689 | "node": ">= 18" 690 | }, 691 | "peerDependencies": { 692 | "@octokit/core": ">=5" 693 | } 694 | }, 695 | "node_modules/@octokit/plugin-rest-endpoint-methods": { 696 | "version": "10.3.0", 697 | "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-10.3.0.tgz", 698 | "integrity": "sha512-c/fjpoHispRvBZuRoTVt/uALg7pXa9RQbXWJiDMk6NDkGNomuAZG7YuYYpZoxeoXv+kVRjIDTsO0e1z0pei+PQ==", 699 | "dependencies": { 700 | "@octokit/types": "^12.4.0" 701 | }, 702 | "engines": { 703 | "node": ">= 18" 704 | }, 705 | "peerDependencies": { 706 | "@octokit/core": ">=5" 707 | } 708 | }, 709 | "node_modules/@octokit/request": { 710 | "version": "8.2.0", 711 | "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.2.0.tgz", 712 | "integrity": "sha512-exPif6x5uwLqv1N1irkLG1zZNJkOtj8bZxuVHd71U5Ftuxf2wGNvAJyNBcPbPC+EBzwYEbBDdSFb8EPcjpYxPQ==", 713 | "dependencies": { 714 | "@octokit/endpoint": "^9.0.0", 715 | "@octokit/request-error": "^5.0.0", 716 | "@octokit/types": "^12.0.0", 717 | "universal-user-agent": "^6.0.0" 718 | }, 719 | "engines": { 720 | "node": ">= 18" 721 | } 722 | }, 723 | "node_modules/@octokit/request-error": { 724 | "version": "5.0.1", 725 | "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-5.0.1.tgz", 726 | "integrity": "sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==", 727 | "dependencies": { 728 | "@octokit/types": "^12.0.0", 729 | "deprecation": "^2.0.0", 730 | "once": "^1.4.0" 731 | }, 732 | "engines": { 733 | "node": ">= 18" 734 | } 735 | }, 736 | "node_modules/@octokit/types": { 737 | "version": "12.5.0", 738 | "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.5.0.tgz", 739 | "integrity": "sha512-YJEKcb0KkJlIUNU/zjnZwHEP8AoVh/OoIcP/1IyR4UHxExz7fzpe/a8IG4wBtQi7QDEqiomVLX88S6FpxxAJtg==", 740 | "dependencies": { 741 | "@octokit/openapi-types": "^19.1.0" 742 | } 743 | }, 744 | "node_modules/@types/json-schema": { 745 | "version": "7.0.15", 746 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 747 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 748 | "dev": true 749 | }, 750 | "node_modules/@types/node": { 751 | "version": "20.11.19", 752 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.19.tgz", 753 | "integrity": "sha512-7xMnVEcZFu0DikYjWOlRq7NTPETrm7teqUT2WkQjrTIkEgUyyGdWsj/Zg8bEJt5TNklzbPD1X3fqfsHw3SpapQ==", 754 | "dev": true, 755 | "dependencies": { 756 | "undici-types": "~5.26.4" 757 | } 758 | }, 759 | "node_modules/@types/semver": { 760 | "version": "7.5.7", 761 | "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.7.tgz", 762 | "integrity": "sha512-/wdoPq1QqkSj9/QOeKkFquEuPzQbHTWAMPH/PaUMB+JuR31lXhlWXRZ52IpfDYVlDOUBvX09uBrPwxGT1hjNBg==", 763 | "dev": true 764 | }, 765 | "node_modules/@typescript-eslint/eslint-plugin": { 766 | "version": "7.0.2", 767 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.0.2.tgz", 768 | "integrity": "sha512-/XtVZJtbaphtdrWjr+CJclaCVGPtOdBpFEnvtNf/jRV0IiEemRrL0qABex/nEt8isYcnFacm3nPHYQwL+Wb7qg==", 769 | "dev": true, 770 | "dependencies": { 771 | "@eslint-community/regexpp": "^4.5.1", 772 | "@typescript-eslint/scope-manager": "7.0.2", 773 | "@typescript-eslint/type-utils": "7.0.2", 774 | "@typescript-eslint/utils": "7.0.2", 775 | "@typescript-eslint/visitor-keys": "7.0.2", 776 | "debug": "^4.3.4", 777 | "graphemer": "^1.4.0", 778 | "ignore": "^5.2.4", 779 | "natural-compare": "^1.4.0", 780 | "semver": "^7.5.4", 781 | "ts-api-utils": "^1.0.1" 782 | }, 783 | "engines": { 784 | "node": "^16.0.0 || >=18.0.0" 785 | }, 786 | "funding": { 787 | "type": "opencollective", 788 | "url": "https://opencollective.com/typescript-eslint" 789 | }, 790 | "peerDependencies": { 791 | "@typescript-eslint/parser": "^7.0.0", 792 | "eslint": "^8.56.0" 793 | }, 794 | "peerDependenciesMeta": { 795 | "typescript": { 796 | "optional": true 797 | } 798 | } 799 | }, 800 | "node_modules/@typescript-eslint/parser": { 801 | "version": "7.0.2", 802 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.0.2.tgz", 803 | "integrity": "sha512-GdwfDglCxSmU+QTS9vhz2Sop46ebNCXpPPvsByK7hu0rFGRHL+AusKQJ7SoN+LbLh6APFpQwHKmDSwN35Z700Q==", 804 | "dev": true, 805 | "dependencies": { 806 | "@typescript-eslint/scope-manager": "7.0.2", 807 | "@typescript-eslint/types": "7.0.2", 808 | "@typescript-eslint/typescript-estree": "7.0.2", 809 | "@typescript-eslint/visitor-keys": "7.0.2", 810 | "debug": "^4.3.4" 811 | }, 812 | "engines": { 813 | "node": "^16.0.0 || >=18.0.0" 814 | }, 815 | "funding": { 816 | "type": "opencollective", 817 | "url": "https://opencollective.com/typescript-eslint" 818 | }, 819 | "peerDependencies": { 820 | "eslint": "^8.56.0" 821 | }, 822 | "peerDependenciesMeta": { 823 | "typescript": { 824 | "optional": true 825 | } 826 | } 827 | }, 828 | "node_modules/@typescript-eslint/scope-manager": { 829 | "version": "7.0.2", 830 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.0.2.tgz", 831 | "integrity": "sha512-l6sa2jF3h+qgN2qUMjVR3uCNGjWw4ahGfzIYsCtFrQJCjhbrDPdiihYT8FnnqFwsWX+20hK592yX9I2rxKTP4g==", 832 | "dev": true, 833 | "dependencies": { 834 | "@typescript-eslint/types": "7.0.2", 835 | "@typescript-eslint/visitor-keys": "7.0.2" 836 | }, 837 | "engines": { 838 | "node": "^16.0.0 || >=18.0.0" 839 | }, 840 | "funding": { 841 | "type": "opencollective", 842 | "url": "https://opencollective.com/typescript-eslint" 843 | } 844 | }, 845 | "node_modules/@typescript-eslint/type-utils": { 846 | "version": "7.0.2", 847 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.0.2.tgz", 848 | "integrity": "sha512-IKKDcFsKAYlk8Rs4wiFfEwJTQlHcdn8CLwLaxwd6zb8HNiMcQIFX9sWax2k4Cjj7l7mGS5N1zl7RCHOVwHq2VQ==", 849 | "dev": true, 850 | "dependencies": { 851 | "@typescript-eslint/typescript-estree": "7.0.2", 852 | "@typescript-eslint/utils": "7.0.2", 853 | "debug": "^4.3.4", 854 | "ts-api-utils": "^1.0.1" 855 | }, 856 | "engines": { 857 | "node": "^16.0.0 || >=18.0.0" 858 | }, 859 | "funding": { 860 | "type": "opencollective", 861 | "url": "https://opencollective.com/typescript-eslint" 862 | }, 863 | "peerDependencies": { 864 | "eslint": "^8.56.0" 865 | }, 866 | "peerDependenciesMeta": { 867 | "typescript": { 868 | "optional": true 869 | } 870 | } 871 | }, 872 | "node_modules/@typescript-eslint/types": { 873 | "version": "7.0.2", 874 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.0.2.tgz", 875 | "integrity": "sha512-ZzcCQHj4JaXFjdOql6adYV4B/oFOFjPOC9XYwCaZFRvqN8Llfvv4gSxrkQkd2u4Ci62i2c6W6gkDwQJDaRc4nA==", 876 | "dev": true, 877 | "engines": { 878 | "node": "^16.0.0 || >=18.0.0" 879 | }, 880 | "funding": { 881 | "type": "opencollective", 882 | "url": "https://opencollective.com/typescript-eslint" 883 | } 884 | }, 885 | "node_modules/@typescript-eslint/typescript-estree": { 886 | "version": "7.0.2", 887 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.0.2.tgz", 888 | "integrity": "sha512-3AMc8khTcELFWcKcPc0xiLviEvvfzATpdPj/DXuOGIdQIIFybf4DMT1vKRbuAEOFMwhWt7NFLXRkbjsvKZQyvw==", 889 | "dev": true, 890 | "dependencies": { 891 | "@typescript-eslint/types": "7.0.2", 892 | "@typescript-eslint/visitor-keys": "7.0.2", 893 | "debug": "^4.3.4", 894 | "globby": "^11.1.0", 895 | "is-glob": "^4.0.3", 896 | "minimatch": "9.0.3", 897 | "semver": "^7.5.4", 898 | "ts-api-utils": "^1.0.1" 899 | }, 900 | "engines": { 901 | "node": "^16.0.0 || >=18.0.0" 902 | }, 903 | "funding": { 904 | "type": "opencollective", 905 | "url": "https://opencollective.com/typescript-eslint" 906 | }, 907 | "peerDependenciesMeta": { 908 | "typescript": { 909 | "optional": true 910 | } 911 | } 912 | }, 913 | "node_modules/@typescript-eslint/utils": { 914 | "version": "7.0.2", 915 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.0.2.tgz", 916 | "integrity": "sha512-PZPIONBIB/X684bhT1XlrkjNZJIEevwkKDsdwfiu1WeqBxYEEdIgVDgm8/bbKHVu+6YOpeRqcfImTdImx/4Bsw==", 917 | "dev": true, 918 | "dependencies": { 919 | "@eslint-community/eslint-utils": "^4.4.0", 920 | "@types/json-schema": "^7.0.12", 921 | "@types/semver": "^7.5.0", 922 | "@typescript-eslint/scope-manager": "7.0.2", 923 | "@typescript-eslint/types": "7.0.2", 924 | "@typescript-eslint/typescript-estree": "7.0.2", 925 | "semver": "^7.5.4" 926 | }, 927 | "engines": { 928 | "node": "^16.0.0 || >=18.0.0" 929 | }, 930 | "funding": { 931 | "type": "opencollective", 932 | "url": "https://opencollective.com/typescript-eslint" 933 | }, 934 | "peerDependencies": { 935 | "eslint": "^8.56.0" 936 | } 937 | }, 938 | "node_modules/@typescript-eslint/visitor-keys": { 939 | "version": "7.0.2", 940 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.0.2.tgz", 941 | "integrity": "sha512-8Y+YiBmqPighbm5xA2k4wKTxRzx9EkBu7Rlw+WHqMvRJ3RPz/BMBO9b2ru0LUNmXg120PHUXD5+SWFy2R8DqlQ==", 942 | "dev": true, 943 | "dependencies": { 944 | "@typescript-eslint/types": "7.0.2", 945 | "eslint-visitor-keys": "^3.4.1" 946 | }, 947 | "engines": { 948 | "node": "^16.0.0 || >=18.0.0" 949 | }, 950 | "funding": { 951 | "type": "opencollective", 952 | "url": "https://opencollective.com/typescript-eslint" 953 | } 954 | }, 955 | "node_modules/@ungap/structured-clone": { 956 | "version": "1.2.0", 957 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", 958 | "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", 959 | "dev": true, 960 | "peer": true 961 | }, 962 | "node_modules/acorn": { 963 | "version": "8.11.3", 964 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", 965 | "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", 966 | "dev": true, 967 | "peer": true, 968 | "bin": { 969 | "acorn": "bin/acorn" 970 | }, 971 | "engines": { 972 | "node": ">=0.4.0" 973 | } 974 | }, 975 | "node_modules/acorn-jsx": { 976 | "version": "5.3.2", 977 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 978 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 979 | "dev": true, 980 | "peer": true, 981 | "peerDependencies": { 982 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 983 | } 984 | }, 985 | "node_modules/ajv": { 986 | "version": "6.12.6", 987 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 988 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 989 | "dev": true, 990 | "peer": true, 991 | "dependencies": { 992 | "fast-deep-equal": "^3.1.1", 993 | "fast-json-stable-stringify": "^2.0.0", 994 | "json-schema-traverse": "^0.4.1", 995 | "uri-js": "^4.2.2" 996 | }, 997 | "funding": { 998 | "type": "github", 999 | "url": "https://github.com/sponsors/epoberezkin" 1000 | } 1001 | }, 1002 | "node_modules/ansi-regex": { 1003 | "version": "5.0.1", 1004 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1005 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1006 | "dev": true, 1007 | "peer": true, 1008 | "engines": { 1009 | "node": ">=8" 1010 | } 1011 | }, 1012 | "node_modules/ansi-styles": { 1013 | "version": "4.3.0", 1014 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1015 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1016 | "dev": true, 1017 | "peer": true, 1018 | "dependencies": { 1019 | "color-convert": "^2.0.1" 1020 | }, 1021 | "engines": { 1022 | "node": ">=8" 1023 | }, 1024 | "funding": { 1025 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1026 | } 1027 | }, 1028 | "node_modules/argparse": { 1029 | "version": "2.0.1", 1030 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 1031 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 1032 | "dev": true, 1033 | "peer": true 1034 | }, 1035 | "node_modules/array-union": { 1036 | "version": "2.1.0", 1037 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 1038 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 1039 | "dev": true, 1040 | "engines": { 1041 | "node": ">=8" 1042 | } 1043 | }, 1044 | "node_modules/balanced-match": { 1045 | "version": "1.0.2", 1046 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1047 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1048 | "dev": true 1049 | }, 1050 | "node_modules/before-after-hook": { 1051 | "version": "2.2.3", 1052 | "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", 1053 | "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==" 1054 | }, 1055 | "node_modules/brace-expansion": { 1056 | "version": "2.0.1", 1057 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 1058 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1059 | "dev": true, 1060 | "dependencies": { 1061 | "balanced-match": "^1.0.0" 1062 | } 1063 | }, 1064 | "node_modules/braces": { 1065 | "version": "3.0.2", 1066 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 1067 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 1068 | "dev": true, 1069 | "dependencies": { 1070 | "fill-range": "^7.0.1" 1071 | }, 1072 | "engines": { 1073 | "node": ">=8" 1074 | } 1075 | }, 1076 | "node_modules/callsites": { 1077 | "version": "3.1.0", 1078 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1079 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1080 | "dev": true, 1081 | "peer": true, 1082 | "engines": { 1083 | "node": ">=6" 1084 | } 1085 | }, 1086 | "node_modules/chalk": { 1087 | "version": "4.1.2", 1088 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1089 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1090 | "dev": true, 1091 | "peer": true, 1092 | "dependencies": { 1093 | "ansi-styles": "^4.1.0", 1094 | "supports-color": "^7.1.0" 1095 | }, 1096 | "engines": { 1097 | "node": ">=10" 1098 | }, 1099 | "funding": { 1100 | "url": "https://github.com/chalk/chalk?sponsor=1" 1101 | } 1102 | }, 1103 | "node_modules/color-convert": { 1104 | "version": "2.0.1", 1105 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1106 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1107 | "dev": true, 1108 | "peer": true, 1109 | "dependencies": { 1110 | "color-name": "~1.1.4" 1111 | }, 1112 | "engines": { 1113 | "node": ">=7.0.0" 1114 | } 1115 | }, 1116 | "node_modules/color-name": { 1117 | "version": "1.1.4", 1118 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1119 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1120 | "dev": true, 1121 | "peer": true 1122 | }, 1123 | "node_modules/concat-map": { 1124 | "version": "0.0.1", 1125 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1126 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1127 | "dev": true, 1128 | "peer": true 1129 | }, 1130 | "node_modules/cross-spawn": { 1131 | "version": "7.0.3", 1132 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1133 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1134 | "dev": true, 1135 | "peer": true, 1136 | "dependencies": { 1137 | "path-key": "^3.1.0", 1138 | "shebang-command": "^2.0.0", 1139 | "which": "^2.0.1" 1140 | }, 1141 | "engines": { 1142 | "node": ">= 8" 1143 | } 1144 | }, 1145 | "node_modules/debug": { 1146 | "version": "4.3.4", 1147 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 1148 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 1149 | "dev": true, 1150 | "dependencies": { 1151 | "ms": "2.1.2" 1152 | }, 1153 | "engines": { 1154 | "node": ">=6.0" 1155 | }, 1156 | "peerDependenciesMeta": { 1157 | "supports-color": { 1158 | "optional": true 1159 | } 1160 | } 1161 | }, 1162 | "node_modules/deep-is": { 1163 | "version": "0.1.4", 1164 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1165 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1166 | "dev": true, 1167 | "peer": true 1168 | }, 1169 | "node_modules/deprecation": { 1170 | "version": "2.3.1", 1171 | "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", 1172 | "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" 1173 | }, 1174 | "node_modules/dir-glob": { 1175 | "version": "3.0.1", 1176 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 1177 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 1178 | "dev": true, 1179 | "dependencies": { 1180 | "path-type": "^4.0.0" 1181 | }, 1182 | "engines": { 1183 | "node": ">=8" 1184 | } 1185 | }, 1186 | "node_modules/doctrine": { 1187 | "version": "3.0.0", 1188 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1189 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1190 | "dev": true, 1191 | "peer": true, 1192 | "dependencies": { 1193 | "esutils": "^2.0.2" 1194 | }, 1195 | "engines": { 1196 | "node": ">=6.0.0" 1197 | } 1198 | }, 1199 | "node_modules/esbuild": { 1200 | "version": "0.20.1", 1201 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.1.tgz", 1202 | "integrity": "sha512-OJwEgrpWm/PCMsLVWXKqvcjme3bHNpOgN7Tb6cQnR5n0TPbQx1/Xrn7rqM+wn17bYeT6MGB5sn1Bh5YiGi70nA==", 1203 | "dev": true, 1204 | "hasInstallScript": true, 1205 | "bin": { 1206 | "esbuild": "bin/esbuild" 1207 | }, 1208 | "engines": { 1209 | "node": ">=12" 1210 | }, 1211 | "optionalDependencies": { 1212 | "@esbuild/aix-ppc64": "0.20.1", 1213 | "@esbuild/android-arm": "0.20.1", 1214 | "@esbuild/android-arm64": "0.20.1", 1215 | "@esbuild/android-x64": "0.20.1", 1216 | "@esbuild/darwin-arm64": "0.20.1", 1217 | "@esbuild/darwin-x64": "0.20.1", 1218 | "@esbuild/freebsd-arm64": "0.20.1", 1219 | "@esbuild/freebsd-x64": "0.20.1", 1220 | "@esbuild/linux-arm": "0.20.1", 1221 | "@esbuild/linux-arm64": "0.20.1", 1222 | "@esbuild/linux-ia32": "0.20.1", 1223 | "@esbuild/linux-loong64": "0.20.1", 1224 | "@esbuild/linux-mips64el": "0.20.1", 1225 | "@esbuild/linux-ppc64": "0.20.1", 1226 | "@esbuild/linux-riscv64": "0.20.1", 1227 | "@esbuild/linux-s390x": "0.20.1", 1228 | "@esbuild/linux-x64": "0.20.1", 1229 | "@esbuild/netbsd-x64": "0.20.1", 1230 | "@esbuild/openbsd-x64": "0.20.1", 1231 | "@esbuild/sunos-x64": "0.20.1", 1232 | "@esbuild/win32-arm64": "0.20.1", 1233 | "@esbuild/win32-ia32": "0.20.1", 1234 | "@esbuild/win32-x64": "0.20.1" 1235 | } 1236 | }, 1237 | "node_modules/escape-string-regexp": { 1238 | "version": "4.0.0", 1239 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1240 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1241 | "dev": true, 1242 | "peer": true, 1243 | "engines": { 1244 | "node": ">=10" 1245 | }, 1246 | "funding": { 1247 | "url": "https://github.com/sponsors/sindresorhus" 1248 | } 1249 | }, 1250 | "node_modules/eslint": { 1251 | "version": "8.56.0", 1252 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", 1253 | "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", 1254 | "dev": true, 1255 | "peer": true, 1256 | "dependencies": { 1257 | "@eslint-community/eslint-utils": "^4.2.0", 1258 | "@eslint-community/regexpp": "^4.6.1", 1259 | "@eslint/eslintrc": "^2.1.4", 1260 | "@eslint/js": "8.56.0", 1261 | "@humanwhocodes/config-array": "^0.11.13", 1262 | "@humanwhocodes/module-importer": "^1.0.1", 1263 | "@nodelib/fs.walk": "^1.2.8", 1264 | "@ungap/structured-clone": "^1.2.0", 1265 | "ajv": "^6.12.4", 1266 | "chalk": "^4.0.0", 1267 | "cross-spawn": "^7.0.2", 1268 | "debug": "^4.3.2", 1269 | "doctrine": "^3.0.0", 1270 | "escape-string-regexp": "^4.0.0", 1271 | "eslint-scope": "^7.2.2", 1272 | "eslint-visitor-keys": "^3.4.3", 1273 | "espree": "^9.6.1", 1274 | "esquery": "^1.4.2", 1275 | "esutils": "^2.0.2", 1276 | "fast-deep-equal": "^3.1.3", 1277 | "file-entry-cache": "^6.0.1", 1278 | "find-up": "^5.0.0", 1279 | "glob-parent": "^6.0.2", 1280 | "globals": "^13.19.0", 1281 | "graphemer": "^1.4.0", 1282 | "ignore": "^5.2.0", 1283 | "imurmurhash": "^0.1.4", 1284 | "is-glob": "^4.0.0", 1285 | "is-path-inside": "^3.0.3", 1286 | "js-yaml": "^4.1.0", 1287 | "json-stable-stringify-without-jsonify": "^1.0.1", 1288 | "levn": "^0.4.1", 1289 | "lodash.merge": "^4.6.2", 1290 | "minimatch": "^3.1.2", 1291 | "natural-compare": "^1.4.0", 1292 | "optionator": "^0.9.3", 1293 | "strip-ansi": "^6.0.1", 1294 | "text-table": "^0.2.0" 1295 | }, 1296 | "bin": { 1297 | "eslint": "bin/eslint.js" 1298 | }, 1299 | "engines": { 1300 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1301 | }, 1302 | "funding": { 1303 | "url": "https://opencollective.com/eslint" 1304 | } 1305 | }, 1306 | "node_modules/eslint-scope": { 1307 | "version": "7.2.2", 1308 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 1309 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 1310 | "dev": true, 1311 | "peer": true, 1312 | "dependencies": { 1313 | "esrecurse": "^4.3.0", 1314 | "estraverse": "^5.2.0" 1315 | }, 1316 | "engines": { 1317 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1318 | }, 1319 | "funding": { 1320 | "url": "https://opencollective.com/eslint" 1321 | } 1322 | }, 1323 | "node_modules/eslint-visitor-keys": { 1324 | "version": "3.4.3", 1325 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 1326 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 1327 | "dev": true, 1328 | "engines": { 1329 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1330 | }, 1331 | "funding": { 1332 | "url": "https://opencollective.com/eslint" 1333 | } 1334 | }, 1335 | "node_modules/eslint/node_modules/brace-expansion": { 1336 | "version": "1.1.11", 1337 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1338 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1339 | "dev": true, 1340 | "peer": true, 1341 | "dependencies": { 1342 | "balanced-match": "^1.0.0", 1343 | "concat-map": "0.0.1" 1344 | } 1345 | }, 1346 | "node_modules/eslint/node_modules/minimatch": { 1347 | "version": "3.1.2", 1348 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1349 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1350 | "dev": true, 1351 | "peer": true, 1352 | "dependencies": { 1353 | "brace-expansion": "^1.1.7" 1354 | }, 1355 | "engines": { 1356 | "node": "*" 1357 | } 1358 | }, 1359 | "node_modules/espree": { 1360 | "version": "9.6.1", 1361 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 1362 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 1363 | "dev": true, 1364 | "peer": true, 1365 | "dependencies": { 1366 | "acorn": "^8.9.0", 1367 | "acorn-jsx": "^5.3.2", 1368 | "eslint-visitor-keys": "^3.4.1" 1369 | }, 1370 | "engines": { 1371 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1372 | }, 1373 | "funding": { 1374 | "url": "https://opencollective.com/eslint" 1375 | } 1376 | }, 1377 | "node_modules/esquery": { 1378 | "version": "1.5.0", 1379 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 1380 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 1381 | "dev": true, 1382 | "peer": true, 1383 | "dependencies": { 1384 | "estraverse": "^5.1.0" 1385 | }, 1386 | "engines": { 1387 | "node": ">=0.10" 1388 | } 1389 | }, 1390 | "node_modules/esrecurse": { 1391 | "version": "4.3.0", 1392 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1393 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1394 | "dev": true, 1395 | "peer": true, 1396 | "dependencies": { 1397 | "estraverse": "^5.2.0" 1398 | }, 1399 | "engines": { 1400 | "node": ">=4.0" 1401 | } 1402 | }, 1403 | "node_modules/estraverse": { 1404 | "version": "5.3.0", 1405 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1406 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1407 | "dev": true, 1408 | "peer": true, 1409 | "engines": { 1410 | "node": ">=4.0" 1411 | } 1412 | }, 1413 | "node_modules/esutils": { 1414 | "version": "2.0.3", 1415 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1416 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1417 | "dev": true, 1418 | "peer": true, 1419 | "engines": { 1420 | "node": ">=0.10.0" 1421 | } 1422 | }, 1423 | "node_modules/fast-deep-equal": { 1424 | "version": "3.1.3", 1425 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1426 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1427 | "dev": true, 1428 | "peer": true 1429 | }, 1430 | "node_modules/fast-glob": { 1431 | "version": "3.3.2", 1432 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 1433 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 1434 | "dev": true, 1435 | "dependencies": { 1436 | "@nodelib/fs.stat": "^2.0.2", 1437 | "@nodelib/fs.walk": "^1.2.3", 1438 | "glob-parent": "^5.1.2", 1439 | "merge2": "^1.3.0", 1440 | "micromatch": "^4.0.4" 1441 | }, 1442 | "engines": { 1443 | "node": ">=8.6.0" 1444 | } 1445 | }, 1446 | "node_modules/fast-glob/node_modules/glob-parent": { 1447 | "version": "5.1.2", 1448 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1449 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1450 | "dev": true, 1451 | "dependencies": { 1452 | "is-glob": "^4.0.1" 1453 | }, 1454 | "engines": { 1455 | "node": ">= 6" 1456 | } 1457 | }, 1458 | "node_modules/fast-json-stable-stringify": { 1459 | "version": "2.1.0", 1460 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1461 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1462 | "dev": true, 1463 | "peer": true 1464 | }, 1465 | "node_modules/fast-levenshtein": { 1466 | "version": "2.0.6", 1467 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1468 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1469 | "dev": true, 1470 | "peer": true 1471 | }, 1472 | "node_modules/fastq": { 1473 | "version": "1.17.1", 1474 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", 1475 | "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", 1476 | "dev": true, 1477 | "dependencies": { 1478 | "reusify": "^1.0.4" 1479 | } 1480 | }, 1481 | "node_modules/file-entry-cache": { 1482 | "version": "6.0.1", 1483 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1484 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1485 | "dev": true, 1486 | "peer": true, 1487 | "dependencies": { 1488 | "flat-cache": "^3.0.4" 1489 | }, 1490 | "engines": { 1491 | "node": "^10.12.0 || >=12.0.0" 1492 | } 1493 | }, 1494 | "node_modules/fill-range": { 1495 | "version": "7.0.1", 1496 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 1497 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 1498 | "dev": true, 1499 | "dependencies": { 1500 | "to-regex-range": "^5.0.1" 1501 | }, 1502 | "engines": { 1503 | "node": ">=8" 1504 | } 1505 | }, 1506 | "node_modules/find-up": { 1507 | "version": "5.0.0", 1508 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1509 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1510 | "dev": true, 1511 | "peer": true, 1512 | "dependencies": { 1513 | "locate-path": "^6.0.0", 1514 | "path-exists": "^4.0.0" 1515 | }, 1516 | "engines": { 1517 | "node": ">=10" 1518 | }, 1519 | "funding": { 1520 | "url": "https://github.com/sponsors/sindresorhus" 1521 | } 1522 | }, 1523 | "node_modules/flat-cache": { 1524 | "version": "3.2.0", 1525 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", 1526 | "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", 1527 | "dev": true, 1528 | "peer": true, 1529 | "dependencies": { 1530 | "flatted": "^3.2.9", 1531 | "keyv": "^4.5.3", 1532 | "rimraf": "^3.0.2" 1533 | }, 1534 | "engines": { 1535 | "node": "^10.12.0 || >=12.0.0" 1536 | } 1537 | }, 1538 | "node_modules/flatted": { 1539 | "version": "3.3.0", 1540 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.0.tgz", 1541 | "integrity": "sha512-noqGuLw158+DuD9UPRKHpJ2hGxpFyDlYYrfM0mWt4XhT4n0lwzTLh70Tkdyy4kyTmyTT9Bv7bWAJqw7cgkEXDg==", 1542 | "dev": true, 1543 | "peer": true 1544 | }, 1545 | "node_modules/fs.realpath": { 1546 | "version": "1.0.0", 1547 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1548 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1549 | "dev": true, 1550 | "peer": true 1551 | }, 1552 | "node_modules/glob": { 1553 | "version": "7.2.3", 1554 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 1555 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 1556 | "dev": true, 1557 | "peer": true, 1558 | "dependencies": { 1559 | "fs.realpath": "^1.0.0", 1560 | "inflight": "^1.0.4", 1561 | "inherits": "2", 1562 | "minimatch": "^3.1.1", 1563 | "once": "^1.3.0", 1564 | "path-is-absolute": "^1.0.0" 1565 | }, 1566 | "engines": { 1567 | "node": "*" 1568 | }, 1569 | "funding": { 1570 | "url": "https://github.com/sponsors/isaacs" 1571 | } 1572 | }, 1573 | "node_modules/glob-parent": { 1574 | "version": "6.0.2", 1575 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1576 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1577 | "dev": true, 1578 | "peer": true, 1579 | "dependencies": { 1580 | "is-glob": "^4.0.3" 1581 | }, 1582 | "engines": { 1583 | "node": ">=10.13.0" 1584 | } 1585 | }, 1586 | "node_modules/glob/node_modules/brace-expansion": { 1587 | "version": "1.1.11", 1588 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1589 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1590 | "dev": true, 1591 | "peer": true, 1592 | "dependencies": { 1593 | "balanced-match": "^1.0.0", 1594 | "concat-map": "0.0.1" 1595 | } 1596 | }, 1597 | "node_modules/glob/node_modules/minimatch": { 1598 | "version": "3.1.2", 1599 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1600 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1601 | "dev": true, 1602 | "peer": true, 1603 | "dependencies": { 1604 | "brace-expansion": "^1.1.7" 1605 | }, 1606 | "engines": { 1607 | "node": "*" 1608 | } 1609 | }, 1610 | "node_modules/globals": { 1611 | "version": "13.24.0", 1612 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 1613 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 1614 | "dev": true, 1615 | "peer": true, 1616 | "dependencies": { 1617 | "type-fest": "^0.20.2" 1618 | }, 1619 | "engines": { 1620 | "node": ">=8" 1621 | }, 1622 | "funding": { 1623 | "url": "https://github.com/sponsors/sindresorhus" 1624 | } 1625 | }, 1626 | "node_modules/globby": { 1627 | "version": "11.1.0", 1628 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 1629 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 1630 | "dev": true, 1631 | "dependencies": { 1632 | "array-union": "^2.1.0", 1633 | "dir-glob": "^3.0.1", 1634 | "fast-glob": "^3.2.9", 1635 | "ignore": "^5.2.0", 1636 | "merge2": "^1.4.1", 1637 | "slash": "^3.0.0" 1638 | }, 1639 | "engines": { 1640 | "node": ">=10" 1641 | }, 1642 | "funding": { 1643 | "url": "https://github.com/sponsors/sindresorhus" 1644 | } 1645 | }, 1646 | "node_modules/graphemer": { 1647 | "version": "1.4.0", 1648 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 1649 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 1650 | "dev": true 1651 | }, 1652 | "node_modules/has-flag": { 1653 | "version": "4.0.0", 1654 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1655 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1656 | "dev": true, 1657 | "peer": true, 1658 | "engines": { 1659 | "node": ">=8" 1660 | } 1661 | }, 1662 | "node_modules/ignore": { 1663 | "version": "5.3.1", 1664 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", 1665 | "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", 1666 | "dev": true, 1667 | "engines": { 1668 | "node": ">= 4" 1669 | } 1670 | }, 1671 | "node_modules/import-fresh": { 1672 | "version": "3.3.0", 1673 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 1674 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 1675 | "dev": true, 1676 | "peer": true, 1677 | "dependencies": { 1678 | "parent-module": "^1.0.0", 1679 | "resolve-from": "^4.0.0" 1680 | }, 1681 | "engines": { 1682 | "node": ">=6" 1683 | }, 1684 | "funding": { 1685 | "url": "https://github.com/sponsors/sindresorhus" 1686 | } 1687 | }, 1688 | "node_modules/imurmurhash": { 1689 | "version": "0.1.4", 1690 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1691 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 1692 | "dev": true, 1693 | "peer": true, 1694 | "engines": { 1695 | "node": ">=0.8.19" 1696 | } 1697 | }, 1698 | "node_modules/inflight": { 1699 | "version": "1.0.6", 1700 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1701 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1702 | "dev": true, 1703 | "peer": true, 1704 | "dependencies": { 1705 | "once": "^1.3.0", 1706 | "wrappy": "1" 1707 | } 1708 | }, 1709 | "node_modules/inherits": { 1710 | "version": "2.0.4", 1711 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1712 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1713 | "dev": true, 1714 | "peer": true 1715 | }, 1716 | "node_modules/is-extglob": { 1717 | "version": "2.1.1", 1718 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1719 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1720 | "dev": true, 1721 | "engines": { 1722 | "node": ">=0.10.0" 1723 | } 1724 | }, 1725 | "node_modules/is-glob": { 1726 | "version": "4.0.3", 1727 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1728 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1729 | "dev": true, 1730 | "dependencies": { 1731 | "is-extglob": "^2.1.1" 1732 | }, 1733 | "engines": { 1734 | "node": ">=0.10.0" 1735 | } 1736 | }, 1737 | "node_modules/is-number": { 1738 | "version": "7.0.0", 1739 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1740 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1741 | "dev": true, 1742 | "engines": { 1743 | "node": ">=0.12.0" 1744 | } 1745 | }, 1746 | "node_modules/is-path-inside": { 1747 | "version": "3.0.3", 1748 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 1749 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 1750 | "dev": true, 1751 | "peer": true, 1752 | "engines": { 1753 | "node": ">=8" 1754 | } 1755 | }, 1756 | "node_modules/isexe": { 1757 | "version": "2.0.0", 1758 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1759 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 1760 | "dev": true, 1761 | "peer": true 1762 | }, 1763 | "node_modules/js-yaml": { 1764 | "version": "4.1.0", 1765 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 1766 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 1767 | "dev": true, 1768 | "peer": true, 1769 | "dependencies": { 1770 | "argparse": "^2.0.1" 1771 | }, 1772 | "bin": { 1773 | "js-yaml": "bin/js-yaml.js" 1774 | } 1775 | }, 1776 | "node_modules/json-buffer": { 1777 | "version": "3.0.1", 1778 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 1779 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 1780 | "dev": true, 1781 | "peer": true 1782 | }, 1783 | "node_modules/json-schema-traverse": { 1784 | "version": "0.4.1", 1785 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 1786 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 1787 | "dev": true, 1788 | "peer": true 1789 | }, 1790 | "node_modules/json-stable-stringify-without-jsonify": { 1791 | "version": "1.0.1", 1792 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 1793 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 1794 | "dev": true, 1795 | "peer": true 1796 | }, 1797 | "node_modules/keyv": { 1798 | "version": "4.5.4", 1799 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 1800 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 1801 | "dev": true, 1802 | "peer": true, 1803 | "dependencies": { 1804 | "json-buffer": "3.0.1" 1805 | } 1806 | }, 1807 | "node_modules/levn": { 1808 | "version": "0.4.1", 1809 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 1810 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 1811 | "dev": true, 1812 | "peer": true, 1813 | "dependencies": { 1814 | "prelude-ls": "^1.2.1", 1815 | "type-check": "~0.4.0" 1816 | }, 1817 | "engines": { 1818 | "node": ">= 0.8.0" 1819 | } 1820 | }, 1821 | "node_modules/locate-path": { 1822 | "version": "6.0.0", 1823 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 1824 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 1825 | "dev": true, 1826 | "peer": true, 1827 | "dependencies": { 1828 | "p-locate": "^5.0.0" 1829 | }, 1830 | "engines": { 1831 | "node": ">=10" 1832 | }, 1833 | "funding": { 1834 | "url": "https://github.com/sponsors/sindresorhus" 1835 | } 1836 | }, 1837 | "node_modules/lodash.merge": { 1838 | "version": "4.6.2", 1839 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 1840 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 1841 | "dev": true, 1842 | "peer": true 1843 | }, 1844 | "node_modules/lru-cache": { 1845 | "version": "6.0.0", 1846 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 1847 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 1848 | "dev": true, 1849 | "dependencies": { 1850 | "yallist": "^4.0.0" 1851 | }, 1852 | "engines": { 1853 | "node": ">=10" 1854 | } 1855 | }, 1856 | "node_modules/merge2": { 1857 | "version": "1.4.1", 1858 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 1859 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 1860 | "dev": true, 1861 | "engines": { 1862 | "node": ">= 8" 1863 | } 1864 | }, 1865 | "node_modules/micromatch": { 1866 | "version": "4.0.5", 1867 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 1868 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 1869 | "dev": true, 1870 | "dependencies": { 1871 | "braces": "^3.0.2", 1872 | "picomatch": "^2.3.1" 1873 | }, 1874 | "engines": { 1875 | "node": ">=8.6" 1876 | } 1877 | }, 1878 | "node_modules/minimatch": { 1879 | "version": "9.0.3", 1880 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", 1881 | "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", 1882 | "dev": true, 1883 | "dependencies": { 1884 | "brace-expansion": "^2.0.1" 1885 | }, 1886 | "engines": { 1887 | "node": ">=16 || 14 >=14.17" 1888 | }, 1889 | "funding": { 1890 | "url": "https://github.com/sponsors/isaacs" 1891 | } 1892 | }, 1893 | "node_modules/ms": { 1894 | "version": "2.1.2", 1895 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1896 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 1897 | "dev": true 1898 | }, 1899 | "node_modules/natural-compare": { 1900 | "version": "1.4.0", 1901 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 1902 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 1903 | "dev": true 1904 | }, 1905 | "node_modules/once": { 1906 | "version": "1.4.0", 1907 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 1908 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 1909 | "dependencies": { 1910 | "wrappy": "1" 1911 | } 1912 | }, 1913 | "node_modules/optionator": { 1914 | "version": "0.9.3", 1915 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", 1916 | "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", 1917 | "dev": true, 1918 | "peer": true, 1919 | "dependencies": { 1920 | "@aashutoshrathi/word-wrap": "^1.2.3", 1921 | "deep-is": "^0.1.3", 1922 | "fast-levenshtein": "^2.0.6", 1923 | "levn": "^0.4.1", 1924 | "prelude-ls": "^1.2.1", 1925 | "type-check": "^0.4.0" 1926 | }, 1927 | "engines": { 1928 | "node": ">= 0.8.0" 1929 | } 1930 | }, 1931 | "node_modules/p-limit": { 1932 | "version": "3.1.0", 1933 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 1934 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 1935 | "dev": true, 1936 | "peer": true, 1937 | "dependencies": { 1938 | "yocto-queue": "^0.1.0" 1939 | }, 1940 | "engines": { 1941 | "node": ">=10" 1942 | }, 1943 | "funding": { 1944 | "url": "https://github.com/sponsors/sindresorhus" 1945 | } 1946 | }, 1947 | "node_modules/p-locate": { 1948 | "version": "5.0.0", 1949 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 1950 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 1951 | "dev": true, 1952 | "peer": true, 1953 | "dependencies": { 1954 | "p-limit": "^3.0.2" 1955 | }, 1956 | "engines": { 1957 | "node": ">=10" 1958 | }, 1959 | "funding": { 1960 | "url": "https://github.com/sponsors/sindresorhus" 1961 | } 1962 | }, 1963 | "node_modules/parent-module": { 1964 | "version": "1.0.1", 1965 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 1966 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 1967 | "dev": true, 1968 | "peer": true, 1969 | "dependencies": { 1970 | "callsites": "^3.0.0" 1971 | }, 1972 | "engines": { 1973 | "node": ">=6" 1974 | } 1975 | }, 1976 | "node_modules/path-exists": { 1977 | "version": "4.0.0", 1978 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 1979 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 1980 | "dev": true, 1981 | "peer": true, 1982 | "engines": { 1983 | "node": ">=8" 1984 | } 1985 | }, 1986 | "node_modules/path-is-absolute": { 1987 | "version": "1.0.1", 1988 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 1989 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 1990 | "dev": true, 1991 | "peer": true, 1992 | "engines": { 1993 | "node": ">=0.10.0" 1994 | } 1995 | }, 1996 | "node_modules/path-key": { 1997 | "version": "3.1.1", 1998 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 1999 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2000 | "dev": true, 2001 | "peer": true, 2002 | "engines": { 2003 | "node": ">=8" 2004 | } 2005 | }, 2006 | "node_modules/path-type": { 2007 | "version": "4.0.0", 2008 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 2009 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 2010 | "dev": true, 2011 | "engines": { 2012 | "node": ">=8" 2013 | } 2014 | }, 2015 | "node_modules/picomatch": { 2016 | "version": "2.3.1", 2017 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2018 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2019 | "dev": true, 2020 | "engines": { 2021 | "node": ">=8.6" 2022 | }, 2023 | "funding": { 2024 | "url": "https://github.com/sponsors/jonschlinkert" 2025 | } 2026 | }, 2027 | "node_modules/prelude-ls": { 2028 | "version": "1.2.1", 2029 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 2030 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 2031 | "dev": true, 2032 | "peer": true, 2033 | "engines": { 2034 | "node": ">= 0.8.0" 2035 | } 2036 | }, 2037 | "node_modules/prettier": { 2038 | "version": "3.2.5", 2039 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", 2040 | "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", 2041 | "dev": true, 2042 | "bin": { 2043 | "prettier": "bin/prettier.cjs" 2044 | }, 2045 | "engines": { 2046 | "node": ">=14" 2047 | }, 2048 | "funding": { 2049 | "url": "https://github.com/prettier/prettier?sponsor=1" 2050 | } 2051 | }, 2052 | "node_modules/punycode": { 2053 | "version": "2.3.1", 2054 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 2055 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 2056 | "dev": true, 2057 | "peer": true, 2058 | "engines": { 2059 | "node": ">=6" 2060 | } 2061 | }, 2062 | "node_modules/queue-microtask": { 2063 | "version": "1.2.3", 2064 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2065 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2066 | "dev": true, 2067 | "funding": [ 2068 | { 2069 | "type": "github", 2070 | "url": "https://github.com/sponsors/feross" 2071 | }, 2072 | { 2073 | "type": "patreon", 2074 | "url": "https://www.patreon.com/feross" 2075 | }, 2076 | { 2077 | "type": "consulting", 2078 | "url": "https://feross.org/support" 2079 | } 2080 | ] 2081 | }, 2082 | "node_modules/resolve-from": { 2083 | "version": "4.0.0", 2084 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 2085 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 2086 | "dev": true, 2087 | "peer": true, 2088 | "engines": { 2089 | "node": ">=4" 2090 | } 2091 | }, 2092 | "node_modules/reusify": { 2093 | "version": "1.0.4", 2094 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 2095 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 2096 | "dev": true, 2097 | "engines": { 2098 | "iojs": ">=1.0.0", 2099 | "node": ">=0.10.0" 2100 | } 2101 | }, 2102 | "node_modules/rimraf": { 2103 | "version": "3.0.2", 2104 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 2105 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 2106 | "dev": true, 2107 | "peer": true, 2108 | "dependencies": { 2109 | "glob": "^7.1.3" 2110 | }, 2111 | "bin": { 2112 | "rimraf": "bin.js" 2113 | }, 2114 | "funding": { 2115 | "url": "https://github.com/sponsors/isaacs" 2116 | } 2117 | }, 2118 | "node_modules/run-parallel": { 2119 | "version": "1.2.0", 2120 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 2121 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 2122 | "dev": true, 2123 | "funding": [ 2124 | { 2125 | "type": "github", 2126 | "url": "https://github.com/sponsors/feross" 2127 | }, 2128 | { 2129 | "type": "patreon", 2130 | "url": "https://www.patreon.com/feross" 2131 | }, 2132 | { 2133 | "type": "consulting", 2134 | "url": "https://feross.org/support" 2135 | } 2136 | ], 2137 | "dependencies": { 2138 | "queue-microtask": "^1.2.2" 2139 | } 2140 | }, 2141 | "node_modules/semver": { 2142 | "version": "7.6.0", 2143 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", 2144 | "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", 2145 | "dev": true, 2146 | "dependencies": { 2147 | "lru-cache": "^6.0.0" 2148 | }, 2149 | "bin": { 2150 | "semver": "bin/semver.js" 2151 | }, 2152 | "engines": { 2153 | "node": ">=10" 2154 | } 2155 | }, 2156 | "node_modules/shebang-command": { 2157 | "version": "2.0.0", 2158 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 2159 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 2160 | "dev": true, 2161 | "peer": true, 2162 | "dependencies": { 2163 | "shebang-regex": "^3.0.0" 2164 | }, 2165 | "engines": { 2166 | "node": ">=8" 2167 | } 2168 | }, 2169 | "node_modules/shebang-regex": { 2170 | "version": "3.0.0", 2171 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 2172 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 2173 | "dev": true, 2174 | "peer": true, 2175 | "engines": { 2176 | "node": ">=8" 2177 | } 2178 | }, 2179 | "node_modules/slash": { 2180 | "version": "3.0.0", 2181 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 2182 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 2183 | "dev": true, 2184 | "engines": { 2185 | "node": ">=8" 2186 | } 2187 | }, 2188 | "node_modules/strip-ansi": { 2189 | "version": "6.0.1", 2190 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2191 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2192 | "dev": true, 2193 | "peer": true, 2194 | "dependencies": { 2195 | "ansi-regex": "^5.0.1" 2196 | }, 2197 | "engines": { 2198 | "node": ">=8" 2199 | } 2200 | }, 2201 | "node_modules/strip-json-comments": { 2202 | "version": "3.1.1", 2203 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 2204 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 2205 | "dev": true, 2206 | "peer": true, 2207 | "engines": { 2208 | "node": ">=8" 2209 | }, 2210 | "funding": { 2211 | "url": "https://github.com/sponsors/sindresorhus" 2212 | } 2213 | }, 2214 | "node_modules/supports-color": { 2215 | "version": "7.2.0", 2216 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 2217 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 2218 | "dev": true, 2219 | "peer": true, 2220 | "dependencies": { 2221 | "has-flag": "^4.0.0" 2222 | }, 2223 | "engines": { 2224 | "node": ">=8" 2225 | } 2226 | }, 2227 | "node_modules/text-table": { 2228 | "version": "0.2.0", 2229 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 2230 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 2231 | "dev": true, 2232 | "peer": true 2233 | }, 2234 | "node_modules/to-regex-range": { 2235 | "version": "5.0.1", 2236 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 2237 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 2238 | "dev": true, 2239 | "dependencies": { 2240 | "is-number": "^7.0.0" 2241 | }, 2242 | "engines": { 2243 | "node": ">=8.0" 2244 | } 2245 | }, 2246 | "node_modules/ts-api-utils": { 2247 | "version": "1.2.1", 2248 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.2.1.tgz", 2249 | "integrity": "sha512-RIYA36cJn2WiH9Hy77hdF9r7oEwxAtB/TS9/S4Qd90Ap4z5FSiin5zEiTL44OII1Y3IIlEvxwxFUVgrHSZ/UpA==", 2250 | "dev": true, 2251 | "engines": { 2252 | "node": ">=16" 2253 | }, 2254 | "peerDependencies": { 2255 | "typescript": ">=4.2.0" 2256 | } 2257 | }, 2258 | "node_modules/tunnel": { 2259 | "version": "0.0.6", 2260 | "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", 2261 | "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==", 2262 | "engines": { 2263 | "node": ">=0.6.11 <=0.7.0 || >=0.7.3" 2264 | } 2265 | }, 2266 | "node_modules/type-check": { 2267 | "version": "0.4.0", 2268 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 2269 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 2270 | "dev": true, 2271 | "peer": true, 2272 | "dependencies": { 2273 | "prelude-ls": "^1.2.1" 2274 | }, 2275 | "engines": { 2276 | "node": ">= 0.8.0" 2277 | } 2278 | }, 2279 | "node_modules/type-fest": { 2280 | "version": "0.20.2", 2281 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 2282 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 2283 | "dev": true, 2284 | "peer": true, 2285 | "engines": { 2286 | "node": ">=10" 2287 | }, 2288 | "funding": { 2289 | "url": "https://github.com/sponsors/sindresorhus" 2290 | } 2291 | }, 2292 | "node_modules/typescript": { 2293 | "version": "5.3.3", 2294 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", 2295 | "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", 2296 | "dev": true, 2297 | "bin": { 2298 | "tsc": "bin/tsc", 2299 | "tsserver": "bin/tsserver" 2300 | }, 2301 | "engines": { 2302 | "node": ">=14.17" 2303 | } 2304 | }, 2305 | "node_modules/undici": { 2306 | "version": "5.28.3", 2307 | "resolved": "https://registry.npmjs.org/undici/-/undici-5.28.3.tgz", 2308 | "integrity": "sha512-3ItfzbrhDlINjaP0duwnNsKpDQk3acHI3gVJ1z4fmwMK31k5G9OVIAMLSIaP6w4FaGkaAkN6zaQO9LUvZ1t7VA==", 2309 | "dependencies": { 2310 | "@fastify/busboy": "^2.0.0" 2311 | }, 2312 | "engines": { 2313 | "node": ">=14.0" 2314 | } 2315 | }, 2316 | "node_modules/undici-types": { 2317 | "version": "5.26.5", 2318 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", 2319 | "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", 2320 | "dev": true 2321 | }, 2322 | "node_modules/universal-user-agent": { 2323 | "version": "6.0.1", 2324 | "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz", 2325 | "integrity": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==" 2326 | }, 2327 | "node_modules/uri-js": { 2328 | "version": "4.4.1", 2329 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 2330 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 2331 | "dev": true, 2332 | "peer": true, 2333 | "dependencies": { 2334 | "punycode": "^2.1.0" 2335 | } 2336 | }, 2337 | "node_modules/uuid": { 2338 | "version": "8.3.2", 2339 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", 2340 | "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", 2341 | "bin": { 2342 | "uuid": "dist/bin/uuid" 2343 | } 2344 | }, 2345 | "node_modules/which": { 2346 | "version": "2.0.2", 2347 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 2348 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 2349 | "dev": true, 2350 | "peer": true, 2351 | "dependencies": { 2352 | "isexe": "^2.0.0" 2353 | }, 2354 | "bin": { 2355 | "node-which": "bin/node-which" 2356 | }, 2357 | "engines": { 2358 | "node": ">= 8" 2359 | } 2360 | }, 2361 | "node_modules/wrappy": { 2362 | "version": "1.0.2", 2363 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 2364 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" 2365 | }, 2366 | "node_modules/yallist": { 2367 | "version": "4.0.0", 2368 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 2369 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 2370 | "dev": true 2371 | }, 2372 | "node_modules/yocto-queue": { 2373 | "version": "0.1.0", 2374 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 2375 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 2376 | "dev": true, 2377 | "peer": true, 2378 | "engines": { 2379 | "node": ">=10" 2380 | }, 2381 | "funding": { 2382 | "url": "https://github.com/sponsors/sindresorhus" 2383 | } 2384 | } 2385 | }, 2386 | "dependencies": { 2387 | "@aashutoshrathi/word-wrap": { 2388 | "version": "1.2.6", 2389 | "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", 2390 | "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", 2391 | "dev": true, 2392 | "peer": true 2393 | }, 2394 | "@actions/core": { 2395 | "version": "1.10.1", 2396 | "resolved": "https://registry.npmjs.org/@actions/core/-/core-1.10.1.tgz", 2397 | "integrity": "sha512-3lBR9EDAY+iYIpTnTIXmWcNbX3T2kCkAEQGIQx4NVQ0575nk2k3GRZDTPQG+vVtS2izSLmINlxXf0uLtnrTP+g==", 2398 | "requires": { 2399 | "@actions/http-client": "^2.0.1", 2400 | "uuid": "^8.3.2" 2401 | } 2402 | }, 2403 | "@actions/github": { 2404 | "version": "6.0.0", 2405 | "resolved": "https://registry.npmjs.org/@actions/github/-/github-6.0.0.tgz", 2406 | "integrity": "sha512-alScpSVnYmjNEXboZjarjukQEzgCRmjMv6Xj47fsdnqGS73bjJNDpiiXmp8jr0UZLdUB6d9jW63IcmddUP+l0g==", 2407 | "requires": { 2408 | "@actions/http-client": "^2.2.0", 2409 | "@octokit/core": "^5.0.1", 2410 | "@octokit/plugin-paginate-rest": "^9.0.0", 2411 | "@octokit/plugin-rest-endpoint-methods": "^10.0.0" 2412 | } 2413 | }, 2414 | "@actions/http-client": { 2415 | "version": "2.2.0", 2416 | "resolved": "https://registry.npmjs.org/@actions/http-client/-/http-client-2.2.0.tgz", 2417 | "integrity": "sha512-q+epW0trjVUUHboliPb4UF9g2msf+w61b32tAkFEwL/IwP0DQWgbCMM0Hbe3e3WXSKz5VcUXbzJQgy8Hkra/Lg==", 2418 | "requires": { 2419 | "tunnel": "^0.0.6", 2420 | "undici": "^5.25.4" 2421 | } 2422 | }, 2423 | "@actions/io": { 2424 | "version": "1.1.3", 2425 | "resolved": "https://registry.npmjs.org/@actions/io/-/io-1.1.3.tgz", 2426 | "integrity": "sha512-wi9JjgKLYS7U/z8PPbco+PvTb/nRWjeoFlJ1Qer83k/3C5PHQi28hiVdeE2kHXmIL99mQFawx8qt/JPjZilJ8Q==" 2427 | }, 2428 | "@esbuild/aix-ppc64": { 2429 | "version": "0.20.1", 2430 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.1.tgz", 2431 | "integrity": "sha512-m55cpeupQ2DbuRGQMMZDzbv9J9PgVelPjlcmM5kxHnrBdBx6REaEd7LamYV7Dm8N7rCyR/XwU6rVP8ploKtIkA==", 2432 | "dev": true, 2433 | "optional": true 2434 | }, 2435 | "@esbuild/android-arm": { 2436 | "version": "0.20.1", 2437 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.1.tgz", 2438 | "integrity": "sha512-4j0+G27/2ZXGWR5okcJi7pQYhmkVgb4D7UKwxcqrjhvp5TKWx3cUjgB1CGj1mfdmJBQ9VnUGgUhign+FPF2Zgw==", 2439 | "dev": true, 2440 | "optional": true 2441 | }, 2442 | "@esbuild/android-arm64": { 2443 | "version": "0.20.1", 2444 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.1.tgz", 2445 | "integrity": "sha512-hCnXNF0HM6AjowP+Zou0ZJMWWa1VkD77BXe959zERgGJBBxB+sV+J9f/rcjeg2c5bsukD/n17RKWXGFCO5dD5A==", 2446 | "dev": true, 2447 | "optional": true 2448 | }, 2449 | "@esbuild/android-x64": { 2450 | "version": "0.20.1", 2451 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.1.tgz", 2452 | "integrity": "sha512-MSfZMBoAsnhpS+2yMFYIQUPs8Z19ajwfuaSZx+tSl09xrHZCjbeXXMsUF/0oq7ojxYEpsSo4c0SfjxOYXRbpaA==", 2453 | "dev": true, 2454 | "optional": true 2455 | }, 2456 | "@esbuild/darwin-arm64": { 2457 | "version": "0.20.1", 2458 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.1.tgz", 2459 | "integrity": "sha512-Ylk6rzgMD8klUklGPzS414UQLa5NPXZD5tf8JmQU8GQrj6BrFA/Ic9tb2zRe1kOZyCbGl+e8VMbDRazCEBqPvA==", 2460 | "dev": true, 2461 | "optional": true 2462 | }, 2463 | "@esbuild/darwin-x64": { 2464 | "version": "0.20.1", 2465 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.1.tgz", 2466 | "integrity": "sha512-pFIfj7U2w5sMp52wTY1XVOdoxw+GDwy9FsK3OFz4BpMAjvZVs0dT1VXs8aQm22nhwoIWUmIRaE+4xow8xfIDZA==", 2467 | "dev": true, 2468 | "optional": true 2469 | }, 2470 | "@esbuild/freebsd-arm64": { 2471 | "version": "0.20.1", 2472 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.1.tgz", 2473 | "integrity": "sha512-UyW1WZvHDuM4xDz0jWun4qtQFauNdXjXOtIy7SYdf7pbxSWWVlqhnR/T2TpX6LX5NI62spt0a3ldIIEkPM6RHw==", 2474 | "dev": true, 2475 | "optional": true 2476 | }, 2477 | "@esbuild/freebsd-x64": { 2478 | "version": "0.20.1", 2479 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.1.tgz", 2480 | "integrity": "sha512-itPwCw5C+Jh/c624vcDd9kRCCZVpzpQn8dtwoYIt2TJF3S9xJLiRohnnNrKwREvcZYx0n8sCSbvGH349XkcQeg==", 2481 | "dev": true, 2482 | "optional": true 2483 | }, 2484 | "@esbuild/linux-arm": { 2485 | "version": "0.20.1", 2486 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.1.tgz", 2487 | "integrity": "sha512-LojC28v3+IhIbfQ+Vu4Ut5n3wKcgTu6POKIHN9Wpt0HnfgUGlBuyDDQR4jWZUZFyYLiz4RBBBmfU6sNfn6RhLw==", 2488 | "dev": true, 2489 | "optional": true 2490 | }, 2491 | "@esbuild/linux-arm64": { 2492 | "version": "0.20.1", 2493 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.1.tgz", 2494 | "integrity": "sha512-cX8WdlF6Cnvw/DO9/X7XLH2J6CkBnz7Twjpk56cshk9sjYVcuh4sXQBy5bmTwzBjNVZze2yaV1vtcJS04LbN8w==", 2495 | "dev": true, 2496 | "optional": true 2497 | }, 2498 | "@esbuild/linux-ia32": { 2499 | "version": "0.20.1", 2500 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.1.tgz", 2501 | "integrity": "sha512-4H/sQCy1mnnGkUt/xszaLlYJVTz3W9ep52xEefGtd6yXDQbz/5fZE5dFLUgsPdbUOQANcVUa5iO6g3nyy5BJiw==", 2502 | "dev": true, 2503 | "optional": true 2504 | }, 2505 | "@esbuild/linux-loong64": { 2506 | "version": "0.20.1", 2507 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.1.tgz", 2508 | "integrity": "sha512-c0jgtB+sRHCciVXlyjDcWb2FUuzlGVRwGXgI+3WqKOIuoo8AmZAddzeOHeYLtD+dmtHw3B4Xo9wAUdjlfW5yYA==", 2509 | "dev": true, 2510 | "optional": true 2511 | }, 2512 | "@esbuild/linux-mips64el": { 2513 | "version": "0.20.1", 2514 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.1.tgz", 2515 | "integrity": "sha512-TgFyCfIxSujyuqdZKDZ3yTwWiGv+KnlOeXXitCQ+trDODJ+ZtGOzLkSWngynP0HZnTsDyBbPy7GWVXWaEl6lhA==", 2516 | "dev": true, 2517 | "optional": true 2518 | }, 2519 | "@esbuild/linux-ppc64": { 2520 | "version": "0.20.1", 2521 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.1.tgz", 2522 | "integrity": "sha512-b+yuD1IUeL+Y93PmFZDZFIElwbmFfIKLKlYI8M6tRyzE6u7oEP7onGk0vZRh8wfVGC2dZoy0EqX1V8qok4qHaw==", 2523 | "dev": true, 2524 | "optional": true 2525 | }, 2526 | "@esbuild/linux-riscv64": { 2527 | "version": "0.20.1", 2528 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.1.tgz", 2529 | "integrity": "sha512-wpDlpE0oRKZwX+GfomcALcouqjjV8MIX8DyTrxfyCfXxoKQSDm45CZr9fanJ4F6ckD4yDEPT98SrjvLwIqUCgg==", 2530 | "dev": true, 2531 | "optional": true 2532 | }, 2533 | "@esbuild/linux-s390x": { 2534 | "version": "0.20.1", 2535 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.1.tgz", 2536 | "integrity": "sha512-5BepC2Au80EohQ2dBpyTquqGCES7++p7G+7lXe1bAIvMdXm4YYcEfZtQrP4gaoZ96Wv1Ute61CEHFU7h4FMueQ==", 2537 | "dev": true, 2538 | "optional": true 2539 | }, 2540 | "@esbuild/linux-x64": { 2541 | "version": "0.20.1", 2542 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.1.tgz", 2543 | "integrity": "sha512-5gRPk7pKuaIB+tmH+yKd2aQTRpqlf1E4f/mC+tawIm/CGJemZcHZpp2ic8oD83nKgUPMEd0fNanrnFljiruuyA==", 2544 | "dev": true, 2545 | "optional": true 2546 | }, 2547 | "@esbuild/netbsd-x64": { 2548 | "version": "0.20.1", 2549 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.1.tgz", 2550 | "integrity": "sha512-4fL68JdrLV2nVW2AaWZBv3XEm3Ae3NZn/7qy2KGAt3dexAgSVT+Hc97JKSZnqezgMlv9x6KV0ZkZY7UO5cNLCg==", 2551 | "dev": true, 2552 | "optional": true 2553 | }, 2554 | "@esbuild/openbsd-x64": { 2555 | "version": "0.20.1", 2556 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.1.tgz", 2557 | "integrity": "sha512-GhRuXlvRE+twf2ES+8REbeCb/zeikNqwD3+6S5y5/x+DYbAQUNl0HNBs4RQJqrechS4v4MruEr8ZtAin/hK5iw==", 2558 | "dev": true, 2559 | "optional": true 2560 | }, 2561 | "@esbuild/sunos-x64": { 2562 | "version": "0.20.1", 2563 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.1.tgz", 2564 | "integrity": "sha512-ZnWEyCM0G1Ex6JtsygvC3KUUrlDXqOihw8RicRuQAzw+c4f1D66YlPNNV3rkjVW90zXVsHwZYWbJh3v+oQFM9Q==", 2565 | "dev": true, 2566 | "optional": true 2567 | }, 2568 | "@esbuild/win32-arm64": { 2569 | "version": "0.20.1", 2570 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.1.tgz", 2571 | "integrity": "sha512-QZ6gXue0vVQY2Oon9WyLFCdSuYbXSoxaZrPuJ4c20j6ICedfsDilNPYfHLlMH7vGfU5DQR0czHLmJvH4Nzis/A==", 2572 | "dev": true, 2573 | "optional": true 2574 | }, 2575 | "@esbuild/win32-ia32": { 2576 | "version": "0.20.1", 2577 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.1.tgz", 2578 | "integrity": "sha512-HzcJa1NcSWTAU0MJIxOho8JftNp9YALui3o+Ny7hCh0v5f90nprly1U3Sj1Ldj/CvKKdvvFsCRvDkpsEMp4DNw==", 2579 | "dev": true, 2580 | "optional": true 2581 | }, 2582 | "@esbuild/win32-x64": { 2583 | "version": "0.20.1", 2584 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.1.tgz", 2585 | "integrity": "sha512-0MBh53o6XtI6ctDnRMeQ+xoCN8kD2qI1rY1KgF/xdWQwoFeKou7puvDfV8/Wv4Ctx2rRpET/gGdz3YlNtNACSA==", 2586 | "dev": true, 2587 | "optional": true 2588 | }, 2589 | "@eslint-community/eslint-utils": { 2590 | "version": "4.4.0", 2591 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 2592 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 2593 | "dev": true, 2594 | "requires": { 2595 | "eslint-visitor-keys": "^3.3.0" 2596 | } 2597 | }, 2598 | "@eslint-community/regexpp": { 2599 | "version": "4.10.0", 2600 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", 2601 | "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", 2602 | "dev": true 2603 | }, 2604 | "@eslint/eslintrc": { 2605 | "version": "2.1.4", 2606 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", 2607 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", 2608 | "dev": true, 2609 | "peer": true, 2610 | "requires": { 2611 | "ajv": "^6.12.4", 2612 | "debug": "^4.3.2", 2613 | "espree": "^9.6.0", 2614 | "globals": "^13.19.0", 2615 | "ignore": "^5.2.0", 2616 | "import-fresh": "^3.2.1", 2617 | "js-yaml": "^4.1.0", 2618 | "minimatch": "^3.1.2", 2619 | "strip-json-comments": "^3.1.1" 2620 | }, 2621 | "dependencies": { 2622 | "brace-expansion": { 2623 | "version": "1.1.11", 2624 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 2625 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 2626 | "dev": true, 2627 | "peer": true, 2628 | "requires": { 2629 | "balanced-match": "^1.0.0", 2630 | "concat-map": "0.0.1" 2631 | } 2632 | }, 2633 | "minimatch": { 2634 | "version": "3.1.2", 2635 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2636 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2637 | "dev": true, 2638 | "peer": true, 2639 | "requires": { 2640 | "brace-expansion": "^1.1.7" 2641 | } 2642 | } 2643 | } 2644 | }, 2645 | "@eslint/js": { 2646 | "version": "8.56.0", 2647 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", 2648 | "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", 2649 | "dev": true, 2650 | "peer": true 2651 | }, 2652 | "@fastify/busboy": { 2653 | "version": "2.1.0", 2654 | "resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.0.tgz", 2655 | "integrity": "sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==" 2656 | }, 2657 | "@humanwhocodes/config-array": { 2658 | "version": "0.11.14", 2659 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", 2660 | "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", 2661 | "dev": true, 2662 | "peer": true, 2663 | "requires": { 2664 | "@humanwhocodes/object-schema": "^2.0.2", 2665 | "debug": "^4.3.1", 2666 | "minimatch": "^3.0.5" 2667 | }, 2668 | "dependencies": { 2669 | "brace-expansion": { 2670 | "version": "1.1.11", 2671 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 2672 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 2673 | "dev": true, 2674 | "peer": true, 2675 | "requires": { 2676 | "balanced-match": "^1.0.0", 2677 | "concat-map": "0.0.1" 2678 | } 2679 | }, 2680 | "minimatch": { 2681 | "version": "3.1.2", 2682 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2683 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2684 | "dev": true, 2685 | "peer": true, 2686 | "requires": { 2687 | "brace-expansion": "^1.1.7" 2688 | } 2689 | } 2690 | } 2691 | }, 2692 | "@humanwhocodes/module-importer": { 2693 | "version": "1.0.1", 2694 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 2695 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 2696 | "dev": true, 2697 | "peer": true 2698 | }, 2699 | "@humanwhocodes/object-schema": { 2700 | "version": "2.0.2", 2701 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", 2702 | "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", 2703 | "dev": true, 2704 | "peer": true 2705 | }, 2706 | "@nodelib/fs.scandir": { 2707 | "version": "2.1.5", 2708 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 2709 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 2710 | "dev": true, 2711 | "requires": { 2712 | "@nodelib/fs.stat": "2.0.5", 2713 | "run-parallel": "^1.1.9" 2714 | } 2715 | }, 2716 | "@nodelib/fs.stat": { 2717 | "version": "2.0.5", 2718 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 2719 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 2720 | "dev": true 2721 | }, 2722 | "@nodelib/fs.walk": { 2723 | "version": "1.2.8", 2724 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 2725 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 2726 | "dev": true, 2727 | "requires": { 2728 | "@nodelib/fs.scandir": "2.1.5", 2729 | "fastq": "^1.6.0" 2730 | } 2731 | }, 2732 | "@octokit/auth-token": { 2733 | "version": "4.0.0", 2734 | "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-4.0.0.tgz", 2735 | "integrity": "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==" 2736 | }, 2737 | "@octokit/core": { 2738 | "version": "5.1.0", 2739 | "resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.1.0.tgz", 2740 | "integrity": "sha512-BDa2VAMLSh3otEiaMJ/3Y36GU4qf6GI+VivQ/P41NC6GHcdxpKlqV0ikSZ5gdQsmS3ojXeRx5vasgNTinF0Q4g==", 2741 | "requires": { 2742 | "@octokit/auth-token": "^4.0.0", 2743 | "@octokit/graphql": "^7.0.0", 2744 | "@octokit/request": "^8.0.2", 2745 | "@octokit/request-error": "^5.0.0", 2746 | "@octokit/types": "^12.0.0", 2747 | "before-after-hook": "^2.2.0", 2748 | "universal-user-agent": "^6.0.0" 2749 | } 2750 | }, 2751 | "@octokit/endpoint": { 2752 | "version": "9.0.4", 2753 | "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.4.tgz", 2754 | "integrity": "sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==", 2755 | "requires": { 2756 | "@octokit/types": "^12.0.0", 2757 | "universal-user-agent": "^6.0.0" 2758 | } 2759 | }, 2760 | "@octokit/graphql": { 2761 | "version": "7.0.2", 2762 | "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-7.0.2.tgz", 2763 | "integrity": "sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==", 2764 | "requires": { 2765 | "@octokit/request": "^8.0.1", 2766 | "@octokit/types": "^12.0.0", 2767 | "universal-user-agent": "^6.0.0" 2768 | } 2769 | }, 2770 | "@octokit/openapi-types": { 2771 | "version": "19.1.0", 2772 | "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-19.1.0.tgz", 2773 | "integrity": "sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw==" 2774 | }, 2775 | "@octokit/plugin-paginate-rest": { 2776 | "version": "9.1.5", 2777 | "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.1.5.tgz", 2778 | "integrity": "sha512-WKTQXxK+bu49qzwv4qKbMMRXej1DU2gq017euWyKVudA6MldaSSQuxtz+vGbhxV4CjxpUxjZu6rM2wfc1FiWVg==", 2779 | "requires": { 2780 | "@octokit/types": "^12.4.0" 2781 | } 2782 | }, 2783 | "@octokit/plugin-rest-endpoint-methods": { 2784 | "version": "10.3.0", 2785 | "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-10.3.0.tgz", 2786 | "integrity": "sha512-c/fjpoHispRvBZuRoTVt/uALg7pXa9RQbXWJiDMk6NDkGNomuAZG7YuYYpZoxeoXv+kVRjIDTsO0e1z0pei+PQ==", 2787 | "requires": { 2788 | "@octokit/types": "^12.4.0" 2789 | } 2790 | }, 2791 | "@octokit/request": { 2792 | "version": "8.2.0", 2793 | "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.2.0.tgz", 2794 | "integrity": "sha512-exPif6x5uwLqv1N1irkLG1zZNJkOtj8bZxuVHd71U5Ftuxf2wGNvAJyNBcPbPC+EBzwYEbBDdSFb8EPcjpYxPQ==", 2795 | "requires": { 2796 | "@octokit/endpoint": "^9.0.0", 2797 | "@octokit/request-error": "^5.0.0", 2798 | "@octokit/types": "^12.0.0", 2799 | "universal-user-agent": "^6.0.0" 2800 | } 2801 | }, 2802 | "@octokit/request-error": { 2803 | "version": "5.0.1", 2804 | "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-5.0.1.tgz", 2805 | "integrity": "sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==", 2806 | "requires": { 2807 | "@octokit/types": "^12.0.0", 2808 | "deprecation": "^2.0.0", 2809 | "once": "^1.4.0" 2810 | } 2811 | }, 2812 | "@octokit/types": { 2813 | "version": "12.5.0", 2814 | "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.5.0.tgz", 2815 | "integrity": "sha512-YJEKcb0KkJlIUNU/zjnZwHEP8AoVh/OoIcP/1IyR4UHxExz7fzpe/a8IG4wBtQi7QDEqiomVLX88S6FpxxAJtg==", 2816 | "requires": { 2817 | "@octokit/openapi-types": "^19.1.0" 2818 | } 2819 | }, 2820 | "@types/json-schema": { 2821 | "version": "7.0.15", 2822 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 2823 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 2824 | "dev": true 2825 | }, 2826 | "@types/node": { 2827 | "version": "20.11.19", 2828 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.19.tgz", 2829 | "integrity": "sha512-7xMnVEcZFu0DikYjWOlRq7NTPETrm7teqUT2WkQjrTIkEgUyyGdWsj/Zg8bEJt5TNklzbPD1X3fqfsHw3SpapQ==", 2830 | "dev": true, 2831 | "requires": { 2832 | "undici-types": "~5.26.4" 2833 | } 2834 | }, 2835 | "@types/semver": { 2836 | "version": "7.5.7", 2837 | "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.7.tgz", 2838 | "integrity": "sha512-/wdoPq1QqkSj9/QOeKkFquEuPzQbHTWAMPH/PaUMB+JuR31lXhlWXRZ52IpfDYVlDOUBvX09uBrPwxGT1hjNBg==", 2839 | "dev": true 2840 | }, 2841 | "@typescript-eslint/eslint-plugin": { 2842 | "version": "7.0.2", 2843 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.0.2.tgz", 2844 | "integrity": "sha512-/XtVZJtbaphtdrWjr+CJclaCVGPtOdBpFEnvtNf/jRV0IiEemRrL0qABex/nEt8isYcnFacm3nPHYQwL+Wb7qg==", 2845 | "dev": true, 2846 | "requires": { 2847 | "@eslint-community/regexpp": "^4.5.1", 2848 | "@typescript-eslint/scope-manager": "7.0.2", 2849 | "@typescript-eslint/type-utils": "7.0.2", 2850 | "@typescript-eslint/utils": "7.0.2", 2851 | "@typescript-eslint/visitor-keys": "7.0.2", 2852 | "debug": "^4.3.4", 2853 | "graphemer": "^1.4.0", 2854 | "ignore": "^5.2.4", 2855 | "natural-compare": "^1.4.0", 2856 | "semver": "^7.5.4", 2857 | "ts-api-utils": "^1.0.1" 2858 | } 2859 | }, 2860 | "@typescript-eslint/parser": { 2861 | "version": "7.0.2", 2862 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.0.2.tgz", 2863 | "integrity": "sha512-GdwfDglCxSmU+QTS9vhz2Sop46ebNCXpPPvsByK7hu0rFGRHL+AusKQJ7SoN+LbLh6APFpQwHKmDSwN35Z700Q==", 2864 | "dev": true, 2865 | "requires": { 2866 | "@typescript-eslint/scope-manager": "7.0.2", 2867 | "@typescript-eslint/types": "7.0.2", 2868 | "@typescript-eslint/typescript-estree": "7.0.2", 2869 | "@typescript-eslint/visitor-keys": "7.0.2", 2870 | "debug": "^4.3.4" 2871 | } 2872 | }, 2873 | "@typescript-eslint/scope-manager": { 2874 | "version": "7.0.2", 2875 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.0.2.tgz", 2876 | "integrity": "sha512-l6sa2jF3h+qgN2qUMjVR3uCNGjWw4ahGfzIYsCtFrQJCjhbrDPdiihYT8FnnqFwsWX+20hK592yX9I2rxKTP4g==", 2877 | "dev": true, 2878 | "requires": { 2879 | "@typescript-eslint/types": "7.0.2", 2880 | "@typescript-eslint/visitor-keys": "7.0.2" 2881 | } 2882 | }, 2883 | "@typescript-eslint/type-utils": { 2884 | "version": "7.0.2", 2885 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.0.2.tgz", 2886 | "integrity": "sha512-IKKDcFsKAYlk8Rs4wiFfEwJTQlHcdn8CLwLaxwd6zb8HNiMcQIFX9sWax2k4Cjj7l7mGS5N1zl7RCHOVwHq2VQ==", 2887 | "dev": true, 2888 | "requires": { 2889 | "@typescript-eslint/typescript-estree": "7.0.2", 2890 | "@typescript-eslint/utils": "7.0.2", 2891 | "debug": "^4.3.4", 2892 | "ts-api-utils": "^1.0.1" 2893 | } 2894 | }, 2895 | "@typescript-eslint/types": { 2896 | "version": "7.0.2", 2897 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.0.2.tgz", 2898 | "integrity": "sha512-ZzcCQHj4JaXFjdOql6adYV4B/oFOFjPOC9XYwCaZFRvqN8Llfvv4gSxrkQkd2u4Ci62i2c6W6gkDwQJDaRc4nA==", 2899 | "dev": true 2900 | }, 2901 | "@typescript-eslint/typescript-estree": { 2902 | "version": "7.0.2", 2903 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.0.2.tgz", 2904 | "integrity": "sha512-3AMc8khTcELFWcKcPc0xiLviEvvfzATpdPj/DXuOGIdQIIFybf4DMT1vKRbuAEOFMwhWt7NFLXRkbjsvKZQyvw==", 2905 | "dev": true, 2906 | "requires": { 2907 | "@typescript-eslint/types": "7.0.2", 2908 | "@typescript-eslint/visitor-keys": "7.0.2", 2909 | "debug": "^4.3.4", 2910 | "globby": "^11.1.0", 2911 | "is-glob": "^4.0.3", 2912 | "minimatch": "9.0.3", 2913 | "semver": "^7.5.4", 2914 | "ts-api-utils": "^1.0.1" 2915 | } 2916 | }, 2917 | "@typescript-eslint/utils": { 2918 | "version": "7.0.2", 2919 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.0.2.tgz", 2920 | "integrity": "sha512-PZPIONBIB/X684bhT1XlrkjNZJIEevwkKDsdwfiu1WeqBxYEEdIgVDgm8/bbKHVu+6YOpeRqcfImTdImx/4Bsw==", 2921 | "dev": true, 2922 | "requires": { 2923 | "@eslint-community/eslint-utils": "^4.4.0", 2924 | "@types/json-schema": "^7.0.12", 2925 | "@types/semver": "^7.5.0", 2926 | "@typescript-eslint/scope-manager": "7.0.2", 2927 | "@typescript-eslint/types": "7.0.2", 2928 | "@typescript-eslint/typescript-estree": "7.0.2", 2929 | "semver": "^7.5.4" 2930 | } 2931 | }, 2932 | "@typescript-eslint/visitor-keys": { 2933 | "version": "7.0.2", 2934 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.0.2.tgz", 2935 | "integrity": "sha512-8Y+YiBmqPighbm5xA2k4wKTxRzx9EkBu7Rlw+WHqMvRJ3RPz/BMBO9b2ru0LUNmXg120PHUXD5+SWFy2R8DqlQ==", 2936 | "dev": true, 2937 | "requires": { 2938 | "@typescript-eslint/types": "7.0.2", 2939 | "eslint-visitor-keys": "^3.4.1" 2940 | } 2941 | }, 2942 | "@ungap/structured-clone": { 2943 | "version": "1.2.0", 2944 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", 2945 | "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", 2946 | "dev": true, 2947 | "peer": true 2948 | }, 2949 | "acorn": { 2950 | "version": "8.11.3", 2951 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", 2952 | "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", 2953 | "dev": true, 2954 | "peer": true 2955 | }, 2956 | "acorn-jsx": { 2957 | "version": "5.3.2", 2958 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 2959 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 2960 | "dev": true, 2961 | "peer": true, 2962 | "requires": {} 2963 | }, 2964 | "ajv": { 2965 | "version": "6.12.6", 2966 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 2967 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 2968 | "dev": true, 2969 | "peer": true, 2970 | "requires": { 2971 | "fast-deep-equal": "^3.1.1", 2972 | "fast-json-stable-stringify": "^2.0.0", 2973 | "json-schema-traverse": "^0.4.1", 2974 | "uri-js": "^4.2.2" 2975 | } 2976 | }, 2977 | "ansi-regex": { 2978 | "version": "5.0.1", 2979 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 2980 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 2981 | "dev": true, 2982 | "peer": true 2983 | }, 2984 | "ansi-styles": { 2985 | "version": "4.3.0", 2986 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 2987 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 2988 | "dev": true, 2989 | "peer": true, 2990 | "requires": { 2991 | "color-convert": "^2.0.1" 2992 | } 2993 | }, 2994 | "argparse": { 2995 | "version": "2.0.1", 2996 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 2997 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 2998 | "dev": true, 2999 | "peer": true 3000 | }, 3001 | "array-union": { 3002 | "version": "2.1.0", 3003 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 3004 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 3005 | "dev": true 3006 | }, 3007 | "balanced-match": { 3008 | "version": "1.0.2", 3009 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 3010 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 3011 | "dev": true 3012 | }, 3013 | "before-after-hook": { 3014 | "version": "2.2.3", 3015 | "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", 3016 | "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==" 3017 | }, 3018 | "brace-expansion": { 3019 | "version": "2.0.1", 3020 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 3021 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 3022 | "dev": true, 3023 | "requires": { 3024 | "balanced-match": "^1.0.0" 3025 | } 3026 | }, 3027 | "braces": { 3028 | "version": "3.0.2", 3029 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 3030 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 3031 | "dev": true, 3032 | "requires": { 3033 | "fill-range": "^7.0.1" 3034 | } 3035 | }, 3036 | "callsites": { 3037 | "version": "3.1.0", 3038 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 3039 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 3040 | "dev": true, 3041 | "peer": true 3042 | }, 3043 | "chalk": { 3044 | "version": "4.1.2", 3045 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 3046 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 3047 | "dev": true, 3048 | "peer": true, 3049 | "requires": { 3050 | "ansi-styles": "^4.1.0", 3051 | "supports-color": "^7.1.0" 3052 | } 3053 | }, 3054 | "color-convert": { 3055 | "version": "2.0.1", 3056 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 3057 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 3058 | "dev": true, 3059 | "peer": true, 3060 | "requires": { 3061 | "color-name": "~1.1.4" 3062 | } 3063 | }, 3064 | "color-name": { 3065 | "version": "1.1.4", 3066 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 3067 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 3068 | "dev": true, 3069 | "peer": true 3070 | }, 3071 | "concat-map": { 3072 | "version": "0.0.1", 3073 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 3074 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 3075 | "dev": true, 3076 | "peer": true 3077 | }, 3078 | "cross-spawn": { 3079 | "version": "7.0.3", 3080 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 3081 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 3082 | "dev": true, 3083 | "peer": true, 3084 | "requires": { 3085 | "path-key": "^3.1.0", 3086 | "shebang-command": "^2.0.0", 3087 | "which": "^2.0.1" 3088 | } 3089 | }, 3090 | "debug": { 3091 | "version": "4.3.4", 3092 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 3093 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 3094 | "dev": true, 3095 | "requires": { 3096 | "ms": "2.1.2" 3097 | } 3098 | }, 3099 | "deep-is": { 3100 | "version": "0.1.4", 3101 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 3102 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 3103 | "dev": true, 3104 | "peer": true 3105 | }, 3106 | "deprecation": { 3107 | "version": "2.3.1", 3108 | "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", 3109 | "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==" 3110 | }, 3111 | "dir-glob": { 3112 | "version": "3.0.1", 3113 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 3114 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 3115 | "dev": true, 3116 | "requires": { 3117 | "path-type": "^4.0.0" 3118 | } 3119 | }, 3120 | "doctrine": { 3121 | "version": "3.0.0", 3122 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 3123 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 3124 | "dev": true, 3125 | "peer": true, 3126 | "requires": { 3127 | "esutils": "^2.0.2" 3128 | } 3129 | }, 3130 | "esbuild": { 3131 | "version": "0.20.1", 3132 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.1.tgz", 3133 | "integrity": "sha512-OJwEgrpWm/PCMsLVWXKqvcjme3bHNpOgN7Tb6cQnR5n0TPbQx1/Xrn7rqM+wn17bYeT6MGB5sn1Bh5YiGi70nA==", 3134 | "dev": true, 3135 | "requires": { 3136 | "@esbuild/aix-ppc64": "0.20.1", 3137 | "@esbuild/android-arm": "0.20.1", 3138 | "@esbuild/android-arm64": "0.20.1", 3139 | "@esbuild/android-x64": "0.20.1", 3140 | "@esbuild/darwin-arm64": "0.20.1", 3141 | "@esbuild/darwin-x64": "0.20.1", 3142 | "@esbuild/freebsd-arm64": "0.20.1", 3143 | "@esbuild/freebsd-x64": "0.20.1", 3144 | "@esbuild/linux-arm": "0.20.1", 3145 | "@esbuild/linux-arm64": "0.20.1", 3146 | "@esbuild/linux-ia32": "0.20.1", 3147 | "@esbuild/linux-loong64": "0.20.1", 3148 | "@esbuild/linux-mips64el": "0.20.1", 3149 | "@esbuild/linux-ppc64": "0.20.1", 3150 | "@esbuild/linux-riscv64": "0.20.1", 3151 | "@esbuild/linux-s390x": "0.20.1", 3152 | "@esbuild/linux-x64": "0.20.1", 3153 | "@esbuild/netbsd-x64": "0.20.1", 3154 | "@esbuild/openbsd-x64": "0.20.1", 3155 | "@esbuild/sunos-x64": "0.20.1", 3156 | "@esbuild/win32-arm64": "0.20.1", 3157 | "@esbuild/win32-ia32": "0.20.1", 3158 | "@esbuild/win32-x64": "0.20.1" 3159 | } 3160 | }, 3161 | "escape-string-regexp": { 3162 | "version": "4.0.0", 3163 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 3164 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 3165 | "dev": true, 3166 | "peer": true 3167 | }, 3168 | "eslint": { 3169 | "version": "8.56.0", 3170 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", 3171 | "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", 3172 | "dev": true, 3173 | "peer": true, 3174 | "requires": { 3175 | "@eslint-community/eslint-utils": "^4.2.0", 3176 | "@eslint-community/regexpp": "^4.6.1", 3177 | "@eslint/eslintrc": "^2.1.4", 3178 | "@eslint/js": "8.56.0", 3179 | "@humanwhocodes/config-array": "^0.11.13", 3180 | "@humanwhocodes/module-importer": "^1.0.1", 3181 | "@nodelib/fs.walk": "^1.2.8", 3182 | "@ungap/structured-clone": "^1.2.0", 3183 | "ajv": "^6.12.4", 3184 | "chalk": "^4.0.0", 3185 | "cross-spawn": "^7.0.2", 3186 | "debug": "^4.3.2", 3187 | "doctrine": "^3.0.0", 3188 | "escape-string-regexp": "^4.0.0", 3189 | "eslint-scope": "^7.2.2", 3190 | "eslint-visitor-keys": "^3.4.3", 3191 | "espree": "^9.6.1", 3192 | "esquery": "^1.4.2", 3193 | "esutils": "^2.0.2", 3194 | "fast-deep-equal": "^3.1.3", 3195 | "file-entry-cache": "^6.0.1", 3196 | "find-up": "^5.0.0", 3197 | "glob-parent": "^6.0.2", 3198 | "globals": "^13.19.0", 3199 | "graphemer": "^1.4.0", 3200 | "ignore": "^5.2.0", 3201 | "imurmurhash": "^0.1.4", 3202 | "is-glob": "^4.0.0", 3203 | "is-path-inside": "^3.0.3", 3204 | "js-yaml": "^4.1.0", 3205 | "json-stable-stringify-without-jsonify": "^1.0.1", 3206 | "levn": "^0.4.1", 3207 | "lodash.merge": "^4.6.2", 3208 | "minimatch": "^3.1.2", 3209 | "natural-compare": "^1.4.0", 3210 | "optionator": "^0.9.3", 3211 | "strip-ansi": "^6.0.1", 3212 | "text-table": "^0.2.0" 3213 | }, 3214 | "dependencies": { 3215 | "brace-expansion": { 3216 | "version": "1.1.11", 3217 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 3218 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 3219 | "dev": true, 3220 | "peer": true, 3221 | "requires": { 3222 | "balanced-match": "^1.0.0", 3223 | "concat-map": "0.0.1" 3224 | } 3225 | }, 3226 | "minimatch": { 3227 | "version": "3.1.2", 3228 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 3229 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 3230 | "dev": true, 3231 | "peer": true, 3232 | "requires": { 3233 | "brace-expansion": "^1.1.7" 3234 | } 3235 | } 3236 | } 3237 | }, 3238 | "eslint-scope": { 3239 | "version": "7.2.2", 3240 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 3241 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 3242 | "dev": true, 3243 | "peer": true, 3244 | "requires": { 3245 | "esrecurse": "^4.3.0", 3246 | "estraverse": "^5.2.0" 3247 | } 3248 | }, 3249 | "eslint-visitor-keys": { 3250 | "version": "3.4.3", 3251 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 3252 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 3253 | "dev": true 3254 | }, 3255 | "espree": { 3256 | "version": "9.6.1", 3257 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 3258 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 3259 | "dev": true, 3260 | "peer": true, 3261 | "requires": { 3262 | "acorn": "^8.9.0", 3263 | "acorn-jsx": "^5.3.2", 3264 | "eslint-visitor-keys": "^3.4.1" 3265 | } 3266 | }, 3267 | "esquery": { 3268 | "version": "1.5.0", 3269 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 3270 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 3271 | "dev": true, 3272 | "peer": true, 3273 | "requires": { 3274 | "estraverse": "^5.1.0" 3275 | } 3276 | }, 3277 | "esrecurse": { 3278 | "version": "4.3.0", 3279 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 3280 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 3281 | "dev": true, 3282 | "peer": true, 3283 | "requires": { 3284 | "estraverse": "^5.2.0" 3285 | } 3286 | }, 3287 | "estraverse": { 3288 | "version": "5.3.0", 3289 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 3290 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 3291 | "dev": true, 3292 | "peer": true 3293 | }, 3294 | "esutils": { 3295 | "version": "2.0.3", 3296 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 3297 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 3298 | "dev": true, 3299 | "peer": true 3300 | }, 3301 | "fast-deep-equal": { 3302 | "version": "3.1.3", 3303 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 3304 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 3305 | "dev": true, 3306 | "peer": true 3307 | }, 3308 | "fast-glob": { 3309 | "version": "3.3.2", 3310 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 3311 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 3312 | "dev": true, 3313 | "requires": { 3314 | "@nodelib/fs.stat": "^2.0.2", 3315 | "@nodelib/fs.walk": "^1.2.3", 3316 | "glob-parent": "^5.1.2", 3317 | "merge2": "^1.3.0", 3318 | "micromatch": "^4.0.4" 3319 | }, 3320 | "dependencies": { 3321 | "glob-parent": { 3322 | "version": "5.1.2", 3323 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 3324 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 3325 | "dev": true, 3326 | "requires": { 3327 | "is-glob": "^4.0.1" 3328 | } 3329 | } 3330 | } 3331 | }, 3332 | "fast-json-stable-stringify": { 3333 | "version": "2.1.0", 3334 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 3335 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 3336 | "dev": true, 3337 | "peer": true 3338 | }, 3339 | "fast-levenshtein": { 3340 | "version": "2.0.6", 3341 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 3342 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 3343 | "dev": true, 3344 | "peer": true 3345 | }, 3346 | "fastq": { 3347 | "version": "1.17.1", 3348 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", 3349 | "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", 3350 | "dev": true, 3351 | "requires": { 3352 | "reusify": "^1.0.4" 3353 | } 3354 | }, 3355 | "file-entry-cache": { 3356 | "version": "6.0.1", 3357 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 3358 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 3359 | "dev": true, 3360 | "peer": true, 3361 | "requires": { 3362 | "flat-cache": "^3.0.4" 3363 | } 3364 | }, 3365 | "fill-range": { 3366 | "version": "7.0.1", 3367 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 3368 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 3369 | "dev": true, 3370 | "requires": { 3371 | "to-regex-range": "^5.0.1" 3372 | } 3373 | }, 3374 | "find-up": { 3375 | "version": "5.0.0", 3376 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 3377 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 3378 | "dev": true, 3379 | "peer": true, 3380 | "requires": { 3381 | "locate-path": "^6.0.0", 3382 | "path-exists": "^4.0.0" 3383 | } 3384 | }, 3385 | "flat-cache": { 3386 | "version": "3.2.0", 3387 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", 3388 | "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", 3389 | "dev": true, 3390 | "peer": true, 3391 | "requires": { 3392 | "flatted": "^3.2.9", 3393 | "keyv": "^4.5.3", 3394 | "rimraf": "^3.0.2" 3395 | } 3396 | }, 3397 | "flatted": { 3398 | "version": "3.3.0", 3399 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.0.tgz", 3400 | "integrity": "sha512-noqGuLw158+DuD9UPRKHpJ2hGxpFyDlYYrfM0mWt4XhT4n0lwzTLh70Tkdyy4kyTmyTT9Bv7bWAJqw7cgkEXDg==", 3401 | "dev": true, 3402 | "peer": true 3403 | }, 3404 | "fs.realpath": { 3405 | "version": "1.0.0", 3406 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 3407 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 3408 | "dev": true, 3409 | "peer": true 3410 | }, 3411 | "glob": { 3412 | "version": "7.2.3", 3413 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 3414 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 3415 | "dev": true, 3416 | "peer": true, 3417 | "requires": { 3418 | "fs.realpath": "^1.0.0", 3419 | "inflight": "^1.0.4", 3420 | "inherits": "2", 3421 | "minimatch": "^3.1.1", 3422 | "once": "^1.3.0", 3423 | "path-is-absolute": "^1.0.0" 3424 | }, 3425 | "dependencies": { 3426 | "brace-expansion": { 3427 | "version": "1.1.11", 3428 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 3429 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 3430 | "dev": true, 3431 | "peer": true, 3432 | "requires": { 3433 | "balanced-match": "^1.0.0", 3434 | "concat-map": "0.0.1" 3435 | } 3436 | }, 3437 | "minimatch": { 3438 | "version": "3.1.2", 3439 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 3440 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 3441 | "dev": true, 3442 | "peer": true, 3443 | "requires": { 3444 | "brace-expansion": "^1.1.7" 3445 | } 3446 | } 3447 | } 3448 | }, 3449 | "glob-parent": { 3450 | "version": "6.0.2", 3451 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 3452 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 3453 | "dev": true, 3454 | "peer": true, 3455 | "requires": { 3456 | "is-glob": "^4.0.3" 3457 | } 3458 | }, 3459 | "globals": { 3460 | "version": "13.24.0", 3461 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 3462 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 3463 | "dev": true, 3464 | "peer": true, 3465 | "requires": { 3466 | "type-fest": "^0.20.2" 3467 | } 3468 | }, 3469 | "globby": { 3470 | "version": "11.1.0", 3471 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 3472 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 3473 | "dev": true, 3474 | "requires": { 3475 | "array-union": "^2.1.0", 3476 | "dir-glob": "^3.0.1", 3477 | "fast-glob": "^3.2.9", 3478 | "ignore": "^5.2.0", 3479 | "merge2": "^1.4.1", 3480 | "slash": "^3.0.0" 3481 | } 3482 | }, 3483 | "graphemer": { 3484 | "version": "1.4.0", 3485 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 3486 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 3487 | "dev": true 3488 | }, 3489 | "has-flag": { 3490 | "version": "4.0.0", 3491 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 3492 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 3493 | "dev": true, 3494 | "peer": true 3495 | }, 3496 | "ignore": { 3497 | "version": "5.3.1", 3498 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", 3499 | "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", 3500 | "dev": true 3501 | }, 3502 | "import-fresh": { 3503 | "version": "3.3.0", 3504 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 3505 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 3506 | "dev": true, 3507 | "peer": true, 3508 | "requires": { 3509 | "parent-module": "^1.0.0", 3510 | "resolve-from": "^4.0.0" 3511 | } 3512 | }, 3513 | "imurmurhash": { 3514 | "version": "0.1.4", 3515 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 3516 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 3517 | "dev": true, 3518 | "peer": true 3519 | }, 3520 | "inflight": { 3521 | "version": "1.0.6", 3522 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 3523 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 3524 | "dev": true, 3525 | "peer": true, 3526 | "requires": { 3527 | "once": "^1.3.0", 3528 | "wrappy": "1" 3529 | } 3530 | }, 3531 | "inherits": { 3532 | "version": "2.0.4", 3533 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 3534 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 3535 | "dev": true, 3536 | "peer": true 3537 | }, 3538 | "is-extglob": { 3539 | "version": "2.1.1", 3540 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 3541 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 3542 | "dev": true 3543 | }, 3544 | "is-glob": { 3545 | "version": "4.0.3", 3546 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 3547 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 3548 | "dev": true, 3549 | "requires": { 3550 | "is-extglob": "^2.1.1" 3551 | } 3552 | }, 3553 | "is-number": { 3554 | "version": "7.0.0", 3555 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 3556 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 3557 | "dev": true 3558 | }, 3559 | "is-path-inside": { 3560 | "version": "3.0.3", 3561 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 3562 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 3563 | "dev": true, 3564 | "peer": true 3565 | }, 3566 | "isexe": { 3567 | "version": "2.0.0", 3568 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 3569 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 3570 | "dev": true, 3571 | "peer": true 3572 | }, 3573 | "js-yaml": { 3574 | "version": "4.1.0", 3575 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 3576 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 3577 | "dev": true, 3578 | "peer": true, 3579 | "requires": { 3580 | "argparse": "^2.0.1" 3581 | } 3582 | }, 3583 | "json-buffer": { 3584 | "version": "3.0.1", 3585 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 3586 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 3587 | "dev": true, 3588 | "peer": true 3589 | }, 3590 | "json-schema-traverse": { 3591 | "version": "0.4.1", 3592 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 3593 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 3594 | "dev": true, 3595 | "peer": true 3596 | }, 3597 | "json-stable-stringify-without-jsonify": { 3598 | "version": "1.0.1", 3599 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 3600 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 3601 | "dev": true, 3602 | "peer": true 3603 | }, 3604 | "keyv": { 3605 | "version": "4.5.4", 3606 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 3607 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 3608 | "dev": true, 3609 | "peer": true, 3610 | "requires": { 3611 | "json-buffer": "3.0.1" 3612 | } 3613 | }, 3614 | "levn": { 3615 | "version": "0.4.1", 3616 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 3617 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 3618 | "dev": true, 3619 | "peer": true, 3620 | "requires": { 3621 | "prelude-ls": "^1.2.1", 3622 | "type-check": "~0.4.0" 3623 | } 3624 | }, 3625 | "locate-path": { 3626 | "version": "6.0.0", 3627 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 3628 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 3629 | "dev": true, 3630 | "peer": true, 3631 | "requires": { 3632 | "p-locate": "^5.0.0" 3633 | } 3634 | }, 3635 | "lodash.merge": { 3636 | "version": "4.6.2", 3637 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 3638 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 3639 | "dev": true, 3640 | "peer": true 3641 | }, 3642 | "lru-cache": { 3643 | "version": "6.0.0", 3644 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 3645 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 3646 | "dev": true, 3647 | "requires": { 3648 | "yallist": "^4.0.0" 3649 | } 3650 | }, 3651 | "merge2": { 3652 | "version": "1.4.1", 3653 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 3654 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 3655 | "dev": true 3656 | }, 3657 | "micromatch": { 3658 | "version": "4.0.5", 3659 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 3660 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 3661 | "dev": true, 3662 | "requires": { 3663 | "braces": "^3.0.2", 3664 | "picomatch": "^2.3.1" 3665 | } 3666 | }, 3667 | "minimatch": { 3668 | "version": "9.0.3", 3669 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", 3670 | "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", 3671 | "dev": true, 3672 | "requires": { 3673 | "brace-expansion": "^2.0.1" 3674 | } 3675 | }, 3676 | "ms": { 3677 | "version": "2.1.2", 3678 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 3679 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 3680 | "dev": true 3681 | }, 3682 | "natural-compare": { 3683 | "version": "1.4.0", 3684 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 3685 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 3686 | "dev": true 3687 | }, 3688 | "once": { 3689 | "version": "1.4.0", 3690 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 3691 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 3692 | "requires": { 3693 | "wrappy": "1" 3694 | } 3695 | }, 3696 | "optionator": { 3697 | "version": "0.9.3", 3698 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", 3699 | "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", 3700 | "dev": true, 3701 | "peer": true, 3702 | "requires": { 3703 | "@aashutoshrathi/word-wrap": "^1.2.3", 3704 | "deep-is": "^0.1.3", 3705 | "fast-levenshtein": "^2.0.6", 3706 | "levn": "^0.4.1", 3707 | "prelude-ls": "^1.2.1", 3708 | "type-check": "^0.4.0" 3709 | } 3710 | }, 3711 | "p-limit": { 3712 | "version": "3.1.0", 3713 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 3714 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 3715 | "dev": true, 3716 | "peer": true, 3717 | "requires": { 3718 | "yocto-queue": "^0.1.0" 3719 | } 3720 | }, 3721 | "p-locate": { 3722 | "version": "5.0.0", 3723 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 3724 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 3725 | "dev": true, 3726 | "peer": true, 3727 | "requires": { 3728 | "p-limit": "^3.0.2" 3729 | } 3730 | }, 3731 | "parent-module": { 3732 | "version": "1.0.1", 3733 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 3734 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 3735 | "dev": true, 3736 | "peer": true, 3737 | "requires": { 3738 | "callsites": "^3.0.0" 3739 | } 3740 | }, 3741 | "path-exists": { 3742 | "version": "4.0.0", 3743 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3744 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3745 | "dev": true, 3746 | "peer": true 3747 | }, 3748 | "path-is-absolute": { 3749 | "version": "1.0.1", 3750 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3751 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3752 | "dev": true, 3753 | "peer": true 3754 | }, 3755 | "path-key": { 3756 | "version": "3.1.1", 3757 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3758 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3759 | "dev": true, 3760 | "peer": true 3761 | }, 3762 | "path-type": { 3763 | "version": "4.0.0", 3764 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 3765 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 3766 | "dev": true 3767 | }, 3768 | "picomatch": { 3769 | "version": "2.3.1", 3770 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3771 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3772 | "dev": true 3773 | }, 3774 | "prelude-ls": { 3775 | "version": "1.2.1", 3776 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 3777 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 3778 | "dev": true, 3779 | "peer": true 3780 | }, 3781 | "prettier": { 3782 | "version": "3.2.5", 3783 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", 3784 | "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", 3785 | "dev": true 3786 | }, 3787 | "punycode": { 3788 | "version": "2.3.1", 3789 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 3790 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 3791 | "dev": true, 3792 | "peer": true 3793 | }, 3794 | "queue-microtask": { 3795 | "version": "1.2.3", 3796 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 3797 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 3798 | "dev": true 3799 | }, 3800 | "resolve-from": { 3801 | "version": "4.0.0", 3802 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3803 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3804 | "dev": true, 3805 | "peer": true 3806 | }, 3807 | "reusify": { 3808 | "version": "1.0.4", 3809 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3810 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3811 | "dev": true 3812 | }, 3813 | "rimraf": { 3814 | "version": "3.0.2", 3815 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 3816 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 3817 | "dev": true, 3818 | "peer": true, 3819 | "requires": { 3820 | "glob": "^7.1.3" 3821 | } 3822 | }, 3823 | "run-parallel": { 3824 | "version": "1.2.0", 3825 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3826 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3827 | "dev": true, 3828 | "requires": { 3829 | "queue-microtask": "^1.2.2" 3830 | } 3831 | }, 3832 | "semver": { 3833 | "version": "7.6.0", 3834 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", 3835 | "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", 3836 | "dev": true, 3837 | "requires": { 3838 | "lru-cache": "^6.0.0" 3839 | } 3840 | }, 3841 | "shebang-command": { 3842 | "version": "2.0.0", 3843 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3844 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3845 | "dev": true, 3846 | "peer": true, 3847 | "requires": { 3848 | "shebang-regex": "^3.0.0" 3849 | } 3850 | }, 3851 | "shebang-regex": { 3852 | "version": "3.0.0", 3853 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3854 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3855 | "dev": true, 3856 | "peer": true 3857 | }, 3858 | "slash": { 3859 | "version": "3.0.0", 3860 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3861 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3862 | "dev": true 3863 | }, 3864 | "strip-ansi": { 3865 | "version": "6.0.1", 3866 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3867 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3868 | "dev": true, 3869 | "peer": true, 3870 | "requires": { 3871 | "ansi-regex": "^5.0.1" 3872 | } 3873 | }, 3874 | "strip-json-comments": { 3875 | "version": "3.1.1", 3876 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3877 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3878 | "dev": true, 3879 | "peer": true 3880 | }, 3881 | "supports-color": { 3882 | "version": "7.2.0", 3883 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3884 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3885 | "dev": true, 3886 | "peer": true, 3887 | "requires": { 3888 | "has-flag": "^4.0.0" 3889 | } 3890 | }, 3891 | "text-table": { 3892 | "version": "0.2.0", 3893 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 3894 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 3895 | "dev": true, 3896 | "peer": true 3897 | }, 3898 | "to-regex-range": { 3899 | "version": "5.0.1", 3900 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3901 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3902 | "dev": true, 3903 | "requires": { 3904 | "is-number": "^7.0.0" 3905 | } 3906 | }, 3907 | "ts-api-utils": { 3908 | "version": "1.2.1", 3909 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.2.1.tgz", 3910 | "integrity": "sha512-RIYA36cJn2WiH9Hy77hdF9r7oEwxAtB/TS9/S4Qd90Ap4z5FSiin5zEiTL44OII1Y3IIlEvxwxFUVgrHSZ/UpA==", 3911 | "dev": true, 3912 | "requires": {} 3913 | }, 3914 | "tunnel": { 3915 | "version": "0.0.6", 3916 | "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", 3917 | "integrity": "sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==" 3918 | }, 3919 | "type-check": { 3920 | "version": "0.4.0", 3921 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3922 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3923 | "dev": true, 3924 | "peer": true, 3925 | "requires": { 3926 | "prelude-ls": "^1.2.1" 3927 | } 3928 | }, 3929 | "type-fest": { 3930 | "version": "0.20.2", 3931 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 3932 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 3933 | "dev": true, 3934 | "peer": true 3935 | }, 3936 | "typescript": { 3937 | "version": "5.3.3", 3938 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", 3939 | "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", 3940 | "dev": true 3941 | }, 3942 | "undici": { 3943 | "version": "5.28.3", 3944 | "resolved": "https://registry.npmjs.org/undici/-/undici-5.28.3.tgz", 3945 | "integrity": "sha512-3ItfzbrhDlINjaP0duwnNsKpDQk3acHI3gVJ1z4fmwMK31k5G9OVIAMLSIaP6w4FaGkaAkN6zaQO9LUvZ1t7VA==", 3946 | "requires": { 3947 | "@fastify/busboy": "^2.0.0" 3948 | } 3949 | }, 3950 | "undici-types": { 3951 | "version": "5.26.5", 3952 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", 3953 | "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", 3954 | "dev": true 3955 | }, 3956 | "universal-user-agent": { 3957 | "version": "6.0.1", 3958 | "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz", 3959 | "integrity": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==" 3960 | }, 3961 | "uri-js": { 3962 | "version": "4.4.1", 3963 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3964 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3965 | "dev": true, 3966 | "peer": true, 3967 | "requires": { 3968 | "punycode": "^2.1.0" 3969 | } 3970 | }, 3971 | "uuid": { 3972 | "version": "8.3.2", 3973 | "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", 3974 | "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" 3975 | }, 3976 | "which": { 3977 | "version": "2.0.2", 3978 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3979 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3980 | "dev": true, 3981 | "peer": true, 3982 | "requires": { 3983 | "isexe": "^2.0.0" 3984 | } 3985 | }, 3986 | "wrappy": { 3987 | "version": "1.0.2", 3988 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3989 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" 3990 | }, 3991 | "yallist": { 3992 | "version": "4.0.0", 3993 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 3994 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 3995 | "dev": true 3996 | }, 3997 | "yocto-queue": { 3998 | "version": "0.1.0", 3999 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 4000 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 4001 | "dev": true, 4002 | "peer": true 4003 | } 4004 | } 4005 | } 4006 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "buf-breaking", 3 | "version": "1.0.0", 4 | "scripts": { 5 | "build": "esbuild --minify --bundle --sourcemap '--define:process.env.NODE_ENV=\"production\"' --outdir=dist --platform=node --target=node20 ./src/main.ts", 6 | "eslint": "eslint --max-warnings 0 .", 7 | "format": "prettier --write '**/*.{json,js,jsx,ts,tsx,css}' --loglevel error", 8 | "lint": "npm run eslint && npm run types-check", 9 | "types-check": "tsc --noemit" 10 | }, 11 | "engineStrict": true, 12 | "engines": { 13 | "node": ">=20", 14 | "npm": ">=8" 15 | }, 16 | "dependencies": { 17 | "@actions/core": "^1.10.1", 18 | "@actions/github": "^6.0.0", 19 | "@actions/io": "^1.1.3" 20 | }, 21 | "devDependencies": { 22 | "@typescript-eslint/eslint-plugin": "^7.0.1", 23 | "@typescript-eslint/parser": "^7.0.1", 24 | "@types/node": "^20.11.19", 25 | "@types/semver": "^7.5.7", 26 | "esbuild": "^0.20.1", 27 | "prettier": "^3.2.5", 28 | "typescript": "^5.3.3" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /src/buf.ts: -------------------------------------------------------------------------------- 1 | // Copyright 2020-2025 Buf Technologies, Inc. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // http://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | import * as child from "child_process"; 16 | import { Error, isError } from "./error"; 17 | 18 | // breakingExitCode is the exit code used to signal that buf 19 | // successfully found incompatible changes. 20 | const breakingExitCode = 100; 21 | 22 | // BreakingResult includes both the raw and formatted FileAnnotation 23 | // output of a 'buf breaking` command execution. We include both so 24 | // that we preserve the same content users would see on the command line. 25 | export interface BreakingResult { 26 | raw: string; 27 | fileAnnotations: FileAnnotation[]; 28 | } 29 | 30 | // FileAnnotation is a subset of the buf FileAnnotation definition 31 | // referenced from the following: 32 | // https://github.com/bufbuild/buf/blob/8255257bd94c9f1b5faa27242211c5caad05be79/internal/buf/bufanalysis/bufanalysis.go#L102 33 | export interface FileAnnotation { 34 | message: string; 35 | path?: string; 36 | start_line?: number; 37 | start_column?: number; 38 | } 39 | 40 | // ExecException is a subset of the child.ExecException interface. 41 | interface ExecException { 42 | status: number; 43 | stdout: Buffer | string; 44 | stderr: Buffer | string; 45 | } 46 | 47 | // breaking runs 'buf breaking' with the given command line arguments. 48 | // Note that we run the same 'buf breaking' command twice so that we 49 | // can write out the raw content that users see on the command line. 50 | // We do NOT attempt to reformat the structured FileAnnotation because 51 | // this approach is prone to differentiate from the raw output. 52 | export function breaking( 53 | binaryPath: string, 54 | input: string, 55 | against: string, 56 | ): BreakingResult | Error { 57 | const rawOutput = runBreakingCommand( 58 | `${binaryPath} breaking ${input} --against ${against}`, 59 | ); 60 | if (isError(rawOutput)) { 61 | return rawOutput; 62 | } 63 | const jsonOutput = runBreakingCommand( 64 | `${binaryPath} breaking ${input} --against ${against} --error-format=json`, 65 | ); 66 | if (isError(jsonOutput)) { 67 | return jsonOutput; 68 | } 69 | const fileAnnotations = parseLines( 70 | jsonOutput 71 | .trim() 72 | .split("\n") 73 | .filter((elem) => { 74 | return elem !== ""; 75 | }), 76 | ); 77 | if (isError(fileAnnotations)) { 78 | return fileAnnotations; 79 | } 80 | return { 81 | raw: rawOutput, 82 | fileAnnotations: fileAnnotations, 83 | }; 84 | } 85 | 86 | // runBreakingCommand runs the given command. Note that this function assumes 87 | // the given command is 'buf breaking', and handles its exit code as such. 88 | function runBreakingCommand(cmd: string): string | Error { 89 | try { 90 | child.execSync(cmd); 91 | } catch (error) { 92 | if (isExecException(error)) { 93 | if (error.status == breakingExitCode) { 94 | // The command found warnings to report. 95 | return error.stdout.toString(); 96 | } 97 | return { 98 | message: error.stderr.toString(), 99 | }; 100 | } 101 | return { 102 | message: `failed to run command: ${cmd}`, 103 | }; 104 | } 105 | return ""; 106 | } 107 | 108 | // parseLines parses the given output lines into an array 109 | // of FileAnnotations. 110 | function parseLines(lines: string[]): FileAnnotation[] | Error { 111 | const fileAnnotations: FileAnnotation[] = []; 112 | for (let index = 0; index < lines.length; index++) { 113 | try { 114 | // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment 115 | const fileAnnotation = JSON.parse(lines[index]); 116 | if (!isFileAnnotation(fileAnnotation)) { 117 | return { 118 | message: `failed to parse "${lines[index]}" as file annotation`, 119 | }; 120 | } 121 | fileAnnotations.push(fileAnnotation); 122 | } catch (error) { 123 | return { 124 | message: `failed to parse "${lines[index]}" as file annotation`, 125 | }; 126 | } 127 | } 128 | return fileAnnotations; 129 | } 130 | 131 | // isFileAnnotation returns true if the given object is 132 | // a FileAnnotation according to the minimal fields that 133 | // must be present. 134 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 135 | function isFileAnnotation(o: any): o is FileAnnotation { 136 | return "message" in o; 137 | } 138 | 139 | // isExecException returns true if the given object is 140 | // a ExecException according to the minimal fields that 141 | // are used in this module. 142 | // eslint-disable-next-line @typescript-eslint/no-explicit-any 143 | function isExecException(o: any): o is ExecException { 144 | return "status" in o && "stdout" in o && "stderr" in o; 145 | } 146 | -------------------------------------------------------------------------------- /src/error.ts: -------------------------------------------------------------------------------- 1 | // Copyright 2020-2025 Buf Technologies, Inc. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // http://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | // Error is the built-in error type. 16 | export interface Error { 17 | message: string; 18 | } 19 | 20 | // isError determines if the given value is an Error. 21 | // https://www.typescriptlang.org/docs/handbook/2/narrowing.html#using-type-predicates 22 | // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types, @typescript-eslint/no-explicit-any 23 | export function isError(value: any): value is Error { 24 | // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition 25 | return (value as Error).message !== undefined; 26 | } 27 | -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- 1 | // Copyright 2020-2025 Buf Technologies, Inc. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // http://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | import { run } from "./run"; 16 | 17 | void run(); 18 | -------------------------------------------------------------------------------- /src/run.ts: -------------------------------------------------------------------------------- 1 | // Copyright 2020-2025 Buf Technologies, Inc. 2 | // 3 | // Licensed under the Apache License, Version 2.0 (the "License"); 4 | // you may not use this file except in compliance with the License. 5 | // You may obtain a copy of the License at 6 | // 7 | // http://www.apache.org/licenses/LICENSE-2.0 8 | // 9 | // Unless required by applicable law or agreed to in writing, software 10 | // distributed under the License is distributed on an "AS IS" BASIS, 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | // See the License for the specific language governing permissions and 13 | // limitations under the License. 14 | 15 | import * as core from "@actions/core"; 16 | import * as io from "@actions/io"; 17 | import * as child from "child_process"; 18 | import * as semver from "semver"; 19 | import { breaking, FileAnnotation } from "./buf"; 20 | import { Error, isError } from "./error"; 21 | 22 | // minimumBufVersion is the minimum buf version required to 23 | // run this action. At least this version is required because 24 | // the implementation uses the FileAnnotation exit code introduced 25 | // in the following release: 26 | // https://github.com/bufbuild/buf/releases/tag/v0.41.0 27 | const minimumBufVersion = "0.41.0"; 28 | 29 | // bufInputHTTPSUsername is the environment variable key 30 | // used for the username to access the repository in order for 31 | // `buf breaking` to run against. More information can be found here: 32 | // https://docs.buf.build/breaking-usage 33 | const bufInputHTTPSUsername = "BUF_INPUT_HTTPS_USERNAME"; 34 | 35 | // bufInputHTTPSPassword is the environment variable key 36 | // used for the password to access the repository in order for 37 | // `buf breaking` to run against. More information can be found here: 38 | // https://docs.buf.build/breaking-usage 39 | const bufInputHTTPSPassword = "BUF_INPUT_HTTPS_PASSWORD"; 40 | 41 | export async function run(): Promise { 42 | try { 43 | const result = await runBreaking(); 44 | if (result != null && isError(result)) { 45 | core.setFailed(result.message); 46 | } 47 | } catch (error) { 48 | // In case we ever fail to catch an error 49 | // in the call chain, we catch the error 50 | // and mark the build as a failure. The 51 | // user is otherwise prone to false positives. 52 | if (isError(error)) { 53 | core.setFailed(error.message); 54 | return; 55 | } 56 | core.setFailed("Internal error"); 57 | } 58 | } 59 | 60 | // runBreaking runs the buf-breaking action, and returns 61 | // a non-empty error if it fails. 62 | async function runBreaking(): Promise { 63 | const input = core.getInput("input"); 64 | if (input === "") { 65 | return { 66 | message: "an input was not provided", 67 | }; 68 | } 69 | const against = core.getInput("against"); 70 | if (against === "") { 71 | return { 72 | message: "an against was not provided", 73 | }; 74 | } 75 | const username = core.getInput("buf_input_https_username"); 76 | if (username === "") { 77 | return { 78 | message: "buf_input_https_username not provided", 79 | }; 80 | } 81 | process.env[bufInputHTTPSUsername] = username; 82 | const password = core.getInput("buf_input_https_password"); 83 | if (password === "") { 84 | return { 85 | message: "buf_input_https_password not provided", 86 | }; 87 | } 88 | process.env[bufInputHTTPSPassword] = password; 89 | const binaryPath = await io.which("buf", true); 90 | if (binaryPath === "") { 91 | return { 92 | message: 93 | 'buf is not installed; please add the "bufbuild/buf-setup-action" step to your job found at https://github.com/bufbuild/buf-setup-action', 94 | }; 95 | } 96 | const version = child.execSync(`${binaryPath} --version 2>&1`).toString(); 97 | if (semver.lt(version, minimumBufVersion)) { 98 | return { 99 | message: `buf must be at least version ${minimumBufVersion}, but found ${version}`, 100 | }; 101 | } 102 | 103 | const bufToken = core.getInput("buf_token"); 104 | if (bufToken !== "") { 105 | core.exportVariable("BUF_TOKEN", bufToken); 106 | core.setSecret(bufToken); 107 | } 108 | 109 | const result = breaking(binaryPath, input, against); 110 | if (isError(result)) { 111 | return result; 112 | } 113 | 114 | core.setOutput("results", result.fileAnnotations); 115 | 116 | if (result.fileAnnotations.length === 0) { 117 | core.info("No breaking errors were found."); 118 | return null; 119 | } 120 | 121 | // If this action was configured for pull requests, we post the 122 | // FileAnnotations as comments. 123 | result.fileAnnotations.forEach((fileAnnotation: FileAnnotation) => { 124 | const { path, start_line, start_column, message } = fileAnnotation; 125 | if ( 126 | path === undefined || 127 | start_line === undefined || 128 | start_column === undefined 129 | ) { 130 | core.error(message); 131 | return; 132 | } 133 | // This uses the `::error` message feature of Github Actions. It converts the message to 134 | // an error log in the Github Actions console and creates an error annotation at the given 135 | // file path and line. This is not currently supported with `core.error`. 136 | // For more information, see the documentation: 137 | // https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#setting-an-error-message 138 | core.info( 139 | `::error file=${path},line=${start_line},col=${start_column}::${message}`, 140 | ); 141 | }); 142 | return { 143 | message: `buf found ${result.fileAnnotations.length} breaking changes.`, 144 | }; 145 | } 146 | -------------------------------------------------------------------------------- /static/img/breaking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/buf-breaking-action/346c1819a73a9c835707ace754ae8243aaadf2a9/static/img/breaking.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "rootDir": "./src", 4 | "lib": ["ES6"], 5 | "jsx": "preserve", 6 | "noImplicitAny": true, 7 | "esModuleInterop": true, 8 | "target": "es6", 9 | "allowJs": false, 10 | "skipLibCheck": true, 11 | "allowSyntheticDefaultImports": true, 12 | "strict": true, 13 | "forceConsistentCasingInFileNames": true, 14 | "module": "esnext", 15 | "moduleResolution": "node", 16 | "resolveJsonModule": true, 17 | "isolatedModules": true, 18 | "noEmit": true, 19 | "noImplicitReturns": true, 20 | "noFallthroughCasesInSwitch": true, 21 | "noUnusedParameters": true 22 | } 23 | } 24 | --------------------------------------------------------------------------------