├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── changelog ├── esbuild.config.mjs ├── manifest.json ├── misc └── create.png ├── package-lock.json ├── package.json ├── src ├── extractor.ts ├── main.ts ├── things3.ts ├── url.ts └── utils.ts ├── styles.css ├── tsconfig.json ├── version-bump.mjs └── versions.json /.editorconfig: -------------------------------------------------------------------------------- 1 | # top-most EditorConfig file 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | end_of_line = lf 7 | insert_final_newline = true 8 | indent_style = tab 9 | indent_size = 4 10 | tab_width = 4 11 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | npm node_modules 2 | build -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "parser": "@typescript-eslint/parser", 4 | "env": { "node": true }, 5 | "plugins": [ 6 | "@typescript-eslint" 7 | ], 8 | "extends": [ 9 | "eslint:recommended", 10 | "plugin:@typescript-eslint/eslint-recommended", 11 | "plugin:@typescript-eslint/recommended" 12 | ], 13 | "parserOptions": { 14 | "sourceType": "module" 15 | }, 16 | "rules": { 17 | "no-unused-vars": "off", 18 | "@typescript-eslint/no-unused-vars": ["error", { "args": "none" }], 19 | "@typescript-eslint/ban-ts-comment": "off", 20 | "no-prototype-builtins": "off", 21 | "@typescript-eslint/no-empty-function": "off" 22 | } 23 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # vscode 2 | .vscode 3 | 4 | # Intellij 5 | *.iml 6 | .idea 7 | 8 | # npm 9 | node_modules 10 | 11 | # Don't include the compiled main.js file in the repo. 12 | # They should be uploaded to GitHub releases instead. 13 | main.js 14 | 15 | # Exclude sourcemaps 16 | *.map 17 | 18 | # obsidian 19 | data.json 20 | 21 | # Exclude macOS Finder (System Explorer) View States 22 | .DS_Store 23 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /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 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Things3 Sync 2 | A cross-platform Obsidian plugin for syncing todos (as well as tags, dates) between Obsidian and Things3 (with multi-language support). 3 | ## Features 4 | 5 | * **Cross-Platform**: Works on both macOS and iOS 6 | * **Multiple Languages**: Use any language when creating todos 7 | * **Todo Tags**: You can enter tags after your todo text, or via the default tags in the settings 8 | * **Date Capture**: If the Obsidian note includes a date, it will be included when creating the todo in Things3. 9 | 10 | ## Usage 11 | 12 | ### Creating A Todo 13 | ![create](./misc/create.png) 14 | 15 | * Select the line of the todo 16 | 17 | * Using `cmd + p` and run the `Things3 Sync: Create Todo` 18 | 19 | * ***Note:*** The tags feature currently only supports tags that already exist in Things3. To add a new tag, you'll need to first create it in Things3, and then you will be able to use it in this plugin. 20 | 21 | ### Toggling a Todo's Status 22 | 23 | * Select the line of the todo 24 | 25 | * Using `cmd + P` and run the `Things3 Sync: Toggle Todo` 26 | 27 | * The status of the todo will be toggled in both Obsidian and Things3 28 | 29 | ***Pro Tip:*** This feature can be assigned a hotkey for faster, more convenient toggling. 30 | 31 | ### Creating a Todo from a Note 32 | 33 | You can create a Things3 todo from an Obsidian note. This plugin will automatically include a backlink to the Obisidian note in the todo in Things3 34 | 35 | ## Roadmap 36 | 37 | - [x] Multiple Markdown elements support. 38 | 39 | - [x] Permanent URL support. 40 | 41 | - [x] Better tags support. 42 | 43 | - [ ] ~~Better toggle trigger method.~~ Not (currently) possible due to a limitation in the Things3 API 44 | 45 | - [ ] ~~Multi-line support.~~ Not (currently) possible due to a communication limitation between Things3 and Obsidian 46 | 47 | - [x] Obsidian Note to Things3 Todo 48 | 49 | ## Security 50 | 51 | This plugin requires an authentication token from Things3 in order to sync data between Obsidian and Things3. That auth token will be stored in plain-text inside your Obsidian vault's plugin folder (e.g., `./obsidian/plugins/obsidian-things3-sync`). As a result, you should be cautious when syncing or sharing the settings for this plugin. 52 | 53 | ## Feature Requests/Feedback 54 | 55 | Both feature requests and feedback are welcome. Please feel free to submit an issue for either ;) 56 | 57 | Thanks a lot. 58 | 59 | ## Attribution 60 | The folliwng repositories offered great help during the development of this plugin: 61 | * [Todoist Text](https://github.com/wesmoncrief/obsidian-todoist-text) 62 | * [Things Link](https://github.com/gavinmn/obsidian-things-link) 63 | 64 | ## Buy me a coffee 65 | 66 | Buy Me A Coffee 67 | -------------------------------------------------------------------------------- /changelog: -------------------------------------------------------------------------------- 1 | # Changelog 2 | All notable changes to this project will be documented in this file. 3 | 4 | ## [1.3.0] 2024-04-23 5 | * Add detached mode: only create todo in Things, without changing Obsidian note. 6 | * Support '&' in things link. 7 | * Fetch date inline if there is one, otherwise use the filename. 8 | 9 | ## [1.2.4] 2024-01-27 10 | Fix plugin ID mismatch problem 11 | 12 | ## [1.2.3] 2024-01-26 13 | Changed the plugin name, follow the latest Obsidian [devloper policy](https://docs.obsidian.md/Developer+policies). 14 | 15 | ## [1.2.2] 2023-04-22 16 | Bug Fix ver 17 | ### Fixed 18 | * Fix vault name encoding bug. 19 | 20 | ## [1.2.1] 2023-01-30 21 | Bug Fix ver 22 | ### Fixed 23 | * Fix vault name encoding bug. 24 | 25 | ## [1.2.0] 2023-01-29 26 | New Feature ver 27 | ### Added 28 | * Obsidian Note to Todo 29 | 30 | ## [1.1.0] 2023-01-04 31 | New Feature ver 32 | ### Added 33 | * Add permanent url 34 | 35 | ## [1.0.3] 2022-12-20 36 | Bug Fix ver 37 | ### Fixed 38 | * Fix Tags error issue. 39 | 40 | ## [1.0.2] 2022-10-30 41 | New Feature ver 42 | ### Added 43 | * Support for multiple markdown elements: title, list and so on. 44 | 45 | 46 | ## [1.0.1] 2022-10-19 47 | The very first release 48 | ### Added 49 | * create todo from obsidian to things3 50 | * support multiple language, tags, and date 51 | * toggle todo status from obsidian to things3 -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- 1 | import esbuild from "esbuild"; 2 | import process from "process"; 3 | import builtins from 'builtin-modules' 4 | 5 | const banner = 6 | `/* 7 | THIS IS A GENERATED/BUNDLED FILE BY ESBUILD 8 | if you want to view the source, please visit the github repository of this plugin 9 | */ 10 | `; 11 | 12 | const prod = (process.argv[2] === 'production'); 13 | 14 | esbuild.build({ 15 | banner: { 16 | js: banner, 17 | }, 18 | entryPoints: ['src/main.ts'], 19 | bundle: true, 20 | external: [ 21 | 'obsidian', 22 | 'electron', 23 | '@codemirror/autocomplete', 24 | '@codemirror/collab', 25 | '@codemirror/commands', 26 | '@codemirror/language', 27 | '@codemirror/lint', 28 | '@codemirror/search', 29 | '@codemirror/state', 30 | '@codemirror/view', 31 | '@lezer/common', 32 | '@lezer/highlight', 33 | '@lezer/lr', 34 | ...builtins], 35 | format: 'cjs', 36 | watch: !prod, 37 | target: 'es2018', 38 | logLevel: "info", 39 | sourcemap: prod ? false : 'inline', 40 | treeShaking: true, 41 | outfile: 'main.js', 42 | }).catch(() => process.exit(1)); 43 | -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "obsidian-things3-sync", 3 | "name": "Things3 Sync", 4 | "version": "1.3.0", 5 | "minAppVersion": "0.15.0", 6 | "description": "An Obsidian plugin for sync between Obsidian and Things3, create Todo and sync Todo status", 7 | "author": "Royx", 8 | "authorUrl": "royxue.me", 9 | "isDesktopOnly": false 10 | } 11 | -------------------------------------------------------------------------------- /misc/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royxue/obsidian-things3-sync/810d2dfc28b15f575fe336ac93feb6a56d0a929c/misc/create.png -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "obsidian-sample-plugin", 3 | "version": "1.0.0", 4 | "lockfileVersion": 2, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "obsidian-sample-plugin", 9 | "version": "1.0.0", 10 | "license": "MIT", 11 | "devDependencies": { 12 | "@types/node": "^16.11.6", 13 | "@typescript-eslint/eslint-plugin": "5.29.0", 14 | "@typescript-eslint/parser": "5.29.0", 15 | "builtin-modules": "3.3.0", 16 | "esbuild": "0.14.47", 17 | "obsidian": "latest", 18 | "tslib": "2.4.0", 19 | "typescript": "4.7.4" 20 | } 21 | }, 22 | "node_modules/@codemirror/state": { 23 | "version": "6.1.2", 24 | "resolved": "https://registry.npmjs.org/@codemirror/state/-/state-6.1.2.tgz", 25 | "integrity": "sha512-Mxff85Hp5va+zuj+H748KbubXjrinX/k28lj43H14T2D0+4kuvEFIEIO7hCEcvBT8ubZyIelt9yGOjj2MWOEQA==", 26 | "dev": true, 27 | "peer": true 28 | }, 29 | "node_modules/@codemirror/view": { 30 | "version": "6.4.0", 31 | "resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.4.0.tgz", 32 | "integrity": "sha512-Kv32b6Tn7QVwFbj/EDswTLSocjk5kgggF6zzBFAL4o4hZ/vmtFD155+EjH1pVlbfoDyVC2M6SedPsMrwYscgNg==", 33 | "dev": true, 34 | "peer": true, 35 | "dependencies": { 36 | "@codemirror/state": "^6.0.0", 37 | "style-mod": "^4.0.0", 38 | "w3c-keyname": "^2.2.4" 39 | } 40 | }, 41 | "node_modules/@eslint/eslintrc": { 42 | "version": "1.3.3", 43 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz", 44 | "integrity": "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==", 45 | "dev": true, 46 | "peer": true, 47 | "dependencies": { 48 | "ajv": "^6.12.4", 49 | "debug": "^4.3.2", 50 | "espree": "^9.4.0", 51 | "globals": "^13.15.0", 52 | "ignore": "^5.2.0", 53 | "import-fresh": "^3.2.1", 54 | "js-yaml": "^4.1.0", 55 | "minimatch": "^3.1.2", 56 | "strip-json-comments": "^3.1.1" 57 | }, 58 | "engines": { 59 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 60 | }, 61 | "funding": { 62 | "url": "https://opencollective.com/eslint" 63 | } 64 | }, 65 | "node_modules/@humanwhocodes/config-array": { 66 | "version": "0.10.7", 67 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.10.7.tgz", 68 | "integrity": "sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w==", 69 | "dev": true, 70 | "peer": true, 71 | "dependencies": { 72 | "@humanwhocodes/object-schema": "^1.2.1", 73 | "debug": "^4.1.1", 74 | "minimatch": "^3.0.4" 75 | }, 76 | "engines": { 77 | "node": ">=10.10.0" 78 | } 79 | }, 80 | "node_modules/@humanwhocodes/module-importer": { 81 | "version": "1.0.1", 82 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 83 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 84 | "dev": true, 85 | "peer": true, 86 | "engines": { 87 | "node": ">=12.22" 88 | }, 89 | "funding": { 90 | "type": "github", 91 | "url": "https://github.com/sponsors/nzakas" 92 | } 93 | }, 94 | "node_modules/@humanwhocodes/object-schema": { 95 | "version": "1.2.1", 96 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", 97 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", 98 | "dev": true, 99 | "peer": true 100 | }, 101 | "node_modules/@nodelib/fs.scandir": { 102 | "version": "2.1.5", 103 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 104 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 105 | "dev": true, 106 | "dependencies": { 107 | "@nodelib/fs.stat": "2.0.5", 108 | "run-parallel": "^1.1.9" 109 | }, 110 | "engines": { 111 | "node": ">= 8" 112 | } 113 | }, 114 | "node_modules/@nodelib/fs.stat": { 115 | "version": "2.0.5", 116 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 117 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 118 | "dev": true, 119 | "engines": { 120 | "node": ">= 8" 121 | } 122 | }, 123 | "node_modules/@nodelib/fs.walk": { 124 | "version": "1.2.8", 125 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 126 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 127 | "dev": true, 128 | "dependencies": { 129 | "@nodelib/fs.scandir": "2.1.5", 130 | "fastq": "^1.6.0" 131 | }, 132 | "engines": { 133 | "node": ">= 8" 134 | } 135 | }, 136 | "node_modules/@types/codemirror": { 137 | "version": "0.0.108", 138 | "resolved": "https://registry.npmjs.org/@types/codemirror/-/codemirror-0.0.108.tgz", 139 | "integrity": "sha512-3FGFcus0P7C2UOGCNUVENqObEb4SFk+S8Dnxq7K6aIsLVs/vDtlangl3PEO0ykaKXyK56swVF6Nho7VsA44uhw==", 140 | "dev": true, 141 | "dependencies": { 142 | "@types/tern": "*" 143 | } 144 | }, 145 | "node_modules/@types/estree": { 146 | "version": "1.0.0", 147 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", 148 | "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==", 149 | "dev": true 150 | }, 151 | "node_modules/@types/json-schema": { 152 | "version": "7.0.11", 153 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", 154 | "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", 155 | "dev": true 156 | }, 157 | "node_modules/@types/node": { 158 | "version": "16.11.66", 159 | "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.66.tgz", 160 | "integrity": "sha512-+xvMrGl3eAygKcf5jm+4zA4tbfEgmKM9o6/glTmN0RFVdu2VuFXMYYtRmuv3zTGCgAYMnEZLde3B7BTp+Yxcig==", 161 | "dev": true 162 | }, 163 | "node_modules/@types/tern": { 164 | "version": "0.23.4", 165 | "resolved": "https://registry.npmjs.org/@types/tern/-/tern-0.23.4.tgz", 166 | "integrity": "sha512-JAUw1iXGO1qaWwEOzxTKJZ/5JxVeON9kvGZ/osgZaJImBnyjyn0cjovPsf6FNLmyGY8Vw9DoXZCMlfMkMwHRWg==", 167 | "dev": true, 168 | "dependencies": { 169 | "@types/estree": "*" 170 | } 171 | }, 172 | "node_modules/@typescript-eslint/eslint-plugin": { 173 | "version": "5.29.0", 174 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.29.0.tgz", 175 | "integrity": "sha512-kgTsISt9pM53yRFQmLZ4npj99yGl3x3Pl7z4eA66OuTzAGC4bQB5H5fuLwPnqTKU3yyrrg4MIhjF17UYnL4c0w==", 176 | "dev": true, 177 | "dependencies": { 178 | "@typescript-eslint/scope-manager": "5.29.0", 179 | "@typescript-eslint/type-utils": "5.29.0", 180 | "@typescript-eslint/utils": "5.29.0", 181 | "debug": "^4.3.4", 182 | "functional-red-black-tree": "^1.0.1", 183 | "ignore": "^5.2.0", 184 | "regexpp": "^3.2.0", 185 | "semver": "^7.3.7", 186 | "tsutils": "^3.21.0" 187 | }, 188 | "engines": { 189 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 190 | }, 191 | "funding": { 192 | "type": "opencollective", 193 | "url": "https://opencollective.com/typescript-eslint" 194 | }, 195 | "peerDependencies": { 196 | "@typescript-eslint/parser": "^5.0.0", 197 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 198 | }, 199 | "peerDependenciesMeta": { 200 | "typescript": { 201 | "optional": true 202 | } 203 | } 204 | }, 205 | "node_modules/@typescript-eslint/parser": { 206 | "version": "5.29.0", 207 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.29.0.tgz", 208 | "integrity": "sha512-ruKWTv+x0OOxbzIw9nW5oWlUopvP/IQDjB5ZqmTglLIoDTctLlAJpAQFpNPJP/ZI7hTT9sARBosEfaKbcFuECw==", 209 | "dev": true, 210 | "dependencies": { 211 | "@typescript-eslint/scope-manager": "5.29.0", 212 | "@typescript-eslint/types": "5.29.0", 213 | "@typescript-eslint/typescript-estree": "5.29.0", 214 | "debug": "^4.3.4" 215 | }, 216 | "engines": { 217 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 218 | }, 219 | "funding": { 220 | "type": "opencollective", 221 | "url": "https://opencollective.com/typescript-eslint" 222 | }, 223 | "peerDependencies": { 224 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 225 | }, 226 | "peerDependenciesMeta": { 227 | "typescript": { 228 | "optional": true 229 | } 230 | } 231 | }, 232 | "node_modules/@typescript-eslint/scope-manager": { 233 | "version": "5.29.0", 234 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.29.0.tgz", 235 | "integrity": "sha512-etbXUT0FygFi2ihcxDZjz21LtC+Eps9V2xVx09zFoN44RRHPrkMflidGMI+2dUs821zR1tDS6Oc9IXxIjOUZwA==", 236 | "dev": true, 237 | "dependencies": { 238 | "@typescript-eslint/types": "5.29.0", 239 | "@typescript-eslint/visitor-keys": "5.29.0" 240 | }, 241 | "engines": { 242 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 243 | }, 244 | "funding": { 245 | "type": "opencollective", 246 | "url": "https://opencollective.com/typescript-eslint" 247 | } 248 | }, 249 | "node_modules/@typescript-eslint/type-utils": { 250 | "version": "5.29.0", 251 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.29.0.tgz", 252 | "integrity": "sha512-JK6bAaaiJozbox3K220VRfCzLa9n0ib/J+FHIwnaV3Enw/TO267qe0pM1b1QrrEuy6xun374XEAsRlA86JJnyg==", 253 | "dev": true, 254 | "dependencies": { 255 | "@typescript-eslint/utils": "5.29.0", 256 | "debug": "^4.3.4", 257 | "tsutils": "^3.21.0" 258 | }, 259 | "engines": { 260 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 261 | }, 262 | "funding": { 263 | "type": "opencollective", 264 | "url": "https://opencollective.com/typescript-eslint" 265 | }, 266 | "peerDependencies": { 267 | "eslint": "*" 268 | }, 269 | "peerDependenciesMeta": { 270 | "typescript": { 271 | "optional": true 272 | } 273 | } 274 | }, 275 | "node_modules/@typescript-eslint/types": { 276 | "version": "5.29.0", 277 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.29.0.tgz", 278 | "integrity": "sha512-X99VbqvAXOMdVyfFmksMy3u8p8yoRGITgU1joBJPzeYa0rhdf5ok9S56/itRoUSh99fiDoMtarSIJXo7H/SnOg==", 279 | "dev": true, 280 | "engines": { 281 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 282 | }, 283 | "funding": { 284 | "type": "opencollective", 285 | "url": "https://opencollective.com/typescript-eslint" 286 | } 287 | }, 288 | "node_modules/@typescript-eslint/typescript-estree": { 289 | "version": "5.29.0", 290 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.29.0.tgz", 291 | "integrity": "sha512-mQvSUJ/JjGBdvo+1LwC+GY2XmSYjK1nAaVw2emp/E61wEVYEyibRHCqm1I1vEKbXCpUKuW4G7u9ZCaZhJbLoNQ==", 292 | "dev": true, 293 | "dependencies": { 294 | "@typescript-eslint/types": "5.29.0", 295 | "@typescript-eslint/visitor-keys": "5.29.0", 296 | "debug": "^4.3.4", 297 | "globby": "^11.1.0", 298 | "is-glob": "^4.0.3", 299 | "semver": "^7.3.7", 300 | "tsutils": "^3.21.0" 301 | }, 302 | "engines": { 303 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 304 | }, 305 | "funding": { 306 | "type": "opencollective", 307 | "url": "https://opencollective.com/typescript-eslint" 308 | }, 309 | "peerDependenciesMeta": { 310 | "typescript": { 311 | "optional": true 312 | } 313 | } 314 | }, 315 | "node_modules/@typescript-eslint/utils": { 316 | "version": "5.29.0", 317 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.29.0.tgz", 318 | "integrity": "sha512-3Eos6uP1nyLOBayc/VUdKZikV90HahXE5Dx9L5YlSd/7ylQPXhLk1BYb29SDgnBnTp+jmSZUU0QxUiyHgW4p7A==", 319 | "dev": true, 320 | "dependencies": { 321 | "@types/json-schema": "^7.0.9", 322 | "@typescript-eslint/scope-manager": "5.29.0", 323 | "@typescript-eslint/types": "5.29.0", 324 | "@typescript-eslint/typescript-estree": "5.29.0", 325 | "eslint-scope": "^5.1.1", 326 | "eslint-utils": "^3.0.0" 327 | }, 328 | "engines": { 329 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 330 | }, 331 | "funding": { 332 | "type": "opencollective", 333 | "url": "https://opencollective.com/typescript-eslint" 334 | }, 335 | "peerDependencies": { 336 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 337 | } 338 | }, 339 | "node_modules/@typescript-eslint/visitor-keys": { 340 | "version": "5.29.0", 341 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.29.0.tgz", 342 | "integrity": "sha512-Hpb/mCWsjILvikMQoZIE3voc9wtQcS0A9FUw3h8bhr9UxBdtI/tw1ZDZUOXHXLOVMedKCH5NxyzATwnU78bWCQ==", 343 | "dev": true, 344 | "dependencies": { 345 | "@typescript-eslint/types": "5.29.0", 346 | "eslint-visitor-keys": "^3.3.0" 347 | }, 348 | "engines": { 349 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 350 | }, 351 | "funding": { 352 | "type": "opencollective", 353 | "url": "https://opencollective.com/typescript-eslint" 354 | } 355 | }, 356 | "node_modules/acorn": { 357 | "version": "8.8.0", 358 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", 359 | "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", 360 | "dev": true, 361 | "peer": true, 362 | "bin": { 363 | "acorn": "bin/acorn" 364 | }, 365 | "engines": { 366 | "node": ">=0.4.0" 367 | } 368 | }, 369 | "node_modules/acorn-jsx": { 370 | "version": "5.3.2", 371 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 372 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 373 | "dev": true, 374 | "peer": true, 375 | "peerDependencies": { 376 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 377 | } 378 | }, 379 | "node_modules/ajv": { 380 | "version": "6.12.6", 381 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 382 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 383 | "dev": true, 384 | "peer": true, 385 | "dependencies": { 386 | "fast-deep-equal": "^3.1.1", 387 | "fast-json-stable-stringify": "^2.0.0", 388 | "json-schema-traverse": "^0.4.1", 389 | "uri-js": "^4.2.2" 390 | }, 391 | "funding": { 392 | "type": "github", 393 | "url": "https://github.com/sponsors/epoberezkin" 394 | } 395 | }, 396 | "node_modules/ansi-regex": { 397 | "version": "5.0.1", 398 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 399 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 400 | "dev": true, 401 | "peer": true, 402 | "engines": { 403 | "node": ">=8" 404 | } 405 | }, 406 | "node_modules/ansi-styles": { 407 | "version": "4.3.0", 408 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 409 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 410 | "dev": true, 411 | "peer": true, 412 | "dependencies": { 413 | "color-convert": "^2.0.1" 414 | }, 415 | "engines": { 416 | "node": ">=8" 417 | }, 418 | "funding": { 419 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 420 | } 421 | }, 422 | "node_modules/argparse": { 423 | "version": "2.0.1", 424 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 425 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 426 | "dev": true, 427 | "peer": true 428 | }, 429 | "node_modules/array-union": { 430 | "version": "2.1.0", 431 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 432 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 433 | "dev": true, 434 | "engines": { 435 | "node": ">=8" 436 | } 437 | }, 438 | "node_modules/balanced-match": { 439 | "version": "1.0.2", 440 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 441 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 442 | "dev": true, 443 | "peer": true 444 | }, 445 | "node_modules/brace-expansion": { 446 | "version": "1.1.11", 447 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 448 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 449 | "dev": true, 450 | "peer": true, 451 | "dependencies": { 452 | "balanced-match": "^1.0.0", 453 | "concat-map": "0.0.1" 454 | } 455 | }, 456 | "node_modules/braces": { 457 | "version": "3.0.2", 458 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 459 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 460 | "dev": true, 461 | "dependencies": { 462 | "fill-range": "^7.0.1" 463 | }, 464 | "engines": { 465 | "node": ">=8" 466 | } 467 | }, 468 | "node_modules/builtin-modules": { 469 | "version": "3.3.0", 470 | "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", 471 | "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", 472 | "dev": true, 473 | "engines": { 474 | "node": ">=6" 475 | }, 476 | "funding": { 477 | "url": "https://github.com/sponsors/sindresorhus" 478 | } 479 | }, 480 | "node_modules/callsites": { 481 | "version": "3.1.0", 482 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 483 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 484 | "dev": true, 485 | "peer": true, 486 | "engines": { 487 | "node": ">=6" 488 | } 489 | }, 490 | "node_modules/chalk": { 491 | "version": "4.1.2", 492 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 493 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 494 | "dev": true, 495 | "peer": true, 496 | "dependencies": { 497 | "ansi-styles": "^4.1.0", 498 | "supports-color": "^7.1.0" 499 | }, 500 | "engines": { 501 | "node": ">=10" 502 | }, 503 | "funding": { 504 | "url": "https://github.com/chalk/chalk?sponsor=1" 505 | } 506 | }, 507 | "node_modules/color-convert": { 508 | "version": "2.0.1", 509 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 510 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 511 | "dev": true, 512 | "peer": true, 513 | "dependencies": { 514 | "color-name": "~1.1.4" 515 | }, 516 | "engines": { 517 | "node": ">=7.0.0" 518 | } 519 | }, 520 | "node_modules/color-name": { 521 | "version": "1.1.4", 522 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 523 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 524 | "dev": true, 525 | "peer": true 526 | }, 527 | "node_modules/concat-map": { 528 | "version": "0.0.1", 529 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 530 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 531 | "dev": true, 532 | "peer": true 533 | }, 534 | "node_modules/cross-spawn": { 535 | "version": "7.0.3", 536 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 537 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 538 | "dev": true, 539 | "peer": true, 540 | "dependencies": { 541 | "path-key": "^3.1.0", 542 | "shebang-command": "^2.0.0", 543 | "which": "^2.0.1" 544 | }, 545 | "engines": { 546 | "node": ">= 8" 547 | } 548 | }, 549 | "node_modules/debug": { 550 | "version": "4.3.4", 551 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 552 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 553 | "dev": true, 554 | "dependencies": { 555 | "ms": "2.1.2" 556 | }, 557 | "engines": { 558 | "node": ">=6.0" 559 | }, 560 | "peerDependenciesMeta": { 561 | "supports-color": { 562 | "optional": true 563 | } 564 | } 565 | }, 566 | "node_modules/deep-is": { 567 | "version": "0.1.4", 568 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 569 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 570 | "dev": true, 571 | "peer": true 572 | }, 573 | "node_modules/dir-glob": { 574 | "version": "3.0.1", 575 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 576 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 577 | "dev": true, 578 | "dependencies": { 579 | "path-type": "^4.0.0" 580 | }, 581 | "engines": { 582 | "node": ">=8" 583 | } 584 | }, 585 | "node_modules/doctrine": { 586 | "version": "3.0.0", 587 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 588 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 589 | "dev": true, 590 | "peer": true, 591 | "dependencies": { 592 | "esutils": "^2.0.2" 593 | }, 594 | "engines": { 595 | "node": ">=6.0.0" 596 | } 597 | }, 598 | "node_modules/esbuild": { 599 | "version": "0.14.47", 600 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.47.tgz", 601 | "integrity": "sha512-wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA==", 602 | "dev": true, 603 | "hasInstallScript": true, 604 | "bin": { 605 | "esbuild": "bin/esbuild" 606 | }, 607 | "engines": { 608 | "node": ">=12" 609 | }, 610 | "optionalDependencies": { 611 | "esbuild-android-64": "0.14.47", 612 | "esbuild-android-arm64": "0.14.47", 613 | "esbuild-darwin-64": "0.14.47", 614 | "esbuild-darwin-arm64": "0.14.47", 615 | "esbuild-freebsd-64": "0.14.47", 616 | "esbuild-freebsd-arm64": "0.14.47", 617 | "esbuild-linux-32": "0.14.47", 618 | "esbuild-linux-64": "0.14.47", 619 | "esbuild-linux-arm": "0.14.47", 620 | "esbuild-linux-arm64": "0.14.47", 621 | "esbuild-linux-mips64le": "0.14.47", 622 | "esbuild-linux-ppc64le": "0.14.47", 623 | "esbuild-linux-riscv64": "0.14.47", 624 | "esbuild-linux-s390x": "0.14.47", 625 | "esbuild-netbsd-64": "0.14.47", 626 | "esbuild-openbsd-64": "0.14.47", 627 | "esbuild-sunos-64": "0.14.47", 628 | "esbuild-windows-32": "0.14.47", 629 | "esbuild-windows-64": "0.14.47", 630 | "esbuild-windows-arm64": "0.14.47" 631 | } 632 | }, 633 | "node_modules/esbuild-android-64": { 634 | "version": "0.14.47", 635 | "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.47.tgz", 636 | "integrity": "sha512-R13Bd9+tqLVFndncMHssZrPWe6/0Kpv2/dt4aA69soX4PRxlzsVpCvoJeFE8sOEoeVEiBkI0myjlkDodXlHa0g==", 637 | "cpu": [ 638 | "x64" 639 | ], 640 | "dev": true, 641 | "optional": true, 642 | "os": [ 643 | "android" 644 | ], 645 | "engines": { 646 | "node": ">=12" 647 | } 648 | }, 649 | "node_modules/esbuild-android-arm64": { 650 | "version": "0.14.47", 651 | "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.47.tgz", 652 | "integrity": "sha512-OkwOjj7ts4lBp/TL6hdd8HftIzOy/pdtbrNA4+0oVWgGG64HrdVzAF5gxtJufAPOsEjkyh1oIYvKAUinKKQRSQ==", 653 | "cpu": [ 654 | "arm64" 655 | ], 656 | "dev": true, 657 | "optional": true, 658 | "os": [ 659 | "android" 660 | ], 661 | "engines": { 662 | "node": ">=12" 663 | } 664 | }, 665 | "node_modules/esbuild-darwin-64": { 666 | "version": "0.14.47", 667 | "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.47.tgz", 668 | "integrity": "sha512-R6oaW0y5/u6Eccti/TS6c/2c1xYTb1izwK3gajJwi4vIfNs1s8B1dQzI1UiC9T61YovOQVuePDcfqHLT3mUZJA==", 669 | "cpu": [ 670 | "x64" 671 | ], 672 | "dev": true, 673 | "optional": true, 674 | "os": [ 675 | "darwin" 676 | ], 677 | "engines": { 678 | "node": ">=12" 679 | } 680 | }, 681 | "node_modules/esbuild-darwin-arm64": { 682 | "version": "0.14.47", 683 | "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.47.tgz", 684 | "integrity": "sha512-seCmearlQyvdvM/noz1L9+qblC5vcBrhUaOoLEDDoLInF/VQ9IkobGiLlyTPYP5dW1YD4LXhtBgOyevoIHGGnw==", 685 | "cpu": [ 686 | "arm64" 687 | ], 688 | "dev": true, 689 | "optional": true, 690 | "os": [ 691 | "darwin" 692 | ], 693 | "engines": { 694 | "node": ">=12" 695 | } 696 | }, 697 | "node_modules/esbuild-freebsd-64": { 698 | "version": "0.14.47", 699 | "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.47.tgz", 700 | "integrity": "sha512-ZH8K2Q8/Ux5kXXvQMDsJcxvkIwut69KVrYQhza/ptkW50DC089bCVrJZZ3sKzIoOx+YPTrmsZvqeZERjyYrlvQ==", 701 | "cpu": [ 702 | "x64" 703 | ], 704 | "dev": true, 705 | "optional": true, 706 | "os": [ 707 | "freebsd" 708 | ], 709 | "engines": { 710 | "node": ">=12" 711 | } 712 | }, 713 | "node_modules/esbuild-freebsd-arm64": { 714 | "version": "0.14.47", 715 | "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.47.tgz", 716 | "integrity": "sha512-ZJMQAJQsIOhn3XTm7MPQfCzEu5b9STNC+s90zMWe2afy9EwnHV7Ov7ohEMv2lyWlc2pjqLW8QJnz2r0KZmeAEQ==", 717 | "cpu": [ 718 | "arm64" 719 | ], 720 | "dev": true, 721 | "optional": true, 722 | "os": [ 723 | "freebsd" 724 | ], 725 | "engines": { 726 | "node": ">=12" 727 | } 728 | }, 729 | "node_modules/esbuild-linux-32": { 730 | "version": "0.14.47", 731 | "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.47.tgz", 732 | "integrity": "sha512-FxZOCKoEDPRYvq300lsWCTv1kcHgiiZfNrPtEhFAiqD7QZaXrad8LxyJ8fXGcWzIFzRiYZVtB3ttvITBvAFhKw==", 733 | "cpu": [ 734 | "ia32" 735 | ], 736 | "dev": true, 737 | "optional": true, 738 | "os": [ 739 | "linux" 740 | ], 741 | "engines": { 742 | "node": ">=12" 743 | } 744 | }, 745 | "node_modules/esbuild-linux-64": { 746 | "version": "0.14.47", 747 | "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.47.tgz", 748 | "integrity": "sha512-nFNOk9vWVfvWYF9YNYksZptgQAdstnDCMtR6m42l5Wfugbzu11VpMCY9XrD4yFxvPo9zmzcoUL/88y0lfJZJJw==", 749 | "cpu": [ 750 | "x64" 751 | ], 752 | "dev": true, 753 | "optional": true, 754 | "os": [ 755 | "linux" 756 | ], 757 | "engines": { 758 | "node": ">=12" 759 | } 760 | }, 761 | "node_modules/esbuild-linux-arm": { 762 | "version": "0.14.47", 763 | "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.47.tgz", 764 | "integrity": "sha512-ZGE1Bqg/gPRXrBpgpvH81tQHpiaGxa8c9Rx/XOylkIl2ypLuOcawXEAo8ls+5DFCcRGt/o3sV+PzpAFZobOsmA==", 765 | "cpu": [ 766 | "arm" 767 | ], 768 | "dev": true, 769 | "optional": true, 770 | "os": [ 771 | "linux" 772 | ], 773 | "engines": { 774 | "node": ">=12" 775 | } 776 | }, 777 | "node_modules/esbuild-linux-arm64": { 778 | "version": "0.14.47", 779 | "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.47.tgz", 780 | "integrity": "sha512-ywfme6HVrhWcevzmsufjd4iT3PxTfCX9HOdxA7Hd+/ZM23Y9nXeb+vG6AyA6jgq/JovkcqRHcL9XwRNpWG6XRw==", 781 | "cpu": [ 782 | "arm64" 783 | ], 784 | "dev": true, 785 | "optional": true, 786 | "os": [ 787 | "linux" 788 | ], 789 | "engines": { 790 | "node": ">=12" 791 | } 792 | }, 793 | "node_modules/esbuild-linux-mips64le": { 794 | "version": "0.14.47", 795 | "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.47.tgz", 796 | "integrity": "sha512-mg3D8YndZ1LvUiEdDYR3OsmeyAew4MA/dvaEJxvyygahWmpv1SlEEnhEZlhPokjsUMfRagzsEF/d/2XF+kTQGg==", 797 | "cpu": [ 798 | "mips64el" 799 | ], 800 | "dev": true, 801 | "optional": true, 802 | "os": [ 803 | "linux" 804 | ], 805 | "engines": { 806 | "node": ">=12" 807 | } 808 | }, 809 | "node_modules/esbuild-linux-ppc64le": { 810 | "version": "0.14.47", 811 | "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.47.tgz", 812 | "integrity": "sha512-WER+f3+szmnZiWoK6AsrTKGoJoErG2LlauSmk73LEZFQ/iWC+KhhDsOkn1xBUpzXWsxN9THmQFltLoaFEH8F8w==", 813 | "cpu": [ 814 | "ppc64" 815 | ], 816 | "dev": true, 817 | "optional": true, 818 | "os": [ 819 | "linux" 820 | ], 821 | "engines": { 822 | "node": ">=12" 823 | } 824 | }, 825 | "node_modules/esbuild-linux-riscv64": { 826 | "version": "0.14.47", 827 | "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.47.tgz", 828 | "integrity": "sha512-1fI6bP3A3rvI9BsaaXbMoaOjLE3lVkJtLxsgLHqlBhLlBVY7UqffWBvkrX/9zfPhhVMd9ZRFiaqXnB1T7BsL2g==", 829 | "cpu": [ 830 | "riscv64" 831 | ], 832 | "dev": true, 833 | "optional": true, 834 | "os": [ 835 | "linux" 836 | ], 837 | "engines": { 838 | "node": ">=12" 839 | } 840 | }, 841 | "node_modules/esbuild-linux-s390x": { 842 | "version": "0.14.47", 843 | "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.47.tgz", 844 | "integrity": "sha512-eZrWzy0xFAhki1CWRGnhsHVz7IlSKX6yT2tj2Eg8lhAwlRE5E96Hsb0M1mPSE1dHGpt1QVwwVivXIAacF/G6mw==", 845 | "cpu": [ 846 | "s390x" 847 | ], 848 | "dev": true, 849 | "optional": true, 850 | "os": [ 851 | "linux" 852 | ], 853 | "engines": { 854 | "node": ">=12" 855 | } 856 | }, 857 | "node_modules/esbuild-netbsd-64": { 858 | "version": "0.14.47", 859 | "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.47.tgz", 860 | "integrity": "sha512-Qjdjr+KQQVH5Q2Q1r6HBYswFTToPpss3gqCiSw2Fpq/ua8+eXSQyAMG+UvULPqXceOwpnPo4smyZyHdlkcPppQ==", 861 | "cpu": [ 862 | "x64" 863 | ], 864 | "dev": true, 865 | "optional": true, 866 | "os": [ 867 | "netbsd" 868 | ], 869 | "engines": { 870 | "node": ">=12" 871 | } 872 | }, 873 | "node_modules/esbuild-openbsd-64": { 874 | "version": "0.14.47", 875 | "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.47.tgz", 876 | "integrity": "sha512-QpgN8ofL7B9z8g5zZqJE+eFvD1LehRlxr25PBkjyyasakm4599iroUpaj96rdqRlO2ShuyqwJdr+oNqWwTUmQw==", 877 | "cpu": [ 878 | "x64" 879 | ], 880 | "dev": true, 881 | "optional": true, 882 | "os": [ 883 | "openbsd" 884 | ], 885 | "engines": { 886 | "node": ">=12" 887 | } 888 | }, 889 | "node_modules/esbuild-sunos-64": { 890 | "version": "0.14.47", 891 | "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.47.tgz", 892 | "integrity": "sha512-uOeSgLUwukLioAJOiGYm3kNl+1wJjgJA8R671GYgcPgCx7QR73zfvYqXFFcIO93/nBdIbt5hd8RItqbbf3HtAQ==", 893 | "cpu": [ 894 | "x64" 895 | ], 896 | "dev": true, 897 | "optional": true, 898 | "os": [ 899 | "sunos" 900 | ], 901 | "engines": { 902 | "node": ">=12" 903 | } 904 | }, 905 | "node_modules/esbuild-windows-32": { 906 | "version": "0.14.47", 907 | "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.47.tgz", 908 | "integrity": "sha512-H0fWsLTp2WBfKLBgwYT4OTfFly4Im/8B5f3ojDv1Kx//kiubVY0IQunP2Koc/fr/0wI7hj3IiBDbSrmKlrNgLQ==", 909 | "cpu": [ 910 | "ia32" 911 | ], 912 | "dev": true, 913 | "optional": true, 914 | "os": [ 915 | "win32" 916 | ], 917 | "engines": { 918 | "node": ">=12" 919 | } 920 | }, 921 | "node_modules/esbuild-windows-64": { 922 | "version": "0.14.47", 923 | "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.47.tgz", 924 | "integrity": "sha512-/Pk5jIEH34T68r8PweKRi77W49KwanZ8X6lr3vDAtOlH5EumPE4pBHqkCUdELanvsT14yMXLQ/C/8XPi1pAtkQ==", 925 | "cpu": [ 926 | "x64" 927 | ], 928 | "dev": true, 929 | "optional": true, 930 | "os": [ 931 | "win32" 932 | ], 933 | "engines": { 934 | "node": ">=12" 935 | } 936 | }, 937 | "node_modules/esbuild-windows-arm64": { 938 | "version": "0.14.47", 939 | "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.47.tgz", 940 | "integrity": "sha512-HFSW2lnp62fl86/qPQlqw6asIwCnEsEoNIL1h2uVMgakddf+vUuMcCbtUY1i8sst7KkgHrVKCJQB33YhhOweCQ==", 941 | "cpu": [ 942 | "arm64" 943 | ], 944 | "dev": true, 945 | "optional": true, 946 | "os": [ 947 | "win32" 948 | ], 949 | "engines": { 950 | "node": ">=12" 951 | } 952 | }, 953 | "node_modules/escape-string-regexp": { 954 | "version": "4.0.0", 955 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 956 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 957 | "dev": true, 958 | "peer": true, 959 | "engines": { 960 | "node": ">=10" 961 | }, 962 | "funding": { 963 | "url": "https://github.com/sponsors/sindresorhus" 964 | } 965 | }, 966 | "node_modules/eslint": { 967 | "version": "8.25.0", 968 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.25.0.tgz", 969 | "integrity": "sha512-DVlJOZ4Pn50zcKW5bYH7GQK/9MsoQG2d5eDH0ebEkE8PbgzTTmtt/VTH9GGJ4BfeZCpBLqFfvsjX35UacUL83A==", 970 | "dev": true, 971 | "peer": true, 972 | "dependencies": { 973 | "@eslint/eslintrc": "^1.3.3", 974 | "@humanwhocodes/config-array": "^0.10.5", 975 | "@humanwhocodes/module-importer": "^1.0.1", 976 | "ajv": "^6.10.0", 977 | "chalk": "^4.0.0", 978 | "cross-spawn": "^7.0.2", 979 | "debug": "^4.3.2", 980 | "doctrine": "^3.0.0", 981 | "escape-string-regexp": "^4.0.0", 982 | "eslint-scope": "^7.1.1", 983 | "eslint-utils": "^3.0.0", 984 | "eslint-visitor-keys": "^3.3.0", 985 | "espree": "^9.4.0", 986 | "esquery": "^1.4.0", 987 | "esutils": "^2.0.2", 988 | "fast-deep-equal": "^3.1.3", 989 | "file-entry-cache": "^6.0.1", 990 | "find-up": "^5.0.0", 991 | "glob-parent": "^6.0.1", 992 | "globals": "^13.15.0", 993 | "globby": "^11.1.0", 994 | "grapheme-splitter": "^1.0.4", 995 | "ignore": "^5.2.0", 996 | "import-fresh": "^3.0.0", 997 | "imurmurhash": "^0.1.4", 998 | "is-glob": "^4.0.0", 999 | "js-sdsl": "^4.1.4", 1000 | "js-yaml": "^4.1.0", 1001 | "json-stable-stringify-without-jsonify": "^1.0.1", 1002 | "levn": "^0.4.1", 1003 | "lodash.merge": "^4.6.2", 1004 | "minimatch": "^3.1.2", 1005 | "natural-compare": "^1.4.0", 1006 | "optionator": "^0.9.1", 1007 | "regexpp": "^3.2.0", 1008 | "strip-ansi": "^6.0.1", 1009 | "strip-json-comments": "^3.1.0", 1010 | "text-table": "^0.2.0" 1011 | }, 1012 | "bin": { 1013 | "eslint": "bin/eslint.js" 1014 | }, 1015 | "engines": { 1016 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1017 | }, 1018 | "funding": { 1019 | "url": "https://opencollective.com/eslint" 1020 | } 1021 | }, 1022 | "node_modules/eslint-scope": { 1023 | "version": "5.1.1", 1024 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", 1025 | "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", 1026 | "dev": true, 1027 | "dependencies": { 1028 | "esrecurse": "^4.3.0", 1029 | "estraverse": "^4.1.1" 1030 | }, 1031 | "engines": { 1032 | "node": ">=8.0.0" 1033 | } 1034 | }, 1035 | "node_modules/eslint-utils": { 1036 | "version": "3.0.0", 1037 | "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", 1038 | "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", 1039 | "dev": true, 1040 | "dependencies": { 1041 | "eslint-visitor-keys": "^2.0.0" 1042 | }, 1043 | "engines": { 1044 | "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" 1045 | }, 1046 | "funding": { 1047 | "url": "https://github.com/sponsors/mysticatea" 1048 | }, 1049 | "peerDependencies": { 1050 | "eslint": ">=5" 1051 | } 1052 | }, 1053 | "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { 1054 | "version": "2.1.0", 1055 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", 1056 | "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", 1057 | "dev": true, 1058 | "engines": { 1059 | "node": ">=10" 1060 | } 1061 | }, 1062 | "node_modules/eslint-visitor-keys": { 1063 | "version": "3.3.0", 1064 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", 1065 | "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", 1066 | "dev": true, 1067 | "engines": { 1068 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1069 | } 1070 | }, 1071 | "node_modules/eslint/node_modules/eslint-scope": { 1072 | "version": "7.1.1", 1073 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", 1074 | "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", 1075 | "dev": true, 1076 | "peer": true, 1077 | "dependencies": { 1078 | "esrecurse": "^4.3.0", 1079 | "estraverse": "^5.2.0" 1080 | }, 1081 | "engines": { 1082 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1083 | } 1084 | }, 1085 | "node_modules/eslint/node_modules/estraverse": { 1086 | "version": "5.3.0", 1087 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1088 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1089 | "dev": true, 1090 | "peer": true, 1091 | "engines": { 1092 | "node": ">=4.0" 1093 | } 1094 | }, 1095 | "node_modules/espree": { 1096 | "version": "9.4.0", 1097 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.0.tgz", 1098 | "integrity": "sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==", 1099 | "dev": true, 1100 | "peer": true, 1101 | "dependencies": { 1102 | "acorn": "^8.8.0", 1103 | "acorn-jsx": "^5.3.2", 1104 | "eslint-visitor-keys": "^3.3.0" 1105 | }, 1106 | "engines": { 1107 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1108 | }, 1109 | "funding": { 1110 | "url": "https://opencollective.com/eslint" 1111 | } 1112 | }, 1113 | "node_modules/esquery": { 1114 | "version": "1.4.0", 1115 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", 1116 | "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", 1117 | "dev": true, 1118 | "peer": true, 1119 | "dependencies": { 1120 | "estraverse": "^5.1.0" 1121 | }, 1122 | "engines": { 1123 | "node": ">=0.10" 1124 | } 1125 | }, 1126 | "node_modules/esquery/node_modules/estraverse": { 1127 | "version": "5.3.0", 1128 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1129 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1130 | "dev": true, 1131 | "peer": true, 1132 | "engines": { 1133 | "node": ">=4.0" 1134 | } 1135 | }, 1136 | "node_modules/esrecurse": { 1137 | "version": "4.3.0", 1138 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1139 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1140 | "dev": true, 1141 | "dependencies": { 1142 | "estraverse": "^5.2.0" 1143 | }, 1144 | "engines": { 1145 | "node": ">=4.0" 1146 | } 1147 | }, 1148 | "node_modules/esrecurse/node_modules/estraverse": { 1149 | "version": "5.3.0", 1150 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1151 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1152 | "dev": true, 1153 | "engines": { 1154 | "node": ">=4.0" 1155 | } 1156 | }, 1157 | "node_modules/estraverse": { 1158 | "version": "4.3.0", 1159 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", 1160 | "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", 1161 | "dev": true, 1162 | "engines": { 1163 | "node": ">=4.0" 1164 | } 1165 | }, 1166 | "node_modules/esutils": { 1167 | "version": "2.0.3", 1168 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1169 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1170 | "dev": true, 1171 | "peer": true, 1172 | "engines": { 1173 | "node": ">=0.10.0" 1174 | } 1175 | }, 1176 | "node_modules/fast-deep-equal": { 1177 | "version": "3.1.3", 1178 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1179 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1180 | "dev": true, 1181 | "peer": true 1182 | }, 1183 | "node_modules/fast-glob": { 1184 | "version": "3.2.12", 1185 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", 1186 | "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", 1187 | "dev": true, 1188 | "dependencies": { 1189 | "@nodelib/fs.stat": "^2.0.2", 1190 | "@nodelib/fs.walk": "^1.2.3", 1191 | "glob-parent": "^5.1.2", 1192 | "merge2": "^1.3.0", 1193 | "micromatch": "^4.0.4" 1194 | }, 1195 | "engines": { 1196 | "node": ">=8.6.0" 1197 | } 1198 | }, 1199 | "node_modules/fast-glob/node_modules/glob-parent": { 1200 | "version": "5.1.2", 1201 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1202 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1203 | "dev": true, 1204 | "dependencies": { 1205 | "is-glob": "^4.0.1" 1206 | }, 1207 | "engines": { 1208 | "node": ">= 6" 1209 | } 1210 | }, 1211 | "node_modules/fast-json-stable-stringify": { 1212 | "version": "2.1.0", 1213 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1214 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1215 | "dev": true, 1216 | "peer": true 1217 | }, 1218 | "node_modules/fast-levenshtein": { 1219 | "version": "2.0.6", 1220 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1221 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1222 | "dev": true, 1223 | "peer": true 1224 | }, 1225 | "node_modules/fastq": { 1226 | "version": "1.13.0", 1227 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", 1228 | "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", 1229 | "dev": true, 1230 | "dependencies": { 1231 | "reusify": "^1.0.4" 1232 | } 1233 | }, 1234 | "node_modules/file-entry-cache": { 1235 | "version": "6.0.1", 1236 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1237 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1238 | "dev": true, 1239 | "peer": true, 1240 | "dependencies": { 1241 | "flat-cache": "^3.0.4" 1242 | }, 1243 | "engines": { 1244 | "node": "^10.12.0 || >=12.0.0" 1245 | } 1246 | }, 1247 | "node_modules/fill-range": { 1248 | "version": "7.0.1", 1249 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 1250 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 1251 | "dev": true, 1252 | "dependencies": { 1253 | "to-regex-range": "^5.0.1" 1254 | }, 1255 | "engines": { 1256 | "node": ">=8" 1257 | } 1258 | }, 1259 | "node_modules/find-up": { 1260 | "version": "5.0.0", 1261 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1262 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1263 | "dev": true, 1264 | "peer": true, 1265 | "dependencies": { 1266 | "locate-path": "^6.0.0", 1267 | "path-exists": "^4.0.0" 1268 | }, 1269 | "engines": { 1270 | "node": ">=10" 1271 | }, 1272 | "funding": { 1273 | "url": "https://github.com/sponsors/sindresorhus" 1274 | } 1275 | }, 1276 | "node_modules/flat-cache": { 1277 | "version": "3.0.4", 1278 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", 1279 | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", 1280 | "dev": true, 1281 | "peer": true, 1282 | "dependencies": { 1283 | "flatted": "^3.1.0", 1284 | "rimraf": "^3.0.2" 1285 | }, 1286 | "engines": { 1287 | "node": "^10.12.0 || >=12.0.0" 1288 | } 1289 | }, 1290 | "node_modules/flatted": { 1291 | "version": "3.2.7", 1292 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", 1293 | "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", 1294 | "dev": true, 1295 | "peer": true 1296 | }, 1297 | "node_modules/fs.realpath": { 1298 | "version": "1.0.0", 1299 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1300 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1301 | "dev": true, 1302 | "peer": true 1303 | }, 1304 | "node_modules/functional-red-black-tree": { 1305 | "version": "1.0.1", 1306 | "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", 1307 | "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", 1308 | "dev": true 1309 | }, 1310 | "node_modules/glob": { 1311 | "version": "7.2.3", 1312 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 1313 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 1314 | "dev": true, 1315 | "peer": true, 1316 | "dependencies": { 1317 | "fs.realpath": "^1.0.0", 1318 | "inflight": "^1.0.4", 1319 | "inherits": "2", 1320 | "minimatch": "^3.1.1", 1321 | "once": "^1.3.0", 1322 | "path-is-absolute": "^1.0.0" 1323 | }, 1324 | "engines": { 1325 | "node": "*" 1326 | }, 1327 | "funding": { 1328 | "url": "https://github.com/sponsors/isaacs" 1329 | } 1330 | }, 1331 | "node_modules/glob-parent": { 1332 | "version": "6.0.2", 1333 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1334 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1335 | "dev": true, 1336 | "peer": true, 1337 | "dependencies": { 1338 | "is-glob": "^4.0.3" 1339 | }, 1340 | "engines": { 1341 | "node": ">=10.13.0" 1342 | } 1343 | }, 1344 | "node_modules/globals": { 1345 | "version": "13.17.0", 1346 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", 1347 | "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", 1348 | "dev": true, 1349 | "peer": true, 1350 | "dependencies": { 1351 | "type-fest": "^0.20.2" 1352 | }, 1353 | "engines": { 1354 | "node": ">=8" 1355 | }, 1356 | "funding": { 1357 | "url": "https://github.com/sponsors/sindresorhus" 1358 | } 1359 | }, 1360 | "node_modules/globby": { 1361 | "version": "11.1.0", 1362 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 1363 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 1364 | "dev": true, 1365 | "dependencies": { 1366 | "array-union": "^2.1.0", 1367 | "dir-glob": "^3.0.1", 1368 | "fast-glob": "^3.2.9", 1369 | "ignore": "^5.2.0", 1370 | "merge2": "^1.4.1", 1371 | "slash": "^3.0.0" 1372 | }, 1373 | "engines": { 1374 | "node": ">=10" 1375 | }, 1376 | "funding": { 1377 | "url": "https://github.com/sponsors/sindresorhus" 1378 | } 1379 | }, 1380 | "node_modules/grapheme-splitter": { 1381 | "version": "1.0.4", 1382 | "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", 1383 | "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", 1384 | "dev": true, 1385 | "peer": true 1386 | }, 1387 | "node_modules/has-flag": { 1388 | "version": "4.0.0", 1389 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1390 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1391 | "dev": true, 1392 | "peer": true, 1393 | "engines": { 1394 | "node": ">=8" 1395 | } 1396 | }, 1397 | "node_modules/ignore": { 1398 | "version": "5.2.0", 1399 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", 1400 | "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", 1401 | "dev": true, 1402 | "engines": { 1403 | "node": ">= 4" 1404 | } 1405 | }, 1406 | "node_modules/import-fresh": { 1407 | "version": "3.3.0", 1408 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 1409 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 1410 | "dev": true, 1411 | "peer": true, 1412 | "dependencies": { 1413 | "parent-module": "^1.0.0", 1414 | "resolve-from": "^4.0.0" 1415 | }, 1416 | "engines": { 1417 | "node": ">=6" 1418 | }, 1419 | "funding": { 1420 | "url": "https://github.com/sponsors/sindresorhus" 1421 | } 1422 | }, 1423 | "node_modules/imurmurhash": { 1424 | "version": "0.1.4", 1425 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1426 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 1427 | "dev": true, 1428 | "peer": true, 1429 | "engines": { 1430 | "node": ">=0.8.19" 1431 | } 1432 | }, 1433 | "node_modules/inflight": { 1434 | "version": "1.0.6", 1435 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1436 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1437 | "dev": true, 1438 | "peer": true, 1439 | "dependencies": { 1440 | "once": "^1.3.0", 1441 | "wrappy": "1" 1442 | } 1443 | }, 1444 | "node_modules/inherits": { 1445 | "version": "2.0.4", 1446 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1447 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1448 | "dev": true, 1449 | "peer": true 1450 | }, 1451 | "node_modules/is-extglob": { 1452 | "version": "2.1.1", 1453 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1454 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1455 | "dev": true, 1456 | "engines": { 1457 | "node": ">=0.10.0" 1458 | } 1459 | }, 1460 | "node_modules/is-glob": { 1461 | "version": "4.0.3", 1462 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1463 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1464 | "dev": true, 1465 | "dependencies": { 1466 | "is-extglob": "^2.1.1" 1467 | }, 1468 | "engines": { 1469 | "node": ">=0.10.0" 1470 | } 1471 | }, 1472 | "node_modules/is-number": { 1473 | "version": "7.0.0", 1474 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1475 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1476 | "dev": true, 1477 | "engines": { 1478 | "node": ">=0.12.0" 1479 | } 1480 | }, 1481 | "node_modules/isexe": { 1482 | "version": "2.0.0", 1483 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 1484 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 1485 | "dev": true, 1486 | "peer": true 1487 | }, 1488 | "node_modules/js-sdsl": { 1489 | "version": "4.1.5", 1490 | "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.5.tgz", 1491 | "integrity": "sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==", 1492 | "dev": true, 1493 | "peer": true 1494 | }, 1495 | "node_modules/js-yaml": { 1496 | "version": "4.1.0", 1497 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 1498 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 1499 | "dev": true, 1500 | "peer": true, 1501 | "dependencies": { 1502 | "argparse": "^2.0.1" 1503 | }, 1504 | "bin": { 1505 | "js-yaml": "bin/js-yaml.js" 1506 | } 1507 | }, 1508 | "node_modules/json-schema-traverse": { 1509 | "version": "0.4.1", 1510 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 1511 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 1512 | "dev": true, 1513 | "peer": true 1514 | }, 1515 | "node_modules/json-stable-stringify-without-jsonify": { 1516 | "version": "1.0.1", 1517 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 1518 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 1519 | "dev": true, 1520 | "peer": true 1521 | }, 1522 | "node_modules/levn": { 1523 | "version": "0.4.1", 1524 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 1525 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 1526 | "dev": true, 1527 | "peer": true, 1528 | "dependencies": { 1529 | "prelude-ls": "^1.2.1", 1530 | "type-check": "~0.4.0" 1531 | }, 1532 | "engines": { 1533 | "node": ">= 0.8.0" 1534 | } 1535 | }, 1536 | "node_modules/locate-path": { 1537 | "version": "6.0.0", 1538 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 1539 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 1540 | "dev": true, 1541 | "peer": true, 1542 | "dependencies": { 1543 | "p-locate": "^5.0.0" 1544 | }, 1545 | "engines": { 1546 | "node": ">=10" 1547 | }, 1548 | "funding": { 1549 | "url": "https://github.com/sponsors/sindresorhus" 1550 | } 1551 | }, 1552 | "node_modules/lodash.merge": { 1553 | "version": "4.6.2", 1554 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 1555 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 1556 | "dev": true, 1557 | "peer": true 1558 | }, 1559 | "node_modules/lru-cache": { 1560 | "version": "6.0.0", 1561 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 1562 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 1563 | "dev": true, 1564 | "dependencies": { 1565 | "yallist": "^4.0.0" 1566 | }, 1567 | "engines": { 1568 | "node": ">=10" 1569 | } 1570 | }, 1571 | "node_modules/merge2": { 1572 | "version": "1.4.1", 1573 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 1574 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 1575 | "dev": true, 1576 | "engines": { 1577 | "node": ">= 8" 1578 | } 1579 | }, 1580 | "node_modules/micromatch": { 1581 | "version": "4.0.5", 1582 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 1583 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 1584 | "dev": true, 1585 | "dependencies": { 1586 | "braces": "^3.0.2", 1587 | "picomatch": "^2.3.1" 1588 | }, 1589 | "engines": { 1590 | "node": ">=8.6" 1591 | } 1592 | }, 1593 | "node_modules/minimatch": { 1594 | "version": "3.1.2", 1595 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1596 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1597 | "dev": true, 1598 | "peer": true, 1599 | "dependencies": { 1600 | "brace-expansion": "^1.1.7" 1601 | }, 1602 | "engines": { 1603 | "node": "*" 1604 | } 1605 | }, 1606 | "node_modules/moment": { 1607 | "version": "2.29.4", 1608 | "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", 1609 | "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==", 1610 | "dev": true, 1611 | "engines": { 1612 | "node": "*" 1613 | } 1614 | }, 1615 | "node_modules/ms": { 1616 | "version": "2.1.2", 1617 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1618 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 1619 | "dev": true 1620 | }, 1621 | "node_modules/natural-compare": { 1622 | "version": "1.4.0", 1623 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 1624 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 1625 | "dev": true, 1626 | "peer": true 1627 | }, 1628 | "node_modules/obsidian": { 1629 | "version": "0.16.3", 1630 | "resolved": "https://registry.npmjs.org/obsidian/-/obsidian-0.16.3.tgz", 1631 | "integrity": "sha512-hal9qk1A0GMhHSeLr2/+o3OpLmImiP+Y+sx2ewP13ds76KXsziG96n+IPFT0mSkup1zSwhEu+DeRhmbcyCCXWw==", 1632 | "dev": true, 1633 | "dependencies": { 1634 | "@types/codemirror": "0.0.108", 1635 | "moment": "2.29.4" 1636 | }, 1637 | "peerDependencies": { 1638 | "@codemirror/state": "^6.0.0", 1639 | "@codemirror/view": "^6.0.0" 1640 | } 1641 | }, 1642 | "node_modules/once": { 1643 | "version": "1.4.0", 1644 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 1645 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 1646 | "dev": true, 1647 | "peer": true, 1648 | "dependencies": { 1649 | "wrappy": "1" 1650 | } 1651 | }, 1652 | "node_modules/optionator": { 1653 | "version": "0.9.1", 1654 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", 1655 | "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", 1656 | "dev": true, 1657 | "peer": true, 1658 | "dependencies": { 1659 | "deep-is": "^0.1.3", 1660 | "fast-levenshtein": "^2.0.6", 1661 | "levn": "^0.4.1", 1662 | "prelude-ls": "^1.2.1", 1663 | "type-check": "^0.4.0", 1664 | "word-wrap": "^1.2.3" 1665 | }, 1666 | "engines": { 1667 | "node": ">= 0.8.0" 1668 | } 1669 | }, 1670 | "node_modules/p-limit": { 1671 | "version": "3.1.0", 1672 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 1673 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 1674 | "dev": true, 1675 | "peer": true, 1676 | "dependencies": { 1677 | "yocto-queue": "^0.1.0" 1678 | }, 1679 | "engines": { 1680 | "node": ">=10" 1681 | }, 1682 | "funding": { 1683 | "url": "https://github.com/sponsors/sindresorhus" 1684 | } 1685 | }, 1686 | "node_modules/p-locate": { 1687 | "version": "5.0.0", 1688 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 1689 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 1690 | "dev": true, 1691 | "peer": true, 1692 | "dependencies": { 1693 | "p-limit": "^3.0.2" 1694 | }, 1695 | "engines": { 1696 | "node": ">=10" 1697 | }, 1698 | "funding": { 1699 | "url": "https://github.com/sponsors/sindresorhus" 1700 | } 1701 | }, 1702 | "node_modules/parent-module": { 1703 | "version": "1.0.1", 1704 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 1705 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 1706 | "dev": true, 1707 | "peer": true, 1708 | "dependencies": { 1709 | "callsites": "^3.0.0" 1710 | }, 1711 | "engines": { 1712 | "node": ">=6" 1713 | } 1714 | }, 1715 | "node_modules/path-exists": { 1716 | "version": "4.0.0", 1717 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 1718 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 1719 | "dev": true, 1720 | "peer": true, 1721 | "engines": { 1722 | "node": ">=8" 1723 | } 1724 | }, 1725 | "node_modules/path-is-absolute": { 1726 | "version": "1.0.1", 1727 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 1728 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 1729 | "dev": true, 1730 | "peer": true, 1731 | "engines": { 1732 | "node": ">=0.10.0" 1733 | } 1734 | }, 1735 | "node_modules/path-key": { 1736 | "version": "3.1.1", 1737 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 1738 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 1739 | "dev": true, 1740 | "peer": true, 1741 | "engines": { 1742 | "node": ">=8" 1743 | } 1744 | }, 1745 | "node_modules/path-type": { 1746 | "version": "4.0.0", 1747 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 1748 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 1749 | "dev": true, 1750 | "engines": { 1751 | "node": ">=8" 1752 | } 1753 | }, 1754 | "node_modules/picomatch": { 1755 | "version": "2.3.1", 1756 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 1757 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 1758 | "dev": true, 1759 | "engines": { 1760 | "node": ">=8.6" 1761 | }, 1762 | "funding": { 1763 | "url": "https://github.com/sponsors/jonschlinkert" 1764 | } 1765 | }, 1766 | "node_modules/prelude-ls": { 1767 | "version": "1.2.1", 1768 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 1769 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 1770 | "dev": true, 1771 | "peer": true, 1772 | "engines": { 1773 | "node": ">= 0.8.0" 1774 | } 1775 | }, 1776 | "node_modules/punycode": { 1777 | "version": "2.1.1", 1778 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", 1779 | "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", 1780 | "dev": true, 1781 | "peer": true, 1782 | "engines": { 1783 | "node": ">=6" 1784 | } 1785 | }, 1786 | "node_modules/queue-microtask": { 1787 | "version": "1.2.3", 1788 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 1789 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 1790 | "dev": true, 1791 | "funding": [ 1792 | { 1793 | "type": "github", 1794 | "url": "https://github.com/sponsors/feross" 1795 | }, 1796 | { 1797 | "type": "patreon", 1798 | "url": "https://www.patreon.com/feross" 1799 | }, 1800 | { 1801 | "type": "consulting", 1802 | "url": "https://feross.org/support" 1803 | } 1804 | ] 1805 | }, 1806 | "node_modules/regexpp": { 1807 | "version": "3.2.0", 1808 | "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", 1809 | "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", 1810 | "dev": true, 1811 | "engines": { 1812 | "node": ">=8" 1813 | }, 1814 | "funding": { 1815 | "url": "https://github.com/sponsors/mysticatea" 1816 | } 1817 | }, 1818 | "node_modules/resolve-from": { 1819 | "version": "4.0.0", 1820 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 1821 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 1822 | "dev": true, 1823 | "peer": true, 1824 | "engines": { 1825 | "node": ">=4" 1826 | } 1827 | }, 1828 | "node_modules/reusify": { 1829 | "version": "1.0.4", 1830 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 1831 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 1832 | "dev": true, 1833 | "engines": { 1834 | "iojs": ">=1.0.0", 1835 | "node": ">=0.10.0" 1836 | } 1837 | }, 1838 | "node_modules/rimraf": { 1839 | "version": "3.0.2", 1840 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 1841 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 1842 | "dev": true, 1843 | "peer": true, 1844 | "dependencies": { 1845 | "glob": "^7.1.3" 1846 | }, 1847 | "bin": { 1848 | "rimraf": "bin.js" 1849 | }, 1850 | "funding": { 1851 | "url": "https://github.com/sponsors/isaacs" 1852 | } 1853 | }, 1854 | "node_modules/run-parallel": { 1855 | "version": "1.2.0", 1856 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 1857 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 1858 | "dev": true, 1859 | "funding": [ 1860 | { 1861 | "type": "github", 1862 | "url": "https://github.com/sponsors/feross" 1863 | }, 1864 | { 1865 | "type": "patreon", 1866 | "url": "https://www.patreon.com/feross" 1867 | }, 1868 | { 1869 | "type": "consulting", 1870 | "url": "https://feross.org/support" 1871 | } 1872 | ], 1873 | "dependencies": { 1874 | "queue-microtask": "^1.2.2" 1875 | } 1876 | }, 1877 | "node_modules/semver": { 1878 | "version": "7.3.8", 1879 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", 1880 | "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", 1881 | "dev": true, 1882 | "dependencies": { 1883 | "lru-cache": "^6.0.0" 1884 | }, 1885 | "bin": { 1886 | "semver": "bin/semver.js" 1887 | }, 1888 | "engines": { 1889 | "node": ">=10" 1890 | } 1891 | }, 1892 | "node_modules/shebang-command": { 1893 | "version": "2.0.0", 1894 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 1895 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 1896 | "dev": true, 1897 | "peer": true, 1898 | "dependencies": { 1899 | "shebang-regex": "^3.0.0" 1900 | }, 1901 | "engines": { 1902 | "node": ">=8" 1903 | } 1904 | }, 1905 | "node_modules/shebang-regex": { 1906 | "version": "3.0.0", 1907 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 1908 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 1909 | "dev": true, 1910 | "peer": true, 1911 | "engines": { 1912 | "node": ">=8" 1913 | } 1914 | }, 1915 | "node_modules/slash": { 1916 | "version": "3.0.0", 1917 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 1918 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 1919 | "dev": true, 1920 | "engines": { 1921 | "node": ">=8" 1922 | } 1923 | }, 1924 | "node_modules/strip-ansi": { 1925 | "version": "6.0.1", 1926 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 1927 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 1928 | "dev": true, 1929 | "peer": true, 1930 | "dependencies": { 1931 | "ansi-regex": "^5.0.1" 1932 | }, 1933 | "engines": { 1934 | "node": ">=8" 1935 | } 1936 | }, 1937 | "node_modules/strip-json-comments": { 1938 | "version": "3.1.1", 1939 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 1940 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 1941 | "dev": true, 1942 | "peer": true, 1943 | "engines": { 1944 | "node": ">=8" 1945 | }, 1946 | "funding": { 1947 | "url": "https://github.com/sponsors/sindresorhus" 1948 | } 1949 | }, 1950 | "node_modules/style-mod": { 1951 | "version": "4.0.0", 1952 | "resolved": "https://registry.npmjs.org/style-mod/-/style-mod-4.0.0.tgz", 1953 | "integrity": "sha512-OPhtyEjyyN9x3nhPsu76f52yUGXiZcgvsrFVtvTkyGRQJ0XK+GPc6ov1z+lRpbeabka+MYEQxOYRnt5nF30aMw==", 1954 | "dev": true, 1955 | "peer": true 1956 | }, 1957 | "node_modules/supports-color": { 1958 | "version": "7.2.0", 1959 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 1960 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 1961 | "dev": true, 1962 | "peer": true, 1963 | "dependencies": { 1964 | "has-flag": "^4.0.0" 1965 | }, 1966 | "engines": { 1967 | "node": ">=8" 1968 | } 1969 | }, 1970 | "node_modules/text-table": { 1971 | "version": "0.2.0", 1972 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 1973 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 1974 | "dev": true, 1975 | "peer": true 1976 | }, 1977 | "node_modules/to-regex-range": { 1978 | "version": "5.0.1", 1979 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 1980 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 1981 | "dev": true, 1982 | "dependencies": { 1983 | "is-number": "^7.0.0" 1984 | }, 1985 | "engines": { 1986 | "node": ">=8.0" 1987 | } 1988 | }, 1989 | "node_modules/tslib": { 1990 | "version": "2.4.0", 1991 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", 1992 | "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", 1993 | "dev": true 1994 | }, 1995 | "node_modules/tsutils": { 1996 | "version": "3.21.0", 1997 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", 1998 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", 1999 | "dev": true, 2000 | "dependencies": { 2001 | "tslib": "^1.8.1" 2002 | }, 2003 | "engines": { 2004 | "node": ">= 6" 2005 | }, 2006 | "peerDependencies": { 2007 | "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" 2008 | } 2009 | }, 2010 | "node_modules/tsutils/node_modules/tslib": { 2011 | "version": "1.14.1", 2012 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", 2013 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", 2014 | "dev": true 2015 | }, 2016 | "node_modules/type-check": { 2017 | "version": "0.4.0", 2018 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 2019 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 2020 | "dev": true, 2021 | "peer": true, 2022 | "dependencies": { 2023 | "prelude-ls": "^1.2.1" 2024 | }, 2025 | "engines": { 2026 | "node": ">= 0.8.0" 2027 | } 2028 | }, 2029 | "node_modules/type-fest": { 2030 | "version": "0.20.2", 2031 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 2032 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 2033 | "dev": true, 2034 | "peer": true, 2035 | "engines": { 2036 | "node": ">=10" 2037 | }, 2038 | "funding": { 2039 | "url": "https://github.com/sponsors/sindresorhus" 2040 | } 2041 | }, 2042 | "node_modules/typescript": { 2043 | "version": "4.7.4", 2044 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", 2045 | "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", 2046 | "dev": true, 2047 | "bin": { 2048 | "tsc": "bin/tsc", 2049 | "tsserver": "bin/tsserver" 2050 | }, 2051 | "engines": { 2052 | "node": ">=4.2.0" 2053 | } 2054 | }, 2055 | "node_modules/uri-js": { 2056 | "version": "4.4.1", 2057 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 2058 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 2059 | "dev": true, 2060 | "peer": true, 2061 | "dependencies": { 2062 | "punycode": "^2.1.0" 2063 | } 2064 | }, 2065 | "node_modules/w3c-keyname": { 2066 | "version": "2.2.6", 2067 | "resolved": "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.6.tgz", 2068 | "integrity": "sha512-f+fciywl1SJEniZHD6H+kUO8gOnwIr7f4ijKA6+ZvJFjeGi1r4PDLl53Ayud9O/rk64RqgoQine0feoeOU0kXg==", 2069 | "dev": true, 2070 | "peer": true 2071 | }, 2072 | "node_modules/which": { 2073 | "version": "2.0.2", 2074 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 2075 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 2076 | "dev": true, 2077 | "peer": true, 2078 | "dependencies": { 2079 | "isexe": "^2.0.0" 2080 | }, 2081 | "bin": { 2082 | "node-which": "bin/node-which" 2083 | }, 2084 | "engines": { 2085 | "node": ">= 8" 2086 | } 2087 | }, 2088 | "node_modules/word-wrap": { 2089 | "version": "1.2.3", 2090 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", 2091 | "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", 2092 | "dev": true, 2093 | "peer": true, 2094 | "engines": { 2095 | "node": ">=0.10.0" 2096 | } 2097 | }, 2098 | "node_modules/wrappy": { 2099 | "version": "1.0.2", 2100 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 2101 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 2102 | "dev": true, 2103 | "peer": true 2104 | }, 2105 | "node_modules/yallist": { 2106 | "version": "4.0.0", 2107 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 2108 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 2109 | "dev": true 2110 | }, 2111 | "node_modules/yocto-queue": { 2112 | "version": "0.1.0", 2113 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 2114 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 2115 | "dev": true, 2116 | "peer": true, 2117 | "engines": { 2118 | "node": ">=10" 2119 | }, 2120 | "funding": { 2121 | "url": "https://github.com/sponsors/sindresorhus" 2122 | } 2123 | } 2124 | }, 2125 | "dependencies": { 2126 | "@codemirror/state": { 2127 | "version": "6.1.2", 2128 | "resolved": "https://registry.npmjs.org/@codemirror/state/-/state-6.1.2.tgz", 2129 | "integrity": "sha512-Mxff85Hp5va+zuj+H748KbubXjrinX/k28lj43H14T2D0+4kuvEFIEIO7hCEcvBT8ubZyIelt9yGOjj2MWOEQA==", 2130 | "dev": true, 2131 | "peer": true 2132 | }, 2133 | "@codemirror/view": { 2134 | "version": "6.4.0", 2135 | "resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.4.0.tgz", 2136 | "integrity": "sha512-Kv32b6Tn7QVwFbj/EDswTLSocjk5kgggF6zzBFAL4o4hZ/vmtFD155+EjH1pVlbfoDyVC2M6SedPsMrwYscgNg==", 2137 | "dev": true, 2138 | "peer": true, 2139 | "requires": { 2140 | "@codemirror/state": "^6.0.0", 2141 | "style-mod": "^4.0.0", 2142 | "w3c-keyname": "^2.2.4" 2143 | } 2144 | }, 2145 | "@eslint/eslintrc": { 2146 | "version": "1.3.3", 2147 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz", 2148 | "integrity": "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==", 2149 | "dev": true, 2150 | "peer": true, 2151 | "requires": { 2152 | "ajv": "^6.12.4", 2153 | "debug": "^4.3.2", 2154 | "espree": "^9.4.0", 2155 | "globals": "^13.15.0", 2156 | "ignore": "^5.2.0", 2157 | "import-fresh": "^3.2.1", 2158 | "js-yaml": "^4.1.0", 2159 | "minimatch": "^3.1.2", 2160 | "strip-json-comments": "^3.1.1" 2161 | } 2162 | }, 2163 | "@humanwhocodes/config-array": { 2164 | "version": "0.10.7", 2165 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.10.7.tgz", 2166 | "integrity": "sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w==", 2167 | "dev": true, 2168 | "peer": true, 2169 | "requires": { 2170 | "@humanwhocodes/object-schema": "^1.2.1", 2171 | "debug": "^4.1.1", 2172 | "minimatch": "^3.0.4" 2173 | } 2174 | }, 2175 | "@humanwhocodes/module-importer": { 2176 | "version": "1.0.1", 2177 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 2178 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 2179 | "dev": true, 2180 | "peer": true 2181 | }, 2182 | "@humanwhocodes/object-schema": { 2183 | "version": "1.2.1", 2184 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", 2185 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", 2186 | "dev": true, 2187 | "peer": true 2188 | }, 2189 | "@nodelib/fs.scandir": { 2190 | "version": "2.1.5", 2191 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 2192 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 2193 | "dev": true, 2194 | "requires": { 2195 | "@nodelib/fs.stat": "2.0.5", 2196 | "run-parallel": "^1.1.9" 2197 | } 2198 | }, 2199 | "@nodelib/fs.stat": { 2200 | "version": "2.0.5", 2201 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 2202 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 2203 | "dev": true 2204 | }, 2205 | "@nodelib/fs.walk": { 2206 | "version": "1.2.8", 2207 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 2208 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 2209 | "dev": true, 2210 | "requires": { 2211 | "@nodelib/fs.scandir": "2.1.5", 2212 | "fastq": "^1.6.0" 2213 | } 2214 | }, 2215 | "@types/codemirror": { 2216 | "version": "0.0.108", 2217 | "resolved": "https://registry.npmjs.org/@types/codemirror/-/codemirror-0.0.108.tgz", 2218 | "integrity": "sha512-3FGFcus0P7C2UOGCNUVENqObEb4SFk+S8Dnxq7K6aIsLVs/vDtlangl3PEO0ykaKXyK56swVF6Nho7VsA44uhw==", 2219 | "dev": true, 2220 | "requires": { 2221 | "@types/tern": "*" 2222 | } 2223 | }, 2224 | "@types/estree": { 2225 | "version": "1.0.0", 2226 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", 2227 | "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==", 2228 | "dev": true 2229 | }, 2230 | "@types/json-schema": { 2231 | "version": "7.0.11", 2232 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", 2233 | "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", 2234 | "dev": true 2235 | }, 2236 | "@types/node": { 2237 | "version": "16.11.66", 2238 | "resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.66.tgz", 2239 | "integrity": "sha512-+xvMrGl3eAygKcf5jm+4zA4tbfEgmKM9o6/glTmN0RFVdu2VuFXMYYtRmuv3zTGCgAYMnEZLde3B7BTp+Yxcig==", 2240 | "dev": true 2241 | }, 2242 | "@types/tern": { 2243 | "version": "0.23.4", 2244 | "resolved": "https://registry.npmjs.org/@types/tern/-/tern-0.23.4.tgz", 2245 | "integrity": "sha512-JAUw1iXGO1qaWwEOzxTKJZ/5JxVeON9kvGZ/osgZaJImBnyjyn0cjovPsf6FNLmyGY8Vw9DoXZCMlfMkMwHRWg==", 2246 | "dev": true, 2247 | "requires": { 2248 | "@types/estree": "*" 2249 | } 2250 | }, 2251 | "@typescript-eslint/eslint-plugin": { 2252 | "version": "5.29.0", 2253 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.29.0.tgz", 2254 | "integrity": "sha512-kgTsISt9pM53yRFQmLZ4npj99yGl3x3Pl7z4eA66OuTzAGC4bQB5H5fuLwPnqTKU3yyrrg4MIhjF17UYnL4c0w==", 2255 | "dev": true, 2256 | "requires": { 2257 | "@typescript-eslint/scope-manager": "5.29.0", 2258 | "@typescript-eslint/type-utils": "5.29.0", 2259 | "@typescript-eslint/utils": "5.29.0", 2260 | "debug": "^4.3.4", 2261 | "functional-red-black-tree": "^1.0.1", 2262 | "ignore": "^5.2.0", 2263 | "regexpp": "^3.2.0", 2264 | "semver": "^7.3.7", 2265 | "tsutils": "^3.21.0" 2266 | } 2267 | }, 2268 | "@typescript-eslint/parser": { 2269 | "version": "5.29.0", 2270 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.29.0.tgz", 2271 | "integrity": "sha512-ruKWTv+x0OOxbzIw9nW5oWlUopvP/IQDjB5ZqmTglLIoDTctLlAJpAQFpNPJP/ZI7hTT9sARBosEfaKbcFuECw==", 2272 | "dev": true, 2273 | "requires": { 2274 | "@typescript-eslint/scope-manager": "5.29.0", 2275 | "@typescript-eslint/types": "5.29.0", 2276 | "@typescript-eslint/typescript-estree": "5.29.0", 2277 | "debug": "^4.3.4" 2278 | } 2279 | }, 2280 | "@typescript-eslint/scope-manager": { 2281 | "version": "5.29.0", 2282 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.29.0.tgz", 2283 | "integrity": "sha512-etbXUT0FygFi2ihcxDZjz21LtC+Eps9V2xVx09zFoN44RRHPrkMflidGMI+2dUs821zR1tDS6Oc9IXxIjOUZwA==", 2284 | "dev": true, 2285 | "requires": { 2286 | "@typescript-eslint/types": "5.29.0", 2287 | "@typescript-eslint/visitor-keys": "5.29.0" 2288 | } 2289 | }, 2290 | "@typescript-eslint/type-utils": { 2291 | "version": "5.29.0", 2292 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.29.0.tgz", 2293 | "integrity": "sha512-JK6bAaaiJozbox3K220VRfCzLa9n0ib/J+FHIwnaV3Enw/TO267qe0pM1b1QrrEuy6xun374XEAsRlA86JJnyg==", 2294 | "dev": true, 2295 | "requires": { 2296 | "@typescript-eslint/utils": "5.29.0", 2297 | "debug": "^4.3.4", 2298 | "tsutils": "^3.21.0" 2299 | } 2300 | }, 2301 | "@typescript-eslint/types": { 2302 | "version": "5.29.0", 2303 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.29.0.tgz", 2304 | "integrity": "sha512-X99VbqvAXOMdVyfFmksMy3u8p8yoRGITgU1joBJPzeYa0rhdf5ok9S56/itRoUSh99fiDoMtarSIJXo7H/SnOg==", 2305 | "dev": true 2306 | }, 2307 | "@typescript-eslint/typescript-estree": { 2308 | "version": "5.29.0", 2309 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.29.0.tgz", 2310 | "integrity": "sha512-mQvSUJ/JjGBdvo+1LwC+GY2XmSYjK1nAaVw2emp/E61wEVYEyibRHCqm1I1vEKbXCpUKuW4G7u9ZCaZhJbLoNQ==", 2311 | "dev": true, 2312 | "requires": { 2313 | "@typescript-eslint/types": "5.29.0", 2314 | "@typescript-eslint/visitor-keys": "5.29.0", 2315 | "debug": "^4.3.4", 2316 | "globby": "^11.1.0", 2317 | "is-glob": "^4.0.3", 2318 | "semver": "^7.3.7", 2319 | "tsutils": "^3.21.0" 2320 | } 2321 | }, 2322 | "@typescript-eslint/utils": { 2323 | "version": "5.29.0", 2324 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.29.0.tgz", 2325 | "integrity": "sha512-3Eos6uP1nyLOBayc/VUdKZikV90HahXE5Dx9L5YlSd/7ylQPXhLk1BYb29SDgnBnTp+jmSZUU0QxUiyHgW4p7A==", 2326 | "dev": true, 2327 | "requires": { 2328 | "@types/json-schema": "^7.0.9", 2329 | "@typescript-eslint/scope-manager": "5.29.0", 2330 | "@typescript-eslint/types": "5.29.0", 2331 | "@typescript-eslint/typescript-estree": "5.29.0", 2332 | "eslint-scope": "^5.1.1", 2333 | "eslint-utils": "^3.0.0" 2334 | } 2335 | }, 2336 | "@typescript-eslint/visitor-keys": { 2337 | "version": "5.29.0", 2338 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.29.0.tgz", 2339 | "integrity": "sha512-Hpb/mCWsjILvikMQoZIE3voc9wtQcS0A9FUw3h8bhr9UxBdtI/tw1ZDZUOXHXLOVMedKCH5NxyzATwnU78bWCQ==", 2340 | "dev": true, 2341 | "requires": { 2342 | "@typescript-eslint/types": "5.29.0", 2343 | "eslint-visitor-keys": "^3.3.0" 2344 | } 2345 | }, 2346 | "acorn": { 2347 | "version": "8.8.0", 2348 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", 2349 | "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", 2350 | "dev": true, 2351 | "peer": true 2352 | }, 2353 | "acorn-jsx": { 2354 | "version": "5.3.2", 2355 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 2356 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 2357 | "dev": true, 2358 | "peer": true, 2359 | "requires": {} 2360 | }, 2361 | "ajv": { 2362 | "version": "6.12.6", 2363 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 2364 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 2365 | "dev": true, 2366 | "peer": true, 2367 | "requires": { 2368 | "fast-deep-equal": "^3.1.1", 2369 | "fast-json-stable-stringify": "^2.0.0", 2370 | "json-schema-traverse": "^0.4.1", 2371 | "uri-js": "^4.2.2" 2372 | } 2373 | }, 2374 | "ansi-regex": { 2375 | "version": "5.0.1", 2376 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 2377 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 2378 | "dev": true, 2379 | "peer": true 2380 | }, 2381 | "ansi-styles": { 2382 | "version": "4.3.0", 2383 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 2384 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 2385 | "dev": true, 2386 | "peer": true, 2387 | "requires": { 2388 | "color-convert": "^2.0.1" 2389 | } 2390 | }, 2391 | "argparse": { 2392 | "version": "2.0.1", 2393 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 2394 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 2395 | "dev": true, 2396 | "peer": true 2397 | }, 2398 | "array-union": { 2399 | "version": "2.1.0", 2400 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 2401 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 2402 | "dev": true 2403 | }, 2404 | "balanced-match": { 2405 | "version": "1.0.2", 2406 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 2407 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 2408 | "dev": true, 2409 | "peer": true 2410 | }, 2411 | "brace-expansion": { 2412 | "version": "1.1.11", 2413 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 2414 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 2415 | "dev": true, 2416 | "peer": true, 2417 | "requires": { 2418 | "balanced-match": "^1.0.0", 2419 | "concat-map": "0.0.1" 2420 | } 2421 | }, 2422 | "braces": { 2423 | "version": "3.0.2", 2424 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 2425 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 2426 | "dev": true, 2427 | "requires": { 2428 | "fill-range": "^7.0.1" 2429 | } 2430 | }, 2431 | "builtin-modules": { 2432 | "version": "3.3.0", 2433 | "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", 2434 | "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", 2435 | "dev": true 2436 | }, 2437 | "callsites": { 2438 | "version": "3.1.0", 2439 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 2440 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 2441 | "dev": true, 2442 | "peer": true 2443 | }, 2444 | "chalk": { 2445 | "version": "4.1.2", 2446 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 2447 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 2448 | "dev": true, 2449 | "peer": true, 2450 | "requires": { 2451 | "ansi-styles": "^4.1.0", 2452 | "supports-color": "^7.1.0" 2453 | } 2454 | }, 2455 | "color-convert": { 2456 | "version": "2.0.1", 2457 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 2458 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 2459 | "dev": true, 2460 | "peer": true, 2461 | "requires": { 2462 | "color-name": "~1.1.4" 2463 | } 2464 | }, 2465 | "color-name": { 2466 | "version": "1.1.4", 2467 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 2468 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 2469 | "dev": true, 2470 | "peer": true 2471 | }, 2472 | "concat-map": { 2473 | "version": "0.0.1", 2474 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 2475 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 2476 | "dev": true, 2477 | "peer": true 2478 | }, 2479 | "cross-spawn": { 2480 | "version": "7.0.3", 2481 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 2482 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 2483 | "dev": true, 2484 | "peer": true, 2485 | "requires": { 2486 | "path-key": "^3.1.0", 2487 | "shebang-command": "^2.0.0", 2488 | "which": "^2.0.1" 2489 | } 2490 | }, 2491 | "debug": { 2492 | "version": "4.3.4", 2493 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 2494 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 2495 | "dev": true, 2496 | "requires": { 2497 | "ms": "2.1.2" 2498 | } 2499 | }, 2500 | "deep-is": { 2501 | "version": "0.1.4", 2502 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 2503 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 2504 | "dev": true, 2505 | "peer": true 2506 | }, 2507 | "dir-glob": { 2508 | "version": "3.0.1", 2509 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 2510 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 2511 | "dev": true, 2512 | "requires": { 2513 | "path-type": "^4.0.0" 2514 | } 2515 | }, 2516 | "doctrine": { 2517 | "version": "3.0.0", 2518 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 2519 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 2520 | "dev": true, 2521 | "peer": true, 2522 | "requires": { 2523 | "esutils": "^2.0.2" 2524 | } 2525 | }, 2526 | "esbuild": { 2527 | "version": "0.14.47", 2528 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.47.tgz", 2529 | "integrity": "sha512-wI4ZiIfFxpkuxB8ju4MHrGwGLyp1+awEHAHVpx6w7a+1pmYIq8T9FGEVVwFo0iFierDoMj++Xq69GXWYn2EiwA==", 2530 | "dev": true, 2531 | "requires": { 2532 | "esbuild-android-64": "0.14.47", 2533 | "esbuild-android-arm64": "0.14.47", 2534 | "esbuild-darwin-64": "0.14.47", 2535 | "esbuild-darwin-arm64": "0.14.47", 2536 | "esbuild-freebsd-64": "0.14.47", 2537 | "esbuild-freebsd-arm64": "0.14.47", 2538 | "esbuild-linux-32": "0.14.47", 2539 | "esbuild-linux-64": "0.14.47", 2540 | "esbuild-linux-arm": "0.14.47", 2541 | "esbuild-linux-arm64": "0.14.47", 2542 | "esbuild-linux-mips64le": "0.14.47", 2543 | "esbuild-linux-ppc64le": "0.14.47", 2544 | "esbuild-linux-riscv64": "0.14.47", 2545 | "esbuild-linux-s390x": "0.14.47", 2546 | "esbuild-netbsd-64": "0.14.47", 2547 | "esbuild-openbsd-64": "0.14.47", 2548 | "esbuild-sunos-64": "0.14.47", 2549 | "esbuild-windows-32": "0.14.47", 2550 | "esbuild-windows-64": "0.14.47", 2551 | "esbuild-windows-arm64": "0.14.47" 2552 | } 2553 | }, 2554 | "esbuild-android-64": { 2555 | "version": "0.14.47", 2556 | "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.47.tgz", 2557 | "integrity": "sha512-R13Bd9+tqLVFndncMHssZrPWe6/0Kpv2/dt4aA69soX4PRxlzsVpCvoJeFE8sOEoeVEiBkI0myjlkDodXlHa0g==", 2558 | "dev": true, 2559 | "optional": true 2560 | }, 2561 | "esbuild-android-arm64": { 2562 | "version": "0.14.47", 2563 | "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.47.tgz", 2564 | "integrity": "sha512-OkwOjj7ts4lBp/TL6hdd8HftIzOy/pdtbrNA4+0oVWgGG64HrdVzAF5gxtJufAPOsEjkyh1oIYvKAUinKKQRSQ==", 2565 | "dev": true, 2566 | "optional": true 2567 | }, 2568 | "esbuild-darwin-64": { 2569 | "version": "0.14.47", 2570 | "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.47.tgz", 2571 | "integrity": "sha512-R6oaW0y5/u6Eccti/TS6c/2c1xYTb1izwK3gajJwi4vIfNs1s8B1dQzI1UiC9T61YovOQVuePDcfqHLT3mUZJA==", 2572 | "dev": true, 2573 | "optional": true 2574 | }, 2575 | "esbuild-darwin-arm64": { 2576 | "version": "0.14.47", 2577 | "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.47.tgz", 2578 | "integrity": "sha512-seCmearlQyvdvM/noz1L9+qblC5vcBrhUaOoLEDDoLInF/VQ9IkobGiLlyTPYP5dW1YD4LXhtBgOyevoIHGGnw==", 2579 | "dev": true, 2580 | "optional": true 2581 | }, 2582 | "esbuild-freebsd-64": { 2583 | "version": "0.14.47", 2584 | "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.47.tgz", 2585 | "integrity": "sha512-ZH8K2Q8/Ux5kXXvQMDsJcxvkIwut69KVrYQhza/ptkW50DC089bCVrJZZ3sKzIoOx+YPTrmsZvqeZERjyYrlvQ==", 2586 | "dev": true, 2587 | "optional": true 2588 | }, 2589 | "esbuild-freebsd-arm64": { 2590 | "version": "0.14.47", 2591 | "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.47.tgz", 2592 | "integrity": "sha512-ZJMQAJQsIOhn3XTm7MPQfCzEu5b9STNC+s90zMWe2afy9EwnHV7Ov7ohEMv2lyWlc2pjqLW8QJnz2r0KZmeAEQ==", 2593 | "dev": true, 2594 | "optional": true 2595 | }, 2596 | "esbuild-linux-32": { 2597 | "version": "0.14.47", 2598 | "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.47.tgz", 2599 | "integrity": "sha512-FxZOCKoEDPRYvq300lsWCTv1kcHgiiZfNrPtEhFAiqD7QZaXrad8LxyJ8fXGcWzIFzRiYZVtB3ttvITBvAFhKw==", 2600 | "dev": true, 2601 | "optional": true 2602 | }, 2603 | "esbuild-linux-64": { 2604 | "version": "0.14.47", 2605 | "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.47.tgz", 2606 | "integrity": "sha512-nFNOk9vWVfvWYF9YNYksZptgQAdstnDCMtR6m42l5Wfugbzu11VpMCY9XrD4yFxvPo9zmzcoUL/88y0lfJZJJw==", 2607 | "dev": true, 2608 | "optional": true 2609 | }, 2610 | "esbuild-linux-arm": { 2611 | "version": "0.14.47", 2612 | "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.47.tgz", 2613 | "integrity": "sha512-ZGE1Bqg/gPRXrBpgpvH81tQHpiaGxa8c9Rx/XOylkIl2ypLuOcawXEAo8ls+5DFCcRGt/o3sV+PzpAFZobOsmA==", 2614 | "dev": true, 2615 | "optional": true 2616 | }, 2617 | "esbuild-linux-arm64": { 2618 | "version": "0.14.47", 2619 | "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.47.tgz", 2620 | "integrity": "sha512-ywfme6HVrhWcevzmsufjd4iT3PxTfCX9HOdxA7Hd+/ZM23Y9nXeb+vG6AyA6jgq/JovkcqRHcL9XwRNpWG6XRw==", 2621 | "dev": true, 2622 | "optional": true 2623 | }, 2624 | "esbuild-linux-mips64le": { 2625 | "version": "0.14.47", 2626 | "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.47.tgz", 2627 | "integrity": "sha512-mg3D8YndZ1LvUiEdDYR3OsmeyAew4MA/dvaEJxvyygahWmpv1SlEEnhEZlhPokjsUMfRagzsEF/d/2XF+kTQGg==", 2628 | "dev": true, 2629 | "optional": true 2630 | }, 2631 | "esbuild-linux-ppc64le": { 2632 | "version": "0.14.47", 2633 | "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.47.tgz", 2634 | "integrity": "sha512-WER+f3+szmnZiWoK6AsrTKGoJoErG2LlauSmk73LEZFQ/iWC+KhhDsOkn1xBUpzXWsxN9THmQFltLoaFEH8F8w==", 2635 | "dev": true, 2636 | "optional": true 2637 | }, 2638 | "esbuild-linux-riscv64": { 2639 | "version": "0.14.47", 2640 | "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.47.tgz", 2641 | "integrity": "sha512-1fI6bP3A3rvI9BsaaXbMoaOjLE3lVkJtLxsgLHqlBhLlBVY7UqffWBvkrX/9zfPhhVMd9ZRFiaqXnB1T7BsL2g==", 2642 | "dev": true, 2643 | "optional": true 2644 | }, 2645 | "esbuild-linux-s390x": { 2646 | "version": "0.14.47", 2647 | "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.47.tgz", 2648 | "integrity": "sha512-eZrWzy0xFAhki1CWRGnhsHVz7IlSKX6yT2tj2Eg8lhAwlRE5E96Hsb0M1mPSE1dHGpt1QVwwVivXIAacF/G6mw==", 2649 | "dev": true, 2650 | "optional": true 2651 | }, 2652 | "esbuild-netbsd-64": { 2653 | "version": "0.14.47", 2654 | "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.47.tgz", 2655 | "integrity": "sha512-Qjdjr+KQQVH5Q2Q1r6HBYswFTToPpss3gqCiSw2Fpq/ua8+eXSQyAMG+UvULPqXceOwpnPo4smyZyHdlkcPppQ==", 2656 | "dev": true, 2657 | "optional": true 2658 | }, 2659 | "esbuild-openbsd-64": { 2660 | "version": "0.14.47", 2661 | "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.47.tgz", 2662 | "integrity": "sha512-QpgN8ofL7B9z8g5zZqJE+eFvD1LehRlxr25PBkjyyasakm4599iroUpaj96rdqRlO2ShuyqwJdr+oNqWwTUmQw==", 2663 | "dev": true, 2664 | "optional": true 2665 | }, 2666 | "esbuild-sunos-64": { 2667 | "version": "0.14.47", 2668 | "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.47.tgz", 2669 | "integrity": "sha512-uOeSgLUwukLioAJOiGYm3kNl+1wJjgJA8R671GYgcPgCx7QR73zfvYqXFFcIO93/nBdIbt5hd8RItqbbf3HtAQ==", 2670 | "dev": true, 2671 | "optional": true 2672 | }, 2673 | "esbuild-windows-32": { 2674 | "version": "0.14.47", 2675 | "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.47.tgz", 2676 | "integrity": "sha512-H0fWsLTp2WBfKLBgwYT4OTfFly4Im/8B5f3ojDv1Kx//kiubVY0IQunP2Koc/fr/0wI7hj3IiBDbSrmKlrNgLQ==", 2677 | "dev": true, 2678 | "optional": true 2679 | }, 2680 | "esbuild-windows-64": { 2681 | "version": "0.14.47", 2682 | "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.47.tgz", 2683 | "integrity": "sha512-/Pk5jIEH34T68r8PweKRi77W49KwanZ8X6lr3vDAtOlH5EumPE4pBHqkCUdELanvsT14yMXLQ/C/8XPi1pAtkQ==", 2684 | "dev": true, 2685 | "optional": true 2686 | }, 2687 | "esbuild-windows-arm64": { 2688 | "version": "0.14.47", 2689 | "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.47.tgz", 2690 | "integrity": "sha512-HFSW2lnp62fl86/qPQlqw6asIwCnEsEoNIL1h2uVMgakddf+vUuMcCbtUY1i8sst7KkgHrVKCJQB33YhhOweCQ==", 2691 | "dev": true, 2692 | "optional": true 2693 | }, 2694 | "escape-string-regexp": { 2695 | "version": "4.0.0", 2696 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 2697 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 2698 | "dev": true, 2699 | "peer": true 2700 | }, 2701 | "eslint": { 2702 | "version": "8.25.0", 2703 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.25.0.tgz", 2704 | "integrity": "sha512-DVlJOZ4Pn50zcKW5bYH7GQK/9MsoQG2d5eDH0ebEkE8PbgzTTmtt/VTH9GGJ4BfeZCpBLqFfvsjX35UacUL83A==", 2705 | "dev": true, 2706 | "peer": true, 2707 | "requires": { 2708 | "@eslint/eslintrc": "^1.3.3", 2709 | "@humanwhocodes/config-array": "^0.10.5", 2710 | "@humanwhocodes/module-importer": "^1.0.1", 2711 | "ajv": "^6.10.0", 2712 | "chalk": "^4.0.0", 2713 | "cross-spawn": "^7.0.2", 2714 | "debug": "^4.3.2", 2715 | "doctrine": "^3.0.0", 2716 | "escape-string-regexp": "^4.0.0", 2717 | "eslint-scope": "^7.1.1", 2718 | "eslint-utils": "^3.0.0", 2719 | "eslint-visitor-keys": "^3.3.0", 2720 | "espree": "^9.4.0", 2721 | "esquery": "^1.4.0", 2722 | "esutils": "^2.0.2", 2723 | "fast-deep-equal": "^3.1.3", 2724 | "file-entry-cache": "^6.0.1", 2725 | "find-up": "^5.0.0", 2726 | "glob-parent": "^6.0.1", 2727 | "globals": "^13.15.0", 2728 | "globby": "^11.1.0", 2729 | "grapheme-splitter": "^1.0.4", 2730 | "ignore": "^5.2.0", 2731 | "import-fresh": "^3.0.0", 2732 | "imurmurhash": "^0.1.4", 2733 | "is-glob": "^4.0.0", 2734 | "js-sdsl": "^4.1.4", 2735 | "js-yaml": "^4.1.0", 2736 | "json-stable-stringify-without-jsonify": "^1.0.1", 2737 | "levn": "^0.4.1", 2738 | "lodash.merge": "^4.6.2", 2739 | "minimatch": "^3.1.2", 2740 | "natural-compare": "^1.4.0", 2741 | "optionator": "^0.9.1", 2742 | "regexpp": "^3.2.0", 2743 | "strip-ansi": "^6.0.1", 2744 | "strip-json-comments": "^3.1.0", 2745 | "text-table": "^0.2.0" 2746 | }, 2747 | "dependencies": { 2748 | "eslint-scope": { 2749 | "version": "7.1.1", 2750 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", 2751 | "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", 2752 | "dev": true, 2753 | "peer": true, 2754 | "requires": { 2755 | "esrecurse": "^4.3.0", 2756 | "estraverse": "^5.2.0" 2757 | } 2758 | }, 2759 | "estraverse": { 2760 | "version": "5.3.0", 2761 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 2762 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 2763 | "dev": true, 2764 | "peer": true 2765 | } 2766 | } 2767 | }, 2768 | "eslint-scope": { 2769 | "version": "5.1.1", 2770 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", 2771 | "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", 2772 | "dev": true, 2773 | "requires": { 2774 | "esrecurse": "^4.3.0", 2775 | "estraverse": "^4.1.1" 2776 | } 2777 | }, 2778 | "eslint-utils": { 2779 | "version": "3.0.0", 2780 | "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", 2781 | "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", 2782 | "dev": true, 2783 | "requires": { 2784 | "eslint-visitor-keys": "^2.0.0" 2785 | }, 2786 | "dependencies": { 2787 | "eslint-visitor-keys": { 2788 | "version": "2.1.0", 2789 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", 2790 | "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", 2791 | "dev": true 2792 | } 2793 | } 2794 | }, 2795 | "eslint-visitor-keys": { 2796 | "version": "3.3.0", 2797 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", 2798 | "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", 2799 | "dev": true 2800 | }, 2801 | "espree": { 2802 | "version": "9.4.0", 2803 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.0.tgz", 2804 | "integrity": "sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==", 2805 | "dev": true, 2806 | "peer": true, 2807 | "requires": { 2808 | "acorn": "^8.8.0", 2809 | "acorn-jsx": "^5.3.2", 2810 | "eslint-visitor-keys": "^3.3.0" 2811 | } 2812 | }, 2813 | "esquery": { 2814 | "version": "1.4.0", 2815 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", 2816 | "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", 2817 | "dev": true, 2818 | "peer": true, 2819 | "requires": { 2820 | "estraverse": "^5.1.0" 2821 | }, 2822 | "dependencies": { 2823 | "estraverse": { 2824 | "version": "5.3.0", 2825 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 2826 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 2827 | "dev": true, 2828 | "peer": true 2829 | } 2830 | } 2831 | }, 2832 | "esrecurse": { 2833 | "version": "4.3.0", 2834 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 2835 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 2836 | "dev": true, 2837 | "requires": { 2838 | "estraverse": "^5.2.0" 2839 | }, 2840 | "dependencies": { 2841 | "estraverse": { 2842 | "version": "5.3.0", 2843 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 2844 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 2845 | "dev": true 2846 | } 2847 | } 2848 | }, 2849 | "estraverse": { 2850 | "version": "4.3.0", 2851 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", 2852 | "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", 2853 | "dev": true 2854 | }, 2855 | "esutils": { 2856 | "version": "2.0.3", 2857 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 2858 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 2859 | "dev": true, 2860 | "peer": true 2861 | }, 2862 | "fast-deep-equal": { 2863 | "version": "3.1.3", 2864 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 2865 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 2866 | "dev": true, 2867 | "peer": true 2868 | }, 2869 | "fast-glob": { 2870 | "version": "3.2.12", 2871 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", 2872 | "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", 2873 | "dev": true, 2874 | "requires": { 2875 | "@nodelib/fs.stat": "^2.0.2", 2876 | "@nodelib/fs.walk": "^1.2.3", 2877 | "glob-parent": "^5.1.2", 2878 | "merge2": "^1.3.0", 2879 | "micromatch": "^4.0.4" 2880 | }, 2881 | "dependencies": { 2882 | "glob-parent": { 2883 | "version": "5.1.2", 2884 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 2885 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 2886 | "dev": true, 2887 | "requires": { 2888 | "is-glob": "^4.0.1" 2889 | } 2890 | } 2891 | } 2892 | }, 2893 | "fast-json-stable-stringify": { 2894 | "version": "2.1.0", 2895 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 2896 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 2897 | "dev": true, 2898 | "peer": true 2899 | }, 2900 | "fast-levenshtein": { 2901 | "version": "2.0.6", 2902 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 2903 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 2904 | "dev": true, 2905 | "peer": true 2906 | }, 2907 | "fastq": { 2908 | "version": "1.13.0", 2909 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", 2910 | "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", 2911 | "dev": true, 2912 | "requires": { 2913 | "reusify": "^1.0.4" 2914 | } 2915 | }, 2916 | "file-entry-cache": { 2917 | "version": "6.0.1", 2918 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 2919 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 2920 | "dev": true, 2921 | "peer": true, 2922 | "requires": { 2923 | "flat-cache": "^3.0.4" 2924 | } 2925 | }, 2926 | "fill-range": { 2927 | "version": "7.0.1", 2928 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 2929 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 2930 | "dev": true, 2931 | "requires": { 2932 | "to-regex-range": "^5.0.1" 2933 | } 2934 | }, 2935 | "find-up": { 2936 | "version": "5.0.0", 2937 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 2938 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 2939 | "dev": true, 2940 | "peer": true, 2941 | "requires": { 2942 | "locate-path": "^6.0.0", 2943 | "path-exists": "^4.0.0" 2944 | } 2945 | }, 2946 | "flat-cache": { 2947 | "version": "3.0.4", 2948 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", 2949 | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", 2950 | "dev": true, 2951 | "peer": true, 2952 | "requires": { 2953 | "flatted": "^3.1.0", 2954 | "rimraf": "^3.0.2" 2955 | } 2956 | }, 2957 | "flatted": { 2958 | "version": "3.2.7", 2959 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", 2960 | "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", 2961 | "dev": true, 2962 | "peer": true 2963 | }, 2964 | "fs.realpath": { 2965 | "version": "1.0.0", 2966 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 2967 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 2968 | "dev": true, 2969 | "peer": true 2970 | }, 2971 | "functional-red-black-tree": { 2972 | "version": "1.0.1", 2973 | "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", 2974 | "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", 2975 | "dev": true 2976 | }, 2977 | "glob": { 2978 | "version": "7.2.3", 2979 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 2980 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 2981 | "dev": true, 2982 | "peer": true, 2983 | "requires": { 2984 | "fs.realpath": "^1.0.0", 2985 | "inflight": "^1.0.4", 2986 | "inherits": "2", 2987 | "minimatch": "^3.1.1", 2988 | "once": "^1.3.0", 2989 | "path-is-absolute": "^1.0.0" 2990 | } 2991 | }, 2992 | "glob-parent": { 2993 | "version": "6.0.2", 2994 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 2995 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 2996 | "dev": true, 2997 | "peer": true, 2998 | "requires": { 2999 | "is-glob": "^4.0.3" 3000 | } 3001 | }, 3002 | "globals": { 3003 | "version": "13.17.0", 3004 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", 3005 | "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", 3006 | "dev": true, 3007 | "peer": true, 3008 | "requires": { 3009 | "type-fest": "^0.20.2" 3010 | } 3011 | }, 3012 | "globby": { 3013 | "version": "11.1.0", 3014 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 3015 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 3016 | "dev": true, 3017 | "requires": { 3018 | "array-union": "^2.1.0", 3019 | "dir-glob": "^3.0.1", 3020 | "fast-glob": "^3.2.9", 3021 | "ignore": "^5.2.0", 3022 | "merge2": "^1.4.1", 3023 | "slash": "^3.0.0" 3024 | } 3025 | }, 3026 | "grapheme-splitter": { 3027 | "version": "1.0.4", 3028 | "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", 3029 | "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", 3030 | "dev": true, 3031 | "peer": true 3032 | }, 3033 | "has-flag": { 3034 | "version": "4.0.0", 3035 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 3036 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 3037 | "dev": true, 3038 | "peer": true 3039 | }, 3040 | "ignore": { 3041 | "version": "5.2.0", 3042 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", 3043 | "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", 3044 | "dev": true 3045 | }, 3046 | "import-fresh": { 3047 | "version": "3.3.0", 3048 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 3049 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 3050 | "dev": true, 3051 | "peer": true, 3052 | "requires": { 3053 | "parent-module": "^1.0.0", 3054 | "resolve-from": "^4.0.0" 3055 | } 3056 | }, 3057 | "imurmurhash": { 3058 | "version": "0.1.4", 3059 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 3060 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 3061 | "dev": true, 3062 | "peer": true 3063 | }, 3064 | "inflight": { 3065 | "version": "1.0.6", 3066 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 3067 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 3068 | "dev": true, 3069 | "peer": true, 3070 | "requires": { 3071 | "once": "^1.3.0", 3072 | "wrappy": "1" 3073 | } 3074 | }, 3075 | "inherits": { 3076 | "version": "2.0.4", 3077 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 3078 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 3079 | "dev": true, 3080 | "peer": true 3081 | }, 3082 | "is-extglob": { 3083 | "version": "2.1.1", 3084 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 3085 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 3086 | "dev": true 3087 | }, 3088 | "is-glob": { 3089 | "version": "4.0.3", 3090 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 3091 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 3092 | "dev": true, 3093 | "requires": { 3094 | "is-extglob": "^2.1.1" 3095 | } 3096 | }, 3097 | "is-number": { 3098 | "version": "7.0.0", 3099 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 3100 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 3101 | "dev": true 3102 | }, 3103 | "isexe": { 3104 | "version": "2.0.0", 3105 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 3106 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 3107 | "dev": true, 3108 | "peer": true 3109 | }, 3110 | "js-sdsl": { 3111 | "version": "4.1.5", 3112 | "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.5.tgz", 3113 | "integrity": "sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==", 3114 | "dev": true, 3115 | "peer": true 3116 | }, 3117 | "js-yaml": { 3118 | "version": "4.1.0", 3119 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 3120 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 3121 | "dev": true, 3122 | "peer": true, 3123 | "requires": { 3124 | "argparse": "^2.0.1" 3125 | } 3126 | }, 3127 | "json-schema-traverse": { 3128 | "version": "0.4.1", 3129 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 3130 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 3131 | "dev": true, 3132 | "peer": true 3133 | }, 3134 | "json-stable-stringify-without-jsonify": { 3135 | "version": "1.0.1", 3136 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 3137 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 3138 | "dev": true, 3139 | "peer": true 3140 | }, 3141 | "levn": { 3142 | "version": "0.4.1", 3143 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 3144 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 3145 | "dev": true, 3146 | "peer": true, 3147 | "requires": { 3148 | "prelude-ls": "^1.2.1", 3149 | "type-check": "~0.4.0" 3150 | } 3151 | }, 3152 | "locate-path": { 3153 | "version": "6.0.0", 3154 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 3155 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 3156 | "dev": true, 3157 | "peer": true, 3158 | "requires": { 3159 | "p-locate": "^5.0.0" 3160 | } 3161 | }, 3162 | "lodash.merge": { 3163 | "version": "4.6.2", 3164 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 3165 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 3166 | "dev": true, 3167 | "peer": true 3168 | }, 3169 | "lru-cache": { 3170 | "version": "6.0.0", 3171 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 3172 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 3173 | "dev": true, 3174 | "requires": { 3175 | "yallist": "^4.0.0" 3176 | } 3177 | }, 3178 | "merge2": { 3179 | "version": "1.4.1", 3180 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 3181 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 3182 | "dev": true 3183 | }, 3184 | "micromatch": { 3185 | "version": "4.0.5", 3186 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 3187 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 3188 | "dev": true, 3189 | "requires": { 3190 | "braces": "^3.0.2", 3191 | "picomatch": "^2.3.1" 3192 | } 3193 | }, 3194 | "minimatch": { 3195 | "version": "3.1.2", 3196 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 3197 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 3198 | "dev": true, 3199 | "peer": true, 3200 | "requires": { 3201 | "brace-expansion": "^1.1.7" 3202 | } 3203 | }, 3204 | "moment": { 3205 | "version": "2.29.4", 3206 | "resolved": "https://registry.npmjs.org/moment/-/moment-2.29.4.tgz", 3207 | "integrity": "sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==", 3208 | "dev": true 3209 | }, 3210 | "ms": { 3211 | "version": "2.1.2", 3212 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 3213 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 3214 | "dev": true 3215 | }, 3216 | "natural-compare": { 3217 | "version": "1.4.0", 3218 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 3219 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 3220 | "dev": true, 3221 | "peer": true 3222 | }, 3223 | "obsidian": { 3224 | "version": "0.16.3", 3225 | "resolved": "https://registry.npmjs.org/obsidian/-/obsidian-0.16.3.tgz", 3226 | "integrity": "sha512-hal9qk1A0GMhHSeLr2/+o3OpLmImiP+Y+sx2ewP13ds76KXsziG96n+IPFT0mSkup1zSwhEu+DeRhmbcyCCXWw==", 3227 | "dev": true, 3228 | "requires": { 3229 | "@types/codemirror": "0.0.108", 3230 | "moment": "2.29.4" 3231 | } 3232 | }, 3233 | "once": { 3234 | "version": "1.4.0", 3235 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 3236 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 3237 | "dev": true, 3238 | "peer": true, 3239 | "requires": { 3240 | "wrappy": "1" 3241 | } 3242 | }, 3243 | "optionator": { 3244 | "version": "0.9.1", 3245 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", 3246 | "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", 3247 | "dev": true, 3248 | "peer": true, 3249 | "requires": { 3250 | "deep-is": "^0.1.3", 3251 | "fast-levenshtein": "^2.0.6", 3252 | "levn": "^0.4.1", 3253 | "prelude-ls": "^1.2.1", 3254 | "type-check": "^0.4.0", 3255 | "word-wrap": "^1.2.3" 3256 | } 3257 | }, 3258 | "p-limit": { 3259 | "version": "3.1.0", 3260 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 3261 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 3262 | "dev": true, 3263 | "peer": true, 3264 | "requires": { 3265 | "yocto-queue": "^0.1.0" 3266 | } 3267 | }, 3268 | "p-locate": { 3269 | "version": "5.0.0", 3270 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 3271 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 3272 | "dev": true, 3273 | "peer": true, 3274 | "requires": { 3275 | "p-limit": "^3.0.2" 3276 | } 3277 | }, 3278 | "parent-module": { 3279 | "version": "1.0.1", 3280 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 3281 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 3282 | "dev": true, 3283 | "peer": true, 3284 | "requires": { 3285 | "callsites": "^3.0.0" 3286 | } 3287 | }, 3288 | "path-exists": { 3289 | "version": "4.0.0", 3290 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3291 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3292 | "dev": true, 3293 | "peer": true 3294 | }, 3295 | "path-is-absolute": { 3296 | "version": "1.0.1", 3297 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3298 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3299 | "dev": true, 3300 | "peer": true 3301 | }, 3302 | "path-key": { 3303 | "version": "3.1.1", 3304 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3305 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3306 | "dev": true, 3307 | "peer": true 3308 | }, 3309 | "path-type": { 3310 | "version": "4.0.0", 3311 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 3312 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 3313 | "dev": true 3314 | }, 3315 | "picomatch": { 3316 | "version": "2.3.1", 3317 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3318 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3319 | "dev": true 3320 | }, 3321 | "prelude-ls": { 3322 | "version": "1.2.1", 3323 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 3324 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 3325 | "dev": true, 3326 | "peer": true 3327 | }, 3328 | "punycode": { 3329 | "version": "2.1.1", 3330 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", 3331 | "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", 3332 | "dev": true, 3333 | "peer": true 3334 | }, 3335 | "queue-microtask": { 3336 | "version": "1.2.3", 3337 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 3338 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 3339 | "dev": true 3340 | }, 3341 | "regexpp": { 3342 | "version": "3.2.0", 3343 | "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", 3344 | "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", 3345 | "dev": true 3346 | }, 3347 | "resolve-from": { 3348 | "version": "4.0.0", 3349 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3350 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3351 | "dev": true, 3352 | "peer": true 3353 | }, 3354 | "reusify": { 3355 | "version": "1.0.4", 3356 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3357 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3358 | "dev": true 3359 | }, 3360 | "rimraf": { 3361 | "version": "3.0.2", 3362 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 3363 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 3364 | "dev": true, 3365 | "peer": true, 3366 | "requires": { 3367 | "glob": "^7.1.3" 3368 | } 3369 | }, 3370 | "run-parallel": { 3371 | "version": "1.2.0", 3372 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3373 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3374 | "dev": true, 3375 | "requires": { 3376 | "queue-microtask": "^1.2.2" 3377 | } 3378 | }, 3379 | "semver": { 3380 | "version": "7.3.8", 3381 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", 3382 | "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", 3383 | "dev": true, 3384 | "requires": { 3385 | "lru-cache": "^6.0.0" 3386 | } 3387 | }, 3388 | "shebang-command": { 3389 | "version": "2.0.0", 3390 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3391 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3392 | "dev": true, 3393 | "peer": true, 3394 | "requires": { 3395 | "shebang-regex": "^3.0.0" 3396 | } 3397 | }, 3398 | "shebang-regex": { 3399 | "version": "3.0.0", 3400 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3401 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3402 | "dev": true, 3403 | "peer": true 3404 | }, 3405 | "slash": { 3406 | "version": "3.0.0", 3407 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3408 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3409 | "dev": true 3410 | }, 3411 | "strip-ansi": { 3412 | "version": "6.0.1", 3413 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3414 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3415 | "dev": true, 3416 | "peer": true, 3417 | "requires": { 3418 | "ansi-regex": "^5.0.1" 3419 | } 3420 | }, 3421 | "strip-json-comments": { 3422 | "version": "3.1.1", 3423 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3424 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3425 | "dev": true, 3426 | "peer": true 3427 | }, 3428 | "style-mod": { 3429 | "version": "4.0.0", 3430 | "resolved": "https://registry.npmjs.org/style-mod/-/style-mod-4.0.0.tgz", 3431 | "integrity": "sha512-OPhtyEjyyN9x3nhPsu76f52yUGXiZcgvsrFVtvTkyGRQJ0XK+GPc6ov1z+lRpbeabka+MYEQxOYRnt5nF30aMw==", 3432 | "dev": true, 3433 | "peer": true 3434 | }, 3435 | "supports-color": { 3436 | "version": "7.2.0", 3437 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3438 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3439 | "dev": true, 3440 | "peer": true, 3441 | "requires": { 3442 | "has-flag": "^4.0.0" 3443 | } 3444 | }, 3445 | "text-table": { 3446 | "version": "0.2.0", 3447 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 3448 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 3449 | "dev": true, 3450 | "peer": true 3451 | }, 3452 | "to-regex-range": { 3453 | "version": "5.0.1", 3454 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3455 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3456 | "dev": true, 3457 | "requires": { 3458 | "is-number": "^7.0.0" 3459 | } 3460 | }, 3461 | "tslib": { 3462 | "version": "2.4.0", 3463 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.0.tgz", 3464 | "integrity": "sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==", 3465 | "dev": true 3466 | }, 3467 | "tsutils": { 3468 | "version": "3.21.0", 3469 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", 3470 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", 3471 | "dev": true, 3472 | "requires": { 3473 | "tslib": "^1.8.1" 3474 | }, 3475 | "dependencies": { 3476 | "tslib": { 3477 | "version": "1.14.1", 3478 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", 3479 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", 3480 | "dev": true 3481 | } 3482 | } 3483 | }, 3484 | "type-check": { 3485 | "version": "0.4.0", 3486 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3487 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3488 | "dev": true, 3489 | "peer": true, 3490 | "requires": { 3491 | "prelude-ls": "^1.2.1" 3492 | } 3493 | }, 3494 | "type-fest": { 3495 | "version": "0.20.2", 3496 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 3497 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 3498 | "dev": true, 3499 | "peer": true 3500 | }, 3501 | "typescript": { 3502 | "version": "4.7.4", 3503 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.7.4.tgz", 3504 | "integrity": "sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==", 3505 | "dev": true 3506 | }, 3507 | "uri-js": { 3508 | "version": "4.4.1", 3509 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3510 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3511 | "dev": true, 3512 | "peer": true, 3513 | "requires": { 3514 | "punycode": "^2.1.0" 3515 | } 3516 | }, 3517 | "w3c-keyname": { 3518 | "version": "2.2.6", 3519 | "resolved": "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.6.tgz", 3520 | "integrity": "sha512-f+fciywl1SJEniZHD6H+kUO8gOnwIr7f4ijKA6+ZvJFjeGi1r4PDLl53Ayud9O/rk64RqgoQine0feoeOU0kXg==", 3521 | "dev": true, 3522 | "peer": true 3523 | }, 3524 | "which": { 3525 | "version": "2.0.2", 3526 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3527 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3528 | "dev": true, 3529 | "peer": true, 3530 | "requires": { 3531 | "isexe": "^2.0.0" 3532 | } 3533 | }, 3534 | "word-wrap": { 3535 | "version": "1.2.3", 3536 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", 3537 | "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", 3538 | "dev": true, 3539 | "peer": true 3540 | }, 3541 | "wrappy": { 3542 | "version": "1.0.2", 3543 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3544 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 3545 | "dev": true, 3546 | "peer": true 3547 | }, 3548 | "yallist": { 3549 | "version": "4.0.0", 3550 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 3551 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 3552 | "dev": true 3553 | }, 3554 | "yocto-queue": { 3555 | "version": "0.1.0", 3556 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3557 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3558 | "dev": true, 3559 | "peer": true 3560 | } 3561 | } 3562 | } 3563 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "obsidian-things3-sync", 3 | "version": "1.3.0", 4 | "description": "An Obsidian plugin for sync between Obsidian and Things3, create Todo and sync Todo status", 5 | "main": "main.js", 6 | "scripts": { 7 | "dev": "node esbuild.config.mjs", 8 | "build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production", 9 | "version": "node version-bump.mjs && git add manifest.json versions.json" 10 | }, 11 | "keywords": [], 12 | "author": "", 13 | "license": "MIT", 14 | "devDependencies": { 15 | "@types/node": "^16.11.6", 16 | "@typescript-eslint/eslint-plugin": "5.29.0", 17 | "@typescript-eslint/parser": "5.29.0", 18 | "builtin-modules": "3.3.0", 19 | "esbuild": "0.14.47", 20 | "obsidian": "latest", 21 | "tslib": "2.4.0", 22 | "typescript": "4.7.4" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/extractor.ts: -------------------------------------------------------------------------------- 1 | 2 | export function extractDate(line:string) { 3 | const regex = /^(19|20)\d\d([- /.])(0[1-9]|1[012])\2(0[1-9]|[12][0-9]|3[01])/ 4 | let date = ''; 5 | const res = line.match(regex); 6 | if (res) { 7 | date = res[0]; 8 | } 9 | return date; 10 | } 11 | 12 | export function extractTitle(line: string) { 13 | const regex = /[^#\s\-\[\]*](.*)/gs 14 | const content = line.match(regex); 15 | let title = ''; 16 | if (content != null) { 17 | title = content[0] 18 | } 19 | 20 | return title; 21 | } 22 | 23 | export function extractTags(line: string, setting_tags: string){ 24 | const regex = /#([^\s]+)/gs 25 | const array = [...line.matchAll(regex)] 26 | const tag_array = array.map(x => x[1]) 27 | if (setting_tags.length > 0) { 28 | tag_array.push(setting_tags); 29 | } 30 | line = line.replace(regex, ''); 31 | const tags = tag_array.join(',') 32 | 33 | return tags; 34 | } 35 | 36 | export function extractTarget(line: string) { 37 | const regexId = /id=(\w+)/ 38 | const id = line.match(regexId); 39 | let todoId: string; 40 | if (id != null) { 41 | todoId = id[1]; 42 | } else { 43 | todoId = '' 44 | } 45 | 46 | const regexStatus = /\[(.)\]/ 47 | const status = line.match(regexStatus) 48 | let afterStatus: string; 49 | if (status && status[1] == ' ') { 50 | afterStatus = 'true' 51 | } else { 52 | afterStatus = 'false' 53 | } 54 | 55 | return {todoId, afterStatus} 56 | } 57 | -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- 1 | import { App, Editor, MarkdownView, EditorPosition, Plugin, PluginSettingTab, Setting, Notice } from 'obsidian'; 2 | 3 | import { 4 | urlEncode, 5 | constructDeeplink 6 | } from './url'; 7 | 8 | import { 9 | TodoInfo, 10 | createTodo, 11 | updateTodo, 12 | createTodoFromNote 13 | } from './things3'; 14 | 15 | import { 16 | extractDate, 17 | extractTags, 18 | extractTarget, 19 | extractTitle 20 | } from './extractor' 21 | 22 | // import { rangeByStep, Queue } from './utils'; 23 | 24 | function getCurrentLine(editor: Editor, view: MarkdownView) { 25 | const lineNumber = editor.getCursor().line 26 | const lineText = editor.getLine(lineNumber) 27 | return lineText 28 | } 29 | 30 | interface PluginSettings { 31 | authToken: string, 32 | defaultTags: string, 33 | detachedMode: boolean 34 | } 35 | 36 | const DEFAULT_SETTINGS: PluginSettings = { 37 | authToken: '', 38 | defaultTags: '', 39 | detachedMode: false 40 | } 41 | 42 | function contructTodo(line: string, settings: PluginSettings, fileName: string){ 43 | line = line.trim(); 44 | const tags = extractTags(line, settings.defaultTags); 45 | const date = extractDate(line) || extractDate(fileName); 46 | line = line.replace(/#([^\s]+)/gs, ''); 47 | 48 | const todo: TodoInfo = { 49 | title: extractTitle(line), 50 | tags: tags, 51 | date: date 52 | } 53 | 54 | return todo; 55 | } 56 | 57 | export default class Things3Plugin extends Plugin { 58 | settings: PluginSettings; 59 | 60 | async onload() { 61 | // Queue for update multi liens 62 | // const toChange = new Queue(); 63 | 64 | // Setup Settings Tab 65 | await this.loadSettings(); 66 | this.addSettingTab(new Things3SyncSettingTab(this.app, this)); 67 | 68 | // Register Protocol Handler 69 | this.registerObsidianProtocolHandler("things-sync-id", async (id) => { 70 | if (this.settings.detachedMode) { 71 | return; 72 | } 73 | const todoID = id['x-things-id']; 74 | const view = this.app.workspace.getActiveViewOfType(MarkdownView); 75 | if (view == null) { 76 | return; 77 | } else { 78 | const editor = view.editor 79 | // const l = toChange.dequeue(); 80 | // editor.setCursor(l); 81 | const currentLine = getCurrentLine(editor, view) 82 | const firstLetterIndex = currentLine.search(/[^\s#\-\[\]*]/); 83 | const line = currentLine.substring(firstLetterIndex, currentLine.length) 84 | const editorPosition = view.editor.getCursor() 85 | const lineLength = view.editor.getLine(editorPosition.line).length 86 | const startRange: EditorPosition = { 87 | line: editorPosition.line, 88 | ch: firstLetterIndex 89 | } 90 | const endRange: EditorPosition = { 91 | line: editorPosition.line, 92 | ch: lineLength 93 | } 94 | 95 | if (firstLetterIndex > 0) { 96 | view.editor.replaceRange(`[${line}](things:///show?id=${todoID})`, startRange, endRange); 97 | } else { 98 | view.editor.replaceRange(`- [ ] [${line}](things:///show?id=${todoID})`, startRange, endRange); 99 | } 100 | } 101 | }); 102 | 103 | // Create TODO Command 104 | this.addCommand({ 105 | id: 'create-things-todo', 106 | name: 'Create Things Todo', 107 | editorCallback: (editor: Editor, view: MarkdownView) => { 108 | const workspace = this.app.workspace; 109 | const vault = this.app.vault; 110 | const fileTitle = workspace.getActiveFile() 111 | if (fileTitle == null) { 112 | return; 113 | } else { 114 | let fileName = urlEncode(fileTitle.name) 115 | fileName = fileName.replace(/\.md$/, '') 116 | const vaultName = urlEncode(vault.getName()); 117 | const obsidianDeepLink = constructDeeplink(fileName, vaultName); 118 | // const obsidianDeepLink = (this.app as any).getObsidianUrl(fileTitle) 119 | const encodedLink = urlEncode(obsidianDeepLink); 120 | const line = getCurrentLine(editor, view); 121 | const todo = contructTodo(line, this.settings, fileName); 122 | createTodo(todo, encodedLink) 123 | } 124 | } 125 | }); 126 | 127 | // Toggle task status and sync to things 128 | this.addCommand({ 129 | id: 'toggle-things-todo', 130 | name: 'Toggle Things Todo', 131 | editorCallback: (editor: Editor, view: MarkdownView) => { 132 | const workspace = this.app.workspace; 133 | const fileTitle = workspace.getActiveFile() 134 | if (fileTitle == null) { 135 | return; 136 | } else { 137 | const line = getCurrentLine(editor, view) 138 | const target = extractTarget(line) 139 | if (target.todoId == '') { 140 | new Notice(`This is not a things3 todo`); 141 | } else { 142 | view.app.commands.executeCommandById("editor:toggle-checklist-status") 143 | updateTodo(target.todoId, target.afterStatus, this.settings.authToken) 144 | new Notice(`${target.todoId} set completed:${target.afterStatus} on things3`); 145 | } 146 | } 147 | } 148 | }); 149 | 150 | // Toggle task status and sync to things 151 | this.addCommand({ 152 | id: 'create-things-todo-from-note', 153 | name: 'Create Things Todo from Note', 154 | editorCallback: (editor: Editor, view: MarkdownView) => { 155 | const workspace = this.app.workspace; 156 | const vault = this.app.vault; 157 | const fileTitle = workspace.getActiveFile() 158 | if (fileTitle == null) { 159 | return; 160 | } else { 161 | let fileName = urlEncode(fileTitle.name) 162 | fileName = fileName.replace(/\.md$/, '') 163 | const vaultName = urlEncode(vault.getName()); 164 | const obsidianDeepLink = constructDeeplink(fileName, vaultName); 165 | const encodedLink = urlEncode(obsidianDeepLink); 166 | const todo = contructTodo(fileName, this.settings, fileName); 167 | createTodoFromNote(todo, encodedLink) 168 | } 169 | } 170 | }); 171 | 172 | } 173 | 174 | onunload() { 175 | } 176 | 177 | async loadSettings() { 178 | this.settings = Object.assign({}, DEFAULT_SETTINGS, await this.loadData()); 179 | } 180 | 181 | async saveSettings() { 182 | await this.saveData(this.settings); 183 | } 184 | } 185 | 186 | class Things3SyncSettingTab extends PluginSettingTab { 187 | plugin: Things3Plugin; 188 | 189 | constructor(app: App, plugin: Things3Plugin) { 190 | super(app, plugin); 191 | this.plugin = plugin; 192 | } 193 | 194 | display(): void { 195 | const {containerEl} = this; 196 | 197 | containerEl.empty(); 198 | containerEl.createEl('h2', {text: 'Settings for Obsidian Things3 Sync.'}); 199 | 200 | new Setting(containerEl) 201 | .setName('Auth Token') 202 | .setDesc('Require Things3 Auth Token for syncing Todo status; Get Auth Token\ 203 | via Things3 -> Preferences -> General -> Enable things URL -> Manage.') 204 | .addText(text => text 205 | .setPlaceholder('Leave Things3 Auth Token here') 206 | .setValue(this.plugin.settings.authToken) 207 | .onChange(async (value) => { 208 | this.plugin.settings.authToken = value; 209 | await this.plugin.saveSettings(); 210 | })); 211 | 212 | new Setting(containerEl) 213 | .setName('Default Tags') 214 | .setDesc('The default tags for Obsidian Todo; Using comma(,) \ 215 | to separate multiple tags; Leave this in blank for no default tags') 216 | .addText(text => text 217 | .setPlaceholder('Leave your tags here') 218 | .setValue(this.plugin.settings.defaultTags) 219 | .onChange(async (value) => { 220 | this.plugin.settings.defaultTags = value; 221 | await this.plugin.saveSettings(); 222 | })); 223 | } 224 | } 225 | -------------------------------------------------------------------------------- /src/things3.ts: -------------------------------------------------------------------------------- 1 | export interface TodoInfo { 2 | title: string, 3 | tags: string, 4 | date: string 5 | } 6 | 7 | export function createTodo(todo: TodoInfo, deepLink: string){ 8 | const title = todo.title.replace(/ /g, '%20').replace(/&/g, '%26'); 9 | const url = `things:///add?title=${title}¬es=${deepLink}&when=${todo.date}&x-success=obsidian://things-sync-id&tags=${todo.tags}`; 10 | window.open(url); 11 | } 12 | 13 | export function updateTodo(todoId: string, completed: string, authToken: string){ 14 | const url = `things:///update?id=${todoId}&completed=${completed}&auth-token=${authToken}`; 15 | window.open(url); 16 | } 17 | 18 | export function createTodoFromNote(todo: TodoInfo, deepLink: string){ 19 | const url = `things:///add?title=${todo.title}¬es=${deepLink}&when=${todo.date}`; 20 | window.open(url); 21 | } 22 | -------------------------------------------------------------------------------- /src/url.ts: -------------------------------------------------------------------------------- 1 | export function urlEncode(line: string) { 2 | line = encodeURIComponent(line) 3 | return line 4 | } 5 | 6 | export function constructDeeplink(fileName: string, vaultName: string){ 7 | const url = `obsidian://open?vault=${vaultName}&file=${fileName}`; 8 | return url; 9 | } 10 | -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- 1 | export function rangeByStep(start: number, end: number, step: number): number[] { 2 | if (end === start || step === 0) { 3 | return [start]; 4 | } 5 | if (step < 0) { 6 | step = -step; 7 | } 8 | 9 | const stepNumOfDecimal = step.toString().split(".")[1]?.length || 0; 10 | const endNumOfDecimal = end.toString().split(".")[1]?.length || 0; 11 | const maxNumOfDecimal = Math.max(stepNumOfDecimal, endNumOfDecimal); 12 | const power = Math.pow(10, maxNumOfDecimal); 13 | const diff = Math.abs(end - start); 14 | const count = Math.trunc(diff / step + 1); 15 | step = end - start > 0 ? step : -step; 16 | 17 | const intStart = Math.trunc(start * power); 18 | return Array.from(Array(count).keys()) 19 | .map(x => { 20 | const increment = Math.trunc(x * step * power); 21 | const value = intStart + increment; 22 | return Math.trunc(value) / power; 23 | }); 24 | } 25 | 26 | interface IQueue { 27 | enqueue(item: T): void; 28 | dequeue(): T | undefined; 29 | size(): number; 30 | } 31 | 32 | export class Queue implements IQueue { 33 | private storage: T[] = []; 34 | 35 | constructor(private capacity: number = Infinity) {} 36 | 37 | enqueue(item: T): void { 38 | if (this.size() === this.capacity) { 39 | throw Error("Queue has reached max capacity, you cannot add more items"); 40 | } 41 | this.storage.push(item); 42 | } 43 | dequeue(): T | undefined { 44 | return this.storage.shift(); 45 | } 46 | size(): number { 47 | return this.storage.length; 48 | } 49 | } -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | This CSS file will be included with your plugin, and 4 | available in the app when your plugin is enabled. 5 | 6 | If your plugin does not need CSS, delete this file. 7 | 8 | */ 9 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": ".", 4 | "inlineSourceMap": true, 5 | "inlineSources": true, 6 | "module": "ESNext", 7 | "target": "ES6", 8 | "allowJs": true, 9 | "noImplicitAny": true, 10 | "moduleResolution": "node", 11 | "importHelpers": true, 12 | "isolatedModules": true, 13 | "strictNullChecks": true, 14 | "lib": [ 15 | "DOM", 16 | "ES5", 17 | "ES6", 18 | "ES7" 19 | ] 20 | }, 21 | "include": [ 22 | "**/*.ts" 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- 1 | import { readFileSync, writeFileSync } from "fs"; 2 | 3 | const targetVersion = process.env.npm_package_version; 4 | 5 | // read minAppVersion from manifest.json and bump version to target version 6 | let manifest = JSON.parse(readFileSync("manifest.json", "utf8")); 7 | const { minAppVersion } = manifest; 8 | manifest.version = targetVersion; 9 | writeFileSync("manifest.json", JSON.stringify(manifest, null, "\t")); 10 | 11 | // update versions.json with target version and minAppVersion from manifest.json 12 | let versions = JSON.parse(readFileSync("versions.json", "utf8")); 13 | versions[targetVersion] = minAppVersion; 14 | writeFileSync("versions.json", JSON.stringify(versions, null, "\t")); 15 | -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "1.3.0": "0.15.0" 3 | } 4 | --------------------------------------------------------------------------------