├── .github ├── dependabot.yml └── workflows │ └── linter.yml ├── .gitignore ├── LICENSE ├── README.md ├── contributing.md ├── package-lock.json └── package.json /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: npm 4 | directory: "/" 5 | schedule: 6 | interval: daily 7 | time: "02:00" 8 | open-pull-requests-limit: 10 9 | - package-ecosystem: github-actions 10 | directory: "/" 11 | schedule: 12 | interval: daily 13 | open-pull-requests-limit: 10 14 | -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | pull_request: 5 | branches: [master] 6 | push: 7 | branches: [master] 8 | 9 | jobs: 10 | Awesome_Lint: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v4 14 | with: 15 | fetch-depth: 0 16 | - run: npx awesome-lint -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | *.egg-info/ 24 | .installed.cfg 25 | *.egg 26 | MANIFEST 27 | 28 | # PyInstaller 29 | # Usually these files are written by a python script from a template 30 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 31 | *.manifest 32 | *.spec 33 | 34 | # Installer logs 35 | pip-log.txt 36 | pip-delete-this-directory.txt 37 | 38 | # Unit test / coverage reports 39 | htmlcov/ 40 | .tox/ 41 | .coverage 42 | .coverage.* 43 | .cache 44 | nosetests.xml 45 | coverage.xml 46 | *.cover 47 | .hypothesis/ 48 | .pytest_cache/ 49 | 50 | # Translations 51 | *.mo 52 | *.pot 53 | 54 | # Django stuff: 55 | *.log 56 | local_settings.py 57 | db.sqlite3 58 | 59 | # Flask stuff: 60 | instance/ 61 | .webassets-cache 62 | 63 | # Scrapy stuff: 64 | .scrapy 65 | 66 | # Sphinx documentation 67 | docs/_build/ 68 | 69 | # PyBuilder 70 | target/ 71 | 72 | # Jupyter Notebook 73 | .ipynb_checkpoints 74 | 75 | # pyenv 76 | .python-version 77 | 78 | # celery beat schedule file 79 | celerybeat-schedule 80 | 81 | # SageMath parsed files 82 | *.sage.py 83 | 84 | # Environments 85 | .env 86 | .venv 87 | env/ 88 | venv/ 89 | ENV/ 90 | env.bak/ 91 | venv.bak/ 92 | 93 | # Spyder project settings 94 | .spyderproject 95 | .spyproject 96 | 97 | # Rope project settings 98 | .ropeproject 99 | 100 | # mkdocs documentation 101 | /site 102 | 103 | # mypy 104 | .mypy_cache/ 105 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Attribution-ShareAlike 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution-ShareAlike 4.0 International Public 58 | License 59 | 60 | By exercising the Licensed Rights (defined below), You accept and agree 61 | to be bound by the terms and conditions of this Creative Commons 62 | Attribution-ShareAlike 4.0 International Public License ("Public 63 | License"). To the extent this Public License may be interpreted as a 64 | contract, You are granted the Licensed Rights in consideration of Your 65 | acceptance of these terms and conditions, and the Licensor grants You 66 | such rights in consideration of benefits the Licensor receives from 67 | making the Licensed Material available under these terms and 68 | conditions. 69 | 70 | 71 | Section 1 -- Definitions. 72 | 73 | a. Adapted Material means material subject to Copyright and Similar 74 | Rights that is derived from or based upon the Licensed Material 75 | and in which the Licensed Material is translated, altered, 76 | arranged, transformed, or otherwise modified in a manner requiring 77 | permission under the Copyright and Similar Rights held by the 78 | Licensor. For purposes of this Public License, where the Licensed 79 | Material is a musical work, performance, or sound recording, 80 | Adapted Material is always produced where the Licensed Material is 81 | synched in timed relation with a moving image. 82 | 83 | b. Adapter's License means the license You apply to Your Copyright 84 | and Similar Rights in Your contributions to Adapted Material in 85 | accordance with the terms and conditions of this Public License. 86 | 87 | c. BY-SA Compatible License means a license listed at 88 | creativecommons.org/compatiblelicenses, approved by Creative 89 | Commons as essentially the equivalent of this Public License. 90 | 91 | d. Copyright and Similar Rights means copyright and/or similar rights 92 | closely related to copyright including, without limitation, 93 | performance, broadcast, sound recording, and Sui Generis Database 94 | Rights, without regard to how the rights are labeled or 95 | categorized. For purposes of this Public License, the rights 96 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 97 | Rights. 98 | 99 | e. Effective Technological Measures means those measures that, in the 100 | absence of proper authority, may not be circumvented under laws 101 | fulfilling obligations under Article 11 of the WIPO Copyright 102 | Treaty adopted on December 20, 1996, and/or similar international 103 | agreements. 104 | 105 | f. Exceptions and Limitations means fair use, fair dealing, and/or 106 | any other exception or limitation to Copyright and Similar Rights 107 | that applies to Your use of the Licensed Material. 108 | 109 | g. License Elements means the license attributes listed in the name 110 | of a Creative Commons Public License. The License Elements of this 111 | Public License are Attribution and ShareAlike. 112 | 113 | h. Licensed Material means the artistic or literary work, database, 114 | or other material to which the Licensor applied this Public 115 | License. 116 | 117 | i. Licensed Rights means the rights granted to You subject to the 118 | terms and conditions of this Public License, which are limited to 119 | all Copyright and Similar Rights that apply to Your use of the 120 | Licensed Material and that the Licensor has authority to license. 121 | 122 | j. Licensor means the individual(s) or entity(ies) granting rights 123 | under this Public License. 124 | 125 | k. Share means to provide material to the public by any means or 126 | process that requires permission under the Licensed Rights, such 127 | as reproduction, public display, public performance, distribution, 128 | dissemination, communication, or importation, and to make material 129 | available to the public including in ways that members of the 130 | public may access the material from a place and at a time 131 | individually chosen by them. 132 | 133 | l. Sui Generis Database Rights means rights other than copyright 134 | resulting from Directive 96/9/EC of the European Parliament and of 135 | the Council of 11 March 1996 on the legal protection of databases, 136 | as amended and/or succeeded, as well as other essentially 137 | equivalent rights anywhere in the world. 138 | 139 | m. You means the individual or entity exercising the Licensed Rights 140 | under this Public License. Your has a corresponding meaning. 141 | 142 | 143 | Section 2 -- Scope. 144 | 145 | a. License grant. 146 | 147 | 1. Subject to the terms and conditions of this Public License, 148 | the Licensor hereby grants You a worldwide, royalty-free, 149 | non-sublicensable, non-exclusive, irrevocable license to 150 | exercise the Licensed Rights in the Licensed Material to: 151 | 152 | a. reproduce and Share the Licensed Material, in whole or 153 | in part; and 154 | 155 | b. produce, reproduce, and Share Adapted Material. 156 | 157 | 2. Exceptions and Limitations. For the avoidance of doubt, where 158 | Exceptions and Limitations apply to Your use, this Public 159 | License does not apply, and You do not need to comply with 160 | its terms and conditions. 161 | 162 | 3. Term. The term of this Public License is specified in Section 163 | 6(a). 164 | 165 | 4. Media and formats; technical modifications allowed. The 166 | Licensor authorizes You to exercise the Licensed Rights in 167 | all media and formats whether now known or hereafter created, 168 | and to make technical modifications necessary to do so. The 169 | Licensor waives and/or agrees not to assert any right or 170 | authority to forbid You from making technical modifications 171 | necessary to exercise the Licensed Rights, including 172 | technical modifications necessary to circumvent Effective 173 | Technological Measures. For purposes of this Public License, 174 | simply making modifications authorized by this Section 2(a) 175 | (4) never produces Adapted Material. 176 | 177 | 5. Downstream recipients. 178 | 179 | a. Offer from the Licensor -- Licensed Material. Every 180 | recipient of the Licensed Material automatically 181 | receives an offer from the Licensor to exercise the 182 | Licensed Rights under the terms and conditions of this 183 | Public License. 184 | 185 | b. Additional offer from the Licensor -- Adapted Material. 186 | Every recipient of Adapted Material from You 187 | automatically receives an offer from the Licensor to 188 | exercise the Licensed Rights in the Adapted Material 189 | under the conditions of the Adapter's License You apply. 190 | 191 | c. No downstream restrictions. You may not offer or impose 192 | any additional or different terms or conditions on, or 193 | apply any Effective Technological Measures to, the 194 | Licensed Material if doing so restricts exercise of the 195 | Licensed Rights by any recipient of the Licensed 196 | Material. 197 | 198 | 6. No endorsement. Nothing in this Public License constitutes or 199 | may be construed as permission to assert or imply that You 200 | are, or that Your use of the Licensed Material is, connected 201 | with, or sponsored, endorsed, or granted official status by, 202 | the Licensor or others designated to receive attribution as 203 | provided in Section 3(a)(1)(A)(i). 204 | 205 | b. Other rights. 206 | 207 | 1. Moral rights, such as the right of integrity, are not 208 | licensed under this Public License, nor are publicity, 209 | privacy, and/or other similar personality rights; however, to 210 | the extent possible, the Licensor waives and/or agrees not to 211 | assert any such rights held by the Licensor to the limited 212 | extent necessary to allow You to exercise the Licensed 213 | Rights, but not otherwise. 214 | 215 | 2. Patent and trademark rights are not licensed under this 216 | Public License. 217 | 218 | 3. To the extent possible, the Licensor waives any right to 219 | collect royalties from You for the exercise of the Licensed 220 | Rights, whether directly or through a collecting society 221 | under any voluntary or waivable statutory or compulsory 222 | licensing scheme. In all other cases the Licensor expressly 223 | reserves any right to collect such royalties. 224 | 225 | 226 | Section 3 -- License Conditions. 227 | 228 | Your exercise of the Licensed Rights is expressly made subject to the 229 | following conditions. 230 | 231 | a. Attribution. 232 | 233 | 1. If You Share the Licensed Material (including in modified 234 | form), You must: 235 | 236 | a. retain the following if it is supplied by the Licensor 237 | with the Licensed Material: 238 | 239 | i. identification of the creator(s) of the Licensed 240 | Material and any others designated to receive 241 | attribution, in any reasonable manner requested by 242 | the Licensor (including by pseudonym if 243 | designated); 244 | 245 | ii. a copyright notice; 246 | 247 | iii. a notice that refers to this Public License; 248 | 249 | iv. a notice that refers to the disclaimer of 250 | warranties; 251 | 252 | v. a URI or hyperlink to the Licensed Material to the 253 | extent reasonably practicable; 254 | 255 | b. indicate if You modified the Licensed Material and 256 | retain an indication of any previous modifications; and 257 | 258 | c. indicate the Licensed Material is licensed under this 259 | Public License, and include the text of, or the URI or 260 | hyperlink to, this Public License. 261 | 262 | 2. You may satisfy the conditions in Section 3(a)(1) in any 263 | reasonable manner based on the medium, means, and context in 264 | which You Share the Licensed Material. For example, it may be 265 | reasonable to satisfy the conditions by providing a URI or 266 | hyperlink to a resource that includes the required 267 | information. 268 | 269 | 3. If requested by the Licensor, You must remove any of the 270 | information required by Section 3(a)(1)(A) to the extent 271 | reasonably practicable. 272 | 273 | b. ShareAlike. 274 | 275 | In addition to the conditions in Section 3(a), if You Share 276 | Adapted Material You produce, the following conditions also apply. 277 | 278 | 1. The Adapter's License You apply must be a Creative Commons 279 | license with the same License Elements, this version or 280 | later, or a BY-SA Compatible License. 281 | 282 | 2. You must include the text of, or the URI or hyperlink to, the 283 | Adapter's License You apply. You may satisfy this condition 284 | in any reasonable manner based on the medium, means, and 285 | context in which You Share Adapted Material. 286 | 287 | 3. You may not offer or impose any additional or different terms 288 | or conditions on, or apply any Effective Technological 289 | Measures to, Adapted Material that restrict exercise of the 290 | rights granted under the Adapter's License You apply. 291 | 292 | 293 | Section 4 -- Sui Generis Database Rights. 294 | 295 | Where the Licensed Rights include Sui Generis Database Rights that 296 | apply to Your use of the Licensed Material: 297 | 298 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 299 | to extract, reuse, reproduce, and Share all or a substantial 300 | portion of the contents of the database; 301 | 302 | b. if You include all or a substantial portion of the database 303 | contents in a database in which You have Sui Generis Database 304 | Rights, then the database in which You have Sui Generis Database 305 | Rights (but not its individual contents) is Adapted Material, 306 | 307 | including for purposes of Section 3(b); and 308 | c. You must comply with the conditions in Section 3(a) if You Share 309 | all or a substantial portion of the contents of the database. 310 | 311 | For the avoidance of doubt, this Section 4 supplements and does not 312 | replace Your obligations under this Public License where the Licensed 313 | Rights include other Copyright and Similar Rights. 314 | 315 | 316 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 317 | 318 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 319 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 320 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 321 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 322 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 323 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 324 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 325 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 326 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 327 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 328 | 329 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 330 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 331 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 332 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 333 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 334 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 335 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 336 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 337 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 338 | 339 | c. The disclaimer of warranties and limitation of liability provided 340 | above shall be interpreted in a manner that, to the extent 341 | possible, most closely approximates an absolute disclaimer and 342 | waiver of all liability. 343 | 344 | 345 | Section 6 -- Term and Termination. 346 | 347 | a. This Public License applies for the term of the Copyright and 348 | Similar Rights licensed here. However, if You fail to comply with 349 | this Public License, then Your rights under this Public License 350 | terminate automatically. 351 | 352 | b. Where Your right to use the Licensed Material has terminated under 353 | Section 6(a), it reinstates: 354 | 355 | 1. automatically as of the date the violation is cured, provided 356 | it is cured within 30 days of Your discovery of the 357 | violation; or 358 | 359 | 2. upon express reinstatement by the Licensor. 360 | 361 | For the avoidance of doubt, this Section 6(b) does not affect any 362 | right the Licensor may have to seek remedies for Your violations 363 | of this Public License. 364 | 365 | c. For the avoidance of doubt, the Licensor may also offer the 366 | Licensed Material under separate terms or conditions or stop 367 | distributing the Licensed Material at any time; however, doing so 368 | will not terminate this Public License. 369 | 370 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 371 | License. 372 | 373 | 374 | Section 7 -- Other Terms and Conditions. 375 | 376 | a. The Licensor shall not be bound by any additional or different 377 | terms or conditions communicated by You unless expressly agreed. 378 | 379 | b. Any arrangements, understandings, or agreements regarding the 380 | Licensed Material not stated herein are separate from and 381 | independent of the terms and conditions of this Public License. 382 | 383 | 384 | Section 8 -- Interpretation. 385 | 386 | a. For the avoidance of doubt, this Public License does not, and 387 | shall not be interpreted to, reduce, limit, restrict, or impose 388 | conditions on any use of the Licensed Material that could lawfully 389 | be made without permission under this Public License. 390 | 391 | b. To the extent possible, if any provision of this Public License is 392 | deemed unenforceable, it shall be automatically reformed to the 393 | minimum extent necessary to make it enforceable. If the provision 394 | cannot be reformed, it shall be severed from this Public License 395 | without affecting the enforceability of the remaining terms and 396 | conditions. 397 | 398 | c. No term or condition of this Public License will be waived and no 399 | failure to comply consented to unless expressly agreed to by the 400 | Licensor. 401 | 402 | d. Nothing in this Public License constitutes or may be interpreted 403 | as a limitation upon, or waiver of, any privileges and immunities 404 | that apply to the Licensor or You, including from the legal 405 | processes of any jurisdiction or authority. 406 | 407 | 408 | ======================================================================= 409 | 410 | Creative Commons is not a party to its public 411 | licenses. Notwithstanding, Creative Commons may elect to apply one of 412 | its public licenses to material it publishes and in those instances 413 | will be considered the “Licensor.” The text of the Creative Commons 414 | public licenses is dedicated to the public domain under the CC0 Public 415 | Domain Dedication. Except for the limited purpose of indicating that 416 | material is shared under a Creative Commons public license or as 417 | otherwise permitted by the Creative Commons policies published at 418 | creativecommons.org/policies, Creative Commons does not authorize the 419 | use of the trademark "Creative Commons" or any other trademark or logo 420 | of Creative Commons without its prior written consent including, 421 | without limitation, in connection with any unauthorized modifications 422 | to any of its public licenses or any other arrangements, 423 | understandings, or agreements concerning use of licensed material. For 424 | the avoidance of doubt, this paragraph does not form part of the 425 | public licenses. 426 | 427 | Creative Commons may be contacted at creativecommons.org. 428 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Awesome Python Typing [![Awesome](https://awesome.re/badge-flat2.svg)](https://awesome.re) [![Gitter](https://img.shields.io/gitter/room/mypy-django/Lobby?color=9cf&style=flat-square)](https://gitter.im/mypy-django/Lobby?source=title) 2 | 3 | Collection of awesome Python types, stubs, plugins, and tools to work with them. 4 | 5 | ## Contents 6 | 7 | - [Static type checkers](#static-type-checkers) 8 | - [Dynamic type checkers](#dynamic-type-checkers) 9 | - [Stub packages](#stub-packages) 10 | - [Additional types](#additional-types) 11 | - [Backports and improvements](#backports-and-improvements) 12 | - [Tools](#tools) 13 | - [Integrations](#integrations) 14 | - [Articles](#articles) 15 | - [Communities](#communities) 16 | - [Related](#related) 17 | 18 | [Full list of typed projects on PyPi](https://pypi.org/search/?q=&o=&c=Typing+%3A%3A+Typed) is here. 19 | 20 | ## Static type checkers 21 | 22 | - [basedmypy](https://github.com/KotlinIsland/basedmypy) - Based static typing with baseline functionality. 23 | - [basedpyright](https://github.com/detachhead/basedpyright) - Pyright fork with improvements to VSCode support and various other fixes. 24 | - [mypy](https://github.com/python/mypy) - Optional static typing (PEP 484). 25 | - [pyanalyze](https://github.com/quora/pyanalyze) - Extensible static analyzer and type checker. 26 | - [pycharm](https://www.jetbrains.com/pycharm/) - IDE for Professional Developers. 27 | - [pylyzer](https://github.com/mtshiba/pylyzer/) - A fast static code analyzer & language server for Python, written in Rust. 28 | - [pyre](https://pyre-check.org/) - Performant type-checker. 29 | - [pyright](https://github.com/Microsoft/pyright) - Fast type checker meant for large Python source bases. It can run in a “watch” mode and performs fast incremental updates when files are modified. 30 | - [pytype](https://github.com/google/pytype) - Tool to check and infer types - without requiring type annotations. 31 | 32 | ## Dynamic type checkers 33 | 34 | - [beartype](https://github.com/beartype/beartype) - Unbearably fast `O(1)` runtime type-checking in pure Python. 35 | - [pydantic](https://github.com/samuelcolvin/pydantic) - Data parsing using Python type hinting. Supports dataclasses. 36 | - [pytypes](https://github.com/Stewori/pytypes) - Provides a rich set of utilities for runtime typechecking. 37 | - [strongtyping](https://github.com/FelixTheC/strongtyping) - Decorator which checks whether the function is called with the correct type of parameters. 38 | - [typedpy](https://github.com/loyada/typedpy) - Type-safe, strict Python. Works well with standard Python. 39 | - [typeguard](https://github.com/agronholm/typeguard) - Another one runtime type checker. 40 | - [typical](https://github.com/seandstewart/typical/) - Data parsing and automatic type-coercion using type hinting. Supports dataclasses, standard classes, function signatures, and more. 41 | - [trycast](https://github.com/davidfstr/trycast) - Parse JSON-like values whose shape is defined by typed dictionaries (TypedDicts) and other standard Python type hints. 42 | 43 | ## Stub packages 44 | 45 | - [asgiref](https://github.com/django/asgiref) - ASGI specification, provides [asgiref.typing](https://github.com/django/asgiref/blob/main/asgiref/typing.py) module with type annotations for ASGI servers. 46 | - [boto3-stubs](https://vemel.github.io/boto3_stubs_docs/) - Stubs for [boto3](https://github.com/boto/boto3). 47 | - [botostubs](https://github.com/jeshan/botostubs) - Gives you code assistance for any boto3 API in any IDE. 48 | - [celery-types](https://github.com/sbdchd/celery-types) - Type stubs for [Celery](https://github.com/celery/celery) and its related packages [django-celery-results](https://github.com/celery/django-celery-results), [ampq](https://github.com/celery/py-amqp), [kombu](https://github.com/celery/kombu), [billiard](https://github.com/celery/billiard), [vine](https://github.com/celery/vine) and [ephem](https://github.com/brandon-rhodes/pyephem). 49 | - [django-stubs](https://github.com/typeddjango/django-stubs) - Stubs for [Django](https://github.com/django/django). 50 | - [djangorestframework-stubs](https://github.com/typeddjango/djangorestframework-stubs) - Stubs for [DRF](https://github.com/encode/django-rest-framework). 51 | - [grpc-stubs](https://github.com/shabbyrobe/grpc-stubs) - Stubs for [grpc](https://github.com/grpc/grpc). 52 | - [lxml-stubs](https://github.com/lxml/lxml-stubs) - Stubs for [lxml](https://lxml.de). 53 | - [PyQt5-stubs](https://github.com/stlehmann/PyQt5-stubs) - Stubs for [PyQt5](https://www.riverbankcomputing.com/software/pyqt/intro). 54 | - [python-phonenumbers-stubs](https://github.com/AA-Turner/python-phonenumbers-stubs) - Stubs for [phonenumbers](https://github.com/daviddrysdale/python-phonenumbers). 55 | - [pythonista-stubs](https://github.com/hbmartin/pythonista-stubs) - Stubs for [Pythonista](http://omz-software.com/pythonista/docs/ios/). 56 | - [scipy-stubs](https://github.com/jorenham/scipy-stubs) - Stubs for [SciPy](https://github.com/scipy/scipy). 57 | - [sqlalchemy-stubs](https://github.com/dropbox/sqlalchemy-stubs) - Stubs for [SQLAlchemy](https://github.com/sqlalchemy/sqlalchemy). 58 | - [sqlalchemy2-stubs](https://docs.sqlalchemy.org/en/14/orm/extensions/mypy.html) - Official stubs and mypy plugin for [SQLAlchemy](https://www.sqlalchemy.org). 59 | - [torchtyping](https://github.com/patrick-kidger/torchtyping) - Enhanced type annotations for [pytorch](https://pytorch.org/). 60 | - [types-aiobotocore](https://vemel.github.io/types_aiobotocore_docs/) - Stubs for [aiobotocore](https://github.com/aio-libs/aiobotocore). 61 | - [typeshed](https://github.com/python/typeshed) - Collection of library stubs, with static types. 62 | 63 | ## Additional types 64 | 65 | - [meiga](https://github.com/alice-biometrics/meiga) - Simple, typed and monad-based Result type. 66 | - [option](https://github.com/MaT1g3R/option) - Rust like Option and Result types. 67 | - [optype](https://github.com/jorenham/optype) - Opinionated `collections.abc` and `operators` alternative: Flexible single-method protocols and typed operators with predictable names. 68 | - [phantom-types](https://github.com/antonagestam/phantom-types) - Phantom types. 69 | - [returns](https://github.com/dry-python/returns) - Make your functions return something meaningful, typed, and safe. 70 | - [safetywrap](https://github.com/mplanchard/safetywrap) - Fully typesafe, Rust-like Result and Option types. 71 | - [typet](https://github.com/contains-io/typet) - Length-bounded types, dynamic object validation. 72 | - [useful-types](https://github.com/hauntsaninja/useful_types) - Collection of useful protocols and type aliases. 73 | 74 | ## Backports and improvements 75 | 76 | - [future-typing](https://github.com/PrettyWood/future-typing) - Backport for type hinting generics in standard collections and union types as `X | Y`. 77 | - [typing-extensions](https://github.com/python/typing_extensions) - Backported and experimental type hints. 78 | - [typing-utils](https://github.com/bojiang/typing_utils) - Backport 3.8+ runtime typing utils(for eg: get_origin) & add issubtype & more. 79 | 80 | ## Tools 81 | 82 | ### Linters 83 | 84 | - [flake8-annotations-complexity](https://github.com/best-doctor/flake8-annotations-complexity) - Plugin for flake8 to validate annotations complexity. 85 | - [flake8-annotations](https://github.com/sco1/flake8-annotations) - Plugin for flake8 to check for presence of type annotations in function definitions. 86 | - [flake8-pyi](https://github.com/ambv/flake8-pyi) - Plugin for Flake8 that provides specializations for type hinting stub files. 87 | - [flake8-type-checking](https://github.com/snok/flake8-type-checking) - Plugin to help you guard any type-annotation-only import correctly. 88 | - [flake8-typing-imports](https://github.com/asottile/flake8-typing-imports) - Plugin which checks that typing imports are properly guarded. 89 | - [flake8-typing-only-imports](https://github.com/sondrelg/flake8-typing-only-imports) - flake8 plugin that helps identify which imports to put into type-checking blocks, and how to adjust your type annotations once imports are moved. 90 | - [flake8-type-ignore](https://gitlab.com/jonafato/flake8-type-ignore/) - flake8 plugin to disallow type: ignore comments in your typed Python code. 91 | - [wemake-python-styleguide](https://github.com/wemake-services/wemake-python-styleguide) - The strictest and most opinionated Python linter ever. 92 | - [Ruff](https://github.com/astral-sh/ruff/) - Extremely fast linter which supports lint rules from many other lint tools, such as flake8. 93 | 94 | ### Testing 95 | 96 | - [mypy-test](https://github.com/orsinium-labs/mypy-test) - Test mypy plugins, stubs, custom types. 97 | - [pytest-mypy-plugins](https://github.com/typeddjango/pytest-mypy-plugins) - Pytest plugin for testing mypy types, stubs, and plugins. 98 | - [pytest-mypy-testing](https://github.com/davidfritzsche/pytest-mypy-testing) - Pytest plugin to test mypy static type analysis. 99 | - [pytest-mypy](https://github.com/dbader/pytest-mypy) - Mypy static type checker plugin for Pytest. 100 | 101 | ### Working with types 102 | 103 | - [com2ann](https://github.com/ilevkivskyi/com2ann) - Tool for translation of type comments to type annotations. 104 | - [merge-pyi](https://github.com/google/pytype/tree/master/pytype/tools/merge_pyi) - Part of pytype toolchain, applies stub files onto source code. 105 | - [mypy-baseline](https://github.com/orsinium-labs/mypy-baseline) - Integrate mypy with existing codebase. A CLI tool that filters out existing type errors and reports only new ones. 106 | - [mypy-protobuf](https://github.com/dropbox/mypy-protobuf) - Tool to generate mypy stubs from protobufs. 107 | - [mypy-silent](https://github.com/whtsky/mypy-silent/) - Silence mypy by adding or removing code comments. 108 | - [mypyc](https://github.com/python/mypy/tree/master/mypyc) - Compiles mypy-annotated, statically typed Python modules into CPython C extensions. 109 | - [retype](https://github.com/ambv/retype) - Another tool to apply stubs to code. 110 | - [typeforce](https://github.com/orsinium-labs/typeforce) - CLI tool that enriches your Python environment with type annotations, empowering mypy. 111 | - [typesplainer](https://github.com/wasi-master/typesplainer) - A Python type explainer. 112 | - [typing-inspect](https://github.com/ilevkivskyi/typing_inspect) - The typing_inspect module defines experimental API for runtime inspection of types defined in the `typing` module. 113 | - [typing-json](https://pypi.org/project/typing-json/) - Lib for working with typed objects and JSON. 114 | 115 | ### Helper tools to add annotations to existing code 116 | 117 | - [autotyping](https://github.com/JelleZijlstra/autotyping) - Automatically add simple return type annotations for functions (bool, None, Optional). 118 | - [infer-types](https://github.com/orsinium-labs/infer-types) - CLI tool to automatically infer and add type annotations into Python code. 119 | - [jsonschema-gentypes](https://github.com/camptocamp/jsonschema-gentypes) - Generate Python types based on TypedDict from a JSON Schema. 120 | - [monkeytype](https://github.com/instagram/MonkeyType) - Collects runtime types of function arguments and return values, and can automatically generate stub files or even add draft type annotations directly to your code based on the types collected at runtime. 121 | - [no_implicit_optional](https://github.com/hauntsaninja/no_implicit_optional) - A codemod to make your implicit optional type hints [PEP 484](https://peps.python.org/pep-0484/#union-types) compliant. 122 | - [pyannotate](https://github.com/dropbox/pyannotate) - Insert annotations into your source code based on call arguments and return types observed at runtime. 123 | - [PyTypes](https://github.com/pvs-hd-tea/PyTypes) - Infer Types by Python Tracing. 124 | - [pyre infer](https://github.com/facebook/pyre-check) - Pyre has a powerful feature for migrating codebases to a typed format. The [infer](https://pyre-check.org/docs/pysa-coverage/) command-line option ingests a file or directory, makes educated guesses about the types used, and applies the annotations to the files. 125 | - [pytest-annotate](https://github.com/kensho-technologies/pytest-annotate) - Pyannotate plugin for pytest. 126 | - [pytest-monkeytype](https://github.com/mariusvniekerk/pytest-monkeytype) - MonkeyType plugin for pytest. 127 | - [pytype annotate-ast](https://github.com/google/pytype/tree/master/pytype/tools/annotate_ast) - A work-in-progress tool to annotate the nodes of an AST with their Python types. 128 | - [RightTyper](https://github.com/RightTyper/RightTyper) - A tool that generates types for your function arguments and return values. RightTyper lets your code run at nearly full speed with almost no memory overhead. 129 | - [type4py](https://github.com/saltudelft/type4py) - Deep Similarity Learning-Based Type Inference. 130 | - [typilus](https://github.com/typilus/typilus) - A deep learning algorithm for predicting types in Python. Also available as a [GitHub action](https://github.com/typilus/typilus-action) 131 | - [auto-optional](https://github.com/Luttik/auto-optional) - Makes typed arguments Optional when the default argument is `None`. 132 | 133 | ### Mypy plugins 134 | 135 | - [kubernetes-typed](https://github.com/gordonbondon/kubernetes-typed) - Plugin for kubernetes [CRD](https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/) type checking. 136 | - [loguru-mypy](https://github.com/kornicameister/loguru-mypy) - Plugin for [loguru](https://github.com/Delgan/loguru) support. 137 | - [mypy-zope](https://github.com/Shoobx/mypy-zope) - Plugin for [zope.interface](https://zopeinterface.readthedocs.io/en/latest/) support. 138 | - [mypy/plugins](https://github.com/python/mypy/tree/master/mypy/plugins) - Plugins already integrated into mypy. 139 | - [numpy](https://numpy.org/devdocs/reference/typing.html) - Plugin for [NumPy](https://numpy.org) support. 140 | - [pynamodb-mypy](https://github.com/pynamodb/pynamodb-mypy) - Plugin for [PynamoDB](https://github.com/pynamodb/PynamoDB) support. 141 | - [pydantic](https://docs.pydantic.dev/latest/integrations/mypy/) - Plugin for additional [Pydantic](https://docs.pydantic.dev/latest/) support. 142 | 143 | ## Integrations 144 | 145 | - [emacs-flycheck-mypy](https://github.com/lbolla/emacs-flycheck-mypy) - Mypy integration for Emacs. 146 | - [mypy-playground](https://github.com/ymyzk/mypy-playground) - Online playground for mypy. 147 | - [mypy-pycharm-plugin](https://github.com/dropbox/mypy-PyCharm-plugin) - Mypy integration for PyCharm. 148 | - [pylance](https://github.com/microsoft/pylance-release) - PyRight integration for VSCode. 149 | - [vim-mypy](https://github.com/Integralist/vim-mypy) - Mypy integration for Vim. 150 | - [nbQA](https://github.com/nbQA-dev/nbQA) - Run type checkers (e.g. Mypy) on Jupyter Notebooks. 151 | 152 | ## Articles 153 | 154 | ### PEPs 155 | 156 | - [PEP-3107](https://www.python.org/dev/peps/pep-3107) - Function Annotations. 157 | - [PEP-482](https://www.python.org/dev/peps/pep-0482/) - Literature Overview for Type Hints. 158 | - [PEP-483](https://www.python.org/dev/peps/pep-0483/) - The Theory of Type Hints. 159 | - [PEP-484](https://www.python.org/dev/peps/pep-0484/) - Type Hints. 160 | - [PEP-526](https://www.python.org/dev/peps/pep-0526/) - Syntax for Variable Annotations. 161 | - [PEP-544](https://www.python.org/dev/peps/pep-0544/) - Protocols: Structural subtyping (static duck typing). 162 | - [PEP-557](https://www.python.org/dev/peps/pep-0557/) - Data Classes. 163 | - [PEP-560](https://www.python.org/dev/peps/pep-0560/) - Core support for typing module and generic types. 164 | - [PEP-561](https://www.python.org/dev/peps/pep-0561/) - Distributing and Packaging Type Information. 165 | - [PEP-563](https://www.python.org/dev/peps/pep-0563/) - Postponed Evaluation of Annotations. 166 | - [PEP-585](https://www.python.org/dev/peps/pep-0585/) - Type Hinting Generics In Standard Collections. 167 | - [PEP-586](https://www.python.org/dev/peps/pep-0586/) - Literal Types. 168 | - [PEP-589](https://www.python.org/dev/peps/pep-0589/) - TypedDict: Type Hints for Dictionaries with a Fixed Set of Keys. 169 | - [PEP-591](https://www.python.org/dev/peps/pep-0591/) - Adding a final qualifier to typing. 170 | - [PEP-593](https://www.python.org/dev/peps/pep-0593/) - Flexible function and variable annotations. 171 | - [PEP-604](https://www.python.org/dev/peps/pep-0604/) - Complementary syntax for Union[]. 172 | - [PEP-612](https://www.python.org/dev/peps/pep-0612/) - Parameter Specification Variables. 173 | - [PEP-613](https://www.python.org/dev/peps/pep-0613/) - Explicit Type Aliases. 174 | 175 | ### Third-party articles 176 | 177 | - [1-minute guide to real constants in Python](https://sobolevn.me/2018/07/real-python-contants) - Full tutorial about `Final` constants and inheritance. 178 | - [Simple dependent types in Python](https://sobolevn.me/2019/01/simple-dependent-types-in-python) - Full tutorial about `Literal` types. 179 | - [Testing mypy stubs, plugins, and types](https://sobolevn.me/2019/08/testing-mypy-types) - Full tutorial about testing mypy types. 180 | - [Our journey to type checking 4 million lines of Python](https://dropbox.tech/application/our-journey-to-type-checking-4-million-lines-of-python) - Dropbox has been one of the first companies to adopt Python static type checking at this scale. 181 | - [PyTest MonkeyType Introduction](https://dev.to/ldrscke/type-annotate-an-existing-python-django-codebase-with-monkeytype-254i) - Type Annotate an existing Python Django Codebase with MonkeyType. 182 | - [The state of type hints in Python](https://bernat.tech/posts/the-state-of-type-hints-in-python/) - As of May 2018. 183 | - [Type hints cheat sheet](https://mypy.readthedocs.io/en/latest/cheat_sheet_py3.html) - Cheat sheet on writing type annotations by MyPy team. 184 | - [Typechecking Django and DRF](https://sobolevn.me/2019/08/typechecking-django-and-drf) - Full tutorial about type-checking django. 185 | - [Type Check Your Django Application](https://kracekumar.com/post/type_check_your_django_app/) - An article based on two recent talks on adding type checks to Django. 186 | - [typing](https://docs.python.org/3/library/typing.html) - Official Python documentation for `typing` module. 187 | - [Python-typing-koans](https://github.com/kracekumar/python-typing-koans/) - A set of examples to learn optional static typing in Python. 188 | - [Python Type Checking (Guide)](https://realpython.com/python-type-checking/) - In this guide, you will get a look into Python type checking. 189 | - [Adding type hints to urllib3](https://sethmlarson.dev/blog/2021-10-18/tests-arent-enough-case-study-after-adding-types-to-urllib3) - Tests are not enough: Case study adding type hints to urllib3. 190 | - [Adam Johnsons Blog](https://adamj.eu/tech/tag/mypy/) - Adam Johnson blogs about typing practices. 191 | - [ParamSpec Guide](https://sobolevn.me/2021/12/paramspec-guide) - Newly released feature in `PEP612` allows you do a lot of advanced typing things with functions and their signatures. 192 | - [Static Typing Python Decorators](https://rednafi.github.io/reflections/static-typing-python-decorators.html) - Accurately static typing decorators in Python is an icky business. The wrapper function obfuscates type information required to statically determine the types of the parameters and the return values of the wrapped function. 193 | 194 | ## Communities 195 | 196 | - [python/typing](https://gitter.im/python/typing) - Official typing gitter chat. 197 | - [TypedDjango](https://gitter.im/mypy-django/Lobby) - Official organisation gitter chat. 198 | - [PythonRu#typing](https://python-ru.slack.com) - Russian slack chat (invites are [here](https://slack.python.ru/)) about types. 199 | 200 | ## Related 201 | 202 | - [awesome-python](https://github.com/vinta/awesome-python) - Curated list of awesome Python frameworks, libraries, software and resources. 203 | - [python-typecheckers](https://github.com/ethanhs/python-typecheckers) - List of Python type checkers: static and runtime. 204 | -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | [![Build Status](https://github.com/typeddjango/awesome-python-typing/workflows/CI/badge.svg?branch=master&event=push)](https://github.com/typeddjango/awesome-python-typing/actions?query=workflow%3ACI) 4 | 5 | Ensure your pull request adheres to the following guidelines: 6 | 7 | - **If you just created something, wait at least 30 days before submitting.** This is to give it some time to mature and ensure it's not just a publish-and-forget type of project. 8 | - Search previous suggestions before making a new one, as yours may be a duplicate. 9 | - Suggested packages should be tested and documented. 10 | - Make an individual pull request for each suggestion. 11 | - Use the following format: `[package](link) - Description.` 12 | - Additions should be added to the bottom of the relevant category. 13 | - Link to the GitHub repo, not npmjs.com or its website. 14 | - Keep descriptions short and simple, but descriptive. 15 | - Don't mention `python` in the description as it's implied. 16 | - Start the description with a capital and end with a full stop/period. 17 | - Don't start the description with `A` or `An`. 18 | - Check your spelling and grammar. 19 | - Make sure your text editor is set to remove trailing whitespace. 20 | - The pull request should have a useful title and include a link to the package and why it should be included. 21 | - New categories or improvements to the existing categorization are welcome, but should be done in a separate pull request. 22 | 23 | Thank you for your suggestion! 24 | 25 | ## Updating your PR 26 | 27 | A lot of times, making a PR adhere to the standards above can be difficult. If the maintainers notice anything that we'd like changed, we'll ask you to edit your PR before we merge it. If you're not sure how to do that, [here is a guide](https://github.com/RichardLitt/knowledge/blob/master/github/amending-a-commit-guide.md) on the different ways you can update your PR so that we can merge it. 28 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "awesome-python-typing", 3 | "version": "0.0.0", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "@babel/code-frame": { 8 | "version": "7.24.7", 9 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", 10 | "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", 11 | "dev": true, 12 | "requires": { 13 | "@babel/highlight": "^7.24.7", 14 | "picocolors": "^1.0.0" 15 | } 16 | }, 17 | "@babel/helper-validator-identifier": { 18 | "version": "7.24.7", 19 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", 20 | "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", 21 | "dev": true 22 | }, 23 | "@babel/highlight": { 24 | "version": "7.24.7", 25 | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", 26 | "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", 27 | "dev": true, 28 | "requires": { 29 | "@babel/helper-validator-identifier": "^7.24.7", 30 | "chalk": "^2.4.2", 31 | "js-tokens": "^4.0.0", 32 | "picocolors": "^1.0.0" 33 | }, 34 | "dependencies": { 35 | "chalk": { 36 | "version": "2.4.2", 37 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 38 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 39 | "dev": true, 40 | "requires": { 41 | "ansi-styles": "^3.2.1", 42 | "escape-string-regexp": "^1.0.5", 43 | "supports-color": "^5.3.0" 44 | } 45 | } 46 | } 47 | }, 48 | "@nodelib/fs.scandir": { 49 | "version": "2.1.5", 50 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 51 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 52 | "dev": true, 53 | "requires": { 54 | "@nodelib/fs.stat": "2.0.5", 55 | "run-parallel": "^1.1.9" 56 | } 57 | }, 58 | "@nodelib/fs.stat": { 59 | "version": "2.0.5", 60 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 61 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 62 | "dev": true 63 | }, 64 | "@nodelib/fs.walk": { 65 | "version": "1.2.8", 66 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 67 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 68 | "dev": true, 69 | "requires": { 70 | "@nodelib/fs.scandir": "2.1.5", 71 | "fastq": "^1.6.0" 72 | } 73 | }, 74 | "@sec-ant/readable-stream": { 75 | "version": "0.4.1", 76 | "resolved": "https://registry.npmjs.org/@sec-ant/readable-stream/-/readable-stream-0.4.1.tgz", 77 | "integrity": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==", 78 | "dev": true 79 | }, 80 | "@sindresorhus/is": { 81 | "version": "5.6.0", 82 | "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz", 83 | "integrity": "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==", 84 | "dev": true 85 | }, 86 | "@sindresorhus/merge-streams": { 87 | "version": "4.0.0", 88 | "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz", 89 | "integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==", 90 | "dev": true 91 | }, 92 | "@szmarczak/http-timer": { 93 | "version": "5.0.1", 94 | "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", 95 | "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==", 96 | "dev": true, 97 | "requires": { 98 | "defer-to-connect": "^2.0.1" 99 | } 100 | }, 101 | "@types/debug": { 102 | "version": "4.1.12", 103 | "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz", 104 | "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", 105 | "dev": true, 106 | "requires": { 107 | "@types/ms": "*" 108 | } 109 | }, 110 | "@types/eslint": { 111 | "version": "8.56.10", 112 | "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.10.tgz", 113 | "integrity": "sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==", 114 | "dev": true, 115 | "requires": { 116 | "@types/estree": "*", 117 | "@types/json-schema": "*" 118 | } 119 | }, 120 | "@types/estree": { 121 | "version": "1.0.5", 122 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", 123 | "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", 124 | "dev": true 125 | }, 126 | "@types/estree-jsx": { 127 | "version": "1.0.5", 128 | "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz", 129 | "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==", 130 | "dev": true, 131 | "requires": { 132 | "@types/estree": "*" 133 | } 134 | }, 135 | "@types/hast": { 136 | "version": "3.0.4", 137 | "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz", 138 | "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", 139 | "dev": true, 140 | "requires": { 141 | "@types/unist": "*" 142 | } 143 | }, 144 | "@types/http-cache-semantics": { 145 | "version": "4.0.4", 146 | "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", 147 | "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", 148 | "dev": true 149 | }, 150 | "@types/json-schema": { 151 | "version": "7.0.15", 152 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 153 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 154 | "dev": true 155 | }, 156 | "@types/mdast": { 157 | "version": "4.0.4", 158 | "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz", 159 | "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", 160 | "dev": true, 161 | "requires": { 162 | "@types/unist": "*" 163 | } 164 | }, 165 | "@types/ms": { 166 | "version": "0.7.34", 167 | "resolved": "https://registry.npmjs.org/@types/ms/-/ms-0.7.34.tgz", 168 | "integrity": "sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==", 169 | "dev": true 170 | }, 171 | "@types/normalize-package-data": { 172 | "version": "2.4.4", 173 | "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", 174 | "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", 175 | "dev": true 176 | }, 177 | "@types/unist": { 178 | "version": "3.0.2", 179 | "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.2.tgz", 180 | "integrity": "sha512-dqId9J8K/vGi5Zr7oo212BGii5m3q5Hxlkwy3WpYuKPklmBEvsbMYYyLxAQpSffdLl/gdW0XUpKWFvYmyoWCoQ==", 181 | "dev": true 182 | }, 183 | "ansi-escapes": { 184 | "version": "4.3.2", 185 | "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", 186 | "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", 187 | "dev": true, 188 | "requires": { 189 | "type-fest": "^0.21.3" 190 | }, 191 | "dependencies": { 192 | "type-fest": { 193 | "version": "0.21.3", 194 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", 195 | "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", 196 | "dev": true 197 | } 198 | } 199 | }, 200 | "ansi-regex": { 201 | "version": "6.0.1", 202 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", 203 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", 204 | "dev": true 205 | }, 206 | "ansi-styles": { 207 | "version": "3.2.1", 208 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 209 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 210 | "dev": true, 211 | "requires": { 212 | "color-convert": "^1.9.0" 213 | } 214 | }, 215 | "append-type": { 216 | "version": "1.0.2", 217 | "resolved": "https://registry.npmjs.org/append-type/-/append-type-1.0.2.tgz", 218 | "integrity": "sha512-hac740vT/SAbrFBLgLIWZqVT5PUAcGTWS5UkDDhr+OCizZSw90WKw6sWAEgGaYd2viIblggypMXwpjzHXOvAQg==", 219 | "dev": true 220 | }, 221 | "array-to-sentence": { 222 | "version": "1.1.0", 223 | "resolved": "https://registry.npmjs.org/array-to-sentence/-/array-to-sentence-1.1.0.tgz", 224 | "integrity": "sha512-YkwkMmPA2+GSGvXj1s9NZ6cc2LBtR+uSeWTy2IGi5MR1Wag4DdrcjTxA/YV/Fw+qKlBeXomneZgThEbm/wvZbw==", 225 | "dev": true 226 | }, 227 | "arrify": { 228 | "version": "3.0.0", 229 | "resolved": "https://registry.npmjs.org/arrify/-/arrify-3.0.0.tgz", 230 | "integrity": "sha512-tLkvA81vQG/XqE2mjDkGQHoOINtMHtysSnemrmoGe6PydDPMRbVugqyk4A6V/WDWEfm3l+0d8anA9r8cv/5Jaw==", 231 | "dev": true 232 | }, 233 | "assert-valid-glob-opts": { 234 | "version": "1.0.0", 235 | "resolved": "https://registry.npmjs.org/assert-valid-glob-opts/-/assert-valid-glob-opts-1.0.0.tgz", 236 | "integrity": "sha512-/mttty5Xh7wE4o7ttKaUpBJl0l04xWe3y6muy1j27gyzSsnceK0AYU9owPtUoL9z8+9hnPxztmuhdFZ7jRoyWw==", 237 | "dev": true, 238 | "requires": { 239 | "glob-option-error": "^1.0.0", 240 | "validate-glob-opts": "^1.0.0" 241 | } 242 | }, 243 | "awesome-lint": { 244 | "version": "1.2.0", 245 | "resolved": "https://registry.npmjs.org/awesome-lint/-/awesome-lint-1.2.0.tgz", 246 | "integrity": "sha512-XDILMHYIffDRnPzxCQ/P3jWtpPVrbcPvHh8JdGRHtnWsSu5LNZ5rcS8AEKf9iOhqaJrB7TvpYBKe7iZRx17k/A==", 247 | "dev": true, 248 | "requires": { 249 | "arrify": "^3.0.0", 250 | "case": "^1.6.3", 251 | "emoji-regex": "^10.2.1", 252 | "execa": "^9.1.0", 253 | "github-slugger": "^2.0.0", 254 | "github-url-to-object": "^4.0.6", 255 | "globby": "^14.0.1", 256 | "got": "^13.0.0", 257 | "is-github-url": "^1.2.2", 258 | "is-url-superb": "^6.1.0", 259 | "mdast-util-to-string": "^4.0.0", 260 | "meow": "^13.2.0", 261 | "ora": "^8.0.1", 262 | "parse-github-url": "^1.0.2", 263 | "read-pkg": "^9.0.1", 264 | "remark": "^15.0.1", 265 | "remark-lint": "^10.0.0", 266 | "remark-lint-blockquote-indentation": "^4.0.0", 267 | "remark-lint-checkbox-character-style": "^5.0.0", 268 | "remark-lint-checkbox-content-indent": "^5.0.0", 269 | "remark-lint-code-block-style": "^4.0.0", 270 | "remark-lint-definition-case": "^4.0.0", 271 | "remark-lint-definition-spacing": "^4.0.0", 272 | "remark-lint-double-link": "^0.2.0", 273 | "remark-lint-emphasis-marker": "^4.0.0", 274 | "remark-lint-fenced-code-marker": "^4.0.0", 275 | "remark-lint-file-extension": "^3.0.0", 276 | "remark-lint-final-newline": "^3.0.0", 277 | "remark-lint-hard-break-spaces": "^4.0.0", 278 | "remark-lint-heading-style": "^4.0.0", 279 | "remark-lint-link-title-style": "^4.0.0", 280 | "remark-lint-list-item-bullet-indent": "^5.0.0", 281 | "remark-lint-list-item-content-indent": "^4.0.0", 282 | "remark-lint-list-item-indent": "^4.0.0", 283 | "remark-lint-match-punctuation": "^0.2.1", 284 | "remark-lint-no-auto-link-without-protocol": "^3.1.2", 285 | "remark-lint-no-blockquote-without-marker": "^6.0.0", 286 | "remark-lint-no-emphasis-as-heading": "^4.0.0", 287 | "remark-lint-no-empty-sections": "^4.0.0", 288 | "remark-lint-no-file-name-articles": "^3.0.0", 289 | "remark-lint-no-file-name-consecutive-dashes": "^3.0.0", 290 | "remark-lint-no-file-name-irregular-characters": "^3.0.0", 291 | "remark-lint-no-file-name-mixed-case": "^3.0.0", 292 | "remark-lint-no-file-name-outer-dashes": "^3.0.0", 293 | "remark-lint-no-heading-content-indent": "^5.0.0", 294 | "remark-lint-no-heading-indent": "^5.0.0", 295 | "remark-lint-no-heading-punctuation": "^4.0.0", 296 | "remark-lint-no-inline-padding": "^4.1.2", 297 | "remark-lint-no-multiple-toplevel-headings": "^4.0.0", 298 | "remark-lint-no-repeat-punctuation": "^0.1.4", 299 | "remark-lint-no-shell-dollars": "^4.0.0", 300 | "remark-lint-no-table-indentation": "^5.0.0", 301 | "remark-lint-no-undefined-references": "^5.0.0", 302 | "remark-lint-no-unneeded-full-reference-image": "^4.0.0", 303 | "remark-lint-no-unneeded-full-reference-link": "^4.0.0", 304 | "remark-lint-no-unused-definitions": "^4.0.0", 305 | "remark-lint-ordered-list-marker-style": "^4.0.0", 306 | "remark-lint-ordered-list-marker-value": "^4.0.0", 307 | "remark-lint-rule-style": "^4.0.0", 308 | "remark-lint-strong-marker": "^4.0.0", 309 | "remark-lint-table-cell-padding": "^5.0.0", 310 | "remark-lint-table-pipe-alignment": "^4.0.0", 311 | "remark-lint-table-pipes": "^5.0.0", 312 | "remark-lint-unordered-list-marker-style": "^4.0.0", 313 | "rmfr": "^2.0.0", 314 | "tempy": "^3.1.0", 315 | "to-vfile": "^8.0.0", 316 | "unified-lint-rule": "^3.0.0", 317 | "unist-util-find": "^3.0.0", 318 | "unist-util-find-all-after": "^5.0.0", 319 | "unist-util-find-all-before": "^5.0.0", 320 | "unist-util-find-all-between": "^2.1.0", 321 | "unist-util-visit": "^5.0.0", 322 | "vfile-reporter-pretty": "^7.0.0" 323 | } 324 | }, 325 | "bail": { 326 | "version": "2.0.2", 327 | "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz", 328 | "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", 329 | "dev": true 330 | }, 331 | "balanced-match": { 332 | "version": "1.0.2", 333 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 334 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 335 | "dev": true 336 | }, 337 | "brace-expansion": { 338 | "version": "1.1.11", 339 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 340 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 341 | "dev": true, 342 | "requires": { 343 | "balanced-match": "^1.0.0", 344 | "concat-map": "0.0.1" 345 | } 346 | }, 347 | "braces": { 348 | "version": "3.0.3", 349 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 350 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 351 | "dev": true, 352 | "requires": { 353 | "fill-range": "^7.1.1" 354 | } 355 | }, 356 | "cacheable-lookup": { 357 | "version": "7.0.0", 358 | "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz", 359 | "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==", 360 | "dev": true 361 | }, 362 | "cacheable-request": { 363 | "version": "10.2.14", 364 | "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz", 365 | "integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==", 366 | "dev": true, 367 | "requires": { 368 | "@types/http-cache-semantics": "^4.0.2", 369 | "get-stream": "^6.0.1", 370 | "http-cache-semantics": "^4.1.1", 371 | "keyv": "^4.5.3", 372 | "mimic-response": "^4.0.0", 373 | "normalize-url": "^8.0.0", 374 | "responselike": "^3.0.0" 375 | }, 376 | "dependencies": { 377 | "get-stream": { 378 | "version": "6.0.1", 379 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", 380 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", 381 | "dev": true 382 | } 383 | } 384 | }, 385 | "case": { 386 | "version": "1.6.3", 387 | "resolved": "https://registry.npmjs.org/case/-/case-1.6.3.tgz", 388 | "integrity": "sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==", 389 | "dev": true 390 | }, 391 | "ccount": { 392 | "version": "2.0.1", 393 | "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", 394 | "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", 395 | "dev": true 396 | }, 397 | "chalk": { 398 | "version": "5.3.0", 399 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", 400 | "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", 401 | "dev": true 402 | }, 403 | "character-entities": { 404 | "version": "2.0.2", 405 | "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz", 406 | "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==", 407 | "dev": true 408 | }, 409 | "character-entities-html4": { 410 | "version": "2.1.0", 411 | "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz", 412 | "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", 413 | "dev": true 414 | }, 415 | "character-entities-legacy": { 416 | "version": "3.0.0", 417 | "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", 418 | "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", 419 | "dev": true 420 | }, 421 | "character-reference-invalid": { 422 | "version": "2.0.1", 423 | "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz", 424 | "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==", 425 | "dev": true 426 | }, 427 | "cli-cursor": { 428 | "version": "4.0.0", 429 | "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", 430 | "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", 431 | "dev": true, 432 | "requires": { 433 | "restore-cursor": "^4.0.0" 434 | } 435 | }, 436 | "cli-spinners": { 437 | "version": "2.9.2", 438 | "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", 439 | "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", 440 | "dev": true 441 | }, 442 | "co": { 443 | "version": "3.1.0", 444 | "resolved": "https://registry.npmjs.org/co/-/co-3.1.0.tgz", 445 | "integrity": "sha512-CQsjCRiNObI8AtTsNIBDRMQ4oMR83CzEswHYahClvul7gKk+lDQiOKv+5qh7LQWf5sh6jkZNispz/QlsZxyNgA==", 446 | "dev": true 447 | }, 448 | "collapse-white-space": { 449 | "version": "2.1.0", 450 | "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-2.1.0.tgz", 451 | "integrity": "sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==", 452 | "dev": true 453 | }, 454 | "color-convert": { 455 | "version": "1.9.3", 456 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 457 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 458 | "dev": true, 459 | "requires": { 460 | "color-name": "1.1.3" 461 | } 462 | }, 463 | "color-name": { 464 | "version": "1.1.3", 465 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 466 | "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", 467 | "dev": true 468 | }, 469 | "concat-map": { 470 | "version": "0.0.1", 471 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 472 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 473 | "dev": true 474 | }, 475 | "cross-spawn": { 476 | "version": "7.0.3", 477 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 478 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 479 | "dev": true, 480 | "requires": { 481 | "path-key": "^3.1.0", 482 | "shebang-command": "^2.0.0", 483 | "which": "^2.0.1" 484 | } 485 | }, 486 | "crypto-random-string": { 487 | "version": "4.0.0", 488 | "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", 489 | "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", 490 | "dev": true, 491 | "requires": { 492 | "type-fest": "^1.0.1" 493 | }, 494 | "dependencies": { 495 | "type-fest": { 496 | "version": "1.4.0", 497 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", 498 | "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", 499 | "dev": true 500 | } 501 | } 502 | }, 503 | "debug": { 504 | "version": "4.3.5", 505 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", 506 | "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", 507 | "dev": true, 508 | "requires": { 509 | "ms": "2.1.2" 510 | } 511 | }, 512 | "decode-named-character-reference": { 513 | "version": "1.0.2", 514 | "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz", 515 | "integrity": "sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==", 516 | "dev": true, 517 | "requires": { 518 | "character-entities": "^2.0.0" 519 | } 520 | }, 521 | "decompress-response": { 522 | "version": "6.0.0", 523 | "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", 524 | "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", 525 | "dev": true, 526 | "requires": { 527 | "mimic-response": "^3.1.0" 528 | }, 529 | "dependencies": { 530 | "mimic-response": { 531 | "version": "3.1.0", 532 | "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", 533 | "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", 534 | "dev": true 535 | } 536 | } 537 | }, 538 | "defer-to-connect": { 539 | "version": "2.0.1", 540 | "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", 541 | "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", 542 | "dev": true 543 | }, 544 | "dequal": { 545 | "version": "2.0.3", 546 | "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", 547 | "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", 548 | "dev": true 549 | }, 550 | "devlop": { 551 | "version": "1.1.0", 552 | "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz", 553 | "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", 554 | "dev": true, 555 | "requires": { 556 | "dequal": "^2.0.0" 557 | } 558 | }, 559 | "emoji-regex": { 560 | "version": "10.3.0", 561 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz", 562 | "integrity": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==", 563 | "dev": true 564 | }, 565 | "escape-string-regexp": { 566 | "version": "1.0.5", 567 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 568 | "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 569 | "dev": true 570 | }, 571 | "eslint-formatter-pretty": { 572 | "version": "5.0.0", 573 | "resolved": "https://registry.npmjs.org/eslint-formatter-pretty/-/eslint-formatter-pretty-5.0.0.tgz", 574 | "integrity": "sha512-Uick451FoL22/wXqyScX3inW8ZlD/GQO7eFXj3bqb6N/ZtuuF00/CwSNIKLbFCJPrX5V4EdQBSgJ/UVnmLRnug==", 575 | "dev": true, 576 | "requires": { 577 | "@types/eslint": "^8.0.0", 578 | "ansi-escapes": "^4.2.1", 579 | "chalk": "^4.1.0", 580 | "eslint-rule-docs": "^1.1.235", 581 | "log-symbols": "^4.0.0", 582 | "plur": "^4.0.0", 583 | "string-width": "^4.2.0", 584 | "supports-hyperlinks": "^2.0.0" 585 | }, 586 | "dependencies": { 587 | "ansi-regex": { 588 | "version": "5.0.1", 589 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 590 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 591 | "dev": true 592 | }, 593 | "ansi-styles": { 594 | "version": "4.3.0", 595 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 596 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 597 | "dev": true, 598 | "requires": { 599 | "color-convert": "^2.0.1" 600 | } 601 | }, 602 | "chalk": { 603 | "version": "4.1.2", 604 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 605 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 606 | "dev": true, 607 | "requires": { 608 | "ansi-styles": "^4.1.0", 609 | "supports-color": "^7.1.0" 610 | } 611 | }, 612 | "color-convert": { 613 | "version": "2.0.1", 614 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 615 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 616 | "dev": true, 617 | "requires": { 618 | "color-name": "~1.1.4" 619 | } 620 | }, 621 | "color-name": { 622 | "version": "1.1.4", 623 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 624 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 625 | "dev": true 626 | }, 627 | "emoji-regex": { 628 | "version": "8.0.0", 629 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 630 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 631 | "dev": true 632 | }, 633 | "has-flag": { 634 | "version": "4.0.0", 635 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 636 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 637 | "dev": true 638 | }, 639 | "is-unicode-supported": { 640 | "version": "0.1.0", 641 | "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", 642 | "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", 643 | "dev": true 644 | }, 645 | "log-symbols": { 646 | "version": "4.1.0", 647 | "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", 648 | "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", 649 | "dev": true, 650 | "requires": { 651 | "chalk": "^4.1.0", 652 | "is-unicode-supported": "^0.1.0" 653 | } 654 | }, 655 | "string-width": { 656 | "version": "4.2.3", 657 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 658 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 659 | "dev": true, 660 | "requires": { 661 | "emoji-regex": "^8.0.0", 662 | "is-fullwidth-code-point": "^3.0.0", 663 | "strip-ansi": "^6.0.1" 664 | } 665 | }, 666 | "strip-ansi": { 667 | "version": "6.0.1", 668 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 669 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 670 | "dev": true, 671 | "requires": { 672 | "ansi-regex": "^5.0.1" 673 | } 674 | }, 675 | "supports-color": { 676 | "version": "7.2.0", 677 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 678 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 679 | "dev": true, 680 | "requires": { 681 | "has-flag": "^4.0.0" 682 | } 683 | } 684 | } 685 | }, 686 | "eslint-rule-docs": { 687 | "version": "1.1.235", 688 | "resolved": "https://registry.npmjs.org/eslint-rule-docs/-/eslint-rule-docs-1.1.235.tgz", 689 | "integrity": "sha512-+TQ+x4JdTnDoFEXXb3fDvfGOwnyNV7duH8fXWTPD1ieaBmB8omj7Gw/pMBBu4uI2uJCCU8APDaQJzWuXnTsH4A==", 690 | "dev": true 691 | }, 692 | "execa": { 693 | "version": "9.3.0", 694 | "resolved": "https://registry.npmjs.org/execa/-/execa-9.3.0.tgz", 695 | "integrity": "sha512-l6JFbqnHEadBoVAVpN5dl2yCyfX28WoBAGaoQcNmLLSedOxTxcn2Qa83s8I/PA5i56vWru2OHOtrwF7Om2vqlg==", 696 | "dev": true, 697 | "requires": { 698 | "@sindresorhus/merge-streams": "^4.0.0", 699 | "cross-spawn": "^7.0.3", 700 | "figures": "^6.1.0", 701 | "get-stream": "^9.0.0", 702 | "human-signals": "^7.0.0", 703 | "is-plain-obj": "^4.1.0", 704 | "is-stream": "^4.0.1", 705 | "npm-run-path": "^5.2.0", 706 | "pretty-ms": "^9.0.0", 707 | "signal-exit": "^4.1.0", 708 | "strip-final-newline": "^4.0.0", 709 | "yoctocolors": "^2.0.0" 710 | } 711 | }, 712 | "extend": { 713 | "version": "3.0.2", 714 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", 715 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", 716 | "dev": true 717 | }, 718 | "fast-glob": { 719 | "version": "3.3.2", 720 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 721 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 722 | "dev": true, 723 | "requires": { 724 | "@nodelib/fs.stat": "^2.0.2", 725 | "@nodelib/fs.walk": "^1.2.3", 726 | "glob-parent": "^5.1.2", 727 | "merge2": "^1.3.0", 728 | "micromatch": "^4.0.4" 729 | } 730 | }, 731 | "fastq": { 732 | "version": "1.17.1", 733 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", 734 | "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", 735 | "dev": true, 736 | "requires": { 737 | "reusify": "^1.0.4" 738 | } 739 | }, 740 | "figures": { 741 | "version": "6.1.0", 742 | "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz", 743 | "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==", 744 | "dev": true, 745 | "requires": { 746 | "is-unicode-supported": "^2.0.0" 747 | } 748 | }, 749 | "fill-range": { 750 | "version": "7.1.1", 751 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 752 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 753 | "dev": true, 754 | "requires": { 755 | "to-regex-range": "^5.0.1" 756 | } 757 | }, 758 | "form-data-encoder": { 759 | "version": "2.1.4", 760 | "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz", 761 | "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==", 762 | "dev": true 763 | }, 764 | "fs.realpath": { 765 | "version": "1.0.0", 766 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 767 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 768 | "dev": true 769 | }, 770 | "get-east-asian-width": { 771 | "version": "1.2.0", 772 | "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.2.0.tgz", 773 | "integrity": "sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==", 774 | "dev": true 775 | }, 776 | "get-stream": { 777 | "version": "9.0.1", 778 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-9.0.1.tgz", 779 | "integrity": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==", 780 | "dev": true, 781 | "requires": { 782 | "@sec-ant/readable-stream": "^0.4.1", 783 | "is-stream": "^4.0.1" 784 | } 785 | }, 786 | "github-slugger": { 787 | "version": "2.0.0", 788 | "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-2.0.0.tgz", 789 | "integrity": "sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==", 790 | "dev": true 791 | }, 792 | "github-url-to-object": { 793 | "version": "4.0.6", 794 | "resolved": "https://registry.npmjs.org/github-url-to-object/-/github-url-to-object-4.0.6.tgz", 795 | "integrity": "sha512-NaqbYHMUAlPcmWFdrAB7bcxrNIiiJWJe8s/2+iOc9vlcHlwHqSGrPk+Yi3nu6ebTwgsZEa7igz+NH2vEq3gYwQ==", 796 | "dev": true, 797 | "requires": { 798 | "is-url": "^1.1.0" 799 | } 800 | }, 801 | "glob": { 802 | "version": "7.2.3", 803 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 804 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 805 | "dev": true, 806 | "requires": { 807 | "fs.realpath": "^1.0.0", 808 | "inflight": "^1.0.4", 809 | "inherits": "2", 810 | "minimatch": "^3.1.1", 811 | "once": "^1.3.0", 812 | "path-is-absolute": "^1.0.0" 813 | } 814 | }, 815 | "glob-option-error": { 816 | "version": "1.0.0", 817 | "resolved": "https://registry.npmjs.org/glob-option-error/-/glob-option-error-1.0.0.tgz", 818 | "integrity": "sha512-AD7lbWbwF2Ii9gBQsQIOEzwuqP/jsnyvK27/3JDq1kn/JyfDtYI6AWz3ZQwcPuQdHSBcFh+A2yT/SEep27LOGg==", 819 | "dev": true 820 | }, 821 | "glob-parent": { 822 | "version": "5.1.2", 823 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 824 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 825 | "dev": true, 826 | "requires": { 827 | "is-glob": "^4.0.1" 828 | } 829 | }, 830 | "globby": { 831 | "version": "14.0.2", 832 | "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz", 833 | "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==", 834 | "dev": true, 835 | "requires": { 836 | "@sindresorhus/merge-streams": "^2.1.0", 837 | "fast-glob": "^3.3.2", 838 | "ignore": "^5.2.4", 839 | "path-type": "^5.0.0", 840 | "slash": "^5.1.0", 841 | "unicorn-magic": "^0.1.0" 842 | }, 843 | "dependencies": { 844 | "@sindresorhus/merge-streams": { 845 | "version": "2.3.0", 846 | "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", 847 | "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", 848 | "dev": true 849 | } 850 | } 851 | }, 852 | "got": { 853 | "version": "13.0.0", 854 | "resolved": "https://registry.npmjs.org/got/-/got-13.0.0.tgz", 855 | "integrity": "sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA==", 856 | "dev": true, 857 | "requires": { 858 | "@sindresorhus/is": "^5.2.0", 859 | "@szmarczak/http-timer": "^5.0.1", 860 | "cacheable-lookup": "^7.0.0", 861 | "cacheable-request": "^10.2.8", 862 | "decompress-response": "^6.0.0", 863 | "form-data-encoder": "^2.1.2", 864 | "get-stream": "^6.0.1", 865 | "http2-wrapper": "^2.1.10", 866 | "lowercase-keys": "^3.0.0", 867 | "p-cancelable": "^3.0.0", 868 | "responselike": "^3.0.0" 869 | }, 870 | "dependencies": { 871 | "get-stream": { 872 | "version": "6.0.1", 873 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", 874 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", 875 | "dev": true 876 | } 877 | } 878 | }, 879 | "graceful-fs": { 880 | "version": "4.2.11", 881 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 882 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 883 | "dev": true 884 | }, 885 | "has-flag": { 886 | "version": "3.0.0", 887 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 888 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 889 | "dev": true 890 | }, 891 | "hosted-git-info": { 892 | "version": "7.0.2", 893 | "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.2.tgz", 894 | "integrity": "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==", 895 | "dev": true, 896 | "requires": { 897 | "lru-cache": "^10.0.1" 898 | } 899 | }, 900 | "http-cache-semantics": { 901 | "version": "4.1.1", 902 | "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", 903 | "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", 904 | "dev": true 905 | }, 906 | "http2-wrapper": { 907 | "version": "2.2.1", 908 | "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz", 909 | "integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==", 910 | "dev": true, 911 | "requires": { 912 | "quick-lru": "^5.1.1", 913 | "resolve-alpn": "^1.2.0" 914 | } 915 | }, 916 | "human-signals": { 917 | "version": "7.0.0", 918 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-7.0.0.tgz", 919 | "integrity": "sha512-74kytxOUSvNbjrT9KisAbaTZ/eJwD/LrbM/kh5j0IhPuJzwuA19dWvniFGwBzN9rVjg+O/e+F310PjObDXS+9Q==", 920 | "dev": true 921 | }, 922 | "ignore": { 923 | "version": "5.3.1", 924 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", 925 | "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", 926 | "dev": true 927 | }, 928 | "index-to-position": { 929 | "version": "0.1.2", 930 | "resolved": "https://registry.npmjs.org/index-to-position/-/index-to-position-0.1.2.tgz", 931 | "integrity": "sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==", 932 | "dev": true 933 | }, 934 | "indexed-filter": { 935 | "version": "1.0.3", 936 | "resolved": "https://registry.npmjs.org/indexed-filter/-/indexed-filter-1.0.3.tgz", 937 | "integrity": "sha512-oBIzs6EARNMzrLgVg20fK52H19WcRHBiukiiEkw9rnnI//8rinEBMLrYdwEfJ9d4K7bjV1L6nSGft6H/qzHNgQ==", 938 | "dev": true, 939 | "requires": { 940 | "append-type": "^1.0.1" 941 | } 942 | }, 943 | "inflight": { 944 | "version": "1.0.6", 945 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 946 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 947 | "dev": true, 948 | "requires": { 949 | "once": "^1.3.0", 950 | "wrappy": "1" 951 | } 952 | }, 953 | "inherits": { 954 | "version": "2.0.4", 955 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 956 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 957 | "dev": true 958 | }, 959 | "inspect-with-kind": { 960 | "version": "1.0.5", 961 | "resolved": "https://registry.npmjs.org/inspect-with-kind/-/inspect-with-kind-1.0.5.tgz", 962 | "integrity": "sha512-MAQUJuIo7Xqk8EVNP+6d3CKq9c80hi4tjIbIAT6lmGW9W6WzlHiu9PS8uSuUYU+Do+j1baiFp3H25XEVxDIG2g==", 963 | "dev": true, 964 | "requires": { 965 | "kind-of": "^6.0.2" 966 | } 967 | }, 968 | "irregular-plurals": { 969 | "version": "3.5.0", 970 | "resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-3.5.0.tgz", 971 | "integrity": "sha512-1ANGLZ+Nkv1ptFb2pa8oG8Lem4krflKuX/gINiHJHjJUKaJHk/SXk5x6K3J+39/p0h1RQ2saROclJJ+QLvETCQ==", 972 | "dev": true 973 | }, 974 | "is-alphabetical": { 975 | "version": "2.0.1", 976 | "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", 977 | "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", 978 | "dev": true 979 | }, 980 | "is-alphanumerical": { 981 | "version": "2.0.1", 982 | "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", 983 | "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", 984 | "dev": true, 985 | "requires": { 986 | "is-alphabetical": "^2.0.0", 987 | "is-decimal": "^2.0.0" 988 | } 989 | }, 990 | "is-buffer": { 991 | "version": "2.0.5", 992 | "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz", 993 | "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==", 994 | "dev": true 995 | }, 996 | "is-decimal": { 997 | "version": "2.0.1", 998 | "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", 999 | "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", 1000 | "dev": true 1001 | }, 1002 | "is-extglob": { 1003 | "version": "2.1.1", 1004 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1005 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1006 | "dev": true 1007 | }, 1008 | "is-fullwidth-code-point": { 1009 | "version": "3.0.0", 1010 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 1011 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 1012 | "dev": true 1013 | }, 1014 | "is-github-url": { 1015 | "version": "1.2.2", 1016 | "resolved": "https://registry.npmjs.org/is-github-url/-/is-github-url-1.2.2.tgz", 1017 | "integrity": "sha512-TuiCHA5zadRVryd5gDJzPZj7yJbyMeR2r7IK/gF9z2MZwPF+A7ML9YYO8CwzdLsmxeTmxlmC6GKIeQBWJFFMQg==", 1018 | "dev": true 1019 | }, 1020 | "is-glob": { 1021 | "version": "4.0.3", 1022 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1023 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1024 | "dev": true, 1025 | "requires": { 1026 | "is-extglob": "^2.1.1" 1027 | } 1028 | }, 1029 | "is-hexadecimal": { 1030 | "version": "2.0.1", 1031 | "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz", 1032 | "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==", 1033 | "dev": true 1034 | }, 1035 | "is-interactive": { 1036 | "version": "2.0.0", 1037 | "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz", 1038 | "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==", 1039 | "dev": true 1040 | }, 1041 | "is-number": { 1042 | "version": "7.0.0", 1043 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1044 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1045 | "dev": true 1046 | }, 1047 | "is-plain-obj": { 1048 | "version": "4.1.0", 1049 | "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", 1050 | "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", 1051 | "dev": true 1052 | }, 1053 | "is-stream": { 1054 | "version": "4.0.1", 1055 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-4.0.1.tgz", 1056 | "integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==", 1057 | "dev": true 1058 | }, 1059 | "is-unicode-supported": { 1060 | "version": "2.0.0", 1061 | "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.0.0.tgz", 1062 | "integrity": "sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==", 1063 | "dev": true 1064 | }, 1065 | "is-url": { 1066 | "version": "1.2.4", 1067 | "resolved": "https://registry.npmjs.org/is-url/-/is-url-1.2.4.tgz", 1068 | "integrity": "sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==", 1069 | "dev": true 1070 | }, 1071 | "is-url-superb": { 1072 | "version": "6.1.0", 1073 | "resolved": "https://registry.npmjs.org/is-url-superb/-/is-url-superb-6.1.0.tgz", 1074 | "integrity": "sha512-LXdhGlYqUPdvEyIhWPEEwYYK3yrUiPcBjmFGlZNv1u5GtIL5qQRf7ddDyPNAvsMFqdzS923FROpTQU97tLe3JQ==", 1075 | "dev": true 1076 | }, 1077 | "isexe": { 1078 | "version": "2.0.0", 1079 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1080 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 1081 | "dev": true 1082 | }, 1083 | "js-tokens": { 1084 | "version": "4.0.0", 1085 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 1086 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 1087 | "dev": true 1088 | }, 1089 | "json-buffer": { 1090 | "version": "3.0.1", 1091 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 1092 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 1093 | "dev": true 1094 | }, 1095 | "keyv": { 1096 | "version": "4.5.4", 1097 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 1098 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 1099 | "dev": true, 1100 | "requires": { 1101 | "json-buffer": "3.0.1" 1102 | } 1103 | }, 1104 | "kind-of": { 1105 | "version": "6.0.3", 1106 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", 1107 | "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", 1108 | "dev": true 1109 | }, 1110 | "lodash.iteratee": { 1111 | "version": "4.7.0", 1112 | "resolved": "https://registry.npmjs.org/lodash.iteratee/-/lodash.iteratee-4.7.0.tgz", 1113 | "integrity": "sha512-yv3cSQZmfpbIKo4Yo45B1taEvxjNvcpF1CEOc0Y6dEyvhPIfEJE3twDwPgWTPQubcSgXyBwBKG6wpQvWMDOf6Q==", 1114 | "dev": true 1115 | }, 1116 | "log-symbols": { 1117 | "version": "6.0.0", 1118 | "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-6.0.0.tgz", 1119 | "integrity": "sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==", 1120 | "dev": true, 1121 | "requires": { 1122 | "chalk": "^5.3.0", 1123 | "is-unicode-supported": "^1.3.0" 1124 | }, 1125 | "dependencies": { 1126 | "is-unicode-supported": { 1127 | "version": "1.3.0", 1128 | "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", 1129 | "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", 1130 | "dev": true 1131 | } 1132 | } 1133 | }, 1134 | "longest-streak": { 1135 | "version": "3.1.0", 1136 | "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz", 1137 | "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==", 1138 | "dev": true 1139 | }, 1140 | "lowercase-keys": { 1141 | "version": "3.0.0", 1142 | "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz", 1143 | "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==", 1144 | "dev": true 1145 | }, 1146 | "lru-cache": { 1147 | "version": "10.3.0", 1148 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.3.0.tgz", 1149 | "integrity": "sha512-CQl19J/g+Hbjbv4Y3mFNNXFEL/5t/KCg8POCuUqd4rMKjGG+j1ybER83hxV58zL+dFI1PTkt3GNFSHRt+d8qEQ==", 1150 | "dev": true 1151 | }, 1152 | "mdast-comment-marker": { 1153 | "version": "3.0.0", 1154 | "resolved": "https://registry.npmjs.org/mdast-comment-marker/-/mdast-comment-marker-3.0.0.tgz", 1155 | "integrity": "sha512-bt08sLmTNg00/UtVDiqZKocxqvQqqyQZAg1uaRuO/4ysXV5motg7RolF5o5yy/sY1rG0v2XgZEqFWho1+2UquA==", 1156 | "dev": true, 1157 | "requires": { 1158 | "@types/mdast": "^4.0.0", 1159 | "mdast-util-mdx-expression": "^2.0.0" 1160 | } 1161 | }, 1162 | "mdast-util-directive": { 1163 | "version": "3.0.0", 1164 | "resolved": "https://registry.npmjs.org/mdast-util-directive/-/mdast-util-directive-3.0.0.tgz", 1165 | "integrity": "sha512-JUpYOqKI4mM3sZcNxmF/ox04XYFFkNwr0CFlrQIkCwbvH0xzMCqkMqAde9wRd80VAhaUrwFwKm2nxretdT1h7Q==", 1166 | "dev": true, 1167 | "requires": { 1168 | "@types/mdast": "^4.0.0", 1169 | "@types/unist": "^3.0.0", 1170 | "devlop": "^1.0.0", 1171 | "mdast-util-from-markdown": "^2.0.0", 1172 | "mdast-util-to-markdown": "^2.0.0", 1173 | "parse-entities": "^4.0.0", 1174 | "stringify-entities": "^4.0.0", 1175 | "unist-util-visit-parents": "^6.0.0" 1176 | } 1177 | }, 1178 | "mdast-util-from-markdown": { 1179 | "version": "2.0.1", 1180 | "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.1.tgz", 1181 | "integrity": "sha512-aJEUyzZ6TzlsX2s5B4Of7lN7EQtAxvtradMMglCQDyaTFgse6CmtmdJ15ElnVRlCg1vpNyVtbem0PWzlNieZsA==", 1182 | "dev": true, 1183 | "requires": { 1184 | "@types/mdast": "^4.0.0", 1185 | "@types/unist": "^3.0.0", 1186 | "decode-named-character-reference": "^1.0.0", 1187 | "devlop": "^1.0.0", 1188 | "mdast-util-to-string": "^4.0.0", 1189 | "micromark": "^4.0.0", 1190 | "micromark-util-decode-numeric-character-reference": "^2.0.0", 1191 | "micromark-util-decode-string": "^2.0.0", 1192 | "micromark-util-normalize-identifier": "^2.0.0", 1193 | "micromark-util-symbol": "^2.0.0", 1194 | "micromark-util-types": "^2.0.0", 1195 | "unist-util-stringify-position": "^4.0.0" 1196 | } 1197 | }, 1198 | "mdast-util-heading-style": { 1199 | "version": "3.0.0", 1200 | "resolved": "https://registry.npmjs.org/mdast-util-heading-style/-/mdast-util-heading-style-3.0.0.tgz", 1201 | "integrity": "sha512-tsUfM9Kj9msjlemA/38Z3pvraQay880E3zP2NgIthMoGcpU9bcPX9oSM6QC/+eFXGGB4ba+VCB1dKAPHB7Veug==", 1202 | "dev": true, 1203 | "requires": { 1204 | "@types/mdast": "^4.0.0" 1205 | } 1206 | }, 1207 | "mdast-util-mdx": { 1208 | "version": "3.0.0", 1209 | "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-3.0.0.tgz", 1210 | "integrity": "sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==", 1211 | "dev": true, 1212 | "requires": { 1213 | "mdast-util-from-markdown": "^2.0.0", 1214 | "mdast-util-mdx-expression": "^2.0.0", 1215 | "mdast-util-mdx-jsx": "^3.0.0", 1216 | "mdast-util-mdxjs-esm": "^2.0.0", 1217 | "mdast-util-to-markdown": "^2.0.0" 1218 | } 1219 | }, 1220 | "mdast-util-mdx-expression": { 1221 | "version": "2.0.0", 1222 | "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.0.tgz", 1223 | "integrity": "sha512-fGCu8eWdKUKNu5mohVGkhBXCXGnOTLuFqOvGMvdikr+J1w7lDJgxThOKpwRWzzbyXAU2hhSwsmssOY4yTokluw==", 1224 | "dev": true, 1225 | "requires": { 1226 | "@types/estree-jsx": "^1.0.0", 1227 | "@types/hast": "^3.0.0", 1228 | "@types/mdast": "^4.0.0", 1229 | "devlop": "^1.0.0", 1230 | "mdast-util-from-markdown": "^2.0.0", 1231 | "mdast-util-to-markdown": "^2.0.0" 1232 | } 1233 | }, 1234 | "mdast-util-mdx-jsx": { 1235 | "version": "3.1.2", 1236 | "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.1.2.tgz", 1237 | "integrity": "sha512-eKMQDeywY2wlHc97k5eD8VC+9ASMjN8ItEZQNGwJ6E0XWKiW/Z0V5/H8pvoXUf+y+Mj0VIgeRRbujBmFn4FTyA==", 1238 | "dev": true, 1239 | "requires": { 1240 | "@types/estree-jsx": "^1.0.0", 1241 | "@types/hast": "^3.0.0", 1242 | "@types/mdast": "^4.0.0", 1243 | "@types/unist": "^3.0.0", 1244 | "ccount": "^2.0.0", 1245 | "devlop": "^1.1.0", 1246 | "mdast-util-from-markdown": "^2.0.0", 1247 | "mdast-util-to-markdown": "^2.0.0", 1248 | "parse-entities": "^4.0.0", 1249 | "stringify-entities": "^4.0.0", 1250 | "unist-util-remove-position": "^5.0.0", 1251 | "unist-util-stringify-position": "^4.0.0", 1252 | "vfile-message": "^4.0.0" 1253 | } 1254 | }, 1255 | "mdast-util-mdxjs-esm": { 1256 | "version": "2.0.1", 1257 | "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz", 1258 | "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==", 1259 | "dev": true, 1260 | "requires": { 1261 | "@types/estree-jsx": "^1.0.0", 1262 | "@types/hast": "^3.0.0", 1263 | "@types/mdast": "^4.0.0", 1264 | "devlop": "^1.0.0", 1265 | "mdast-util-from-markdown": "^2.0.0", 1266 | "mdast-util-to-markdown": "^2.0.0" 1267 | } 1268 | }, 1269 | "mdast-util-phrasing": { 1270 | "version": "4.1.0", 1271 | "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz", 1272 | "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==", 1273 | "dev": true, 1274 | "requires": { 1275 | "@types/mdast": "^4.0.0", 1276 | "unist-util-is": "^6.0.0" 1277 | } 1278 | }, 1279 | "mdast-util-to-markdown": { 1280 | "version": "2.1.0", 1281 | "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.0.tgz", 1282 | "integrity": "sha512-SR2VnIEdVNCJbP6y7kVTJgPLifdr8WEU440fQec7qHoHOUz/oJ2jmNRqdDQ3rbiStOXb2mCDGTuwsK5OPUgYlQ==", 1283 | "dev": true, 1284 | "requires": { 1285 | "@types/mdast": "^4.0.0", 1286 | "@types/unist": "^3.0.0", 1287 | "longest-streak": "^3.0.0", 1288 | "mdast-util-phrasing": "^4.0.0", 1289 | "mdast-util-to-string": "^4.0.0", 1290 | "micromark-util-decode-string": "^2.0.0", 1291 | "unist-util-visit": "^5.0.0", 1292 | "zwitch": "^2.0.0" 1293 | } 1294 | }, 1295 | "mdast-util-to-string": { 1296 | "version": "4.0.0", 1297 | "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz", 1298 | "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==", 1299 | "dev": true, 1300 | "requires": { 1301 | "@types/mdast": "^4.0.0" 1302 | } 1303 | }, 1304 | "meow": { 1305 | "version": "13.2.0", 1306 | "resolved": "https://registry.npmjs.org/meow/-/meow-13.2.0.tgz", 1307 | "integrity": "sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==", 1308 | "dev": true 1309 | }, 1310 | "merge2": { 1311 | "version": "1.4.1", 1312 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 1313 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 1314 | "dev": true 1315 | }, 1316 | "micromark": { 1317 | "version": "4.0.0", 1318 | "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.0.tgz", 1319 | "integrity": "sha512-o/sd0nMof8kYff+TqcDx3VSrgBTcZpSvYcAHIfHhv5VAuNmisCxjhx6YmxS8PFEpb9z5WKWKPdzf0jM23ro3RQ==", 1320 | "dev": true, 1321 | "requires": { 1322 | "@types/debug": "^4.0.0", 1323 | "debug": "^4.0.0", 1324 | "decode-named-character-reference": "^1.0.0", 1325 | "devlop": "^1.0.0", 1326 | "micromark-core-commonmark": "^2.0.0", 1327 | "micromark-factory-space": "^2.0.0", 1328 | "micromark-util-character": "^2.0.0", 1329 | "micromark-util-chunked": "^2.0.0", 1330 | "micromark-util-combine-extensions": "^2.0.0", 1331 | "micromark-util-decode-numeric-character-reference": "^2.0.0", 1332 | "micromark-util-encode": "^2.0.0", 1333 | "micromark-util-normalize-identifier": "^2.0.0", 1334 | "micromark-util-resolve-all": "^2.0.0", 1335 | "micromark-util-sanitize-uri": "^2.0.0", 1336 | "micromark-util-subtokenize": "^2.0.0", 1337 | "micromark-util-symbol": "^2.0.0", 1338 | "micromark-util-types": "^2.0.0" 1339 | } 1340 | }, 1341 | "micromark-core-commonmark": { 1342 | "version": "2.0.1", 1343 | "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.1.tgz", 1344 | "integrity": "sha512-CUQyKr1e///ZODyD1U3xit6zXwy1a8q2a1S1HKtIlmgvurrEpaw/Y9y6KSIbF8P59cn/NjzHyO+Q2fAyYLQrAA==", 1345 | "dev": true, 1346 | "requires": { 1347 | "decode-named-character-reference": "^1.0.0", 1348 | "devlop": "^1.0.0", 1349 | "micromark-factory-destination": "^2.0.0", 1350 | "micromark-factory-label": "^2.0.0", 1351 | "micromark-factory-space": "^2.0.0", 1352 | "micromark-factory-title": "^2.0.0", 1353 | "micromark-factory-whitespace": "^2.0.0", 1354 | "micromark-util-character": "^2.0.0", 1355 | "micromark-util-chunked": "^2.0.0", 1356 | "micromark-util-classify-character": "^2.0.0", 1357 | "micromark-util-html-tag-name": "^2.0.0", 1358 | "micromark-util-normalize-identifier": "^2.0.0", 1359 | "micromark-util-resolve-all": "^2.0.0", 1360 | "micromark-util-subtokenize": "^2.0.0", 1361 | "micromark-util-symbol": "^2.0.0", 1362 | "micromark-util-types": "^2.0.0" 1363 | } 1364 | }, 1365 | "micromark-factory-destination": { 1366 | "version": "2.0.0", 1367 | "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.0.tgz", 1368 | "integrity": "sha512-j9DGrQLm/Uhl2tCzcbLhy5kXsgkHUrjJHg4fFAeoMRwJmJerT9aw4FEhIbZStWN8A3qMwOp1uzHr4UL8AInxtA==", 1369 | "dev": true, 1370 | "requires": { 1371 | "micromark-util-character": "^2.0.0", 1372 | "micromark-util-symbol": "^2.0.0", 1373 | "micromark-util-types": "^2.0.0" 1374 | } 1375 | }, 1376 | "micromark-factory-label": { 1377 | "version": "2.0.0", 1378 | "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.0.tgz", 1379 | "integrity": "sha512-RR3i96ohZGde//4WSe/dJsxOX6vxIg9TimLAS3i4EhBAFx8Sm5SmqVfR8E87DPSR31nEAjZfbt91OMZWcNgdZw==", 1380 | "dev": true, 1381 | "requires": { 1382 | "devlop": "^1.0.0", 1383 | "micromark-util-character": "^2.0.0", 1384 | "micromark-util-symbol": "^2.0.0", 1385 | "micromark-util-types": "^2.0.0" 1386 | } 1387 | }, 1388 | "micromark-factory-space": { 1389 | "version": "2.0.0", 1390 | "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.0.tgz", 1391 | "integrity": "sha512-TKr+LIDX2pkBJXFLzpyPyljzYK3MtmllMUMODTQJIUfDGncESaqB90db9IAUcz4AZAJFdd8U9zOp9ty1458rxg==", 1392 | "dev": true, 1393 | "requires": { 1394 | "micromark-util-character": "^2.0.0", 1395 | "micromark-util-types": "^2.0.0" 1396 | } 1397 | }, 1398 | "micromark-factory-title": { 1399 | "version": "2.0.0", 1400 | "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.0.tgz", 1401 | "integrity": "sha512-jY8CSxmpWLOxS+t8W+FG3Xigc0RDQA9bKMY/EwILvsesiRniiVMejYTE4wumNc2f4UbAa4WsHqe3J1QS1sli+A==", 1402 | "dev": true, 1403 | "requires": { 1404 | "micromark-factory-space": "^2.0.0", 1405 | "micromark-util-character": "^2.0.0", 1406 | "micromark-util-symbol": "^2.0.0", 1407 | "micromark-util-types": "^2.0.0" 1408 | } 1409 | }, 1410 | "micromark-factory-whitespace": { 1411 | "version": "2.0.0", 1412 | "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.0.tgz", 1413 | "integrity": "sha512-28kbwaBjc5yAI1XadbdPYHX/eDnqaUFVikLwrO7FDnKG7lpgxnvk/XGRhX/PN0mOZ+dBSZ+LgunHS+6tYQAzhA==", 1414 | "dev": true, 1415 | "requires": { 1416 | "micromark-factory-space": "^2.0.0", 1417 | "micromark-util-character": "^2.0.0", 1418 | "micromark-util-symbol": "^2.0.0", 1419 | "micromark-util-types": "^2.0.0" 1420 | } 1421 | }, 1422 | "micromark-util-character": { 1423 | "version": "2.1.0", 1424 | "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.0.tgz", 1425 | "integrity": "sha512-KvOVV+X1yLBfs9dCBSopq/+G1PcgT3lAK07mC4BzXi5E7ahzMAF8oIupDDJ6mievI6F+lAATkbQQlQixJfT3aQ==", 1426 | "dev": true, 1427 | "requires": { 1428 | "micromark-util-symbol": "^2.0.0", 1429 | "micromark-util-types": "^2.0.0" 1430 | } 1431 | }, 1432 | "micromark-util-chunked": { 1433 | "version": "2.0.0", 1434 | "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.0.tgz", 1435 | "integrity": "sha512-anK8SWmNphkXdaKgz5hJvGa7l00qmcaUQoMYsBwDlSKFKjc6gjGXPDw3FNL3Nbwq5L8gE+RCbGqTw49FK5Qyvg==", 1436 | "dev": true, 1437 | "requires": { 1438 | "micromark-util-symbol": "^2.0.0" 1439 | } 1440 | }, 1441 | "micromark-util-classify-character": { 1442 | "version": "2.0.0", 1443 | "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.0.tgz", 1444 | "integrity": "sha512-S0ze2R9GH+fu41FA7pbSqNWObo/kzwf8rN/+IGlW/4tC6oACOs8B++bh+i9bVyNnwCcuksbFwsBme5OCKXCwIw==", 1445 | "dev": true, 1446 | "requires": { 1447 | "micromark-util-character": "^2.0.0", 1448 | "micromark-util-symbol": "^2.0.0", 1449 | "micromark-util-types": "^2.0.0" 1450 | } 1451 | }, 1452 | "micromark-util-combine-extensions": { 1453 | "version": "2.0.0", 1454 | "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.0.tgz", 1455 | "integrity": "sha512-vZZio48k7ON0fVS3CUgFatWHoKbbLTK/rT7pzpJ4Bjp5JjkZeasRfrS9wsBdDJK2cJLHMckXZdzPSSr1B8a4oQ==", 1456 | "dev": true, 1457 | "requires": { 1458 | "micromark-util-chunked": "^2.0.0", 1459 | "micromark-util-types": "^2.0.0" 1460 | } 1461 | }, 1462 | "micromark-util-decode-numeric-character-reference": { 1463 | "version": "2.0.1", 1464 | "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.1.tgz", 1465 | "integrity": "sha512-bmkNc7z8Wn6kgjZmVHOX3SowGmVdhYS7yBpMnuMnPzDq/6xwVA604DuOXMZTO1lvq01g+Adfa0pE2UKGlxL1XQ==", 1466 | "dev": true, 1467 | "requires": { 1468 | "micromark-util-symbol": "^2.0.0" 1469 | } 1470 | }, 1471 | "micromark-util-decode-string": { 1472 | "version": "2.0.0", 1473 | "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.0.tgz", 1474 | "integrity": "sha512-r4Sc6leeUTn3P6gk20aFMj2ntPwn6qpDZqWvYmAG6NgvFTIlj4WtrAudLi65qYoaGdXYViXYw2pkmn7QnIFasA==", 1475 | "dev": true, 1476 | "requires": { 1477 | "decode-named-character-reference": "^1.0.0", 1478 | "micromark-util-character": "^2.0.0", 1479 | "micromark-util-decode-numeric-character-reference": "^2.0.0", 1480 | "micromark-util-symbol": "^2.0.0" 1481 | } 1482 | }, 1483 | "micromark-util-encode": { 1484 | "version": "2.0.0", 1485 | "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.0.tgz", 1486 | "integrity": "sha512-pS+ROfCXAGLWCOc8egcBvT0kf27GoWMqtdarNfDcjb6YLuV5cM3ioG45Ys2qOVqeqSbjaKg72vU+Wby3eddPsA==", 1487 | "dev": true 1488 | }, 1489 | "micromark-util-html-tag-name": { 1490 | "version": "2.0.0", 1491 | "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.0.tgz", 1492 | "integrity": "sha512-xNn4Pqkj2puRhKdKTm8t1YHC/BAjx6CEwRFXntTaRf/x16aqka6ouVoutm+QdkISTlT7e2zU7U4ZdlDLJd2Mcw==", 1493 | "dev": true 1494 | }, 1495 | "micromark-util-normalize-identifier": { 1496 | "version": "2.0.0", 1497 | "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.0.tgz", 1498 | "integrity": "sha512-2xhYT0sfo85FMrUPtHcPo2rrp1lwbDEEzpx7jiH2xXJLqBuy4H0GgXk5ToU8IEwoROtXuL8ND0ttVa4rNqYK3w==", 1499 | "dev": true, 1500 | "requires": { 1501 | "micromark-util-symbol": "^2.0.0" 1502 | } 1503 | }, 1504 | "micromark-util-resolve-all": { 1505 | "version": "2.0.0", 1506 | "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.0.tgz", 1507 | "integrity": "sha512-6KU6qO7DZ7GJkaCgwBNtplXCvGkJToU86ybBAUdavvgsCiG8lSSvYxr9MhwmQ+udpzywHsl4RpGJsYWG1pDOcA==", 1508 | "dev": true, 1509 | "requires": { 1510 | "micromark-util-types": "^2.0.0" 1511 | } 1512 | }, 1513 | "micromark-util-sanitize-uri": { 1514 | "version": "2.0.0", 1515 | "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.0.tgz", 1516 | "integrity": "sha512-WhYv5UEcZrbAtlsnPuChHUAsu/iBPOVaEVsntLBIdpibO0ddy8OzavZz3iL2xVvBZOpolujSliP65Kq0/7KIYw==", 1517 | "dev": true, 1518 | "requires": { 1519 | "micromark-util-character": "^2.0.0", 1520 | "micromark-util-encode": "^2.0.0", 1521 | "micromark-util-symbol": "^2.0.0" 1522 | } 1523 | }, 1524 | "micromark-util-subtokenize": { 1525 | "version": "2.0.1", 1526 | "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.0.1.tgz", 1527 | "integrity": "sha512-jZNtiFl/1aY73yS3UGQkutD0UbhTt68qnRpw2Pifmz5wV9h8gOVsN70v+Lq/f1rKaU/W8pxRe8y8Q9FX1AOe1Q==", 1528 | "dev": true, 1529 | "requires": { 1530 | "devlop": "^1.0.0", 1531 | "micromark-util-chunked": "^2.0.0", 1532 | "micromark-util-symbol": "^2.0.0", 1533 | "micromark-util-types": "^2.0.0" 1534 | } 1535 | }, 1536 | "micromark-util-symbol": { 1537 | "version": "2.0.0", 1538 | "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.0.tgz", 1539 | "integrity": "sha512-8JZt9ElZ5kyTnO94muPxIGS8oyElRJaiJO8EzV6ZSyGQ1Is8xwl4Q45qU5UOg+bGH4AikWziz0iN4sFLWs8PGw==", 1540 | "dev": true 1541 | }, 1542 | "micromark-util-types": { 1543 | "version": "2.0.0", 1544 | "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.0.tgz", 1545 | "integrity": "sha512-oNh6S2WMHWRZrmutsRmDDfkzKtxF+bc2VxLC9dvtrDIRFln627VsFP6fLMgTryGDljgLPjkrzQSDcPrjPyDJ5w==", 1546 | "dev": true 1547 | }, 1548 | "micromatch": { 1549 | "version": "4.0.7", 1550 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz", 1551 | "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==", 1552 | "dev": true, 1553 | "requires": { 1554 | "braces": "^3.0.3", 1555 | "picomatch": "^2.3.1" 1556 | } 1557 | }, 1558 | "mimic-fn": { 1559 | "version": "2.1.0", 1560 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 1561 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 1562 | "dev": true 1563 | }, 1564 | "mimic-response": { 1565 | "version": "4.0.0", 1566 | "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz", 1567 | "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==", 1568 | "dev": true 1569 | }, 1570 | "minimatch": { 1571 | "version": "3.1.2", 1572 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1573 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1574 | "dev": true, 1575 | "requires": { 1576 | "brace-expansion": "^1.1.7" 1577 | } 1578 | }, 1579 | "ms": { 1580 | "version": "2.1.2", 1581 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1582 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 1583 | "dev": true 1584 | }, 1585 | "normalize-package-data": { 1586 | "version": "6.0.2", 1587 | "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.2.tgz", 1588 | "integrity": "sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==", 1589 | "dev": true, 1590 | "requires": { 1591 | "hosted-git-info": "^7.0.0", 1592 | "semver": "^7.3.5", 1593 | "validate-npm-package-license": "^3.0.4" 1594 | } 1595 | }, 1596 | "normalize-url": { 1597 | "version": "8.0.1", 1598 | "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.1.tgz", 1599 | "integrity": "sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==", 1600 | "dev": true 1601 | }, 1602 | "npm-run-path": { 1603 | "version": "5.3.0", 1604 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", 1605 | "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", 1606 | "dev": true, 1607 | "requires": { 1608 | "path-key": "^4.0.0" 1609 | }, 1610 | "dependencies": { 1611 | "path-key": { 1612 | "version": "4.0.0", 1613 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", 1614 | "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", 1615 | "dev": true 1616 | } 1617 | } 1618 | }, 1619 | "object-assign": { 1620 | "version": "4.1.1", 1621 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 1622 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 1623 | "dev": true 1624 | }, 1625 | "once": { 1626 | "version": "1.4.0", 1627 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 1628 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 1629 | "dev": true, 1630 | "requires": { 1631 | "wrappy": "1" 1632 | } 1633 | }, 1634 | "onetime": { 1635 | "version": "5.1.2", 1636 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", 1637 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", 1638 | "dev": true, 1639 | "requires": { 1640 | "mimic-fn": "^2.1.0" 1641 | } 1642 | }, 1643 | "ora": { 1644 | "version": "8.0.1", 1645 | "resolved": "https://registry.npmjs.org/ora/-/ora-8.0.1.tgz", 1646 | "integrity": "sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==", 1647 | "dev": true, 1648 | "requires": { 1649 | "chalk": "^5.3.0", 1650 | "cli-cursor": "^4.0.0", 1651 | "cli-spinners": "^2.9.2", 1652 | "is-interactive": "^2.0.0", 1653 | "is-unicode-supported": "^2.0.0", 1654 | "log-symbols": "^6.0.0", 1655 | "stdin-discarder": "^0.2.1", 1656 | "string-width": "^7.0.0", 1657 | "strip-ansi": "^7.1.0" 1658 | } 1659 | }, 1660 | "p-cancelable": { 1661 | "version": "3.0.0", 1662 | "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz", 1663 | "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==", 1664 | "dev": true 1665 | }, 1666 | "parse-entities": { 1667 | "version": "4.0.1", 1668 | "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.1.tgz", 1669 | "integrity": "sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==", 1670 | "dev": true, 1671 | "requires": { 1672 | "@types/unist": "^2.0.0", 1673 | "character-entities": "^2.0.0", 1674 | "character-entities-legacy": "^3.0.0", 1675 | "character-reference-invalid": "^2.0.0", 1676 | "decode-named-character-reference": "^1.0.0", 1677 | "is-alphanumerical": "^2.0.0", 1678 | "is-decimal": "^2.0.0", 1679 | "is-hexadecimal": "^2.0.0" 1680 | }, 1681 | "dependencies": { 1682 | "@types/unist": { 1683 | "version": "2.0.10", 1684 | "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz", 1685 | "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==", 1686 | "dev": true 1687 | } 1688 | } 1689 | }, 1690 | "parse-github-url": { 1691 | "version": "1.0.3", 1692 | "resolved": "https://registry.npmjs.org/parse-github-url/-/parse-github-url-1.0.3.tgz", 1693 | "integrity": "sha512-tfalY5/4SqGaV/GIGzWyHnFjlpTPTNpENR9Ea2lLldSJ8EWXMsvacWucqY3m3I4YPtas15IxTLQVQ5NSYXPrww==", 1694 | "dev": true 1695 | }, 1696 | "parse-json": { 1697 | "version": "8.1.0", 1698 | "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.1.0.tgz", 1699 | "integrity": "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==", 1700 | "dev": true, 1701 | "requires": { 1702 | "@babel/code-frame": "^7.22.13", 1703 | "index-to-position": "^0.1.2", 1704 | "type-fest": "^4.7.1" 1705 | } 1706 | }, 1707 | "parse-ms": { 1708 | "version": "4.0.0", 1709 | "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-4.0.0.tgz", 1710 | "integrity": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==", 1711 | "dev": true 1712 | }, 1713 | "path-is-absolute": { 1714 | "version": "1.0.1", 1715 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 1716 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 1717 | "dev": true 1718 | }, 1719 | "path-key": { 1720 | "version": "3.1.1", 1721 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 1722 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 1723 | "dev": true 1724 | }, 1725 | "path-type": { 1726 | "version": "5.0.0", 1727 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", 1728 | "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", 1729 | "dev": true 1730 | }, 1731 | "picocolors": { 1732 | "version": "1.0.1", 1733 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", 1734 | "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==", 1735 | "dev": true 1736 | }, 1737 | "picomatch": { 1738 | "version": "2.3.1", 1739 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 1740 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 1741 | "dev": true 1742 | }, 1743 | "plur": { 1744 | "version": "4.0.0", 1745 | "resolved": "https://registry.npmjs.org/plur/-/plur-4.0.0.tgz", 1746 | "integrity": "sha512-4UGewrYgqDFw9vV6zNV+ADmPAUAfJPKtGvb/VdpQAx25X5f3xXdGdyOEVFwkl8Hl/tl7+xbeHqSEM+D5/TirUg==", 1747 | "dev": true, 1748 | "requires": { 1749 | "irregular-plurals": "^3.2.0" 1750 | } 1751 | }, 1752 | "pluralize": { 1753 | "version": "8.0.0", 1754 | "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", 1755 | "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", 1756 | "dev": true 1757 | }, 1758 | "pretty-ms": { 1759 | "version": "9.0.0", 1760 | "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.0.0.tgz", 1761 | "integrity": "sha512-E9e9HJ9R9NasGOgPaPE8VMeiPKAyWR5jcFpNnwIejslIhWqdqOrb2wShBsncMPUb+BcCd2OPYfh7p2W6oemTng==", 1762 | "dev": true, 1763 | "requires": { 1764 | "parse-ms": "^4.0.0" 1765 | } 1766 | }, 1767 | "queue-microtask": { 1768 | "version": "1.2.3", 1769 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 1770 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 1771 | "dev": true 1772 | }, 1773 | "quick-lru": { 1774 | "version": "5.1.1", 1775 | "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", 1776 | "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", 1777 | "dev": true 1778 | }, 1779 | "quotation": { 1780 | "version": "2.0.3", 1781 | "resolved": "https://registry.npmjs.org/quotation/-/quotation-2.0.3.tgz", 1782 | "integrity": "sha512-yEc24TEgCFLXx7D4JHJJkK4JFVtatO8fziwUxY4nB/Jbea9o9CVS3gt22mA0W7rPYAGW2fWzYDSOtD94PwOyqA==", 1783 | "dev": true 1784 | }, 1785 | "read-pkg": { 1786 | "version": "9.0.1", 1787 | "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz", 1788 | "integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==", 1789 | "dev": true, 1790 | "requires": { 1791 | "@types/normalize-package-data": "^2.4.3", 1792 | "normalize-package-data": "^6.0.0", 1793 | "parse-json": "^8.0.0", 1794 | "type-fest": "^4.6.0", 1795 | "unicorn-magic": "^0.1.0" 1796 | } 1797 | }, 1798 | "remark": { 1799 | "version": "15.0.1", 1800 | "resolved": "https://registry.npmjs.org/remark/-/remark-15.0.1.tgz", 1801 | "integrity": "sha512-Eht5w30ruCXgFmxVUSlNWQ9iiimq07URKeFS3hNc8cUWy1llX4KDWfyEDZRycMc+znsN9Ux5/tJ/BFdgdOwA3A==", 1802 | "dev": true, 1803 | "requires": { 1804 | "@types/mdast": "^4.0.0", 1805 | "remark-parse": "^11.0.0", 1806 | "remark-stringify": "^11.0.0", 1807 | "unified": "^11.0.0" 1808 | } 1809 | }, 1810 | "remark-lint": { 1811 | "version": "10.0.0", 1812 | "resolved": "https://registry.npmjs.org/remark-lint/-/remark-lint-10.0.0.tgz", 1813 | "integrity": "sha512-E8yHHDOJ8b+qI0G49BRu24pe8t0fNNBWv8ENQJpCGNrVeTeyBIGEbaUe1yuF7OG8faA6PVpcN/pqWjzW9fcBWQ==", 1814 | "dev": true, 1815 | "requires": { 1816 | "@types/mdast": "^4.0.0", 1817 | "remark-message-control": "^8.0.0", 1818 | "unified": "^11.0.0" 1819 | } 1820 | }, 1821 | "remark-lint-blockquote-indentation": { 1822 | "version": "4.0.0", 1823 | "resolved": "https://registry.npmjs.org/remark-lint-blockquote-indentation/-/remark-lint-blockquote-indentation-4.0.0.tgz", 1824 | "integrity": "sha512-hdUvn+KsJbBKpY9jLY01PmfpJ/WGhLu9GJMXQGU8ADXJc+F5DWSgKAr6GQ1IUKqvGYdEML/KZ61WomWFUuecVA==", 1825 | "dev": true, 1826 | "requires": { 1827 | "@types/mdast": "^4.0.0", 1828 | "mdast-util-phrasing": "^4.0.0", 1829 | "pluralize": "^8.0.0", 1830 | "unified-lint-rule": "^3.0.0", 1831 | "unist-util-position": "^5.0.0", 1832 | "unist-util-visit-parents": "^6.0.0" 1833 | } 1834 | }, 1835 | "remark-lint-checkbox-character-style": { 1836 | "version": "5.0.0", 1837 | "resolved": "https://registry.npmjs.org/remark-lint-checkbox-character-style/-/remark-lint-checkbox-character-style-5.0.0.tgz", 1838 | "integrity": "sha512-K0G/Nok59fb2q5KUxcemBVt+ymnhTkDVLJAatZ4PAh9At8y0DGctHdU27jWsuvO0Fs7Zy62Usk7IJE2VO89p1w==", 1839 | "dev": true, 1840 | "requires": { 1841 | "@types/mdast": "^4.0.0", 1842 | "mdast-util-phrasing": "^4.0.0", 1843 | "unified-lint-rule": "^3.0.0", 1844 | "unist-util-position": "^5.0.0", 1845 | "unist-util-visit-parents": "^6.0.0", 1846 | "vfile-message": "^4.0.0" 1847 | } 1848 | }, 1849 | "remark-lint-checkbox-content-indent": { 1850 | "version": "5.0.0", 1851 | "resolved": "https://registry.npmjs.org/remark-lint-checkbox-content-indent/-/remark-lint-checkbox-content-indent-5.0.0.tgz", 1852 | "integrity": "sha512-7L25a7TEfdogFSh4HDOnB+GTTTEiXJDMlceUPft9bzIjElI8Hm2+a2D8jUQn4ahj+j/3LmdZW4GjAeyfdPuqTA==", 1853 | "dev": true, 1854 | "requires": { 1855 | "@types/mdast": "^4.0.0", 1856 | "mdast-util-phrasing": "^4.0.0", 1857 | "pluralize": "^8.0.0", 1858 | "unified-lint-rule": "^3.0.0", 1859 | "unist-util-position": "^5.0.0", 1860 | "unist-util-visit-parents": "^6.0.0" 1861 | } 1862 | }, 1863 | "remark-lint-code-block-style": { 1864 | "version": "4.0.0", 1865 | "resolved": "https://registry.npmjs.org/remark-lint-code-block-style/-/remark-lint-code-block-style-4.0.0.tgz", 1866 | "integrity": "sha512-LKBKMVruEO0tzDnnnqi1TfUcnwY6Mo7cVtZM4E4pKt3KMhtvgU2wD68/MxDOEJd0pmnLrEgIadv74bY0gWhZpg==", 1867 | "dev": true, 1868 | "requires": { 1869 | "@types/mdast": "^4.0.0", 1870 | "mdast-util-phrasing": "^4.0.0", 1871 | "unified-lint-rule": "^3.0.0", 1872 | "unist-util-position": "^5.0.0", 1873 | "unist-util-visit-parents": "^6.0.0", 1874 | "vfile-message": "^4.0.0" 1875 | } 1876 | }, 1877 | "remark-lint-definition-case": { 1878 | "version": "4.0.0", 1879 | "resolved": "https://registry.npmjs.org/remark-lint-definition-case/-/remark-lint-definition-case-4.0.0.tgz", 1880 | "integrity": "sha512-XBmMmj8ii0KZUuJf7ZaVXDGp2+DWE02re9qn/6mV23rBpsDmpz7U1lQWRlwFQIE5q5bxIxP5pX7hDeTH0Egy9Q==", 1881 | "dev": true, 1882 | "requires": { 1883 | "@types/mdast": "^4.0.0", 1884 | "mdast-util-phrasing": "^4.0.0", 1885 | "unified-lint-rule": "^3.0.0", 1886 | "unist-util-visit-parents": "^6.0.0" 1887 | } 1888 | }, 1889 | "remark-lint-definition-spacing": { 1890 | "version": "4.0.0", 1891 | "resolved": "https://registry.npmjs.org/remark-lint-definition-spacing/-/remark-lint-definition-spacing-4.0.0.tgz", 1892 | "integrity": "sha512-t6nP8unz6z/DLBTWeOmDFHPFbX3E2PbNgt2fTazRbVnMC6z3o25hBzg5hI6DL0MPt2ZTRX++rJsGRjb+vgh/tQ==", 1893 | "dev": true, 1894 | "requires": { 1895 | "@types/mdast": "^4.0.0", 1896 | "longest-streak": "^3.0.0", 1897 | "mdast-util-phrasing": "^4.0.0", 1898 | "pluralize": "^8.0.0", 1899 | "unified-lint-rule": "^3.0.0", 1900 | "unist-util-visit-parents": "^6.0.0" 1901 | } 1902 | }, 1903 | "remark-lint-double-link": { 1904 | "version": "0.2.0", 1905 | "resolved": "https://registry.npmjs.org/remark-lint-double-link/-/remark-lint-double-link-0.2.0.tgz", 1906 | "integrity": "sha512-ljThEYMl7tPwvBFOYwLx3fP4jtdvvyfg1QSs6wQ2bZMdnejPMr9JpCLgAvlslJbmtIE1aU53Yq4iZ7ik1s7m6g==", 1907 | "dev": true, 1908 | "requires": { 1909 | "@types/unist": "^2.0.6", 1910 | "normalize-url": "^5.1.0", 1911 | "unified-lint-rule": "^2.1.1", 1912 | "unist-util-visit": "^4.1.2" 1913 | }, 1914 | "dependencies": { 1915 | "@types/unist": { 1916 | "version": "2.0.10", 1917 | "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz", 1918 | "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==", 1919 | "dev": true 1920 | }, 1921 | "normalize-url": { 1922 | "version": "5.3.1", 1923 | "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-5.3.1.tgz", 1924 | "integrity": "sha512-K1c7+vaAP+Yh5bOGmA10PGPpp+6h7WZrl7GwqKhUflBc9flU9pzG27DDeB9+iuhZkE3BJZOcgN1P/2sS5pqrWw==", 1925 | "dev": true 1926 | }, 1927 | "unified": { 1928 | "version": "10.1.2", 1929 | "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", 1930 | "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", 1931 | "dev": true, 1932 | "requires": { 1933 | "@types/unist": "^2.0.0", 1934 | "bail": "^2.0.0", 1935 | "extend": "^3.0.0", 1936 | "is-buffer": "^2.0.0", 1937 | "is-plain-obj": "^4.0.0", 1938 | "trough": "^2.0.0", 1939 | "vfile": "^5.0.0" 1940 | } 1941 | }, 1942 | "unified-lint-rule": { 1943 | "version": "2.1.2", 1944 | "resolved": "https://registry.npmjs.org/unified-lint-rule/-/unified-lint-rule-2.1.2.tgz", 1945 | "integrity": "sha512-JWudPtRN7TLFHVLEVZ+Rm8FUb6kCAtHxEXFgBGDxRSdNMnGyTU5zyYvduHSF/liExlFB3vdFvsAHnNVE/UjAwA==", 1946 | "dev": true, 1947 | "requires": { 1948 | "@types/unist": "^2.0.0", 1949 | "trough": "^2.0.0", 1950 | "unified": "^10.0.0", 1951 | "vfile": "^5.0.0" 1952 | } 1953 | }, 1954 | "unist-util-is": { 1955 | "version": "5.2.1", 1956 | "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", 1957 | "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", 1958 | "dev": true, 1959 | "requires": { 1960 | "@types/unist": "^2.0.0" 1961 | } 1962 | }, 1963 | "unist-util-stringify-position": { 1964 | "version": "3.0.3", 1965 | "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", 1966 | "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", 1967 | "dev": true, 1968 | "requires": { 1969 | "@types/unist": "^2.0.0" 1970 | } 1971 | }, 1972 | "unist-util-visit": { 1973 | "version": "4.1.2", 1974 | "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", 1975 | "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", 1976 | "dev": true, 1977 | "requires": { 1978 | "@types/unist": "^2.0.0", 1979 | "unist-util-is": "^5.0.0", 1980 | "unist-util-visit-parents": "^5.1.1" 1981 | } 1982 | }, 1983 | "unist-util-visit-parents": { 1984 | "version": "5.1.3", 1985 | "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", 1986 | "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", 1987 | "dev": true, 1988 | "requires": { 1989 | "@types/unist": "^2.0.0", 1990 | "unist-util-is": "^5.0.0" 1991 | } 1992 | }, 1993 | "vfile": { 1994 | "version": "5.3.7", 1995 | "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", 1996 | "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", 1997 | "dev": true, 1998 | "requires": { 1999 | "@types/unist": "^2.0.0", 2000 | "is-buffer": "^2.0.0", 2001 | "unist-util-stringify-position": "^3.0.0", 2002 | "vfile-message": "^3.0.0" 2003 | } 2004 | }, 2005 | "vfile-message": { 2006 | "version": "3.1.4", 2007 | "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", 2008 | "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", 2009 | "dev": true, 2010 | "requires": { 2011 | "@types/unist": "^2.0.0", 2012 | "unist-util-stringify-position": "^3.0.0" 2013 | } 2014 | } 2015 | } 2016 | }, 2017 | "remark-lint-emphasis-marker": { 2018 | "version": "4.0.0", 2019 | "resolved": "https://registry.npmjs.org/remark-lint-emphasis-marker/-/remark-lint-emphasis-marker-4.0.0.tgz", 2020 | "integrity": "sha512-xIRiB4PFWUOyIslN/UOPL6Lh+J0VD4R11+jo+W4hpGMNsg58l+2SgtdbinlXzDeoBxmaaka9n/sYpJ7cJWEIPQ==", 2021 | "dev": true, 2022 | "requires": { 2023 | "@types/mdast": "^4.0.0", 2024 | "unified-lint-rule": "^3.0.0", 2025 | "unist-util-position": "^5.0.0", 2026 | "unist-util-visit-parents": "^6.0.0", 2027 | "vfile-message": "^4.0.0" 2028 | } 2029 | }, 2030 | "remark-lint-fenced-code-marker": { 2031 | "version": "4.0.0", 2032 | "resolved": "https://registry.npmjs.org/remark-lint-fenced-code-marker/-/remark-lint-fenced-code-marker-4.0.0.tgz", 2033 | "integrity": "sha512-WFN88Rx78m4/HSbW3Kx2XAYbVfzYns4bJd9qpwDD90DA3nc59zciYd01xi6Bk3n9vSs5gIlmG7xkwxVHHJ8KCA==", 2034 | "dev": true, 2035 | "requires": { 2036 | "@types/mdast": "^4.0.0", 2037 | "mdast-util-phrasing": "^4.0.0", 2038 | "unified-lint-rule": "^3.0.0", 2039 | "unist-util-position": "^5.0.0", 2040 | "unist-util-visit-parents": "^6.0.0", 2041 | "vfile-message": "^4.0.0" 2042 | } 2043 | }, 2044 | "remark-lint-file-extension": { 2045 | "version": "3.0.0", 2046 | "resolved": "https://registry.npmjs.org/remark-lint-file-extension/-/remark-lint-file-extension-3.0.0.tgz", 2047 | "integrity": "sha512-wrOKiGvcl/ftB7FkeX2/l13ALvhKXV77HGR8AXo86cVY2pD+K0WdOC52DV3ldgpUXpWzE9kcgF8bbkxwzKpFFg==", 2048 | "dev": true, 2049 | "requires": { 2050 | "@types/mdast": "^4.0.0", 2051 | "quotation": "^2.0.0", 2052 | "unified-lint-rule": "^3.0.0" 2053 | } 2054 | }, 2055 | "remark-lint-final-newline": { 2056 | "version": "3.0.0", 2057 | "resolved": "https://registry.npmjs.org/remark-lint-final-newline/-/remark-lint-final-newline-3.0.0.tgz", 2058 | "integrity": "sha512-NaPyn6FiOn3IV/6gIcwWfJmgraPT2IaVLjhakfPglZkKVfn/FrOfETyY8Bp+HLoSRI9967OH0yRDnK7/pPIWeQ==", 2059 | "dev": true, 2060 | "requires": { 2061 | "@types/mdast": "^4.0.0", 2062 | "devlop": "^1.0.0", 2063 | "unified-lint-rule": "^3.0.0", 2064 | "vfile-location": "^5.0.0" 2065 | } 2066 | }, 2067 | "remark-lint-hard-break-spaces": { 2068 | "version": "4.0.0", 2069 | "resolved": "https://registry.npmjs.org/remark-lint-hard-break-spaces/-/remark-lint-hard-break-spaces-4.0.0.tgz", 2070 | "integrity": "sha512-zCTq7/xfM0ZL3bMopXse9DH2nk38wE1LrxmYwnTrqASBLnEAJWE2U2//tRGVMEBfSAnNvmIo96twz6zkLWjbGA==", 2071 | "dev": true, 2072 | "requires": { 2073 | "@types/mdast": "^4.0.0", 2074 | "unified-lint-rule": "^3.0.0", 2075 | "unist-util-position": "^5.0.0", 2076 | "unist-util-visit": "^5.0.0" 2077 | } 2078 | }, 2079 | "remark-lint-heading-style": { 2080 | "version": "4.0.0", 2081 | "resolved": "https://registry.npmjs.org/remark-lint-heading-style/-/remark-lint-heading-style-4.0.0.tgz", 2082 | "integrity": "sha512-dQ6Jul5K0+aNUvrq4W7H0+osSoC9hsmwHZqBFq000+eMP/hWJqI8tuudw1rap8HHYuOsKLRbB5q+Fr7G+3Vw+Q==", 2083 | "dev": true, 2084 | "requires": { 2085 | "@types/mdast": "^4.0.0", 2086 | "mdast-util-heading-style": "^3.0.0", 2087 | "mdast-util-phrasing": "^4.0.0", 2088 | "unified-lint-rule": "^3.0.0", 2089 | "unist-util-position": "^5.0.0", 2090 | "unist-util-visit-parents": "^6.0.0", 2091 | "vfile-message": "^4.0.0" 2092 | } 2093 | }, 2094 | "remark-lint-link-title-style": { 2095 | "version": "4.0.0", 2096 | "resolved": "https://registry.npmjs.org/remark-lint-link-title-style/-/remark-lint-link-title-style-4.0.0.tgz", 2097 | "integrity": "sha512-cihTO5dkhjMj/evYIDAvRdQHD82OQeF4fNAq8FLb81HmFKo77VlSF6CK55H1bvlZogfJG58uN/5d1tSsOdcEbg==", 2098 | "dev": true, 2099 | "requires": { 2100 | "@types/mdast": "^4.0.0", 2101 | "unified-lint-rule": "^3.0.0", 2102 | "unist-util-position": "^5.0.0", 2103 | "unist-util-visit-parents": "^6.0.0", 2104 | "vfile-message": "^4.0.0" 2105 | } 2106 | }, 2107 | "remark-lint-list-item-bullet-indent": { 2108 | "version": "5.0.0", 2109 | "resolved": "https://registry.npmjs.org/remark-lint-list-item-bullet-indent/-/remark-lint-list-item-bullet-indent-5.0.0.tgz", 2110 | "integrity": "sha512-qq22QaxsDjfsL7aWGIPmP3P0N99CJBQQW1+iSrhYAMCDzqVlw6I3wPNAeR6s8mcoeHT8YlT6eQH3V8xJ0SlW6w==", 2111 | "dev": true, 2112 | "requires": { 2113 | "@types/mdast": "^4.0.0", 2114 | "pluralize": "^8.0.0", 2115 | "unified-lint-rule": "^3.0.0", 2116 | "unist-util-position": "^5.0.0" 2117 | } 2118 | }, 2119 | "remark-lint-list-item-content-indent": { 2120 | "version": "4.0.0", 2121 | "resolved": "https://registry.npmjs.org/remark-lint-list-item-content-indent/-/remark-lint-list-item-content-indent-4.0.0.tgz", 2122 | "integrity": "sha512-L4GZgWQQ54qWKbnDle3dbEOtnq+qdmZJ70lpM3yMFEMHs4xejqPKsIoiYeUtIV0rYHHCWS7IlLzcgYUK9vENQw==", 2123 | "dev": true, 2124 | "requires": { 2125 | "@types/mdast": "^4.0.0", 2126 | "mdast-util-phrasing": "^4.0.0", 2127 | "pluralize": "^8.0.0", 2128 | "unified-lint-rule": "^3.0.0", 2129 | "unist-util-position": "^5.0.0", 2130 | "unist-util-visit-parents": "^6.0.0", 2131 | "vfile-message": "^4.0.0" 2132 | } 2133 | }, 2134 | "remark-lint-list-item-indent": { 2135 | "version": "4.0.0", 2136 | "resolved": "https://registry.npmjs.org/remark-lint-list-item-indent/-/remark-lint-list-item-indent-4.0.0.tgz", 2137 | "integrity": "sha512-Yd6/g8CH9e4vlPAPNgl7F575uKhP+pTo/qwGkE61GOcgEVNJ/529hjumUhyQ4sOAX0YAPAjxvq6fJvb4AhVOOA==", 2138 | "dev": true, 2139 | "requires": { 2140 | "@types/mdast": "^4.0.0", 2141 | "mdast-util-phrasing": "^4.0.0", 2142 | "pluralize": "^8.0.0", 2143 | "unified-lint-rule": "^3.0.0", 2144 | "unist-util-position": "^5.0.0", 2145 | "unist-util-visit-parents": "^6.0.0" 2146 | } 2147 | }, 2148 | "remark-lint-match-punctuation": { 2149 | "version": "0.2.1", 2150 | "resolved": "https://registry.npmjs.org/remark-lint-match-punctuation/-/remark-lint-match-punctuation-0.2.1.tgz", 2151 | "integrity": "sha512-XgarnmpBHMsCNRnhTNLf/8dDe5/gXdA/mQnBDPG/XZFNMebS6GFnWQpuL3cyzLmuWD62I1A5ouZczRZcrWYrTQ==", 2152 | "dev": true, 2153 | "requires": { 2154 | "unified-lint-rule": "^1.0.3", 2155 | "unist-util-to-list-of-char": "^0.1.3" 2156 | }, 2157 | "dependencies": { 2158 | "unified-lint-rule": { 2159 | "version": "1.0.6", 2160 | "resolved": "https://registry.npmjs.org/unified-lint-rule/-/unified-lint-rule-1.0.6.tgz", 2161 | "integrity": "sha512-YPK15YBFwnsVorDFG/u0cVVQN5G2a3V8zv5/N6KN3TCG+ajKtaALcy7u14DCSrJI+gZeyYquFL9cioJXOGXSvg==", 2162 | "dev": true, 2163 | "requires": { 2164 | "wrapped": "^1.0.1" 2165 | } 2166 | } 2167 | } 2168 | }, 2169 | "remark-lint-no-auto-link-without-protocol": { 2170 | "version": "3.1.2", 2171 | "resolved": "https://registry.npmjs.org/remark-lint-no-auto-link-without-protocol/-/remark-lint-no-auto-link-without-protocol-3.1.2.tgz", 2172 | "integrity": "sha512-mPIdFOGxdDhCMa2qIzjzjDzDoQeyK+/1BBgsseqThuBtoAoXR5l1TZfII2isNbBo6L8d+fMFdx1/3qALoDjtcA==", 2173 | "dev": true, 2174 | "requires": { 2175 | "@types/mdast": "^3.0.0", 2176 | "mdast-util-to-string": "^3.0.0", 2177 | "unified": "^10.0.0", 2178 | "unified-lint-rule": "^2.0.0", 2179 | "unist-util-generated": "^2.0.0", 2180 | "unist-util-position": "^4.0.0", 2181 | "unist-util-visit": "^4.0.0" 2182 | }, 2183 | "dependencies": { 2184 | "@types/mdast": { 2185 | "version": "3.0.15", 2186 | "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.15.tgz", 2187 | "integrity": "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==", 2188 | "dev": true, 2189 | "requires": { 2190 | "@types/unist": "^2" 2191 | } 2192 | }, 2193 | "@types/unist": { 2194 | "version": "2.0.10", 2195 | "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz", 2196 | "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==", 2197 | "dev": true 2198 | }, 2199 | "mdast-util-to-string": { 2200 | "version": "3.2.0", 2201 | "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", 2202 | "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", 2203 | "dev": true, 2204 | "requires": { 2205 | "@types/mdast": "^3.0.0" 2206 | } 2207 | }, 2208 | "unified": { 2209 | "version": "10.1.2", 2210 | "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", 2211 | "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", 2212 | "dev": true, 2213 | "requires": { 2214 | "@types/unist": "^2.0.0", 2215 | "bail": "^2.0.0", 2216 | "extend": "^3.0.0", 2217 | "is-buffer": "^2.0.0", 2218 | "is-plain-obj": "^4.0.0", 2219 | "trough": "^2.0.0", 2220 | "vfile": "^5.0.0" 2221 | } 2222 | }, 2223 | "unified-lint-rule": { 2224 | "version": "2.1.2", 2225 | "resolved": "https://registry.npmjs.org/unified-lint-rule/-/unified-lint-rule-2.1.2.tgz", 2226 | "integrity": "sha512-JWudPtRN7TLFHVLEVZ+Rm8FUb6kCAtHxEXFgBGDxRSdNMnGyTU5zyYvduHSF/liExlFB3vdFvsAHnNVE/UjAwA==", 2227 | "dev": true, 2228 | "requires": { 2229 | "@types/unist": "^2.0.0", 2230 | "trough": "^2.0.0", 2231 | "unified": "^10.0.0", 2232 | "vfile": "^5.0.0" 2233 | } 2234 | }, 2235 | "unist-util-generated": { 2236 | "version": "2.0.1", 2237 | "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.1.tgz", 2238 | "integrity": "sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==", 2239 | "dev": true 2240 | }, 2241 | "unist-util-is": { 2242 | "version": "5.2.1", 2243 | "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", 2244 | "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", 2245 | "dev": true, 2246 | "requires": { 2247 | "@types/unist": "^2.0.0" 2248 | } 2249 | }, 2250 | "unist-util-position": { 2251 | "version": "4.0.4", 2252 | "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-4.0.4.tgz", 2253 | "integrity": "sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==", 2254 | "dev": true, 2255 | "requires": { 2256 | "@types/unist": "^2.0.0" 2257 | } 2258 | }, 2259 | "unist-util-stringify-position": { 2260 | "version": "3.0.3", 2261 | "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", 2262 | "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", 2263 | "dev": true, 2264 | "requires": { 2265 | "@types/unist": "^2.0.0" 2266 | } 2267 | }, 2268 | "unist-util-visit": { 2269 | "version": "4.1.2", 2270 | "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", 2271 | "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", 2272 | "dev": true, 2273 | "requires": { 2274 | "@types/unist": "^2.0.0", 2275 | "unist-util-is": "^5.0.0", 2276 | "unist-util-visit-parents": "^5.1.1" 2277 | } 2278 | }, 2279 | "unist-util-visit-parents": { 2280 | "version": "5.1.3", 2281 | "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", 2282 | "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", 2283 | "dev": true, 2284 | "requires": { 2285 | "@types/unist": "^2.0.0", 2286 | "unist-util-is": "^5.0.0" 2287 | } 2288 | }, 2289 | "vfile": { 2290 | "version": "5.3.7", 2291 | "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", 2292 | "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", 2293 | "dev": true, 2294 | "requires": { 2295 | "@types/unist": "^2.0.0", 2296 | "is-buffer": "^2.0.0", 2297 | "unist-util-stringify-position": "^3.0.0", 2298 | "vfile-message": "^3.0.0" 2299 | } 2300 | }, 2301 | "vfile-message": { 2302 | "version": "3.1.4", 2303 | "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", 2304 | "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", 2305 | "dev": true, 2306 | "requires": { 2307 | "@types/unist": "^2.0.0", 2308 | "unist-util-stringify-position": "^3.0.0" 2309 | } 2310 | } 2311 | } 2312 | }, 2313 | "remark-lint-no-blockquote-without-marker": { 2314 | "version": "6.0.0", 2315 | "resolved": "https://registry.npmjs.org/remark-lint-no-blockquote-without-marker/-/remark-lint-no-blockquote-without-marker-6.0.0.tgz", 2316 | "integrity": "sha512-fBhoTpkWcl5tG4FdwPdJIyb8XLrdr6MdLk1+K2BQ6Rom3rRsIYvuox4ohxOunNrXuth8xyw8kC6wDmODR44oFw==", 2317 | "dev": true, 2318 | "requires": { 2319 | "@types/mdast": "^4.0.0", 2320 | "devlop": "^1.0.0", 2321 | "mdast-util-directive": "^3.0.0", 2322 | "mdast-util-phrasing": "^4.0.0", 2323 | "pluralize": "^8.0.0", 2324 | "unified-lint-rule": "^3.0.0", 2325 | "unist-util-position": "^5.0.0", 2326 | "unist-util-visit-parents": "^6.0.0", 2327 | "vfile-location": "^5.0.0" 2328 | } 2329 | }, 2330 | "remark-lint-no-emphasis-as-heading": { 2331 | "version": "4.0.0", 2332 | "resolved": "https://registry.npmjs.org/remark-lint-no-emphasis-as-heading/-/remark-lint-no-emphasis-as-heading-4.0.0.tgz", 2333 | "integrity": "sha512-JViGYbuO/xzZThK+qVTNjtLM0v1xMTWFTWt2OJzAkDaGS6T9ZB5ZtRVSBFEMG0SF3dvpJwxe+3ABTsuPBdlYsA==", 2334 | "dev": true, 2335 | "requires": { 2336 | "@types/mdast": "^4.0.0", 2337 | "mdast-util-phrasing": "^4.0.0", 2338 | "unified-lint-rule": "^3.0.0", 2339 | "unist-util-visit-parents": "^6.0.0" 2340 | } 2341 | }, 2342 | "remark-lint-no-empty-sections": { 2343 | "version": "4.0.0", 2344 | "resolved": "https://registry.npmjs.org/remark-lint-no-empty-sections/-/remark-lint-no-empty-sections-4.0.0.tgz", 2345 | "integrity": "sha512-Tx1nCu7Dq3dsJ500402sSvM0uVK/6khSuEjx8K8u9aHN+Y4vjL6h88xVzdzCmZq2J2yqyFnvMjG1y7lQv+DRvg==", 2346 | "dev": true, 2347 | "requires": { 2348 | "mdast-util-to-string": "^1.0.2", 2349 | "unified-lint-rule": "^1.0.0", 2350 | "unist-util-visit": "^1.0.0" 2351 | }, 2352 | "dependencies": { 2353 | "mdast-util-to-string": { 2354 | "version": "1.1.0", 2355 | "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", 2356 | "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", 2357 | "dev": true 2358 | }, 2359 | "unified-lint-rule": { 2360 | "version": "1.0.6", 2361 | "resolved": "https://registry.npmjs.org/unified-lint-rule/-/unified-lint-rule-1.0.6.tgz", 2362 | "integrity": "sha512-YPK15YBFwnsVorDFG/u0cVVQN5G2a3V8zv5/N6KN3TCG+ajKtaALcy7u14DCSrJI+gZeyYquFL9cioJXOGXSvg==", 2363 | "dev": true, 2364 | "requires": { 2365 | "wrapped": "^1.0.1" 2366 | } 2367 | }, 2368 | "unist-util-is": { 2369 | "version": "3.0.0", 2370 | "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-3.0.0.tgz", 2371 | "integrity": "sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==", 2372 | "dev": true 2373 | }, 2374 | "unist-util-visit": { 2375 | "version": "1.4.1", 2376 | "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.4.1.tgz", 2377 | "integrity": "sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==", 2378 | "dev": true, 2379 | "requires": { 2380 | "unist-util-visit-parents": "^2.0.0" 2381 | } 2382 | }, 2383 | "unist-util-visit-parents": { 2384 | "version": "2.1.2", 2385 | "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-2.1.2.tgz", 2386 | "integrity": "sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==", 2387 | "dev": true, 2388 | "requires": { 2389 | "unist-util-is": "^3.0.0" 2390 | } 2391 | } 2392 | } 2393 | }, 2394 | "remark-lint-no-file-name-articles": { 2395 | "version": "3.0.0", 2396 | "resolved": "https://registry.npmjs.org/remark-lint-no-file-name-articles/-/remark-lint-no-file-name-articles-3.0.0.tgz", 2397 | "integrity": "sha512-il4IseupahbV2TVfFjfDVL/EQw7jBWVlMVsv4K2cgl5uPIjiCjFGQypqKnWl6pZDN0oNOs/DE8gBdyuDjldJaA==", 2398 | "dev": true, 2399 | "requires": { 2400 | "@types/mdast": "^4.0.0", 2401 | "unified-lint-rule": "^3.0.0" 2402 | } 2403 | }, 2404 | "remark-lint-no-file-name-consecutive-dashes": { 2405 | "version": "3.0.0", 2406 | "resolved": "https://registry.npmjs.org/remark-lint-no-file-name-consecutive-dashes/-/remark-lint-no-file-name-consecutive-dashes-3.0.0.tgz", 2407 | "integrity": "sha512-3vSI1LOQlu8NSCpWLsKELa8dS9HU+YVZE0U43/DNkdEcnZmlJLpTHQjBTMZUHQipRgoOO+TOSyXFyN/H+2lbuQ==", 2408 | "dev": true, 2409 | "requires": { 2410 | "@types/mdast": "^4.0.0", 2411 | "unified-lint-rule": "^3.0.0" 2412 | } 2413 | }, 2414 | "remark-lint-no-file-name-irregular-characters": { 2415 | "version": "3.0.0", 2416 | "resolved": "https://registry.npmjs.org/remark-lint-no-file-name-irregular-characters/-/remark-lint-no-file-name-irregular-characters-3.0.0.tgz", 2417 | "integrity": "sha512-DhGreliHNU7lLTARQujsaLAn8fUPY0V+H0LSmOUuowBZPtIRWeNdQhunSp96RvsuYdqAdERXe0WuH58i3pRqrg==", 2418 | "dev": true, 2419 | "requires": { 2420 | "@types/mdast": "^4.0.0", 2421 | "unified-lint-rule": "^3.0.0" 2422 | } 2423 | }, 2424 | "remark-lint-no-file-name-mixed-case": { 2425 | "version": "3.0.0", 2426 | "resolved": "https://registry.npmjs.org/remark-lint-no-file-name-mixed-case/-/remark-lint-no-file-name-mixed-case-3.0.0.tgz", 2427 | "integrity": "sha512-MXXNHdGB6P46itkf8gRP0kxQL85KfAj9YOOBqNtGsgI/8J5rsyM/rz1Ac20Xe+5C5oGi71+7EO/TExKu/+7dfw==", 2428 | "dev": true, 2429 | "requires": { 2430 | "@types/mdast": "^4.0.0", 2431 | "unified-lint-rule": "^3.0.0" 2432 | } 2433 | }, 2434 | "remark-lint-no-file-name-outer-dashes": { 2435 | "version": "3.0.0", 2436 | "resolved": "https://registry.npmjs.org/remark-lint-no-file-name-outer-dashes/-/remark-lint-no-file-name-outer-dashes-3.0.0.tgz", 2437 | "integrity": "sha512-3kgamCp39mdlCtqF/+JLwwS4VpSj5wvVwRythUfrpW7993I9kF67dBsaU545aEzWSK+UJZqjb40i0m2VfnBRfQ==", 2438 | "dev": true, 2439 | "requires": { 2440 | "@types/mdast": "^4.0.0", 2441 | "unified-lint-rule": "^3.0.0" 2442 | } 2443 | }, 2444 | "remark-lint-no-heading-content-indent": { 2445 | "version": "5.0.0", 2446 | "resolved": "https://registry.npmjs.org/remark-lint-no-heading-content-indent/-/remark-lint-no-heading-content-indent-5.0.0.tgz", 2447 | "integrity": "sha512-psYSlD2BjcVkgpeXOLwPcYFBrbtJWp8E8JX1J4vSfoHPeY6aIxgYxXkf57cjGTApfRL8xawBmMDiF1FgQvpZYg==", 2448 | "dev": true, 2449 | "requires": { 2450 | "@types/mdast": "^4.0.0", 2451 | "mdast-util-phrasing": "^4.0.0", 2452 | "pluralize": "^8.0.0", 2453 | "unified-lint-rule": "^3.0.0", 2454 | "unist-util-position": "^5.0.0", 2455 | "unist-util-visit-parents": "^6.0.0" 2456 | } 2457 | }, 2458 | "remark-lint-no-heading-indent": { 2459 | "version": "5.0.0", 2460 | "resolved": "https://registry.npmjs.org/remark-lint-no-heading-indent/-/remark-lint-no-heading-indent-5.0.0.tgz", 2461 | "integrity": "sha512-JWGIWhaEzH00HywI0DHex92tJ5Mw7l11shQ6/MGhRjYsHMRWcwWcVeOuktVMe/BiQbg0hRoE4+g0z2VgUD6Cqw==", 2462 | "dev": true, 2463 | "requires": { 2464 | "@types/mdast": "^4.0.0", 2465 | "mdast-util-phrasing": "^4.0.0", 2466 | "pluralize": "^8.0.0", 2467 | "unified-lint-rule": "^3.0.0", 2468 | "unist-util-position": "^5.0.0", 2469 | "unist-util-visit-parents": "^6.0.0" 2470 | } 2471 | }, 2472 | "remark-lint-no-heading-punctuation": { 2473 | "version": "4.0.0", 2474 | "resolved": "https://registry.npmjs.org/remark-lint-no-heading-punctuation/-/remark-lint-no-heading-punctuation-4.0.0.tgz", 2475 | "integrity": "sha512-7V23C3Q4yX9zEOLZdbv6o8wVxxeWB/F+h9by55zPyk2AwbqF2t2xevnAmN3XFmKZABDTqLwjQxtK6bCVv/S1PQ==", 2476 | "dev": true, 2477 | "requires": { 2478 | "@types/mdast": "^4.0.0", 2479 | "mdast-util-mdx": "^3.0.0", 2480 | "mdast-util-to-string": "^4.0.0", 2481 | "unified-lint-rule": "^3.0.0", 2482 | "unist-util-visit-parents": "^6.0.0" 2483 | } 2484 | }, 2485 | "remark-lint-no-inline-padding": { 2486 | "version": "4.1.2", 2487 | "resolved": "https://registry.npmjs.org/remark-lint-no-inline-padding/-/remark-lint-no-inline-padding-4.1.2.tgz", 2488 | "integrity": "sha512-dGyhWsiqCZS3Slob0EVBUfsFBbdpMIBCvb56LlCgaHbnLsnNYx8PpF/wA5CgsN8BXIbXfRpyPB5cIJwIq5taYg==", 2489 | "dev": true, 2490 | "requires": { 2491 | "@types/mdast": "^3.0.0", 2492 | "mdast-util-to-string": "^3.0.0", 2493 | "unified": "^10.0.0", 2494 | "unified-lint-rule": "^2.0.0", 2495 | "unist-util-generated": "^2.0.0", 2496 | "unist-util-visit": "^4.0.0" 2497 | }, 2498 | "dependencies": { 2499 | "@types/mdast": { 2500 | "version": "3.0.15", 2501 | "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.15.tgz", 2502 | "integrity": "sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==", 2503 | "dev": true, 2504 | "requires": { 2505 | "@types/unist": "^2" 2506 | } 2507 | }, 2508 | "@types/unist": { 2509 | "version": "2.0.10", 2510 | "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz", 2511 | "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==", 2512 | "dev": true 2513 | }, 2514 | "mdast-util-to-string": { 2515 | "version": "3.2.0", 2516 | "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz", 2517 | "integrity": "sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==", 2518 | "dev": true, 2519 | "requires": { 2520 | "@types/mdast": "^3.0.0" 2521 | } 2522 | }, 2523 | "unified": { 2524 | "version": "10.1.2", 2525 | "resolved": "https://registry.npmjs.org/unified/-/unified-10.1.2.tgz", 2526 | "integrity": "sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==", 2527 | "dev": true, 2528 | "requires": { 2529 | "@types/unist": "^2.0.0", 2530 | "bail": "^2.0.0", 2531 | "extend": "^3.0.0", 2532 | "is-buffer": "^2.0.0", 2533 | "is-plain-obj": "^4.0.0", 2534 | "trough": "^2.0.0", 2535 | "vfile": "^5.0.0" 2536 | } 2537 | }, 2538 | "unified-lint-rule": { 2539 | "version": "2.1.2", 2540 | "resolved": "https://registry.npmjs.org/unified-lint-rule/-/unified-lint-rule-2.1.2.tgz", 2541 | "integrity": "sha512-JWudPtRN7TLFHVLEVZ+Rm8FUb6kCAtHxEXFgBGDxRSdNMnGyTU5zyYvduHSF/liExlFB3vdFvsAHnNVE/UjAwA==", 2542 | "dev": true, 2543 | "requires": { 2544 | "@types/unist": "^2.0.0", 2545 | "trough": "^2.0.0", 2546 | "unified": "^10.0.0", 2547 | "vfile": "^5.0.0" 2548 | } 2549 | }, 2550 | "unist-util-generated": { 2551 | "version": "2.0.1", 2552 | "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-2.0.1.tgz", 2553 | "integrity": "sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==", 2554 | "dev": true 2555 | }, 2556 | "unist-util-is": { 2557 | "version": "5.2.1", 2558 | "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz", 2559 | "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==", 2560 | "dev": true, 2561 | "requires": { 2562 | "@types/unist": "^2.0.0" 2563 | } 2564 | }, 2565 | "unist-util-stringify-position": { 2566 | "version": "3.0.3", 2567 | "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz", 2568 | "integrity": "sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==", 2569 | "dev": true, 2570 | "requires": { 2571 | "@types/unist": "^2.0.0" 2572 | } 2573 | }, 2574 | "unist-util-visit": { 2575 | "version": "4.1.2", 2576 | "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-4.1.2.tgz", 2577 | "integrity": "sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==", 2578 | "dev": true, 2579 | "requires": { 2580 | "@types/unist": "^2.0.0", 2581 | "unist-util-is": "^5.0.0", 2582 | "unist-util-visit-parents": "^5.1.1" 2583 | } 2584 | }, 2585 | "unist-util-visit-parents": { 2586 | "version": "5.1.3", 2587 | "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz", 2588 | "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==", 2589 | "dev": true, 2590 | "requires": { 2591 | "@types/unist": "^2.0.0", 2592 | "unist-util-is": "^5.0.0" 2593 | } 2594 | }, 2595 | "vfile": { 2596 | "version": "5.3.7", 2597 | "resolved": "https://registry.npmjs.org/vfile/-/vfile-5.3.7.tgz", 2598 | "integrity": "sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==", 2599 | "dev": true, 2600 | "requires": { 2601 | "@types/unist": "^2.0.0", 2602 | "is-buffer": "^2.0.0", 2603 | "unist-util-stringify-position": "^3.0.0", 2604 | "vfile-message": "^3.0.0" 2605 | } 2606 | }, 2607 | "vfile-message": { 2608 | "version": "3.1.4", 2609 | "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-3.1.4.tgz", 2610 | "integrity": "sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==", 2611 | "dev": true, 2612 | "requires": { 2613 | "@types/unist": "^2.0.0", 2614 | "unist-util-stringify-position": "^3.0.0" 2615 | } 2616 | } 2617 | } 2618 | }, 2619 | "remark-lint-no-multiple-toplevel-headings": { 2620 | "version": "4.0.0", 2621 | "resolved": "https://registry.npmjs.org/remark-lint-no-multiple-toplevel-headings/-/remark-lint-no-multiple-toplevel-headings-4.0.0.tgz", 2622 | "integrity": "sha512-JW11iYxza7asDdhQuKfr8SH1u4NBOCQ4U7Ru0HrKCPcT4y/AB1C1il5uMQzbcervgYPBq69xzyQ24+AJeL0t3A==", 2623 | "dev": true, 2624 | "requires": { 2625 | "@types/mdast": "^4.0.0", 2626 | "devlop": "^1.0.0", 2627 | "mdast-util-mdx": "^3.0.0", 2628 | "unified-lint-rule": "^3.0.0", 2629 | "unist-util-visit-parents": "^6.0.0", 2630 | "vfile-message": "^4.0.0" 2631 | } 2632 | }, 2633 | "remark-lint-no-repeat-punctuation": { 2634 | "version": "0.1.4", 2635 | "resolved": "https://registry.npmjs.org/remark-lint-no-repeat-punctuation/-/remark-lint-no-repeat-punctuation-0.1.4.tgz", 2636 | "integrity": "sha512-JJduCs4FimdBcR1AB576SqIYOjt+7t8OjTnnlZMvjnw7lzkuL0+nNNHyNXVPaK6jxaLjEUhrH2/smU6vZFUT7g==", 2637 | "dev": true, 2638 | "requires": { 2639 | "unified-lint-rule": "^1.0.3", 2640 | "unist-util-map": "^1.0.4", 2641 | "unist-util-to-list-of-char": "^0.1.3" 2642 | }, 2643 | "dependencies": { 2644 | "unified-lint-rule": { 2645 | "version": "1.0.6", 2646 | "resolved": "https://registry.npmjs.org/unified-lint-rule/-/unified-lint-rule-1.0.6.tgz", 2647 | "integrity": "sha512-YPK15YBFwnsVorDFG/u0cVVQN5G2a3V8zv5/N6KN3TCG+ajKtaALcy7u14DCSrJI+gZeyYquFL9cioJXOGXSvg==", 2648 | "dev": true, 2649 | "requires": { 2650 | "wrapped": "^1.0.1" 2651 | } 2652 | } 2653 | } 2654 | }, 2655 | "remark-lint-no-shell-dollars": { 2656 | "version": "4.0.0", 2657 | "resolved": "https://registry.npmjs.org/remark-lint-no-shell-dollars/-/remark-lint-no-shell-dollars-4.0.0.tgz", 2658 | "integrity": "sha512-ye2h8FzjsgqqQV0HHN2g9N4FqI3eD9Gpgu7tU5ADIJyQ3mUJdwBoFn7IlGnpmumR1fb/l6u/AhRavIZxXYqG+Q==", 2659 | "dev": true, 2660 | "requires": { 2661 | "@types/mdast": "^4.0.0", 2662 | "collapse-white-space": "^2.0.0", 2663 | "mdast-util-phrasing": "^4.0.0", 2664 | "unified-lint-rule": "^3.0.0", 2665 | "unist-util-visit-parents": "^6.0.0" 2666 | } 2667 | }, 2668 | "remark-lint-no-table-indentation": { 2669 | "version": "5.0.0", 2670 | "resolved": "https://registry.npmjs.org/remark-lint-no-table-indentation/-/remark-lint-no-table-indentation-5.0.0.tgz", 2671 | "integrity": "sha512-MaLmnzgirpnRiRjWwrsyOX0RmP2eG4YAv169MtsxTVa6O3CpUDwTuTzivudE9L0kVvTlyF9DXEmdyjm85LDyVA==", 2672 | "dev": true, 2673 | "requires": { 2674 | "@types/mdast": "^4.0.0", 2675 | "devlop": "^1.0.0", 2676 | "mdast-util-phrasing": "^4.0.0", 2677 | "pluralize": "^8.0.0", 2678 | "unified-lint-rule": "^3.0.0", 2679 | "unist-util-position": "^5.0.0", 2680 | "unist-util-visit-parents": "^6.0.0", 2681 | "vfile-location": "^5.0.0" 2682 | } 2683 | }, 2684 | "remark-lint-no-undefined-references": { 2685 | "version": "5.0.0", 2686 | "resolved": "https://registry.npmjs.org/remark-lint-no-undefined-references/-/remark-lint-no-undefined-references-5.0.0.tgz", 2687 | "integrity": "sha512-O0q8bHpRHK1T85oqO+uep4BkvQnZZp3y+wahDeeLLq9dCJfF56sq6Tt5OOTt1BAOZlpobS3OPQHUiJWYP6hX1w==", 2688 | "dev": true, 2689 | "requires": { 2690 | "@types/mdast": "^4.0.0", 2691 | "collapse-white-space": "^2.0.0", 2692 | "devlop": "^1.0.0", 2693 | "micromark-util-normalize-identifier": "^2.0.0", 2694 | "unified-lint-rule": "^3.0.0", 2695 | "unist-util-position": "^5.0.0", 2696 | "unist-util-visit-parents": "^6.0.0", 2697 | "vfile-location": "^5.0.0" 2698 | } 2699 | }, 2700 | "remark-lint-no-unneeded-full-reference-image": { 2701 | "version": "4.0.0", 2702 | "resolved": "https://registry.npmjs.org/remark-lint-no-unneeded-full-reference-image/-/remark-lint-no-unneeded-full-reference-image-4.0.0.tgz", 2703 | "integrity": "sha512-0l9PZzidaAaJgn+mCRwudh6CLHvpz2PTIVlhK+fspxNwnRcPwpJOih+D4XMwyf/0x20g9MKtrlvSefIOnhqwNg==", 2704 | "dev": true, 2705 | "requires": { 2706 | "@types/mdast": "^4.0.0", 2707 | "micromark-util-normalize-identifier": "^2.0.0", 2708 | "unified-lint-rule": "^3.0.0", 2709 | "unist-util-position": "^5.0.0", 2710 | "unist-util-visit-parents": "^6.0.0" 2711 | } 2712 | }, 2713 | "remark-lint-no-unneeded-full-reference-link": { 2714 | "version": "4.0.0", 2715 | "resolved": "https://registry.npmjs.org/remark-lint-no-unneeded-full-reference-link/-/remark-lint-no-unneeded-full-reference-link-4.0.0.tgz", 2716 | "integrity": "sha512-QjqhQxCvB4TNKXVaV50YCh50DzSRdpYs7hKPn9kKvkYK2tsqjnax5vz0w78fI2Nb9EY3ISoehPJDHruwAlDbew==", 2717 | "dev": true, 2718 | "requires": { 2719 | "@types/mdast": "^4.0.0", 2720 | "micromark-util-normalize-identifier": "^2.0.0", 2721 | "unified-lint-rule": "^3.0.0", 2722 | "unist-util-position": "^5.0.0", 2723 | "unist-util-visit-parents": "^6.0.0" 2724 | } 2725 | }, 2726 | "remark-lint-no-unused-definitions": { 2727 | "version": "4.0.0", 2728 | "resolved": "https://registry.npmjs.org/remark-lint-no-unused-definitions/-/remark-lint-no-unused-definitions-4.0.0.tgz", 2729 | "integrity": "sha512-YCZ6k575NCTx7mnN+9ls0G6YgMsZHi0LYQqfLW8MNVHBtbpTBvfmk8I39bmsvuKWeBD98weZoXSDqIiIGg+Q/g==", 2730 | "dev": true, 2731 | "requires": { 2732 | "@types/mdast": "^4.0.0", 2733 | "devlop": "^1.0.0", 2734 | "unified-lint-rule": "^3.0.0", 2735 | "unist-util-visit": "^5.0.0" 2736 | } 2737 | }, 2738 | "remark-lint-ordered-list-marker-style": { 2739 | "version": "4.0.0", 2740 | "resolved": "https://registry.npmjs.org/remark-lint-ordered-list-marker-style/-/remark-lint-ordered-list-marker-style-4.0.0.tgz", 2741 | "integrity": "sha512-xZ7Xppy5fzACH4b9h1b4lTzVtNY2AlUkNTfl1Oe6cIKN8tk3juFxN0wL2RpktPtSZ7iRIabzFmg6l8WPhlASJA==", 2742 | "dev": true, 2743 | "requires": { 2744 | "@types/mdast": "^4.0.0", 2745 | "mdast-util-phrasing": "^4.0.0", 2746 | "micromark-util-character": "^2.0.0", 2747 | "unified-lint-rule": "^3.0.0", 2748 | "unist-util-position": "^5.0.0", 2749 | "unist-util-visit-parents": "^6.0.0", 2750 | "vfile-message": "^4.0.0" 2751 | } 2752 | }, 2753 | "remark-lint-ordered-list-marker-value": { 2754 | "version": "4.0.0", 2755 | "resolved": "https://registry.npmjs.org/remark-lint-ordered-list-marker-value/-/remark-lint-ordered-list-marker-value-4.0.0.tgz", 2756 | "integrity": "sha512-7UjNU2Nv9LGEONTU9GPmTVoNoGKD5aL1X2xHzMbSJiTc50bfcazYqZawO+qj1pQ04WPhto1qHnl0HRB5wwSVwA==", 2757 | "dev": true, 2758 | "requires": { 2759 | "@types/mdast": "^4.0.0", 2760 | "devlop": "^1.0.0", 2761 | "mdast-util-phrasing": "^4.0.0", 2762 | "micromark-util-character": "^2.0.0", 2763 | "unified-lint-rule": "^3.0.0", 2764 | "unist-util-position": "^5.0.0", 2765 | "unist-util-visit-parents": "^6.0.0", 2766 | "vfile-message": "^4.0.0" 2767 | } 2768 | }, 2769 | "remark-lint-rule-style": { 2770 | "version": "4.0.0", 2771 | "resolved": "https://registry.npmjs.org/remark-lint-rule-style/-/remark-lint-rule-style-4.0.0.tgz", 2772 | "integrity": "sha512-Kt7IHMB5IbLgRFKaFUmB895sV3PTD0MBgN9CvXKxr1wHFF43S6tabjFIBSoQqyJRlhH0S3rK6Lvopofa009gLg==", 2773 | "dev": true, 2774 | "requires": { 2775 | "@types/mdast": "^4.0.0", 2776 | "mdast-util-phrasing": "^4.0.0", 2777 | "unified-lint-rule": "^3.0.0", 2778 | "unist-util-position": "^5.0.0", 2779 | "unist-util-visit-parents": "^6.0.0", 2780 | "vfile-message": "^4.0.0" 2781 | } 2782 | }, 2783 | "remark-lint-strong-marker": { 2784 | "version": "4.0.0", 2785 | "resolved": "https://registry.npmjs.org/remark-lint-strong-marker/-/remark-lint-strong-marker-4.0.0.tgz", 2786 | "integrity": "sha512-YcvuzakYhQWdCH+1E30sUY+wyvq+PNa77NZAMAYO/cS/pZczFB+q4Ccttw4Q+No/chX8oMfe0GYtm8dDWLei/g==", 2787 | "dev": true, 2788 | "requires": { 2789 | "@types/mdast": "^4.0.0", 2790 | "unified-lint-rule": "^3.0.0", 2791 | "unist-util-position": "^5.0.0", 2792 | "unist-util-visit-parents": "^6.0.0", 2793 | "vfile-message": "^4.0.0" 2794 | } 2795 | }, 2796 | "remark-lint-table-cell-padding": { 2797 | "version": "5.0.0", 2798 | "resolved": "https://registry.npmjs.org/remark-lint-table-cell-padding/-/remark-lint-table-cell-padding-5.0.0.tgz", 2799 | "integrity": "sha512-LNyiHDQZBIOqcQGG1tYsZHW7g0v8OyRmRgDrD5WEsMaAYfM6EiECUokN/Q4py9h4oM/2KUSrdZbtfuZmy87/kA==", 2800 | "dev": true, 2801 | "requires": { 2802 | "@types/mdast": "^4.0.0", 2803 | "@types/unist": "^3.0.0", 2804 | "devlop": "^1.0.0", 2805 | "mdast-util-phrasing": "^4.0.0", 2806 | "pluralize": "^8.0.0", 2807 | "unified-lint-rule": "^3.0.0", 2808 | "unist-util-position": "^5.0.0", 2809 | "unist-util-visit-parents": "^6.0.0", 2810 | "vfile-message": "^4.0.0" 2811 | } 2812 | }, 2813 | "remark-lint-table-pipe-alignment": { 2814 | "version": "4.0.0", 2815 | "resolved": "https://registry.npmjs.org/remark-lint-table-pipe-alignment/-/remark-lint-table-pipe-alignment-4.0.0.tgz", 2816 | "integrity": "sha512-nx+xpEIWQRLOcq9hIbUIvhSE1NYRmDJmCY3cMoHJ1sIW7dRXMHyWfpWTgu7mpREKwSQdE0q4qnzk8McQQSkIcg==", 2817 | "dev": true, 2818 | "requires": { 2819 | "@types/mdast": "^4.0.0", 2820 | "@types/unist": "^3.0.0", 2821 | "devlop": "^1.0.0", 2822 | "mdast-util-phrasing": "^4.0.0", 2823 | "pluralize": "^8.0.0", 2824 | "unified-lint-rule": "^3.0.0", 2825 | "unist-util-position": "^5.0.0", 2826 | "unist-util-visit-parents": "^6.0.0" 2827 | } 2828 | }, 2829 | "remark-lint-table-pipes": { 2830 | "version": "5.0.0", 2831 | "resolved": "https://registry.npmjs.org/remark-lint-table-pipes/-/remark-lint-table-pipes-5.0.0.tgz", 2832 | "integrity": "sha512-e7jzAScDrt5+eMomh099TZJBN2K9ldDxBu9iYhNu5C0YsdAvnckJkgilsuClxFpmx4LCVYaX0EGbt/hQ3LB3xg==", 2833 | "dev": true, 2834 | "requires": { 2835 | "@types/mdast": "^4.0.0", 2836 | "@types/unist": "^3.0.0", 2837 | "mdast-util-phrasing": "^4.0.0", 2838 | "unified-lint-rule": "^3.0.0", 2839 | "unist-util-position": "^5.0.0", 2840 | "unist-util-visit-parents": "^6.0.0" 2841 | } 2842 | }, 2843 | "remark-lint-unordered-list-marker-style": { 2844 | "version": "4.0.0", 2845 | "resolved": "https://registry.npmjs.org/remark-lint-unordered-list-marker-style/-/remark-lint-unordered-list-marker-style-4.0.0.tgz", 2846 | "integrity": "sha512-XlP4Wr4KJNovyWVv0H5axfUlF23iE9Kt2SxaVq4+ieum5YcMmKE6KsL+aqt3kiJb60SH1u6a0bxKFvdM/9riOA==", 2847 | "dev": true, 2848 | "requires": { 2849 | "@types/mdast": "^4.0.0", 2850 | "mdast-util-phrasing": "^4.0.0", 2851 | "unified-lint-rule": "^3.0.0", 2852 | "unist-util-position": "^5.0.0", 2853 | "unist-util-visit-parents": "^6.0.0", 2854 | "vfile-message": "^4.0.0" 2855 | } 2856 | }, 2857 | "remark-message-control": { 2858 | "version": "8.0.0", 2859 | "resolved": "https://registry.npmjs.org/remark-message-control/-/remark-message-control-8.0.0.tgz", 2860 | "integrity": "sha512-brpzOO+jdyE/mLqvqqvbogmhGxKygjpCUCG/PwSCU43+JZQ+RM+sSzkCWBcYvgF3KIAVNIoPsvXjBkzO7EdsYQ==", 2861 | "dev": true, 2862 | "requires": { 2863 | "@types/mdast": "^4.0.0", 2864 | "mdast-comment-marker": "^3.0.0", 2865 | "unified-message-control": "^5.0.0", 2866 | "vfile": "^6.0.0" 2867 | } 2868 | }, 2869 | "remark-parse": { 2870 | "version": "11.0.0", 2871 | "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz", 2872 | "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==", 2873 | "dev": true, 2874 | "requires": { 2875 | "@types/mdast": "^4.0.0", 2876 | "mdast-util-from-markdown": "^2.0.0", 2877 | "micromark-util-types": "^2.0.0", 2878 | "unified": "^11.0.0" 2879 | } 2880 | }, 2881 | "remark-stringify": { 2882 | "version": "11.0.0", 2883 | "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz", 2884 | "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==", 2885 | "dev": true, 2886 | "requires": { 2887 | "@types/mdast": "^4.0.0", 2888 | "mdast-util-to-markdown": "^2.0.0", 2889 | "unified": "^11.0.0" 2890 | } 2891 | }, 2892 | "resolve-alpn": { 2893 | "version": "1.2.1", 2894 | "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz", 2895 | "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==", 2896 | "dev": true 2897 | }, 2898 | "responselike": { 2899 | "version": "3.0.0", 2900 | "resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz", 2901 | "integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==", 2902 | "dev": true, 2903 | "requires": { 2904 | "lowercase-keys": "^3.0.0" 2905 | } 2906 | }, 2907 | "restore-cursor": { 2908 | "version": "4.0.0", 2909 | "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", 2910 | "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", 2911 | "dev": true, 2912 | "requires": { 2913 | "onetime": "^5.1.0", 2914 | "signal-exit": "^3.0.2" 2915 | }, 2916 | "dependencies": { 2917 | "signal-exit": { 2918 | "version": "3.0.7", 2919 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 2920 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", 2921 | "dev": true 2922 | } 2923 | } 2924 | }, 2925 | "reusify": { 2926 | "version": "1.0.4", 2927 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 2928 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 2929 | "dev": true 2930 | }, 2931 | "rimraf": { 2932 | "version": "2.7.1", 2933 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", 2934 | "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", 2935 | "dev": true, 2936 | "requires": { 2937 | "glob": "^7.1.3" 2938 | } 2939 | }, 2940 | "rmfr": { 2941 | "version": "2.0.0", 2942 | "resolved": "https://registry.npmjs.org/rmfr/-/rmfr-2.0.0.tgz", 2943 | "integrity": "sha512-nQptLCZeyyJfgbpf2x97k5YE8vzDn7bhwx9NlvODdhgbU0mL1ruh71X0HYdRaOEvWC7Cr+SfV0p5p+Ib5yOl7A==", 2944 | "dev": true, 2945 | "requires": { 2946 | "assert-valid-glob-opts": "^1.0.0", 2947 | "glob": "^7.1.2", 2948 | "graceful-fs": "^4.1.11", 2949 | "inspect-with-kind": "^1.0.4", 2950 | "rimraf": "^2.6.2" 2951 | } 2952 | }, 2953 | "run-parallel": { 2954 | "version": "1.2.0", 2955 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 2956 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 2957 | "dev": true, 2958 | "requires": { 2959 | "queue-microtask": "^1.2.2" 2960 | } 2961 | }, 2962 | "semver": { 2963 | "version": "7.6.2", 2964 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", 2965 | "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", 2966 | "dev": true 2967 | }, 2968 | "shebang-command": { 2969 | "version": "2.0.0", 2970 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 2971 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 2972 | "dev": true, 2973 | "requires": { 2974 | "shebang-regex": "^3.0.0" 2975 | } 2976 | }, 2977 | "shebang-regex": { 2978 | "version": "3.0.0", 2979 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 2980 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 2981 | "dev": true 2982 | }, 2983 | "signal-exit": { 2984 | "version": "4.1.0", 2985 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 2986 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 2987 | "dev": true 2988 | }, 2989 | "slash": { 2990 | "version": "5.1.0", 2991 | "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", 2992 | "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", 2993 | "dev": true 2994 | }, 2995 | "sliced": { 2996 | "version": "1.0.1", 2997 | "resolved": "https://registry.npmjs.org/sliced/-/sliced-1.0.1.tgz", 2998 | "integrity": "sha512-VZBmZP8WU3sMOZm1bdgTadsQbcscK0UM8oKxKVBs4XAhUo2Xxzm/OFMGBkPusxw9xL3Uy8LrzEqGqJhclsr0yA==", 2999 | "dev": true 3000 | }, 3001 | "space-separated-tokens": { 3002 | "version": "2.0.2", 3003 | "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", 3004 | "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", 3005 | "dev": true 3006 | }, 3007 | "spdx-correct": { 3008 | "version": "3.2.0", 3009 | "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", 3010 | "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", 3011 | "dev": true, 3012 | "requires": { 3013 | "spdx-expression-parse": "^3.0.0", 3014 | "spdx-license-ids": "^3.0.0" 3015 | } 3016 | }, 3017 | "spdx-exceptions": { 3018 | "version": "2.5.0", 3019 | "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", 3020 | "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", 3021 | "dev": true 3022 | }, 3023 | "spdx-expression-parse": { 3024 | "version": "3.0.1", 3025 | "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", 3026 | "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", 3027 | "dev": true, 3028 | "requires": { 3029 | "spdx-exceptions": "^2.1.0", 3030 | "spdx-license-ids": "^3.0.0" 3031 | } 3032 | }, 3033 | "spdx-license-ids": { 3034 | "version": "3.0.18", 3035 | "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.18.tgz", 3036 | "integrity": "sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==", 3037 | "dev": true 3038 | }, 3039 | "stdin-discarder": { 3040 | "version": "0.2.2", 3041 | "resolved": "https://registry.npmjs.org/stdin-discarder/-/stdin-discarder-0.2.2.tgz", 3042 | "integrity": "sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==", 3043 | "dev": true 3044 | }, 3045 | "string-width": { 3046 | "version": "7.2.0", 3047 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", 3048 | "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", 3049 | "dev": true, 3050 | "requires": { 3051 | "emoji-regex": "^10.3.0", 3052 | "get-east-asian-width": "^1.0.0", 3053 | "strip-ansi": "^7.1.0" 3054 | } 3055 | }, 3056 | "stringify-entities": { 3057 | "version": "4.0.4", 3058 | "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz", 3059 | "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", 3060 | "dev": true, 3061 | "requires": { 3062 | "character-entities-html4": "^2.0.0", 3063 | "character-entities-legacy": "^3.0.0" 3064 | } 3065 | }, 3066 | "strip-ansi": { 3067 | "version": "7.1.0", 3068 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 3069 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 3070 | "dev": true, 3071 | "requires": { 3072 | "ansi-regex": "^6.0.1" 3073 | } 3074 | }, 3075 | "strip-final-newline": { 3076 | "version": "4.0.0", 3077 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-4.0.0.tgz", 3078 | "integrity": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==", 3079 | "dev": true 3080 | }, 3081 | "supports-color": { 3082 | "version": "5.5.0", 3083 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 3084 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 3085 | "dev": true, 3086 | "requires": { 3087 | "has-flag": "^3.0.0" 3088 | } 3089 | }, 3090 | "supports-hyperlinks": { 3091 | "version": "2.3.0", 3092 | "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", 3093 | "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", 3094 | "dev": true, 3095 | "requires": { 3096 | "has-flag": "^4.0.0", 3097 | "supports-color": "^7.0.0" 3098 | }, 3099 | "dependencies": { 3100 | "has-flag": { 3101 | "version": "4.0.0", 3102 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 3103 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 3104 | "dev": true 3105 | }, 3106 | "supports-color": { 3107 | "version": "7.2.0", 3108 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3109 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3110 | "dev": true, 3111 | "requires": { 3112 | "has-flag": "^4.0.0" 3113 | } 3114 | } 3115 | } 3116 | }, 3117 | "temp-dir": { 3118 | "version": "3.0.0", 3119 | "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", 3120 | "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", 3121 | "dev": true 3122 | }, 3123 | "tempy": { 3124 | "version": "3.1.0", 3125 | "resolved": "https://registry.npmjs.org/tempy/-/tempy-3.1.0.tgz", 3126 | "integrity": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==", 3127 | "dev": true, 3128 | "requires": { 3129 | "is-stream": "^3.0.0", 3130 | "temp-dir": "^3.0.0", 3131 | "type-fest": "^2.12.2", 3132 | "unique-string": "^3.0.0" 3133 | }, 3134 | "dependencies": { 3135 | "is-stream": { 3136 | "version": "3.0.0", 3137 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", 3138 | "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", 3139 | "dev": true 3140 | }, 3141 | "type-fest": { 3142 | "version": "2.19.0", 3143 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", 3144 | "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", 3145 | "dev": true 3146 | } 3147 | } 3148 | }, 3149 | "to-regex-range": { 3150 | "version": "5.0.1", 3151 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3152 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3153 | "dev": true, 3154 | "requires": { 3155 | "is-number": "^7.0.0" 3156 | } 3157 | }, 3158 | "to-vfile": { 3159 | "version": "8.0.0", 3160 | "resolved": "https://registry.npmjs.org/to-vfile/-/to-vfile-8.0.0.tgz", 3161 | "integrity": "sha512-IcmH1xB5576MJc9qcfEC/m/nQCFt3fzMHz45sSlgJyTWjRbKW1HAkJpuf3DgE57YzIlZcwcBZA5ENQbBo4aLkg==", 3162 | "dev": true, 3163 | "requires": { 3164 | "vfile": "^6.0.0" 3165 | } 3166 | }, 3167 | "trough": { 3168 | "version": "2.2.0", 3169 | "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz", 3170 | "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", 3171 | "dev": true 3172 | }, 3173 | "type-fest": { 3174 | "version": "4.21.0", 3175 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.21.0.tgz", 3176 | "integrity": "sha512-ADn2w7hVPcK6w1I0uWnM//y1rLXZhzB9mr0a3OirzclKF1Wp6VzevUmzz/NRAWunOT6E8HrnpGY7xOfc6K57fA==", 3177 | "dev": true 3178 | }, 3179 | "unicorn-magic": { 3180 | "version": "0.1.0", 3181 | "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", 3182 | "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", 3183 | "dev": true 3184 | }, 3185 | "unified": { 3186 | "version": "11.0.5", 3187 | "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz", 3188 | "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", 3189 | "dev": true, 3190 | "requires": { 3191 | "@types/unist": "^3.0.0", 3192 | "bail": "^2.0.0", 3193 | "devlop": "^1.0.0", 3194 | "extend": "^3.0.0", 3195 | "is-plain-obj": "^4.0.0", 3196 | "trough": "^2.0.0", 3197 | "vfile": "^6.0.0" 3198 | } 3199 | }, 3200 | "unified-lint-rule": { 3201 | "version": "3.0.0", 3202 | "resolved": "https://registry.npmjs.org/unified-lint-rule/-/unified-lint-rule-3.0.0.tgz", 3203 | "integrity": "sha512-Sz96ILLsTy3djsG3H44zFb2b77MFf9CQVYnV3PWkxgRX8/n31fFrr+JnzUaJ6cbOHTtZnL1A71+YodsTjzwAew==", 3204 | "dev": true, 3205 | "requires": { 3206 | "@types/unist": "^3.0.0", 3207 | "trough": "^2.0.0", 3208 | "unified": "^11.0.0", 3209 | "vfile": "^6.0.0" 3210 | } 3211 | }, 3212 | "unified-message-control": { 3213 | "version": "5.0.0", 3214 | "resolved": "https://registry.npmjs.org/unified-message-control/-/unified-message-control-5.0.0.tgz", 3215 | "integrity": "sha512-B2cSAkpuMVVmPP90KCfKdBhm1e9KYJ+zK3x5BCa0N65zpq1Ybkc9C77+M5qwR8FWO7RF3LM5QRRPZtgjW6DUCw==", 3216 | "dev": true, 3217 | "requires": { 3218 | "@types/unist": "^3.0.0", 3219 | "devlop": "^1.0.0", 3220 | "space-separated-tokens": "^2.0.0", 3221 | "unist-util-is": "^6.0.0", 3222 | "unist-util-visit": "^5.0.0", 3223 | "vfile": "^6.0.0", 3224 | "vfile-location": "^5.0.0", 3225 | "vfile-message": "^4.0.0" 3226 | } 3227 | }, 3228 | "unique-string": { 3229 | "version": "3.0.0", 3230 | "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", 3231 | "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", 3232 | "dev": true, 3233 | "requires": { 3234 | "crypto-random-string": "^4.0.0" 3235 | } 3236 | }, 3237 | "unist-util-find": { 3238 | "version": "3.0.0", 3239 | "resolved": "https://registry.npmjs.org/unist-util-find/-/unist-util-find-3.0.0.tgz", 3240 | "integrity": "sha512-T7ZqS7immLjYyC4FCp2hDo3ksZ1v+qcbb+e5+iWxc2jONgHOLXPCpms1L8VV4hVxCXgWTxmBHDztuEZFVwC+Gg==", 3241 | "dev": true, 3242 | "requires": { 3243 | "@types/unist": "^3.0.0", 3244 | "lodash.iteratee": "^4.0.0", 3245 | "unist-util-visit": "^5.0.0" 3246 | } 3247 | }, 3248 | "unist-util-find-all-after": { 3249 | "version": "5.0.0", 3250 | "resolved": "https://registry.npmjs.org/unist-util-find-all-after/-/unist-util-find-all-after-5.0.0.tgz", 3251 | "integrity": "sha512-nGmOYvTSdGcI4RvrUNfe0mOsqqbbJOtqCQsppsY9KZjmv3nwM3YRgNBwFPdZ8Y+iv9Z/2PDjR9u6u+uK62XTTg==", 3252 | "dev": true, 3253 | "requires": { 3254 | "@types/unist": "^3.0.0", 3255 | "unist-util-is": "^6.0.0" 3256 | } 3257 | }, 3258 | "unist-util-find-all-before": { 3259 | "version": "5.0.0", 3260 | "resolved": "https://registry.npmjs.org/unist-util-find-all-before/-/unist-util-find-all-before-5.0.0.tgz", 3261 | "integrity": "sha512-zir6a7GsXfdn4YAWR4F3hLNKZjTjLBJurdyquysvmX38xbftS1+qwvEhutxxHLq0Pp1tW5V1TDiuj+qluuOnKw==", 3262 | "dev": true, 3263 | "requires": { 3264 | "@types/unist": "^3.0.0", 3265 | "unist-util-is": "^6.0.0" 3266 | } 3267 | }, 3268 | "unist-util-find-all-between": { 3269 | "version": "2.1.0", 3270 | "resolved": "https://registry.npmjs.org/unist-util-find-all-between/-/unist-util-find-all-between-2.1.0.tgz", 3271 | "integrity": "sha512-OCCUtDD8UHKeODw3TPXyFDxPCbpgBzbGTTaDpR68nvxkwiVcawBqMVrokfBMvUi7ij2F5q7S4s4Jq5dvkcBt+w==", 3272 | "dev": true, 3273 | "requires": { 3274 | "unist-util-find": "^1.0.1", 3275 | "unist-util-is": "^4.0.2" 3276 | }, 3277 | "dependencies": { 3278 | "@types/unist": { 3279 | "version": "2.0.10", 3280 | "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz", 3281 | "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==", 3282 | "dev": true 3283 | }, 3284 | "unist-util-find": { 3285 | "version": "1.0.4", 3286 | "resolved": "https://registry.npmjs.org/unist-util-find/-/unist-util-find-1.0.4.tgz", 3287 | "integrity": "sha512-T5vI7IkhroDj7KxAIy057VbIeGnCXfso4d4GoUsjbAmDLQUkzAeszlBtzx1+KHgdsYYBygaqUBvrbYCfePedZw==", 3288 | "dev": true, 3289 | "requires": { 3290 | "lodash.iteratee": "^4.7.0", 3291 | "unist-util-visit": "^2.0.0" 3292 | } 3293 | }, 3294 | "unist-util-is": { 3295 | "version": "4.1.0", 3296 | "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-4.1.0.tgz", 3297 | "integrity": "sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==", 3298 | "dev": true 3299 | }, 3300 | "unist-util-visit": { 3301 | "version": "2.0.3", 3302 | "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-2.0.3.tgz", 3303 | "integrity": "sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==", 3304 | "dev": true, 3305 | "requires": { 3306 | "@types/unist": "^2.0.0", 3307 | "unist-util-is": "^4.0.0", 3308 | "unist-util-visit-parents": "^3.0.0" 3309 | } 3310 | }, 3311 | "unist-util-visit-parents": { 3312 | "version": "3.1.1", 3313 | "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-3.1.1.tgz", 3314 | "integrity": "sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==", 3315 | "dev": true, 3316 | "requires": { 3317 | "@types/unist": "^2.0.0", 3318 | "unist-util-is": "^4.0.0" 3319 | } 3320 | } 3321 | } 3322 | }, 3323 | "unist-util-generated": { 3324 | "version": "1.1.6", 3325 | "resolved": "https://registry.npmjs.org/unist-util-generated/-/unist-util-generated-1.1.6.tgz", 3326 | "integrity": "sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg==", 3327 | "dev": true 3328 | }, 3329 | "unist-util-is": { 3330 | "version": "6.0.0", 3331 | "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz", 3332 | "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", 3333 | "dev": true, 3334 | "requires": { 3335 | "@types/unist": "^3.0.0" 3336 | } 3337 | }, 3338 | "unist-util-map": { 3339 | "version": "1.0.5", 3340 | "resolved": "https://registry.npmjs.org/unist-util-map/-/unist-util-map-1.0.5.tgz", 3341 | "integrity": "sha512-dFil/AN6vqhnQWNCZk0GF/G3+Q5YwsB+PqjnzvpO2wzdRtUJ1E8PN+XRE/PRr/G3FzKjRTJU0haqE0Ekl+O3Ag==", 3342 | "dev": true, 3343 | "requires": { 3344 | "object-assign": "^4.0.1" 3345 | } 3346 | }, 3347 | "unist-util-position": { 3348 | "version": "5.0.0", 3349 | "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz", 3350 | "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", 3351 | "dev": true, 3352 | "requires": { 3353 | "@types/unist": "^3.0.0" 3354 | } 3355 | }, 3356 | "unist-util-remove-position": { 3357 | "version": "5.0.0", 3358 | "resolved": "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz", 3359 | "integrity": "sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==", 3360 | "dev": true, 3361 | "requires": { 3362 | "@types/unist": "^3.0.0", 3363 | "unist-util-visit": "^5.0.0" 3364 | } 3365 | }, 3366 | "unist-util-stringify-position": { 3367 | "version": "4.0.0", 3368 | "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", 3369 | "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", 3370 | "dev": true, 3371 | "requires": { 3372 | "@types/unist": "^3.0.0" 3373 | } 3374 | }, 3375 | "unist-util-to-list-of-char": { 3376 | "version": "0.1.3", 3377 | "resolved": "https://registry.npmjs.org/unist-util-to-list-of-char/-/unist-util-to-list-of-char-0.1.3.tgz", 3378 | "integrity": "sha512-f8GrLHdhBKfaW6mzJc25BKeUOqhsuiRXlGrXBtb3pmRT3QCuYS+jH4g7Uf52hjV7TLQN4PGnjzrTFMFXAQaprA==", 3379 | "dev": true, 3380 | "requires": { 3381 | "unist-util-generated": "^1.1.6", 3382 | "unist-util-visit": "^1.4.0" 3383 | }, 3384 | "dependencies": { 3385 | "unist-util-is": { 3386 | "version": "3.0.0", 3387 | "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-3.0.0.tgz", 3388 | "integrity": "sha512-sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A==", 3389 | "dev": true 3390 | }, 3391 | "unist-util-visit": { 3392 | "version": "1.4.1", 3393 | "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.4.1.tgz", 3394 | "integrity": "sha512-AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw==", 3395 | "dev": true, 3396 | "requires": { 3397 | "unist-util-visit-parents": "^2.0.0" 3398 | } 3399 | }, 3400 | "unist-util-visit-parents": { 3401 | "version": "2.1.2", 3402 | "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-2.1.2.tgz", 3403 | "integrity": "sha512-DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g==", 3404 | "dev": true, 3405 | "requires": { 3406 | "unist-util-is": "^3.0.0" 3407 | } 3408 | } 3409 | } 3410 | }, 3411 | "unist-util-visit": { 3412 | "version": "5.0.0", 3413 | "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz", 3414 | "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", 3415 | "dev": true, 3416 | "requires": { 3417 | "@types/unist": "^3.0.0", 3418 | "unist-util-is": "^6.0.0", 3419 | "unist-util-visit-parents": "^6.0.0" 3420 | } 3421 | }, 3422 | "unist-util-visit-parents": { 3423 | "version": "6.0.1", 3424 | "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz", 3425 | "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==", 3426 | "dev": true, 3427 | "requires": { 3428 | "@types/unist": "^3.0.0", 3429 | "unist-util-is": "^6.0.0" 3430 | } 3431 | }, 3432 | "validate-glob-opts": { 3433 | "version": "1.0.2", 3434 | "resolved": "https://registry.npmjs.org/validate-glob-opts/-/validate-glob-opts-1.0.2.tgz", 3435 | "integrity": "sha512-3PKjRQq/R514lUcG9OEiW0u9f7D4fP09A07kmk1JbNn2tfeQdAHhlT+A4dqERXKu2br2rrxSM3FzagaEeq9w+A==", 3436 | "dev": true, 3437 | "requires": { 3438 | "array-to-sentence": "^1.1.0", 3439 | "indexed-filter": "^1.0.0", 3440 | "inspect-with-kind": "^1.0.4", 3441 | "is-plain-obj": "^1.1.0" 3442 | }, 3443 | "dependencies": { 3444 | "is-plain-obj": { 3445 | "version": "1.1.0", 3446 | "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", 3447 | "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", 3448 | "dev": true 3449 | } 3450 | } 3451 | }, 3452 | "validate-npm-package-license": { 3453 | "version": "3.0.4", 3454 | "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", 3455 | "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", 3456 | "dev": true, 3457 | "requires": { 3458 | "spdx-correct": "^3.0.0", 3459 | "spdx-expression-parse": "^3.0.0" 3460 | } 3461 | }, 3462 | "vfile": { 3463 | "version": "6.0.1", 3464 | "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.1.tgz", 3465 | "integrity": "sha512-1bYqc7pt6NIADBJ98UiG0Bn/CHIVOoZ/IyEkqIruLg0mE1BKzkOXY2D6CSqQIcKqgadppE5lrxgWXJmXd7zZJw==", 3466 | "dev": true, 3467 | "requires": { 3468 | "@types/unist": "^3.0.0", 3469 | "unist-util-stringify-position": "^4.0.0", 3470 | "vfile-message": "^4.0.0" 3471 | } 3472 | }, 3473 | "vfile-location": { 3474 | "version": "5.0.2", 3475 | "resolved": "https://registry.npmjs.org/vfile-location/-/vfile-location-5.0.2.tgz", 3476 | "integrity": "sha512-NXPYyxyBSH7zB5U6+3uDdd6Nybz6o6/od9rk8bp9H8GR3L+cm/fC0uUTbqBmUTnMCUDslAGBOIKNfvvb+gGlDg==", 3477 | "dev": true, 3478 | "requires": { 3479 | "@types/unist": "^3.0.0", 3480 | "vfile": "^6.0.0" 3481 | } 3482 | }, 3483 | "vfile-message": { 3484 | "version": "4.0.2", 3485 | "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz", 3486 | "integrity": "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==", 3487 | "dev": true, 3488 | "requires": { 3489 | "@types/unist": "^3.0.0", 3490 | "unist-util-stringify-position": "^4.0.0" 3491 | } 3492 | }, 3493 | "vfile-reporter-pretty": { 3494 | "version": "7.0.0", 3495 | "resolved": "https://registry.npmjs.org/vfile-reporter-pretty/-/vfile-reporter-pretty-7.0.0.tgz", 3496 | "integrity": "sha512-kPQ8wnn7lSS89B5kvdGfNxq3rz32dsAY2lPSIq0LtK/Dq0zMXchsEo3+UmJeUThqF8POtwtdjp8H8LNShBcpbA==", 3497 | "dev": true, 3498 | "requires": { 3499 | "eslint-formatter-pretty": "^5.0.0", 3500 | "vfile": "^6.0.0", 3501 | "vfile-to-eslint": "^4.0.0" 3502 | } 3503 | }, 3504 | "vfile-statistics": { 3505 | "version": "3.0.0", 3506 | "resolved": "https://registry.npmjs.org/vfile-statistics/-/vfile-statistics-3.0.0.tgz", 3507 | "integrity": "sha512-/qlwqwWBWFOmpXujL/20P+Iuydil0rZZNglR+VNm6J0gpLHwuVM5s7g2TfVoswbXjZ4HuIhLMySEyIw5i7/D8w==", 3508 | "dev": true, 3509 | "requires": { 3510 | "vfile": "^6.0.0", 3511 | "vfile-message": "^4.0.0" 3512 | } 3513 | }, 3514 | "vfile-to-eslint": { 3515 | "version": "4.0.0", 3516 | "resolved": "https://registry.npmjs.org/vfile-to-eslint/-/vfile-to-eslint-4.0.0.tgz", 3517 | "integrity": "sha512-BOMkqUnIghW/SZEVOUKC3p5lUZ8QzavLksEEMKR9Yr7jBuu0noiQVfyB7csOStFVFgpWzx+ApcZjkyFHQkJjmQ==", 3518 | "dev": true, 3519 | "requires": { 3520 | "@types/eslint": "^8.0.0", 3521 | "vfile": "^6.0.0", 3522 | "vfile-message": "^4.0.0", 3523 | "vfile-statistics": "^3.0.0" 3524 | } 3525 | }, 3526 | "which": { 3527 | "version": "2.0.2", 3528 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3529 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3530 | "dev": true, 3531 | "requires": { 3532 | "isexe": "^2.0.0" 3533 | } 3534 | }, 3535 | "wrapped": { 3536 | "version": "1.0.1", 3537 | "resolved": "https://registry.npmjs.org/wrapped/-/wrapped-1.0.1.tgz", 3538 | "integrity": "sha512-ZTKuqiTu3WXtL72UKCCnQLRax2IScKH7oQ+mvjbpvNE+NJxIWIemDqqM2GxNr4N16NCjOYpIgpin5pStM7kM5g==", 3539 | "dev": true, 3540 | "requires": { 3541 | "co": "3.1.0", 3542 | "sliced": "^1.0.1" 3543 | } 3544 | }, 3545 | "wrappy": { 3546 | "version": "1.0.2", 3547 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3548 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 3549 | "dev": true 3550 | }, 3551 | "yoctocolors": { 3552 | "version": "2.1.1", 3553 | "resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.1.tgz", 3554 | "integrity": "sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==", 3555 | "dev": true 3556 | }, 3557 | "zwitch": { 3558 | "version": "2.0.4", 3559 | "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz", 3560 | "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", 3561 | "dev": true 3562 | } 3563 | } 3564 | } 3565 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "awesome-python-typing", 3 | "version": "0.0.0", 4 | "description": "Collection of awesome Python types, stubs, plugins, and tools to work with them.", 5 | "main": "false", 6 | "scripts": { 7 | "test": "awesome-lint" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/typeddjango/awesome-python-typing.git" 12 | }, 13 | "author": "mail@sobolevn.me", 14 | "license": "CC-BY-SA-4.0", 15 | "bugs": { 16 | "url": "https://github.com/typeddjango/awesome-python-typing/issues" 17 | }, 18 | "homepage": "https://github.com/typeddjango/awesome-python-typing#readme", 19 | "devDependencies": { 20 | "awesome-lint": "^1.2.0" 21 | } 22 | } 23 | --------------------------------------------------------------------------------