├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── action.yml ├── dist ├── LICENSE └── index.js ├── index.js ├── index.test.js ├── package.json ├── test.js └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "parserOptions": { 3 | "ecmaVersion": 2018, 4 | "sourceType": "module" 5 | }, 6 | "extends": ["eslint:recommended"], 7 | "env": { 8 | "node": true, 9 | "es6": true 10 | }, 11 | "rules": { 12 | "semi": "error", 13 | "no-tabs": "error", 14 | "no-console": "off", 15 | "require-atomic-updates": "off" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | !.dockerignore 3 | !.eslintrc.json 4 | !.gitignore 5 | 6 | node_modules/ 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License 2 | 3 | Copyright 2019 Pascal 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # size-label-action 2 | 3 | GitHub action to assign labels based on pull request change sizes. 4 | 5 | Labels are taken from https://github.com/kubernetes/kubernetes/labels?q=size 6 | 7 | ## Usage 8 | 9 | Create a `.github/workflows/size-label.yml` file: 10 | 11 | ```yaml 12 | name: size-label 13 | on: pull_request_target 14 | jobs: 15 | size-label: 16 | permissions: 17 | contents: read 18 | pull-requests: write 19 | runs-on: ubuntu-latest 20 | steps: 21 | - name: size-label 22 | uses: "pascalgn/size-label-action@v0.5.5" 23 | env: 24 | GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" 25 | ``` 26 | 27 | ## Create the needed labels 28 | 29 | Export both `GITHUB_TOKEN` and `REPO` (e.g. `my-username/my-repository`) and run the script below: 30 | 31 | ```bash 32 | for size in XL XXL XS S M L; do 33 | curl -sf -H "Authorization: Bearer $GITHUB_TOKEN" "https://api.github.com/repos/kubernetes/kubernetes/labels/size/$size" | 34 | jq '. | { "name": .name, "color": .color, "description": .description }' | 35 | curl -sfXPOST -d @- -H "Authorization: Bearer $GITHUB_TOKEN" https://api.github.com/repos/$REPO/labels 36 | done 37 | ``` 38 | 39 | ## Configuration 40 | 41 | The following optional environment variables are supported: 42 | 43 | - `IGNORED`: A list of [glob expressions](http://man7.org/linux/man-pages/man7/glob.7.html) 44 | separated by newlines. Files matching these expressions will not count when 45 | calculating the change size of the pull request. Lines starting with `#` are 46 | ignored and files matching lines starting with `!` are always included. 47 | - `HTTPS_PROXY`: A proxy URL to pass to [https-proxy-agent](https://www.npmjs.com/package/https-proxy-agent) 48 | which will be used to proxy requests to the GitHub API. 49 | 50 | You can configure the environment variables in the workflow file like this: 51 | 52 | ```yaml 53 | env: 54 | GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" 55 | IGNORED: ".*\n!.gitignore\nyarn.lock\ngenerated/**" 56 | ``` 57 | 58 | ## Custom sizes 59 | 60 | The default sizes are: 61 | 62 | ```js 63 | { 64 | "0": "XS", 65 | "10": "S", 66 | "30": "M", 67 | "100": "L", 68 | "500": "XL", 69 | "1000": "XXL" 70 | } 71 | ``` 72 | 73 | You can pass your own configuration by passing `sizes` 74 | 75 | ```yaml 76 | name: size-label 77 | on: pull_request_target 78 | jobs: 79 | size-label: 80 | permissions: 81 | contents: read 82 | pull-requests: write 83 | runs-on: ubuntu-latest 84 | steps: 85 | - name: size-label 86 | uses: "pascalgn/size-label-action@v0.5.5" 87 | env: 88 | GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" 89 | with: 90 | sizes: > 91 | { 92 | "0": "XS", 93 | "20": "S", 94 | "50": "M", 95 | "200": "L", 96 | "800": "XL", 97 | "2000": "XXL" 98 | } 99 | ``` 100 | 101 | ## Using with other actions 102 | 103 | If creating workflow with multiple jobs, they can react on the label set by this action: 104 | 105 | ```yaml 106 | name: size-label 107 | on: pull_request_target 108 | jobs: 109 | label: 110 | permissions: 111 | contents: read 112 | pull-requests: write 113 | runs-on: ubuntu-latest 114 | outputs: 115 | label: ${{ steps.label.outputs.sizeLabel }} 116 | steps: 117 | - name: size-label 118 | id: label 119 | uses: "pascalgn/size-label-action@v0.5.5" 120 | env: 121 | GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" 122 | comment: 123 | runs-on: ubuntu-latest 124 | needs: label 125 | if: ${{ contains(needs.label.outputs.label, 'XL') }} 126 | steps: 127 | - run: echo "Too big PR" 128 | ``` 129 | 130 | ## License 131 | 132 | [MIT](LICENSE) 133 | -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- 1 | name: "Assign size label" 2 | description: "Assign labels based on pull request change sizes" 3 | inputs: 4 | sizes: 5 | description: "Custom size configuration" 6 | required: false 7 | runs: 8 | using: "node20" 9 | main: "dist/index.js" 10 | branding: 11 | icon: "tag" 12 | color: "blue" 13 | -------------------------------------------------------------------------------- /dist/LICENSE: -------------------------------------------------------------------------------- 1 | @octokit/auth-token 2 | MIT 3 | The MIT License 4 | 5 | Copyright (c) 2019 Octokit contributors 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in 15 | all copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 23 | THE SOFTWARE. 24 | 25 | 26 | @octokit/core 27 | MIT 28 | The MIT License 29 | 30 | Copyright (c) 2019 Octokit contributors 31 | 32 | Permission is hereby granted, free of charge, to any person obtaining a copy 33 | of this software and associated documentation files (the "Software"), to deal 34 | in the Software without restriction, including without limitation the rights 35 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 36 | copies of the Software, and to permit persons to whom the Software is 37 | furnished to do so, subject to the following conditions: 38 | 39 | The above copyright notice and this permission notice shall be included in 40 | all copies or substantial portions of the Software. 41 | 42 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 43 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 44 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 45 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 46 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 47 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 48 | THE SOFTWARE. 49 | 50 | 51 | @octokit/endpoint 52 | MIT 53 | The MIT License 54 | 55 | Copyright (c) 2018 Octokit contributors 56 | 57 | Permission is hereby granted, free of charge, to any person obtaining a copy 58 | of this software and associated documentation files (the "Software"), to deal 59 | in the Software without restriction, including without limitation the rights 60 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 61 | copies of the Software, and to permit persons to whom the Software is 62 | furnished to do so, subject to the following conditions: 63 | 64 | The above copyright notice and this permission notice shall be included in 65 | all copies or substantial portions of the Software. 66 | 67 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 68 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 69 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 70 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 71 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 72 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 73 | THE SOFTWARE. 74 | 75 | 76 | @octokit/graphql 77 | MIT 78 | The MIT License 79 | 80 | Copyright (c) 2018 Octokit contributors 81 | 82 | Permission is hereby granted, free of charge, to any person obtaining a copy 83 | of this software and associated documentation files (the "Software"), to deal 84 | in the Software without restriction, including without limitation the rights 85 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 86 | copies of the Software, and to permit persons to whom the Software is 87 | furnished to do so, subject to the following conditions: 88 | 89 | The above copyright notice and this permission notice shall be included in 90 | all copies or substantial portions of the Software. 91 | 92 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 93 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 94 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 95 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 96 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 97 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 98 | THE SOFTWARE. 99 | 100 | 101 | @octokit/plugin-paginate-rest 102 | MIT 103 | MIT License Copyright (c) 2019 Octokit contributors 104 | 105 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 106 | 107 | The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software. 108 | 109 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 110 | 111 | 112 | @octokit/plugin-request-log 113 | MIT 114 | MIT License Copyright (c) 2020 Octokit contributors 115 | 116 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 117 | 118 | The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software. 119 | 120 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 121 | 122 | 123 | @octokit/plugin-rest-endpoint-methods 124 | MIT 125 | MIT License Copyright (c) 2019 Octokit contributors 126 | 127 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 128 | 129 | The above copyright notice and this permission notice (including the next paragraph) shall be included in all copies or substantial portions of the Software. 130 | 131 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 132 | 133 | 134 | @octokit/request 135 | MIT 136 | The MIT License 137 | 138 | Copyright (c) 2018 Octokit contributors 139 | 140 | Permission is hereby granted, free of charge, to any person obtaining a copy 141 | of this software and associated documentation files (the "Software"), to deal 142 | in the Software without restriction, including without limitation the rights 143 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 144 | copies of the Software, and to permit persons to whom the Software is 145 | furnished to do so, subject to the following conditions: 146 | 147 | The above copyright notice and this permission notice shall be included in 148 | all copies or substantial portions of the Software. 149 | 150 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 151 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 152 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 153 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 154 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 155 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 156 | THE SOFTWARE. 157 | 158 | 159 | @octokit/request-error 160 | MIT 161 | The MIT License 162 | 163 | Copyright (c) 2019 Octokit contributors 164 | 165 | Permission is hereby granted, free of charge, to any person obtaining a copy 166 | of this software and associated documentation files (the "Software"), to deal 167 | in the Software without restriction, including without limitation the rights 168 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 169 | copies of the Software, and to permit persons to whom the Software is 170 | furnished to do so, subject to the following conditions: 171 | 172 | The above copyright notice and this permission notice shall be included in 173 | all copies or substantial portions of the Software. 174 | 175 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 176 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 177 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 178 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 179 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 180 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 181 | THE SOFTWARE. 182 | 183 | 184 | @octokit/rest 185 | MIT 186 | The MIT License 187 | 188 | Copyright (c) 2012 Cloud9 IDE, Inc. (Mike de Boer) 189 | Copyright (c) 2017-2018 Octokit contributors 190 | 191 | Permission is hereby granted, free of charge, to any person obtaining a copy 192 | of this software and associated documentation files (the "Software"), to deal 193 | in the Software without restriction, including without limitation the rights 194 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 195 | copies of the Software, and to permit persons to whom the Software is 196 | furnished to do so, subject to the following conditions: 197 | 198 | The above copyright notice and this permission notice shall be included in 199 | all copies or substantial portions of the Software. 200 | 201 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 202 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 203 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 204 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 205 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 206 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 207 | THE SOFTWARE. 208 | 209 | 210 | @vercel/ncc 211 | MIT 212 | Copyright 2018 ZEIT, Inc. 213 | 214 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 215 | 216 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 217 | 218 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 219 | 220 | agent-base 221 | MIT 222 | (The MIT License) 223 | 224 | Copyright (c) 2013 Nathan Rajlich 225 | 226 | Permission is hereby granted, free of charge, to any person obtaining 227 | a copy of this software and associated documentation files (the 228 | 'Software'), to deal in the Software without restriction, including 229 | without limitation the rights to use, copy, modify, merge, publish, 230 | distribute, sublicense, and/or sell copies of the Software, and to 231 | permit persons to whom the Software is furnished to do so, subject to 232 | the following conditions: 233 | 234 | The above copyright notice and this permission notice shall be 235 | included in all copies or substantial portions of the Software. 236 | 237 | THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, 238 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 239 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 240 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 241 | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 242 | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 243 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 244 | 245 | before-after-hook 246 | Apache-2.0 247 | Apache License 248 | Version 2.0, January 2004 249 | http://www.apache.org/licenses/ 250 | 251 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 252 | 253 | 1. Definitions. 254 | 255 | "License" shall mean the terms and conditions for use, reproduction, 256 | and distribution as defined by Sections 1 through 9 of this document. 257 | 258 | "Licensor" shall mean the copyright owner or entity authorized by 259 | the copyright owner that is granting the License. 260 | 261 | "Legal Entity" shall mean the union of the acting entity and all 262 | other entities that control, are controlled by, or are under common 263 | control with that entity. For the purposes of this definition, 264 | "control" means (i) the power, direct or indirect, to cause the 265 | direction or management of such entity, whether by contract or 266 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 267 | outstanding shares, or (iii) beneficial ownership of such entity. 268 | 269 | "You" (or "Your") shall mean an individual or Legal Entity 270 | exercising permissions granted by this License. 271 | 272 | "Source" form shall mean the preferred form for making modifications, 273 | including but not limited to software source code, documentation 274 | source, and configuration files. 275 | 276 | "Object" form shall mean any form resulting from mechanical 277 | transformation or translation of a Source form, including but 278 | not limited to compiled object code, generated documentation, 279 | and conversions to other media types. 280 | 281 | "Work" shall mean the work of authorship, whether in Source or 282 | Object form, made available under the License, as indicated by a 283 | copyright notice that is included in or attached to the work 284 | (an example is provided in the Appendix below). 285 | 286 | "Derivative Works" shall mean any work, whether in Source or Object 287 | form, that is based on (or derived from) the Work and for which the 288 | editorial revisions, annotations, elaborations, or other modifications 289 | represent, as a whole, an original work of authorship. For the purposes 290 | of this License, Derivative Works shall not include works that remain 291 | separable from, or merely link (or bind by name) to the interfaces of, 292 | the Work and Derivative Works thereof. 293 | 294 | "Contribution" shall mean any work of authorship, including 295 | the original version of the Work and any modifications or additions 296 | to that Work or Derivative Works thereof, that is intentionally 297 | submitted to Licensor for inclusion in the Work by the copyright owner 298 | or by an individual or Legal Entity authorized to submit on behalf of 299 | the copyright owner. For the purposes of this definition, "submitted" 300 | means any form of electronic, verbal, or written communication sent 301 | to the Licensor or its representatives, including but not limited to 302 | communication on electronic mailing lists, source code control systems, 303 | and issue tracking systems that are managed by, or on behalf of, the 304 | Licensor for the purpose of discussing and improving the Work, but 305 | excluding communication that is conspicuously marked or otherwise 306 | designated in writing by the copyright owner as "Not a Contribution." 307 | 308 | "Contributor" shall mean Licensor and any individual or Legal Entity 309 | on behalf of whom a Contribution has been received by Licensor and 310 | subsequently incorporated within the Work. 311 | 312 | 2. Grant of Copyright License. Subject to the terms and conditions of 313 | this License, each Contributor hereby grants to You a perpetual, 314 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 315 | copyright license to reproduce, prepare Derivative Works of, 316 | publicly display, publicly perform, sublicense, and distribute the 317 | Work and such Derivative Works in Source or Object form. 318 | 319 | 3. Grant of Patent License. Subject to the terms and conditions of 320 | this License, each Contributor hereby grants to You a perpetual, 321 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 322 | (except as stated in this section) patent license to make, have made, 323 | use, offer to sell, sell, import, and otherwise transfer the Work, 324 | where such license applies only to those patent claims licensable 325 | by such Contributor that are necessarily infringed by their 326 | Contribution(s) alone or by combination of their Contribution(s) 327 | with the Work to which such Contribution(s) was submitted. If You 328 | institute patent litigation against any entity (including a 329 | cross-claim or counterclaim in a lawsuit) alleging that the Work 330 | or a Contribution incorporated within the Work constitutes direct 331 | or contributory patent infringement, then any patent licenses 332 | granted to You under this License for that Work shall terminate 333 | as of the date such litigation is filed. 334 | 335 | 4. Redistribution. You may reproduce and distribute copies of the 336 | Work or Derivative Works thereof in any medium, with or without 337 | modifications, and in Source or Object form, provided that You 338 | meet the following conditions: 339 | 340 | (a) You must give any other recipients of the Work or 341 | Derivative Works a copy of this License; and 342 | 343 | (b) You must cause any modified files to carry prominent notices 344 | stating that You changed the files; and 345 | 346 | (c) You must retain, in the Source form of any Derivative Works 347 | that You distribute, all copyright, patent, trademark, and 348 | attribution notices from the Source form of the Work, 349 | excluding those notices that do not pertain to any part of 350 | the Derivative Works; and 351 | 352 | (d) If the Work includes a "NOTICE" text file as part of its 353 | distribution, then any Derivative Works that You distribute must 354 | include a readable copy of the attribution notices contained 355 | within such NOTICE file, excluding those notices that do not 356 | pertain to any part of the Derivative Works, in at least one 357 | of the following places: within a NOTICE text file distributed 358 | as part of the Derivative Works; within the Source form or 359 | documentation, if provided along with the Derivative Works; or, 360 | within a display generated by the Derivative Works, if and 361 | wherever such third-party notices normally appear. The contents 362 | of the NOTICE file are for informational purposes only and 363 | do not modify the License. You may add Your own attribution 364 | notices within Derivative Works that You distribute, alongside 365 | or as an addendum to the NOTICE text from the Work, provided 366 | that such additional attribution notices cannot be construed 367 | as modifying the License. 368 | 369 | You may add Your own copyright statement to Your modifications and 370 | may provide additional or different license terms and conditions 371 | for use, reproduction, or distribution of Your modifications, or 372 | for any such Derivative Works as a whole, provided Your use, 373 | reproduction, and distribution of the Work otherwise complies with 374 | the conditions stated in this License. 375 | 376 | 5. Submission of Contributions. Unless You explicitly state otherwise, 377 | any Contribution intentionally submitted for inclusion in the Work 378 | by You to the Licensor shall be under the terms and conditions of 379 | this License, without any additional terms or conditions. 380 | Notwithstanding the above, nothing herein shall supersede or modify 381 | the terms of any separate license agreement you may have executed 382 | with Licensor regarding such Contributions. 383 | 384 | 6. Trademarks. This License does not grant permission to use the trade 385 | names, trademarks, service marks, or product names of the Licensor, 386 | except as required for reasonable and customary use in describing the 387 | origin of the Work and reproducing the content of the NOTICE file. 388 | 389 | 7. Disclaimer of Warranty. Unless required by applicable law or 390 | agreed to in writing, Licensor provides the Work (and each 391 | Contributor provides its Contributions) on an "AS IS" BASIS, 392 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 393 | implied, including, without limitation, any warranties or conditions 394 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 395 | PARTICULAR PURPOSE. You are solely responsible for determining the 396 | appropriateness of using or redistributing the Work and assume any 397 | risks associated with Your exercise of permissions under this License. 398 | 399 | 8. Limitation of Liability. In no event and under no legal theory, 400 | whether in tort (including negligence), contract, or otherwise, 401 | unless required by applicable law (such as deliberate and grossly 402 | negligent acts) or agreed to in writing, shall any Contributor be 403 | liable to You for damages, including any direct, indirect, special, 404 | incidental, or consequential damages of any character arising as a 405 | result of this License or out of the use or inability to use the 406 | Work (including but not limited to damages for loss of goodwill, 407 | work stoppage, computer failure or malfunction, or any and all 408 | other commercial damages or losses), even if such Contributor 409 | has been advised of the possibility of such damages. 410 | 411 | 9. Accepting Warranty or Additional Liability. While redistributing 412 | the Work or Derivative Works thereof, You may choose to offer, 413 | and charge a fee for, acceptance of support, warranty, indemnity, 414 | or other liability obligations and/or rights consistent with this 415 | License. However, in accepting such obligations, You may act only 416 | on Your own behalf and on Your sole responsibility, not on behalf 417 | of any other Contributor, and only if You agree to indemnify, 418 | defend, and hold each Contributor harmless for any liability 419 | incurred by, or claims asserted against, such Contributor by reason 420 | of your accepting any such warranty or additional liability. 421 | 422 | END OF TERMS AND CONDITIONS 423 | 424 | APPENDIX: How to apply the Apache License to your work. 425 | 426 | To apply the Apache License to your work, attach the following 427 | boilerplate notice, with the fields enclosed by brackets "{}" 428 | replaced with your own identifying information. (Don't include 429 | the brackets!) The text should be enclosed in the appropriate 430 | comment syntax for the file format. We also recommend that a 431 | file or class name and description of purpose be included on the 432 | same "printed page" as the copyright notice for easier 433 | identification within third-party archives. 434 | 435 | Copyright 2018 Gregor Martynus and other contributors. 436 | 437 | Licensed under the Apache License, Version 2.0 (the "License"); 438 | you may not use this file except in compliance with the License. 439 | You may obtain a copy of the License at 440 | 441 | http://www.apache.org/licenses/LICENSE-2.0 442 | 443 | Unless required by applicable law or agreed to in writing, software 444 | distributed under the License is distributed on an "AS IS" BASIS, 445 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 446 | See the License for the specific language governing permissions and 447 | limitations under the License. 448 | 449 | 450 | debug 451 | MIT 452 | (The MIT License) 453 | 454 | Copyright (c) 2014 TJ Holowaychuk 455 | 456 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software 457 | and associated documentation files (the 'Software'), to deal in the Software without restriction, 458 | including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, 459 | and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, 460 | subject to the following conditions: 461 | 462 | The above copyright notice and this permission notice shall be included in all copies or substantial 463 | portions of the Software. 464 | 465 | THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT 466 | LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 467 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 468 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 469 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 470 | 471 | 472 | 473 | deprecation 474 | ISC 475 | The ISC License 476 | 477 | Copyright (c) Gregor Martynus and contributors 478 | 479 | Permission to use, copy, modify, and/or distribute this software for any 480 | purpose with or without fee is hereby granted, provided that the above 481 | copyright notice and this permission notice appear in all copies. 482 | 483 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 484 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 485 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 486 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 487 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 488 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR 489 | IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 490 | 491 | 492 | globrex 493 | MIT 494 | MIT License 495 | 496 | Copyright (c) 2018 Terkel Gjervig Nielsen 497 | 498 | Permission is hereby granted, free of charge, to any person obtaining a copy 499 | of this software and associated documentation files (the "Software"), to deal 500 | in the Software without restriction, including without limitation the rights 501 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 502 | copies of the Software, and to permit persons to whom the Software is 503 | furnished to do so, subject to the following conditions: 504 | 505 | The above copyright notice and this permission notice shall be included in all 506 | copies or substantial portions of the Software. 507 | 508 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 509 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 510 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 511 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 512 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 513 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 514 | SOFTWARE. 515 | 516 | 517 | has-flag 518 | MIT 519 | MIT License 520 | 521 | Copyright (c) Sindre Sorhus (sindresorhus.com) 522 | 523 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 524 | 525 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 526 | 527 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 528 | 529 | 530 | https-proxy-agent 531 | MIT 532 | (The MIT License) 533 | 534 | Copyright (c) 2013 Nathan Rajlich 535 | 536 | Permission is hereby granted, free of charge, to any person obtaining 537 | a copy of this software and associated documentation files (the 538 | 'Software'), to deal in the Software without restriction, including 539 | without limitation the rights to use, copy, modify, merge, publish, 540 | distribute, sublicense, and/or sell copies of the Software, and to 541 | permit persons to whom the Software is furnished to do so, subject to 542 | the following conditions: 543 | 544 | The above copyright notice and this permission notice shall be 545 | included in all copies or substantial portions of the Software. 546 | 547 | THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, 548 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 549 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 550 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 551 | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 552 | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 553 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 554 | 555 | is-plain-object 556 | MIT 557 | The MIT License (MIT) 558 | 559 | Copyright (c) 2014-2017, Jon Schlinkert. 560 | 561 | Permission is hereby granted, free of charge, to any person obtaining a copy 562 | of this software and associated documentation files (the "Software"), to deal 563 | in the Software without restriction, including without limitation the rights 564 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 565 | copies of the Software, and to permit persons to whom the Software is 566 | furnished to do so, subject to the following conditions: 567 | 568 | The above copyright notice and this permission notice shall be included in 569 | all copies or substantial portions of the Software. 570 | 571 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 572 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 573 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 574 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 575 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 576 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 577 | THE SOFTWARE. 578 | 579 | 580 | ms 581 | MIT 582 | The MIT License (MIT) 583 | 584 | Copyright (c) 2016 Zeit, Inc. 585 | 586 | Permission is hereby granted, free of charge, to any person obtaining a copy 587 | of this software and associated documentation files (the "Software"), to deal 588 | in the Software without restriction, including without limitation the rights 589 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 590 | copies of the Software, and to permit persons to whom the Software is 591 | furnished to do so, subject to the following conditions: 592 | 593 | The above copyright notice and this permission notice shall be included in all 594 | copies or substantial portions of the Software. 595 | 596 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 597 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 598 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 599 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 600 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 601 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 602 | SOFTWARE. 603 | 604 | 605 | node-fetch 606 | MIT 607 | The MIT License (MIT) 608 | 609 | Copyright (c) 2016 David Frank 610 | 611 | Permission is hereby granted, free of charge, to any person obtaining a copy 612 | of this software and associated documentation files (the "Software"), to deal 613 | in the Software without restriction, including without limitation the rights 614 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 615 | copies of the Software, and to permit persons to whom the Software is 616 | furnished to do so, subject to the following conditions: 617 | 618 | The above copyright notice and this permission notice shall be included in all 619 | copies or substantial portions of the Software. 620 | 621 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 622 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 623 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 624 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 625 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 626 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 627 | SOFTWARE. 628 | 629 | 630 | 631 | once 632 | ISC 633 | The ISC License 634 | 635 | Copyright (c) Isaac Z. Schlueter and Contributors 636 | 637 | Permission to use, copy, modify, and/or distribute this software for any 638 | purpose with or without fee is hereby granted, provided that the above 639 | copyright notice and this permission notice appear in all copies. 640 | 641 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 642 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 643 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 644 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 645 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 646 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR 647 | IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 648 | 649 | 650 | supports-color 651 | MIT 652 | MIT License 653 | 654 | Copyright (c) Sindre Sorhus (sindresorhus.com) 655 | 656 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 657 | 658 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 659 | 660 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 661 | 662 | 663 | tr46 664 | MIT 665 | 666 | universal-user-agent 667 | ISC 668 | # [ISC License](https://spdx.org/licenses/ISC) 669 | 670 | Copyright (c) 2018, Gregor Martynus (https://github.com/gr2m) 671 | 672 | Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. 673 | 674 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 675 | 676 | 677 | webidl-conversions 678 | BSD-2-Clause 679 | # The BSD 2-Clause License 680 | 681 | Copyright (c) 2014, Domenic Denicola 682 | All rights reserved. 683 | 684 | Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 685 | 686 | 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 687 | 688 | 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 689 | 690 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 691 | 692 | 693 | whatwg-url 694 | MIT 695 | The MIT License (MIT) 696 | 697 | Copyright (c) 2015–2016 Sebastian Mayr 698 | 699 | Permission is hereby granted, free of charge, to any person obtaining a copy 700 | of this software and associated documentation files (the "Software"), to deal 701 | in the Software without restriction, including without limitation the rights 702 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 703 | copies of the Software, and to permit persons to whom the Software is 704 | furnished to do so, subject to the following conditions: 705 | 706 | The above copyright notice and this permission notice shall be included in 707 | all copies or substantial portions of the Software. 708 | 709 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 710 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 711 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 712 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 713 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 714 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 715 | THE SOFTWARE. 716 | 717 | 718 | wrappy 719 | ISC 720 | The ISC License 721 | 722 | Copyright (c) Isaac Z. Schlueter and Contributors 723 | 724 | Permission to use, copy, modify, and/or distribute this software for any 725 | purpose with or without fee is hereby granted, provided that the above 726 | copyright notice and this permission notice appear in all copies. 727 | 728 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 729 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 730 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 731 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 732 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 733 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR 734 | IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 735 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | const fs = require("fs"); 4 | const process = require("process"); 5 | 6 | const { Octokit } = require("@octokit/rest"); 7 | const globrex = require("globrex"); 8 | 9 | const HttpsProxyAgent = require("https-proxy-agent"); 10 | 11 | const defaultSizes = { 12 | 0: "XS", 13 | 10: "S", 14 | 30: "M", 15 | 100: "L", 16 | 500: "XL", 17 | 1000: "XXL" 18 | }; 19 | 20 | const actions = ["opened", "synchronize", "reopened"]; 21 | 22 | const globrexOptions = { extended: true, globstar: true }; 23 | 24 | async function main() { 25 | debug("Running size-label-action..."); 26 | 27 | const GITHUB_TOKEN = process.env.GITHUB_TOKEN; 28 | if (!GITHUB_TOKEN) { 29 | throw new Error("Environment variable GITHUB_TOKEN not set!"); 30 | } 31 | 32 | const GITHUB_EVENT_PATH = process.env.GITHUB_EVENT_PATH; 33 | if (!GITHUB_EVENT_PATH) { 34 | throw new Error("Environment variable GITHUB_EVENT_PATH not set!"); 35 | } 36 | 37 | const eventDataStr = await readFile(GITHUB_EVENT_PATH); 38 | const eventData = JSON.parse(eventDataStr); 39 | 40 | if (!eventData || !eventData.pull_request || !eventData.pull_request.base) { 41 | throw new Error(`Invalid GITHUB_EVENT_PATH contents: ${eventDataStr}`); 42 | } 43 | 44 | debug("Event payload:", eventDataStr); 45 | 46 | if (!actions.includes(eventData.action)) { 47 | console.log("Action will be ignored:", eventData.action); 48 | return false; 49 | } 50 | 51 | const isIgnored = parseIgnored(process.env.IGNORED); 52 | 53 | const pullRequestHome = { 54 | owner: eventData.pull_request.base.repo.owner.login, 55 | repo: eventData.pull_request.base.repo.name 56 | }; 57 | 58 | const pull_number = eventData.pull_request.number; 59 | 60 | const proxyUrl = process.env.HTTPS_PROXY || process.env.https_proxy; 61 | 62 | const octokit = new Octokit({ 63 | auth: `token ${GITHUB_TOKEN}`, 64 | baseUrl: process.env.GITHUB_API_URL || "https://api.github.com", 65 | userAgent: "pascalgn/size-label-action", 66 | ...(proxyUrl && { request: { agent: new HttpsProxyAgent(proxyUrl) } }) 67 | }); 68 | 69 | const pullRequestFiles = await octokit.pulls.listFiles({ 70 | ...pullRequestHome, 71 | pull_number, 72 | headers: { 73 | accept: "application/vnd.github.raw+json" 74 | } 75 | }); 76 | 77 | const changedLines = getChangedLines(isIgnored, pullRequestFiles.data); 78 | console.log("Changed lines:", changedLines); 79 | 80 | if (isNaN(changedLines)) { 81 | throw new Error(`could not get changed lines: '${changedLines}'`); 82 | } 83 | 84 | const sizes = getSizesInput(); 85 | const sizeLabel = getSizeLabel(changedLines, sizes); 86 | console.log("Matching label:", sizeLabel); 87 | 88 | const githubOutput = process.env.GITHUB_OUTPUT; 89 | if (githubOutput) { 90 | fs.writeFileSync(githubOutput, `sizeLabel="${sizeLabel}"`); 91 | debug(`Written label '${sizeLabel}' to ${githubOutput}`); 92 | } 93 | 94 | const { add, remove } = getLabelChanges( 95 | sizeLabel, 96 | eventData.pull_request.labels 97 | ); 98 | 99 | if (add.length === 0 && remove.length === 0) { 100 | console.log("Correct label already assigned"); 101 | return false; 102 | } 103 | 104 | if (add.length > 0) { 105 | debug("Adding labels:", add); 106 | await octokit.issues.addLabels({ 107 | ...pullRequestHome, 108 | issue_number: pull_number, 109 | labels: add 110 | }); 111 | } 112 | 113 | for (const label of remove) { 114 | debug("Removing label:", label); 115 | try { 116 | await octokit.issues.removeLabel({ 117 | ...pullRequestHome, 118 | issue_number: pull_number, 119 | name: label 120 | }); 121 | } catch (error) { 122 | debug("Ignoring removing label error:", error); 123 | } 124 | } 125 | 126 | debug("Success!"); 127 | 128 | return true; 129 | } 130 | 131 | function debug(...str) { 132 | if (process.env.DEBUG_ACTION) { 133 | console.log.apply(console, str); 134 | } 135 | } 136 | 137 | function parseIgnored(str = "") { 138 | const ignored = (str || "") 139 | .split(/\r|\n/) 140 | .map(s => s.trim()) 141 | .filter(s => s.length > 0 && !s.startsWith("#")) 142 | .map(s => 143 | s.length > 1 && s[0] === "!" 144 | ? { not: globrex(s.slice(1), globrexOptions) } 145 | : globrex(s, globrexOptions) 146 | ); 147 | function isIgnored(path) { 148 | if (path == null || path === "/dev/null") { 149 | return true; 150 | } 151 | let ignore = false; 152 | for (const entry of ignored) { 153 | if (entry.not) { 154 | if (path.match(entry.not.regex)) { 155 | return false; 156 | } 157 | } else if (!ignore && path.match(entry.regex)) { 158 | ignore = true; 159 | } 160 | } 161 | return ignore; 162 | } 163 | return isIgnored; 164 | } 165 | 166 | async function readFile(path) { 167 | return new Promise((resolve, reject) => { 168 | fs.readFile(path, { encoding: "utf8" }, (err, data) => { 169 | if (err) { 170 | reject(err); 171 | } else { 172 | resolve(data); 173 | } 174 | }); 175 | }); 176 | } 177 | 178 | function getChangedLines(isIgnored, pullRequestFiles) { 179 | return pullRequestFiles 180 | .map(file => isIgnored(file.previous_filename) && isIgnored(file.filename) ? 0 : file.changes) 181 | .reduce((total, current) => total + current, 0); 182 | } 183 | 184 | function getSizeLabel(changedLines, sizes = defaultSizes) { 185 | let label = null; 186 | for (const lines of Object.keys(sizes).sort((a, b) => a - b)) { 187 | if (changedLines >= lines) { 188 | label = `size/${sizes[lines]}`; 189 | } 190 | } 191 | return label; 192 | } 193 | 194 | function getLabelChanges(newLabel, existingLabels) { 195 | const add = [newLabel]; 196 | const remove = []; 197 | for (const existingLabel of existingLabels) { 198 | const { name } = existingLabel; 199 | if (name.startsWith("size/")) { 200 | if (name === newLabel) { 201 | add.pop(); 202 | } else { 203 | remove.push(name); 204 | } 205 | } 206 | } 207 | return { add, remove }; 208 | } 209 | 210 | function getSizesInput() { 211 | let inputSizes = process.env.INPUT_SIZES; 212 | if (inputSizes && inputSizes.length) { 213 | return JSON.parse(inputSizes); 214 | } else { 215 | return undefined; 216 | } 217 | } 218 | 219 | if (require.main === module) { 220 | main().then( 221 | () => (process.exitCode = 0), 222 | e => { 223 | process.exitCode = 1; 224 | console.error(e); 225 | } 226 | ); 227 | } 228 | 229 | module.exports = { main, parseIgnored }; // parseIgnored exported for testing 230 | -------------------------------------------------------------------------------- /index.test.js: -------------------------------------------------------------------------------- 1 | import { describe, expect, it } from "vitest"; 2 | import { parseIgnored } from "./index"; 3 | 4 | describe("parseIgnored", () => { 5 | it.each(["", null, undefined, "\r\n", "\n", "#", "#file"])( 6 | "doesn't ignore when no patterns to ignore provided (%s)", 7 | input => { 8 | // when 9 | const isIgnored = parseIgnored(input); 10 | 11 | // then 12 | expect(isIgnored("file")).toBe(false); 13 | } 14 | ); 15 | 16 | it("ignores ordinary patterns", () => { 17 | // when 18 | const isIgnored = parseIgnored( 19 | "**/src/integration/**\n**/src/test/**\n**/src/testFixtures/**" 20 | ); 21 | 22 | // then 23 | expect(isIgnored("file")).toBe(false); 24 | expect(isIgnored("src/test/file")).toBe(true); 25 | expect(isIgnored("codebase/src/testFixtures/file")).toBe(true); 26 | }); 27 | 28 | it.each([null, undefined, "/dev/null"])( 29 | "ignores some patterns by default (%s)", 30 | alwaysIgnoredInput => { 31 | // when 32 | const isIgnored = parseIgnored( 33 | "**/src/integration/**\n**/src/test/**\n**/src/testFixtures/**" 34 | ); 35 | 36 | // then 37 | expect(isIgnored(alwaysIgnoredInput)).toBe(true); 38 | } 39 | ); 40 | 41 | it("accepts negated patterns", () => { 42 | // when 43 | const isIgnored = parseIgnored(".*\n!.gitignore\nyarn.lock\ngenerated/**"); 44 | 45 | // then 46 | expect(isIgnored(".git")).toBe(true); 47 | expect(isIgnored(".gitignore")).toBe(false); 48 | expect(isIgnored("yarn.lock")).toBe(true); 49 | expect(isIgnored("generated/source")).toBe(true); 50 | }); 51 | }); 52 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "size-label-action", 3 | "version": "0.0.1", 4 | "description": "GitHub action to assign labels based on pull request change sizes", 5 | "main": "index.js", 6 | "author": "Pascal", 7 | "license": "MIT", 8 | "private": true, 9 | "bin": { 10 | "size-label-action": "index.js" 11 | }, 12 | "scripts": { 13 | "test": "vitest run && yarn compile && node test.js", 14 | "lint": "eslint .", 15 | "compile": "ncc build index.js --license LICENSE -o dist", 16 | "prepublish": "yarn compile" 17 | }, 18 | "dependencies": { 19 | "@octokit/rest": "^19.0.11", 20 | "globrex": "^0.1.2", 21 | "https-proxy-agent": "^7.0.5" 22 | }, 23 | "devDependencies": { 24 | "@vercel/ncc": "^0.36.1", 25 | "dotenv": "^16.1.2", 26 | "eslint": "^8.41.0", 27 | "tmp": "^0.2.1", 28 | "vitest": "^2.1.3" 29 | }, 30 | "prettier": { 31 | "arrowParens": "avoid", 32 | "trailingComma": "none" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | const fs = require("fs"); 2 | const process = require("process"); 3 | 4 | require("dotenv").config(); 5 | 6 | const tmp = require("tmp"); 7 | tmp.setGracefulCleanup(); 8 | 9 | const index = require("./dist/index"); 10 | 11 | async function main() { 12 | const eventPayloadPath = await tmpFile( 13 | JSON.stringify({ 14 | action: "synchronize", 15 | pull_request: { 16 | number: process.env.PR_NUMBER, 17 | labels: [], 18 | base: { 19 | repo: { 20 | name: process.env.PR_NAME, 21 | owner: { 22 | login: process.env.PR_OWNER 23 | } 24 | } 25 | } 26 | } 27 | }) 28 | ); 29 | 30 | process.env.DEBUG_ACTION = "1"; 31 | process.env.GITHUB_EVENT_PATH = eventPayloadPath; 32 | 33 | await index.main(); 34 | } 35 | 36 | function tmpFile(content) { 37 | return new Promise((resolve, reject) => { 38 | tmp.file({ postfix: ".json" }, (err, path) => { 39 | if (err) { 40 | reject(err); 41 | } else { 42 | fs.writeFile(path, content, err => { 43 | if (err) { 44 | reject(err); 45 | } else { 46 | resolve(path); 47 | } 48 | }); 49 | } 50 | }); 51 | }); 52 | } 53 | 54 | main().catch(e => { 55 | process.exitCode = 1; 56 | console.error(e); 57 | }); 58 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@esbuild/aix-ppc64@0.21.5": 6 | version "0.21.5" 7 | resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f" 8 | integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ== 9 | 10 | "@esbuild/android-arm64@0.21.5": 11 | version "0.21.5" 12 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052" 13 | integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A== 14 | 15 | "@esbuild/android-arm@0.21.5": 16 | version "0.21.5" 17 | resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28" 18 | integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg== 19 | 20 | "@esbuild/android-x64@0.21.5": 21 | version "0.21.5" 22 | resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e" 23 | integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA== 24 | 25 | "@esbuild/darwin-arm64@0.21.5": 26 | version "0.21.5" 27 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a" 28 | integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ== 29 | 30 | "@esbuild/darwin-x64@0.21.5": 31 | version "0.21.5" 32 | resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22" 33 | integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw== 34 | 35 | "@esbuild/freebsd-arm64@0.21.5": 36 | version "0.21.5" 37 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e" 38 | integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g== 39 | 40 | "@esbuild/freebsd-x64@0.21.5": 41 | version "0.21.5" 42 | resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261" 43 | integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ== 44 | 45 | "@esbuild/linux-arm64@0.21.5": 46 | version "0.21.5" 47 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b" 48 | integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q== 49 | 50 | "@esbuild/linux-arm@0.21.5": 51 | version "0.21.5" 52 | resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9" 53 | integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA== 54 | 55 | "@esbuild/linux-ia32@0.21.5": 56 | version "0.21.5" 57 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2" 58 | integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg== 59 | 60 | "@esbuild/linux-loong64@0.21.5": 61 | version "0.21.5" 62 | resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df" 63 | integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg== 64 | 65 | "@esbuild/linux-mips64el@0.21.5": 66 | version "0.21.5" 67 | resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe" 68 | integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg== 69 | 70 | "@esbuild/linux-ppc64@0.21.5": 71 | version "0.21.5" 72 | resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4" 73 | integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w== 74 | 75 | "@esbuild/linux-riscv64@0.21.5": 76 | version "0.21.5" 77 | resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc" 78 | integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA== 79 | 80 | "@esbuild/linux-s390x@0.21.5": 81 | version "0.21.5" 82 | resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de" 83 | integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A== 84 | 85 | "@esbuild/linux-x64@0.21.5": 86 | version "0.21.5" 87 | resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0" 88 | integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ== 89 | 90 | "@esbuild/netbsd-x64@0.21.5": 91 | version "0.21.5" 92 | resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047" 93 | integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg== 94 | 95 | "@esbuild/openbsd-x64@0.21.5": 96 | version "0.21.5" 97 | resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70" 98 | integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow== 99 | 100 | "@esbuild/sunos-x64@0.21.5": 101 | version "0.21.5" 102 | resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b" 103 | integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg== 104 | 105 | "@esbuild/win32-arm64@0.21.5": 106 | version "0.21.5" 107 | resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d" 108 | integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A== 109 | 110 | "@esbuild/win32-ia32@0.21.5": 111 | version "0.21.5" 112 | resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b" 113 | integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA== 114 | 115 | "@esbuild/win32-x64@0.21.5": 116 | version "0.21.5" 117 | resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c" 118 | integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw== 119 | 120 | "@eslint-community/eslint-utils@^4.2.0": 121 | version "4.4.0" 122 | resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" 123 | integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== 124 | dependencies: 125 | eslint-visitor-keys "^3.3.0" 126 | 127 | "@eslint-community/regexpp@^4.4.0": 128 | version "4.5.1" 129 | resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.5.1.tgz#cdd35dce4fa1a89a4fd42b1599eb35b3af408884" 130 | integrity sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ== 131 | 132 | "@eslint/eslintrc@^2.0.3": 133 | version "2.0.3" 134 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.3.tgz#4910db5505f4d503f27774bf356e3704818a0331" 135 | integrity sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ== 136 | dependencies: 137 | ajv "^6.12.4" 138 | debug "^4.3.2" 139 | espree "^9.5.2" 140 | globals "^13.19.0" 141 | ignore "^5.2.0" 142 | import-fresh "^3.2.1" 143 | js-yaml "^4.1.0" 144 | minimatch "^3.1.2" 145 | strip-json-comments "^3.1.1" 146 | 147 | "@eslint/js@8.41.0": 148 | version "8.41.0" 149 | resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.41.0.tgz#080321c3b68253522f7646b55b577dd99d2950b3" 150 | integrity sha512-LxcyMGxwmTh2lY9FwHPGWOHmYFCZvbrFCBZL4FzSSsxsRPuhrYUg/49/0KDfW8tnIEaEHtfmn6+NPN+1DqaNmA== 151 | 152 | "@humanwhocodes/config-array@^0.11.8": 153 | version "0.11.8" 154 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9" 155 | integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g== 156 | dependencies: 157 | "@humanwhocodes/object-schema" "^1.2.1" 158 | debug "^4.1.1" 159 | minimatch "^3.0.5" 160 | 161 | "@humanwhocodes/module-importer@^1.0.1": 162 | version "1.0.1" 163 | resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" 164 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 165 | 166 | "@humanwhocodes/object-schema@^1.2.1": 167 | version "1.2.1" 168 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" 169 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 170 | 171 | "@jridgewell/sourcemap-codec@^1.5.0": 172 | version "1.5.0" 173 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a" 174 | integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ== 175 | 176 | "@nodelib/fs.scandir@2.1.5": 177 | version "2.1.5" 178 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 179 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 180 | dependencies: 181 | "@nodelib/fs.stat" "2.0.5" 182 | run-parallel "^1.1.9" 183 | 184 | "@nodelib/fs.stat@2.0.5": 185 | version "2.0.5" 186 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 187 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 188 | 189 | "@nodelib/fs.walk@^1.2.8": 190 | version "1.2.8" 191 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 192 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 193 | dependencies: 194 | "@nodelib/fs.scandir" "2.1.5" 195 | fastq "^1.6.0" 196 | 197 | "@octokit/auth-token@^3.0.0": 198 | version "3.0.3" 199 | resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-3.0.3.tgz#ce7e48a3166731f26068d7a7a7996b5da58cbe0c" 200 | integrity sha512-/aFM2M4HVDBT/jjDBa84sJniv1t9Gm/rLkalaz9htOm+L+8JMj1k9w0CkUdcxNyNxZPlTxKPVko+m1VlM58ZVA== 201 | dependencies: 202 | "@octokit/types" "^9.0.0" 203 | 204 | "@octokit/core@^4.2.1": 205 | version "4.2.1" 206 | resolved "https://registry.yarnpkg.com/@octokit/core/-/core-4.2.1.tgz#fee6341ad0ce60c29cc455e056cd5b500410a588" 207 | integrity sha512-tEDxFx8E38zF3gT7sSMDrT1tGumDgsw5yPG6BBh/X+5ClIQfMH/Yqocxz1PnHx6CHyF6pxmovUTOfZAUvQ0Lvw== 208 | dependencies: 209 | "@octokit/auth-token" "^3.0.0" 210 | "@octokit/graphql" "^5.0.0" 211 | "@octokit/request" "^6.0.0" 212 | "@octokit/request-error" "^3.0.0" 213 | "@octokit/types" "^9.0.0" 214 | before-after-hook "^2.2.0" 215 | universal-user-agent "^6.0.0" 216 | 217 | "@octokit/endpoint@^7.0.0": 218 | version "7.0.5" 219 | resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-7.0.5.tgz#2bb2a911c12c50f10014183f5d596ce30ac67dd1" 220 | integrity sha512-LG4o4HMY1Xoaec87IqQ41TQ+glvIeTKqfjkCEmt5AIwDZJwQeVZFIEYXrYY6yLwK+pAScb9Gj4q+Nz2qSw1roA== 221 | dependencies: 222 | "@octokit/types" "^9.0.0" 223 | is-plain-object "^5.0.0" 224 | universal-user-agent "^6.0.0" 225 | 226 | "@octokit/graphql@^5.0.0": 227 | version "5.0.6" 228 | resolved "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-5.0.6.tgz#9eac411ac4353ccc5d3fca7d76736e6888c5d248" 229 | integrity sha512-Fxyxdy/JH0MnIB5h+UQ3yCoh1FG4kWXfFKkpWqjZHw/p+Kc8Y44Hu/kCgNBT6nU1shNumEchmW/sUO1JuQnPcw== 230 | dependencies: 231 | "@octokit/request" "^6.0.0" 232 | "@octokit/types" "^9.0.0" 233 | universal-user-agent "^6.0.0" 234 | 235 | "@octokit/openapi-types@^17.2.0": 236 | version "17.2.0" 237 | resolved "https://registry.yarnpkg.com/@octokit/openapi-types/-/openapi-types-17.2.0.tgz#f1800b5f9652b8e1b85cc6dfb1e0dc888810bdb5" 238 | integrity sha512-MazrFNx4plbLsGl+LFesMo96eIXkFgEtaKbnNpdh4aQ0VM10aoylFsTYP1AEjkeoRNZiiPe3T6Gl2Hr8dJWdlQ== 239 | 240 | "@octokit/plugin-paginate-rest@^6.1.2": 241 | version "6.1.2" 242 | resolved "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-6.1.2.tgz#f86456a7a1fe9e58fec6385a85cf1b34072341f8" 243 | integrity sha512-qhrmtQeHU/IivxucOV1bbI/xZyC/iOBhclokv7Sut5vnejAIAEXVcGQeRpQlU39E0WwK9lNvJHphHri/DB6lbQ== 244 | dependencies: 245 | "@octokit/tsconfig" "^1.0.2" 246 | "@octokit/types" "^9.2.3" 247 | 248 | "@octokit/plugin-request-log@^1.0.4": 249 | version "1.0.4" 250 | resolved "https://registry.yarnpkg.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz#5e50ed7083a613816b1e4a28aeec5fb7f1462e85" 251 | integrity sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA== 252 | 253 | "@octokit/plugin-rest-endpoint-methods@^7.1.2": 254 | version "7.1.2" 255 | resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-7.1.2.tgz#b77a8844601d3a394a02200cddb077f3ab841f38" 256 | integrity sha512-R0oJ7j6f/AdqPLtB9qRXLO+wjI9pctUn8Ka8UGfGaFCcCv3Otx14CshQ89K4E88pmyYZS8p0rNTiprML/81jig== 257 | dependencies: 258 | "@octokit/types" "^9.2.3" 259 | deprecation "^2.3.1" 260 | 261 | "@octokit/request-error@^3.0.0": 262 | version "3.0.3" 263 | resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-3.0.3.tgz#ef3dd08b8e964e53e55d471acfe00baa892b9c69" 264 | integrity sha512-crqw3V5Iy2uOU5Np+8M/YexTlT8zxCfI+qu+LxUB7SZpje4Qmx3mub5DfEKSO8Ylyk0aogi6TYdf6kxzh2BguQ== 265 | dependencies: 266 | "@octokit/types" "^9.0.0" 267 | deprecation "^2.0.0" 268 | once "^1.4.0" 269 | 270 | "@octokit/request@^6.0.0": 271 | version "6.2.5" 272 | resolved "https://registry.yarnpkg.com/@octokit/request/-/request-6.2.5.tgz#7beef1065042998f7455973ef3f818e7b84d6ec2" 273 | integrity sha512-z83E8UIlPNaJUsXpjD8E0V5o/5f+vJJNbNcBwVZsX3/vC650U41cOkTLjq4PKk9BYonQGOnx7N17gvLyNjgGcQ== 274 | dependencies: 275 | "@octokit/endpoint" "^7.0.0" 276 | "@octokit/request-error" "^3.0.0" 277 | "@octokit/types" "^9.0.0" 278 | is-plain-object "^5.0.0" 279 | node-fetch "^2.6.7" 280 | universal-user-agent "^6.0.0" 281 | 282 | "@octokit/rest@^19.0.11": 283 | version "19.0.11" 284 | resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-19.0.11.tgz#2ae01634fed4bd1fca5b642767205ed3fd36177c" 285 | integrity sha512-m2a9VhaP5/tUw8FwfnW2ICXlXpLPIqxtg3XcAiGMLj/Xhw3RSBfZ8le/466ktO1Gcjr8oXudGnHhxV1TXJgFxw== 286 | dependencies: 287 | "@octokit/core" "^4.2.1" 288 | "@octokit/plugin-paginate-rest" "^6.1.2" 289 | "@octokit/plugin-request-log" "^1.0.4" 290 | "@octokit/plugin-rest-endpoint-methods" "^7.1.2" 291 | 292 | "@octokit/tsconfig@^1.0.2": 293 | version "1.0.2" 294 | resolved "https://registry.yarnpkg.com/@octokit/tsconfig/-/tsconfig-1.0.2.tgz#59b024d6f3c0ed82f00d08ead5b3750469125af7" 295 | integrity sha512-I0vDR0rdtP8p2lGMzvsJzbhdOWy405HcGovrspJ8RRibHnyRgggUSNO5AIox5LmqiwmatHKYsvj6VGFHkqS7lA== 296 | 297 | "@octokit/types@^9.0.0", "@octokit/types@^9.2.3": 298 | version "9.2.3" 299 | resolved "https://registry.yarnpkg.com/@octokit/types/-/types-9.2.3.tgz#d0af522f394d74b585cefb7efd6197ca44d183a9" 300 | integrity sha512-MMeLdHyFIALioycq+LFcA71v0S2xpQUX2cw6pPbHQjaibcHYwLnmK/kMZaWuGfGfjBJZ3wRUq+dOaWsvrPJVvA== 301 | dependencies: 302 | "@octokit/openapi-types" "^17.2.0" 303 | 304 | "@rollup/rollup-android-arm-eabi@4.24.0": 305 | version "4.24.0" 306 | resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.24.0.tgz#1661ff5ea9beb362795304cb916049aba7ac9c54" 307 | integrity sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA== 308 | 309 | "@rollup/rollup-android-arm64@4.24.0": 310 | version "4.24.0" 311 | resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.24.0.tgz#2ffaa91f1b55a0082b8a722525741aadcbd3971e" 312 | integrity sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA== 313 | 314 | "@rollup/rollup-darwin-arm64@4.24.0": 315 | version "4.24.0" 316 | resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.24.0.tgz#627007221b24b8cc3063703eee0b9177edf49c1f" 317 | integrity sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA== 318 | 319 | "@rollup/rollup-darwin-x64@4.24.0": 320 | version "4.24.0" 321 | resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.24.0.tgz#0605506142b9e796c370d59c5984ae95b9758724" 322 | integrity sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ== 323 | 324 | "@rollup/rollup-linux-arm-gnueabihf@4.24.0": 325 | version "4.24.0" 326 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.24.0.tgz#62dfd196d4b10c0c2db833897164d2d319ee0cbb" 327 | integrity sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA== 328 | 329 | "@rollup/rollup-linux-arm-musleabihf@4.24.0": 330 | version "4.24.0" 331 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.24.0.tgz#53ce72aeb982f1f34b58b380baafaf6a240fddb3" 332 | integrity sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw== 333 | 334 | "@rollup/rollup-linux-arm64-gnu@4.24.0": 335 | version "4.24.0" 336 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.24.0.tgz#1632990f62a75c74f43e4b14ab3597d7ed416496" 337 | integrity sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA== 338 | 339 | "@rollup/rollup-linux-arm64-musl@4.24.0": 340 | version "4.24.0" 341 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.24.0.tgz#8c03a996efb41e257b414b2e0560b7a21f2d9065" 342 | integrity sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw== 343 | 344 | "@rollup/rollup-linux-powerpc64le-gnu@4.24.0": 345 | version "4.24.0" 346 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.24.0.tgz#5b98729628d5bcc8f7f37b58b04d6845f85c7b5d" 347 | integrity sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw== 348 | 349 | "@rollup/rollup-linux-riscv64-gnu@4.24.0": 350 | version "4.24.0" 351 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.24.0.tgz#48e42e41f4cabf3573cfefcb448599c512e22983" 352 | integrity sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg== 353 | 354 | "@rollup/rollup-linux-s390x-gnu@4.24.0": 355 | version "4.24.0" 356 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.24.0.tgz#e0b4f9a966872cb7d3e21b9e412a4b7efd7f0b58" 357 | integrity sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g== 358 | 359 | "@rollup/rollup-linux-x64-gnu@4.24.0": 360 | version "4.24.0" 361 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.24.0.tgz#78144741993100f47bd3da72fce215e077ae036b" 362 | integrity sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A== 363 | 364 | "@rollup/rollup-linux-x64-musl@4.24.0": 365 | version "4.24.0" 366 | resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.24.0.tgz#d9fe32971883cd1bd858336bd33a1c3ca6146127" 367 | integrity sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ== 368 | 369 | "@rollup/rollup-win32-arm64-msvc@4.24.0": 370 | version "4.24.0" 371 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.24.0.tgz#71fa3ea369316db703a909c790743972e98afae5" 372 | integrity sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ== 373 | 374 | "@rollup/rollup-win32-ia32-msvc@4.24.0": 375 | version "4.24.0" 376 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.24.0.tgz#653f5989a60658e17d7576a3996deb3902e342e2" 377 | integrity sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ== 378 | 379 | "@rollup/rollup-win32-x64-msvc@4.24.0": 380 | version "4.24.0" 381 | resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.24.0.tgz#0574d7e87b44ee8511d08cc7f914bcb802b70818" 382 | integrity sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw== 383 | 384 | "@types/estree@1.0.6", "@types/estree@^1.0.0": 385 | version "1.0.6" 386 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.6.tgz#628effeeae2064a1b4e79f78e81d87b7e5fc7b50" 387 | integrity sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw== 388 | 389 | "@vercel/ncc@^0.36.1": 390 | version "0.36.1" 391 | resolved "https://registry.yarnpkg.com/@vercel/ncc/-/ncc-0.36.1.tgz#d4c01fdbbe909d128d1bf11c7f8b5431654c5b95" 392 | integrity sha512-S4cL7Taa9yb5qbv+6wLgiKVZ03Qfkc4jGRuiUQMQ8HGBD5pcNRnHeYM33zBvJE4/zJGjJJ8GScB+WmTsn9mORw== 393 | 394 | "@vitest/expect@2.1.3": 395 | version "2.1.3" 396 | resolved "https://registry.yarnpkg.com/@vitest/expect/-/expect-2.1.3.tgz#4b9a6fff22be4c4cd5d57e687cfda611b514b0ad" 397 | integrity sha512-SNBoPubeCJhZ48agjXruCI57DvxcsivVDdWz+SSsmjTT4QN/DfHk3zB/xKsJqMs26bLZ/pNRLnCf0j679i0uWQ== 398 | dependencies: 399 | "@vitest/spy" "2.1.3" 400 | "@vitest/utils" "2.1.3" 401 | chai "^5.1.1" 402 | tinyrainbow "^1.2.0" 403 | 404 | "@vitest/mocker@2.1.3": 405 | version "2.1.3" 406 | resolved "https://registry.yarnpkg.com/@vitest/mocker/-/mocker-2.1.3.tgz#a3593b426551be5715fa108faf04f8a9ddb0a9cc" 407 | integrity sha512-eSpdY/eJDuOvuTA3ASzCjdithHa+GIF1L4PqtEELl6Qa3XafdMLBpBlZCIUCX2J+Q6sNmjmxtosAG62fK4BlqQ== 408 | dependencies: 409 | "@vitest/spy" "2.1.3" 410 | estree-walker "^3.0.3" 411 | magic-string "^0.30.11" 412 | 413 | "@vitest/pretty-format@2.1.3", "@vitest/pretty-format@^2.1.3": 414 | version "2.1.3" 415 | resolved "https://registry.yarnpkg.com/@vitest/pretty-format/-/pretty-format-2.1.3.tgz#48b9b03de75507d1d493df7beb48dc39a1946a3e" 416 | integrity sha512-XH1XdtoLZCpqV59KRbPrIhFCOO0hErxrQCMcvnQete3Vibb9UeIOX02uFPfVn3Z9ZXsq78etlfyhnkmIZSzIwQ== 417 | dependencies: 418 | tinyrainbow "^1.2.0" 419 | 420 | "@vitest/runner@2.1.3": 421 | version "2.1.3" 422 | resolved "https://registry.yarnpkg.com/@vitest/runner/-/runner-2.1.3.tgz#20a6da112007dfd92969951df189c6da66c9dac4" 423 | integrity sha512-JGzpWqmFJ4fq5ZKHtVO3Xuy1iF2rHGV4d/pdzgkYHm1+gOzNZtqjvyiaDGJytRyMU54qkxpNzCx+PErzJ1/JqQ== 424 | dependencies: 425 | "@vitest/utils" "2.1.3" 426 | pathe "^1.1.2" 427 | 428 | "@vitest/snapshot@2.1.3": 429 | version "2.1.3" 430 | resolved "https://registry.yarnpkg.com/@vitest/snapshot/-/snapshot-2.1.3.tgz#1b405a9c40a82563605b13fdc045217751069e58" 431 | integrity sha512-qWC2mWc7VAXmjAkEKxrScWHWFyCQx/cmiZtuGqMi+WwqQJ2iURsVY4ZfAK6dVo6K2smKRU6l3BPwqEBvhnpQGg== 432 | dependencies: 433 | "@vitest/pretty-format" "2.1.3" 434 | magic-string "^0.30.11" 435 | pathe "^1.1.2" 436 | 437 | "@vitest/spy@2.1.3": 438 | version "2.1.3" 439 | resolved "https://registry.yarnpkg.com/@vitest/spy/-/spy-2.1.3.tgz#2c8a457673094ec4c1ab7c50cb11c58e3624ada2" 440 | integrity sha512-Nb2UzbcUswzeSP7JksMDaqsI43Sj5+Kry6ry6jQJT4b5gAK+NS9NED6mDb8FlMRCX8m5guaHCDZmqYMMWRy5nQ== 441 | dependencies: 442 | tinyspy "^3.0.0" 443 | 444 | "@vitest/utils@2.1.3": 445 | version "2.1.3" 446 | resolved "https://registry.yarnpkg.com/@vitest/utils/-/utils-2.1.3.tgz#e52aa5745384091b151cbdf79bb5a3ad2bea88d2" 447 | integrity sha512-xpiVfDSg1RrYT0tX6czgerkpcKFmFOF/gCr30+Mve5V2kewCy4Prn1/NDMSRwaSmT7PRaOF83wu+bEtsY1wrvA== 448 | dependencies: 449 | "@vitest/pretty-format" "2.1.3" 450 | loupe "^3.1.1" 451 | tinyrainbow "^1.2.0" 452 | 453 | acorn-jsx@^5.3.2: 454 | version "5.3.2" 455 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 456 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 457 | 458 | acorn@^8.8.0: 459 | version "8.8.2" 460 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" 461 | integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== 462 | 463 | agent-base@^7.0.2: 464 | version "7.1.1" 465 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-7.1.1.tgz#bdbded7dfb096b751a2a087eeeb9664725b2e317" 466 | integrity sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA== 467 | dependencies: 468 | debug "^4.3.4" 469 | 470 | ajv@^6.10.0, ajv@^6.12.4: 471 | version "6.12.6" 472 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 473 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 474 | dependencies: 475 | fast-deep-equal "^3.1.1" 476 | fast-json-stable-stringify "^2.0.0" 477 | json-schema-traverse "^0.4.1" 478 | uri-js "^4.2.2" 479 | 480 | ansi-regex@^5.0.1: 481 | version "5.0.1" 482 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 483 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 484 | 485 | ansi-styles@^4.1.0: 486 | version "4.3.0" 487 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 488 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 489 | dependencies: 490 | color-convert "^2.0.1" 491 | 492 | argparse@^2.0.1: 493 | version "2.0.1" 494 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 495 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 496 | 497 | assertion-error@^2.0.1: 498 | version "2.0.1" 499 | resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-2.0.1.tgz#f641a196b335690b1070bf00b6e7593fec190bf7" 500 | integrity sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA== 501 | 502 | balanced-match@^1.0.0: 503 | version "1.0.2" 504 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 505 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 506 | 507 | before-after-hook@^2.2.0: 508 | version "2.2.3" 509 | resolved "https://registry.yarnpkg.com/before-after-hook/-/before-after-hook-2.2.3.tgz#c51e809c81a4e354084422b9b26bad88249c517c" 510 | integrity sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ== 511 | 512 | brace-expansion@^1.1.7: 513 | version "1.1.11" 514 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 515 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 516 | dependencies: 517 | balanced-match "^1.0.0" 518 | concat-map "0.0.1" 519 | 520 | cac@^6.7.14: 521 | version "6.7.14" 522 | resolved "https://registry.yarnpkg.com/cac/-/cac-6.7.14.tgz#804e1e6f506ee363cb0e3ccbb09cad5dd9870959" 523 | integrity sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ== 524 | 525 | callsites@^3.0.0: 526 | version "3.1.0" 527 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 528 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 529 | 530 | chai@^5.1.1: 531 | version "5.1.1" 532 | resolved "https://registry.yarnpkg.com/chai/-/chai-5.1.1.tgz#f035d9792a22b481ead1c65908d14bb62ec1c82c" 533 | integrity sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA== 534 | dependencies: 535 | assertion-error "^2.0.1" 536 | check-error "^2.1.1" 537 | deep-eql "^5.0.1" 538 | loupe "^3.1.0" 539 | pathval "^2.0.0" 540 | 541 | chalk@^4.0.0: 542 | version "4.1.2" 543 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 544 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 545 | dependencies: 546 | ansi-styles "^4.1.0" 547 | supports-color "^7.1.0" 548 | 549 | check-error@^2.1.1: 550 | version "2.1.1" 551 | resolved "https://registry.yarnpkg.com/check-error/-/check-error-2.1.1.tgz#87eb876ae71ee388fa0471fe423f494be1d96ccc" 552 | integrity sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw== 553 | 554 | color-convert@^2.0.1: 555 | version "2.0.1" 556 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 557 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 558 | dependencies: 559 | color-name "~1.1.4" 560 | 561 | color-name@~1.1.4: 562 | version "1.1.4" 563 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 564 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 565 | 566 | concat-map@0.0.1: 567 | version "0.0.1" 568 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 569 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 570 | 571 | cross-spawn@^7.0.2: 572 | version "7.0.3" 573 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 574 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 575 | dependencies: 576 | path-key "^3.1.0" 577 | shebang-command "^2.0.0" 578 | which "^2.0.1" 579 | 580 | debug@4: 581 | version "4.3.2" 582 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" 583 | integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== 584 | dependencies: 585 | ms "2.1.2" 586 | 587 | debug@^4.1.1: 588 | version "4.3.1" 589 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" 590 | integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== 591 | dependencies: 592 | ms "2.1.2" 593 | 594 | debug@^4.3.2: 595 | version "4.3.4" 596 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 597 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 598 | dependencies: 599 | ms "2.1.2" 600 | 601 | debug@^4.3.4: 602 | version "4.3.6" 603 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.6.tgz#2ab2c38fbaffebf8aa95fdfe6d88438c7a13c52b" 604 | integrity sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg== 605 | dependencies: 606 | ms "2.1.2" 607 | 608 | debug@^4.3.6: 609 | version "4.3.7" 610 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52" 611 | integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ== 612 | dependencies: 613 | ms "^2.1.3" 614 | 615 | deep-eql@^5.0.1: 616 | version "5.0.2" 617 | resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-5.0.2.tgz#4b756d8d770a9257300825d52a2c2cff99c3a341" 618 | integrity sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q== 619 | 620 | deep-is@^0.1.3: 621 | version "0.1.4" 622 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 623 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 624 | 625 | deprecation@^2.0.0, deprecation@^2.3.1: 626 | version "2.3.1" 627 | resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919" 628 | integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ== 629 | 630 | doctrine@^3.0.0: 631 | version "3.0.0" 632 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 633 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 634 | dependencies: 635 | esutils "^2.0.2" 636 | 637 | dotenv@^16.1.2: 638 | version "16.1.2" 639 | resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.1.2.tgz#5c62cefa33c9e034354f5828c06aeedc4acfe7f3" 640 | integrity sha512-RiNjjDF5yr9NtjqJqmWYA/XZShmt3r8FtJgAaqTiYqb99SqT0+aw5xAwOIvjMyXsH/C9/fLNafFkkZDwRi1KHA== 641 | 642 | esbuild@^0.21.3: 643 | version "0.21.5" 644 | resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d" 645 | integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw== 646 | optionalDependencies: 647 | "@esbuild/aix-ppc64" "0.21.5" 648 | "@esbuild/android-arm" "0.21.5" 649 | "@esbuild/android-arm64" "0.21.5" 650 | "@esbuild/android-x64" "0.21.5" 651 | "@esbuild/darwin-arm64" "0.21.5" 652 | "@esbuild/darwin-x64" "0.21.5" 653 | "@esbuild/freebsd-arm64" "0.21.5" 654 | "@esbuild/freebsd-x64" "0.21.5" 655 | "@esbuild/linux-arm" "0.21.5" 656 | "@esbuild/linux-arm64" "0.21.5" 657 | "@esbuild/linux-ia32" "0.21.5" 658 | "@esbuild/linux-loong64" "0.21.5" 659 | "@esbuild/linux-mips64el" "0.21.5" 660 | "@esbuild/linux-ppc64" "0.21.5" 661 | "@esbuild/linux-riscv64" "0.21.5" 662 | "@esbuild/linux-s390x" "0.21.5" 663 | "@esbuild/linux-x64" "0.21.5" 664 | "@esbuild/netbsd-x64" "0.21.5" 665 | "@esbuild/openbsd-x64" "0.21.5" 666 | "@esbuild/sunos-x64" "0.21.5" 667 | "@esbuild/win32-arm64" "0.21.5" 668 | "@esbuild/win32-ia32" "0.21.5" 669 | "@esbuild/win32-x64" "0.21.5" 670 | 671 | escape-string-regexp@^4.0.0: 672 | version "4.0.0" 673 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 674 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 675 | 676 | eslint-scope@^7.2.0: 677 | version "7.2.0" 678 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.0.tgz#f21ebdafda02352f103634b96dd47d9f81ca117b" 679 | integrity sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw== 680 | dependencies: 681 | esrecurse "^4.3.0" 682 | estraverse "^5.2.0" 683 | 684 | eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1: 685 | version "3.4.1" 686 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz#c22c48f48942d08ca824cc526211ae400478a994" 687 | integrity sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA== 688 | 689 | eslint@^8.41.0: 690 | version "8.41.0" 691 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.41.0.tgz#3062ca73363b4714b16dbc1e60f035e6134b6f1c" 692 | integrity sha512-WQDQpzGBOP5IrXPo4Hc0814r4/v2rrIsB0rhT7jtunIalgg6gYXWhRMOejVO8yH21T/FGaxjmFjBMNqcIlmH1Q== 693 | dependencies: 694 | "@eslint-community/eslint-utils" "^4.2.0" 695 | "@eslint-community/regexpp" "^4.4.0" 696 | "@eslint/eslintrc" "^2.0.3" 697 | "@eslint/js" "8.41.0" 698 | "@humanwhocodes/config-array" "^0.11.8" 699 | "@humanwhocodes/module-importer" "^1.0.1" 700 | "@nodelib/fs.walk" "^1.2.8" 701 | ajv "^6.10.0" 702 | chalk "^4.0.0" 703 | cross-spawn "^7.0.2" 704 | debug "^4.3.2" 705 | doctrine "^3.0.0" 706 | escape-string-regexp "^4.0.0" 707 | eslint-scope "^7.2.0" 708 | eslint-visitor-keys "^3.4.1" 709 | espree "^9.5.2" 710 | esquery "^1.4.2" 711 | esutils "^2.0.2" 712 | fast-deep-equal "^3.1.3" 713 | file-entry-cache "^6.0.1" 714 | find-up "^5.0.0" 715 | glob-parent "^6.0.2" 716 | globals "^13.19.0" 717 | graphemer "^1.4.0" 718 | ignore "^5.2.0" 719 | import-fresh "^3.0.0" 720 | imurmurhash "^0.1.4" 721 | is-glob "^4.0.0" 722 | is-path-inside "^3.0.3" 723 | js-yaml "^4.1.0" 724 | json-stable-stringify-without-jsonify "^1.0.1" 725 | levn "^0.4.1" 726 | lodash.merge "^4.6.2" 727 | minimatch "^3.1.2" 728 | natural-compare "^1.4.0" 729 | optionator "^0.9.1" 730 | strip-ansi "^6.0.1" 731 | strip-json-comments "^3.1.0" 732 | text-table "^0.2.0" 733 | 734 | espree@^9.5.2: 735 | version "9.5.2" 736 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.2.tgz#e994e7dc33a082a7a82dceaf12883a829353215b" 737 | integrity sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw== 738 | dependencies: 739 | acorn "^8.8.0" 740 | acorn-jsx "^5.3.2" 741 | eslint-visitor-keys "^3.4.1" 742 | 743 | esquery@^1.4.2: 744 | version "1.5.0" 745 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" 746 | integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== 747 | dependencies: 748 | estraverse "^5.1.0" 749 | 750 | esrecurse@^4.3.0: 751 | version "4.3.0" 752 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 753 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 754 | dependencies: 755 | estraverse "^5.2.0" 756 | 757 | estraverse@^5.1.0, estraverse@^5.2.0: 758 | version "5.3.0" 759 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 760 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 761 | 762 | estree-walker@^3.0.3: 763 | version "3.0.3" 764 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-3.0.3.tgz#67c3e549ec402a487b4fc193d1953a524752340d" 765 | integrity sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g== 766 | dependencies: 767 | "@types/estree" "^1.0.0" 768 | 769 | esutils@^2.0.2: 770 | version "2.0.3" 771 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 772 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 773 | 774 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 775 | version "3.1.3" 776 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 777 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 778 | 779 | fast-json-stable-stringify@^2.0.0: 780 | version "2.1.0" 781 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 782 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 783 | 784 | fast-levenshtein@^2.0.6: 785 | version "2.0.6" 786 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 787 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 788 | 789 | fastq@^1.6.0: 790 | version "1.15.0" 791 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" 792 | integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== 793 | dependencies: 794 | reusify "^1.0.4" 795 | 796 | file-entry-cache@^6.0.1: 797 | version "6.0.1" 798 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 799 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 800 | dependencies: 801 | flat-cache "^3.0.4" 802 | 803 | find-up@^5.0.0: 804 | version "5.0.0" 805 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 806 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 807 | dependencies: 808 | locate-path "^6.0.0" 809 | path-exists "^4.0.0" 810 | 811 | flat-cache@^3.0.4: 812 | version "3.0.4" 813 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 814 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 815 | dependencies: 816 | flatted "^3.1.0" 817 | rimraf "^3.0.2" 818 | 819 | flatted@^3.1.0: 820 | version "3.2.7" 821 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" 822 | integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== 823 | 824 | fs.realpath@^1.0.0: 825 | version "1.0.0" 826 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 827 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 828 | 829 | fsevents@~2.3.2, fsevents@~2.3.3: 830 | version "2.3.3" 831 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" 832 | integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== 833 | 834 | get-func-name@^2.0.1: 835 | version "2.0.2" 836 | resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.2.tgz#0d7cf20cd13fda808669ffa88f4ffc7a3943fc41" 837 | integrity sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ== 838 | 839 | glob-parent@^6.0.2: 840 | version "6.0.2" 841 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 842 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 843 | dependencies: 844 | is-glob "^4.0.3" 845 | 846 | glob@^7.1.3: 847 | version "7.2.3" 848 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 849 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 850 | dependencies: 851 | fs.realpath "^1.0.0" 852 | inflight "^1.0.4" 853 | inherits "2" 854 | minimatch "^3.1.1" 855 | once "^1.3.0" 856 | path-is-absolute "^1.0.0" 857 | 858 | globals@^13.19.0: 859 | version "13.20.0" 860 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" 861 | integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== 862 | dependencies: 863 | type-fest "^0.20.2" 864 | 865 | globrex@^0.1.2: 866 | version "0.1.2" 867 | resolved "https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz#dd5d9ec826232730cd6793a5e33a9302985e6098" 868 | integrity sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg== 869 | 870 | graphemer@^1.4.0: 871 | version "1.4.0" 872 | resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" 873 | integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== 874 | 875 | has-flag@^4.0.0: 876 | version "4.0.0" 877 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 878 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 879 | 880 | https-proxy-agent@^7.0.5: 881 | version "7.0.5" 882 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz#9e8b5013873299e11fab6fd548405da2d6c602b2" 883 | integrity sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw== 884 | dependencies: 885 | agent-base "^7.0.2" 886 | debug "4" 887 | 888 | ignore@^5.2.0: 889 | version "5.2.4" 890 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" 891 | integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== 892 | 893 | import-fresh@^3.0.0, import-fresh@^3.2.1: 894 | version "3.3.0" 895 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 896 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 897 | dependencies: 898 | parent-module "^1.0.0" 899 | resolve-from "^4.0.0" 900 | 901 | imurmurhash@^0.1.4: 902 | version "0.1.4" 903 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 904 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 905 | 906 | inflight@^1.0.4: 907 | version "1.0.6" 908 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 909 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 910 | dependencies: 911 | once "^1.3.0" 912 | wrappy "1" 913 | 914 | inherits@2: 915 | version "2.0.4" 916 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 917 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 918 | 919 | is-extglob@^2.1.1: 920 | version "2.1.1" 921 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 922 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 923 | 924 | is-glob@^4.0.0, is-glob@^4.0.3: 925 | version "4.0.3" 926 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 927 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 928 | dependencies: 929 | is-extglob "^2.1.1" 930 | 931 | is-path-inside@^3.0.3: 932 | version "3.0.3" 933 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 934 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 935 | 936 | is-plain-object@^5.0.0: 937 | version "5.0.0" 938 | resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" 939 | integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== 940 | 941 | isexe@^2.0.0: 942 | version "2.0.0" 943 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 944 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 945 | 946 | js-yaml@^4.1.0: 947 | version "4.1.0" 948 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 949 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 950 | dependencies: 951 | argparse "^2.0.1" 952 | 953 | json-schema-traverse@^0.4.1: 954 | version "0.4.1" 955 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 956 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 957 | 958 | json-stable-stringify-without-jsonify@^1.0.1: 959 | version "1.0.1" 960 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 961 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 962 | 963 | levn@^0.4.1: 964 | version "0.4.1" 965 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 966 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 967 | dependencies: 968 | prelude-ls "^1.2.1" 969 | type-check "~0.4.0" 970 | 971 | locate-path@^6.0.0: 972 | version "6.0.0" 973 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 974 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 975 | dependencies: 976 | p-locate "^5.0.0" 977 | 978 | lodash.merge@^4.6.2: 979 | version "4.6.2" 980 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 981 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 982 | 983 | loupe@^3.1.0, loupe@^3.1.1: 984 | version "3.1.1" 985 | resolved "https://registry.yarnpkg.com/loupe/-/loupe-3.1.1.tgz#71d038d59007d890e3247c5db97c1ec5a92edc54" 986 | integrity sha512-edNu/8D5MKVfGVFRhFf8aAxiTM6Wumfz5XsaatSxlD3w4R1d/WEKUTydCdPGbl9K7QG/Ca3GnDV2sIKIpXRQcw== 987 | dependencies: 988 | get-func-name "^2.0.1" 989 | 990 | magic-string@^0.30.11: 991 | version "0.30.11" 992 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.11.tgz#301a6f93b3e8c2cb13ac1a7a673492c0dfd12954" 993 | integrity sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A== 994 | dependencies: 995 | "@jridgewell/sourcemap-codec" "^1.5.0" 996 | 997 | minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: 998 | version "3.1.2" 999 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1000 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1001 | dependencies: 1002 | brace-expansion "^1.1.7" 1003 | 1004 | ms@2.1.2: 1005 | version "2.1.2" 1006 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1007 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1008 | 1009 | ms@^2.1.3: 1010 | version "2.1.3" 1011 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1012 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1013 | 1014 | nanoid@^3.3.7: 1015 | version "3.3.7" 1016 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" 1017 | integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== 1018 | 1019 | natural-compare@^1.4.0: 1020 | version "1.4.0" 1021 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1022 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1023 | 1024 | node-fetch@^2.6.7: 1025 | version "2.6.11" 1026 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.11.tgz#cde7fc71deef3131ef80a738919f999e6edfff25" 1027 | integrity sha512-4I6pdBY1EthSqDmJkiNk3JIT8cswwR9nfeW/cPdUagJYEQG7R95WRH74wpz7ma8Gh/9dI9FP+OU+0E4FvtA55w== 1028 | dependencies: 1029 | whatwg-url "^5.0.0" 1030 | 1031 | once@^1.3.0, once@^1.4.0: 1032 | version "1.4.0" 1033 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1034 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1035 | dependencies: 1036 | wrappy "1" 1037 | 1038 | optionator@^0.9.1: 1039 | version "0.9.1" 1040 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 1041 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 1042 | dependencies: 1043 | deep-is "^0.1.3" 1044 | fast-levenshtein "^2.0.6" 1045 | levn "^0.4.1" 1046 | prelude-ls "^1.2.1" 1047 | type-check "^0.4.0" 1048 | word-wrap "^1.2.3" 1049 | 1050 | p-limit@^3.0.2: 1051 | version "3.1.0" 1052 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1053 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1054 | dependencies: 1055 | yocto-queue "^0.1.0" 1056 | 1057 | p-locate@^5.0.0: 1058 | version "5.0.0" 1059 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 1060 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 1061 | dependencies: 1062 | p-limit "^3.0.2" 1063 | 1064 | parent-module@^1.0.0: 1065 | version "1.0.1" 1066 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1067 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1068 | dependencies: 1069 | callsites "^3.0.0" 1070 | 1071 | path-exists@^4.0.0: 1072 | version "4.0.0" 1073 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1074 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1075 | 1076 | path-is-absolute@^1.0.0: 1077 | version "1.0.1" 1078 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1079 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1080 | 1081 | path-key@^3.1.0: 1082 | version "3.1.1" 1083 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1084 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1085 | 1086 | pathe@^1.1.2: 1087 | version "1.1.2" 1088 | resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.2.tgz#6c4cb47a945692e48a1ddd6e4094d170516437ec" 1089 | integrity sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ== 1090 | 1091 | pathval@^2.0.0: 1092 | version "2.0.0" 1093 | resolved "https://registry.yarnpkg.com/pathval/-/pathval-2.0.0.tgz#7e2550b422601d4f6b8e26f1301bc8f15a741a25" 1094 | integrity sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA== 1095 | 1096 | picocolors@^1.1.0: 1097 | version "1.1.0" 1098 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.0.tgz#5358b76a78cde483ba5cef6a9dc9671440b27d59" 1099 | integrity sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw== 1100 | 1101 | postcss@^8.4.43: 1102 | version "8.4.47" 1103 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.47.tgz#5bf6c9a010f3e724c503bf03ef7947dcb0fea365" 1104 | integrity sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ== 1105 | dependencies: 1106 | nanoid "^3.3.7" 1107 | picocolors "^1.1.0" 1108 | source-map-js "^1.2.1" 1109 | 1110 | prelude-ls@^1.2.1: 1111 | version "1.2.1" 1112 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1113 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1114 | 1115 | punycode@^2.1.0: 1116 | version "2.3.0" 1117 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" 1118 | integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== 1119 | 1120 | queue-microtask@^1.2.2: 1121 | version "1.2.3" 1122 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1123 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1124 | 1125 | resolve-from@^4.0.0: 1126 | version "4.0.0" 1127 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1128 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1129 | 1130 | reusify@^1.0.4: 1131 | version "1.0.4" 1132 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 1133 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1134 | 1135 | rimraf@^3.0.0, rimraf@^3.0.2: 1136 | version "3.0.2" 1137 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1138 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1139 | dependencies: 1140 | glob "^7.1.3" 1141 | 1142 | rollup@^4.20.0: 1143 | version "4.24.0" 1144 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.24.0.tgz#c14a3576f20622ea6a5c9cad7caca5e6e9555d05" 1145 | integrity sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg== 1146 | dependencies: 1147 | "@types/estree" "1.0.6" 1148 | optionalDependencies: 1149 | "@rollup/rollup-android-arm-eabi" "4.24.0" 1150 | "@rollup/rollup-android-arm64" "4.24.0" 1151 | "@rollup/rollup-darwin-arm64" "4.24.0" 1152 | "@rollup/rollup-darwin-x64" "4.24.0" 1153 | "@rollup/rollup-linux-arm-gnueabihf" "4.24.0" 1154 | "@rollup/rollup-linux-arm-musleabihf" "4.24.0" 1155 | "@rollup/rollup-linux-arm64-gnu" "4.24.0" 1156 | "@rollup/rollup-linux-arm64-musl" "4.24.0" 1157 | "@rollup/rollup-linux-powerpc64le-gnu" "4.24.0" 1158 | "@rollup/rollup-linux-riscv64-gnu" "4.24.0" 1159 | "@rollup/rollup-linux-s390x-gnu" "4.24.0" 1160 | "@rollup/rollup-linux-x64-gnu" "4.24.0" 1161 | "@rollup/rollup-linux-x64-musl" "4.24.0" 1162 | "@rollup/rollup-win32-arm64-msvc" "4.24.0" 1163 | "@rollup/rollup-win32-ia32-msvc" "4.24.0" 1164 | "@rollup/rollup-win32-x64-msvc" "4.24.0" 1165 | fsevents "~2.3.2" 1166 | 1167 | run-parallel@^1.1.9: 1168 | version "1.2.0" 1169 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 1170 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 1171 | dependencies: 1172 | queue-microtask "^1.2.2" 1173 | 1174 | shebang-command@^2.0.0: 1175 | version "2.0.0" 1176 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1177 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1178 | dependencies: 1179 | shebang-regex "^3.0.0" 1180 | 1181 | shebang-regex@^3.0.0: 1182 | version "3.0.0" 1183 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1184 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1185 | 1186 | siginfo@^2.0.0: 1187 | version "2.0.0" 1188 | resolved "https://registry.yarnpkg.com/siginfo/-/siginfo-2.0.0.tgz#32e76c70b79724e3bb567cb9d543eb858ccfaf30" 1189 | integrity sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g== 1190 | 1191 | source-map-js@^1.2.1: 1192 | version "1.2.1" 1193 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" 1194 | integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== 1195 | 1196 | stackback@0.0.2: 1197 | version "0.0.2" 1198 | resolved "https://registry.yarnpkg.com/stackback/-/stackback-0.0.2.tgz#1ac8a0d9483848d1695e418b6d031a3c3ce68e3b" 1199 | integrity sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw== 1200 | 1201 | std-env@^3.7.0: 1202 | version "3.7.0" 1203 | resolved "https://registry.yarnpkg.com/std-env/-/std-env-3.7.0.tgz#c9f7386ced6ecf13360b6c6c55b8aaa4ef7481d2" 1204 | integrity sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg== 1205 | 1206 | strip-ansi@^6.0.1: 1207 | version "6.0.1" 1208 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 1209 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 1210 | dependencies: 1211 | ansi-regex "^5.0.1" 1212 | 1213 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 1214 | version "3.1.1" 1215 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 1216 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 1217 | 1218 | supports-color@^7.1.0: 1219 | version "7.2.0" 1220 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1221 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1222 | dependencies: 1223 | has-flag "^4.0.0" 1224 | 1225 | text-table@^0.2.0: 1226 | version "0.2.0" 1227 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1228 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 1229 | 1230 | tinybench@^2.9.0: 1231 | version "2.9.0" 1232 | resolved "https://registry.yarnpkg.com/tinybench/-/tinybench-2.9.0.tgz#103c9f8ba6d7237a47ab6dd1dcff77251863426b" 1233 | integrity sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg== 1234 | 1235 | tinyexec@^0.3.0: 1236 | version "0.3.0" 1237 | resolved "https://registry.yarnpkg.com/tinyexec/-/tinyexec-0.3.0.tgz#ed60cfce19c17799d4a241e06b31b0ec2bee69e6" 1238 | integrity sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg== 1239 | 1240 | tinypool@^1.0.0: 1241 | version "1.0.1" 1242 | resolved "https://registry.yarnpkg.com/tinypool/-/tinypool-1.0.1.tgz#c64233c4fac4304e109a64340178760116dbe1fe" 1243 | integrity sha512-URZYihUbRPcGv95En+sz6MfghfIc2OJ1sv/RmhWZLouPY0/8Vo80viwPvg3dlaS9fuq7fQMEfgRRK7BBZThBEA== 1244 | 1245 | tinyrainbow@^1.2.0: 1246 | version "1.2.0" 1247 | resolved "https://registry.yarnpkg.com/tinyrainbow/-/tinyrainbow-1.2.0.tgz#5c57d2fc0fb3d1afd78465c33ca885d04f02abb5" 1248 | integrity sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ== 1249 | 1250 | tinyspy@^3.0.0: 1251 | version "3.0.2" 1252 | resolved "https://registry.yarnpkg.com/tinyspy/-/tinyspy-3.0.2.tgz#86dd3cf3d737b15adcf17d7887c84a75201df20a" 1253 | integrity sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q== 1254 | 1255 | tmp@^0.2.1: 1256 | version "0.2.1" 1257 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" 1258 | integrity sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ== 1259 | dependencies: 1260 | rimraf "^3.0.0" 1261 | 1262 | tr46@~0.0.3: 1263 | version "0.0.3" 1264 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" 1265 | integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== 1266 | 1267 | type-check@^0.4.0, type-check@~0.4.0: 1268 | version "0.4.0" 1269 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 1270 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 1271 | dependencies: 1272 | prelude-ls "^1.2.1" 1273 | 1274 | type-fest@^0.20.2: 1275 | version "0.20.2" 1276 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 1277 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 1278 | 1279 | universal-user-agent@^6.0.0: 1280 | version "6.0.0" 1281 | resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz#3381f8503b251c0d9cd21bc1de939ec9df5480ee" 1282 | integrity sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w== 1283 | 1284 | uri-js@^4.2.2: 1285 | version "4.4.1" 1286 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 1287 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 1288 | dependencies: 1289 | punycode "^2.1.0" 1290 | 1291 | vite-node@2.1.3: 1292 | version "2.1.3" 1293 | resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-2.1.3.tgz#8291d31f91c69dc22fea7909f4394c2b3cc2e2d9" 1294 | integrity sha512-I1JadzO+xYX887S39Do+paRePCKoiDrWRRjp9kkG5he0t7RXNvPAJPCQSJqbGN4uCrFFeS3Kj3sLqY8NMYBEdA== 1295 | dependencies: 1296 | cac "^6.7.14" 1297 | debug "^4.3.6" 1298 | pathe "^1.1.2" 1299 | vite "^5.0.0" 1300 | 1301 | vite@^5.0.0: 1302 | version "5.4.8" 1303 | resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.8.tgz#af548ce1c211b2785478d3ba3e8da51e39a287e8" 1304 | integrity sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ== 1305 | dependencies: 1306 | esbuild "^0.21.3" 1307 | postcss "^8.4.43" 1308 | rollup "^4.20.0" 1309 | optionalDependencies: 1310 | fsevents "~2.3.3" 1311 | 1312 | vitest@^2.1.3: 1313 | version "2.1.3" 1314 | resolved "https://registry.yarnpkg.com/vitest/-/vitest-2.1.3.tgz#dae1055dd328621b59fc6e594fd988fbf2e5370e" 1315 | integrity sha512-Zrxbg/WiIvUP2uEzelDNTXmEMJXuzJ1kCpbDvaKByFA9MNeO95V+7r/3ti0qzJzrxdyuUw5VduN7k+D3VmVOSA== 1316 | dependencies: 1317 | "@vitest/expect" "2.1.3" 1318 | "@vitest/mocker" "2.1.3" 1319 | "@vitest/pretty-format" "^2.1.3" 1320 | "@vitest/runner" "2.1.3" 1321 | "@vitest/snapshot" "2.1.3" 1322 | "@vitest/spy" "2.1.3" 1323 | "@vitest/utils" "2.1.3" 1324 | chai "^5.1.1" 1325 | debug "^4.3.6" 1326 | magic-string "^0.30.11" 1327 | pathe "^1.1.2" 1328 | std-env "^3.7.0" 1329 | tinybench "^2.9.0" 1330 | tinyexec "^0.3.0" 1331 | tinypool "^1.0.0" 1332 | tinyrainbow "^1.2.0" 1333 | vite "^5.0.0" 1334 | vite-node "2.1.3" 1335 | why-is-node-running "^2.3.0" 1336 | 1337 | webidl-conversions@^3.0.0: 1338 | version "3.0.1" 1339 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" 1340 | integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== 1341 | 1342 | whatwg-url@^5.0.0: 1343 | version "5.0.0" 1344 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" 1345 | integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== 1346 | dependencies: 1347 | tr46 "~0.0.3" 1348 | webidl-conversions "^3.0.0" 1349 | 1350 | which@^2.0.1: 1351 | version "2.0.2" 1352 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1353 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1354 | dependencies: 1355 | isexe "^2.0.0" 1356 | 1357 | why-is-node-running@^2.3.0: 1358 | version "2.3.0" 1359 | resolved "https://registry.yarnpkg.com/why-is-node-running/-/why-is-node-running-2.3.0.tgz#a3f69a97107f494b3cdc3bdddd883a7d65cebf04" 1360 | integrity sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w== 1361 | dependencies: 1362 | siginfo "^2.0.0" 1363 | stackback "0.0.2" 1364 | 1365 | word-wrap@^1.2.3: 1366 | version "1.2.5" 1367 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" 1368 | integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== 1369 | 1370 | wrappy@1: 1371 | version "1.0.2" 1372 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1373 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 1374 | 1375 | yocto-queue@^0.1.0: 1376 | version "0.1.0" 1377 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 1378 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 1379 | --------------------------------------------------------------------------------