├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── doc-support │ ├── index.js │ └── issue.js ├── index.html ├── issue.html └── json-schema-md-doc.min.js ├── package-lock.json ├── package.json ├── samples └── node │ ├── README.md │ ├── doc.js │ ├── schema.json │ └── schema.md ├── src ├── JSONSchemaMarkdownDoc.js └── build.js └── webpack.config.js /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Dependency directories 2 | node_modules/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # json-schema-md-doc 3 | ## Generate markdown documentation for JSON Schemas 4 | Try it out at [brianwendt.github.io/json-schema-md-doc](https://brianwendt.github.io/json-schema-md-doc) 5 | 6 | [Click here](https://github.com/BrianWendt/json-schema-md-doc/tree/master/samples/node) to see the Node example. 7 | 8 | **NOTE:** JSONSchemaMarkdownDoc.js supports [json-schema.org](https://json-schema.org/) `draft-7`. Previous drafts may not generate documentation correctly. 9 | 10 | ## This project has moved! 11 | The codebase has been migrated to [github.com/OntoDevelopment/json-schema-doc-ts](https://github.com/OntoDevelopment/json-schema-doc-ts) 12 | This repository implements that module and uses webpack to create a es2015 compatible minified JavaScript file. The browser tool and samples are kept in this repo to keep the module's repo lean. 13 | 14 | ## es6/Node Implementation 15 | **NPM Project** 16 | ``` 17 | npm install json-schema-doc-ts 18 | ``` 19 | 20 | ```javascript 21 | import { JSONSchemaMarkdownDoc } from "json-schema-doc-ts"; 22 | ``` 23 | or 24 | **HTML** 25 | ``` html 26 | 27 | ``` 28 | **Javascript** 29 | ``` javascript 30 | // simple schema for the example 31 | const colors_schema = { 32 | "description": "Choose a color", 33 | "type": "string", 34 | "enum": ["red", "amber", "green"] 35 | } 36 | 37 | // create an instance of JSONSchemaMarkdownDoc and load the schema 38 | const Doccer = new JSONSchemaMarkdownDoc(colors_schema); 39 | // generate the markdown 40 | console.log(Doccer.generate()); 41 | ``` 42 | **Result** 43 | ``` markdown 44 | _Choose a color_ 45 | 46 | Type: `string` 47 | 48 | *path: #* 49 | 50 | The value is restricted to the following: 51 | 52 | 1. *"red"* 53 | 2. *"amber"* 54 | 3. *"green"* 55 | 56 | *Generated with [json-schema-md-doc](https://brianwendt.github.io/json-schema-md-doc/)* 57 | ``` 58 | 59 | ## Extendabale in es2015 (browser) 60 | You may easily extend `JSONSchemaMarkdownDoc` from `json-schema-md-doc.min.js` to customize the formatting of your markdown by overriding any method. 61 | ``` javascript 62 | class MyDoccer extends JSONSchemaMarkdownDoc { 63 | constructor(){ 64 | super(); 65 | this.footer = "Thanks for reading the documentation!"; 66 | } 67 | valueBool(bool) { 68 | if (typeof bool === "string") { 69 | return bool; 70 | } else { 71 | return (bool) ? "TRUE" : "FALSE"; //uppercase instead of true/false 72 | } 73 | } 74 | }; 75 | ``` 76 | -------------------------------------------------------------------------------- /docs/doc-support/index.js: -------------------------------------------------------------------------------- 1 | var $input, $output, $download, Doc; 2 | $(document).ready(function(){ 3 | $input = $('#input'); 4 | $output = $('#output'); 5 | $download = $('#download'); 6 | Doc = new JSONSchemaMarkdownDoc(); 7 | run(); 8 | $input.on("input change", run); 9 | $output.focus(function () { 10 | $(this).select(); 11 | }); 12 | }); 13 | 14 | function run(){ 15 | if($input.val().length < 1){ 16 | return $output.val("Paste your schema"); 17 | } 18 | Doc.load($input.val()); 19 | $output.val(Doc.generate()); 20 | if(Doc.schema !== null){ 21 | var href = "data:text/plain;charset=utf-8," + encodeURIComponent(Doc.markdown); 22 | var download = (typeof Doc.schema["$id"] === "string") ? Doc.schema["$id"] + '.md' : 'README.md'; 23 | $download.attr('href', href).attr('download', download).removeClass('d-none'); 24 | } else { 25 | $download.addClass("d-none"); 26 | } 27 | } -------------------------------------------------------------------------------- /docs/doc-support/issue.js: -------------------------------------------------------------------------------- 1 | var $text, $schema, $output; 2 | $(document).ready(function () { 3 | $text = $('#text'); 4 | $schema = $('#schema'); 5 | $output = $('#output'); 6 | run(); 7 | $text.on("input change", run); 8 | $schema.on("input change", run); 9 | $output.focus(function () { 10 | $(this).select(); 11 | }); 12 | }); 13 | 14 | function run() { 15 | var markdown = "**Describe Your Issue**\n"; 16 | markdown += $text.val() + "\n\n"; 17 | markdown += "**Schema**\n"; 18 | var schema = $schema.val(); 19 | try { 20 | var schemaObj = JSON.parse(schema); 21 | schema = JSON.stringify(schemaObj); 22 | } catch (e) { 23 | markdown += "Invalid JSON!!!\n"; 24 | } 25 | markdown += "\n```\n" + schema + "\n```"; 26 | $output.val(markdown); 27 | } -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JSON Schema to Markdown 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |

JSON Schema to Markdown

15 |

Generate markdown documentation for JSON Schemas

16 |
17 |
18 |

Input Schema currently only supports draft-7

19 |
20 | 21 |
22 |
23 |
24 |

Output Markdown

25 |
26 | 27 |
28 | Download 29 |
30 |
31 |
32 |
33 |
34 |
35 |

Submit Issue

36 |

You may fully customize your output by extending the JSONSchemaMarkdownDoc class to override the rendering methods.

37 |

Learn how to customize your output at BrianWendt/json-schema-md-doc on GitHub.

38 |

License: GNU General Public License v3.0

39 |
40 |
41 |
42 | 43 | -------------------------------------------------------------------------------- /docs/issue.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Submit Issue - JSON Schema to Markdown 7 | 8 | 9 | 10 | 11 | 12 |
13 |

JSON Schema to Markdown

14 |

Report Issue

15 |
16 |
17 |

Step 1: Describe Your Issue

18 |
19 | 20 |
21 |

Step 2: Input Schema

22 |
23 | 24 |
25 |
26 |
27 |

Issue Markdown

28 |
29 | 30 |
31 |
32 |
33 |

Step 3: Copy the issue markdown from above.

34 |

Submit Issue on GitHub

35 |
36 |
37 |
38 |
39 |
40 | 41 | -------------------------------------------------------------------------------- /docs/json-schema-md-doc.min.js: -------------------------------------------------------------------------------- 1 | (()=>{"use strict";class t{constructor(t,e){this.schema=null,this.response="",this.errors=[],this.pathDivider="/",t&&this.load(t),e&&this.setOptions(e)}load(t){if(this.errors=[],"string"==typeof t)try{this.schema=JSON.parse(t)}catch(t){this.error("invalid json: "+t.message)}else this.schema=t;return this}setOptions(t){return Object.assign(this,t),this}generate(){if(this.response="",this.errors.length<1)try{this.generateChildren("",this.schema,0,"#")}catch(t){this.error(t.toString())}return this.generateResponse()}generateResponse(){return this.errors.length>0?this.errors.join("\n"):this.response}generateChildren(t,e,i,s){if("string"==typeof(null==e?void 0:e.$id)&&(s="#"+e.$id),this.determineType(e),this.typeGeneric(t,e,i,s),e.type.forEach((r=>{this.getTypeMethod(r)(t,e,i,s)})),"object"==typeof e.definitions&&Object.keys(e.definitions).length>0){s+="/definitions",this.writeHeader("definitions",i,s);for(const t in e.definitions){const r=s+this.pathDivider+t;this.writeTerm(t,i),this.generateChildren(t,e.definitions[t],i+1,r)}}}determineType(t){return"string"==typeof t.type?(t.type=[t.type],t.type):(Array.isArray(t.type)||(t.type=[],this.hasAnyProperty(t,["items","additionalItems","minItems","maxItems","uniqueItems","contains"])&&t.type.push("array"),this.hasAnyProperty(t,["minimum","maximum","exclusiveMinimum","exclusiveMaximum","multipleOf"])&&t.type.push("number"),this.hasAnyProperty(t,["required","properties","additionalProperties","patternProperties","minProperties","maxProperties","propertyNames","dependencies"])&&t.type.push("object"),this.hasAnyProperty(t,["maxLength","minLength","pattern","format"])&&t.type.push("string")),t.type)}hasProperty(t,e){return Object.prototype.hasOwnProperty.call(t,e)}hasAnyProperty(t,e){return e.some((e=>this.hasProperty(t,e)))}typeGeneric(t,e,i,s){this.writeHeader(e.title,i,s),this.writeDescription(e.description,i,s),this.writeType(e.type,i,s),this.writePath(i,s),this.writeSchema(e.$schema,i),this.writeRef(e.$ref,i),this.writeId(e.$id,i,s),this.writeComment(e.$comment,i,s),this.writeExamples(e.examples,i,s),this.writeEnum(e.enum,i),this.writeDefault(e.default,i,s),this.writeConst(e.const,i),this.writeConditionalIf(e.if,i),this.writeConditionalThen(e.then,i),this.writeConditionalElse(e.else,i),this.writeContentEncoding(e.contentEncoding,i),this.writeContentMediaType(e.contentMediaType,i)}typeArray(t,e,i,s){this.writeAdditionalItems(e.additionalItems,i),this.writeItemsMinMax(e.minItems,e.maxItems,i),this.notEmpty(e.items)&&(this.writeSectionName("Items",i+1,s+"/items"),Array.isArray(e.items)?e.items.forEach((t=>{this.generateChildren("item",t,i+1,s+"/items")})):this.notEmpty(e.items)&&"object"==typeof e.items&&this.generateChildren("item",e.items,i+1,s+"/items")),this.writeContains(e.contains,i)}typeBoolean(t,e,i,s){}typeNull(t,e,i,s){}typeNumber(t,e,i,s){this.writeMinimumMaximum(e.minimum,e.maximum,i),this.writeExclusiveMinimumMaximum(e.exclusiveMinimum,e.exclusiveMaximum,i),this.writeMultipleOf(e.multipleOf,i)}typeString(t,e,i,s){this.writeFormat(e.format,i),this.writePattern(e.pattern,i),this.writeMinMaxLength(e.minLength,e.maxLength,i)}typeObject(t,e,i,s){var r;this.writeUniqueItems(e.uniqueItems,i);const n=null!==(r=e.required)&&void 0!==r?r:[],h=e.properties||{};this.writeAdditionalProperties(e.additionalProperties,i),this.writeMinMaxProperties(e.minProperties,e.maxProperties,i),this.writePropertyNames(e.propertyNames,i),this.writeSectionName("Properties",i,s),s+="/properties";for(const t in h){const e=s+this.pathDivider+t,r=h[t],o=n.includes(t);this.writePropertyName(t,i+1,e,o),this.generateChildren(t,r,i+2,e)}this.writeDependencies(e.dependencies,i)}typeUnknown(t,e,i,s){}getTypeMethod(t){switch(t.toLowerCase()){case"string":return this.typeString.bind(this);case"integer":case"number":return this.typeNumber.bind(this);case"object":return this.typeObject.bind(this);case"array":return this.typeArray.bind(this);case"boolean":return this.typeBoolean.bind(this);case"null":return this.typeNull.bind(this);default:return this.typeUnknown.bind(this)}}valueMinMax(t,e){return this.notEmpty(t)&&this.notEmpty(e)?"between "+t+" and "+e+"\n":this.notEmpty(t)?" ≥ "+t+"\n":this.notEmpty(e)?" ≤ "+e+"\n":""}valueMinMaxExclusive(t,e){let i="";return this.notEmpty(t)&&(i+=" > "+t+"\n"),this.notEmpty(t)&&this.notEmpty(e)&&(i+=" & "),this.notEmpty(e)&&(i+=" < "+e+"\n"),i}valueBool(t){return"string"==typeof t?t:t?"true":"false"}valueFormat(t){return"boolean"==typeof t?this.valueBool(t):"string"==typeof t?'"'+t+'"':t}refLink(t){return"#"!==t[0]&&"http"!==t.substring(0,4).toLowerCase()&&(t="#"+this.slugify(t)),t}escapeLink(t){return t.replace("$","\\$")}slugify(t){return t.toString().toLowerCase().replace(/\s+/g,"-").replace(/_/g,"-").replace(/&/g,"-and-").replace(/[^a-zA-Z0-9-.]+/g,"").replace(/--+/g,"-").replace(/^-+/,"").replace(/-+$/,"")}empty(t){return null==t||"string"==typeof t&&t.length<1||Array.isArray(t)&&t.length<1}notEmpty(t){return!this.empty(t)}error(t){return this.errors.push(t),this}}class e extends t{constructor(){super(...arguments),this.indentChar="\t",this.pathDivider="/",this.objectNotation=" . ",this.footer="\n*Generated with [OntoDevelopment/json-schema-doc](https://github.com/OntoDevelopment/json-schema-doc)*",this.useHtml=!0,this.emphasisChar="*"}generateResponse(){return this.errors.length>0?this.errors.join("\n"):(this.response+=this.footer,this.response)}writeAdditionalItems(t,e=1){return this.empty(t)?this:t?this.writeLine("This schema "+this.underline("does not")+" accept additional items.",e):this.writeLine("This schema accepts additional items.",e)}writeItemsMinMax(t,e,i=1){return(this.notEmpty(t)||this.notEmpty(e))&&this.writeLine("Item Count: "+this.valueMinMax(t,e),i),this}writeAdditionalProperties(t,e=1){return this.empty(t)?this:t?this.writeLine("This schema accepts additional properties.",e):this.writeLine("This schema "+this.underline("does not")+" accept additional properties.",e)}writeMinMaxProperties(t,e,i=1){return(this.notEmpty(t)||this.notEmpty(e))&&this.writeLine("Property Count: "+this.valueMinMax(t,e),i),this}writeComment(t,e=1,i){if(this.empty(t)||"string"!=typeof t)return this;const s=this.useHtml?"
":"\n";return this.writeLine(this.bold("Comment",i)+s+this.italic(t),e)}writeConst(t,e=1){return this.notEmpty(t)&&this.writeLine("Constant value: "+this.valueFormat(t),e),this}writeConditionalIf(t,e=1){return this.notEmpty(t)&&(this.writeLine("If: ",e),this.generateChildren("if",t,e+1,"")),this}writeConditionalThen(t,e=1){return this.notEmpty(t)&&(this.writeLine("Then: ",e),this.generateChildren("then",t,e+1,"")),this}writeConditionalElse(t,e=1){return this.notEmpty(t)&&(this.writeLine("Else: ",e),this.generateChildren("else",t,e+1,"")),this}writeContentEncoding(t,e=1){return this.notEmpty(t)&&this.writeLine("Content Encoding: "+t,e),this}writeContentMediaType(t,e=1){return this.notEmpty(t)&&this.writeLine("Content Media Type: "+t,e),this}writeContains(t,e=1){return this.notEmpty(t)&&(this.writeLine("Contains: ",e),this.generateChildren("contains",t,e+1,"")),this}writeDefault(t,e=1,i){return this.notEmpty(t)&&this.writeLine("Default: "+this.valueFormat(t),e),this}writeDescription(t,e=1,i){return this.notEmpty(t)&&"string"==typeof t&&this.writeLine(this.italic(t.replace("\n","
")),e),this}writeDependencies(t,e=1){return this.notEmpty(t)&&(this.writeLine("Dependencies: ",e),this.writeList(Object.keys(t),e+1)),this}writeEnum(t,e=1){return this.notEmpty(t)&&"object"==typeof t&&(this.writeLine("The value is restricted to the following: ",e),this.writeList(t,e+1)),this}writeFormat(t,e=1){return this.notEmpty(t)&&this.writeLine('String format must be a "'+t+'"',e),this}writeExamples(t,e=1,i){return this.notEmpty(t)&&"object"==typeof t&&(this.writeLine("Example values: ",e),this.writeList(t,e+1)),this}writeHeader(t,e=1,i){return this.notEmpty(t)&&this.writeLine("#".repeat(Math.min(e+1,5))+" "+t,e),this}writeId(t,e=1,i){return this.notEmpty(t)&&"string"==typeof t&&this.writeLine(this.bold("$id: "+t,t),e),this}writeList(t,e=1){return this.notEmpty(t)&&t.forEach(((t,i)=>{this.indent(e,!1," "+(i+1)),this.response+=". "+this.valueFormat(t)+"\n"})),this}writeMinimumMaximum(t,e,i=1){return(this.notEmpty(t)||this.notEmpty(e))&&this.writeLine("Range: "+this.valueMinMax(t,e),i),this}writeExclusiveMinimumMaximum(t,e,i=1){return(this.notEmpty(t)||this.notEmpty(e))&&this.writeLine("Exclusive Range: "+this.valueMinMaxExclusive(t,e),i),this}writeMultipleOf(t,e=1){return this.notEmpty(t)&&this.writeLine("The value must be a multiple of `"+t+"`",e),this}writePattern(t,e=1){return this.notEmpty(t)&&this.writeLine("The value must match this pattern: `"+t+"`",e),this}writeMinMaxLength(t,e,i=1){return(this.notEmpty(t)||this.notEmpty(e))&&this.writeLine("Length: "+this.valueMinMax(t,e),i),this}writePropertyNames(t,e=1){return"string"==typeof(null==t?void 0:t.pattern)&&this.writeLine("Property names must match this pattern: `"+t.pattern+"`",e),this}writePropertyName(t,e=1,i,s=!1){return this.indent(e),this.response+=this.bold(t,i),s&&(this.response+=" `required`"),this.response+="\n",this}writeRef(t,e=1){return this.notEmpty(t)&&"string"==typeof t&&this.writeLine("$ref: ["+this.escapeLink(t)+"]("+this.refLink(t)+")",e),this}writePath(t=1,e){return this.notEmpty(e)&&this.writeLine(this.italic("path: "+e,e.replace("#","")),t),this}writeSchema(t,e=1){return"string"==typeof t&&t.length>0&&this.writeLine("$schema: ["+t+"]("+this.refLink(t)+")",e),this}writeSectionName(t,e=1,i){return this.notEmpty(t)&&this.writeLine(this.boldItalic(t),e),this}writeTerm(t,e=1){return this.notEmpty(t)&&this.writeLine(this.boldItalic(t),e),this}writeType(t,e=1,i){return this.notEmpty(t)&&(Array.isArray(t)&&t.length>1?this.writeLine("Types: `"+t.join("`, `")+"`",e):this.writeLine("Type: `"+t+"`",e)),this}writeUniqueItems(t,e=1){return this.notEmpty(t)&&t&&this.writeLine("Each item must be unique",e),this}bold(t,e){return this.useHtml&&e?this.tag("b",t,e):this.emphasize(t,2)}italic(t,e){return this.useHtml&&e?this.tag("i",t,e):this.emphasize(t,1)}boldItalic(t,e){return this.useHtml&&e?this.tag("b",this.italic(t),e):this.emphasize(t,3)}underline(t,e){return this.useHtml?this.tag("u",t,e):t}tag(t,e,i){return`<${t} id="${i=this.slugify(i||e)}">${e}`}emphasize(t,e){const i=this.emphasisChar.repeat(e);return i+t+i}code(t){return"`"+t+"`"}valueFormat(t){return"true"===t||"false"===t?this.italic(t):"boolean"==typeof t?this.italic(this.valueBool(t)):"string"==typeof t?this.italic('"'+t+'"'):this.code(t)}writeLine(t="",e=1){return this.indent(e),this.response+=t+"\n",e<1&&(this.response+="\n"),this}indent(t,e=!1,i=" - "){t>1&&(this.response+=(e||this.indentChar).repeat(t-1)),t>0&&(this.response+=i)}setUseHtml(t){return this.useHtml=t,this}}window.JSONSchemaMarkdownDoc=class extends e{constructor(t){super(t),this.footer="\n*Generated with [json-schema-md-doc](https://brianwendt.github.io/json-schema-md-doc/)*\n",this.footer+="*"+new Date+"*"}}})(); -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "json-schema-md-doc", 3 | "version": "2.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "json-schema-md-doc", 9 | "version": "2.0.0", 10 | "license": "See LICENSE file", 11 | "devDependencies": { 12 | "json-schema-doc-ts": "github:OntoDevelopment/json-schema-doc-ts", 13 | "webpack": "^5.98.0", 14 | "webpack-cli": "^6.0.1" 15 | } 16 | }, 17 | "node_modules/@discoveryjs/json-ext": { 18 | "version": "0.6.3", 19 | "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.6.3.tgz", 20 | "integrity": "sha512-4B4OijXeVNOPZlYA2oEwWOTkzyltLao+xbotHQeqN++Rv27Y6s818+n2Qkp8q+Fxhn0t/5lA5X1Mxktud8eayQ==", 21 | "dev": true, 22 | "license": "MIT", 23 | "engines": { 24 | "node": ">=14.17.0" 25 | } 26 | }, 27 | "node_modules/@jridgewell/gen-mapping": { 28 | "version": "0.3.8", 29 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", 30 | "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", 31 | "dev": true, 32 | "license": "MIT", 33 | "dependencies": { 34 | "@jridgewell/set-array": "^1.2.1", 35 | "@jridgewell/sourcemap-codec": "^1.4.10", 36 | "@jridgewell/trace-mapping": "^0.3.24" 37 | }, 38 | "engines": { 39 | "node": ">=6.0.0" 40 | } 41 | }, 42 | "node_modules/@jridgewell/resolve-uri": { 43 | "version": "3.1.2", 44 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 45 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 46 | "dev": true, 47 | "license": "MIT", 48 | "engines": { 49 | "node": ">=6.0.0" 50 | } 51 | }, 52 | "node_modules/@jridgewell/set-array": { 53 | "version": "1.2.1", 54 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 55 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 56 | "dev": true, 57 | "license": "MIT", 58 | "engines": { 59 | "node": ">=6.0.0" 60 | } 61 | }, 62 | "node_modules/@jridgewell/source-map": { 63 | "version": "0.3.6", 64 | "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", 65 | "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", 66 | "dev": true, 67 | "license": "MIT", 68 | "dependencies": { 69 | "@jridgewell/gen-mapping": "^0.3.5", 70 | "@jridgewell/trace-mapping": "^0.3.25" 71 | } 72 | }, 73 | "node_modules/@jridgewell/sourcemap-codec": { 74 | "version": "1.5.0", 75 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 76 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 77 | "dev": true, 78 | "license": "MIT" 79 | }, 80 | "node_modules/@jridgewell/trace-mapping": { 81 | "version": "0.3.25", 82 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 83 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 84 | "dev": true, 85 | "license": "MIT", 86 | "dependencies": { 87 | "@jridgewell/resolve-uri": "^3.1.0", 88 | "@jridgewell/sourcemap-codec": "^1.4.14" 89 | } 90 | }, 91 | "node_modules/@nodelib/fs.scandir": { 92 | "version": "2.1.5", 93 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 94 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 95 | "dev": true, 96 | "license": "MIT", 97 | "dependencies": { 98 | "@nodelib/fs.stat": "2.0.5", 99 | "run-parallel": "^1.1.9" 100 | }, 101 | "engines": { 102 | "node": ">= 8" 103 | } 104 | }, 105 | "node_modules/@nodelib/fs.stat": { 106 | "version": "2.0.5", 107 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 108 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 109 | "dev": true, 110 | "license": "MIT", 111 | "engines": { 112 | "node": ">= 8" 113 | } 114 | }, 115 | "node_modules/@nodelib/fs.walk": { 116 | "version": "1.2.8", 117 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 118 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 119 | "dev": true, 120 | "license": "MIT", 121 | "dependencies": { 122 | "@nodelib/fs.scandir": "2.1.5", 123 | "fastq": "^1.6.0" 124 | }, 125 | "engines": { 126 | "node": ">= 8" 127 | } 128 | }, 129 | "node_modules/@types/eslint": { 130 | "version": "9.6.1", 131 | "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", 132 | "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", 133 | "dev": true, 134 | "license": "MIT", 135 | "dependencies": { 136 | "@types/estree": "*", 137 | "@types/json-schema": "*" 138 | } 139 | }, 140 | "node_modules/@types/eslint-scope": { 141 | "version": "3.7.7", 142 | "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", 143 | "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", 144 | "dev": true, 145 | "license": "MIT", 146 | "dependencies": { 147 | "@types/eslint": "*", 148 | "@types/estree": "*" 149 | } 150 | }, 151 | "node_modules/@types/estree": { 152 | "version": "1.0.6", 153 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", 154 | "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", 155 | "dev": true, 156 | "license": "MIT" 157 | }, 158 | "node_modules/@types/json-schema": { 159 | "version": "7.0.15", 160 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 161 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 162 | "dev": true, 163 | "license": "MIT" 164 | }, 165 | "node_modules/@types/node": { 166 | "version": "22.13.10", 167 | "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.10.tgz", 168 | "integrity": "sha512-I6LPUvlRH+O6VRUqYOcMudhaIdUVWfsjnZavnsraHvpBwaEyMN29ry+0UVJhImYL16xsscu0aske3yA+uPOWfw==", 169 | "dev": true, 170 | "license": "MIT", 171 | "dependencies": { 172 | "undici-types": "~6.20.0" 173 | } 174 | }, 175 | "node_modules/@webassemblyjs/ast": { 176 | "version": "1.14.1", 177 | "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", 178 | "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", 179 | "dev": true, 180 | "license": "MIT", 181 | "dependencies": { 182 | "@webassemblyjs/helper-numbers": "1.13.2", 183 | "@webassemblyjs/helper-wasm-bytecode": "1.13.2" 184 | } 185 | }, 186 | "node_modules/@webassemblyjs/floating-point-hex-parser": { 187 | "version": "1.13.2", 188 | "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", 189 | "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", 190 | "dev": true, 191 | "license": "MIT" 192 | }, 193 | "node_modules/@webassemblyjs/helper-api-error": { 194 | "version": "1.13.2", 195 | "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", 196 | "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", 197 | "dev": true, 198 | "license": "MIT" 199 | }, 200 | "node_modules/@webassemblyjs/helper-buffer": { 201 | "version": "1.14.1", 202 | "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", 203 | "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", 204 | "dev": true, 205 | "license": "MIT" 206 | }, 207 | "node_modules/@webassemblyjs/helper-numbers": { 208 | "version": "1.13.2", 209 | "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", 210 | "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", 211 | "dev": true, 212 | "license": "MIT", 213 | "dependencies": { 214 | "@webassemblyjs/floating-point-hex-parser": "1.13.2", 215 | "@webassemblyjs/helper-api-error": "1.13.2", 216 | "@xtuc/long": "4.2.2" 217 | } 218 | }, 219 | "node_modules/@webassemblyjs/helper-wasm-bytecode": { 220 | "version": "1.13.2", 221 | "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", 222 | "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", 223 | "dev": true, 224 | "license": "MIT" 225 | }, 226 | "node_modules/@webassemblyjs/helper-wasm-section": { 227 | "version": "1.14.1", 228 | "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", 229 | "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", 230 | "dev": true, 231 | "license": "MIT", 232 | "dependencies": { 233 | "@webassemblyjs/ast": "1.14.1", 234 | "@webassemblyjs/helper-buffer": "1.14.1", 235 | "@webassemblyjs/helper-wasm-bytecode": "1.13.2", 236 | "@webassemblyjs/wasm-gen": "1.14.1" 237 | } 238 | }, 239 | "node_modules/@webassemblyjs/ieee754": { 240 | "version": "1.13.2", 241 | "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", 242 | "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", 243 | "dev": true, 244 | "license": "MIT", 245 | "dependencies": { 246 | "@xtuc/ieee754": "^1.2.0" 247 | } 248 | }, 249 | "node_modules/@webassemblyjs/leb128": { 250 | "version": "1.13.2", 251 | "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", 252 | "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", 253 | "dev": true, 254 | "license": "Apache-2.0", 255 | "dependencies": { 256 | "@xtuc/long": "4.2.2" 257 | } 258 | }, 259 | "node_modules/@webassemblyjs/utf8": { 260 | "version": "1.13.2", 261 | "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", 262 | "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", 263 | "dev": true, 264 | "license": "MIT" 265 | }, 266 | "node_modules/@webassemblyjs/wasm-edit": { 267 | "version": "1.14.1", 268 | "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", 269 | "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", 270 | "dev": true, 271 | "license": "MIT", 272 | "dependencies": { 273 | "@webassemblyjs/ast": "1.14.1", 274 | "@webassemblyjs/helper-buffer": "1.14.1", 275 | "@webassemblyjs/helper-wasm-bytecode": "1.13.2", 276 | "@webassemblyjs/helper-wasm-section": "1.14.1", 277 | "@webassemblyjs/wasm-gen": "1.14.1", 278 | "@webassemblyjs/wasm-opt": "1.14.1", 279 | "@webassemblyjs/wasm-parser": "1.14.1", 280 | "@webassemblyjs/wast-printer": "1.14.1" 281 | } 282 | }, 283 | "node_modules/@webassemblyjs/wasm-gen": { 284 | "version": "1.14.1", 285 | "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", 286 | "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", 287 | "dev": true, 288 | "license": "MIT", 289 | "dependencies": { 290 | "@webassemblyjs/ast": "1.14.1", 291 | "@webassemblyjs/helper-wasm-bytecode": "1.13.2", 292 | "@webassemblyjs/ieee754": "1.13.2", 293 | "@webassemblyjs/leb128": "1.13.2", 294 | "@webassemblyjs/utf8": "1.13.2" 295 | } 296 | }, 297 | "node_modules/@webassemblyjs/wasm-opt": { 298 | "version": "1.14.1", 299 | "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", 300 | "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", 301 | "dev": true, 302 | "license": "MIT", 303 | "dependencies": { 304 | "@webassemblyjs/ast": "1.14.1", 305 | "@webassemblyjs/helper-buffer": "1.14.1", 306 | "@webassemblyjs/wasm-gen": "1.14.1", 307 | "@webassemblyjs/wasm-parser": "1.14.1" 308 | } 309 | }, 310 | "node_modules/@webassemblyjs/wasm-parser": { 311 | "version": "1.14.1", 312 | "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", 313 | "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", 314 | "dev": true, 315 | "license": "MIT", 316 | "dependencies": { 317 | "@webassemblyjs/ast": "1.14.1", 318 | "@webassemblyjs/helper-api-error": "1.13.2", 319 | "@webassemblyjs/helper-wasm-bytecode": "1.13.2", 320 | "@webassemblyjs/ieee754": "1.13.2", 321 | "@webassemblyjs/leb128": "1.13.2", 322 | "@webassemblyjs/utf8": "1.13.2" 323 | } 324 | }, 325 | "node_modules/@webassemblyjs/wast-printer": { 326 | "version": "1.14.1", 327 | "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", 328 | "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", 329 | "dev": true, 330 | "license": "MIT", 331 | "dependencies": { 332 | "@webassemblyjs/ast": "1.14.1", 333 | "@xtuc/long": "4.2.2" 334 | } 335 | }, 336 | "node_modules/@webpack-cli/configtest": { 337 | "version": "3.0.1", 338 | "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-3.0.1.tgz", 339 | "integrity": "sha512-u8d0pJ5YFgneF/GuvEiDA61Tf1VDomHHYMjv/wc9XzYj7nopltpG96nXN5dJRstxZhcNpV1g+nT6CydO7pHbjA==", 340 | "dev": true, 341 | "license": "MIT", 342 | "engines": { 343 | "node": ">=18.12.0" 344 | }, 345 | "peerDependencies": { 346 | "webpack": "^5.82.0", 347 | "webpack-cli": "6.x.x" 348 | } 349 | }, 350 | "node_modules/@webpack-cli/info": { 351 | "version": "3.0.1", 352 | "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-3.0.1.tgz", 353 | "integrity": "sha512-coEmDzc2u/ffMvuW9aCjoRzNSPDl/XLuhPdlFRpT9tZHmJ/039az33CE7uH+8s0uL1j5ZNtfdv0HkfaKRBGJsQ==", 354 | "dev": true, 355 | "license": "MIT", 356 | "engines": { 357 | "node": ">=18.12.0" 358 | }, 359 | "peerDependencies": { 360 | "webpack": "^5.82.0", 361 | "webpack-cli": "6.x.x" 362 | } 363 | }, 364 | "node_modules/@webpack-cli/serve": { 365 | "version": "3.0.1", 366 | "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-3.0.1.tgz", 367 | "integrity": "sha512-sbgw03xQaCLiT6gcY/6u3qBDn01CWw/nbaXl3gTdTFuJJ75Gffv3E3DBpgvY2fkkrdS1fpjaXNOmJlnbtKauKg==", 368 | "dev": true, 369 | "license": "MIT", 370 | "engines": { 371 | "node": ">=18.12.0" 372 | }, 373 | "peerDependencies": { 374 | "webpack": "^5.82.0", 375 | "webpack-cli": "6.x.x" 376 | }, 377 | "peerDependenciesMeta": { 378 | "webpack-dev-server": { 379 | "optional": true 380 | } 381 | } 382 | }, 383 | "node_modules/@xtuc/ieee754": { 384 | "version": "1.2.0", 385 | "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", 386 | "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", 387 | "dev": true, 388 | "license": "BSD-3-Clause" 389 | }, 390 | "node_modules/@xtuc/long": { 391 | "version": "4.2.2", 392 | "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", 393 | "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", 394 | "dev": true, 395 | "license": "Apache-2.0" 396 | }, 397 | "node_modules/acorn": { 398 | "version": "8.14.1", 399 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", 400 | "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", 401 | "dev": true, 402 | "license": "MIT", 403 | "bin": { 404 | "acorn": "bin/acorn" 405 | }, 406 | "engines": { 407 | "node": ">=0.4.0" 408 | } 409 | }, 410 | "node_modules/acorn-jsx": { 411 | "version": "5.3.2", 412 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 413 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 414 | "dev": true, 415 | "license": "MIT", 416 | "peerDependencies": { 417 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 418 | } 419 | }, 420 | "node_modules/ajv": { 421 | "version": "8.17.1", 422 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", 423 | "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", 424 | "dev": true, 425 | "license": "MIT", 426 | "dependencies": { 427 | "fast-deep-equal": "^3.1.3", 428 | "fast-uri": "^3.0.1", 429 | "json-schema-traverse": "^1.0.0", 430 | "require-from-string": "^2.0.2" 431 | }, 432 | "funding": { 433 | "type": "github", 434 | "url": "https://github.com/sponsors/epoberezkin" 435 | } 436 | }, 437 | "node_modules/ajv-formats": { 438 | "version": "2.1.1", 439 | "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", 440 | "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", 441 | "dev": true, 442 | "license": "MIT", 443 | "dependencies": { 444 | "ajv": "^8.0.0" 445 | }, 446 | "peerDependencies": { 447 | "ajv": "^8.0.0" 448 | }, 449 | "peerDependenciesMeta": { 450 | "ajv": { 451 | "optional": true 452 | } 453 | } 454 | }, 455 | "node_modules/ajv-keywords": { 456 | "version": "5.1.0", 457 | "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", 458 | "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", 459 | "dev": true, 460 | "license": "MIT", 461 | "dependencies": { 462 | "fast-deep-equal": "^3.1.3" 463 | }, 464 | "peerDependencies": { 465 | "ajv": "^8.8.2" 466 | } 467 | }, 468 | "node_modules/ansi-styles": { 469 | "version": "4.3.0", 470 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 471 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 472 | "dev": true, 473 | "license": "MIT", 474 | "dependencies": { 475 | "color-convert": "^2.0.1" 476 | }, 477 | "engines": { 478 | "node": ">=8" 479 | }, 480 | "funding": { 481 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 482 | } 483 | }, 484 | "node_modules/argparse": { 485 | "version": "2.0.1", 486 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 487 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 488 | "dev": true, 489 | "license": "Python-2.0" 490 | }, 491 | "node_modules/balanced-match": { 492 | "version": "1.0.2", 493 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 494 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 495 | "dev": true, 496 | "license": "MIT" 497 | }, 498 | "node_modules/brace-expansion": { 499 | "version": "1.1.11", 500 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 501 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 502 | "dev": true, 503 | "license": "MIT", 504 | "dependencies": { 505 | "balanced-match": "^1.0.0", 506 | "concat-map": "0.0.1" 507 | } 508 | }, 509 | "node_modules/braces": { 510 | "version": "3.0.3", 511 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 512 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 513 | "dev": true, 514 | "license": "MIT", 515 | "dependencies": { 516 | "fill-range": "^7.1.1" 517 | }, 518 | "engines": { 519 | "node": ">=8" 520 | } 521 | }, 522 | "node_modules/browserslist": { 523 | "version": "4.24.4", 524 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz", 525 | "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==", 526 | "dev": true, 527 | "funding": [ 528 | { 529 | "type": "opencollective", 530 | "url": "https://opencollective.com/browserslist" 531 | }, 532 | { 533 | "type": "tidelift", 534 | "url": "https://tidelift.com/funding/github/npm/browserslist" 535 | }, 536 | { 537 | "type": "github", 538 | "url": "https://github.com/sponsors/ai" 539 | } 540 | ], 541 | "license": "MIT", 542 | "dependencies": { 543 | "caniuse-lite": "^1.0.30001688", 544 | "electron-to-chromium": "^1.5.73", 545 | "node-releases": "^2.0.19", 546 | "update-browserslist-db": "^1.1.1" 547 | }, 548 | "bin": { 549 | "browserslist": "cli.js" 550 | }, 551 | "engines": { 552 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 553 | } 554 | }, 555 | "node_modules/buffer-from": { 556 | "version": "1.1.2", 557 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", 558 | "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", 559 | "dev": true, 560 | "license": "MIT" 561 | }, 562 | "node_modules/callsites": { 563 | "version": "3.1.0", 564 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 565 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 566 | "dev": true, 567 | "license": "MIT", 568 | "engines": { 569 | "node": ">=6" 570 | } 571 | }, 572 | "node_modules/caniuse-lite": { 573 | "version": "1.0.30001705", 574 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001705.tgz", 575 | "integrity": "sha512-S0uyMMiYvA7CxNgomYBwwwPUnWzFD83f3B1ce5jHUfHTH//QL6hHsreI8RVC5606R4ssqravelYO5TU6t8sEyg==", 576 | "dev": true, 577 | "funding": [ 578 | { 579 | "type": "opencollective", 580 | "url": "https://opencollective.com/browserslist" 581 | }, 582 | { 583 | "type": "tidelift", 584 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 585 | }, 586 | { 587 | "type": "github", 588 | "url": "https://github.com/sponsors/ai" 589 | } 590 | ], 591 | "license": "CC-BY-4.0" 592 | }, 593 | "node_modules/chalk": { 594 | "version": "4.1.2", 595 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 596 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 597 | "dev": true, 598 | "license": "MIT", 599 | "dependencies": { 600 | "ansi-styles": "^4.1.0", 601 | "supports-color": "^7.1.0" 602 | }, 603 | "engines": { 604 | "node": ">=10" 605 | }, 606 | "funding": { 607 | "url": "https://github.com/chalk/chalk?sponsor=1" 608 | } 609 | }, 610 | "node_modules/chalk/node_modules/supports-color": { 611 | "version": "7.2.0", 612 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 613 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 614 | "dev": true, 615 | "license": "MIT", 616 | "dependencies": { 617 | "has-flag": "^4.0.0" 618 | }, 619 | "engines": { 620 | "node": ">=8" 621 | } 622 | }, 623 | "node_modules/chrome-trace-event": { 624 | "version": "1.0.4", 625 | "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", 626 | "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", 627 | "dev": true, 628 | "license": "MIT", 629 | "engines": { 630 | "node": ">=6.0" 631 | } 632 | }, 633 | "node_modules/clone-deep": { 634 | "version": "4.0.1", 635 | "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", 636 | "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", 637 | "dev": true, 638 | "license": "MIT", 639 | "dependencies": { 640 | "is-plain-object": "^2.0.4", 641 | "kind-of": "^6.0.2", 642 | "shallow-clone": "^3.0.0" 643 | }, 644 | "engines": { 645 | "node": ">=6" 646 | } 647 | }, 648 | "node_modules/color-convert": { 649 | "version": "2.0.1", 650 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 651 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 652 | "dev": true, 653 | "license": "MIT", 654 | "dependencies": { 655 | "color-name": "~1.1.4" 656 | }, 657 | "engines": { 658 | "node": ">=7.0.0" 659 | } 660 | }, 661 | "node_modules/color-name": { 662 | "version": "1.1.4", 663 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 664 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 665 | "dev": true, 666 | "license": "MIT" 667 | }, 668 | "node_modules/colorette": { 669 | "version": "2.0.20", 670 | "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", 671 | "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", 672 | "dev": true, 673 | "license": "MIT" 674 | }, 675 | "node_modules/commander": { 676 | "version": "2.20.3", 677 | "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", 678 | "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", 679 | "dev": true, 680 | "license": "MIT" 681 | }, 682 | "node_modules/concat-map": { 683 | "version": "0.0.1", 684 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 685 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 686 | "dev": true, 687 | "license": "MIT" 688 | }, 689 | "node_modules/cross-spawn": { 690 | "version": "7.0.6", 691 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 692 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 693 | "dev": true, 694 | "license": "MIT", 695 | "dependencies": { 696 | "path-key": "^3.1.0", 697 | "shebang-command": "^2.0.0", 698 | "which": "^2.0.1" 699 | }, 700 | "engines": { 701 | "node": ">= 8" 702 | } 703 | }, 704 | "node_modules/debug": { 705 | "version": "4.4.0", 706 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", 707 | "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", 708 | "dev": true, 709 | "license": "MIT", 710 | "dependencies": { 711 | "ms": "^2.1.3" 712 | }, 713 | "engines": { 714 | "node": ">=6.0" 715 | }, 716 | "peerDependenciesMeta": { 717 | "supports-color": { 718 | "optional": true 719 | } 720 | } 721 | }, 722 | "node_modules/deep-is": { 723 | "version": "0.1.4", 724 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 725 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 726 | "dev": true, 727 | "license": "MIT" 728 | }, 729 | "node_modules/electron-to-chromium": { 730 | "version": "1.5.119", 731 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.119.tgz", 732 | "integrity": "sha512-Ku4NMzUjz3e3Vweh7PhApPrZSS4fyiCIbcIrG9eKrriYVLmbMepETR/v6SU7xPm98QTqMSYiCwfO89QNjXLkbQ==", 733 | "dev": true, 734 | "license": "ISC" 735 | }, 736 | "node_modules/enhanced-resolve": { 737 | "version": "5.18.1", 738 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz", 739 | "integrity": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==", 740 | "dev": true, 741 | "license": "MIT", 742 | "dependencies": { 743 | "graceful-fs": "^4.2.4", 744 | "tapable": "^2.2.0" 745 | }, 746 | "engines": { 747 | "node": ">=10.13.0" 748 | } 749 | }, 750 | "node_modules/envinfo": { 751 | "version": "7.14.0", 752 | "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.14.0.tgz", 753 | "integrity": "sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==", 754 | "dev": true, 755 | "license": "MIT", 756 | "bin": { 757 | "envinfo": "dist/cli.js" 758 | }, 759 | "engines": { 760 | "node": ">=4" 761 | } 762 | }, 763 | "node_modules/es-module-lexer": { 764 | "version": "1.6.0", 765 | "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.6.0.tgz", 766 | "integrity": "sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==", 767 | "dev": true, 768 | "license": "MIT" 769 | }, 770 | "node_modules/escalade": { 771 | "version": "3.2.0", 772 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 773 | "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 774 | "dev": true, 775 | "license": "MIT", 776 | "engines": { 777 | "node": ">=6" 778 | } 779 | }, 780 | "node_modules/escape-string-regexp": { 781 | "version": "4.0.0", 782 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 783 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 784 | "dev": true, 785 | "license": "MIT", 786 | "engines": { 787 | "node": ">=10" 788 | }, 789 | "funding": { 790 | "url": "https://github.com/sponsors/sindresorhus" 791 | } 792 | }, 793 | "node_modules/eslint-scope": { 794 | "version": "5.1.1", 795 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", 796 | "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", 797 | "dev": true, 798 | "license": "BSD-2-Clause", 799 | "dependencies": { 800 | "esrecurse": "^4.3.0", 801 | "estraverse": "^4.1.1" 802 | }, 803 | "engines": { 804 | "node": ">=8.0.0" 805 | } 806 | }, 807 | "node_modules/eslint-visitor-keys": { 808 | "version": "4.2.0", 809 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", 810 | "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", 811 | "dev": true, 812 | "license": "Apache-2.0", 813 | "engines": { 814 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 815 | }, 816 | "funding": { 817 | "url": "https://opencollective.com/eslint" 818 | } 819 | }, 820 | "node_modules/espree": { 821 | "version": "10.3.0", 822 | "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", 823 | "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", 824 | "dev": true, 825 | "license": "BSD-2-Clause", 826 | "dependencies": { 827 | "acorn": "^8.14.0", 828 | "acorn-jsx": "^5.3.2", 829 | "eslint-visitor-keys": "^4.2.0" 830 | }, 831 | "engines": { 832 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 833 | }, 834 | "funding": { 835 | "url": "https://opencollective.com/eslint" 836 | } 837 | }, 838 | "node_modules/esquery": { 839 | "version": "1.6.0", 840 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", 841 | "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", 842 | "dev": true, 843 | "license": "BSD-3-Clause", 844 | "dependencies": { 845 | "estraverse": "^5.1.0" 846 | }, 847 | "engines": { 848 | "node": ">=0.10" 849 | } 850 | }, 851 | "node_modules/esquery/node_modules/estraverse": { 852 | "version": "5.3.0", 853 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 854 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 855 | "dev": true, 856 | "license": "BSD-2-Clause", 857 | "engines": { 858 | "node": ">=4.0" 859 | } 860 | }, 861 | "node_modules/esrecurse": { 862 | "version": "4.3.0", 863 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 864 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 865 | "dev": true, 866 | "license": "BSD-2-Clause", 867 | "dependencies": { 868 | "estraverse": "^5.2.0" 869 | }, 870 | "engines": { 871 | "node": ">=4.0" 872 | } 873 | }, 874 | "node_modules/esrecurse/node_modules/estraverse": { 875 | "version": "5.3.0", 876 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 877 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 878 | "dev": true, 879 | "license": "BSD-2-Clause", 880 | "engines": { 881 | "node": ">=4.0" 882 | } 883 | }, 884 | "node_modules/estraverse": { 885 | "version": "4.3.0", 886 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", 887 | "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", 888 | "dev": true, 889 | "license": "BSD-2-Clause", 890 | "engines": { 891 | "node": ">=4.0" 892 | } 893 | }, 894 | "node_modules/esutils": { 895 | "version": "2.0.3", 896 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 897 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 898 | "dev": true, 899 | "license": "BSD-2-Clause", 900 | "engines": { 901 | "node": ">=0.10.0" 902 | } 903 | }, 904 | "node_modules/events": { 905 | "version": "3.3.0", 906 | "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", 907 | "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", 908 | "dev": true, 909 | "license": "MIT", 910 | "engines": { 911 | "node": ">=0.8.x" 912 | } 913 | }, 914 | "node_modules/fast-deep-equal": { 915 | "version": "3.1.3", 916 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 917 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 918 | "dev": true, 919 | "license": "MIT" 920 | }, 921 | "node_modules/fast-glob": { 922 | "version": "3.3.3", 923 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", 924 | "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", 925 | "dev": true, 926 | "license": "MIT", 927 | "dependencies": { 928 | "@nodelib/fs.stat": "^2.0.2", 929 | "@nodelib/fs.walk": "^1.2.3", 930 | "glob-parent": "^5.1.2", 931 | "merge2": "^1.3.0", 932 | "micromatch": "^4.0.8" 933 | }, 934 | "engines": { 935 | "node": ">=8.6.0" 936 | } 937 | }, 938 | "node_modules/fast-glob/node_modules/glob-parent": { 939 | "version": "5.1.2", 940 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 941 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 942 | "dev": true, 943 | "license": "ISC", 944 | "dependencies": { 945 | "is-glob": "^4.0.1" 946 | }, 947 | "engines": { 948 | "node": ">= 6" 949 | } 950 | }, 951 | "node_modules/fast-json-stable-stringify": { 952 | "version": "2.1.0", 953 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 954 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 955 | "dev": true, 956 | "license": "MIT" 957 | }, 958 | "node_modules/fast-levenshtein": { 959 | "version": "2.0.6", 960 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 961 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 962 | "dev": true, 963 | "license": "MIT" 964 | }, 965 | "node_modules/fast-uri": { 966 | "version": "3.0.6", 967 | "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz", 968 | "integrity": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==", 969 | "dev": true, 970 | "funding": [ 971 | { 972 | "type": "github", 973 | "url": "https://github.com/sponsors/fastify" 974 | }, 975 | { 976 | "type": "opencollective", 977 | "url": "https://opencollective.com/fastify" 978 | } 979 | ], 980 | "license": "BSD-3-Clause" 981 | }, 982 | "node_modules/fastest-levenshtein": { 983 | "version": "1.0.16", 984 | "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", 985 | "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", 986 | "dev": true, 987 | "license": "MIT", 988 | "engines": { 989 | "node": ">= 4.9.1" 990 | } 991 | }, 992 | "node_modules/fastq": { 993 | "version": "1.19.1", 994 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", 995 | "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", 996 | "dev": true, 997 | "license": "ISC", 998 | "dependencies": { 999 | "reusify": "^1.0.4" 1000 | } 1001 | }, 1002 | "node_modules/file-entry-cache": { 1003 | "version": "8.0.0", 1004 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", 1005 | "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", 1006 | "dev": true, 1007 | "license": "MIT", 1008 | "dependencies": { 1009 | "flat-cache": "^4.0.0" 1010 | }, 1011 | "engines": { 1012 | "node": ">=16.0.0" 1013 | } 1014 | }, 1015 | "node_modules/fill-range": { 1016 | "version": "7.1.1", 1017 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1018 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1019 | "dev": true, 1020 | "license": "MIT", 1021 | "dependencies": { 1022 | "to-regex-range": "^5.0.1" 1023 | }, 1024 | "engines": { 1025 | "node": ">=8" 1026 | } 1027 | }, 1028 | "node_modules/find-up": { 1029 | "version": "4.1.0", 1030 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", 1031 | "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", 1032 | "dev": true, 1033 | "license": "MIT", 1034 | "dependencies": { 1035 | "locate-path": "^5.0.0", 1036 | "path-exists": "^4.0.0" 1037 | }, 1038 | "engines": { 1039 | "node": ">=8" 1040 | } 1041 | }, 1042 | "node_modules/flat": { 1043 | "version": "5.0.2", 1044 | "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", 1045 | "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", 1046 | "dev": true, 1047 | "license": "BSD-3-Clause", 1048 | "bin": { 1049 | "flat": "cli.js" 1050 | } 1051 | }, 1052 | "node_modules/flat-cache": { 1053 | "version": "4.0.1", 1054 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", 1055 | "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", 1056 | "dev": true, 1057 | "license": "MIT", 1058 | "dependencies": { 1059 | "flatted": "^3.2.9", 1060 | "keyv": "^4.5.4" 1061 | }, 1062 | "engines": { 1063 | "node": ">=16" 1064 | } 1065 | }, 1066 | "node_modules/flatted": { 1067 | "version": "3.3.3", 1068 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", 1069 | "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", 1070 | "dev": true, 1071 | "license": "ISC" 1072 | }, 1073 | "node_modules/function-bind": { 1074 | "version": "1.1.2", 1075 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 1076 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 1077 | "dev": true, 1078 | "license": "MIT", 1079 | "funding": { 1080 | "url": "https://github.com/sponsors/ljharb" 1081 | } 1082 | }, 1083 | "node_modules/glob-parent": { 1084 | "version": "6.0.2", 1085 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1086 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1087 | "dev": true, 1088 | "license": "ISC", 1089 | "dependencies": { 1090 | "is-glob": "^4.0.3" 1091 | }, 1092 | "engines": { 1093 | "node": ">=10.13.0" 1094 | } 1095 | }, 1096 | "node_modules/glob-to-regexp": { 1097 | "version": "0.4.1", 1098 | "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", 1099 | "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", 1100 | "dev": true, 1101 | "license": "BSD-2-Clause" 1102 | }, 1103 | "node_modules/graceful-fs": { 1104 | "version": "4.2.11", 1105 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1106 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 1107 | "dev": true, 1108 | "license": "ISC" 1109 | }, 1110 | "node_modules/graphemer": { 1111 | "version": "1.4.0", 1112 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 1113 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 1114 | "dev": true, 1115 | "license": "MIT" 1116 | }, 1117 | "node_modules/has-flag": { 1118 | "version": "4.0.0", 1119 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1120 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1121 | "dev": true, 1122 | "license": "MIT", 1123 | "engines": { 1124 | "node": ">=8" 1125 | } 1126 | }, 1127 | "node_modules/hasown": { 1128 | "version": "2.0.2", 1129 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 1130 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 1131 | "dev": true, 1132 | "license": "MIT", 1133 | "dependencies": { 1134 | "function-bind": "^1.1.2" 1135 | }, 1136 | "engines": { 1137 | "node": ">= 0.4" 1138 | } 1139 | }, 1140 | "node_modules/ignore": { 1141 | "version": "5.3.2", 1142 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", 1143 | "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", 1144 | "dev": true, 1145 | "license": "MIT", 1146 | "engines": { 1147 | "node": ">= 4" 1148 | } 1149 | }, 1150 | "node_modules/import-fresh": { 1151 | "version": "3.3.1", 1152 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", 1153 | "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", 1154 | "dev": true, 1155 | "license": "MIT", 1156 | "dependencies": { 1157 | "parent-module": "^1.0.0", 1158 | "resolve-from": "^4.0.0" 1159 | }, 1160 | "engines": { 1161 | "node": ">=6" 1162 | }, 1163 | "funding": { 1164 | "url": "https://github.com/sponsors/sindresorhus" 1165 | } 1166 | }, 1167 | "node_modules/import-fresh/node_modules/resolve-from": { 1168 | "version": "4.0.0", 1169 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 1170 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 1171 | "dev": true, 1172 | "license": "MIT", 1173 | "engines": { 1174 | "node": ">=4" 1175 | } 1176 | }, 1177 | "node_modules/import-local": { 1178 | "version": "3.2.0", 1179 | "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", 1180 | "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", 1181 | "dev": true, 1182 | "license": "MIT", 1183 | "dependencies": { 1184 | "pkg-dir": "^4.2.0", 1185 | "resolve-cwd": "^3.0.0" 1186 | }, 1187 | "bin": { 1188 | "import-local-fixture": "fixtures/cli.js" 1189 | }, 1190 | "engines": { 1191 | "node": ">=8" 1192 | }, 1193 | "funding": { 1194 | "url": "https://github.com/sponsors/sindresorhus" 1195 | } 1196 | }, 1197 | "node_modules/imurmurhash": { 1198 | "version": "0.1.4", 1199 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1200 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 1201 | "dev": true, 1202 | "license": "MIT", 1203 | "engines": { 1204 | "node": ">=0.8.19" 1205 | } 1206 | }, 1207 | "node_modules/interpret": { 1208 | "version": "3.1.1", 1209 | "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", 1210 | "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", 1211 | "dev": true, 1212 | "license": "MIT", 1213 | "engines": { 1214 | "node": ">=10.13.0" 1215 | } 1216 | }, 1217 | "node_modules/is-core-module": { 1218 | "version": "2.16.1", 1219 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", 1220 | "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", 1221 | "dev": true, 1222 | "license": "MIT", 1223 | "dependencies": { 1224 | "hasown": "^2.0.2" 1225 | }, 1226 | "engines": { 1227 | "node": ">= 0.4" 1228 | }, 1229 | "funding": { 1230 | "url": "https://github.com/sponsors/ljharb" 1231 | } 1232 | }, 1233 | "node_modules/is-extglob": { 1234 | "version": "2.1.1", 1235 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1236 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1237 | "dev": true, 1238 | "license": "MIT", 1239 | "engines": { 1240 | "node": ">=0.10.0" 1241 | } 1242 | }, 1243 | "node_modules/is-glob": { 1244 | "version": "4.0.3", 1245 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1246 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1247 | "dev": true, 1248 | "license": "MIT", 1249 | "dependencies": { 1250 | "is-extglob": "^2.1.1" 1251 | }, 1252 | "engines": { 1253 | "node": ">=0.10.0" 1254 | } 1255 | }, 1256 | "node_modules/is-number": { 1257 | "version": "7.0.0", 1258 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1259 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1260 | "dev": true, 1261 | "license": "MIT", 1262 | "engines": { 1263 | "node": ">=0.12.0" 1264 | } 1265 | }, 1266 | "node_modules/is-plain-object": { 1267 | "version": "2.0.4", 1268 | "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", 1269 | "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", 1270 | "dev": true, 1271 | "license": "MIT", 1272 | "dependencies": { 1273 | "isobject": "^3.0.1" 1274 | }, 1275 | "engines": { 1276 | "node": ">=0.10.0" 1277 | } 1278 | }, 1279 | "node_modules/isexe": { 1280 | "version": "2.0.0", 1281 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1282 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 1283 | "dev": true, 1284 | "license": "ISC" 1285 | }, 1286 | "node_modules/isobject": { 1287 | "version": "3.0.1", 1288 | "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", 1289 | "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", 1290 | "dev": true, 1291 | "license": "MIT", 1292 | "engines": { 1293 | "node": ">=0.10.0" 1294 | } 1295 | }, 1296 | "node_modules/jest-worker": { 1297 | "version": "27.5.1", 1298 | "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", 1299 | "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", 1300 | "dev": true, 1301 | "license": "MIT", 1302 | "dependencies": { 1303 | "@types/node": "*", 1304 | "merge-stream": "^2.0.0", 1305 | "supports-color": "^8.0.0" 1306 | }, 1307 | "engines": { 1308 | "node": ">= 10.13.0" 1309 | } 1310 | }, 1311 | "node_modules/js-yaml": { 1312 | "version": "4.1.0", 1313 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 1314 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 1315 | "dev": true, 1316 | "license": "MIT", 1317 | "dependencies": { 1318 | "argparse": "^2.0.1" 1319 | }, 1320 | "bin": { 1321 | "js-yaml": "bin/js-yaml.js" 1322 | } 1323 | }, 1324 | "node_modules/json-buffer": { 1325 | "version": "3.0.1", 1326 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 1327 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 1328 | "dev": true, 1329 | "license": "MIT" 1330 | }, 1331 | "node_modules/json-parse-even-better-errors": { 1332 | "version": "2.3.1", 1333 | "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", 1334 | "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", 1335 | "dev": true, 1336 | "license": "MIT" 1337 | }, 1338 | "node_modules/json-schema-doc-ts": { 1339 | "version": "2.0.0", 1340 | "resolved": "git+ssh://git@github.com/OntoDevelopment/json-schema-doc-ts.git#be242e47718b915de7d86dfffffd76e865c645b6", 1341 | "dev": true, 1342 | "license": "SEE LICENSE IN LICENSE", 1343 | "dependencies": { 1344 | "acorn": "^8.14.1", 1345 | "acorn-jsx": "^5.3.2", 1346 | "ajv": "^6.12.6", 1347 | "ansi-styles": "^4.3.0", 1348 | "argparse": "^2.0.1", 1349 | "balanced-match": "^1.0.2", 1350 | "brace-expansion": "^1.1.11", 1351 | "braces": "^3.0.3", 1352 | "callsites": "^3.1.0", 1353 | "chalk": "^4.1.2", 1354 | "color-convert": "^2.0.1", 1355 | "color-name": "^1.1.4", 1356 | "concat-map": "^0.0.1", 1357 | "cross-spawn": "^7.0.6", 1358 | "debug": "^4.4.0", 1359 | "deep-is": "^0.1.4", 1360 | "escape-string-regexp": "^4.0.0", 1361 | "eslint-scope": "^8.3.0", 1362 | "eslint-visitor-keys": "^4.2.0", 1363 | "espree": "^10.3.0", 1364 | "esquery": "^1.6.0", 1365 | "esrecurse": "^4.3.0", 1366 | "estraverse": "^5.3.0", 1367 | "esutils": "^2.0.3", 1368 | "fast-deep-equal": "^3.1.3", 1369 | "fast-glob": "^3.3.3", 1370 | "fast-json-stable-stringify": "^2.1.0", 1371 | "fast-levenshtein": "^2.0.6", 1372 | "fastq": "^1.19.1", 1373 | "file-entry-cache": "^8.0.0", 1374 | "fill-range": "^7.1.1", 1375 | "find-up": "^5.0.0", 1376 | "flat-cache": "^4.0.1", 1377 | "flatted": "^3.3.3", 1378 | "glob-parent": "^6.0.2", 1379 | "graphemer": "^1.4.0", 1380 | "has-flag": "^4.0.0", 1381 | "ignore": "^5.3.2", 1382 | "import-fresh": "^3.3.1", 1383 | "imurmurhash": "^0.1.4", 1384 | "is-extglob": "^2.1.1", 1385 | "is-glob": "^4.0.3", 1386 | "is-number": "^7.0.0", 1387 | "isexe": "^2.0.0", 1388 | "js-yaml": "^4.1.0", 1389 | "json-buffer": "^3.0.1", 1390 | "json-schema-traverse": "^0.4.1", 1391 | "json-stable-stringify-without-jsonify": "^1.0.1", 1392 | "keyv": "^4.5.4", 1393 | "levn": "^0.4.1", 1394 | "locate-path": "^6.0.0", 1395 | "lodash.merge": "^4.6.2", 1396 | "merge2": "^1.4.1", 1397 | "micromatch": "^4.0.8", 1398 | "minimatch": "^3.1.2", 1399 | "ms": "^2.1.3", 1400 | "natural-compare": "^1.4.0", 1401 | "optionator": "^0.9.4", 1402 | "p-limit": "^3.1.0", 1403 | "p-locate": "^5.0.0", 1404 | "parent-module": "^1.0.1", 1405 | "path-exists": "^4.0.0", 1406 | "path-key": "^3.1.1", 1407 | "picomatch": "^2.3.1", 1408 | "prelude-ls": "^1.2.1", 1409 | "punycode": "^2.3.1", 1410 | "queue-microtask": "^1.2.3", 1411 | "resolve-from": "^4.0.0", 1412 | "reusify": "^1.1.0", 1413 | "run-parallel": "^1.2.0", 1414 | "semver": "^7.7.1", 1415 | "shebang-command": "^2.0.0", 1416 | "shebang-regex": "^3.0.0", 1417 | "strip-json-comments": "^3.1.1", 1418 | "supports-color": "^7.2.0", 1419 | "to-regex-range": "^5.0.1", 1420 | "ts-api-utils": "^2.0.1", 1421 | "type-check": "^0.4.0", 1422 | "typescript": "^5.8.2", 1423 | "uri-js": "^4.4.1", 1424 | "which": "^2.0.2", 1425 | "word-wrap": "^1.2.5", 1426 | "yocto-queue": "^0.1.0" 1427 | } 1428 | }, 1429 | "node_modules/json-schema-doc-ts/node_modules/ajv": { 1430 | "version": "6.12.6", 1431 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 1432 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 1433 | "dev": true, 1434 | "license": "MIT", 1435 | "dependencies": { 1436 | "fast-deep-equal": "^3.1.1", 1437 | "fast-json-stable-stringify": "^2.0.0", 1438 | "json-schema-traverse": "^0.4.1", 1439 | "uri-js": "^4.2.2" 1440 | }, 1441 | "funding": { 1442 | "type": "github", 1443 | "url": "https://github.com/sponsors/epoberezkin" 1444 | } 1445 | }, 1446 | "node_modules/json-schema-doc-ts/node_modules/eslint-scope": { 1447 | "version": "8.3.0", 1448 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.3.0.tgz", 1449 | "integrity": "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==", 1450 | "dev": true, 1451 | "license": "BSD-2-Clause", 1452 | "dependencies": { 1453 | "esrecurse": "^4.3.0", 1454 | "estraverse": "^5.2.0" 1455 | }, 1456 | "engines": { 1457 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1458 | }, 1459 | "funding": { 1460 | "url": "https://opencollective.com/eslint" 1461 | } 1462 | }, 1463 | "node_modules/json-schema-doc-ts/node_modules/estraverse": { 1464 | "version": "5.3.0", 1465 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1466 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1467 | "dev": true, 1468 | "license": "BSD-2-Clause", 1469 | "engines": { 1470 | "node": ">=4.0" 1471 | } 1472 | }, 1473 | "node_modules/json-schema-doc-ts/node_modules/find-up": { 1474 | "version": "5.0.0", 1475 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1476 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1477 | "dev": true, 1478 | "license": "MIT", 1479 | "dependencies": { 1480 | "locate-path": "^6.0.0", 1481 | "path-exists": "^4.0.0" 1482 | }, 1483 | "engines": { 1484 | "node": ">=10" 1485 | }, 1486 | "funding": { 1487 | "url": "https://github.com/sponsors/sindresorhus" 1488 | } 1489 | }, 1490 | "node_modules/json-schema-doc-ts/node_modules/json-schema-traverse": { 1491 | "version": "0.4.1", 1492 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 1493 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 1494 | "dev": true, 1495 | "license": "MIT" 1496 | }, 1497 | "node_modules/json-schema-doc-ts/node_modules/locate-path": { 1498 | "version": "6.0.0", 1499 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 1500 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 1501 | "dev": true, 1502 | "license": "MIT", 1503 | "dependencies": { 1504 | "p-locate": "^5.0.0" 1505 | }, 1506 | "engines": { 1507 | "node": ">=10" 1508 | }, 1509 | "funding": { 1510 | "url": "https://github.com/sponsors/sindresorhus" 1511 | } 1512 | }, 1513 | "node_modules/json-schema-doc-ts/node_modules/p-limit": { 1514 | "version": "3.1.0", 1515 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 1516 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 1517 | "dev": true, 1518 | "license": "MIT", 1519 | "dependencies": { 1520 | "yocto-queue": "^0.1.0" 1521 | }, 1522 | "engines": { 1523 | "node": ">=10" 1524 | }, 1525 | "funding": { 1526 | "url": "https://github.com/sponsors/sindresorhus" 1527 | } 1528 | }, 1529 | "node_modules/json-schema-doc-ts/node_modules/p-locate": { 1530 | "version": "5.0.0", 1531 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 1532 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 1533 | "dev": true, 1534 | "license": "MIT", 1535 | "dependencies": { 1536 | "p-limit": "^3.0.2" 1537 | }, 1538 | "engines": { 1539 | "node": ">=10" 1540 | }, 1541 | "funding": { 1542 | "url": "https://github.com/sponsors/sindresorhus" 1543 | } 1544 | }, 1545 | "node_modules/json-schema-doc-ts/node_modules/resolve-from": { 1546 | "version": "4.0.0", 1547 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 1548 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 1549 | "dev": true, 1550 | "license": "MIT", 1551 | "engines": { 1552 | "node": ">=4" 1553 | } 1554 | }, 1555 | "node_modules/json-schema-doc-ts/node_modules/supports-color": { 1556 | "version": "7.2.0", 1557 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 1558 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 1559 | "dev": true, 1560 | "license": "MIT", 1561 | "dependencies": { 1562 | "has-flag": "^4.0.0" 1563 | }, 1564 | "engines": { 1565 | "node": ">=8" 1566 | } 1567 | }, 1568 | "node_modules/json-schema-traverse": { 1569 | "version": "1.0.0", 1570 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", 1571 | "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", 1572 | "dev": true, 1573 | "license": "MIT" 1574 | }, 1575 | "node_modules/json-stable-stringify-without-jsonify": { 1576 | "version": "1.0.1", 1577 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 1578 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 1579 | "dev": true, 1580 | "license": "MIT" 1581 | }, 1582 | "node_modules/keyv": { 1583 | "version": "4.5.4", 1584 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 1585 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 1586 | "dev": true, 1587 | "license": "MIT", 1588 | "dependencies": { 1589 | "json-buffer": "3.0.1" 1590 | } 1591 | }, 1592 | "node_modules/kind-of": { 1593 | "version": "6.0.3", 1594 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", 1595 | "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", 1596 | "dev": true, 1597 | "license": "MIT", 1598 | "engines": { 1599 | "node": ">=0.10.0" 1600 | } 1601 | }, 1602 | "node_modules/levn": { 1603 | "version": "0.4.1", 1604 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 1605 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 1606 | "dev": true, 1607 | "license": "MIT", 1608 | "dependencies": { 1609 | "prelude-ls": "^1.2.1", 1610 | "type-check": "~0.4.0" 1611 | }, 1612 | "engines": { 1613 | "node": ">= 0.8.0" 1614 | } 1615 | }, 1616 | "node_modules/loader-runner": { 1617 | "version": "4.3.0", 1618 | "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", 1619 | "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", 1620 | "dev": true, 1621 | "license": "MIT", 1622 | "engines": { 1623 | "node": ">=6.11.5" 1624 | } 1625 | }, 1626 | "node_modules/locate-path": { 1627 | "version": "5.0.0", 1628 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", 1629 | "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", 1630 | "dev": true, 1631 | "license": "MIT", 1632 | "dependencies": { 1633 | "p-locate": "^4.1.0" 1634 | }, 1635 | "engines": { 1636 | "node": ">=8" 1637 | } 1638 | }, 1639 | "node_modules/lodash.merge": { 1640 | "version": "4.6.2", 1641 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 1642 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 1643 | "dev": true, 1644 | "license": "MIT" 1645 | }, 1646 | "node_modules/merge-stream": { 1647 | "version": "2.0.0", 1648 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 1649 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", 1650 | "dev": true, 1651 | "license": "MIT" 1652 | }, 1653 | "node_modules/merge2": { 1654 | "version": "1.4.1", 1655 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 1656 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 1657 | "dev": true, 1658 | "license": "MIT", 1659 | "engines": { 1660 | "node": ">= 8" 1661 | } 1662 | }, 1663 | "node_modules/micromatch": { 1664 | "version": "4.0.8", 1665 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 1666 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 1667 | "dev": true, 1668 | "license": "MIT", 1669 | "dependencies": { 1670 | "braces": "^3.0.3", 1671 | "picomatch": "^2.3.1" 1672 | }, 1673 | "engines": { 1674 | "node": ">=8.6" 1675 | } 1676 | }, 1677 | "node_modules/mime-db": { 1678 | "version": "1.52.0", 1679 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 1680 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 1681 | "dev": true, 1682 | "license": "MIT", 1683 | "engines": { 1684 | "node": ">= 0.6" 1685 | } 1686 | }, 1687 | "node_modules/mime-types": { 1688 | "version": "2.1.35", 1689 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 1690 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 1691 | "dev": true, 1692 | "license": "MIT", 1693 | "dependencies": { 1694 | "mime-db": "1.52.0" 1695 | }, 1696 | "engines": { 1697 | "node": ">= 0.6" 1698 | } 1699 | }, 1700 | "node_modules/minimatch": { 1701 | "version": "3.1.2", 1702 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1703 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1704 | "dev": true, 1705 | "license": "ISC", 1706 | "dependencies": { 1707 | "brace-expansion": "^1.1.7" 1708 | }, 1709 | "engines": { 1710 | "node": "*" 1711 | } 1712 | }, 1713 | "node_modules/ms": { 1714 | "version": "2.1.3", 1715 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 1716 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 1717 | "dev": true, 1718 | "license": "MIT" 1719 | }, 1720 | "node_modules/natural-compare": { 1721 | "version": "1.4.0", 1722 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 1723 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 1724 | "dev": true, 1725 | "license": "MIT" 1726 | }, 1727 | "node_modules/neo-async": { 1728 | "version": "2.6.2", 1729 | "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", 1730 | "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", 1731 | "dev": true, 1732 | "license": "MIT" 1733 | }, 1734 | "node_modules/node-releases": { 1735 | "version": "2.0.19", 1736 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", 1737 | "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", 1738 | "dev": true, 1739 | "license": "MIT" 1740 | }, 1741 | "node_modules/optionator": { 1742 | "version": "0.9.4", 1743 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 1744 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 1745 | "dev": true, 1746 | "license": "MIT", 1747 | "dependencies": { 1748 | "deep-is": "^0.1.3", 1749 | "fast-levenshtein": "^2.0.6", 1750 | "levn": "^0.4.1", 1751 | "prelude-ls": "^1.2.1", 1752 | "type-check": "^0.4.0", 1753 | "word-wrap": "^1.2.5" 1754 | }, 1755 | "engines": { 1756 | "node": ">= 0.8.0" 1757 | } 1758 | }, 1759 | "node_modules/p-limit": { 1760 | "version": "2.3.0", 1761 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", 1762 | "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", 1763 | "dev": true, 1764 | "license": "MIT", 1765 | "dependencies": { 1766 | "p-try": "^2.0.0" 1767 | }, 1768 | "engines": { 1769 | "node": ">=6" 1770 | }, 1771 | "funding": { 1772 | "url": "https://github.com/sponsors/sindresorhus" 1773 | } 1774 | }, 1775 | "node_modules/p-locate": { 1776 | "version": "4.1.0", 1777 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", 1778 | "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", 1779 | "dev": true, 1780 | "license": "MIT", 1781 | "dependencies": { 1782 | "p-limit": "^2.2.0" 1783 | }, 1784 | "engines": { 1785 | "node": ">=8" 1786 | } 1787 | }, 1788 | "node_modules/p-try": { 1789 | "version": "2.2.0", 1790 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 1791 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", 1792 | "dev": true, 1793 | "license": "MIT", 1794 | "engines": { 1795 | "node": ">=6" 1796 | } 1797 | }, 1798 | "node_modules/parent-module": { 1799 | "version": "1.0.1", 1800 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 1801 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 1802 | "dev": true, 1803 | "license": "MIT", 1804 | "dependencies": { 1805 | "callsites": "^3.0.0" 1806 | }, 1807 | "engines": { 1808 | "node": ">=6" 1809 | } 1810 | }, 1811 | "node_modules/path-exists": { 1812 | "version": "4.0.0", 1813 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 1814 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 1815 | "dev": true, 1816 | "license": "MIT", 1817 | "engines": { 1818 | "node": ">=8" 1819 | } 1820 | }, 1821 | "node_modules/path-key": { 1822 | "version": "3.1.1", 1823 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 1824 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 1825 | "dev": true, 1826 | "license": "MIT", 1827 | "engines": { 1828 | "node": ">=8" 1829 | } 1830 | }, 1831 | "node_modules/path-parse": { 1832 | "version": "1.0.7", 1833 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 1834 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 1835 | "dev": true, 1836 | "license": "MIT" 1837 | }, 1838 | "node_modules/picocolors": { 1839 | "version": "1.1.1", 1840 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 1841 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 1842 | "dev": true, 1843 | "license": "ISC" 1844 | }, 1845 | "node_modules/picomatch": { 1846 | "version": "2.3.1", 1847 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 1848 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 1849 | "dev": true, 1850 | "license": "MIT", 1851 | "engines": { 1852 | "node": ">=8.6" 1853 | }, 1854 | "funding": { 1855 | "url": "https://github.com/sponsors/jonschlinkert" 1856 | } 1857 | }, 1858 | "node_modules/pkg-dir": { 1859 | "version": "4.2.0", 1860 | "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", 1861 | "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", 1862 | "dev": true, 1863 | "license": "MIT", 1864 | "dependencies": { 1865 | "find-up": "^4.0.0" 1866 | }, 1867 | "engines": { 1868 | "node": ">=8" 1869 | } 1870 | }, 1871 | "node_modules/prelude-ls": { 1872 | "version": "1.2.1", 1873 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 1874 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 1875 | "dev": true, 1876 | "license": "MIT", 1877 | "engines": { 1878 | "node": ">= 0.8.0" 1879 | } 1880 | }, 1881 | "node_modules/punycode": { 1882 | "version": "2.3.1", 1883 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 1884 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 1885 | "dev": true, 1886 | "license": "MIT", 1887 | "engines": { 1888 | "node": ">=6" 1889 | } 1890 | }, 1891 | "node_modules/queue-microtask": { 1892 | "version": "1.2.3", 1893 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 1894 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 1895 | "dev": true, 1896 | "funding": [ 1897 | { 1898 | "type": "github", 1899 | "url": "https://github.com/sponsors/feross" 1900 | }, 1901 | { 1902 | "type": "patreon", 1903 | "url": "https://www.patreon.com/feross" 1904 | }, 1905 | { 1906 | "type": "consulting", 1907 | "url": "https://feross.org/support" 1908 | } 1909 | ], 1910 | "license": "MIT" 1911 | }, 1912 | "node_modules/randombytes": { 1913 | "version": "2.1.0", 1914 | "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", 1915 | "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", 1916 | "dev": true, 1917 | "license": "MIT", 1918 | "dependencies": { 1919 | "safe-buffer": "^5.1.0" 1920 | } 1921 | }, 1922 | "node_modules/rechoir": { 1923 | "version": "0.8.0", 1924 | "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", 1925 | "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", 1926 | "dev": true, 1927 | "license": "MIT", 1928 | "dependencies": { 1929 | "resolve": "^1.20.0" 1930 | }, 1931 | "engines": { 1932 | "node": ">= 10.13.0" 1933 | } 1934 | }, 1935 | "node_modules/require-from-string": { 1936 | "version": "2.0.2", 1937 | "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", 1938 | "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", 1939 | "dev": true, 1940 | "license": "MIT", 1941 | "engines": { 1942 | "node": ">=0.10.0" 1943 | } 1944 | }, 1945 | "node_modules/resolve": { 1946 | "version": "1.22.10", 1947 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", 1948 | "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", 1949 | "dev": true, 1950 | "license": "MIT", 1951 | "dependencies": { 1952 | "is-core-module": "^2.16.0", 1953 | "path-parse": "^1.0.7", 1954 | "supports-preserve-symlinks-flag": "^1.0.0" 1955 | }, 1956 | "bin": { 1957 | "resolve": "bin/resolve" 1958 | }, 1959 | "engines": { 1960 | "node": ">= 0.4" 1961 | }, 1962 | "funding": { 1963 | "url": "https://github.com/sponsors/ljharb" 1964 | } 1965 | }, 1966 | "node_modules/resolve-cwd": { 1967 | "version": "3.0.0", 1968 | "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", 1969 | "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", 1970 | "dev": true, 1971 | "license": "MIT", 1972 | "dependencies": { 1973 | "resolve-from": "^5.0.0" 1974 | }, 1975 | "engines": { 1976 | "node": ">=8" 1977 | } 1978 | }, 1979 | "node_modules/resolve-from": { 1980 | "version": "5.0.0", 1981 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 1982 | "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", 1983 | "dev": true, 1984 | "license": "MIT", 1985 | "engines": { 1986 | "node": ">=8" 1987 | } 1988 | }, 1989 | "node_modules/reusify": { 1990 | "version": "1.1.0", 1991 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", 1992 | "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", 1993 | "dev": true, 1994 | "license": "MIT", 1995 | "engines": { 1996 | "iojs": ">=1.0.0", 1997 | "node": ">=0.10.0" 1998 | } 1999 | }, 2000 | "node_modules/run-parallel": { 2001 | "version": "1.2.0", 2002 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 2003 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 2004 | "dev": true, 2005 | "funding": [ 2006 | { 2007 | "type": "github", 2008 | "url": "https://github.com/sponsors/feross" 2009 | }, 2010 | { 2011 | "type": "patreon", 2012 | "url": "https://www.patreon.com/feross" 2013 | }, 2014 | { 2015 | "type": "consulting", 2016 | "url": "https://feross.org/support" 2017 | } 2018 | ], 2019 | "license": "MIT", 2020 | "dependencies": { 2021 | "queue-microtask": "^1.2.2" 2022 | } 2023 | }, 2024 | "node_modules/safe-buffer": { 2025 | "version": "5.2.1", 2026 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 2027 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 2028 | "dev": true, 2029 | "funding": [ 2030 | { 2031 | "type": "github", 2032 | "url": "https://github.com/sponsors/feross" 2033 | }, 2034 | { 2035 | "type": "patreon", 2036 | "url": "https://www.patreon.com/feross" 2037 | }, 2038 | { 2039 | "type": "consulting", 2040 | "url": "https://feross.org/support" 2041 | } 2042 | ], 2043 | "license": "MIT" 2044 | }, 2045 | "node_modules/schema-utils": { 2046 | "version": "4.3.0", 2047 | "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz", 2048 | "integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==", 2049 | "dev": true, 2050 | "license": "MIT", 2051 | "dependencies": { 2052 | "@types/json-schema": "^7.0.9", 2053 | "ajv": "^8.9.0", 2054 | "ajv-formats": "^2.1.1", 2055 | "ajv-keywords": "^5.1.0" 2056 | }, 2057 | "engines": { 2058 | "node": ">= 10.13.0" 2059 | }, 2060 | "funding": { 2061 | "type": "opencollective", 2062 | "url": "https://opencollective.com/webpack" 2063 | } 2064 | }, 2065 | "node_modules/semver": { 2066 | "version": "7.7.1", 2067 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 2068 | "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 2069 | "dev": true, 2070 | "license": "ISC", 2071 | "bin": { 2072 | "semver": "bin/semver.js" 2073 | }, 2074 | "engines": { 2075 | "node": ">=10" 2076 | } 2077 | }, 2078 | "node_modules/serialize-javascript": { 2079 | "version": "6.0.2", 2080 | "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", 2081 | "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", 2082 | "dev": true, 2083 | "license": "BSD-3-Clause", 2084 | "dependencies": { 2085 | "randombytes": "^2.1.0" 2086 | } 2087 | }, 2088 | "node_modules/shallow-clone": { 2089 | "version": "3.0.1", 2090 | "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", 2091 | "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", 2092 | "dev": true, 2093 | "license": "MIT", 2094 | "dependencies": { 2095 | "kind-of": "^6.0.2" 2096 | }, 2097 | "engines": { 2098 | "node": ">=8" 2099 | } 2100 | }, 2101 | "node_modules/shebang-command": { 2102 | "version": "2.0.0", 2103 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 2104 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 2105 | "dev": true, 2106 | "license": "MIT", 2107 | "dependencies": { 2108 | "shebang-regex": "^3.0.0" 2109 | }, 2110 | "engines": { 2111 | "node": ">=8" 2112 | } 2113 | }, 2114 | "node_modules/shebang-regex": { 2115 | "version": "3.0.0", 2116 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 2117 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 2118 | "dev": true, 2119 | "license": "MIT", 2120 | "engines": { 2121 | "node": ">=8" 2122 | } 2123 | }, 2124 | "node_modules/source-map": { 2125 | "version": "0.6.1", 2126 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 2127 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 2128 | "dev": true, 2129 | "license": "BSD-3-Clause", 2130 | "engines": { 2131 | "node": ">=0.10.0" 2132 | } 2133 | }, 2134 | "node_modules/source-map-support": { 2135 | "version": "0.5.21", 2136 | "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", 2137 | "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", 2138 | "dev": true, 2139 | "license": "MIT", 2140 | "dependencies": { 2141 | "buffer-from": "^1.0.0", 2142 | "source-map": "^0.6.0" 2143 | } 2144 | }, 2145 | "node_modules/strip-json-comments": { 2146 | "version": "3.1.1", 2147 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 2148 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 2149 | "dev": true, 2150 | "license": "MIT", 2151 | "engines": { 2152 | "node": ">=8" 2153 | }, 2154 | "funding": { 2155 | "url": "https://github.com/sponsors/sindresorhus" 2156 | } 2157 | }, 2158 | "node_modules/supports-color": { 2159 | "version": "8.1.1", 2160 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", 2161 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", 2162 | "dev": true, 2163 | "license": "MIT", 2164 | "dependencies": { 2165 | "has-flag": "^4.0.0" 2166 | }, 2167 | "engines": { 2168 | "node": ">=10" 2169 | }, 2170 | "funding": { 2171 | "url": "https://github.com/chalk/supports-color?sponsor=1" 2172 | } 2173 | }, 2174 | "node_modules/supports-preserve-symlinks-flag": { 2175 | "version": "1.0.0", 2176 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 2177 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 2178 | "dev": true, 2179 | "license": "MIT", 2180 | "engines": { 2181 | "node": ">= 0.4" 2182 | }, 2183 | "funding": { 2184 | "url": "https://github.com/sponsors/ljharb" 2185 | } 2186 | }, 2187 | "node_modules/tapable": { 2188 | "version": "2.2.1", 2189 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", 2190 | "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", 2191 | "dev": true, 2192 | "license": "MIT", 2193 | "engines": { 2194 | "node": ">=6" 2195 | } 2196 | }, 2197 | "node_modules/terser": { 2198 | "version": "5.39.0", 2199 | "resolved": "https://registry.npmjs.org/terser/-/terser-5.39.0.tgz", 2200 | "integrity": "sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==", 2201 | "dev": true, 2202 | "license": "BSD-2-Clause", 2203 | "dependencies": { 2204 | "@jridgewell/source-map": "^0.3.3", 2205 | "acorn": "^8.8.2", 2206 | "commander": "^2.20.0", 2207 | "source-map-support": "~0.5.20" 2208 | }, 2209 | "bin": { 2210 | "terser": "bin/terser" 2211 | }, 2212 | "engines": { 2213 | "node": ">=10" 2214 | } 2215 | }, 2216 | "node_modules/terser-webpack-plugin": { 2217 | "version": "5.3.14", 2218 | "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz", 2219 | "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==", 2220 | "dev": true, 2221 | "license": "MIT", 2222 | "dependencies": { 2223 | "@jridgewell/trace-mapping": "^0.3.25", 2224 | "jest-worker": "^27.4.5", 2225 | "schema-utils": "^4.3.0", 2226 | "serialize-javascript": "^6.0.2", 2227 | "terser": "^5.31.1" 2228 | }, 2229 | "engines": { 2230 | "node": ">= 10.13.0" 2231 | }, 2232 | "funding": { 2233 | "type": "opencollective", 2234 | "url": "https://opencollective.com/webpack" 2235 | }, 2236 | "peerDependencies": { 2237 | "webpack": "^5.1.0" 2238 | }, 2239 | "peerDependenciesMeta": { 2240 | "@swc/core": { 2241 | "optional": true 2242 | }, 2243 | "esbuild": { 2244 | "optional": true 2245 | }, 2246 | "uglify-js": { 2247 | "optional": true 2248 | } 2249 | } 2250 | }, 2251 | "node_modules/to-regex-range": { 2252 | "version": "5.0.1", 2253 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 2254 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 2255 | "dev": true, 2256 | "license": "MIT", 2257 | "dependencies": { 2258 | "is-number": "^7.0.0" 2259 | }, 2260 | "engines": { 2261 | "node": ">=8.0" 2262 | } 2263 | }, 2264 | "node_modules/ts-api-utils": { 2265 | "version": "2.0.1", 2266 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.0.1.tgz", 2267 | "integrity": "sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==", 2268 | "dev": true, 2269 | "license": "MIT", 2270 | "engines": { 2271 | "node": ">=18.12" 2272 | }, 2273 | "peerDependencies": { 2274 | "typescript": ">=4.8.4" 2275 | } 2276 | }, 2277 | "node_modules/type-check": { 2278 | "version": "0.4.0", 2279 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 2280 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 2281 | "dev": true, 2282 | "license": "MIT", 2283 | "dependencies": { 2284 | "prelude-ls": "^1.2.1" 2285 | }, 2286 | "engines": { 2287 | "node": ">= 0.8.0" 2288 | } 2289 | }, 2290 | "node_modules/typescript": { 2291 | "version": "5.8.2", 2292 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz", 2293 | "integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==", 2294 | "dev": true, 2295 | "license": "Apache-2.0", 2296 | "bin": { 2297 | "tsc": "bin/tsc", 2298 | "tsserver": "bin/tsserver" 2299 | }, 2300 | "engines": { 2301 | "node": ">=14.17" 2302 | } 2303 | }, 2304 | "node_modules/undici-types": { 2305 | "version": "6.20.0", 2306 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", 2307 | "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", 2308 | "dev": true, 2309 | "license": "MIT" 2310 | }, 2311 | "node_modules/update-browserslist-db": { 2312 | "version": "1.1.3", 2313 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", 2314 | "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", 2315 | "dev": true, 2316 | "funding": [ 2317 | { 2318 | "type": "opencollective", 2319 | "url": "https://opencollective.com/browserslist" 2320 | }, 2321 | { 2322 | "type": "tidelift", 2323 | "url": "https://tidelift.com/funding/github/npm/browserslist" 2324 | }, 2325 | { 2326 | "type": "github", 2327 | "url": "https://github.com/sponsors/ai" 2328 | } 2329 | ], 2330 | "license": "MIT", 2331 | "dependencies": { 2332 | "escalade": "^3.2.0", 2333 | "picocolors": "^1.1.1" 2334 | }, 2335 | "bin": { 2336 | "update-browserslist-db": "cli.js" 2337 | }, 2338 | "peerDependencies": { 2339 | "browserslist": ">= 4.21.0" 2340 | } 2341 | }, 2342 | "node_modules/uri-js": { 2343 | "version": "4.4.1", 2344 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 2345 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 2346 | "dev": true, 2347 | "license": "BSD-2-Clause", 2348 | "dependencies": { 2349 | "punycode": "^2.1.0" 2350 | } 2351 | }, 2352 | "node_modules/watchpack": { 2353 | "version": "2.4.2", 2354 | "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", 2355 | "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", 2356 | "dev": true, 2357 | "license": "MIT", 2358 | "dependencies": { 2359 | "glob-to-regexp": "^0.4.1", 2360 | "graceful-fs": "^4.1.2" 2361 | }, 2362 | "engines": { 2363 | "node": ">=10.13.0" 2364 | } 2365 | }, 2366 | "node_modules/webpack": { 2367 | "version": "5.98.0", 2368 | "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.98.0.tgz", 2369 | "integrity": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==", 2370 | "dev": true, 2371 | "license": "MIT", 2372 | "dependencies": { 2373 | "@types/eslint-scope": "^3.7.7", 2374 | "@types/estree": "^1.0.6", 2375 | "@webassemblyjs/ast": "^1.14.1", 2376 | "@webassemblyjs/wasm-edit": "^1.14.1", 2377 | "@webassemblyjs/wasm-parser": "^1.14.1", 2378 | "acorn": "^8.14.0", 2379 | "browserslist": "^4.24.0", 2380 | "chrome-trace-event": "^1.0.2", 2381 | "enhanced-resolve": "^5.17.1", 2382 | "es-module-lexer": "^1.2.1", 2383 | "eslint-scope": "5.1.1", 2384 | "events": "^3.2.0", 2385 | "glob-to-regexp": "^0.4.1", 2386 | "graceful-fs": "^4.2.11", 2387 | "json-parse-even-better-errors": "^2.3.1", 2388 | "loader-runner": "^4.2.0", 2389 | "mime-types": "^2.1.27", 2390 | "neo-async": "^2.6.2", 2391 | "schema-utils": "^4.3.0", 2392 | "tapable": "^2.1.1", 2393 | "terser-webpack-plugin": "^5.3.11", 2394 | "watchpack": "^2.4.1", 2395 | "webpack-sources": "^3.2.3" 2396 | }, 2397 | "bin": { 2398 | "webpack": "bin/webpack.js" 2399 | }, 2400 | "engines": { 2401 | "node": ">=10.13.0" 2402 | }, 2403 | "funding": { 2404 | "type": "opencollective", 2405 | "url": "https://opencollective.com/webpack" 2406 | }, 2407 | "peerDependenciesMeta": { 2408 | "webpack-cli": { 2409 | "optional": true 2410 | } 2411 | } 2412 | }, 2413 | "node_modules/webpack-cli": { 2414 | "version": "6.0.1", 2415 | "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-6.0.1.tgz", 2416 | "integrity": "sha512-MfwFQ6SfwinsUVi0rNJm7rHZ31GyTcpVE5pgVA3hwFRb7COD4TzjUUwhGWKfO50+xdc2MQPuEBBJoqIMGt3JDw==", 2417 | "dev": true, 2418 | "license": "MIT", 2419 | "dependencies": { 2420 | "@discoveryjs/json-ext": "^0.6.1", 2421 | "@webpack-cli/configtest": "^3.0.1", 2422 | "@webpack-cli/info": "^3.0.1", 2423 | "@webpack-cli/serve": "^3.0.1", 2424 | "colorette": "^2.0.14", 2425 | "commander": "^12.1.0", 2426 | "cross-spawn": "^7.0.3", 2427 | "envinfo": "^7.14.0", 2428 | "fastest-levenshtein": "^1.0.12", 2429 | "import-local": "^3.0.2", 2430 | "interpret": "^3.1.1", 2431 | "rechoir": "^0.8.0", 2432 | "webpack-merge": "^6.0.1" 2433 | }, 2434 | "bin": { 2435 | "webpack-cli": "bin/cli.js" 2436 | }, 2437 | "engines": { 2438 | "node": ">=18.12.0" 2439 | }, 2440 | "funding": { 2441 | "type": "opencollective", 2442 | "url": "https://opencollective.com/webpack" 2443 | }, 2444 | "peerDependencies": { 2445 | "webpack": "^5.82.0" 2446 | }, 2447 | "peerDependenciesMeta": { 2448 | "webpack-bundle-analyzer": { 2449 | "optional": true 2450 | }, 2451 | "webpack-dev-server": { 2452 | "optional": true 2453 | } 2454 | } 2455 | }, 2456 | "node_modules/webpack-cli/node_modules/commander": { 2457 | "version": "12.1.0", 2458 | "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz", 2459 | "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==", 2460 | "dev": true, 2461 | "license": "MIT", 2462 | "engines": { 2463 | "node": ">=18" 2464 | } 2465 | }, 2466 | "node_modules/webpack-merge": { 2467 | "version": "6.0.1", 2468 | "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-6.0.1.tgz", 2469 | "integrity": "sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==", 2470 | "dev": true, 2471 | "license": "MIT", 2472 | "dependencies": { 2473 | "clone-deep": "^4.0.1", 2474 | "flat": "^5.0.2", 2475 | "wildcard": "^2.0.1" 2476 | }, 2477 | "engines": { 2478 | "node": ">=18.0.0" 2479 | } 2480 | }, 2481 | "node_modules/webpack-sources": { 2482 | "version": "3.2.3", 2483 | "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", 2484 | "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", 2485 | "dev": true, 2486 | "license": "MIT", 2487 | "engines": { 2488 | "node": ">=10.13.0" 2489 | } 2490 | }, 2491 | "node_modules/which": { 2492 | "version": "2.0.2", 2493 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 2494 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 2495 | "dev": true, 2496 | "license": "ISC", 2497 | "dependencies": { 2498 | "isexe": "^2.0.0" 2499 | }, 2500 | "bin": { 2501 | "node-which": "bin/node-which" 2502 | }, 2503 | "engines": { 2504 | "node": ">= 8" 2505 | } 2506 | }, 2507 | "node_modules/wildcard": { 2508 | "version": "2.0.1", 2509 | "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", 2510 | "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", 2511 | "dev": true, 2512 | "license": "MIT" 2513 | }, 2514 | "node_modules/word-wrap": { 2515 | "version": "1.2.5", 2516 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 2517 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 2518 | "dev": true, 2519 | "license": "MIT", 2520 | "engines": { 2521 | "node": ">=0.10.0" 2522 | } 2523 | }, 2524 | "node_modules/yocto-queue": { 2525 | "version": "0.1.0", 2526 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 2527 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 2528 | "dev": true, 2529 | "license": "MIT", 2530 | "engines": { 2531 | "node": ">=10" 2532 | }, 2533 | "funding": { 2534 | "url": "https://github.com/sponsors/sindresorhus" 2535 | } 2536 | } 2537 | } 2538 | } 2539 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "json-schema-md-doc", 3 | "author": "Brian Wendt (https://github.com/BrianWendt)", 4 | "description": "Generate markdown documentation for JSON Schemas", 5 | "type": "module", 6 | "keywords": [ 7 | "json-schema" 8 | ], 9 | "version": "2.0.0", 10 | "license": "See LICENSE file", 11 | "scripts": { 12 | "build": "webpack" 13 | }, 14 | "homepage": "https://brianwendt.github.io/json-schema-md-doc", 15 | "public": true, 16 | "devDependencies": { 17 | "json-schema-doc-ts": "github:OntoDevelopment/json-schema-doc-ts", 18 | "webpack": "^5.98.0", 19 | "webpack-cli": "^6.0.1" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /samples/node/README.md: -------------------------------------------------------------------------------- 1 | # Implementing and Extending in Node 2 | Files 3 | - [doc.js](./doc.js) - complete, working script 4 | - [schema.json](../schema.json) - input 5 | - [schema.md](./schema.md) - output 6 | ## NPM Install 7 | ``` shell 8 | npm i json-schema-doc-ts 9 | ``` 10 | 11 | ## Load the Module 12 | First we're going to require a the `JSONSchemaMarkdownDoc` module and the File System (`fs`) module. 13 | ``` javascript 14 | import {JSONSchemaMarkdownDoc} from 'json-schema-doc-ts'; 15 | import fs from 'fs'; 16 | ``` 17 | ## Extend 18 | We're going to make a new class that extends the `JSONSchemaMarkdownDoc` class. 19 | ``` javascript 20 | class MyDoccer extends JSONSchemaMarkdownDoc { 21 | constructor(schema){ 22 | super(schema); 23 | this.footer += " _" + (new Date()) + "_"; 24 | } 25 | } 26 | ``` 27 | For this example we're just going to simply append a timestamp to the footer. 28 | ## Generate Documentation Markdown 29 | Get the JSON Schema as a string 30 | ``` javascript 31 | const schema = fs.readFileSync('./samples/node/schema.json', 'utf8'); 32 | ``` 33 | Instantiate your new class with the json string. 34 | ``` javascript 35 | const Doccer = new MyDoccer(schema); 36 | ``` 37 | 38 | Generate the markdown. 39 | ``` javascript 40 | Doccer.generate(); 41 | ``` 42 | `Doccer.response` now contains the completed documentation. 43 | 44 | So now we'll save it to `schema.md` (after checking for errors). 45 | ``` javascript 46 | if(Doccer.errors.length > 0){ 47 | console.log('errors', Doccer.errors); 48 | } else { 49 | fs.writeFile('./schema.md', Doccer.response, function(err){ 50 | console.log(err || "No errors writing schema.md"); 51 | }); 52 | } 53 | ``` -------------------------------------------------------------------------------- /samples/node/doc.js: -------------------------------------------------------------------------------- 1 | import {JSONSchemaMarkdownDoc} from 'json-schema-doc-ts'; 2 | import fs from 'fs'; 3 | 4 | class MyDoccer extends JSONSchemaMarkdownDoc { 5 | constructor(schema){ 6 | super(schema); 7 | this.footer += " _" + (new Date()) + "_"; 8 | } 9 | } 10 | 11 | const schema = fs.readFileSync('./samples/node/schema.json', 'utf8'); 12 | 13 | const Doccer = new MyDoccer(schema); 14 | 15 | Doccer.generate(); 16 | 17 | if(Doccer.errors.length > 0){ 18 | console.log('errors', Doccer.errors); 19 | } else { 20 | fs.writeFile('./samples/node/schema.md', Doccer.response, function(err){ 21 | console.log(err || "No errors writing schema.md"); 22 | }); 23 | } 24 | -------------------------------------------------------------------------------- /samples/node/schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json-schema.org/draft-07/schema#", 3 | 4 | "definitions": { 5 | "address": { 6 | "type": "object", 7 | "properties": { 8 | "street_address": { 9 | "type": "string" 10 | }, 11 | "city": { 12 | "type": "string" 13 | }, 14 | "state": { 15 | "type": "string" 16 | } 17 | }, 18 | "required": ["street_address", "city", "state"] 19 | } 20 | }, 21 | 22 | "type": "object", 23 | 24 | "properties": { 25 | "billing_address": { 26 | "$ref": "#/definitions/address" 27 | }, 28 | "shipping_address": { 29 | "$ref": "#/definitions/address" 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /samples/node/schema.md: -------------------------------------------------------------------------------- 1 | Type: `object` 2 | 3 | *path: #* 4 | 5 | $schema: [http://json-schema.org/draft-07/schema#](http://json-schema.org/draft-07/schema#) 6 | 7 | ***Properties*** 8 | 9 | - billing_address 10 | - path: #/properties/billing_address 11 | - $ref: [#/definitions/address](#/definitions/address) 12 | - shipping_address 13 | - path: #/properties/shipping_address 14 | - $ref: [#/definitions/address](#/definitions/address) 15 | # definitions 16 | 17 | ***address*** 18 | 19 | - Type: `object` 20 | - path: #/definitions/address 21 | - ***Properties*** 22 | - street_address `required` 23 | - Type: `string` 24 | - path: #/definitions/address/properties/street_address 25 | - city `required` 26 | - Type: `string` 27 | - path: #/definitions/address/properties/city 28 | - state `required` 29 | - Type: `string` 30 | - path: #/definitions/address/properties/state 31 | 32 | *Generated with [OntoDevelopment/json-schema-doc](https://github.com/OntoDevelopment/json-schema-doc)* _Sun Mar 16 2025 21:46:40 GMT-0700 (Mountain Standard Time)_ -------------------------------------------------------------------------------- /src/JSONSchemaMarkdownDoc.js: -------------------------------------------------------------------------------- 1 | 2 | import {JSONSchemaMarkdownDoc as JSONSchemaMarkdownDocBase } from 'json-schema-doc-ts'; 3 | 4 | export class JSONSchemaMarkdownDoc extends JSONSchemaMarkdownDocBase { 5 | constructor(schema){ 6 | super(schema); 7 | this.footer = "\n*Generated with [json-schema-md-doc](https://brianwendt.github.io/json-schema-md-doc/)*\n"; 8 | this.footer += "*" + (new Date()) + "*"; 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /src/build.js: -------------------------------------------------------------------------------- 1 | 2 | import {JSONSchemaMarkdownDoc} from './JSONSchemaMarkdownDoc.js'; 3 | 4 | window.JSONSchemaMarkdownDoc = JSONSchemaMarkdownDoc; -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- 1 | import path from 'path'; 2 | 3 | export default { 4 | mode: 'production', 5 | entry: './src/build.js', 6 | output: { 7 | path: path.resolve('./docs/'), 8 | filename: 'json-schema-md-doc.min.js' 9 | } 10 | } --------------------------------------------------------------------------------