├── .editorconfig ├── .env.example ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmrc ├── .prettierignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── nodemon.json ├── package.json ├── pnpm-lock.yaml ├── scripts └── copy.ts ├── src ├── el │ ├── README.md │ └── index.ts ├── index.ts └── plugins │ └── test │ └── index.ts ├── tsconfig.json └── tsup.config.ts /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_size = 2 6 | indent_style = space 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | BOT_QQ= 2 | BOT_PASSWORD= 3 | BOT_DB_URI= 4 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | # don't ever lint node_modules 2 | node_modules/ 3 | # don't lint build output (make sure it's set to your correct build folder name) 4 | dist/ 5 | # don't lint nyc coverage output 6 | coverage 7 | mirai/ 8 | mcl/ 9 | logs/ 10 | tmp/ 11 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@antfu/eslint-config-ts"], 3 | "rules": { 4 | "no-template-curly-in-string": "off" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # custom 2 | tmp 3 | nohup.out 4 | .pnpm-global 5 | 6 | # mcl 7 | mcl 8 | 9 | # mirai 10 | mirai/* 11 | *.jar 12 | content/ 13 | device.json 14 | libraries/ 15 | bot.yml 16 | 17 | # MiraiOK 18 | miraiOK_* 19 | config.txt 20 | .lastupdate 21 | log/ 22 | .DEBUG 23 | 24 | # basic 25 | .DS_Store 26 | yarn.lock 27 | package-lock.json 28 | 29 | ### Node ### 30 | # Logs 31 | logs 32 | *.log 33 | npm-debug.log* 34 | yarn-debug.log* 35 | yarn-error.log* 36 | lerna-debug.log* 37 | 38 | # Runtime data 39 | pids 40 | *.pid 41 | *.seed 42 | *.pid.lock 43 | 44 | # Directory for instrumented libs generated by jscoverage/JSCover 45 | lib-cov 46 | 47 | # Coverage directory used by tools like istanbul 48 | coverage 49 | *.lcov 50 | 51 | # Compiled binary addons (https://nodejs.org/api/addons.html) 52 | build/Release 53 | 54 | # Dependency directories 55 | node_modules/ 56 | jspm_packages/ 57 | 58 | # TypeScript v1 declaration files 59 | typings/ 60 | 61 | # TypeScript cache 62 | *.tsbuildinfo 63 | 64 | # Optional npm cache directory 65 | .npm 66 | 67 | # Optional eslint cache 68 | .eslintcache 69 | 70 | # Optional REPL history 71 | .node_repl_history 72 | 73 | # Output of 'npm pack' 74 | *.tgz 75 | 76 | # Yarn Integrity file 77 | .yarn-integrity 78 | 79 | # dotenv environment variables file 80 | .env 81 | .env.test 82 | 83 | # parcel-bundler cache (https://parceljs.org/) 84 | .cache 85 | 86 | dist 87 | 88 | pnpm-global/ 89 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | shamefully-hoist=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore artifacts: 2 | build 3 | coverage 4 | dist 5 | docs 6 | mirai 7 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "dbaeumer.vscode-eslint", 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "typescript.tsdk": "node_modules/typescript/lib", 3 | "prettier.enable": false, 4 | "editor.codeActionsOnSave": { 5 | "source.fixAll.eslint": true 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU AFFERO GENERAL PUBLIC LICENSE 2 | Version 3, 19 November 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 Affero General Public License is a free, copyleft license for 11 | software and other kinds of works, specifically designed to ensure 12 | cooperation with the community in the case of network server software. 13 | 14 | The licenses for most software and other practical works are designed 15 | to take away your freedom to share and change the works. By contrast, 16 | our General Public Licenses are intended to guarantee your freedom to 17 | share and change all versions of a program--to make sure it remains free 18 | software for all its users. 19 | 20 | When we speak of free software, we are referring to freedom, not 21 | price. Our General Public Licenses are designed to make sure that you 22 | have the freedom to distribute copies of free software (and charge for 23 | them if you wish), that you receive source code or can get it if you 24 | want it, that you can change the software or use pieces of it in new 25 | free programs, and that you know you can do these things. 26 | 27 | Developers that use our General Public Licenses protect your rights 28 | with two steps: (1) assert copyright on the software, and (2) offer 29 | you this License which gives you legal permission to copy, distribute 30 | and/or modify the software. 31 | 32 | A secondary benefit of defending all users' freedom is that 33 | improvements made in alternate versions of the program, if they 34 | receive widespread use, become available for other developers to 35 | incorporate. Many developers of free software are heartened and 36 | encouraged by the resulting cooperation. However, in the case of 37 | software used on network servers, this result may fail to come about. 38 | The GNU General Public License permits making a modified version and 39 | letting the public access it on a server without ever releasing its 40 | source code to the public. 41 | 42 | The GNU Affero General Public License is designed specifically to 43 | ensure that, in such cases, the modified source code becomes available 44 | to the community. It requires the operator of a network server to 45 | provide the source code of the modified version running there to the 46 | users of that server. Therefore, public use of a modified version, on 47 | a publicly accessible server, gives the public access to the source 48 | code of the modified version. 49 | 50 | An older license, called the Affero General Public License and 51 | published by Affero, was designed to accomplish similar goals. This is 52 | a different license, not a version of the Affero GPL, but Affero has 53 | released a new version of the Affero GPL which permits relicensing under 54 | this license. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | TERMS AND CONDITIONS 60 | 61 | 0. Definitions. 62 | 63 | "This License" refers to version 3 of the GNU Affero General Public License. 64 | 65 | "Copyright" also means copyright-like laws that apply to other kinds of 66 | works, such as semiconductor masks. 67 | 68 | "The Program" refers to any copyrightable work licensed under this 69 | License. Each licensee is addressed as "you". "Licensees" and 70 | "recipients" may be individuals or organizations. 71 | 72 | To "modify" a work means to copy from or adapt all or part of the work 73 | in a fashion requiring copyright permission, other than the making of an 74 | exact copy. The resulting work is called a "modified version" of the 75 | earlier work or a work "based on" the earlier work. 76 | 77 | A "covered work" means either the unmodified Program or a work based 78 | on the Program. 79 | 80 | To "propagate" a work means to do anything with it that, without 81 | permission, would make you directly or secondarily liable for 82 | infringement under applicable copyright law, except executing it on a 83 | computer or modifying a private copy. Propagation includes copying, 84 | distribution (with or without modification), making available to the 85 | public, and in some countries other activities as well. 86 | 87 | To "convey" a work means any kind of propagation that enables other 88 | parties to make or receive copies. Mere interaction with a user through 89 | a computer network, with no transfer of a copy, is not conveying. 90 | 91 | An interactive user interface displays "Appropriate Legal Notices" 92 | to the extent that it includes a convenient and prominently visible 93 | feature that (1) displays an appropriate copyright notice, and (2) 94 | tells the user that there is no warranty for the work (except to the 95 | extent that warranties are provided), that licensees may convey the 96 | work under this License, and how to view a copy of this License. If 97 | the interface presents a list of user commands or options, such as a 98 | menu, a prominent item in the list meets this criterion. 99 | 100 | 1. Source Code. 101 | 102 | The "source code" for a work means the preferred form of the work 103 | for making modifications to it. "Object code" means any non-source 104 | form of a work. 105 | 106 | A "Standard Interface" means an interface that either is an official 107 | standard defined by a recognized standards body, or, in the case of 108 | interfaces specified for a particular programming language, one that 109 | is widely used among developers working in that language. 110 | 111 | The "System Libraries" of an executable work include anything, other 112 | than the work as a whole, that (a) is included in the normal form of 113 | packaging a Major Component, but which is not part of that Major 114 | Component, and (b) serves only to enable use of the work with that 115 | Major Component, or to implement a Standard Interface for which an 116 | implementation is available to the public in source code form. A 117 | "Major Component", in this context, means a major essential component 118 | (kernel, window system, and so on) of the specific operating system 119 | (if any) on which the executable work runs, or a compiler used to 120 | produce the work, or an object code interpreter used to run it. 121 | 122 | The "Corresponding Source" for a work in object code form means all 123 | the source code needed to generate, install, and (for an executable 124 | work) run the object code and to modify the work, including scripts to 125 | control those activities. However, it does not include the work's 126 | System Libraries, or general-purpose tools or generally available free 127 | programs which are used unmodified in performing those activities but 128 | which are not part of the work. For example, Corresponding Source 129 | includes interface definition files associated with source files for 130 | the work, and the source code for shared libraries and dynamically 131 | linked subprograms that the work is specifically designed to require, 132 | such as by intimate data communication or control flow between those 133 | subprograms and other parts of the work. 134 | 135 | The Corresponding Source need not include anything that users 136 | can regenerate automatically from other parts of the Corresponding 137 | Source. 138 | 139 | The Corresponding Source for a work in source code form is that 140 | same work. 141 | 142 | 2. Basic Permissions. 143 | 144 | All rights granted under this License are granted for the term of 145 | copyright on the Program, and are irrevocable provided the stated 146 | conditions are met. This License explicitly affirms your unlimited 147 | permission to run the unmodified Program. The output from running a 148 | covered work is covered by this License only if the output, given its 149 | content, constitutes a covered work. This License acknowledges your 150 | rights of fair use or other equivalent, as provided by copyright law. 151 | 152 | You may make, run and propagate covered works that you do not 153 | convey, without conditions so long as your license otherwise remains 154 | in force. You may convey covered works to others for the sole purpose 155 | of having them make modifications exclusively for you, or provide you 156 | with facilities for running those works, provided that you comply with 157 | the terms of this License in conveying all material for which you do 158 | not control copyright. Those thus making or running the covered works 159 | for you must do so exclusively on your behalf, under your direction 160 | and control, on terms that prohibit them from making any copies of 161 | your copyrighted material outside their relationship with you. 162 | 163 | Conveying under any other circumstances is permitted solely under 164 | the conditions stated below. Sublicensing is not allowed; section 10 165 | makes it unnecessary. 166 | 167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 168 | 169 | No covered work shall be deemed part of an effective technological 170 | measure under any applicable law fulfilling obligations under article 171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 172 | similar laws prohibiting or restricting circumvention of such 173 | measures. 174 | 175 | When you convey a covered work, you waive any legal power to forbid 176 | circumvention of technological measures to the extent such circumvention 177 | is effected by exercising rights under this License with respect to 178 | the covered work, and you disclaim any intention to limit operation or 179 | modification of the work as a means of enforcing, against the work's 180 | users, your or third parties' legal rights to forbid circumvention of 181 | technological measures. 182 | 183 | 4. Conveying Verbatim Copies. 184 | 185 | You may convey verbatim copies of the Program's source code as you 186 | receive it, in any medium, provided that you conspicuously and 187 | appropriately publish on each copy an appropriate copyright notice; 188 | keep intact all notices stating that this License and any 189 | non-permissive terms added in accord with section 7 apply to the code; 190 | keep intact all notices of the absence of any warranty; and give all 191 | recipients a copy of this License along with the Program. 192 | 193 | You may charge any price or no price for each copy that you convey, 194 | and you may offer support or warranty protection for a fee. 195 | 196 | 5. Conveying Modified Source Versions. 197 | 198 | You may convey a work based on the Program, or the modifications to 199 | produce it from the Program, in the form of source code under the 200 | terms of section 4, provided that you also meet all of these conditions: 201 | 202 | a) The work must carry prominent notices stating that you modified 203 | it, and giving a relevant date. 204 | 205 | b) The work must carry prominent notices stating that it is 206 | released under this License and any conditions added under section 207 | 7. This requirement modifies the requirement in section 4 to 208 | "keep intact all notices". 209 | 210 | c) You must license the entire work, as a whole, under this 211 | License to anyone who comes into possession of a copy. This 212 | License will therefore apply, along with any applicable section 7 213 | additional terms, to the whole of the work, and all its parts, 214 | regardless of how they are packaged. This License gives no 215 | permission to license the work in any other way, but it does not 216 | invalidate such permission if you have separately received it. 217 | 218 | d) If the work has interactive user interfaces, each must display 219 | Appropriate Legal Notices; however, if the Program has interactive 220 | interfaces that do not display Appropriate Legal Notices, your 221 | work need not make them do so. 222 | 223 | A compilation of a covered work with other separate and independent 224 | works, which are not by their nature extensions of the covered work, 225 | and which are not combined with it such as to form a larger program, 226 | in or on a volume of a storage or distribution medium, is called an 227 | "aggregate" if the compilation and its resulting copyright are not 228 | used to limit the access or legal rights of the compilation's users 229 | beyond what the individual works permit. Inclusion of a covered work 230 | in an aggregate does not cause this License to apply to the other 231 | parts of the aggregate. 232 | 233 | 6. Conveying Non-Source Forms. 234 | 235 | You may convey a covered work in object code form under the terms 236 | of sections 4 and 5, provided that you also convey the 237 | machine-readable Corresponding Source under the terms of this License, 238 | in one of these ways: 239 | 240 | a) Convey the object code in, or embodied in, a physical product 241 | (including a physical distribution medium), accompanied by the 242 | Corresponding Source fixed on a durable physical medium 243 | customarily used for software interchange. 244 | 245 | b) Convey the object code in, or embodied in, a physical product 246 | (including a physical distribution medium), accompanied by a 247 | written offer, valid for at least three years and valid for as 248 | long as you offer spare parts or customer support for that product 249 | model, to give anyone who possesses the object code either (1) a 250 | copy of the Corresponding Source for all the software in the 251 | product that is covered by this License, on a durable physical 252 | medium customarily used for software interchange, for a price no 253 | more than your reasonable cost of physically performing this 254 | conveying of source, or (2) access to copy the 255 | Corresponding Source from a network server at no charge. 256 | 257 | c) Convey individual copies of the object code with a copy of the 258 | written offer to provide the Corresponding Source. This 259 | alternative is allowed only occasionally and noncommercially, and 260 | only if you received the object code with such an offer, in accord 261 | with subsection 6b. 262 | 263 | d) Convey the object code by offering access from a designated 264 | place (gratis or for a charge), and offer equivalent access to the 265 | Corresponding Source in the same way through the same place at no 266 | further charge. You need not require recipients to copy the 267 | Corresponding Source along with the object code. If the place to 268 | copy the object code is a network server, the Corresponding Source 269 | may be on a different server (operated by you or a third party) 270 | that supports equivalent copying facilities, provided you maintain 271 | clear directions next to the object code saying where to find the 272 | Corresponding Source. Regardless of what server hosts the 273 | Corresponding Source, you remain obligated to ensure that it is 274 | available for as long as needed to satisfy these requirements. 275 | 276 | e) Convey the object code using peer-to-peer transmission, provided 277 | you inform other peers where the object code and Corresponding 278 | Source of the work are being offered to the general public at no 279 | charge under subsection 6d. 280 | 281 | A separable portion of the object code, whose source code is excluded 282 | from the Corresponding Source as a System Library, need not be 283 | included in conveying the object code work. 284 | 285 | A "User Product" is either (1) a "consumer product", which means any 286 | tangible personal property which is normally used for personal, family, 287 | or household purposes, or (2) anything designed or sold for incorporation 288 | into a dwelling. In determining whether a product is a consumer product, 289 | doubtful cases shall be resolved in favor of coverage. For a particular 290 | product received by a particular user, "normally used" refers to a 291 | typical or common use of that class of product, regardless of the status 292 | of the particular user or of the way in which the particular user 293 | actually uses, or expects or is expected to use, the product. A product 294 | is a consumer product regardless of whether the product has substantial 295 | commercial, industrial or non-consumer uses, unless such uses represent 296 | the only significant mode of use of the product. 297 | 298 | "Installation Information" for a User Product means any methods, 299 | procedures, authorization keys, or other information required to install 300 | and execute modified versions of a covered work in that User Product from 301 | a modified version of its Corresponding Source. The information must 302 | suffice to ensure that the continued functioning of the modified object 303 | code is in no case prevented or interfered with solely because 304 | modification has been made. 305 | 306 | If you convey an object code work under this section in, or with, or 307 | specifically for use in, a User Product, and the conveying occurs as 308 | part of a transaction in which the right of possession and use of the 309 | User Product is transferred to the recipient in perpetuity or for a 310 | fixed term (regardless of how the transaction is characterized), the 311 | Corresponding Source conveyed under this section must be accompanied 312 | by the Installation Information. But this requirement does not apply 313 | if neither you nor any third party retains the ability to install 314 | modified object code on the User Product (for example, the work has 315 | been installed in ROM). 316 | 317 | The requirement to provide Installation Information does not include a 318 | requirement to continue to provide support service, warranty, or updates 319 | for a work that has been modified or installed by the recipient, or for 320 | the User Product in which it has been modified or installed. Access to a 321 | network may be denied when the modification itself materially and 322 | adversely affects the operation of the network or violates the rules and 323 | protocols for communication across the network. 324 | 325 | Corresponding Source conveyed, and Installation Information provided, 326 | in accord with this section must be in a format that is publicly 327 | documented (and with an implementation available to the public in 328 | source code form), and must require no special password or key for 329 | unpacking, reading or copying. 330 | 331 | 7. Additional Terms. 332 | 333 | "Additional permissions" are terms that supplement the terms of this 334 | License by making exceptions from one or more of its conditions. 335 | Additional permissions that are applicable to the entire Program shall 336 | be treated as though they were included in this License, to the extent 337 | that they are valid under applicable law. If additional permissions 338 | apply only to part of the Program, that part may be used separately 339 | under those permissions, but the entire Program remains governed by 340 | this License without regard to the additional permissions. 341 | 342 | When you convey a copy of a covered work, you may at your option 343 | remove any additional permissions from that copy, or from any part of 344 | it. (Additional permissions may be written to require their own 345 | removal in certain cases when you modify the work.) You may place 346 | additional permissions on material, added by you to a covered work, 347 | for which you have or can give appropriate copyright permission. 348 | 349 | Notwithstanding any other provision of this License, for material you 350 | add to a covered work, you may (if authorized by the copyright holders of 351 | that material) supplement the terms of this License with terms: 352 | 353 | a) Disclaiming warranty or limiting liability differently from the 354 | terms of sections 15 and 16 of this License; or 355 | 356 | b) Requiring preservation of specified reasonable legal notices or 357 | author attributions in that material or in the Appropriate Legal 358 | Notices displayed by works containing it; or 359 | 360 | c) Prohibiting misrepresentation of the origin of that material, or 361 | requiring that modified versions of such material be marked in 362 | reasonable ways as different from the original version; or 363 | 364 | d) Limiting the use for publicity purposes of names of licensors or 365 | authors of the material; or 366 | 367 | e) Declining to grant rights under trademark law for use of some 368 | trade names, trademarks, or service marks; or 369 | 370 | f) Requiring indemnification of licensors and authors of that 371 | material by anyone who conveys the material (or modified versions of 372 | it) with contractual assumptions of liability to the recipient, for 373 | any liability that these contractual assumptions directly impose on 374 | those licensors and authors. 375 | 376 | All other non-permissive additional terms are considered "further 377 | restrictions" within the meaning of section 10. If the Program as you 378 | received it, or any part of it, contains a notice stating that it is 379 | governed by this License along with a term that is a further 380 | restriction, you may remove that term. If a license document contains 381 | a further restriction but permits relicensing or conveying under this 382 | License, you may add to a covered work material governed by the terms 383 | of that license document, provided that the further restriction does 384 | not survive such relicensing or conveying. 385 | 386 | If you add terms to a covered work in accord with this section, you 387 | must place, in the relevant source files, a statement of the 388 | additional terms that apply to those files, or a notice indicating 389 | where to find the applicable terms. 390 | 391 | Additional terms, permissive or non-permissive, may be stated in the 392 | form of a separately written license, or stated as exceptions; 393 | the above requirements apply either way. 394 | 395 | 8. Termination. 396 | 397 | You may not propagate or modify a covered work except as expressly 398 | provided under this License. Any attempt otherwise to propagate or 399 | modify it is void, and will automatically terminate your rights under 400 | this License (including any patent licenses granted under the third 401 | paragraph of section 11). 402 | 403 | However, if you cease all violation of this License, then your 404 | license from a particular copyright holder is reinstated (a) 405 | provisionally, unless and until the copyright holder explicitly and 406 | finally terminates your license, and (b) permanently, if the copyright 407 | holder fails to notify you of the violation by some reasonable means 408 | prior to 60 days after the cessation. 409 | 410 | Moreover, your license from a particular copyright holder is 411 | reinstated permanently if the copyright holder notifies you of the 412 | violation by some reasonable means, this is the first time you have 413 | received notice of violation of this License (for any work) from that 414 | copyright holder, and you cure the violation prior to 30 days after 415 | your receipt of the notice. 416 | 417 | Termination of your rights under this section does not terminate the 418 | licenses of parties who have received copies or rights from you under 419 | this License. If your rights have been terminated and not permanently 420 | reinstated, you do not qualify to receive new licenses for the same 421 | material under section 10. 422 | 423 | 9. Acceptance Not Required for Having Copies. 424 | 425 | You are not required to accept this License in order to receive or 426 | run a copy of the Program. Ancillary propagation of a covered work 427 | occurring solely as a consequence of using peer-to-peer transmission 428 | to receive a copy likewise does not require acceptance. However, 429 | nothing other than this License grants you permission to propagate or 430 | modify any covered work. These actions infringe copyright if you do 431 | not accept this License. Therefore, by modifying or propagating a 432 | covered work, you indicate your acceptance of this License to do so. 433 | 434 | 10. Automatic Licensing of Downstream Recipients. 435 | 436 | Each time you convey a covered work, the recipient automatically 437 | receives a license from the original licensors, to run, modify and 438 | propagate that work, subject to this License. You are not responsible 439 | for enforcing compliance by third parties with this License. 440 | 441 | An "entity transaction" is a transaction transferring control of an 442 | organization, or substantially all assets of one, or subdividing an 443 | organization, or merging organizations. If propagation of a covered 444 | work results from an entity transaction, each party to that 445 | transaction who receives a copy of the work also receives whatever 446 | licenses to the work the party's predecessor in interest had or could 447 | give under the previous paragraph, plus a right to possession of the 448 | Corresponding Source of the work from the predecessor in interest, if 449 | the predecessor has it or can get it with reasonable efforts. 450 | 451 | You may not impose any further restrictions on the exercise of the 452 | rights granted or affirmed under this License. For example, you may 453 | not impose a license fee, royalty, or other charge for exercise of 454 | rights granted under this License, and you may not initiate litigation 455 | (including a cross-claim or counterclaim in a lawsuit) alleging that 456 | any patent claim is infringed by making, using, selling, offering for 457 | sale, or importing the Program or any portion of it. 458 | 459 | 11. Patents. 460 | 461 | A "contributor" is a copyright holder who authorizes use under this 462 | License of the Program or a work on which the Program is based. The 463 | work thus licensed is called the contributor's "contributor version". 464 | 465 | A contributor's "essential patent claims" are all patent claims 466 | owned or controlled by the contributor, whether already acquired or 467 | hereafter acquired, that would be infringed by some manner, permitted 468 | by this License, of making, using, or selling its contributor version, 469 | but do not include claims that would be infringed only as a 470 | consequence of further modification of the contributor version. For 471 | purposes of this definition, "control" includes the right to grant 472 | patent sublicenses in a manner consistent with the requirements of 473 | this License. 474 | 475 | Each contributor grants you a non-exclusive, worldwide, royalty-free 476 | patent license under the contributor's essential patent claims, to 477 | make, use, sell, offer for sale, import and otherwise run, modify and 478 | propagate the contents of its contributor version. 479 | 480 | In the following three paragraphs, a "patent license" is any express 481 | agreement or commitment, however denominated, not to enforce a patent 482 | (such as an express permission to practice a patent or covenant not to 483 | sue for patent infringement). To "grant" such a patent license to a 484 | party means to make such an agreement or commitment not to enforce a 485 | patent against the party. 486 | 487 | If you convey a covered work, knowingly relying on a patent license, 488 | and the Corresponding Source of the work is not available for anyone 489 | to copy, free of charge and under the terms of this License, through a 490 | publicly available network server or other readily accessible means, 491 | then you must either (1) cause the Corresponding Source to be so 492 | available, or (2) arrange to deprive yourself of the benefit of the 493 | patent license for this particular work, or (3) arrange, in a manner 494 | consistent with the requirements of this License, to extend the patent 495 | license to downstream recipients. "Knowingly relying" means you have 496 | actual knowledge that, but for the patent license, your conveying the 497 | covered work in a country, or your recipient's use of the covered work 498 | in a country, would infringe one or more identifiable patents in that 499 | country that you have reason to believe are valid. 500 | 501 | If, pursuant to or in connection with a single transaction or 502 | arrangement, you convey, or propagate by procuring conveyance of, a 503 | covered work, and grant a patent license to some of the parties 504 | receiving the covered work authorizing them to use, propagate, modify 505 | or convey a specific copy of the covered work, then the patent license 506 | you grant is automatically extended to all recipients of the covered 507 | work and works based on it. 508 | 509 | A patent license is "discriminatory" if it does not include within 510 | the scope of its coverage, prohibits the exercise of, or is 511 | conditioned on the non-exercise of one or more of the rights that are 512 | specifically granted under this License. You may not convey a covered 513 | work if you are a party to an arrangement with a third party that is 514 | in the business of distributing software, under which you make payment 515 | to the third party based on the extent of your activity of conveying 516 | the work, and under which the third party grants, to any of the 517 | parties who would receive the covered work from you, a discriminatory 518 | patent license (a) in connection with copies of the covered work 519 | conveyed by you (or copies made from those copies), or (b) primarily 520 | for and in connection with specific products or compilations that 521 | contain the covered work, unless you entered into that arrangement, 522 | or that patent license was granted, prior to 28 March 2007. 523 | 524 | Nothing in this License shall be construed as excluding or limiting 525 | any implied license or other defenses to infringement that may 526 | otherwise be available to you under applicable patent law. 527 | 528 | 12. No Surrender of Others' Freedom. 529 | 530 | If conditions are imposed on you (whether by court order, agreement or 531 | otherwise) that contradict the conditions of this License, they do not 532 | excuse you from the conditions of this License. If you cannot convey a 533 | covered work so as to satisfy simultaneously your obligations under this 534 | License and any other pertinent obligations, then as a consequence you may 535 | not convey it at all. For example, if you agree to terms that obligate you 536 | to collect a royalty for further conveying from those to whom you convey 537 | the Program, the only way you could satisfy both those terms and this 538 | License would be to refrain entirely from conveying the Program. 539 | 540 | 13. Remote Network Interaction; Use with the GNU General Public License. 541 | 542 | Notwithstanding any other provision of this License, if you modify the 543 | Program, your modified version must prominently offer all users 544 | interacting with it remotely through a computer network (if your version 545 | supports such interaction) an opportunity to receive the Corresponding 546 | Source of your version by providing access to the Corresponding Source 547 | from a network server at no charge, through some standard or customary 548 | means of facilitating copying of software. This Corresponding Source 549 | shall include the Corresponding Source for any work covered by version 3 550 | of the GNU General Public License that is incorporated pursuant to the 551 | following paragraph. 552 | 553 | Notwithstanding any other provision of this License, you have 554 | permission to link or combine any covered work with a work licensed 555 | under version 3 of the GNU General Public License into a single 556 | combined work, and to convey the resulting work. The terms of this 557 | License will continue to apply to the part which is the covered work, 558 | but the work with which it is combined will remain governed by version 559 | 3 of the GNU General Public License. 560 | 561 | 14. Revised Versions of this License. 562 | 563 | The Free Software Foundation may publish revised and/or new versions of 564 | the GNU Affero General Public License from time to time. Such new versions 565 | will be similar in spirit to the present version, but may differ in detail to 566 | address new problems or concerns. 567 | 568 | Each version is given a distinguishing version number. If the 569 | Program specifies that a certain numbered version of the GNU Affero General 570 | Public License "or any later version" applies to it, you have the 571 | option of following the terms and conditions either of that numbered 572 | version or of any later version published by the Free Software 573 | Foundation. If the Program does not specify a version number of the 574 | GNU Affero General Public License, you may choose any version ever published 575 | by the Free Software Foundation. 576 | 577 | If the Program specifies that a proxy can decide which future 578 | versions of the GNU Affero General Public License can be used, that proxy's 579 | public statement of acceptance of a version permanently authorizes you 580 | to choose that version for the Program. 581 | 582 | Later license versions may give you additional or different 583 | permissions. However, no additional obligations are imposed on any 584 | author or copyright holder as a result of your choosing to follow a 585 | later version. 586 | 587 | 15. Disclaimer of Warranty. 588 | 589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 597 | 598 | 16. Limitation of Liability. 599 | 600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 608 | SUCH DAMAGES. 609 | 610 | 17. Interpretation of Sections 15 and 16. 611 | 612 | If the disclaimer of warranty and limitation of liability provided 613 | above cannot be given local legal effect according to their terms, 614 | reviewing courts shall apply local law that most closely approximates 615 | an absolute waiver of all civil liability in connection with the 616 | Program, unless a warranty or assumption of liability accompanies a 617 | copy of the Program in return for a fee. 618 | 619 | END OF TERMS AND CONDITIONS 620 | 621 | How to Apply These Terms to Your New Programs 622 | 623 | If you develop a new program, and you want it to be of the greatest 624 | possible use to the public, the best way to achieve this is to make it 625 | free software which everyone can redistribute and change under these terms. 626 | 627 | To do so, attach the following notices to the program. It is safest 628 | to attach them to the start of each source file to most effectively 629 | state the exclusion of warranty; and each file should have at least 630 | the "copyright" line and a pointer to where the full notice is found. 631 | 632 | 633 | Copyright (C) 634 | 635 | This program is free software: you can redistribute it and/or modify 636 | it under the terms of the GNU Affero General Public License as published 637 | by the Free Software Foundation, either version 3 of the License, or 638 | (at your option) any later version. 639 | 640 | This program is distributed in the hope that it will be useful, 641 | but WITHOUT ANY WARRANTY; without even the implied warranty of 642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 643 | GNU Affero General Public License for more details. 644 | 645 | You should have received a copy of the GNU Affero General Public License 646 | along with this program. If not, see . 647 | 648 | Also add information on how to contact you by electronic and paper mail. 649 | 650 | If your software can interact with users remotely through a computer 651 | network, you should also make sure that it provides a way for users to 652 | get its source. For example, if your program is a web application, its 653 | interface could display a "Source" link that leads users to an archive 654 | of the code. There are many ways you could offer source, and different 655 | solutions will be better for different programs; see section 13 for the 656 | specific requirements. 657 | 658 | You should also get your employer (if you work as a programmer) or school, 659 | if any, to sign a "copyright disclaimer" for the program, if necessary. 660 | For more information on this, and how to apply and follow the GNU AGPL, see 661 | . 662 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # el-bot-template 2 | 3 | ![GitHub package.json version](https://img.shields.io/github/package-json/v/ElpsyCN/el-bot-template) 4 | [![QQ Group](https://img.shields.io/badge/qq%20group-707408530-12B7F5)](https://shang.qq.com/wpa/qunwpa?idkey=5b0eef3e3256ce23981f3b0aa2457175c66ca9194efd266fd0e9a7dbe43ed653) 5 | [![telegram](https://img.shields.io/badge/telegram-elpsy__cn-blue)](https://t.me/elpsy_cn) 6 | [![docs](https://github.com/ElpsyCN/el-bot-docs/workflows/docs/badge.svg)](https://docs.bot.elpsy.cn) 7 | 8 | 本仓库为包含 [mirai](https://github.com/mamoe/mirai) 与 [el-bot](https://github.com/ElpsyCN/el-bot) 的基础可运行模版。 9 | 并在 `package.json` 中预置了几个简单的脚本。 10 | 11 | 你需要确保你已拥有 [Java](https://www.java.com/zh_CN/) 与 [Node.js](https://nodejs.org/zh-cn/download/) 环境。 12 | 13 | ## 项目结构 14 | 15 | ```txt 16 | . 17 | ├── LICENSE // AGPL-3.0,你不应该用它进行商业或非法行为 18 | ├── README.md 19 | ├── bot // 机器人实体,你可以自由编写代码扩展它 20 | │ ├── README.md 21 | │ └── index.js // 主文件 22 | ├── el // 配置目录,存放机器人相关的配置(可自行解析 yml 文件) 23 | │ ├── README.md 24 | │ ├── index.js // 所有配置文件(解析 yaml 的逻辑) 25 | │ └── index.yml // 插件配置文件 26 | ├── mcl // mirai-console-loader 文件夹 27 | ├── nodemon.json // 监听文件变动,自动重启(譬如修改配置时,非常方便) 28 | ├── package.json 29 | │ ... 30 | ``` 31 | 32 | ## 使用 33 | 34 | [![mirai release](https://img.shields.io/github/v/release/mamoe/mirai?label=mirai)](https://github.com/mamoe/mirai) 35 | [![mirai-console-loader release](https://img.shields.io/github/v/release/iTXTech/mirai-console-loader?label=mirai-console-loader)](https://github.com/iTXTech/mirai-console-loader) 36 | [![mirai-api-http release](https://img.shields.io/github/v/release/project-mirai/mirai-api-http?label=mirai-api-http)](https://github.com/project-mirai/mirai-api-http) 37 | [![mirai-ts](https://img.shields.io/npm/v/mirai-ts?label=mirai-ts)](https://www.npmjs.com/package/mirai-ts) 38 | 39 | ### 克隆本模版 40 | 41 | ```sh 42 | git clone https://github.com/ElpsyCN/el-bot-template your-el-bot 43 | cd your-el-bot 44 | ``` 45 | 46 | ### 安装依赖 47 | 48 | ![el-bot](https://img.shields.io/npm/v/el-bot?label=el-bot) 49 | 50 | > 请检查 el-bot 是否为最新版本,模版的依赖更新可能要略微落后。 51 | > 安装最新版本 el-bot:`npm install el-bot@latest` 52 | 53 | ```sh 54 | # 安装 pnpm 55 | # npm i -g pnpm 56 | pnpm i 57 | # npm install 58 | ``` 59 | 60 | ### 安装 mirai 61 | 62 | 由于种种原因,本项目将不再提供安装 mirai 的脚本与方法,你应当具有自行安装与启动 mirai 的能力。 63 | 64 | 推荐使用官方启动器 [mirai-console-loader](https://github.com/iTXTech/mirai-console-loader) 自行启动 [mirai](https://github.com/mamoe/mirai)(v1.0 以上) 与 [mirai-api-http](https://github.com/mamoe/mirai-api-http) 插件(v1.9.0 以上)。 65 | 66 | 下载 [MCL Releases](https://github.com/iTXTech/mirai-console-loader/releases),并解压。 67 | 68 | Example: 69 | 70 | ```sh 71 | wget https://github.com/iTXTech/mirai-console-loader/releases/download/v1.0.4/mcl-1.0.4.zip 72 | unzip -o -d mcl mcl-1.0.4.zip 73 | ``` 74 | 75 | ### 启动 mirai 76 | 77 | 通过 [mirai-console-loader](https://github.com/iTXTech/mirai-console-loader) 启动 mirai。(您也可以使用其他任意方式,并记得加载 mirai-api-http 插件。) 78 | 79 | ```sh 80 | cd mcl 81 | ./mcl 82 | # 添加自动登录 83 | /autoLogin add 114514 yourpassword 84 | ``` 85 | 86 | ### 配置 87 | 88 | #### 配置 mirai-api-http 插件 89 | 90 | 下载 [mirai-api-http Releases](https://github.com/project-mirai/mirai-api-http/releases) jar 包,放置于 `mcl/plugins` 文件夹。 91 | 92 | 配置文件位于 `mcl/config/net.mamoe.mirai-api-http/setting.yml` 93 | 94 | 最好自行修改你的 `authKey`,否则你的机器人将很可能被 [NTR](https://zh.moegirl.org/zh-hans/NTR)。 95 | 96 | ```yaml 97 | cors: 98 | - "*" 99 | host: 0.0.0.0 100 | port: 4859 101 | authKey: el-psy-congroo 102 | enableWebsocket: true 103 | ``` 104 | 105 | #### 配置 bot 106 | 107 | ```ts 108 | // el/index.ts 109 | export default { 110 | // 你登录的 QQ 号 111 | qq: 12345679, 112 | }; 113 | ``` 114 | 115 | 如果您需要上传本地图片语音文件,您需要配置您的 `package.json` 文件中 `mcl.folder` 字段为你的 mirai 文件夹相对本项目的路径。 116 | 117 | > 默认值为项目本身目录下的 `mcl` 文件夹,建议直接将 mcl 启动器置于 `mcl` 文件夹下。 118 | 119 | ### 启动 bot 120 | 121 | > 记得新建一个终端,并确保你的 mirai 控制台保持打开与 QQ 已经登录。 122 | > 检测控制台是否可以正常使用的一个方式是访问 `localhost:4859/about` 查看是否有信息返回。(如果你修改了端口号,记得替换。) 123 | 124 | ```bash 125 | npm run build 126 | # 构建 ts 127 | npm run bot 128 | # 启动 bot 129 | ``` 130 | 131 | 等价于: 132 | 133 | ```sh 134 | npm run start 135 | # yarn run start 136 | ``` 137 | 138 | ```bash 139 | # 开发,将会 watch 修改的文件 140 | npm run dev 141 | ``` 142 | 143 | 此时,你的 QQ 机器人就已经成功运行起来了。并将附带了一些默认的功能。 144 | 145 | 然后?然后参照 [el-bot 文档](https://docs.bot.elpsy.cn/) 自定义吧。 146 | 147 | ### 说明 148 | 149 | > 确保你的 QQ 已在 mirai 控制台中登录。 150 | 151 | el-bot 将与已启动的 mirai 已登录的 QQ 建立连接。(如连接失败,则每隔三秒,自动重新连接。) 152 | 153 | ### Webhook 154 | 155 | - `enable`: 是否启用 156 | 157 | ```ts 158 | // el/index.ts 159 | export default { 160 | webhook: { 161 | enable: true, 162 | path: "/webhook", 163 | port: 7777, 164 | secret: "el-psy-congroo", 165 | }, 166 | }; 167 | ``` 168 | -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- 1 | { 2 | "ext": "js,ts,yml,lock" 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "el-bot-template", 3 | "version": "0.2.1", 4 | "description": "el-bot 的快速启动模版", 5 | "private": true, 6 | "main": "index.js", 7 | "mcl": { 8 | "folder": "mcl" 9 | }, 10 | "scripts": { 11 | "build": "tsup && npm run copy:pkg", 12 | "bot": "nodemon --require dotenv/config dist/index.js", 13 | "copy:pkg": "esmo scripts/copy.ts", 14 | "dev": "tsup --watch && nodemon --require dotenv/config dist/index.js", 15 | "mcl": "cd mcl && ./mcl", 16 | "start": "npm run build && npm run start:bot", 17 | "start:bot": "node --require dotenv/config dist/index.js", 18 | "lint": "eslint \"**/*.{ts,js}\"", 19 | "lint:fix": "eslint \"**/*.{ts,js}\" --fix" 20 | }, 21 | "repository": { 22 | "type": "git", 23 | "url": "git+https://github.com/ElpsyCN/el-bot-template.git" 24 | }, 25 | "author": { 26 | "name": "YunYouJun", 27 | "email": "me@yunyoujun.cn", 28 | "url": "https://www.yunyoujun.cn" 29 | }, 30 | "license": "AGPL-3.0", 31 | "bugs": { 32 | "url": "https://github.com/ElpsyCN/el-bot-template/issues" 33 | }, 34 | "homepage": "https://github.com/ElpsyCN/el-bot-template#readme", 35 | "dependencies": { 36 | "chalk": "4", 37 | "el-bot": "^0.9.0-beta.18" 38 | }, 39 | "devDependencies": { 40 | "@antfu/eslint-config": "^0.16.1", 41 | "dotenv": "^14.3.2", 42 | "eslint": "^8.7.0", 43 | "esno": "^0.14.0", 44 | "nodemon": "^2.0.12", 45 | "tsup": "^5.11.11", 46 | "typescript": "^4.5.5" 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: 5.3 2 | 3 | specifiers: 4 | '@antfu/eslint-config': ^0.16.1 5 | chalk: '4' 6 | dotenv: ^14.3.2 7 | el-bot: ^0.9.0-beta.18 8 | eslint: ^8.7.0 9 | esno: ^0.14.0 10 | nodemon: ^2.0.12 11 | tsup: ^5.11.11 12 | typescript: ^4.5.5 13 | 14 | dependencies: 15 | chalk: 4.1.2 16 | el-bot: 0.9.0-beta.18 17 | 18 | devDependencies: 19 | '@antfu/eslint-config': 0.16.1_eslint@8.7.0+typescript@4.5.5 20 | dotenv: 14.3.2 21 | eslint: 8.7.0 22 | esno: 0.14.0_typescript@4.5.5 23 | nodemon: 2.0.15 24 | tsup: 5.11.11_typescript@4.5.5 25 | typescript: 4.5.5 26 | 27 | packages: 28 | 29 | /@antfu/eslint-config-basic/0.16.1_eslint@8.7.0: 30 | resolution: {integrity: sha512-kUA7UBD1W8FG2frH4pKfos4l5eUSxVH8oMK7+T9OxBAxpvXDAYUGU0KNZoMOdhWhu0dmE/7iHXYbnu6r9KXwUw==} 31 | peerDependencies: 32 | eslint: '>=7.4.0' 33 | dependencies: 34 | eslint: 8.7.0 35 | eslint-config-standard: 17.0.0-0_3163ab7e7910c30880bb01ebc541ca1a 36 | eslint-plugin-eslint-comments: 3.2.0_eslint@8.7.0 37 | eslint-plugin-html: 6.2.0 38 | eslint-plugin-import: 2.25.4_eslint@8.7.0 39 | eslint-plugin-jsonc: 2.1.0_eslint@8.7.0 40 | eslint-plugin-n: 14.0.0_eslint@8.7.0 41 | eslint-plugin-promise: 6.0.0_eslint@8.7.0 42 | eslint-plugin-unicorn: 40.1.0_eslint@8.7.0 43 | eslint-plugin-yml: 0.12.0_eslint@8.7.0 44 | jsonc-eslint-parser: 2.1.0 45 | yaml-eslint-parser: 0.5.0 46 | transitivePeerDependencies: 47 | - supports-color 48 | dev: true 49 | 50 | /@antfu/eslint-config-react/0.16.1_eslint@8.7.0+typescript@4.5.5: 51 | resolution: {integrity: sha512-UU/KqDVRb6/XQVBsrL2a3fBwn2NRGWnZCBPAU9HbIqLY/zJ5p8CpBJTvvIvCC4p4aiO3unwnYhhf5SdCQtfOjw==} 52 | peerDependencies: 53 | eslint: '>=7.4.0' 54 | dependencies: 55 | '@antfu/eslint-config-ts': 0.16.1_eslint@8.7.0+typescript@4.5.5 56 | eslint: 8.7.0 57 | eslint-plugin-react: 7.28.0_eslint@8.7.0 58 | transitivePeerDependencies: 59 | - supports-color 60 | - typescript 61 | dev: true 62 | 63 | /@antfu/eslint-config-ts/0.16.1_eslint@8.7.0+typescript@4.5.5: 64 | resolution: {integrity: sha512-FrIosrYILXog7v8GcQkj8YyMKe6HxUvv8DFDHxQjR5liI77BQ9kmIqRu8JZ/6RwMEEpMWV5Ed+LDR7FDjJiTxg==} 65 | peerDependencies: 66 | eslint: '>=7.4.0' 67 | typescript: '>=3.9' 68 | dependencies: 69 | '@antfu/eslint-config-basic': 0.16.1_eslint@8.7.0 70 | '@typescript-eslint/eslint-plugin': 5.10.1_0f442f6b60390429061d5d9b6bcaaba6 71 | '@typescript-eslint/parser': 5.10.1_eslint@8.7.0+typescript@4.5.5 72 | eslint: 8.7.0 73 | typescript: 4.5.5 74 | transitivePeerDependencies: 75 | - supports-color 76 | dev: true 77 | 78 | /@antfu/eslint-config-vue/0.16.1_eslint@8.7.0+typescript@4.5.5: 79 | resolution: {integrity: sha512-2BMQBTVQrElu2Pvmubgc1G3BrCbaQjBzcepZZvHNnK74Wq4ec1Cl5i9BMRVVwBGg5fIg5erRPzUWr17j5BLa0A==} 80 | peerDependencies: 81 | eslint: '>=7.4.0' 82 | dependencies: 83 | '@antfu/eslint-config-ts': 0.16.1_eslint@8.7.0+typescript@4.5.5 84 | eslint: 8.7.0 85 | eslint-plugin-vue: 8.4.0_eslint@8.7.0 86 | transitivePeerDependencies: 87 | - supports-color 88 | - typescript 89 | dev: true 90 | 91 | /@antfu/eslint-config/0.16.1_eslint@8.7.0+typescript@4.5.5: 92 | resolution: {integrity: sha512-GYJMtcEpHNNQA1A2acsRqSKGRkLEZ38Y9lvHBcX7HomJ+NsPFG4a3AJ5DW1CKpPTk5W3mOF0XBMiGA+pQOC37g==} 93 | peerDependencies: 94 | eslint: '>=7.4.0' 95 | dependencies: 96 | '@antfu/eslint-config-react': 0.16.1_eslint@8.7.0+typescript@4.5.5 97 | '@antfu/eslint-config-vue': 0.16.1_eslint@8.7.0+typescript@4.5.5 98 | '@typescript-eslint/eslint-plugin': 5.10.1_0f442f6b60390429061d5d9b6bcaaba6 99 | '@typescript-eslint/parser': 5.10.1_eslint@8.7.0+typescript@4.5.5 100 | eslint: 8.7.0 101 | eslint-config-standard: 17.0.0-0_3163ab7e7910c30880bb01ebc541ca1a 102 | eslint-plugin-eslint-comments: 3.2.0_eslint@8.7.0 103 | eslint-plugin-html: 6.2.0 104 | eslint-plugin-import: 2.25.4_eslint@8.7.0 105 | eslint-plugin-jsonc: 2.1.0_eslint@8.7.0 106 | eslint-plugin-n: 14.0.0_eslint@8.7.0 107 | eslint-plugin-promise: 6.0.0_eslint@8.7.0 108 | eslint-plugin-unicorn: 40.1.0_eslint@8.7.0 109 | eslint-plugin-vue: 8.4.0_eslint@8.7.0 110 | eslint-plugin-yml: 0.12.0_eslint@8.7.0 111 | jsonc-eslint-parser: 2.1.0 112 | yaml-eslint-parser: 0.5.0 113 | transitivePeerDependencies: 114 | - supports-color 115 | - typescript 116 | dev: true 117 | 118 | /@babel/code-frame/7.16.7: 119 | resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==} 120 | engines: {node: '>=6.9.0'} 121 | dependencies: 122 | '@babel/highlight': 7.16.10 123 | dev: true 124 | 125 | /@babel/helper-validator-identifier/7.16.7: 126 | resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==} 127 | engines: {node: '>=6.9.0'} 128 | dev: true 129 | 130 | /@babel/highlight/7.16.10: 131 | resolution: {integrity: sha512-5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw==} 132 | engines: {node: '>=6.9.0'} 133 | dependencies: 134 | '@babel/helper-validator-identifier': 7.16.7 135 | chalk: 2.4.2 136 | js-tokens: 4.0.0 137 | dev: true 138 | 139 | /@dabh/diagnostics/2.0.2: 140 | resolution: {integrity: sha512-+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q==} 141 | dependencies: 142 | colorspace: 1.1.4 143 | enabled: 2.0.0 144 | kuler: 2.0.0 145 | dev: false 146 | 147 | /@eslint/eslintrc/1.0.5: 148 | resolution: {integrity: sha512-BLxsnmK3KyPunz5wmCCpqy0YelEoxxGmH73Is+Z74oOTMtExcjkr3dDR6quwrjh1YspA8DH9gnX1o069KiS9AQ==} 149 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 150 | dependencies: 151 | ajv: 6.12.6 152 | debug: 4.3.3 153 | espree: 9.3.0 154 | globals: 13.12.0 155 | ignore: 4.0.6 156 | import-fresh: 3.3.0 157 | js-yaml: 4.1.0 158 | minimatch: 3.0.4 159 | strip-json-comments: 3.1.1 160 | transitivePeerDependencies: 161 | - supports-color 162 | dev: true 163 | 164 | /@humanwhocodes/config-array/0.9.2: 165 | resolution: {integrity: sha512-UXOuFCGcwciWckOpmfKDq/GyhlTf9pN/BzG//x8p8zTOFEcGuA68ANXheFS0AGvy3qgZqLBUkMs7hqzqCKOVwA==} 166 | engines: {node: '>=10.10.0'} 167 | dependencies: 168 | '@humanwhocodes/object-schema': 1.2.1 169 | debug: 4.3.3 170 | minimatch: 3.0.4 171 | transitivePeerDependencies: 172 | - supports-color 173 | dev: true 174 | 175 | /@humanwhocodes/object-schema/1.2.1: 176 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} 177 | dev: true 178 | 179 | /@koa/cors/3.1.0: 180 | resolution: {integrity: sha512-7ulRC1da/rBa6kj6P4g2aJfnET3z8Uf3SWu60cjbtxTA5g8lxRdX/Bd2P92EagGwwAhANeNw8T8if99rJliR6Q==} 181 | engines: {node: '>= 8.0.0'} 182 | dependencies: 183 | vary: 1.1.2 184 | dev: false 185 | 186 | /@nodelib/fs.scandir/2.1.5: 187 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 188 | engines: {node: '>= 8'} 189 | dependencies: 190 | '@nodelib/fs.stat': 2.0.5 191 | run-parallel: 1.2.0 192 | dev: true 193 | 194 | /@nodelib/fs.stat/2.0.5: 195 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 196 | engines: {node: '>= 8'} 197 | dev: true 198 | 199 | /@nodelib/fs.walk/1.2.8: 200 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 201 | engines: {node: '>= 8'} 202 | dependencies: 203 | '@nodelib/fs.scandir': 2.1.5 204 | fastq: 1.13.0 205 | dev: true 206 | 207 | /@octokit/openapi-types/11.2.0: 208 | resolution: {integrity: sha512-PBsVO+15KSlGmiI8QAzaqvsNlZlrDlyAJYcrXBCvVUxCp7VnXjkwPoFHgjEJXx3WF9BAwkA6nfCUA7i9sODzKA==} 209 | dev: false 210 | 211 | /@octokit/request-error/2.1.0: 212 | resolution: {integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==} 213 | dependencies: 214 | '@octokit/types': 6.34.0 215 | deprecation: 2.3.1 216 | once: 1.4.0 217 | dev: false 218 | 219 | /@octokit/types/6.34.0: 220 | resolution: {integrity: sha512-s1zLBjWhdEI2zwaoSgyOFoKSl109CUcVBCc7biPJ3aAf6LGLU6szDvi31JPU7bxfla2lqfhjbbg/5DdFNxOwHw==} 221 | dependencies: 222 | '@octokit/openapi-types': 11.2.0 223 | dev: false 224 | 225 | /@octokit/webhooks-methods/2.0.0: 226 | resolution: {integrity: sha512-35cfQ4YWlnZnmZKmIxlGPUPLtbkF8lr/A/1Sk1eC0ddLMwQN06dOuLc+dI3YLQS+T+MoNt3DIQ0NynwgKPilig==} 227 | dev: false 228 | 229 | /@octokit/webhooks-types/5.2.0: 230 | resolution: {integrity: sha512-OZhKy1w8/GF4GWtdiJc+o8sloWAHRueGB78FWFLZnueK7EHV9MzDVr4weJZMflJwMK4uuYLzcnJVnAoy3yB35g==} 231 | dev: false 232 | 233 | /@octokit/webhooks/9.22.0: 234 | resolution: {integrity: sha512-wUd7nGfDRHG6xkz311djmq6lIB2tQ+r94SNkyv9o0bQhOsrkwH8fQCM7uVsbpkGUU2lqCYsVoa8z/UC9HJgRaw==} 235 | dependencies: 236 | '@octokit/request-error': 2.1.0 237 | '@octokit/webhooks-methods': 2.0.0 238 | '@octokit/webhooks-types': 5.2.0 239 | aggregate-error: 3.1.0 240 | dev: false 241 | 242 | /@selderee/plugin-htmlparser2/0.6.0: 243 | resolution: {integrity: sha512-J3jpy002TyBjd4N/p6s+s90eX42H2eRhK3SbsZuvTDv977/E8p2U3zikdiehyJja66do7FlxLomZLPlvl2/xaA==} 244 | dependencies: 245 | domhandler: 4.3.0 246 | selderee: 0.6.0 247 | dev: false 248 | 249 | /@sindresorhus/is/0.14.0: 250 | resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} 251 | engines: {node: '>=6'} 252 | dev: true 253 | 254 | /@sindresorhus/is/0.7.0: 255 | resolution: {integrity: sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==} 256 | engines: {node: '>=4'} 257 | dev: false 258 | 259 | /@szmarczak/http-timer/1.1.2: 260 | resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} 261 | engines: {node: '>=6'} 262 | dependencies: 263 | defer-to-connect: 1.1.3 264 | dev: true 265 | 266 | /@types/json-schema/7.0.9: 267 | resolution: {integrity: sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ==} 268 | dev: true 269 | 270 | /@types/json5/0.0.29: 271 | resolution: {integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4=} 272 | dev: true 273 | 274 | /@types/node/17.0.5: 275 | resolution: {integrity: sha512-w3mrvNXLeDYV1GKTZorGJQivK6XLCoGwpnyJFbJVK/aTBQUxOCaa/GlFAAN3OTDFcb7h5tiFG+YXCO2By+riZw==} 276 | dev: false 277 | 278 | /@types/normalize-package-data/2.4.1: 279 | resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} 280 | dev: true 281 | 282 | /@types/webidl-conversions/6.1.1: 283 | resolution: {integrity: sha512-XAahCdThVuCFDQLT7R7Pk/vqeObFNL3YqRyFZg+AqAP/W1/w3xHaIxuW7WszQqTbIBOPRcItYJIou3i/mppu3Q==} 284 | dev: false 285 | 286 | /@types/whatwg-url/8.2.1: 287 | resolution: {integrity: sha512-2YubE1sjj5ifxievI5Ge1sckb9k/Er66HyR2c+3+I6VDUUg1TLPdYYTEbQ+DjRkS4nTxMJhgWfSfMRD2sl2EYQ==} 288 | dependencies: 289 | '@types/node': 17.0.5 290 | '@types/webidl-conversions': 6.1.1 291 | dev: false 292 | 293 | /@typescript-eslint/eslint-plugin/5.10.1_0f442f6b60390429061d5d9b6bcaaba6: 294 | resolution: {integrity: sha512-xN3CYqFlyE/qOcy978/L0xLR2HlcAGIyIK5sMOasxaaAPfQRj/MmMV6OC3I7NZO84oEUdWCOju34Z9W8E0pFDQ==} 295 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 296 | peerDependencies: 297 | '@typescript-eslint/parser': ^5.0.0 298 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 299 | typescript: '*' 300 | peerDependenciesMeta: 301 | typescript: 302 | optional: true 303 | dependencies: 304 | '@typescript-eslint/parser': 5.10.1_eslint@8.7.0+typescript@4.5.5 305 | '@typescript-eslint/scope-manager': 5.10.1 306 | '@typescript-eslint/type-utils': 5.10.1_eslint@8.7.0+typescript@4.5.5 307 | '@typescript-eslint/utils': 5.10.1_eslint@8.7.0+typescript@4.5.5 308 | debug: 4.3.3 309 | eslint: 8.7.0 310 | functional-red-black-tree: 1.0.1 311 | ignore: 5.2.0 312 | regexpp: 3.2.0 313 | semver: 7.3.5 314 | tsutils: 3.21.0_typescript@4.5.5 315 | typescript: 4.5.5 316 | transitivePeerDependencies: 317 | - supports-color 318 | dev: true 319 | 320 | /@typescript-eslint/parser/5.10.1_eslint@8.7.0+typescript@4.5.5: 321 | resolution: {integrity: sha512-GReo3tjNBwR5RnRO0K2wDIDN31cM3MmDtgyQ85oAxAmC5K3j/g85IjP+cDfcqDsDDBf1HNKQAD0WqOYL8jXqUA==} 322 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 323 | peerDependencies: 324 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 325 | typescript: '*' 326 | peerDependenciesMeta: 327 | typescript: 328 | optional: true 329 | dependencies: 330 | '@typescript-eslint/scope-manager': 5.10.1 331 | '@typescript-eslint/types': 5.10.1 332 | '@typescript-eslint/typescript-estree': 5.10.1_typescript@4.5.5 333 | debug: 4.3.3 334 | eslint: 8.7.0 335 | typescript: 4.5.5 336 | transitivePeerDependencies: 337 | - supports-color 338 | dev: true 339 | 340 | /@typescript-eslint/scope-manager/5.10.1: 341 | resolution: {integrity: sha512-Lyvi559Gvpn94k7+ElXNMEnXu/iundV5uFmCUNnftbFrUbAJ1WBoaGgkbOBm07jVZa682oaBU37ao/NGGX4ZDg==} 342 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 343 | dependencies: 344 | '@typescript-eslint/types': 5.10.1 345 | '@typescript-eslint/visitor-keys': 5.10.1 346 | dev: true 347 | 348 | /@typescript-eslint/type-utils/5.10.1_eslint@8.7.0+typescript@4.5.5: 349 | resolution: {integrity: sha512-AfVJkV8uck/UIoDqhu+ptEdBoQATON9GXnhOpPLzkQRJcSChkvD//qsz9JVffl2goxX+ybs5klvacE9vmrQyCw==} 350 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 351 | peerDependencies: 352 | eslint: '*' 353 | typescript: '*' 354 | peerDependenciesMeta: 355 | typescript: 356 | optional: true 357 | dependencies: 358 | '@typescript-eslint/utils': 5.10.1_eslint@8.7.0+typescript@4.5.5 359 | debug: 4.3.3 360 | eslint: 8.7.0 361 | tsutils: 3.21.0_typescript@4.5.5 362 | typescript: 4.5.5 363 | transitivePeerDependencies: 364 | - supports-color 365 | dev: true 366 | 367 | /@typescript-eslint/types/5.10.1: 368 | resolution: {integrity: sha512-ZvxQ2QMy49bIIBpTqFiOenucqUyjTQ0WNLhBM6X1fh1NNlYAC6Kxsx8bRTY3jdYsYg44a0Z/uEgQkohbR0H87Q==} 369 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 370 | dev: true 371 | 372 | /@typescript-eslint/typescript-estree/5.10.1_typescript@4.5.5: 373 | resolution: {integrity: sha512-PwIGnH7jIueXv4opcwEbVGDATjGPO1dx9RkUl5LlHDSe+FXxPwFL5W/qYd5/NHr7f6lo/vvTrAzd0KlQtRusJQ==} 374 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 375 | peerDependencies: 376 | typescript: '*' 377 | peerDependenciesMeta: 378 | typescript: 379 | optional: true 380 | dependencies: 381 | '@typescript-eslint/types': 5.10.1 382 | '@typescript-eslint/visitor-keys': 5.10.1 383 | debug: 4.3.3 384 | globby: 11.1.0 385 | is-glob: 4.0.3 386 | semver: 7.3.5 387 | tsutils: 3.21.0_typescript@4.5.5 388 | typescript: 4.5.5 389 | transitivePeerDependencies: 390 | - supports-color 391 | dev: true 392 | 393 | /@typescript-eslint/utils/5.10.1_eslint@8.7.0+typescript@4.5.5: 394 | resolution: {integrity: sha512-RRmlITiUbLuTRtn/gcPRi4202niF+q7ylFLCKu4c+O/PcpRvZ/nAUwQ2G00bZgpWkhrNLNnvhZLbDn8Ml0qsQw==} 395 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 396 | peerDependencies: 397 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 398 | dependencies: 399 | '@types/json-schema': 7.0.9 400 | '@typescript-eslint/scope-manager': 5.10.1 401 | '@typescript-eslint/types': 5.10.1 402 | '@typescript-eslint/typescript-estree': 5.10.1_typescript@4.5.5 403 | eslint: 8.7.0 404 | eslint-scope: 5.1.1 405 | eslint-utils: 3.0.0_eslint@8.7.0 406 | transitivePeerDependencies: 407 | - supports-color 408 | - typescript 409 | dev: true 410 | 411 | /@typescript-eslint/visitor-keys/5.10.1: 412 | resolution: {integrity: sha512-NjQ0Xinhy9IL979tpoTRuLKxMc0zJC7QVSdeerXs2/QvOy2yRkzX5dRb10X5woNUdJgU8G3nYRDlI33sq1K4YQ==} 413 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 414 | dependencies: 415 | '@typescript-eslint/types': 5.10.1 416 | eslint-visitor-keys: 3.2.0 417 | dev: true 418 | 419 | /@yunyoujun/logger/0.2.1: 420 | resolution: {integrity: sha512-jR9MlZ8v1WByo9Je2kt0s7Z88HXQwhVtrj+X1ivBXJMncCWi4+ysOi307vLusaADPgz5GRpNNYi4FOnf8ihF3g==} 421 | dependencies: 422 | chalk: 4.1.2 423 | dev: false 424 | 425 | /abbrev/1.1.1: 426 | resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} 427 | dev: true 428 | 429 | /accepts/1.3.7: 430 | resolution: {integrity: sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==} 431 | engines: {node: '>= 0.6'} 432 | dependencies: 433 | mime-types: 2.1.34 434 | negotiator: 0.6.2 435 | dev: false 436 | 437 | /acorn-jsx/5.3.2_acorn@8.7.0: 438 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 439 | peerDependencies: 440 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 441 | dependencies: 442 | acorn: 8.7.0 443 | dev: true 444 | 445 | /acorn/8.7.0: 446 | resolution: {integrity: sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ==} 447 | engines: {node: '>=0.4.0'} 448 | hasBin: true 449 | dev: true 450 | 451 | /aggregate-error/3.1.0: 452 | resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} 453 | engines: {node: '>=8'} 454 | dependencies: 455 | clean-stack: 2.2.0 456 | indent-string: 4.0.0 457 | dev: false 458 | 459 | /ajv/6.12.6: 460 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 461 | dependencies: 462 | fast-deep-equal: 3.1.3 463 | fast-json-stable-stringify: 2.1.0 464 | json-schema-traverse: 0.4.1 465 | uri-js: 4.4.1 466 | dev: true 467 | 468 | /ansi-align/3.0.1: 469 | resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} 470 | dependencies: 471 | string-width: 4.2.3 472 | dev: true 473 | 474 | /ansi-escapes/4.3.2: 475 | resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} 476 | engines: {node: '>=8'} 477 | dependencies: 478 | type-fest: 0.21.3 479 | dev: false 480 | 481 | /ansi-regex/5.0.1: 482 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 483 | engines: {node: '>=8'} 484 | 485 | /ansi-styles/3.2.1: 486 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 487 | engines: {node: '>=4'} 488 | dependencies: 489 | color-convert: 1.9.3 490 | dev: true 491 | 492 | /ansi-styles/4.3.0: 493 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 494 | engines: {node: '>=8'} 495 | dependencies: 496 | color-convert: 2.0.1 497 | 498 | /any-promise/1.3.0: 499 | resolution: {integrity: sha1-q8av7tzqUugJzcA3au0845Y10X8=} 500 | dev: true 501 | 502 | /anymatch/3.1.2: 503 | resolution: {integrity: sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==} 504 | engines: {node: '>= 8'} 505 | dependencies: 506 | normalize-path: 3.0.0 507 | picomatch: 2.3.1 508 | dev: true 509 | 510 | /archive-type/4.0.0: 511 | resolution: {integrity: sha1-+S5yIzBW38aWlHJ0nCZ72wRrHXA=} 512 | engines: {node: '>=4'} 513 | dependencies: 514 | file-type: 4.4.0 515 | dev: false 516 | 517 | /argparse/2.0.1: 518 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 519 | 520 | /array-includes/3.1.4: 521 | resolution: {integrity: sha512-ZTNSQkmWumEbiHO2GF4GmWxYVTiQyJy2XOTa15sdQSrvKn7l+180egQMqlrMOUMCyLMD7pmyQe4mMDUT6Behrw==} 522 | engines: {node: '>= 0.4'} 523 | dependencies: 524 | call-bind: 1.0.2 525 | define-properties: 1.1.3 526 | es-abstract: 1.19.1 527 | get-intrinsic: 1.1.1 528 | is-string: 1.0.7 529 | dev: true 530 | 531 | /array-union/2.1.0: 532 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 533 | engines: {node: '>=8'} 534 | dev: true 535 | 536 | /array.prototype.flat/1.2.5: 537 | resolution: {integrity: sha512-KaYU+S+ndVqyUnignHftkwc58o3uVU1jzczILJ1tN2YaIZpFIKBiP/x/j97E5MVPsaCloPbqWLB/8qCTVvT2qg==} 538 | engines: {node: '>= 0.4'} 539 | dependencies: 540 | call-bind: 1.0.2 541 | define-properties: 1.1.3 542 | es-abstract: 1.19.1 543 | dev: true 544 | 545 | /array.prototype.flatmap/1.2.5: 546 | resolution: {integrity: sha512-08u6rVyi1Lj7oqWbS9nUxliETrtIROT4XGTA4D/LWGten6E3ocm7cy9SIrmNHOL5XVbVuckUp3X6Xyg8/zpvHA==} 547 | engines: {node: '>= 0.4'} 548 | dependencies: 549 | call-bind: 1.0.2 550 | define-properties: 1.1.3 551 | es-abstract: 1.19.1 552 | dev: true 553 | 554 | /async/3.2.3: 555 | resolution: {integrity: sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==} 556 | dev: false 557 | 558 | /asynckit/0.4.0: 559 | resolution: {integrity: sha1-x57Zf380y48robyXkLzDZkdLS3k=} 560 | dev: false 561 | 562 | /axios/0.25.0: 563 | resolution: {integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==} 564 | dependencies: 565 | follow-redirects: 1.14.7 566 | transitivePeerDependencies: 567 | - debug 568 | dev: false 569 | 570 | /balanced-match/1.0.2: 571 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 572 | 573 | /base64-js/1.5.1: 574 | resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 575 | dev: false 576 | 577 | /binary-extensions/2.2.0: 578 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} 579 | engines: {node: '>=8'} 580 | dev: true 581 | 582 | /bl/1.2.3: 583 | resolution: {integrity: sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==} 584 | dependencies: 585 | readable-stream: 2.3.7 586 | safe-buffer: 5.2.1 587 | dev: false 588 | 589 | /bl/4.1.0: 590 | resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} 591 | dependencies: 592 | buffer: 5.7.1 593 | inherits: 2.0.4 594 | readable-stream: 3.6.0 595 | dev: false 596 | 597 | /boxen/5.1.2: 598 | resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==} 599 | engines: {node: '>=10'} 600 | dependencies: 601 | ansi-align: 3.0.1 602 | camelcase: 6.3.0 603 | chalk: 4.1.2 604 | cli-boxes: 2.2.1 605 | string-width: 4.2.3 606 | type-fest: 0.20.2 607 | widest-line: 3.1.0 608 | wrap-ansi: 7.0.0 609 | dev: true 610 | 611 | /brace-expansion/1.1.11: 612 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 613 | dependencies: 614 | balanced-match: 1.0.2 615 | concat-map: 0.0.1 616 | 617 | /braces/3.0.2: 618 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 619 | engines: {node: '>=8'} 620 | dependencies: 621 | fill-range: 7.0.1 622 | dev: true 623 | 624 | /bson/4.6.1: 625 | resolution: {integrity: sha512-I1LQ7Hz5zgwR4QquilLNZwbhPw0Apx7i7X9kGMBTsqPdml/03Q9NBtD9nt/19ahjlphktQImrnderxqpzeVDjw==} 626 | engines: {node: '>=6.9.0'} 627 | dependencies: 628 | buffer: 5.7.1 629 | dev: false 630 | 631 | /buffer-alloc-unsafe/1.1.0: 632 | resolution: {integrity: sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==} 633 | dev: false 634 | 635 | /buffer-alloc/1.2.0: 636 | resolution: {integrity: sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==} 637 | dependencies: 638 | buffer-alloc-unsafe: 1.1.0 639 | buffer-fill: 1.0.0 640 | dev: false 641 | 642 | /buffer-crc32/0.2.13: 643 | resolution: {integrity: sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=} 644 | dev: false 645 | 646 | /buffer-fill/1.0.0: 647 | resolution: {integrity: sha1-+PeLdniYiO858gXNY39o5wISKyw=} 648 | dev: false 649 | 650 | /buffer/5.7.1: 651 | resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} 652 | dependencies: 653 | base64-js: 1.5.1 654 | ieee754: 1.2.1 655 | dev: false 656 | 657 | /builtin-modules/3.2.0: 658 | resolution: {integrity: sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==} 659 | engines: {node: '>=6'} 660 | dev: true 661 | 662 | /builtins/4.0.0: 663 | resolution: {integrity: sha512-qC0E2Dxgou1IHhvJSLwGDSTvokbRovU5zZFuDY6oY8Y2lF3nGt5Ad8YZK7GMtqzY84Wu7pXTPeHQeHcXSXsRhw==} 664 | dependencies: 665 | semver: 7.3.5 666 | dev: true 667 | 668 | /bundle-require/2.3.0_esbuild@0.14.14: 669 | resolution: {integrity: sha512-kH8vyERJv0Td4Odu2KQyooYyeXDx2FbhGwSfkEGdyHmkTCahvwVI8w/pE2stbsp6G/W5/3kIC7ErdBg/30OAkw==} 670 | peerDependencies: 671 | esbuild: '>=0.13' 672 | dependencies: 673 | esbuild: 0.14.14 674 | dev: true 675 | 676 | /bytes/3.1.1: 677 | resolution: {integrity: sha512-dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg==} 678 | engines: {node: '>= 0.8'} 679 | dev: false 680 | 681 | /cac/6.7.12: 682 | resolution: {integrity: sha512-rM7E2ygtMkJqD9c7WnFU6fruFcN3xe4FM5yUmgxhZzIKJk4uHl9U/fhwdajGFQbQuv43FAUo1Fe8gX/oIKDeSA==} 683 | engines: {node: '>=8'} 684 | dev: true 685 | 686 | /cache-content-type/1.0.1: 687 | resolution: {integrity: sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==} 688 | engines: {node: '>= 6.0.0'} 689 | dependencies: 690 | mime-types: 2.1.34 691 | ylru: 1.2.1 692 | dev: false 693 | 694 | /cacheable-request/2.1.4: 695 | resolution: {integrity: sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0=} 696 | dependencies: 697 | clone-response: 1.0.2 698 | get-stream: 3.0.0 699 | http-cache-semantics: 3.8.1 700 | keyv: 3.0.0 701 | lowercase-keys: 1.0.0 702 | normalize-url: 2.0.1 703 | responselike: 1.0.2 704 | dev: false 705 | 706 | /cacheable-request/6.1.0: 707 | resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==} 708 | engines: {node: '>=8'} 709 | dependencies: 710 | clone-response: 1.0.2 711 | get-stream: 5.2.0 712 | http-cache-semantics: 4.1.0 713 | keyv: 3.1.0 714 | lowercase-keys: 2.0.0 715 | normalize-url: 4.5.1 716 | responselike: 1.0.2 717 | dev: true 718 | 719 | /call-bind/1.0.2: 720 | resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} 721 | dependencies: 722 | function-bind: 1.1.1 723 | get-intrinsic: 1.1.1 724 | 725 | /callsites/3.1.0: 726 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 727 | engines: {node: '>=6'} 728 | dev: true 729 | 730 | /camelcase/5.3.1: 731 | resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} 732 | engines: {node: '>=6'} 733 | dev: false 734 | 735 | /camelcase/6.3.0: 736 | resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} 737 | engines: {node: '>=10'} 738 | dev: true 739 | 740 | /chalk/2.4.2: 741 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 742 | engines: {node: '>=4'} 743 | dependencies: 744 | ansi-styles: 3.2.1 745 | escape-string-regexp: 1.0.5 746 | supports-color: 5.5.0 747 | dev: true 748 | 749 | /chalk/4.1.2: 750 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 751 | engines: {node: '>=10'} 752 | dependencies: 753 | ansi-styles: 4.3.0 754 | supports-color: 7.2.0 755 | 756 | /chardet/0.7.0: 757 | resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} 758 | dev: false 759 | 760 | /chokidar/3.5.3: 761 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} 762 | engines: {node: '>= 8.10.0'} 763 | dependencies: 764 | anymatch: 3.1.2 765 | braces: 3.0.2 766 | glob-parent: 5.1.2 767 | is-binary-path: 2.1.0 768 | is-glob: 4.0.3 769 | normalize-path: 3.0.0 770 | readdirp: 3.6.0 771 | optionalDependencies: 772 | fsevents: 2.3.2 773 | dev: true 774 | 775 | /ci-info/2.0.0: 776 | resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} 777 | dev: true 778 | 779 | /ci-info/3.3.0: 780 | resolution: {integrity: sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==} 781 | dev: true 782 | 783 | /clean-regexp/1.0.0: 784 | resolution: {integrity: sha1-jffHquUf02h06PjQW5GAvBGj/tc=} 785 | engines: {node: '>=4'} 786 | dependencies: 787 | escape-string-regexp: 1.0.5 788 | dev: true 789 | 790 | /clean-stack/2.2.0: 791 | resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} 792 | engines: {node: '>=6'} 793 | dev: false 794 | 795 | /cli-boxes/2.2.1: 796 | resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==} 797 | engines: {node: '>=6'} 798 | dev: true 799 | 800 | /cli-cursor/3.1.0: 801 | resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} 802 | engines: {node: '>=8'} 803 | dependencies: 804 | restore-cursor: 3.1.0 805 | dev: false 806 | 807 | /cli-spinners/2.6.1: 808 | resolution: {integrity: sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==} 809 | engines: {node: '>=6'} 810 | dev: false 811 | 812 | /cli-width/3.0.0: 813 | resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} 814 | engines: {node: '>= 10'} 815 | dev: false 816 | 817 | /cliui/6.0.0: 818 | resolution: {integrity: sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==} 819 | dependencies: 820 | string-width: 4.2.3 821 | strip-ansi: 6.0.1 822 | wrap-ansi: 6.2.0 823 | dev: false 824 | 825 | /clone-response/1.0.2: 826 | resolution: {integrity: sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=} 827 | dependencies: 828 | mimic-response: 1.0.1 829 | 830 | /clone/1.0.4: 831 | resolution: {integrity: sha1-2jCcwmPfFZlMaIypAheco8fNfH4=} 832 | engines: {node: '>=0.8'} 833 | dev: false 834 | 835 | /co-body/6.1.0: 836 | resolution: {integrity: sha512-m7pOT6CdLN7FuXUcpuz/8lfQ/L77x8SchHCF4G0RBTJO20Wzmhn5Sp4/5WsKy8OSpifBSUrmg83qEqaDHdyFuQ==} 837 | dependencies: 838 | inflation: 2.0.0 839 | qs: 6.10.3 840 | raw-body: 2.4.2 841 | type-is: 1.6.18 842 | dev: false 843 | 844 | /co/4.6.0: 845 | resolution: {integrity: sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=} 846 | engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} 847 | dev: false 848 | 849 | /color-convert/1.9.3: 850 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 851 | dependencies: 852 | color-name: 1.1.3 853 | 854 | /color-convert/2.0.1: 855 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 856 | engines: {node: '>=7.0.0'} 857 | dependencies: 858 | color-name: 1.1.4 859 | 860 | /color-name/1.1.3: 861 | resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=} 862 | 863 | /color-name/1.1.4: 864 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 865 | 866 | /color-string/1.9.0: 867 | resolution: {integrity: sha512-9Mrz2AQLefkH1UvASKj6v6hj/7eWgjnT/cVsR8CumieLoT+g900exWeNogqtweI8dxloXN9BDQTYro1oWu/5CQ==} 868 | dependencies: 869 | color-name: 1.1.4 870 | simple-swizzle: 0.2.2 871 | dev: false 872 | 873 | /color/3.2.1: 874 | resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==} 875 | dependencies: 876 | color-convert: 1.9.3 877 | color-string: 1.9.0 878 | dev: false 879 | 880 | /colors/1.4.0: 881 | resolution: {integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==} 882 | engines: {node: '>=0.1.90'} 883 | dev: false 884 | 885 | /colorspace/1.1.4: 886 | resolution: {integrity: sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==} 887 | dependencies: 888 | color: 3.2.1 889 | text-hex: 1.0.0 890 | dev: false 891 | 892 | /combined-stream/1.0.8: 893 | resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} 894 | engines: {node: '>= 0.8'} 895 | dependencies: 896 | delayed-stream: 1.0.0 897 | dev: false 898 | 899 | /commander/2.20.3: 900 | resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} 901 | dev: false 902 | 903 | /commander/4.1.1: 904 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 905 | engines: {node: '>= 6'} 906 | dev: true 907 | 908 | /commander/8.3.0: 909 | resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} 910 | engines: {node: '>= 12'} 911 | dev: false 912 | 913 | /concat-map/0.0.1: 914 | resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} 915 | 916 | /configstore/5.0.1: 917 | resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==} 918 | engines: {node: '>=8'} 919 | dependencies: 920 | dot-prop: 5.3.0 921 | graceful-fs: 4.2.9 922 | make-dir: 3.1.0 923 | unique-string: 2.0.0 924 | write-file-atomic: 3.0.3 925 | xdg-basedir: 4.0.0 926 | dev: true 927 | 928 | /content-disposition/0.5.4: 929 | resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} 930 | engines: {node: '>= 0.6'} 931 | dependencies: 932 | safe-buffer: 5.2.1 933 | dev: false 934 | 935 | /content-type/1.0.4: 936 | resolution: {integrity: sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==} 937 | engines: {node: '>= 0.6'} 938 | dev: false 939 | 940 | /cookies/0.8.0: 941 | resolution: {integrity: sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==} 942 | engines: {node: '>= 0.8'} 943 | dependencies: 944 | depd: 2.0.0 945 | keygrip: 1.1.0 946 | dev: false 947 | 948 | /copy-to/2.0.1: 949 | resolution: {integrity: sha1-JoD7uAaKSNCGVrYJgJK9r8kG9KU=} 950 | dev: false 951 | 952 | /core-util-is/1.0.3: 953 | resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} 954 | dev: false 955 | 956 | /cron-parser/3.5.0: 957 | resolution: {integrity: sha512-wyVZtbRs6qDfFd8ap457w3XVntdvqcwBGxBoTvJQH9KGVKL/fB+h2k3C8AqiVxvUQKN1Ps/Ns46CNViOpVDhfQ==} 958 | engines: {node: '>=0.8'} 959 | dependencies: 960 | is-nan: 1.3.2 961 | luxon: 1.28.0 962 | dev: false 963 | 964 | /cross-spawn/7.0.3: 965 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 966 | engines: {node: '>= 8'} 967 | dependencies: 968 | path-key: 3.1.1 969 | shebang-command: 2.0.0 970 | which: 2.0.2 971 | dev: true 972 | 973 | /crypto-random-string/2.0.0: 974 | resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==} 975 | engines: {node: '>=8'} 976 | dev: true 977 | 978 | /dayjs/1.10.7: 979 | resolution: {integrity: sha512-P6twpd70BcPK34K26uJ1KT3wlhpuOAPoMwJzpsIWUxHZ7wpmbdZL/hQqBDfz7hGurYSa5PhzdhDHtt319hL3ig==} 980 | dev: false 981 | 982 | /debug/2.6.9: 983 | resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} 984 | dependencies: 985 | ms: 2.0.0 986 | dev: true 987 | 988 | /debug/3.2.7: 989 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 990 | dependencies: 991 | ms: 2.1.3 992 | dev: true 993 | 994 | /debug/4.3.3: 995 | resolution: {integrity: sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==} 996 | engines: {node: '>=6.0'} 997 | peerDependencies: 998 | supports-color: '*' 999 | peerDependenciesMeta: 1000 | supports-color: 1001 | optional: true 1002 | dependencies: 1003 | ms: 2.1.2 1004 | 1005 | /decamelize/1.2.0: 1006 | resolution: {integrity: sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=} 1007 | engines: {node: '>=0.10.0'} 1008 | dev: false 1009 | 1010 | /decode-uri-component/0.2.0: 1011 | resolution: {integrity: sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=} 1012 | engines: {node: '>=0.10'} 1013 | dev: false 1014 | 1015 | /decompress-response/3.3.0: 1016 | resolution: {integrity: sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=} 1017 | engines: {node: '>=4'} 1018 | dependencies: 1019 | mimic-response: 1.0.1 1020 | 1021 | /decompress-tar/4.1.1: 1022 | resolution: {integrity: sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==} 1023 | engines: {node: '>=4'} 1024 | dependencies: 1025 | file-type: 5.2.0 1026 | is-stream: 1.1.0 1027 | tar-stream: 1.6.2 1028 | dev: false 1029 | 1030 | /decompress-tarbz2/4.1.1: 1031 | resolution: {integrity: sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==} 1032 | engines: {node: '>=4'} 1033 | dependencies: 1034 | decompress-tar: 4.1.1 1035 | file-type: 6.2.0 1036 | is-stream: 1.1.0 1037 | seek-bzip: 1.0.6 1038 | unbzip2-stream: 1.4.3 1039 | dev: false 1040 | 1041 | /decompress-targz/4.1.1: 1042 | resolution: {integrity: sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==} 1043 | engines: {node: '>=4'} 1044 | dependencies: 1045 | decompress-tar: 4.1.1 1046 | file-type: 5.2.0 1047 | is-stream: 1.1.0 1048 | dev: false 1049 | 1050 | /decompress-unzip/4.0.1: 1051 | resolution: {integrity: sha1-3qrM39FK6vhVePczroIQ+bSEj2k=} 1052 | engines: {node: '>=4'} 1053 | dependencies: 1054 | file-type: 3.9.0 1055 | get-stream: 2.3.1 1056 | pify: 2.3.0 1057 | yauzl: 2.10.0 1058 | dev: false 1059 | 1060 | /decompress/4.2.1: 1061 | resolution: {integrity: sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==} 1062 | engines: {node: '>=4'} 1063 | dependencies: 1064 | decompress-tar: 4.1.1 1065 | decompress-tarbz2: 4.1.1 1066 | decompress-targz: 4.1.1 1067 | decompress-unzip: 4.0.1 1068 | graceful-fs: 4.2.9 1069 | make-dir: 1.3.0 1070 | pify: 2.3.0 1071 | strip-dirs: 2.1.0 1072 | dev: false 1073 | 1074 | /deep-equal/1.0.1: 1075 | resolution: {integrity: sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=} 1076 | dev: false 1077 | 1078 | /deep-extend/0.6.0: 1079 | resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} 1080 | engines: {node: '>=4.0.0'} 1081 | dev: true 1082 | 1083 | /deep-is/0.1.4: 1084 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 1085 | dev: true 1086 | 1087 | /deepmerge/4.2.2: 1088 | resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} 1089 | engines: {node: '>=0.10.0'} 1090 | dev: false 1091 | 1092 | /defaults/1.0.3: 1093 | resolution: {integrity: sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=} 1094 | dependencies: 1095 | clone: 1.0.4 1096 | dev: false 1097 | 1098 | /defer-to-connect/1.1.3: 1099 | resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} 1100 | dev: true 1101 | 1102 | /define-properties/1.1.3: 1103 | resolution: {integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==} 1104 | engines: {node: '>= 0.4'} 1105 | dependencies: 1106 | object-keys: 1.1.1 1107 | 1108 | /delayed-stream/1.0.0: 1109 | resolution: {integrity: sha1-3zrhmayt+31ECqrgsp4icrJOxhk=} 1110 | engines: {node: '>=0.4.0'} 1111 | dev: false 1112 | 1113 | /delegates/1.0.0: 1114 | resolution: {integrity: sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=} 1115 | dev: false 1116 | 1117 | /denque/2.0.1: 1118 | resolution: {integrity: sha512-tfiWc6BQLXNLpNiR5iGd0Ocu3P3VpxfzFiqubLgMfhfOw9WyvgJBd46CClNn9k3qfbjvT//0cf7AlYRX/OslMQ==} 1119 | engines: {node: '>=0.10'} 1120 | dev: false 1121 | 1122 | /depd/1.1.2: 1123 | resolution: {integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=} 1124 | engines: {node: '>= 0.6'} 1125 | dev: false 1126 | 1127 | /depd/2.0.0: 1128 | resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} 1129 | engines: {node: '>= 0.8'} 1130 | dev: false 1131 | 1132 | /deprecation/2.3.1: 1133 | resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} 1134 | dev: false 1135 | 1136 | /destroy/1.1.0: 1137 | resolution: {integrity: sha512-R5QZrOXxSs0JDUIU/VANvRJlQVMts9C0L76HToQdPdlftfZCE7W6dyH0G4GZ5UW9fRqUOhAoCE2aGekuu+3HjQ==} 1138 | engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} 1139 | dev: false 1140 | 1141 | /dijkstrajs/1.0.2: 1142 | resolution: {integrity: sha512-QV6PMaHTCNmKSeP6QoXhVTw9snc9VD8MulTT0Bd99Pacp4SS1cjcrYPgBPmibqKVtMJJfqC6XvOXgPMEEPH/fg==} 1143 | dev: false 1144 | 1145 | /dir-glob/3.0.1: 1146 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 1147 | engines: {node: '>=8'} 1148 | dependencies: 1149 | path-type: 4.0.0 1150 | dev: true 1151 | 1152 | /discontinuous-range/1.0.0: 1153 | resolution: {integrity: sha1-44Mx8IRLukm5qctxx3FYWqsbxlo=} 1154 | dev: false 1155 | 1156 | /doctrine/2.1.0: 1157 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 1158 | engines: {node: '>=0.10.0'} 1159 | dependencies: 1160 | esutils: 2.0.3 1161 | dev: true 1162 | 1163 | /doctrine/3.0.0: 1164 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 1165 | engines: {node: '>=6.0.0'} 1166 | dependencies: 1167 | esutils: 2.0.3 1168 | dev: true 1169 | 1170 | /dom-serializer/1.3.2: 1171 | resolution: {integrity: sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==} 1172 | dependencies: 1173 | domelementtype: 2.2.0 1174 | domhandler: 4.3.0 1175 | entities: 2.2.0 1176 | 1177 | /domelementtype/2.2.0: 1178 | resolution: {integrity: sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==} 1179 | 1180 | /domhandler/4.3.0: 1181 | resolution: {integrity: sha512-fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g==} 1182 | engines: {node: '>= 4'} 1183 | dependencies: 1184 | domelementtype: 2.2.0 1185 | 1186 | /domutils/2.8.0: 1187 | resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==} 1188 | dependencies: 1189 | dom-serializer: 1.3.2 1190 | domelementtype: 2.2.0 1191 | domhandler: 4.3.0 1192 | 1193 | /dot-prop/5.3.0: 1194 | resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} 1195 | engines: {node: '>=8'} 1196 | dependencies: 1197 | is-obj: 2.0.0 1198 | dev: true 1199 | 1200 | /dotenv/14.3.2: 1201 | resolution: {integrity: sha512-vwEppIphpFdvaMCaHfCEv9IgwcxMljMw2TnAQBB4VWPvzXQLTb82jwmdOKzlEVUL3gNFT4l4TPKO+Bn+sqcrVQ==} 1202 | engines: {node: '>=12'} 1203 | dev: true 1204 | 1205 | /download/8.0.0: 1206 | resolution: {integrity: sha512-ASRY5QhDk7FK+XrQtQyvhpDKanLluEEQtWl/J7Lxuf/b+i8RYh997QeXvL85xitrmRKVlx9c7eTrcRdq2GS4eA==} 1207 | engines: {node: '>=10'} 1208 | dependencies: 1209 | archive-type: 4.0.0 1210 | content-disposition: 0.5.4 1211 | decompress: 4.2.1 1212 | ext-name: 5.0.0 1213 | file-type: 11.1.0 1214 | filenamify: 3.0.0 1215 | get-stream: 4.1.0 1216 | got: 8.3.2 1217 | make-dir: 2.1.0 1218 | p-event: 2.3.1 1219 | pify: 4.0.1 1220 | dev: false 1221 | 1222 | /duplexer3/0.1.4: 1223 | resolution: {integrity: sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=} 1224 | 1225 | /ee-first/1.1.1: 1226 | resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=} 1227 | dev: false 1228 | 1229 | /el-bot/0.9.0-beta.18: 1230 | resolution: {integrity: sha512-1dcyfP+0vvId7BCT4df98qZgggMD7/nNhKu4fNEcKxnf4w8KD6T5j5elP3P7ab8w/y09Dl44pr7tF/wqtlwP4w==} 1231 | engines: {node: '>=12'} 1232 | dependencies: 1233 | '@koa/cors': 3.1.0 1234 | '@octokit/webhooks': 9.22.0 1235 | commander: 8.3.0 1236 | dayjs: 1.10.7 1237 | download: 8.0.0 1238 | glob: 7.2.0 1239 | html-to-text: 8.1.0 1240 | inquirer: 8.2.0 1241 | js-yaml: 4.1.0 1242 | koa: 2.13.4 1243 | koa-bodyparser: 4.3.0 1244 | mirai-ts: 2.3.5 1245 | mongoose: 6.1.8 1246 | node-schedule: 2.1.0 1247 | progress: 2.0.3 1248 | qrcode: 1.5.0 1249 | rss-parser: 3.12.0 1250 | shelljs: 0.8.5 1251 | winston: 3.4.0 1252 | transitivePeerDependencies: 1253 | - bufferutil 1254 | - debug 1255 | - supports-color 1256 | - utf-8-validate 1257 | dev: false 1258 | 1259 | /emoji-regex/8.0.0: 1260 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 1261 | 1262 | /enabled/2.0.0: 1263 | resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==} 1264 | dev: false 1265 | 1266 | /encode-utf8/1.0.3: 1267 | resolution: {integrity: sha512-ucAnuBEhUK4boH2HjVYG5Q2mQyPorvv0u/ocS+zhdw0S8AlHYY+GOFhP1Gio5z4icpP2ivFSvhtFjQi8+T9ppw==} 1268 | dev: false 1269 | 1270 | /encodeurl/1.0.2: 1271 | resolution: {integrity: sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=} 1272 | engines: {node: '>= 0.8'} 1273 | dev: false 1274 | 1275 | /end-of-stream/1.4.4: 1276 | resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} 1277 | dependencies: 1278 | once: 1.4.0 1279 | 1280 | /entities/2.2.0: 1281 | resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} 1282 | 1283 | /entities/3.0.1: 1284 | resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==} 1285 | engines: {node: '>=0.12'} 1286 | dev: true 1287 | 1288 | /error-ex/1.3.2: 1289 | resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} 1290 | dependencies: 1291 | is-arrayish: 0.2.1 1292 | dev: true 1293 | 1294 | /es-abstract/1.19.1: 1295 | resolution: {integrity: sha512-2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==} 1296 | engines: {node: '>= 0.4'} 1297 | dependencies: 1298 | call-bind: 1.0.2 1299 | es-to-primitive: 1.2.1 1300 | function-bind: 1.1.1 1301 | get-intrinsic: 1.1.1 1302 | get-symbol-description: 1.0.0 1303 | has: 1.0.3 1304 | has-symbols: 1.0.2 1305 | internal-slot: 1.0.3 1306 | is-callable: 1.2.4 1307 | is-negative-zero: 2.0.2 1308 | is-regex: 1.1.4 1309 | is-shared-array-buffer: 1.0.1 1310 | is-string: 1.0.7 1311 | is-weakref: 1.0.2 1312 | object-inspect: 1.12.0 1313 | object-keys: 1.1.1 1314 | object.assign: 4.1.2 1315 | string.prototype.trimend: 1.0.4 1316 | string.prototype.trimstart: 1.0.4 1317 | unbox-primitive: 1.0.1 1318 | dev: true 1319 | 1320 | /es-to-primitive/1.2.1: 1321 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 1322 | engines: {node: '>= 0.4'} 1323 | dependencies: 1324 | is-callable: 1.2.4 1325 | is-date-object: 1.0.5 1326 | is-symbol: 1.0.4 1327 | dev: true 1328 | 1329 | /esbuild-android-arm64/0.14.14: 1330 | resolution: {integrity: sha512-be/Uw6DdpQiPfula1J4bdmA+wtZ6T3BRCZsDMFB5X+k0Gp8TIh9UvmAcqvKNnbRAafSaXG3jPCeXxDKqnc8hFQ==} 1331 | cpu: [arm64] 1332 | os: [android] 1333 | requiresBuild: true 1334 | dev: true 1335 | optional: true 1336 | 1337 | /esbuild-darwin-64/0.14.14: 1338 | resolution: {integrity: sha512-BEexYmjWafcISK8cT6O98E3TfcLuZL8DKuubry6G54n2+bD4GkoRD6HYUOnCkfl2p7jodA+s4369IjSFSWjtHg==} 1339 | cpu: [x64] 1340 | os: [darwin] 1341 | requiresBuild: true 1342 | dev: true 1343 | optional: true 1344 | 1345 | /esbuild-darwin-arm64/0.14.14: 1346 | resolution: {integrity: sha512-tnBKm41pDOB1GtZ8q/w26gZlLLRzVmP8fdsduYjvM+yFD7E2DLG4KbPAqFMWm4Md9B+DitBglP57FY7AznxbTg==} 1347 | cpu: [arm64] 1348 | os: [darwin] 1349 | requiresBuild: true 1350 | dev: true 1351 | optional: true 1352 | 1353 | /esbuild-freebsd-64/0.14.14: 1354 | resolution: {integrity: sha512-Q9Rx6sgArOHalQtNwAaIzJ6dnQ8A+I7f/RsQsdkS3JrdzmnlFo8JEVofTmwVQLoIop7OKUqIVOGP4PoQcwfVMA==} 1355 | cpu: [x64] 1356 | os: [freebsd] 1357 | requiresBuild: true 1358 | dev: true 1359 | optional: true 1360 | 1361 | /esbuild-freebsd-arm64/0.14.14: 1362 | resolution: {integrity: sha512-TJvq0OpLM7BkTczlyPIphcvnwrQwQDG1HqxzoYePWn26SMUAlt6wrLnEvxdbXAvNvDLVzG83kA+JimjK7aRNBA==} 1363 | cpu: [arm64] 1364 | os: [freebsd] 1365 | requiresBuild: true 1366 | dev: true 1367 | optional: true 1368 | 1369 | /esbuild-linux-32/0.14.14: 1370 | resolution: {integrity: sha512-h/CrK9Baimt5VRbu8gqibWV7e1P9l+mkanQgyOgv0Ng3jHT1NVFC9e6rb1zbDdaJVmuhWX5xVliUA5bDDCcJeg==} 1371 | cpu: [ia32] 1372 | os: [linux] 1373 | requiresBuild: true 1374 | dev: true 1375 | optional: true 1376 | 1377 | /esbuild-linux-64/0.14.14: 1378 | resolution: {integrity: sha512-IC+wAiIg/egp5OhQp4W44D9PcBOH1b621iRn1OXmlLzij9a/6BGr9NMIL4CRwz4j2kp3WNZu5sT473tYdynOuQ==} 1379 | cpu: [x64] 1380 | os: [linux] 1381 | requiresBuild: true 1382 | dev: true 1383 | optional: true 1384 | 1385 | /esbuild-linux-arm/0.14.14: 1386 | resolution: {integrity: sha512-gxpOaHOPwp7zSmcKYsHrtxabScMqaTzfSQioAMUaB047YiMuDBzqVcKBG8OuESrYkGrL9DDljXr/mQNg7pbdaQ==} 1387 | cpu: [arm] 1388 | os: [linux] 1389 | requiresBuild: true 1390 | dev: true 1391 | optional: true 1392 | 1393 | /esbuild-linux-arm64/0.14.14: 1394 | resolution: {integrity: sha512-6QVul3RI4M5/VxVIRF/I5F+7BaxzR3DfNGoqEVSCZqUbgzHExPn+LXr5ly1C7af2Kw4AHpo+wDqx8A4ziP9avw==} 1395 | cpu: [arm64] 1396 | os: [linux] 1397 | requiresBuild: true 1398 | dev: true 1399 | optional: true 1400 | 1401 | /esbuild-linux-mips64le/0.14.14: 1402 | resolution: {integrity: sha512-4Jl5/+xoINKbA4cesH3f4R+q0vltAztZ6Jm8YycS8lNhN1pgZJBDxWfI6HUMIAdkKlIpR1PIkA9aXQgZ8sxFAg==} 1403 | cpu: [mips64el] 1404 | os: [linux] 1405 | requiresBuild: true 1406 | dev: true 1407 | optional: true 1408 | 1409 | /esbuild-linux-ppc64le/0.14.14: 1410 | resolution: {integrity: sha512-BitW37GxeebKxqYNl4SVuSdnIJAzH830Lr6Mkq3pBHXtzQay0vK+IeOR/Ele1GtNVJ+/f8wYM53tcThkv5SC5w==} 1411 | cpu: [ppc64] 1412 | os: [linux] 1413 | requiresBuild: true 1414 | dev: true 1415 | optional: true 1416 | 1417 | /esbuild-linux-s390x/0.14.14: 1418 | resolution: {integrity: sha512-vLj6p76HOZG3wfuTr5MyO3qW5iu8YdhUNxuY+tx846rPo7GcKtYSPMusQjeVEfZlJpSYoR+yrNBBxq+qVF9zrw==} 1419 | cpu: [s390x] 1420 | os: [linux] 1421 | requiresBuild: true 1422 | dev: true 1423 | optional: true 1424 | 1425 | /esbuild-netbsd-64/0.14.14: 1426 | resolution: {integrity: sha512-fn8looXPQhpVqUyCBWUuPjesH+yGIyfbIQrLKG05rr1Kgm3rZD/gaYrd3Wpmf5syVZx70pKZPvdHp8OTA+y7cQ==} 1427 | cpu: [x64] 1428 | os: [netbsd] 1429 | requiresBuild: true 1430 | dev: true 1431 | optional: true 1432 | 1433 | /esbuild-node-loader/0.6.4_typescript@4.5.5: 1434 | resolution: {integrity: sha512-7Esvc3CWHf+DcXHX+VdIl91s4hPs83wV/DqDbjrR2q5gKjnR4O7NCX2Hw7QVYd8h5Pzc7fIV2z12SMqAcHIyJg==} 1435 | peerDependencies: 1436 | typescript: ^4.0 1437 | dependencies: 1438 | esbuild: 0.14.14 1439 | typescript: 4.5.5 1440 | dev: true 1441 | 1442 | /esbuild-openbsd-64/0.14.14: 1443 | resolution: {integrity: sha512-HdAnJ399pPff3SKbd8g+P4o5znseni5u5n5rJ6Z7ouqOdgbOwHe2ofZbMow17WMdNtz1IyOZk2Wo9Ve6/lZ4Rg==} 1444 | cpu: [x64] 1445 | os: [openbsd] 1446 | requiresBuild: true 1447 | dev: true 1448 | optional: true 1449 | 1450 | /esbuild-register/3.3.2_esbuild@0.14.14: 1451 | resolution: {integrity: sha512-jceAtTO6zxPmCfSD5cBb3rgIK1vmuqCKYwgylHiS1BF4pq0jJiJb4K2QMuqF4BEw7XDBRatYzip0upyTzfkgsQ==} 1452 | peerDependencies: 1453 | esbuild: '>=0.12 <1' 1454 | dependencies: 1455 | esbuild: 0.14.14 1456 | dev: true 1457 | 1458 | /esbuild-sunos-64/0.14.14: 1459 | resolution: {integrity: sha512-bmDHa99ulsGnYlh/xjBEfxoGuC8CEG5OWvlgD+pF7bKKiVTbtxqVCvOGEZeoDXB+ja6AvHIbPxrEE32J+m5nqQ==} 1460 | cpu: [x64] 1461 | os: [sunos] 1462 | requiresBuild: true 1463 | dev: true 1464 | optional: true 1465 | 1466 | /esbuild-windows-32/0.14.14: 1467 | resolution: {integrity: sha512-6tVooQcxJCNenPp5GHZBs/RLu31q4B+BuF4MEoRxswT+Eq2JGF0ZWDRQwNKB8QVIo3t6Svc5wNGez+CwKNQjBg==} 1468 | cpu: [ia32] 1469 | os: [win32] 1470 | requiresBuild: true 1471 | dev: true 1472 | optional: true 1473 | 1474 | /esbuild-windows-64/0.14.14: 1475 | resolution: {integrity: sha512-kl3BdPXh0/RD/dad41dtzj2itMUR4C6nQbXQCyYHHo4zoUoeIXhpCrSl7BAW1nv5EFL8stT1V+TQVXGZca5A2A==} 1476 | cpu: [x64] 1477 | os: [win32] 1478 | requiresBuild: true 1479 | dev: true 1480 | optional: true 1481 | 1482 | /esbuild-windows-arm64/0.14.14: 1483 | resolution: {integrity: sha512-dCm1wTOm6HIisLanmybvRKvaXZZo4yEVrHh1dY0v582GThXJOzuXGja1HIQgV09RpSHYRL3m4KoUBL00l6SWEg==} 1484 | cpu: [arm64] 1485 | os: [win32] 1486 | requiresBuild: true 1487 | dev: true 1488 | optional: true 1489 | 1490 | /esbuild/0.14.14: 1491 | resolution: {integrity: sha512-aiK4ddv+uui0k52OqSHu4xxu+SzOim7Rlz4i25pMEiC8rlnGU0HJ9r+ZMfdWL5bzifg+nhnn7x4NSWTeehYblg==} 1492 | hasBin: true 1493 | requiresBuild: true 1494 | optionalDependencies: 1495 | esbuild-android-arm64: 0.14.14 1496 | esbuild-darwin-64: 0.14.14 1497 | esbuild-darwin-arm64: 0.14.14 1498 | esbuild-freebsd-64: 0.14.14 1499 | esbuild-freebsd-arm64: 0.14.14 1500 | esbuild-linux-32: 0.14.14 1501 | esbuild-linux-64: 0.14.14 1502 | esbuild-linux-arm: 0.14.14 1503 | esbuild-linux-arm64: 0.14.14 1504 | esbuild-linux-mips64le: 0.14.14 1505 | esbuild-linux-ppc64le: 0.14.14 1506 | esbuild-linux-s390x: 0.14.14 1507 | esbuild-netbsd-64: 0.14.14 1508 | esbuild-openbsd-64: 0.14.14 1509 | esbuild-sunos-64: 0.14.14 1510 | esbuild-windows-32: 0.14.14 1511 | esbuild-windows-64: 0.14.14 1512 | esbuild-windows-arm64: 0.14.14 1513 | dev: true 1514 | 1515 | /escape-goat/2.1.1: 1516 | resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==} 1517 | engines: {node: '>=8'} 1518 | dev: true 1519 | 1520 | /escape-html/1.0.3: 1521 | resolution: {integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=} 1522 | dev: false 1523 | 1524 | /escape-string-regexp/1.0.5: 1525 | resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=} 1526 | engines: {node: '>=0.8.0'} 1527 | 1528 | /escape-string-regexp/4.0.0: 1529 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 1530 | engines: {node: '>=10'} 1531 | dev: true 1532 | 1533 | /eslint-config-standard/17.0.0-0_3163ab7e7910c30880bb01ebc541ca1a: 1534 | resolution: {integrity: sha512-sf9udec8fkLTnH82SmhZQ3E31e4eJaMW09Mt9fbN3OccXFtvSSbGrltpQgGFVooGHoIdiMzDfp6ZNFd+I6Ob+w==} 1535 | peerDependencies: 1536 | eslint: ^8.0.1 1537 | eslint-plugin-import: ^2.25.2 1538 | eslint-plugin-n: ^14.0.0 1539 | eslint-plugin-promise: ^6.0.0 1540 | dependencies: 1541 | eslint: 8.7.0 1542 | eslint-plugin-import: 2.25.4_eslint@8.7.0 1543 | eslint-plugin-n: 14.0.0_eslint@8.7.0 1544 | eslint-plugin-promise: 6.0.0_eslint@8.7.0 1545 | dev: true 1546 | 1547 | /eslint-import-resolver-node/0.3.6: 1548 | resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==} 1549 | dependencies: 1550 | debug: 3.2.7 1551 | resolve: 1.22.0 1552 | dev: true 1553 | 1554 | /eslint-module-utils/2.7.2: 1555 | resolution: {integrity: sha512-zquepFnWCY2ISMFwD/DqzaM++H+7PDzOpUvotJWm/y1BAFt5R4oeULgdrTejKqLkz7MA/tgstsUMNYc7wNdTrg==} 1556 | engines: {node: '>=4'} 1557 | dependencies: 1558 | debug: 3.2.7 1559 | find-up: 2.1.0 1560 | dev: true 1561 | 1562 | /eslint-plugin-es/4.1.0_eslint@8.7.0: 1563 | resolution: {integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==} 1564 | engines: {node: '>=8.10.0'} 1565 | peerDependencies: 1566 | eslint: '>=4.19.1' 1567 | dependencies: 1568 | eslint: 8.7.0 1569 | eslint-utils: 2.1.0 1570 | regexpp: 3.2.0 1571 | dev: true 1572 | 1573 | /eslint-plugin-eslint-comments/3.2.0_eslint@8.7.0: 1574 | resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==} 1575 | engines: {node: '>=6.5.0'} 1576 | peerDependencies: 1577 | eslint: '>=4.19.1' 1578 | dependencies: 1579 | escape-string-regexp: 1.0.5 1580 | eslint: 8.7.0 1581 | ignore: 5.2.0 1582 | dev: true 1583 | 1584 | /eslint-plugin-html/6.2.0: 1585 | resolution: {integrity: sha512-vi3NW0E8AJombTvt8beMwkL1R/fdRWl4QSNRNMhVQKWm36/X0KF0unGNAY4mqUF06mnwVWZcIcerrCnfn9025g==} 1586 | dependencies: 1587 | htmlparser2: 7.2.0 1588 | dev: true 1589 | 1590 | /eslint-plugin-import/2.25.4_eslint@8.7.0: 1591 | resolution: {integrity: sha512-/KJBASVFxpu0xg1kIBn9AUa8hQVnszpwgE7Ld0lKAlx7Ie87yzEzCgSkekt+le/YVhiaosO4Y14GDAOc41nfxA==} 1592 | engines: {node: '>=4'} 1593 | peerDependencies: 1594 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 1595 | dependencies: 1596 | array-includes: 3.1.4 1597 | array.prototype.flat: 1.2.5 1598 | debug: 2.6.9 1599 | doctrine: 2.1.0 1600 | eslint: 8.7.0 1601 | eslint-import-resolver-node: 0.3.6 1602 | eslint-module-utils: 2.7.2 1603 | has: 1.0.3 1604 | is-core-module: 2.8.1 1605 | is-glob: 4.0.3 1606 | minimatch: 3.0.4 1607 | object.values: 1.1.5 1608 | resolve: 1.22.0 1609 | tsconfig-paths: 3.12.0 1610 | dev: true 1611 | 1612 | /eslint-plugin-jsonc/2.1.0_eslint@8.7.0: 1613 | resolution: {integrity: sha512-ueuFWW+u/hjU9+j5Ov+ZoWIukMlaWrB+MS/wfKYWqKkAVr7U9zYqUu4ZwLh2AHU3+FjvmS8+1Va5bP6J/ERVyg==} 1614 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1615 | peerDependencies: 1616 | eslint: '>=6.0.0' 1617 | dependencies: 1618 | eslint: 8.7.0 1619 | eslint-utils: 3.0.0_eslint@8.7.0 1620 | jsonc-eslint-parser: 2.1.0 1621 | natural-compare: 1.4.0 1622 | dev: true 1623 | 1624 | /eslint-plugin-n/14.0.0_eslint@8.7.0: 1625 | resolution: {integrity: sha512-mNwplPLsbaKhHyA0fa/cy8j+oF6bF6l81hzBTWa6JOvPcMNAuIogk2ih6d9tYvWYzyUG+7ZFeChqbzdFpg2QrQ==} 1626 | engines: {node: '>=12.22.0'} 1627 | peerDependencies: 1628 | eslint: '>=7.0.0' 1629 | dependencies: 1630 | eslint: 8.7.0 1631 | eslint-plugin-es: 4.1.0_eslint@8.7.0 1632 | eslint-utils: 3.0.0_eslint@8.7.0 1633 | ignore: 5.2.0 1634 | is-core-module: 2.8.1 1635 | minimatch: 3.0.4 1636 | resolve: 1.22.0 1637 | semver: 6.3.0 1638 | dev: true 1639 | 1640 | /eslint-plugin-promise/6.0.0_eslint@8.7.0: 1641 | resolution: {integrity: sha512-7GPezalm5Bfi/E22PnQxDWH2iW9GTvAlUNTztemeHb6c1BniSyoeTrM87JkC0wYdi6aQrZX9p2qEiAno8aTcbw==} 1642 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1643 | peerDependencies: 1644 | eslint: ^7.0.0 || ^8.0.0 1645 | dependencies: 1646 | eslint: 8.7.0 1647 | dev: true 1648 | 1649 | /eslint-plugin-react/7.28.0_eslint@8.7.0: 1650 | resolution: {integrity: sha512-IOlFIRHzWfEQQKcAD4iyYDndHwTQiCMcJVJjxempf203jnNLUnW34AXLrV33+nEXoifJE2ZEGmcjKPL8957eSw==} 1651 | engines: {node: '>=4'} 1652 | peerDependencies: 1653 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 1654 | dependencies: 1655 | array-includes: 3.1.4 1656 | array.prototype.flatmap: 1.2.5 1657 | doctrine: 2.1.0 1658 | eslint: 8.7.0 1659 | estraverse: 5.3.0 1660 | jsx-ast-utils: 3.2.1 1661 | minimatch: 3.0.4 1662 | object.entries: 1.1.5 1663 | object.fromentries: 2.0.5 1664 | object.hasown: 1.1.0 1665 | object.values: 1.1.5 1666 | prop-types: 15.8.1 1667 | resolve: 2.0.0-next.3 1668 | semver: 6.3.0 1669 | string.prototype.matchall: 4.0.6 1670 | dev: true 1671 | 1672 | /eslint-plugin-unicorn/40.1.0_eslint@8.7.0: 1673 | resolution: {integrity: sha512-y5doK2DF9Sr5AqKEHbHxjFllJ167nKDRU01HDcWyv4Tnmaoe9iNxMrBnaybZvWZUaE3OC5Unu0lNIevYamloig==} 1674 | engines: {node: '>=12'} 1675 | peerDependencies: 1676 | eslint: '>=7.32.0' 1677 | dependencies: 1678 | '@babel/helper-validator-identifier': 7.16.7 1679 | ci-info: 3.3.0 1680 | clean-regexp: 1.0.0 1681 | eslint: 8.7.0 1682 | eslint-utils: 3.0.0_eslint@8.7.0 1683 | esquery: 1.4.0 1684 | indent-string: 4.0.0 1685 | is-builtin-module: 3.1.0 1686 | lodash: 4.17.21 1687 | pluralize: 8.0.0 1688 | read-pkg-up: 7.0.1 1689 | regexp-tree: 0.1.24 1690 | safe-regex: 2.1.1 1691 | semver: 7.3.5 1692 | strip-indent: 3.0.0 1693 | dev: true 1694 | 1695 | /eslint-plugin-vue/8.4.0_eslint@8.7.0: 1696 | resolution: {integrity: sha512-Ga96QRG8GA9AyzKtEDxqYRCMt/VJM4SLkcNmm4FvUiFBE4jpaBr25unRBi9iVmHLYhA9EZ/4I+jD8n1vfWzyAA==} 1697 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1698 | peerDependencies: 1699 | eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 1700 | dependencies: 1701 | eslint: 8.7.0 1702 | eslint-utils: 3.0.0_eslint@8.7.0 1703 | natural-compare: 1.4.0 1704 | semver: 7.3.5 1705 | vue-eslint-parser: 8.2.0_eslint@8.7.0 1706 | transitivePeerDependencies: 1707 | - supports-color 1708 | dev: true 1709 | 1710 | /eslint-plugin-yml/0.12.0_eslint@8.7.0: 1711 | resolution: {integrity: sha512-aS82M+diohZTusadiByzh/bKDrfi+Y6VBQkD3ym/7JH+KF9WUB9qKCizLfTaCACwtRrHpqaLz3G8GKmslshyiw==} 1712 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1713 | peerDependencies: 1714 | eslint: '>=6.0.0' 1715 | dependencies: 1716 | debug: 4.3.3 1717 | eslint: 8.7.0 1718 | lodash: 4.17.21 1719 | natural-compare: 1.4.0 1720 | yaml-eslint-parser: 0.5.0 1721 | transitivePeerDependencies: 1722 | - supports-color 1723 | dev: true 1724 | 1725 | /eslint-scope/5.1.1: 1726 | resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} 1727 | engines: {node: '>=8.0.0'} 1728 | dependencies: 1729 | esrecurse: 4.3.0 1730 | estraverse: 4.3.0 1731 | dev: true 1732 | 1733 | /eslint-scope/7.1.0: 1734 | resolution: {integrity: sha512-aWwkhnS0qAXqNOgKOK0dJ2nvzEbhEvpy8OlJ9kZ0FeZnA6zpjv1/Vei+puGFFX7zkPCkHHXb7IDX3A+7yPrRWg==} 1735 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1736 | dependencies: 1737 | esrecurse: 4.3.0 1738 | estraverse: 5.3.0 1739 | dev: true 1740 | 1741 | /eslint-utils/2.1.0: 1742 | resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} 1743 | engines: {node: '>=6'} 1744 | dependencies: 1745 | eslint-visitor-keys: 1.3.0 1746 | dev: true 1747 | 1748 | /eslint-utils/3.0.0_eslint@8.7.0: 1749 | resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} 1750 | engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} 1751 | peerDependencies: 1752 | eslint: '>=5' 1753 | dependencies: 1754 | eslint: 8.7.0 1755 | eslint-visitor-keys: 2.1.0 1756 | dev: true 1757 | 1758 | /eslint-visitor-keys/1.3.0: 1759 | resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} 1760 | engines: {node: '>=4'} 1761 | dev: true 1762 | 1763 | /eslint-visitor-keys/2.1.0: 1764 | resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} 1765 | engines: {node: '>=10'} 1766 | dev: true 1767 | 1768 | /eslint-visitor-keys/3.2.0: 1769 | resolution: {integrity: sha512-IOzT0X126zn7ALX0dwFiUQEdsfzrm4+ISsQS8nukaJXwEyYKRSnEIIDULYg1mCtGp7UUXgfGl7BIolXREQK+XQ==} 1770 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1771 | dev: true 1772 | 1773 | /eslint/8.7.0: 1774 | resolution: {integrity: sha512-ifHYzkBGrzS2iDU7KjhCAVMGCvF6M3Xfs8X8b37cgrUlDt6bWRTpRh6T/gtSXv1HJ/BUGgmjvNvOEGu85Iif7w==} 1775 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1776 | hasBin: true 1777 | dependencies: 1778 | '@eslint/eslintrc': 1.0.5 1779 | '@humanwhocodes/config-array': 0.9.2 1780 | ajv: 6.12.6 1781 | chalk: 4.1.2 1782 | cross-spawn: 7.0.3 1783 | debug: 4.3.3 1784 | doctrine: 3.0.0 1785 | escape-string-regexp: 4.0.0 1786 | eslint-scope: 7.1.0 1787 | eslint-utils: 3.0.0_eslint@8.7.0 1788 | eslint-visitor-keys: 3.2.0 1789 | espree: 9.3.0 1790 | esquery: 1.4.0 1791 | esutils: 2.0.3 1792 | fast-deep-equal: 3.1.3 1793 | file-entry-cache: 6.0.1 1794 | functional-red-black-tree: 1.0.1 1795 | glob-parent: 6.0.2 1796 | globals: 13.12.0 1797 | ignore: 5.2.0 1798 | import-fresh: 3.3.0 1799 | imurmurhash: 0.1.4 1800 | is-glob: 4.0.3 1801 | js-yaml: 4.1.0 1802 | json-stable-stringify-without-jsonify: 1.0.1 1803 | levn: 0.4.1 1804 | lodash.merge: 4.6.2 1805 | minimatch: 3.0.4 1806 | natural-compare: 1.4.0 1807 | optionator: 0.9.1 1808 | regexpp: 3.2.0 1809 | strip-ansi: 6.0.1 1810 | strip-json-comments: 3.1.1 1811 | text-table: 0.2.0 1812 | v8-compile-cache: 2.3.0 1813 | transitivePeerDependencies: 1814 | - supports-color 1815 | dev: true 1816 | 1817 | /esno/0.14.0_typescript@4.5.5: 1818 | resolution: {integrity: sha512-KEij9fDbMSO+WxwZRZRXWRxSpd48tXKF1VUW8dPUezN7VbUM6jKUXBrYY3CAbnkVfHzEbD8RWkapCYwc+ZaYoA==} 1819 | hasBin: true 1820 | dependencies: 1821 | cross-spawn: 7.0.3 1822 | esbuild: 0.14.14 1823 | esbuild-node-loader: 0.6.4_typescript@4.5.5 1824 | esbuild-register: 3.3.2_esbuild@0.14.14 1825 | import-meta-resolve: 1.1.1 1826 | transitivePeerDependencies: 1827 | - typescript 1828 | dev: true 1829 | 1830 | /espree/9.3.0: 1831 | resolution: {integrity: sha512-d/5nCsb0JcqsSEeQzFZ8DH1RmxPcglRWh24EFTlUEmCKoehXGdpsx0RkHDubqUI8LSAIKMQp4r9SzQ3n+sm4HQ==} 1832 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1833 | dependencies: 1834 | acorn: 8.7.0 1835 | acorn-jsx: 5.3.2_acorn@8.7.0 1836 | eslint-visitor-keys: 3.2.0 1837 | dev: true 1838 | 1839 | /esquery/1.4.0: 1840 | resolution: {integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==} 1841 | engines: {node: '>=0.10'} 1842 | dependencies: 1843 | estraverse: 5.3.0 1844 | dev: true 1845 | 1846 | /esrecurse/4.3.0: 1847 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1848 | engines: {node: '>=4.0'} 1849 | dependencies: 1850 | estraverse: 5.3.0 1851 | dev: true 1852 | 1853 | /estraverse/4.3.0: 1854 | resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} 1855 | engines: {node: '>=4.0'} 1856 | dev: true 1857 | 1858 | /estraverse/5.3.0: 1859 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1860 | engines: {node: '>=4.0'} 1861 | dev: true 1862 | 1863 | /esutils/2.0.3: 1864 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1865 | engines: {node: '>=0.10.0'} 1866 | dev: true 1867 | 1868 | /execa/5.1.1: 1869 | resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} 1870 | engines: {node: '>=10'} 1871 | dependencies: 1872 | cross-spawn: 7.0.3 1873 | get-stream: 6.0.1 1874 | human-signals: 2.1.0 1875 | is-stream: 2.0.1 1876 | merge-stream: 2.0.0 1877 | npm-run-path: 4.0.1 1878 | onetime: 5.1.2 1879 | signal-exit: 3.0.6 1880 | strip-final-newline: 2.0.0 1881 | dev: true 1882 | 1883 | /ext-list/2.2.2: 1884 | resolution: {integrity: sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==} 1885 | engines: {node: '>=0.10.0'} 1886 | dependencies: 1887 | mime-db: 1.51.0 1888 | dev: false 1889 | 1890 | /ext-name/5.0.0: 1891 | resolution: {integrity: sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==} 1892 | engines: {node: '>=4'} 1893 | dependencies: 1894 | ext-list: 2.2.2 1895 | sort-keys-length: 1.0.1 1896 | dev: false 1897 | 1898 | /external-editor/3.1.0: 1899 | resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} 1900 | engines: {node: '>=4'} 1901 | dependencies: 1902 | chardet: 0.7.0 1903 | iconv-lite: 0.4.24 1904 | tmp: 0.0.33 1905 | dev: false 1906 | 1907 | /fast-deep-equal/3.1.3: 1908 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1909 | dev: true 1910 | 1911 | /fast-glob/3.2.11: 1912 | resolution: {integrity: sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==} 1913 | engines: {node: '>=8.6.0'} 1914 | dependencies: 1915 | '@nodelib/fs.stat': 2.0.5 1916 | '@nodelib/fs.walk': 1.2.8 1917 | glob-parent: 5.1.2 1918 | merge2: 1.4.1 1919 | micromatch: 4.0.4 1920 | dev: true 1921 | 1922 | /fast-json-stable-stringify/2.1.0: 1923 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1924 | dev: true 1925 | 1926 | /fast-levenshtein/2.0.6: 1927 | resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=} 1928 | dev: true 1929 | 1930 | /fastq/1.13.0: 1931 | resolution: {integrity: sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==} 1932 | dependencies: 1933 | reusify: 1.0.4 1934 | dev: true 1935 | 1936 | /fd-slicer/1.1.0: 1937 | resolution: {integrity: sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=} 1938 | dependencies: 1939 | pend: 1.2.0 1940 | dev: false 1941 | 1942 | /fecha/4.2.1: 1943 | resolution: {integrity: sha512-MMMQ0ludy/nBs1/o0zVOiKTpG7qMbonKUzjJgQFEuvq6INZ1OraKPRAWkBq5vlKLOUMpmNYG1JoN3oDPUQ9m3Q==} 1944 | dev: false 1945 | 1946 | /figures/3.2.0: 1947 | resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} 1948 | engines: {node: '>=8'} 1949 | dependencies: 1950 | escape-string-regexp: 1.0.5 1951 | dev: false 1952 | 1953 | /file-entry-cache/6.0.1: 1954 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 1955 | engines: {node: ^10.12.0 || >=12.0.0} 1956 | dependencies: 1957 | flat-cache: 3.0.4 1958 | dev: true 1959 | 1960 | /file-type/11.1.0: 1961 | resolution: {integrity: sha512-rM0UO7Qm9K7TWTtA6AShI/t7H5BPjDeGVDaNyg9BjHAj3PysKy7+8C8D137R88jnR3rFJZQB/tFgydl5sN5m7g==} 1962 | engines: {node: '>=6'} 1963 | dev: false 1964 | 1965 | /file-type/3.9.0: 1966 | resolution: {integrity: sha1-JXoHg4TR24CHvESdEH1SpSZyuek=} 1967 | engines: {node: '>=0.10.0'} 1968 | dev: false 1969 | 1970 | /file-type/4.4.0: 1971 | resolution: {integrity: sha1-G2AOX8ofvcboDApwxxyNul95BsU=} 1972 | engines: {node: '>=4'} 1973 | dev: false 1974 | 1975 | /file-type/5.2.0: 1976 | resolution: {integrity: sha1-LdvqfHP/42No365J3DOMBYwritY=} 1977 | engines: {node: '>=4'} 1978 | dev: false 1979 | 1980 | /file-type/6.2.0: 1981 | resolution: {integrity: sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==} 1982 | engines: {node: '>=4'} 1983 | dev: false 1984 | 1985 | /filename-reserved-regex/2.0.0: 1986 | resolution: {integrity: sha1-q/c9+rc10EVECr/qLZHzieu/oik=} 1987 | engines: {node: '>=4'} 1988 | dev: false 1989 | 1990 | /filenamify/3.0.0: 1991 | resolution: {integrity: sha512-5EFZ//MsvJgXjBAFJ+Bh2YaCTRF/VP1YOmGrgt+KJ4SFRLjI87EIdwLLuT6wQX0I4F9W41xutobzczjsOKlI/g==} 1992 | engines: {node: '>=6'} 1993 | dependencies: 1994 | filename-reserved-regex: 2.0.0 1995 | strip-outer: 1.0.1 1996 | trim-repeated: 1.0.0 1997 | dev: false 1998 | 1999 | /fill-range/7.0.1: 2000 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 2001 | engines: {node: '>=8'} 2002 | dependencies: 2003 | to-regex-range: 5.0.1 2004 | dev: true 2005 | 2006 | /find-up/2.1.0: 2007 | resolution: {integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=} 2008 | engines: {node: '>=4'} 2009 | dependencies: 2010 | locate-path: 2.0.0 2011 | dev: true 2012 | 2013 | /find-up/4.1.0: 2014 | resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} 2015 | engines: {node: '>=8'} 2016 | dependencies: 2017 | locate-path: 5.0.0 2018 | path-exists: 4.0.0 2019 | 2020 | /flat-cache/3.0.4: 2021 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} 2022 | engines: {node: ^10.12.0 || >=12.0.0} 2023 | dependencies: 2024 | flatted: 3.2.4 2025 | rimraf: 3.0.2 2026 | dev: true 2027 | 2028 | /flatted/3.2.4: 2029 | resolution: {integrity: sha512-8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw==} 2030 | dev: true 2031 | 2032 | /fn.name/1.1.0: 2033 | resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==} 2034 | dev: false 2035 | 2036 | /follow-redirects/1.14.7: 2037 | resolution: {integrity: sha512-+hbxoLbFMbRKDwohX8GkTataGqO6Jb7jGwpAlwgy2bIz25XtRm7KEzJM76R1WiNT5SwZkX4Y75SwBolkpmE7iQ==} 2038 | engines: {node: '>=4.0'} 2039 | peerDependencies: 2040 | debug: '*' 2041 | peerDependenciesMeta: 2042 | debug: 2043 | optional: true 2044 | dev: false 2045 | 2046 | /form-data/4.0.0: 2047 | resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} 2048 | engines: {node: '>= 6'} 2049 | dependencies: 2050 | asynckit: 0.4.0 2051 | combined-stream: 1.0.8 2052 | mime-types: 2.1.34 2053 | dev: false 2054 | 2055 | /fresh/0.5.2: 2056 | resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=} 2057 | engines: {node: '>= 0.6'} 2058 | dev: false 2059 | 2060 | /from2/2.3.0: 2061 | resolution: {integrity: sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=} 2062 | dependencies: 2063 | inherits: 2.0.4 2064 | readable-stream: 2.3.7 2065 | dev: false 2066 | 2067 | /fs-constants/1.0.0: 2068 | resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} 2069 | dev: false 2070 | 2071 | /fs.realpath/1.0.0: 2072 | resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=} 2073 | 2074 | /fsevents/2.3.2: 2075 | resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} 2076 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 2077 | os: [darwin] 2078 | requiresBuild: true 2079 | dev: true 2080 | optional: true 2081 | 2082 | /function-bind/1.1.1: 2083 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} 2084 | 2085 | /functional-red-black-tree/1.0.1: 2086 | resolution: {integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=} 2087 | dev: true 2088 | 2089 | /get-caller-file/2.0.5: 2090 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 2091 | engines: {node: 6.* || 8.* || >= 10.*} 2092 | dev: false 2093 | 2094 | /get-intrinsic/1.1.1: 2095 | resolution: {integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==} 2096 | dependencies: 2097 | function-bind: 1.1.1 2098 | has: 1.0.3 2099 | has-symbols: 1.0.2 2100 | 2101 | /get-stream/2.3.1: 2102 | resolution: {integrity: sha1-Xzj5PzRgCWZu4BUKBUFn+Rvdld4=} 2103 | engines: {node: '>=0.10.0'} 2104 | dependencies: 2105 | object-assign: 4.1.1 2106 | pinkie-promise: 2.0.1 2107 | dev: false 2108 | 2109 | /get-stream/3.0.0: 2110 | resolution: {integrity: sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=} 2111 | engines: {node: '>=4'} 2112 | dev: false 2113 | 2114 | /get-stream/4.1.0: 2115 | resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} 2116 | engines: {node: '>=6'} 2117 | dependencies: 2118 | pump: 3.0.0 2119 | 2120 | /get-stream/5.2.0: 2121 | resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} 2122 | engines: {node: '>=8'} 2123 | dependencies: 2124 | pump: 3.0.0 2125 | dev: true 2126 | 2127 | /get-stream/6.0.1: 2128 | resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} 2129 | engines: {node: '>=10'} 2130 | dev: true 2131 | 2132 | /get-symbol-description/1.0.0: 2133 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} 2134 | engines: {node: '>= 0.4'} 2135 | dependencies: 2136 | call-bind: 1.0.2 2137 | get-intrinsic: 1.1.1 2138 | dev: true 2139 | 2140 | /glob-parent/5.1.2: 2141 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 2142 | engines: {node: '>= 6'} 2143 | dependencies: 2144 | is-glob: 4.0.3 2145 | dev: true 2146 | 2147 | /glob-parent/6.0.2: 2148 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 2149 | engines: {node: '>=10.13.0'} 2150 | dependencies: 2151 | is-glob: 4.0.3 2152 | dev: true 2153 | 2154 | /glob/7.1.6: 2155 | resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} 2156 | dependencies: 2157 | fs.realpath: 1.0.0 2158 | inflight: 1.0.6 2159 | inherits: 2.0.4 2160 | minimatch: 3.0.4 2161 | once: 1.4.0 2162 | path-is-absolute: 1.0.1 2163 | dev: true 2164 | 2165 | /glob/7.2.0: 2166 | resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==} 2167 | dependencies: 2168 | fs.realpath: 1.0.0 2169 | inflight: 1.0.6 2170 | inherits: 2.0.4 2171 | minimatch: 3.0.4 2172 | once: 1.4.0 2173 | path-is-absolute: 1.0.1 2174 | 2175 | /global-dirs/3.0.0: 2176 | resolution: {integrity: sha512-v8ho2DS5RiCjftj1nD9NmnfaOzTdud7RRnVd9kFNOjqZbISlx5DQ+OrTkywgd0dIt7oFCvKetZSHoHcP3sDdiA==} 2177 | engines: {node: '>=10'} 2178 | dependencies: 2179 | ini: 2.0.0 2180 | dev: true 2181 | 2182 | /globals/13.12.0: 2183 | resolution: {integrity: sha512-uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg==} 2184 | engines: {node: '>=8'} 2185 | dependencies: 2186 | type-fest: 0.20.2 2187 | dev: true 2188 | 2189 | /globby/11.1.0: 2190 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 2191 | engines: {node: '>=10'} 2192 | dependencies: 2193 | array-union: 2.1.0 2194 | dir-glob: 3.0.1 2195 | fast-glob: 3.2.11 2196 | ignore: 5.2.0 2197 | merge2: 1.4.1 2198 | slash: 3.0.0 2199 | dev: true 2200 | 2201 | /got/8.3.2: 2202 | resolution: {integrity: sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==} 2203 | engines: {node: '>=4'} 2204 | dependencies: 2205 | '@sindresorhus/is': 0.7.0 2206 | cacheable-request: 2.1.4 2207 | decompress-response: 3.3.0 2208 | duplexer3: 0.1.4 2209 | get-stream: 3.0.0 2210 | into-stream: 3.1.0 2211 | is-retry-allowed: 1.2.0 2212 | isurl: 1.0.0 2213 | lowercase-keys: 1.0.1 2214 | mimic-response: 1.0.1 2215 | p-cancelable: 0.4.1 2216 | p-timeout: 2.0.1 2217 | pify: 3.0.0 2218 | safe-buffer: 5.2.1 2219 | timed-out: 4.0.1 2220 | url-parse-lax: 3.0.0 2221 | url-to-options: 1.0.1 2222 | dev: false 2223 | 2224 | /got/9.6.0: 2225 | resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==} 2226 | engines: {node: '>=8.6'} 2227 | dependencies: 2228 | '@sindresorhus/is': 0.14.0 2229 | '@szmarczak/http-timer': 1.1.2 2230 | cacheable-request: 6.1.0 2231 | decompress-response: 3.3.0 2232 | duplexer3: 0.1.4 2233 | get-stream: 4.1.0 2234 | lowercase-keys: 1.0.1 2235 | mimic-response: 1.0.1 2236 | p-cancelable: 1.1.0 2237 | to-readable-stream: 1.0.0 2238 | url-parse-lax: 3.0.0 2239 | dev: true 2240 | 2241 | /graceful-fs/4.2.9: 2242 | resolution: {integrity: sha512-NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ==} 2243 | 2244 | /has-bigints/1.0.1: 2245 | resolution: {integrity: sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==} 2246 | dev: true 2247 | 2248 | /has-flag/3.0.0: 2249 | resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=} 2250 | engines: {node: '>=4'} 2251 | dev: true 2252 | 2253 | /has-flag/4.0.0: 2254 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 2255 | engines: {node: '>=8'} 2256 | 2257 | /has-symbol-support-x/1.4.2: 2258 | resolution: {integrity: sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==} 2259 | dev: false 2260 | 2261 | /has-symbols/1.0.2: 2262 | resolution: {integrity: sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==} 2263 | engines: {node: '>= 0.4'} 2264 | 2265 | /has-to-string-tag-x/1.4.1: 2266 | resolution: {integrity: sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==} 2267 | dependencies: 2268 | has-symbol-support-x: 1.4.2 2269 | dev: false 2270 | 2271 | /has-tostringtag/1.0.0: 2272 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} 2273 | engines: {node: '>= 0.4'} 2274 | dependencies: 2275 | has-symbols: 1.0.2 2276 | 2277 | /has-yarn/2.1.0: 2278 | resolution: {integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==} 2279 | engines: {node: '>=8'} 2280 | dev: true 2281 | 2282 | /has/1.0.3: 2283 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} 2284 | engines: {node: '>= 0.4.0'} 2285 | dependencies: 2286 | function-bind: 1.1.1 2287 | 2288 | /he/1.2.0: 2289 | resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} 2290 | hasBin: true 2291 | dev: false 2292 | 2293 | /hosted-git-info/2.8.9: 2294 | resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} 2295 | dev: true 2296 | 2297 | /html-to-text/8.1.0: 2298 | resolution: {integrity: sha512-Z9iYAqYK2c18GswSbnxJSeMs7lyJgwR2oIkDOyOHGBbYsPsG4HvT379jj3Lcbfko8A5ceyyMHAfkmp/BiXA9/Q==} 2299 | engines: {node: '>=10.23.2'} 2300 | hasBin: true 2301 | dependencies: 2302 | '@selderee/plugin-htmlparser2': 0.6.0 2303 | deepmerge: 4.2.2 2304 | he: 1.2.0 2305 | htmlparser2: 6.1.0 2306 | minimist: 1.2.5 2307 | selderee: 0.6.0 2308 | dev: false 2309 | 2310 | /htmlparser2/6.1.0: 2311 | resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} 2312 | dependencies: 2313 | domelementtype: 2.2.0 2314 | domhandler: 4.3.0 2315 | domutils: 2.8.0 2316 | entities: 2.2.0 2317 | dev: false 2318 | 2319 | /htmlparser2/7.2.0: 2320 | resolution: {integrity: sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==} 2321 | dependencies: 2322 | domelementtype: 2.2.0 2323 | domhandler: 4.3.0 2324 | domutils: 2.8.0 2325 | entities: 3.0.1 2326 | dev: true 2327 | 2328 | /http-assert/1.5.0: 2329 | resolution: {integrity: sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==} 2330 | engines: {node: '>= 0.8'} 2331 | dependencies: 2332 | deep-equal: 1.0.1 2333 | http-errors: 1.8.1 2334 | dev: false 2335 | 2336 | /http-cache-semantics/3.8.1: 2337 | resolution: {integrity: sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==} 2338 | dev: false 2339 | 2340 | /http-cache-semantics/4.1.0: 2341 | resolution: {integrity: sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==} 2342 | dev: true 2343 | 2344 | /http-errors/1.8.1: 2345 | resolution: {integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==} 2346 | engines: {node: '>= 0.6'} 2347 | dependencies: 2348 | depd: 1.1.2 2349 | inherits: 2.0.4 2350 | setprototypeof: 1.2.0 2351 | statuses: 1.5.0 2352 | toidentifier: 1.0.1 2353 | dev: false 2354 | 2355 | /human-signals/2.1.0: 2356 | resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} 2357 | engines: {node: '>=10.17.0'} 2358 | dev: true 2359 | 2360 | /iconv-lite/0.4.24: 2361 | resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} 2362 | engines: {node: '>=0.10.0'} 2363 | dependencies: 2364 | safer-buffer: 2.1.2 2365 | dev: false 2366 | 2367 | /ieee754/1.2.1: 2368 | resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 2369 | dev: false 2370 | 2371 | /ignore-by-default/1.0.1: 2372 | resolution: {integrity: sha1-SMptcvbGo68Aqa1K5odr44ieKwk=} 2373 | dev: true 2374 | 2375 | /ignore/4.0.6: 2376 | resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} 2377 | engines: {node: '>= 4'} 2378 | dev: true 2379 | 2380 | /ignore/5.2.0: 2381 | resolution: {integrity: sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==} 2382 | engines: {node: '>= 4'} 2383 | dev: true 2384 | 2385 | /import-fresh/3.3.0: 2386 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 2387 | engines: {node: '>=6'} 2388 | dependencies: 2389 | parent-module: 1.0.1 2390 | resolve-from: 4.0.0 2391 | dev: true 2392 | 2393 | /import-lazy/2.1.0: 2394 | resolution: {integrity: sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=} 2395 | engines: {node: '>=4'} 2396 | dev: true 2397 | 2398 | /import-meta-resolve/1.1.1: 2399 | resolution: {integrity: sha512-JiTuIvVyPaUg11eTrNDx5bgQ/yMKMZffc7YSjvQeSMXy58DO2SQ8BtAf3xteZvmzvjYh14wnqNjL8XVeDy2o9A==} 2400 | dependencies: 2401 | builtins: 4.0.0 2402 | dev: true 2403 | 2404 | /imurmurhash/0.1.4: 2405 | resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=} 2406 | engines: {node: '>=0.8.19'} 2407 | dev: true 2408 | 2409 | /indent-string/4.0.0: 2410 | resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} 2411 | engines: {node: '>=8'} 2412 | 2413 | /inflation/2.0.0: 2414 | resolution: {integrity: sha1-i0F+R8KPklpFEz2RTKH9OJEH8w8=} 2415 | engines: {node: '>= 0.8.0'} 2416 | dev: false 2417 | 2418 | /inflight/1.0.6: 2419 | resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=} 2420 | dependencies: 2421 | once: 1.4.0 2422 | wrappy: 1.0.2 2423 | 2424 | /inherits/2.0.4: 2425 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 2426 | 2427 | /ini/1.3.8: 2428 | resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} 2429 | dev: true 2430 | 2431 | /ini/2.0.0: 2432 | resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} 2433 | engines: {node: '>=10'} 2434 | dev: true 2435 | 2436 | /inquirer/8.2.0: 2437 | resolution: {integrity: sha512-0crLweprevJ02tTuA6ThpoAERAGyVILC4sS74uib58Xf/zSr1/ZWtmm7D5CI+bSQEaA04f0K7idaHpQbSWgiVQ==} 2438 | engines: {node: '>=8.0.0'} 2439 | dependencies: 2440 | ansi-escapes: 4.3.2 2441 | chalk: 4.1.2 2442 | cli-cursor: 3.1.0 2443 | cli-width: 3.0.0 2444 | external-editor: 3.1.0 2445 | figures: 3.2.0 2446 | lodash: 4.17.21 2447 | mute-stream: 0.0.8 2448 | ora: 5.4.1 2449 | run-async: 2.4.1 2450 | rxjs: 7.5.2 2451 | string-width: 4.2.3 2452 | strip-ansi: 6.0.1 2453 | through: 2.3.8 2454 | dev: false 2455 | 2456 | /internal-slot/1.0.3: 2457 | resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} 2458 | engines: {node: '>= 0.4'} 2459 | dependencies: 2460 | get-intrinsic: 1.1.1 2461 | has: 1.0.3 2462 | side-channel: 1.0.4 2463 | dev: true 2464 | 2465 | /interpret/1.4.0: 2466 | resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==} 2467 | engines: {node: '>= 0.10'} 2468 | dev: false 2469 | 2470 | /into-stream/3.1.0: 2471 | resolution: {integrity: sha1-lvsKk2wSur1v8XUqF9BWFqvQlMY=} 2472 | engines: {node: '>=4'} 2473 | dependencies: 2474 | from2: 2.3.0 2475 | p-is-promise: 1.1.0 2476 | dev: false 2477 | 2478 | /is-arrayish/0.2.1: 2479 | resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=} 2480 | dev: true 2481 | 2482 | /is-arrayish/0.3.2: 2483 | resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} 2484 | dev: false 2485 | 2486 | /is-bigint/1.0.4: 2487 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 2488 | dependencies: 2489 | has-bigints: 1.0.1 2490 | dev: true 2491 | 2492 | /is-binary-path/2.1.0: 2493 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 2494 | engines: {node: '>=8'} 2495 | dependencies: 2496 | binary-extensions: 2.2.0 2497 | dev: true 2498 | 2499 | /is-boolean-object/1.1.2: 2500 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 2501 | engines: {node: '>= 0.4'} 2502 | dependencies: 2503 | call-bind: 1.0.2 2504 | has-tostringtag: 1.0.0 2505 | dev: true 2506 | 2507 | /is-builtin-module/3.1.0: 2508 | resolution: {integrity: sha512-OV7JjAgOTfAFJmHZLvpSTb4qi0nIILDV1gWPYDnDJUTNFM5aGlRAhk4QcT8i7TuAleeEV5Fdkqn3t4mS+Q11fg==} 2509 | engines: {node: '>=6'} 2510 | dependencies: 2511 | builtin-modules: 3.2.0 2512 | dev: true 2513 | 2514 | /is-callable/1.2.4: 2515 | resolution: {integrity: sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==} 2516 | engines: {node: '>= 0.4'} 2517 | dev: true 2518 | 2519 | /is-ci/2.0.0: 2520 | resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==} 2521 | hasBin: true 2522 | dependencies: 2523 | ci-info: 2.0.0 2524 | dev: true 2525 | 2526 | /is-core-module/2.8.1: 2527 | resolution: {integrity: sha512-SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA==} 2528 | dependencies: 2529 | has: 1.0.3 2530 | 2531 | /is-date-object/1.0.5: 2532 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 2533 | engines: {node: '>= 0.4'} 2534 | dependencies: 2535 | has-tostringtag: 1.0.0 2536 | dev: true 2537 | 2538 | /is-extglob/2.1.1: 2539 | resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=} 2540 | engines: {node: '>=0.10.0'} 2541 | dev: true 2542 | 2543 | /is-fullwidth-code-point/3.0.0: 2544 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 2545 | engines: {node: '>=8'} 2546 | 2547 | /is-generator-function/1.0.10: 2548 | resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} 2549 | engines: {node: '>= 0.4'} 2550 | dependencies: 2551 | has-tostringtag: 1.0.0 2552 | dev: false 2553 | 2554 | /is-glob/4.0.3: 2555 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 2556 | engines: {node: '>=0.10.0'} 2557 | dependencies: 2558 | is-extglob: 2.1.1 2559 | dev: true 2560 | 2561 | /is-installed-globally/0.4.0: 2562 | resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} 2563 | engines: {node: '>=10'} 2564 | dependencies: 2565 | global-dirs: 3.0.0 2566 | is-path-inside: 3.0.3 2567 | dev: true 2568 | 2569 | /is-interactive/1.0.0: 2570 | resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} 2571 | engines: {node: '>=8'} 2572 | dev: false 2573 | 2574 | /is-nan/1.3.2: 2575 | resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} 2576 | engines: {node: '>= 0.4'} 2577 | dependencies: 2578 | call-bind: 1.0.2 2579 | define-properties: 1.1.3 2580 | dev: false 2581 | 2582 | /is-natural-number/4.0.1: 2583 | resolution: {integrity: sha1-q5124dtM7VHjXeDHLr7PCfc0zeg=} 2584 | dev: false 2585 | 2586 | /is-negative-zero/2.0.2: 2587 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} 2588 | engines: {node: '>= 0.4'} 2589 | dev: true 2590 | 2591 | /is-npm/5.0.0: 2592 | resolution: {integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==} 2593 | engines: {node: '>=10'} 2594 | dev: true 2595 | 2596 | /is-number-object/1.0.6: 2597 | resolution: {integrity: sha512-bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==} 2598 | engines: {node: '>= 0.4'} 2599 | dependencies: 2600 | has-tostringtag: 1.0.0 2601 | dev: true 2602 | 2603 | /is-number/7.0.0: 2604 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 2605 | engines: {node: '>=0.12.0'} 2606 | dev: true 2607 | 2608 | /is-obj/2.0.0: 2609 | resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} 2610 | engines: {node: '>=8'} 2611 | dev: true 2612 | 2613 | /is-object/1.0.2: 2614 | resolution: {integrity: sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==} 2615 | dev: false 2616 | 2617 | /is-path-inside/3.0.3: 2618 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 2619 | engines: {node: '>=8'} 2620 | dev: true 2621 | 2622 | /is-plain-obj/1.1.0: 2623 | resolution: {integrity: sha1-caUMhCnfync8kqOQpKA7OfzVHT4=} 2624 | engines: {node: '>=0.10.0'} 2625 | dev: false 2626 | 2627 | /is-regex/1.1.4: 2628 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 2629 | engines: {node: '>= 0.4'} 2630 | dependencies: 2631 | call-bind: 1.0.2 2632 | has-tostringtag: 1.0.0 2633 | dev: true 2634 | 2635 | /is-retry-allowed/1.2.0: 2636 | resolution: {integrity: sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==} 2637 | engines: {node: '>=0.10.0'} 2638 | dev: false 2639 | 2640 | /is-shared-array-buffer/1.0.1: 2641 | resolution: {integrity: sha512-IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==} 2642 | dev: true 2643 | 2644 | /is-stream/1.1.0: 2645 | resolution: {integrity: sha1-EtSj3U5o4Lec6428hBc66A2RykQ=} 2646 | engines: {node: '>=0.10.0'} 2647 | dev: false 2648 | 2649 | /is-stream/2.0.1: 2650 | resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} 2651 | engines: {node: '>=8'} 2652 | 2653 | /is-string/1.0.7: 2654 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 2655 | engines: {node: '>= 0.4'} 2656 | dependencies: 2657 | has-tostringtag: 1.0.0 2658 | dev: true 2659 | 2660 | /is-symbol/1.0.4: 2661 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 2662 | engines: {node: '>= 0.4'} 2663 | dependencies: 2664 | has-symbols: 1.0.2 2665 | dev: true 2666 | 2667 | /is-typedarray/1.0.0: 2668 | resolution: {integrity: sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=} 2669 | dev: true 2670 | 2671 | /is-unicode-supported/0.1.0: 2672 | resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} 2673 | engines: {node: '>=10'} 2674 | dev: false 2675 | 2676 | /is-weakref/1.0.2: 2677 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 2678 | dependencies: 2679 | call-bind: 1.0.2 2680 | dev: true 2681 | 2682 | /is-yarn-global/0.3.0: 2683 | resolution: {integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==} 2684 | dev: true 2685 | 2686 | /isarray/1.0.0: 2687 | resolution: {integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=} 2688 | dev: false 2689 | 2690 | /isexe/2.0.0: 2691 | resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=} 2692 | dev: true 2693 | 2694 | /isurl/1.0.0: 2695 | resolution: {integrity: sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==} 2696 | engines: {node: '>= 4'} 2697 | dependencies: 2698 | has-to-string-tag-x: 1.4.1 2699 | is-object: 1.0.2 2700 | dev: false 2701 | 2702 | /joycon/3.1.1: 2703 | resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} 2704 | engines: {node: '>=10'} 2705 | dev: true 2706 | 2707 | /js-tokens/4.0.0: 2708 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 2709 | dev: true 2710 | 2711 | /js-yaml/4.1.0: 2712 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 2713 | hasBin: true 2714 | dependencies: 2715 | argparse: 2.0.1 2716 | 2717 | /json-buffer/3.0.0: 2718 | resolution: {integrity: sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=} 2719 | 2720 | /json-parse-even-better-errors/2.3.1: 2721 | resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} 2722 | dev: true 2723 | 2724 | /json-schema-traverse/0.4.1: 2725 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 2726 | dev: true 2727 | 2728 | /json-stable-stringify-without-jsonify/1.0.1: 2729 | resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=} 2730 | dev: true 2731 | 2732 | /json5/1.0.1: 2733 | resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==} 2734 | hasBin: true 2735 | dependencies: 2736 | minimist: 1.2.5 2737 | dev: true 2738 | 2739 | /jsonc-eslint-parser/2.1.0: 2740 | resolution: {integrity: sha512-qCRJWlbP2v6HbmKW7R3lFbeiVWHo+oMJ0j+MizwvauqnCV/EvtAeEeuCgoc/ErtsuoKgYB8U4Ih8AxJbXoE6/g==} 2741 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2742 | dependencies: 2743 | acorn: 8.7.0 2744 | eslint-visitor-keys: 3.2.0 2745 | espree: 9.3.0 2746 | semver: 7.3.5 2747 | dev: true 2748 | 2749 | /jsx-ast-utils/3.2.1: 2750 | resolution: {integrity: sha512-uP5vu8xfy2F9A6LGC22KO7e2/vGTS1MhP+18f++ZNlf0Ohaxbc9nIEwHAsejlJKyzfZzU5UIhe5ItYkitcZnZA==} 2751 | engines: {node: '>=4.0'} 2752 | dependencies: 2753 | array-includes: 3.1.4 2754 | object.assign: 4.1.2 2755 | dev: true 2756 | 2757 | /kareem/2.3.3: 2758 | resolution: {integrity: sha512-uESCXM2KdtOQ8LOvKyTUXEeg0MkYp4wGglTIpGcYHvjJcS5sn2Wkfrfit8m4xSbaNDAw2KdI9elgkOxZbrFYbg==} 2759 | dev: false 2760 | 2761 | /keygrip/1.1.0: 2762 | resolution: {integrity: sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==} 2763 | engines: {node: '>= 0.6'} 2764 | dependencies: 2765 | tsscmp: 1.0.6 2766 | dev: false 2767 | 2768 | /keyv/3.0.0: 2769 | resolution: {integrity: sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==} 2770 | dependencies: 2771 | json-buffer: 3.0.0 2772 | dev: false 2773 | 2774 | /keyv/3.1.0: 2775 | resolution: {integrity: sha512-9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA==} 2776 | dependencies: 2777 | json-buffer: 3.0.0 2778 | dev: true 2779 | 2780 | /koa-bodyparser/4.3.0: 2781 | resolution: {integrity: sha512-uyV8G29KAGwZc4q/0WUAjH+Tsmuv9ImfBUF2oZVyZtaeo0husInagyn/JH85xMSxM0hEk/mbCII5ubLDuqW/Rw==} 2782 | engines: {node: '>=8.0.0'} 2783 | dependencies: 2784 | co-body: 6.1.0 2785 | copy-to: 2.0.1 2786 | dev: false 2787 | 2788 | /koa-compose/4.1.0: 2789 | resolution: {integrity: sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==} 2790 | dev: false 2791 | 2792 | /koa-convert/2.0.0: 2793 | resolution: {integrity: sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==} 2794 | engines: {node: '>= 10'} 2795 | dependencies: 2796 | co: 4.6.0 2797 | koa-compose: 4.1.0 2798 | dev: false 2799 | 2800 | /koa/2.13.4: 2801 | resolution: {integrity: sha512-43zkIKubNbnrULWlHdN5h1g3SEKXOEzoAlRsHOTFpnlDu8JlAOZSMJBLULusuXRequboiwJcj5vtYXKB3k7+2g==} 2802 | engines: {node: ^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4} 2803 | dependencies: 2804 | accepts: 1.3.7 2805 | cache-content-type: 1.0.1 2806 | content-disposition: 0.5.4 2807 | content-type: 1.0.4 2808 | cookies: 0.8.0 2809 | debug: 4.3.3 2810 | delegates: 1.0.0 2811 | depd: 2.0.0 2812 | destroy: 1.1.0 2813 | encodeurl: 1.0.2 2814 | escape-html: 1.0.3 2815 | fresh: 0.5.2 2816 | http-assert: 1.5.0 2817 | http-errors: 1.8.1 2818 | is-generator-function: 1.0.10 2819 | koa-compose: 4.1.0 2820 | koa-convert: 2.0.0 2821 | on-finished: 2.3.0 2822 | only: 0.0.2 2823 | parseurl: 1.3.3 2824 | statuses: 1.5.0 2825 | type-is: 1.6.18 2826 | vary: 1.1.2 2827 | transitivePeerDependencies: 2828 | - supports-color 2829 | dev: false 2830 | 2831 | /kuler/2.0.0: 2832 | resolution: {integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==} 2833 | dev: false 2834 | 2835 | /latest-version/5.1.0: 2836 | resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==} 2837 | engines: {node: '>=8'} 2838 | dependencies: 2839 | package-json: 6.5.0 2840 | dev: true 2841 | 2842 | /levn/0.4.1: 2843 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 2844 | engines: {node: '>= 0.8.0'} 2845 | dependencies: 2846 | prelude-ls: 1.2.1 2847 | type-check: 0.4.0 2848 | dev: true 2849 | 2850 | /lilconfig/2.0.4: 2851 | resolution: {integrity: sha512-bfTIN7lEsiooCocSISTWXkiWJkRqtL9wYtYy+8EK3Y41qh3mpwPU0ycTOgjdY9ErwXCc8QyrQp82bdL0Xkm9yA==} 2852 | engines: {node: '>=10'} 2853 | dev: true 2854 | 2855 | /lines-and-columns/1.2.4: 2856 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 2857 | dev: true 2858 | 2859 | /locate-path/2.0.0: 2860 | resolution: {integrity: sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=} 2861 | engines: {node: '>=4'} 2862 | dependencies: 2863 | p-locate: 2.0.0 2864 | path-exists: 3.0.0 2865 | dev: true 2866 | 2867 | /locate-path/5.0.0: 2868 | resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} 2869 | engines: {node: '>=8'} 2870 | dependencies: 2871 | p-locate: 4.1.0 2872 | 2873 | /lodash.merge/4.6.2: 2874 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 2875 | dev: true 2876 | 2877 | /lodash/4.17.21: 2878 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 2879 | 2880 | /log-symbols/4.1.0: 2881 | resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} 2882 | engines: {node: '>=10'} 2883 | dependencies: 2884 | chalk: 4.1.2 2885 | is-unicode-supported: 0.1.0 2886 | dev: false 2887 | 2888 | /logform/2.3.2: 2889 | resolution: {integrity: sha512-V6JiPThZzTsbVRspNO6TmHkR99oqYTs8fivMBYQkjZj6rxW92KxtDCPE6IkAk1DNBnYKNkjm4jYBm6JDUcyhOA==} 2890 | dependencies: 2891 | colors: 1.4.0 2892 | fecha: 4.2.1 2893 | ms: 2.1.3 2894 | safe-stable-stringify: 1.1.1 2895 | triple-beam: 1.3.0 2896 | dev: false 2897 | 2898 | /long-timeout/0.1.1: 2899 | resolution: {integrity: sha1-lyHXiLR+C8taJMLivuGg2lXatRQ=} 2900 | dev: false 2901 | 2902 | /loose-envify/1.4.0: 2903 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 2904 | hasBin: true 2905 | dependencies: 2906 | js-tokens: 4.0.0 2907 | dev: true 2908 | 2909 | /lowercase-keys/1.0.0: 2910 | resolution: {integrity: sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=} 2911 | engines: {node: '>=0.10.0'} 2912 | dev: false 2913 | 2914 | /lowercase-keys/1.0.1: 2915 | resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} 2916 | engines: {node: '>=0.10.0'} 2917 | 2918 | /lowercase-keys/2.0.0: 2919 | resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} 2920 | engines: {node: '>=8'} 2921 | dev: true 2922 | 2923 | /lru-cache/6.0.0: 2924 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 2925 | engines: {node: '>=10'} 2926 | dependencies: 2927 | yallist: 4.0.0 2928 | dev: true 2929 | 2930 | /luxon/1.28.0: 2931 | resolution: {integrity: sha512-TfTiyvZhwBYM/7QdAVDh+7dBTBA29v4ik0Ce9zda3Mnf8on1S5KJI8P2jKFZ8+5C0jhmr0KwJEO/Wdpm0VeWJQ==} 2932 | dev: false 2933 | 2934 | /make-dir/1.3.0: 2935 | resolution: {integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==} 2936 | engines: {node: '>=4'} 2937 | dependencies: 2938 | pify: 3.0.0 2939 | dev: false 2940 | 2941 | /make-dir/2.1.0: 2942 | resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} 2943 | engines: {node: '>=6'} 2944 | dependencies: 2945 | pify: 4.0.1 2946 | semver: 5.7.1 2947 | dev: false 2948 | 2949 | /make-dir/3.1.0: 2950 | resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} 2951 | engines: {node: '>=8'} 2952 | dependencies: 2953 | semver: 6.3.0 2954 | dev: true 2955 | 2956 | /media-typer/0.3.0: 2957 | resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=} 2958 | engines: {node: '>= 0.6'} 2959 | dev: false 2960 | 2961 | /memory-pager/1.5.0: 2962 | resolution: {integrity: sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==} 2963 | dev: false 2964 | optional: true 2965 | 2966 | /merge-stream/2.0.0: 2967 | resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 2968 | dev: true 2969 | 2970 | /merge2/1.4.1: 2971 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 2972 | engines: {node: '>= 8'} 2973 | dev: true 2974 | 2975 | /micromatch/4.0.4: 2976 | resolution: {integrity: sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==} 2977 | engines: {node: '>=8.6'} 2978 | dependencies: 2979 | braces: 3.0.2 2980 | picomatch: 2.3.1 2981 | dev: true 2982 | 2983 | /mime-db/1.51.0: 2984 | resolution: {integrity: sha512-5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==} 2985 | engines: {node: '>= 0.6'} 2986 | dev: false 2987 | 2988 | /mime-types/2.1.34: 2989 | resolution: {integrity: sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==} 2990 | engines: {node: '>= 0.6'} 2991 | dependencies: 2992 | mime-db: 1.51.0 2993 | dev: false 2994 | 2995 | /mimic-fn/2.1.0: 2996 | resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} 2997 | engines: {node: '>=6'} 2998 | 2999 | /mimic-response/1.0.1: 3000 | resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} 3001 | engines: {node: '>=4'} 3002 | 3003 | /min-indent/1.0.1: 3004 | resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} 3005 | engines: {node: '>=4'} 3006 | dev: true 3007 | 3008 | /minimatch/3.0.4: 3009 | resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==} 3010 | dependencies: 3011 | brace-expansion: 1.1.11 3012 | 3013 | /minimist/1.2.5: 3014 | resolution: {integrity: sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==} 3015 | 3016 | /mirai-ts/2.3.5: 3017 | resolution: {integrity: sha512-Si5d2pppsODvRw6a7CigRVF4mdydLC8EBUEKUeo20adZDMItSjshckKbUQBkfE9oTN2jBUSyp6dQsI7JJ3523Q==} 3018 | dependencies: 3019 | '@yunyoujun/logger': 0.2.1 3020 | axios: 0.25.0 3021 | form-data: 4.0.0 3022 | ws: 8.4.2 3023 | transitivePeerDependencies: 3024 | - bufferutil 3025 | - debug 3026 | - utf-8-validate 3027 | dev: false 3028 | 3029 | /mongodb-connection-string-url/2.4.1: 3030 | resolution: {integrity: sha512-d5Kd2bVsKcSA7YI/yo57fSTtMwRQdFkvc5IZwod1RRxJtECeWPPSo7zqcUGJELifRA//Igs4spVtYAmvFCatug==} 3031 | dependencies: 3032 | '@types/whatwg-url': 8.2.1 3033 | whatwg-url: 11.0.0 3034 | dev: false 3035 | 3036 | /mongodb/4.2.2: 3037 | resolution: {integrity: sha512-zt8rCTnTKyMQppyt63qMnrLM5dbADgUk18ORPF1XbtHLIYCyc9hattaYHi0pqMvNxDpgGgUofSVzS+UQErgTug==} 3038 | engines: {node: '>=12.9.0'} 3039 | dependencies: 3040 | bson: 4.6.1 3041 | denque: 2.0.1 3042 | mongodb-connection-string-url: 2.4.1 3043 | optionalDependencies: 3044 | saslprep: 1.0.3 3045 | dev: false 3046 | 3047 | /mongoose/6.1.8: 3048 | resolution: {integrity: sha512-/voqwU2dtet3zAR73r8jdPhqluU1VzIAnk7ecXPJBgyXKREnwQrz40lfW7fLpaqhmMhsAbA+JQ7ICUn2vAVFLw==} 3049 | engines: {node: '>=12.0.0'} 3050 | dependencies: 3051 | '@types/node': 17.0.5 3052 | bson: 4.6.1 3053 | kareem: 2.3.3 3054 | mongodb: 4.2.2 3055 | mpath: 0.8.4 3056 | mquery: 4.0.2 3057 | ms: 2.1.2 3058 | regexp-clone: 1.0.0 3059 | sift: 13.5.2 3060 | transitivePeerDependencies: 3061 | - supports-color 3062 | dev: false 3063 | 3064 | /moo/0.5.1: 3065 | resolution: {integrity: sha512-I1mnb5xn4fO80BH9BLcF0yLypy2UKl+Cb01Fu0hJRkJjlCRtxZMWkTdAtDd5ZqCOxtCkhmRwyI57vWT+1iZ67w==} 3066 | dev: false 3067 | 3068 | /mpath/0.8.4: 3069 | resolution: {integrity: sha512-DTxNZomBcTWlrMW76jy1wvV37X/cNNxPW1y2Jzd4DZkAaC5ZGsm8bfGfNOthcDuRJujXLqiuS6o3Tpy0JEoh7g==} 3070 | engines: {node: '>=4.0.0'} 3071 | dev: false 3072 | 3073 | /mquery/4.0.2: 3074 | resolution: {integrity: sha512-oAVF0Nil1mT3rxty6Zln4YiD6x6QsUWYz927jZzjMxOK2aqmhEz5JQ7xmrKK7xRFA2dwV+YaOpKU/S+vfNqKxA==} 3075 | engines: {node: '>=12.0.0'} 3076 | dependencies: 3077 | debug: 4.3.3 3078 | transitivePeerDependencies: 3079 | - supports-color 3080 | dev: false 3081 | 3082 | /ms/2.0.0: 3083 | resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=} 3084 | dev: true 3085 | 3086 | /ms/2.1.2: 3087 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 3088 | 3089 | /ms/2.1.3: 3090 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 3091 | 3092 | /mute-stream/0.0.8: 3093 | resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} 3094 | dev: false 3095 | 3096 | /mz/2.7.0: 3097 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 3098 | dependencies: 3099 | any-promise: 1.3.0 3100 | object-assign: 4.1.1 3101 | thenify-all: 1.6.0 3102 | dev: true 3103 | 3104 | /natural-compare/1.4.0: 3105 | resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=} 3106 | dev: true 3107 | 3108 | /nearley/2.20.1: 3109 | resolution: {integrity: sha512-+Mc8UaAebFzgV+KpI5n7DasuuQCHA89dmwm7JXw3TV43ukfNQ9DnBH3Mdb2g/I4Fdxc26pwimBWvjIw0UAILSQ==} 3110 | hasBin: true 3111 | dependencies: 3112 | commander: 2.20.3 3113 | moo: 0.5.1 3114 | railroad-diagrams: 1.0.0 3115 | randexp: 0.4.6 3116 | dev: false 3117 | 3118 | /negotiator/0.6.2: 3119 | resolution: {integrity: sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==} 3120 | engines: {node: '>= 0.6'} 3121 | dev: false 3122 | 3123 | /node-schedule/2.1.0: 3124 | resolution: {integrity: sha512-nl4JTiZ7ZQDc97MmpTq9BQjYhq7gOtoh7SiPH069gBFBj0PzD8HI7zyFs6rzqL8Y5tTiEEYLxgtbx034YPrbyQ==} 3125 | engines: {node: '>=6'} 3126 | dependencies: 3127 | cron-parser: 3.5.0 3128 | long-timeout: 0.1.1 3129 | sorted-array-functions: 1.3.0 3130 | dev: false 3131 | 3132 | /nodemon/2.0.15: 3133 | resolution: {integrity: sha512-gdHMNx47Gw7b3kWxJV64NI+Q5nfl0y5DgDbiVtShiwa7Z0IZ07Ll4RLFo6AjrhzMtoEZn5PDE3/c2AbVsiCkpA==} 3134 | engines: {node: '>=8.10.0'} 3135 | hasBin: true 3136 | requiresBuild: true 3137 | dependencies: 3138 | chokidar: 3.5.3 3139 | debug: 3.2.7 3140 | ignore-by-default: 1.0.1 3141 | minimatch: 3.0.4 3142 | pstree.remy: 1.1.8 3143 | semver: 5.7.1 3144 | supports-color: 5.5.0 3145 | touch: 3.1.0 3146 | undefsafe: 2.0.5 3147 | update-notifier: 5.1.0 3148 | dev: true 3149 | 3150 | /nopt/1.0.10: 3151 | resolution: {integrity: sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=} 3152 | hasBin: true 3153 | dependencies: 3154 | abbrev: 1.1.1 3155 | dev: true 3156 | 3157 | /normalize-package-data/2.5.0: 3158 | resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} 3159 | dependencies: 3160 | hosted-git-info: 2.8.9 3161 | resolve: 1.22.0 3162 | semver: 5.7.1 3163 | validate-npm-package-license: 3.0.4 3164 | dev: true 3165 | 3166 | /normalize-path/3.0.0: 3167 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 3168 | engines: {node: '>=0.10.0'} 3169 | dev: true 3170 | 3171 | /normalize-url/2.0.1: 3172 | resolution: {integrity: sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==} 3173 | engines: {node: '>=4'} 3174 | dependencies: 3175 | prepend-http: 2.0.0 3176 | query-string: 5.1.1 3177 | sort-keys: 2.0.0 3178 | dev: false 3179 | 3180 | /normalize-url/4.5.1: 3181 | resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} 3182 | engines: {node: '>=8'} 3183 | dev: true 3184 | 3185 | /npm-run-path/4.0.1: 3186 | resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} 3187 | engines: {node: '>=8'} 3188 | dependencies: 3189 | path-key: 3.1.1 3190 | dev: true 3191 | 3192 | /object-assign/4.1.1: 3193 | resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=} 3194 | engines: {node: '>=0.10.0'} 3195 | 3196 | /object-inspect/1.12.0: 3197 | resolution: {integrity: sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==} 3198 | 3199 | /object-keys/1.1.1: 3200 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 3201 | engines: {node: '>= 0.4'} 3202 | 3203 | /object.assign/4.1.2: 3204 | resolution: {integrity: sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==} 3205 | engines: {node: '>= 0.4'} 3206 | dependencies: 3207 | call-bind: 1.0.2 3208 | define-properties: 1.1.3 3209 | has-symbols: 1.0.2 3210 | object-keys: 1.1.1 3211 | dev: true 3212 | 3213 | /object.entries/1.1.5: 3214 | resolution: {integrity: sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==} 3215 | engines: {node: '>= 0.4'} 3216 | dependencies: 3217 | call-bind: 1.0.2 3218 | define-properties: 1.1.3 3219 | es-abstract: 1.19.1 3220 | dev: true 3221 | 3222 | /object.fromentries/2.0.5: 3223 | resolution: {integrity: sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==} 3224 | engines: {node: '>= 0.4'} 3225 | dependencies: 3226 | call-bind: 1.0.2 3227 | define-properties: 1.1.3 3228 | es-abstract: 1.19.1 3229 | dev: true 3230 | 3231 | /object.hasown/1.1.0: 3232 | resolution: {integrity: sha512-MhjYRfj3GBlhSkDHo6QmvgjRLXQ2zndabdf3nX0yTyZK9rPfxb6uRpAac8HXNLy1GpqWtZ81Qh4v3uOls2sRAg==} 3233 | dependencies: 3234 | define-properties: 1.1.3 3235 | es-abstract: 1.19.1 3236 | dev: true 3237 | 3238 | /object.values/1.1.5: 3239 | resolution: {integrity: sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==} 3240 | engines: {node: '>= 0.4'} 3241 | dependencies: 3242 | call-bind: 1.0.2 3243 | define-properties: 1.1.3 3244 | es-abstract: 1.19.1 3245 | dev: true 3246 | 3247 | /on-finished/2.3.0: 3248 | resolution: {integrity: sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=} 3249 | engines: {node: '>= 0.8'} 3250 | dependencies: 3251 | ee-first: 1.1.1 3252 | dev: false 3253 | 3254 | /once/1.4.0: 3255 | resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=} 3256 | dependencies: 3257 | wrappy: 1.0.2 3258 | 3259 | /one-time/1.0.0: 3260 | resolution: {integrity: sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==} 3261 | dependencies: 3262 | fn.name: 1.1.0 3263 | dev: false 3264 | 3265 | /onetime/5.1.2: 3266 | resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} 3267 | engines: {node: '>=6'} 3268 | dependencies: 3269 | mimic-fn: 2.1.0 3270 | 3271 | /only/0.0.2: 3272 | resolution: {integrity: sha1-Kv3oTQPlC5qO3EROMGEKcCle37Q=} 3273 | dev: false 3274 | 3275 | /optionator/0.9.1: 3276 | resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} 3277 | engines: {node: '>= 0.8.0'} 3278 | dependencies: 3279 | deep-is: 0.1.4 3280 | fast-levenshtein: 2.0.6 3281 | levn: 0.4.1 3282 | prelude-ls: 1.2.1 3283 | type-check: 0.4.0 3284 | word-wrap: 1.2.3 3285 | dev: true 3286 | 3287 | /ora/5.4.1: 3288 | resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} 3289 | engines: {node: '>=10'} 3290 | dependencies: 3291 | bl: 4.1.0 3292 | chalk: 4.1.2 3293 | cli-cursor: 3.1.0 3294 | cli-spinners: 2.6.1 3295 | is-interactive: 1.0.0 3296 | is-unicode-supported: 0.1.0 3297 | log-symbols: 4.1.0 3298 | strip-ansi: 6.0.1 3299 | wcwidth: 1.0.1 3300 | dev: false 3301 | 3302 | /os-tmpdir/1.0.2: 3303 | resolution: {integrity: sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=} 3304 | engines: {node: '>=0.10.0'} 3305 | dev: false 3306 | 3307 | /p-cancelable/0.4.1: 3308 | resolution: {integrity: sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==} 3309 | engines: {node: '>=4'} 3310 | dev: false 3311 | 3312 | /p-cancelable/1.1.0: 3313 | resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} 3314 | engines: {node: '>=6'} 3315 | dev: true 3316 | 3317 | /p-event/2.3.1: 3318 | resolution: {integrity: sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==} 3319 | engines: {node: '>=6'} 3320 | dependencies: 3321 | p-timeout: 2.0.1 3322 | dev: false 3323 | 3324 | /p-finally/1.0.0: 3325 | resolution: {integrity: sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=} 3326 | engines: {node: '>=4'} 3327 | dev: false 3328 | 3329 | /p-is-promise/1.1.0: 3330 | resolution: {integrity: sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=} 3331 | engines: {node: '>=4'} 3332 | dev: false 3333 | 3334 | /p-limit/1.3.0: 3335 | resolution: {integrity: sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==} 3336 | engines: {node: '>=4'} 3337 | dependencies: 3338 | p-try: 1.0.0 3339 | dev: true 3340 | 3341 | /p-limit/2.3.0: 3342 | resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} 3343 | engines: {node: '>=6'} 3344 | dependencies: 3345 | p-try: 2.2.0 3346 | 3347 | /p-locate/2.0.0: 3348 | resolution: {integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=} 3349 | engines: {node: '>=4'} 3350 | dependencies: 3351 | p-limit: 1.3.0 3352 | dev: true 3353 | 3354 | /p-locate/4.1.0: 3355 | resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} 3356 | engines: {node: '>=8'} 3357 | dependencies: 3358 | p-limit: 2.3.0 3359 | 3360 | /p-timeout/2.0.1: 3361 | resolution: {integrity: sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==} 3362 | engines: {node: '>=4'} 3363 | dependencies: 3364 | p-finally: 1.0.0 3365 | dev: false 3366 | 3367 | /p-try/1.0.0: 3368 | resolution: {integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=} 3369 | engines: {node: '>=4'} 3370 | dev: true 3371 | 3372 | /p-try/2.2.0: 3373 | resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} 3374 | engines: {node: '>=6'} 3375 | 3376 | /package-json/6.5.0: 3377 | resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==} 3378 | engines: {node: '>=8'} 3379 | dependencies: 3380 | got: 9.6.0 3381 | registry-auth-token: 4.2.1 3382 | registry-url: 5.1.0 3383 | semver: 6.3.0 3384 | dev: true 3385 | 3386 | /parent-module/1.0.1: 3387 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 3388 | engines: {node: '>=6'} 3389 | dependencies: 3390 | callsites: 3.1.0 3391 | dev: true 3392 | 3393 | /parse-json/5.2.0: 3394 | resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} 3395 | engines: {node: '>=8'} 3396 | dependencies: 3397 | '@babel/code-frame': 7.16.7 3398 | error-ex: 1.3.2 3399 | json-parse-even-better-errors: 2.3.1 3400 | lines-and-columns: 1.2.4 3401 | dev: true 3402 | 3403 | /parseley/0.7.0: 3404 | resolution: {integrity: sha512-xyOytsdDu077M3/46Am+2cGXEKM9U9QclBDv7fimY7e+BBlxh2JcBp2mgNsmkyA9uvgyTjVzDi7cP1v4hcFxbw==} 3405 | dependencies: 3406 | moo: 0.5.1 3407 | nearley: 2.20.1 3408 | dev: false 3409 | 3410 | /parseurl/1.3.3: 3411 | resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} 3412 | engines: {node: '>= 0.8'} 3413 | dev: false 3414 | 3415 | /path-exists/3.0.0: 3416 | resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=} 3417 | engines: {node: '>=4'} 3418 | dev: true 3419 | 3420 | /path-exists/4.0.0: 3421 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 3422 | engines: {node: '>=8'} 3423 | 3424 | /path-is-absolute/1.0.1: 3425 | resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=} 3426 | engines: {node: '>=0.10.0'} 3427 | 3428 | /path-key/3.1.1: 3429 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 3430 | engines: {node: '>=8'} 3431 | dev: true 3432 | 3433 | /path-parse/1.0.7: 3434 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 3435 | 3436 | /path-type/4.0.0: 3437 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 3438 | engines: {node: '>=8'} 3439 | dev: true 3440 | 3441 | /pend/1.2.0: 3442 | resolution: {integrity: sha1-elfrVQpng/kRUzH89GY9XI4AelA=} 3443 | dev: false 3444 | 3445 | /picomatch/2.3.1: 3446 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 3447 | engines: {node: '>=8.6'} 3448 | dev: true 3449 | 3450 | /pify/2.3.0: 3451 | resolution: {integrity: sha1-7RQaasBDqEnqWISY59yosVMw6Qw=} 3452 | engines: {node: '>=0.10.0'} 3453 | dev: false 3454 | 3455 | /pify/3.0.0: 3456 | resolution: {integrity: sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=} 3457 | engines: {node: '>=4'} 3458 | dev: false 3459 | 3460 | /pify/4.0.1: 3461 | resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} 3462 | engines: {node: '>=6'} 3463 | dev: false 3464 | 3465 | /pinkie-promise/2.0.1: 3466 | resolution: {integrity: sha1-ITXW36ejWMBprJsXh3YogihFD/o=} 3467 | engines: {node: '>=0.10.0'} 3468 | dependencies: 3469 | pinkie: 2.0.4 3470 | dev: false 3471 | 3472 | /pinkie/2.0.4: 3473 | resolution: {integrity: sha1-clVrgM+g1IqXToDnckjoDtT3+HA=} 3474 | engines: {node: '>=0.10.0'} 3475 | dev: false 3476 | 3477 | /pirates/4.0.5: 3478 | resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==} 3479 | engines: {node: '>= 6'} 3480 | dev: true 3481 | 3482 | /pluralize/8.0.0: 3483 | resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} 3484 | engines: {node: '>=4'} 3485 | dev: true 3486 | 3487 | /pngjs/5.0.0: 3488 | resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==} 3489 | engines: {node: '>=10.13.0'} 3490 | dev: false 3491 | 3492 | /postcss-load-config/3.1.1: 3493 | resolution: {integrity: sha512-c/9XYboIbSEUZpiD1UQD0IKiUe8n9WHYV7YFe7X7J+ZwCsEKkUJSFWjS9hBU1RR9THR7jMXst8sxiqP0jjo2mg==} 3494 | engines: {node: '>= 10'} 3495 | peerDependencies: 3496 | ts-node: '>=9.0.0' 3497 | peerDependenciesMeta: 3498 | ts-node: 3499 | optional: true 3500 | dependencies: 3501 | lilconfig: 2.0.4 3502 | yaml: 1.10.2 3503 | dev: true 3504 | 3505 | /prelude-ls/1.2.1: 3506 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 3507 | engines: {node: '>= 0.8.0'} 3508 | dev: true 3509 | 3510 | /prepend-http/2.0.0: 3511 | resolution: {integrity: sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=} 3512 | engines: {node: '>=4'} 3513 | 3514 | /process-nextick-args/2.0.1: 3515 | resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} 3516 | dev: false 3517 | 3518 | /progress/2.0.3: 3519 | resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} 3520 | engines: {node: '>=0.4.0'} 3521 | dev: false 3522 | 3523 | /prop-types/15.8.1: 3524 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 3525 | dependencies: 3526 | loose-envify: 1.4.0 3527 | object-assign: 4.1.1 3528 | react-is: 16.13.1 3529 | dev: true 3530 | 3531 | /pstree.remy/1.1.8: 3532 | resolution: {integrity: sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==} 3533 | dev: true 3534 | 3535 | /pump/3.0.0: 3536 | resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} 3537 | dependencies: 3538 | end-of-stream: 1.4.4 3539 | once: 1.4.0 3540 | 3541 | /punycode/2.1.1: 3542 | resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==} 3543 | engines: {node: '>=6'} 3544 | 3545 | /pupa/2.1.1: 3546 | resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==} 3547 | engines: {node: '>=8'} 3548 | dependencies: 3549 | escape-goat: 2.1.1 3550 | dev: true 3551 | 3552 | /qrcode/1.5.0: 3553 | resolution: {integrity: sha512-9MgRpgVc+/+47dFvQeD6U2s0Z92EsKzcHogtum4QB+UNd025WOJSHvn/hjk9xmzj7Stj95CyUAs31mrjxliEsQ==} 3554 | engines: {node: '>=10.13.0'} 3555 | hasBin: true 3556 | dependencies: 3557 | dijkstrajs: 1.0.2 3558 | encode-utf8: 1.0.3 3559 | pngjs: 5.0.0 3560 | yargs: 15.4.1 3561 | dev: false 3562 | 3563 | /qs/6.10.3: 3564 | resolution: {integrity: sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==} 3565 | engines: {node: '>=0.6'} 3566 | dependencies: 3567 | side-channel: 1.0.4 3568 | dev: false 3569 | 3570 | /query-string/5.1.1: 3571 | resolution: {integrity: sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==} 3572 | engines: {node: '>=0.10.0'} 3573 | dependencies: 3574 | decode-uri-component: 0.2.0 3575 | object-assign: 4.1.1 3576 | strict-uri-encode: 1.1.0 3577 | dev: false 3578 | 3579 | /queue-microtask/1.2.3: 3580 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 3581 | dev: true 3582 | 3583 | /railroad-diagrams/1.0.0: 3584 | resolution: {integrity: sha1-635iZ1SN3t+4mcG5Dlc3RVnN234=} 3585 | dev: false 3586 | 3587 | /randexp/0.4.6: 3588 | resolution: {integrity: sha512-80WNmd9DA0tmZrw9qQa62GPPWfuXJknrmVmLcxvq4uZBdYqb1wYoKTmnlGUchvVWe0XiLupYkBoXVOxz3C8DYQ==} 3589 | engines: {node: '>=0.12'} 3590 | dependencies: 3591 | discontinuous-range: 1.0.0 3592 | ret: 0.1.15 3593 | dev: false 3594 | 3595 | /raw-body/2.4.2: 3596 | resolution: {integrity: sha512-RPMAFUJP19WIet/99ngh6Iv8fzAbqum4Li7AD6DtGaW2RpMB/11xDoalPiJMTbu6I3hkbMVkATvZrqb9EEqeeQ==} 3597 | engines: {node: '>= 0.8'} 3598 | dependencies: 3599 | bytes: 3.1.1 3600 | http-errors: 1.8.1 3601 | iconv-lite: 0.4.24 3602 | unpipe: 1.0.0 3603 | dev: false 3604 | 3605 | /rc/1.2.8: 3606 | resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} 3607 | hasBin: true 3608 | dependencies: 3609 | deep-extend: 0.6.0 3610 | ini: 1.3.8 3611 | minimist: 1.2.5 3612 | strip-json-comments: 2.0.1 3613 | dev: true 3614 | 3615 | /react-is/16.13.1: 3616 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 3617 | dev: true 3618 | 3619 | /read-pkg-up/7.0.1: 3620 | resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} 3621 | engines: {node: '>=8'} 3622 | dependencies: 3623 | find-up: 4.1.0 3624 | read-pkg: 5.2.0 3625 | type-fest: 0.8.1 3626 | dev: true 3627 | 3628 | /read-pkg/5.2.0: 3629 | resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} 3630 | engines: {node: '>=8'} 3631 | dependencies: 3632 | '@types/normalize-package-data': 2.4.1 3633 | normalize-package-data: 2.5.0 3634 | parse-json: 5.2.0 3635 | type-fest: 0.6.0 3636 | dev: true 3637 | 3638 | /readable-stream/2.3.7: 3639 | resolution: {integrity: sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==} 3640 | dependencies: 3641 | core-util-is: 1.0.3 3642 | inherits: 2.0.4 3643 | isarray: 1.0.0 3644 | process-nextick-args: 2.0.1 3645 | safe-buffer: 5.1.2 3646 | string_decoder: 1.1.1 3647 | util-deprecate: 1.0.2 3648 | dev: false 3649 | 3650 | /readable-stream/3.6.0: 3651 | resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==} 3652 | engines: {node: '>= 6'} 3653 | dependencies: 3654 | inherits: 2.0.4 3655 | string_decoder: 1.3.0 3656 | util-deprecate: 1.0.2 3657 | dev: false 3658 | 3659 | /readdirp/3.6.0: 3660 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 3661 | engines: {node: '>=8.10.0'} 3662 | dependencies: 3663 | picomatch: 2.3.1 3664 | dev: true 3665 | 3666 | /rechoir/0.6.2: 3667 | resolution: {integrity: sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=} 3668 | engines: {node: '>= 0.10'} 3669 | dependencies: 3670 | resolve: 1.22.0 3671 | dev: false 3672 | 3673 | /regexp-clone/1.0.0: 3674 | resolution: {integrity: sha512-TuAasHQNamyyJ2hb97IuBEif4qBHGjPHBS64sZwytpLEqtBQ1gPJTnOaQ6qmpET16cK14kkjbazl6+p0RRv0yw==} 3675 | dev: false 3676 | 3677 | /regexp-tree/0.1.24: 3678 | resolution: {integrity: sha512-s2aEVuLhvnVJW6s/iPgEGK6R+/xngd2jNQ+xy4bXNDKxZKJH6jpPHY6kVeVv1IeLCHgswRj+Kl3ELaDjG6V1iw==} 3679 | hasBin: true 3680 | dev: true 3681 | 3682 | /regexp.prototype.flags/1.4.1: 3683 | resolution: {integrity: sha512-pMR7hBVUUGI7PMA37m2ofIdQCsomVnas+Jn5UPGAHQ+/LlwKm/aTLJHdasmHRzlfeZwHiAOaRSo2rbBDm3nNUQ==} 3684 | engines: {node: '>= 0.4'} 3685 | dependencies: 3686 | call-bind: 1.0.2 3687 | define-properties: 1.1.3 3688 | dev: true 3689 | 3690 | /regexpp/3.2.0: 3691 | resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} 3692 | engines: {node: '>=8'} 3693 | dev: true 3694 | 3695 | /registry-auth-token/4.2.1: 3696 | resolution: {integrity: sha512-6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==} 3697 | engines: {node: '>=6.0.0'} 3698 | dependencies: 3699 | rc: 1.2.8 3700 | dev: true 3701 | 3702 | /registry-url/5.1.0: 3703 | resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==} 3704 | engines: {node: '>=8'} 3705 | dependencies: 3706 | rc: 1.2.8 3707 | dev: true 3708 | 3709 | /require-directory/2.1.1: 3710 | resolution: {integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=} 3711 | engines: {node: '>=0.10.0'} 3712 | dev: false 3713 | 3714 | /require-main-filename/2.0.0: 3715 | resolution: {integrity: sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==} 3716 | dev: false 3717 | 3718 | /resolve-from/4.0.0: 3719 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 3720 | engines: {node: '>=4'} 3721 | dev: true 3722 | 3723 | /resolve-from/5.0.0: 3724 | resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} 3725 | engines: {node: '>=8'} 3726 | dev: true 3727 | 3728 | /resolve/1.22.0: 3729 | resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==} 3730 | hasBin: true 3731 | dependencies: 3732 | is-core-module: 2.8.1 3733 | path-parse: 1.0.7 3734 | supports-preserve-symlinks-flag: 1.0.0 3735 | 3736 | /resolve/2.0.0-next.3: 3737 | resolution: {integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==} 3738 | dependencies: 3739 | is-core-module: 2.8.1 3740 | path-parse: 1.0.7 3741 | dev: true 3742 | 3743 | /responselike/1.0.2: 3744 | resolution: {integrity: sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=} 3745 | dependencies: 3746 | lowercase-keys: 1.0.1 3747 | 3748 | /restore-cursor/3.1.0: 3749 | resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} 3750 | engines: {node: '>=8'} 3751 | dependencies: 3752 | onetime: 5.1.2 3753 | signal-exit: 3.0.6 3754 | dev: false 3755 | 3756 | /ret/0.1.15: 3757 | resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} 3758 | engines: {node: '>=0.12'} 3759 | dev: false 3760 | 3761 | /reusify/1.0.4: 3762 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 3763 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 3764 | dev: true 3765 | 3766 | /rimraf/3.0.2: 3767 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 3768 | hasBin: true 3769 | dependencies: 3770 | glob: 7.2.0 3771 | dev: true 3772 | 3773 | /rollup/2.66.1: 3774 | resolution: {integrity: sha512-crSgLhSkLMnKr4s9iZ/1qJCplgAgrRY+igWv8KhG/AjKOJ0YX/WpmANyn8oxrw+zenF3BXWDLa7Xl/QZISH+7w==} 3775 | engines: {node: '>=10.0.0'} 3776 | hasBin: true 3777 | optionalDependencies: 3778 | fsevents: 2.3.2 3779 | dev: true 3780 | 3781 | /rss-parser/3.12.0: 3782 | resolution: {integrity: sha512-aqD3E8iavcCdkhVxNDIdg1nkBI17jgqF+9OqPS1orwNaOgySdpvq6B+DoONLhzjzwV8mWg37sb60e4bmLK117A==} 3783 | dependencies: 3784 | entities: 2.2.0 3785 | xml2js: 0.4.23 3786 | dev: false 3787 | 3788 | /run-async/2.4.1: 3789 | resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} 3790 | engines: {node: '>=0.12.0'} 3791 | dev: false 3792 | 3793 | /run-parallel/1.2.0: 3794 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 3795 | dependencies: 3796 | queue-microtask: 1.2.3 3797 | dev: true 3798 | 3799 | /rxjs/7.5.2: 3800 | resolution: {integrity: sha512-PwDt186XaL3QN5qXj/H9DGyHhP3/RYYgZZwqBv9Tv8rsAaiwFH1IsJJlcgD37J7UW5a6O67qX0KWKS3/pu0m4w==} 3801 | dependencies: 3802 | tslib: 2.3.1 3803 | dev: false 3804 | 3805 | /safe-buffer/5.1.2: 3806 | resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} 3807 | dev: false 3808 | 3809 | /safe-buffer/5.2.1: 3810 | resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 3811 | dev: false 3812 | 3813 | /safe-regex/2.1.1: 3814 | resolution: {integrity: sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A==} 3815 | dependencies: 3816 | regexp-tree: 0.1.24 3817 | dev: true 3818 | 3819 | /safe-stable-stringify/1.1.1: 3820 | resolution: {integrity: sha512-ERq4hUjKDbJfE4+XtZLFPCDi8Vb1JqaxAPTxWFLBx8XcAlf9Bda/ZJdVezs/NAfsMQScyIlUMx+Yeu7P7rx5jw==} 3821 | dev: false 3822 | 3823 | /safer-buffer/2.1.2: 3824 | resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 3825 | dev: false 3826 | 3827 | /saslprep/1.0.3: 3828 | resolution: {integrity: sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag==} 3829 | engines: {node: '>=6'} 3830 | requiresBuild: true 3831 | dependencies: 3832 | sparse-bitfield: 3.0.3 3833 | dev: false 3834 | optional: true 3835 | 3836 | /sax/1.2.4: 3837 | resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} 3838 | dev: false 3839 | 3840 | /seek-bzip/1.0.6: 3841 | resolution: {integrity: sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==} 3842 | hasBin: true 3843 | dependencies: 3844 | commander: 2.20.3 3845 | dev: false 3846 | 3847 | /selderee/0.6.0: 3848 | resolution: {integrity: sha512-ibqWGV5aChDvfVdqNYuaJP/HnVBhlRGSRrlbttmlMpHcLuTqqbMH36QkSs9GEgj5M88JDYLI8eyP94JaQ8xRlg==} 3849 | dependencies: 3850 | parseley: 0.7.0 3851 | dev: false 3852 | 3853 | /semver-diff/3.1.1: 3854 | resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==} 3855 | engines: {node: '>=8'} 3856 | dependencies: 3857 | semver: 6.3.0 3858 | dev: true 3859 | 3860 | /semver/5.7.1: 3861 | resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} 3862 | hasBin: true 3863 | 3864 | /semver/6.3.0: 3865 | resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} 3866 | hasBin: true 3867 | dev: true 3868 | 3869 | /semver/7.3.5: 3870 | resolution: {integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==} 3871 | engines: {node: '>=10'} 3872 | hasBin: true 3873 | dependencies: 3874 | lru-cache: 6.0.0 3875 | dev: true 3876 | 3877 | /set-blocking/2.0.0: 3878 | resolution: {integrity: sha1-BF+XgtARrppoA93TgrJDkrPYkPc=} 3879 | dev: false 3880 | 3881 | /setprototypeof/1.2.0: 3882 | resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} 3883 | dev: false 3884 | 3885 | /shebang-command/2.0.0: 3886 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 3887 | engines: {node: '>=8'} 3888 | dependencies: 3889 | shebang-regex: 3.0.0 3890 | dev: true 3891 | 3892 | /shebang-regex/3.0.0: 3893 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 3894 | engines: {node: '>=8'} 3895 | dev: true 3896 | 3897 | /shelljs/0.8.5: 3898 | resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==} 3899 | engines: {node: '>=4'} 3900 | hasBin: true 3901 | dependencies: 3902 | glob: 7.2.0 3903 | interpret: 1.4.0 3904 | rechoir: 0.6.2 3905 | dev: false 3906 | 3907 | /side-channel/1.0.4: 3908 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} 3909 | dependencies: 3910 | call-bind: 1.0.2 3911 | get-intrinsic: 1.1.1 3912 | object-inspect: 1.12.0 3913 | 3914 | /sift/13.5.2: 3915 | resolution: {integrity: sha512-+gxdEOMA2J+AI+fVsCqeNn7Tgx3M9ZN9jdi95939l1IJ8cZsqS8sqpJyOkic2SJk+1+98Uwryt/gL6XDaV+UZA==} 3916 | dev: false 3917 | 3918 | /signal-exit/3.0.6: 3919 | resolution: {integrity: sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==} 3920 | 3921 | /simple-swizzle/0.2.2: 3922 | resolution: {integrity: sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=} 3923 | dependencies: 3924 | is-arrayish: 0.3.2 3925 | dev: false 3926 | 3927 | /slash/3.0.0: 3928 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 3929 | engines: {node: '>=8'} 3930 | dev: true 3931 | 3932 | /sort-keys-length/1.0.1: 3933 | resolution: {integrity: sha1-nLb09OnkgVWmqgZx7dM2/xR5oYg=} 3934 | engines: {node: '>=0.10.0'} 3935 | dependencies: 3936 | sort-keys: 1.1.2 3937 | dev: false 3938 | 3939 | /sort-keys/1.1.2: 3940 | resolution: {integrity: sha1-RBttTTRnmPG05J6JIK37oOVD+a0=} 3941 | engines: {node: '>=0.10.0'} 3942 | dependencies: 3943 | is-plain-obj: 1.1.0 3944 | dev: false 3945 | 3946 | /sort-keys/2.0.0: 3947 | resolution: {integrity: sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=} 3948 | engines: {node: '>=4'} 3949 | dependencies: 3950 | is-plain-obj: 1.1.0 3951 | dev: false 3952 | 3953 | /sorted-array-functions/1.3.0: 3954 | resolution: {integrity: sha512-2sqgzeFlid6N4Z2fUQ1cvFmTOLRi/sEDzSQ0OKYchqgoPmQBVyM3959qYx3fpS6Esef80KjmpgPeEr028dP3OA==} 3955 | dev: false 3956 | 3957 | /source-map/0.7.3: 3958 | resolution: {integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==} 3959 | engines: {node: '>= 8'} 3960 | dev: true 3961 | 3962 | /sparse-bitfield/3.0.3: 3963 | resolution: {integrity: sha1-/0rm5oZWBWuks+eSqzM004JzyhE=} 3964 | dependencies: 3965 | memory-pager: 1.5.0 3966 | dev: false 3967 | optional: true 3968 | 3969 | /spdx-correct/3.1.1: 3970 | resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==} 3971 | dependencies: 3972 | spdx-expression-parse: 3.0.1 3973 | spdx-license-ids: 3.0.11 3974 | dev: true 3975 | 3976 | /spdx-exceptions/2.3.0: 3977 | resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} 3978 | dev: true 3979 | 3980 | /spdx-expression-parse/3.0.1: 3981 | resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} 3982 | dependencies: 3983 | spdx-exceptions: 2.3.0 3984 | spdx-license-ids: 3.0.11 3985 | dev: true 3986 | 3987 | /spdx-license-ids/3.0.11: 3988 | resolution: {integrity: sha512-Ctl2BrFiM0X3MANYgj3CkygxhRmr9mi6xhejbdO960nF6EDJApTYpn0BQnDKlnNBULKiCN1n3w9EBkHK8ZWg+g==} 3989 | dev: true 3990 | 3991 | /stack-trace/0.0.10: 3992 | resolution: {integrity: sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=} 3993 | dev: false 3994 | 3995 | /statuses/1.5.0: 3996 | resolution: {integrity: sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=} 3997 | engines: {node: '>= 0.6'} 3998 | dev: false 3999 | 4000 | /strict-uri-encode/1.1.0: 4001 | resolution: {integrity: sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=} 4002 | engines: {node: '>=0.10.0'} 4003 | dev: false 4004 | 4005 | /string-width/4.2.3: 4006 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 4007 | engines: {node: '>=8'} 4008 | dependencies: 4009 | emoji-regex: 8.0.0 4010 | is-fullwidth-code-point: 3.0.0 4011 | strip-ansi: 6.0.1 4012 | 4013 | /string.prototype.matchall/4.0.6: 4014 | resolution: {integrity: sha512-6WgDX8HmQqvEd7J+G6VtAahhsQIssiZ8zl7zKh1VDMFyL3hRTJP4FTNA3RbIp2TOQ9AYNDcc7e3fH0Qbup+DBg==} 4015 | dependencies: 4016 | call-bind: 1.0.2 4017 | define-properties: 1.1.3 4018 | es-abstract: 1.19.1 4019 | get-intrinsic: 1.1.1 4020 | has-symbols: 1.0.2 4021 | internal-slot: 1.0.3 4022 | regexp.prototype.flags: 1.4.1 4023 | side-channel: 1.0.4 4024 | dev: true 4025 | 4026 | /string.prototype.trimend/1.0.4: 4027 | resolution: {integrity: sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==} 4028 | dependencies: 4029 | call-bind: 1.0.2 4030 | define-properties: 1.1.3 4031 | dev: true 4032 | 4033 | /string.prototype.trimstart/1.0.4: 4034 | resolution: {integrity: sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==} 4035 | dependencies: 4036 | call-bind: 1.0.2 4037 | define-properties: 1.1.3 4038 | dev: true 4039 | 4040 | /string_decoder/1.1.1: 4041 | resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} 4042 | dependencies: 4043 | safe-buffer: 5.1.2 4044 | dev: false 4045 | 4046 | /string_decoder/1.3.0: 4047 | resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 4048 | dependencies: 4049 | safe-buffer: 5.2.1 4050 | dev: false 4051 | 4052 | /strip-ansi/6.0.1: 4053 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 4054 | engines: {node: '>=8'} 4055 | dependencies: 4056 | ansi-regex: 5.0.1 4057 | 4058 | /strip-bom/3.0.0: 4059 | resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=} 4060 | engines: {node: '>=4'} 4061 | dev: true 4062 | 4063 | /strip-dirs/2.1.0: 4064 | resolution: {integrity: sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==} 4065 | dependencies: 4066 | is-natural-number: 4.0.1 4067 | dev: false 4068 | 4069 | /strip-final-newline/2.0.0: 4070 | resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} 4071 | engines: {node: '>=6'} 4072 | dev: true 4073 | 4074 | /strip-indent/3.0.0: 4075 | resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} 4076 | engines: {node: '>=8'} 4077 | dependencies: 4078 | min-indent: 1.0.1 4079 | dev: true 4080 | 4081 | /strip-json-comments/2.0.1: 4082 | resolution: {integrity: sha1-PFMZQukIwml8DsNEhYwobHygpgo=} 4083 | engines: {node: '>=0.10.0'} 4084 | dev: true 4085 | 4086 | /strip-json-comments/3.1.1: 4087 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 4088 | engines: {node: '>=8'} 4089 | dev: true 4090 | 4091 | /strip-outer/1.0.1: 4092 | resolution: {integrity: sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==} 4093 | engines: {node: '>=0.10.0'} 4094 | dependencies: 4095 | escape-string-regexp: 1.0.5 4096 | dev: false 4097 | 4098 | /sucrase/3.20.3: 4099 | resolution: {integrity: sha512-azqwq0/Bs6RzLAdb4dXxsCgMtAaD2hzmUr4UhSfsxO46JFPAwMnnb441B/qsudZiS6Ylea3JXZe3Q497lsgXzQ==} 4100 | engines: {node: '>=8'} 4101 | hasBin: true 4102 | dependencies: 4103 | commander: 4.1.1 4104 | glob: 7.1.6 4105 | lines-and-columns: 1.2.4 4106 | mz: 2.7.0 4107 | pirates: 4.0.5 4108 | ts-interface-checker: 0.1.13 4109 | dev: true 4110 | 4111 | /supports-color/5.5.0: 4112 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 4113 | engines: {node: '>=4'} 4114 | dependencies: 4115 | has-flag: 3.0.0 4116 | dev: true 4117 | 4118 | /supports-color/7.2.0: 4119 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 4120 | engines: {node: '>=8'} 4121 | dependencies: 4122 | has-flag: 4.0.0 4123 | 4124 | /supports-preserve-symlinks-flag/1.0.0: 4125 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 4126 | engines: {node: '>= 0.4'} 4127 | 4128 | /tar-stream/1.6.2: 4129 | resolution: {integrity: sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==} 4130 | engines: {node: '>= 0.8.0'} 4131 | dependencies: 4132 | bl: 1.2.3 4133 | buffer-alloc: 1.2.0 4134 | end-of-stream: 1.4.4 4135 | fs-constants: 1.0.0 4136 | readable-stream: 2.3.7 4137 | to-buffer: 1.1.1 4138 | xtend: 4.0.2 4139 | dev: false 4140 | 4141 | /text-hex/1.0.0: 4142 | resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==} 4143 | dev: false 4144 | 4145 | /text-table/0.2.0: 4146 | resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=} 4147 | dev: true 4148 | 4149 | /thenify-all/1.6.0: 4150 | resolution: {integrity: sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=} 4151 | engines: {node: '>=0.8'} 4152 | dependencies: 4153 | thenify: 3.3.1 4154 | dev: true 4155 | 4156 | /thenify/3.3.1: 4157 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 4158 | dependencies: 4159 | any-promise: 1.3.0 4160 | dev: true 4161 | 4162 | /through/2.3.8: 4163 | resolution: {integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=} 4164 | dev: false 4165 | 4166 | /timed-out/4.0.1: 4167 | resolution: {integrity: sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=} 4168 | engines: {node: '>=0.10.0'} 4169 | dev: false 4170 | 4171 | /tmp/0.0.33: 4172 | resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} 4173 | engines: {node: '>=0.6.0'} 4174 | dependencies: 4175 | os-tmpdir: 1.0.2 4176 | dev: false 4177 | 4178 | /to-buffer/1.1.1: 4179 | resolution: {integrity: sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==} 4180 | dev: false 4181 | 4182 | /to-readable-stream/1.0.0: 4183 | resolution: {integrity: sha512-Iq25XBt6zD5npPhlLVXGFN3/gyR2/qODcKNNyTMd4vbm39HUaOiAM4PMq0eMVC/Tkxz+Zjdsc55g9yyz+Yq00Q==} 4184 | engines: {node: '>=6'} 4185 | dev: true 4186 | 4187 | /to-regex-range/5.0.1: 4188 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 4189 | engines: {node: '>=8.0'} 4190 | dependencies: 4191 | is-number: 7.0.0 4192 | dev: true 4193 | 4194 | /toidentifier/1.0.1: 4195 | resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} 4196 | engines: {node: '>=0.6'} 4197 | dev: false 4198 | 4199 | /touch/3.1.0: 4200 | resolution: {integrity: sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==} 4201 | hasBin: true 4202 | dependencies: 4203 | nopt: 1.0.10 4204 | dev: true 4205 | 4206 | /tr46/3.0.0: 4207 | resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} 4208 | engines: {node: '>=12'} 4209 | dependencies: 4210 | punycode: 2.1.1 4211 | dev: false 4212 | 4213 | /tree-kill/1.2.2: 4214 | resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} 4215 | hasBin: true 4216 | dev: true 4217 | 4218 | /trim-repeated/1.0.0: 4219 | resolution: {integrity: sha1-42RqLqTokTEr9+rObPsFOAvAHCE=} 4220 | engines: {node: '>=0.10.0'} 4221 | dependencies: 4222 | escape-string-regexp: 1.0.5 4223 | dev: false 4224 | 4225 | /triple-beam/1.3.0: 4226 | resolution: {integrity: sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw==} 4227 | dev: false 4228 | 4229 | /ts-interface-checker/0.1.13: 4230 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 4231 | dev: true 4232 | 4233 | /tsconfig-paths/3.12.0: 4234 | resolution: {integrity: sha512-e5adrnOYT6zqVnWqZu7i/BQ3BnhzvGbjEjejFXO20lKIKpwTaupkCPgEfv4GZK1IBciJUEhYs3J3p75FdaTFVg==} 4235 | dependencies: 4236 | '@types/json5': 0.0.29 4237 | json5: 1.0.1 4238 | minimist: 1.2.5 4239 | strip-bom: 3.0.0 4240 | dev: true 4241 | 4242 | /tslib/1.14.1: 4243 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} 4244 | dev: true 4245 | 4246 | /tslib/2.3.1: 4247 | resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==} 4248 | dev: false 4249 | 4250 | /tsscmp/1.0.6: 4251 | resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==} 4252 | engines: {node: '>=0.6.x'} 4253 | dev: false 4254 | 4255 | /tsup/5.11.11_typescript@4.5.5: 4256 | resolution: {integrity: sha512-rgbTu+KhAI9PdGUS07rKohDXbRLTstBGJaxl75q7RZYRGF+n+kN8L4RlXY5pqYb9Hsq0gEB6nS39v7nSvVBS+g==} 4257 | hasBin: true 4258 | peerDependencies: 4259 | typescript: ^4.1.0 4260 | peerDependenciesMeta: 4261 | typescript: 4262 | optional: true 4263 | dependencies: 4264 | bundle-require: 2.3.0_esbuild@0.14.14 4265 | cac: 6.7.12 4266 | chokidar: 3.5.3 4267 | debug: 4.3.3 4268 | esbuild: 0.14.14 4269 | execa: 5.1.1 4270 | globby: 11.1.0 4271 | joycon: 3.1.1 4272 | postcss-load-config: 3.1.1 4273 | resolve-from: 5.0.0 4274 | rollup: 2.66.1 4275 | source-map: 0.7.3 4276 | sucrase: 3.20.3 4277 | tree-kill: 1.2.2 4278 | typescript: 4.5.5 4279 | transitivePeerDependencies: 4280 | - supports-color 4281 | - ts-node 4282 | dev: true 4283 | 4284 | /tsutils/3.21.0_typescript@4.5.5: 4285 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} 4286 | engines: {node: '>= 6'} 4287 | peerDependencies: 4288 | 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' 4289 | dependencies: 4290 | tslib: 1.14.1 4291 | typescript: 4.5.5 4292 | dev: true 4293 | 4294 | /type-check/0.4.0: 4295 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 4296 | engines: {node: '>= 0.8.0'} 4297 | dependencies: 4298 | prelude-ls: 1.2.1 4299 | dev: true 4300 | 4301 | /type-fest/0.20.2: 4302 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 4303 | engines: {node: '>=10'} 4304 | dev: true 4305 | 4306 | /type-fest/0.21.3: 4307 | resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} 4308 | engines: {node: '>=10'} 4309 | dev: false 4310 | 4311 | /type-fest/0.6.0: 4312 | resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} 4313 | engines: {node: '>=8'} 4314 | dev: true 4315 | 4316 | /type-fest/0.8.1: 4317 | resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} 4318 | engines: {node: '>=8'} 4319 | dev: true 4320 | 4321 | /type-is/1.6.18: 4322 | resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} 4323 | engines: {node: '>= 0.6'} 4324 | dependencies: 4325 | media-typer: 0.3.0 4326 | mime-types: 2.1.34 4327 | dev: false 4328 | 4329 | /typedarray-to-buffer/3.1.5: 4330 | resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==} 4331 | dependencies: 4332 | is-typedarray: 1.0.0 4333 | dev: true 4334 | 4335 | /typescript/4.5.5: 4336 | resolution: {integrity: sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA==} 4337 | engines: {node: '>=4.2.0'} 4338 | hasBin: true 4339 | dev: true 4340 | 4341 | /unbox-primitive/1.0.1: 4342 | resolution: {integrity: sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==} 4343 | dependencies: 4344 | function-bind: 1.1.1 4345 | has-bigints: 1.0.1 4346 | has-symbols: 1.0.2 4347 | which-boxed-primitive: 1.0.2 4348 | dev: true 4349 | 4350 | /unbzip2-stream/1.4.3: 4351 | resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==} 4352 | dependencies: 4353 | buffer: 5.7.1 4354 | through: 2.3.8 4355 | dev: false 4356 | 4357 | /undefsafe/2.0.5: 4358 | resolution: {integrity: sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==} 4359 | dev: true 4360 | 4361 | /unique-string/2.0.0: 4362 | resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} 4363 | engines: {node: '>=8'} 4364 | dependencies: 4365 | crypto-random-string: 2.0.0 4366 | dev: true 4367 | 4368 | /unpipe/1.0.0: 4369 | resolution: {integrity: sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=} 4370 | engines: {node: '>= 0.8'} 4371 | dev: false 4372 | 4373 | /update-notifier/5.1.0: 4374 | resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==} 4375 | engines: {node: '>=10'} 4376 | dependencies: 4377 | boxen: 5.1.2 4378 | chalk: 4.1.2 4379 | configstore: 5.0.1 4380 | has-yarn: 2.1.0 4381 | import-lazy: 2.1.0 4382 | is-ci: 2.0.0 4383 | is-installed-globally: 0.4.0 4384 | is-npm: 5.0.0 4385 | is-yarn-global: 0.3.0 4386 | latest-version: 5.1.0 4387 | pupa: 2.1.1 4388 | semver: 7.3.5 4389 | semver-diff: 3.1.1 4390 | xdg-basedir: 4.0.0 4391 | dev: true 4392 | 4393 | /uri-js/4.4.1: 4394 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 4395 | dependencies: 4396 | punycode: 2.1.1 4397 | dev: true 4398 | 4399 | /url-parse-lax/3.0.0: 4400 | resolution: {integrity: sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=} 4401 | engines: {node: '>=4'} 4402 | dependencies: 4403 | prepend-http: 2.0.0 4404 | 4405 | /url-to-options/1.0.1: 4406 | resolution: {integrity: sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=} 4407 | engines: {node: '>= 4'} 4408 | dev: false 4409 | 4410 | /util-deprecate/1.0.2: 4411 | resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=} 4412 | dev: false 4413 | 4414 | /v8-compile-cache/2.3.0: 4415 | resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} 4416 | dev: true 4417 | 4418 | /validate-npm-package-license/3.0.4: 4419 | resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} 4420 | dependencies: 4421 | spdx-correct: 3.1.1 4422 | spdx-expression-parse: 3.0.1 4423 | dev: true 4424 | 4425 | /vary/1.1.2: 4426 | resolution: {integrity: sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=} 4427 | engines: {node: '>= 0.8'} 4428 | dev: false 4429 | 4430 | /vue-eslint-parser/8.2.0_eslint@8.7.0: 4431 | resolution: {integrity: sha512-hvl8OVT8imlKk/lQyhkshqwQQChzHETcBd5abiO4ePw7ib7QUZLfW+2TUrJHKUvFOCFRJrDin5KJO9OHzB5bRQ==} 4432 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 4433 | peerDependencies: 4434 | eslint: '>=6.0.0' 4435 | dependencies: 4436 | debug: 4.3.3 4437 | eslint: 8.7.0 4438 | eslint-scope: 7.1.0 4439 | eslint-visitor-keys: 3.2.0 4440 | espree: 9.3.0 4441 | esquery: 1.4.0 4442 | lodash: 4.17.21 4443 | semver: 7.3.5 4444 | transitivePeerDependencies: 4445 | - supports-color 4446 | dev: true 4447 | 4448 | /wcwidth/1.0.1: 4449 | resolution: {integrity: sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=} 4450 | dependencies: 4451 | defaults: 1.0.3 4452 | dev: false 4453 | 4454 | /webidl-conversions/7.0.0: 4455 | resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} 4456 | engines: {node: '>=12'} 4457 | dev: false 4458 | 4459 | /whatwg-url/11.0.0: 4460 | resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} 4461 | engines: {node: '>=12'} 4462 | dependencies: 4463 | tr46: 3.0.0 4464 | webidl-conversions: 7.0.0 4465 | dev: false 4466 | 4467 | /which-boxed-primitive/1.0.2: 4468 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 4469 | dependencies: 4470 | is-bigint: 1.0.4 4471 | is-boolean-object: 1.1.2 4472 | is-number-object: 1.0.6 4473 | is-string: 1.0.7 4474 | is-symbol: 1.0.4 4475 | dev: true 4476 | 4477 | /which-module/2.0.0: 4478 | resolution: {integrity: sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=} 4479 | dev: false 4480 | 4481 | /which/2.0.2: 4482 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 4483 | engines: {node: '>= 8'} 4484 | hasBin: true 4485 | dependencies: 4486 | isexe: 2.0.0 4487 | dev: true 4488 | 4489 | /widest-line/3.1.0: 4490 | resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==} 4491 | engines: {node: '>=8'} 4492 | dependencies: 4493 | string-width: 4.2.3 4494 | dev: true 4495 | 4496 | /winston-transport/4.4.2: 4497 | resolution: {integrity: sha512-9jmhltAr5ygt5usgUTQbEiw/7RYXpyUbEAFRCSicIacpUzPkrnQsQZSPGEI12aLK9Jth4zNcYJx3Cvznwrl8pw==} 4498 | engines: {node: '>= 6.4.0'} 4499 | dependencies: 4500 | logform: 2.3.2 4501 | readable-stream: 3.6.0 4502 | triple-beam: 1.3.0 4503 | dev: false 4504 | 4505 | /winston/3.4.0: 4506 | resolution: {integrity: sha512-FqilVj+5HKwCfIHQzMxrrd5tBIH10JTS3koFGbLVWBODjiIYq7zir08rFyBT4rrTYG/eaTqDcfSIbcjSM78YSw==} 4507 | engines: {node: '>= 6.4.0'} 4508 | dependencies: 4509 | '@dabh/diagnostics': 2.0.2 4510 | async: 3.2.3 4511 | is-stream: 2.0.1 4512 | logform: 2.3.2 4513 | one-time: 1.0.0 4514 | readable-stream: 3.6.0 4515 | stack-trace: 0.0.10 4516 | triple-beam: 1.3.0 4517 | winston-transport: 4.4.2 4518 | dev: false 4519 | 4520 | /word-wrap/1.2.3: 4521 | resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} 4522 | engines: {node: '>=0.10.0'} 4523 | dev: true 4524 | 4525 | /wrap-ansi/6.2.0: 4526 | resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} 4527 | engines: {node: '>=8'} 4528 | dependencies: 4529 | ansi-styles: 4.3.0 4530 | string-width: 4.2.3 4531 | strip-ansi: 6.0.1 4532 | dev: false 4533 | 4534 | /wrap-ansi/7.0.0: 4535 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 4536 | engines: {node: '>=10'} 4537 | dependencies: 4538 | ansi-styles: 4.3.0 4539 | string-width: 4.2.3 4540 | strip-ansi: 6.0.1 4541 | dev: true 4542 | 4543 | /wrappy/1.0.2: 4544 | resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=} 4545 | 4546 | /write-file-atomic/3.0.3: 4547 | resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} 4548 | dependencies: 4549 | imurmurhash: 0.1.4 4550 | is-typedarray: 1.0.0 4551 | signal-exit: 3.0.6 4552 | typedarray-to-buffer: 3.1.5 4553 | dev: true 4554 | 4555 | /ws/8.4.2: 4556 | resolution: {integrity: sha512-Kbk4Nxyq7/ZWqr/tarI9yIt/+iNNFOjBXEWgTb4ydaNHBNGgvf2QHbS9fdfsndfjFlFwEd4Al+mw83YkaD10ZA==} 4557 | engines: {node: '>=10.0.0'} 4558 | peerDependencies: 4559 | bufferutil: ^4.0.1 4560 | utf-8-validate: ^5.0.2 4561 | peerDependenciesMeta: 4562 | bufferutil: 4563 | optional: true 4564 | utf-8-validate: 4565 | optional: true 4566 | dev: false 4567 | 4568 | /xdg-basedir/4.0.0: 4569 | resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==} 4570 | engines: {node: '>=8'} 4571 | dev: true 4572 | 4573 | /xml2js/0.4.23: 4574 | resolution: {integrity: sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==} 4575 | engines: {node: '>=4.0.0'} 4576 | dependencies: 4577 | sax: 1.2.4 4578 | xmlbuilder: 11.0.1 4579 | dev: false 4580 | 4581 | /xmlbuilder/11.0.1: 4582 | resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==} 4583 | engines: {node: '>=4.0'} 4584 | dev: false 4585 | 4586 | /xtend/4.0.2: 4587 | resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} 4588 | engines: {node: '>=0.4'} 4589 | dev: false 4590 | 4591 | /y18n/4.0.3: 4592 | resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} 4593 | dev: false 4594 | 4595 | /yallist/4.0.0: 4596 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 4597 | dev: true 4598 | 4599 | /yaml-eslint-parser/0.5.0: 4600 | resolution: {integrity: sha512-nJeyLA3YHAzhBTZbRAbu3W6xrSCucyxExmA+ZDtEdUFpGllxAZpto2Zxo2IG0r0eiuEiBM4e+wiAdxTziTq94g==} 4601 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 4602 | dependencies: 4603 | eslint-visitor-keys: 3.2.0 4604 | lodash: 4.17.21 4605 | yaml: 1.10.2 4606 | dev: true 4607 | 4608 | /yaml/1.10.2: 4609 | resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} 4610 | engines: {node: '>= 6'} 4611 | dev: true 4612 | 4613 | /yargs-parser/18.1.3: 4614 | resolution: {integrity: sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==} 4615 | engines: {node: '>=6'} 4616 | dependencies: 4617 | camelcase: 5.3.1 4618 | decamelize: 1.2.0 4619 | dev: false 4620 | 4621 | /yargs/15.4.1: 4622 | resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==} 4623 | engines: {node: '>=8'} 4624 | dependencies: 4625 | cliui: 6.0.0 4626 | decamelize: 1.2.0 4627 | find-up: 4.1.0 4628 | get-caller-file: 2.0.5 4629 | require-directory: 2.1.1 4630 | require-main-filename: 2.0.0 4631 | set-blocking: 2.0.0 4632 | string-width: 4.2.3 4633 | which-module: 2.0.0 4634 | y18n: 4.0.3 4635 | yargs-parser: 18.1.3 4636 | dev: false 4637 | 4638 | /yauzl/2.10.0: 4639 | resolution: {integrity: sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=} 4640 | dependencies: 4641 | buffer-crc32: 0.2.13 4642 | fd-slicer: 1.1.0 4643 | dev: false 4644 | 4645 | /ylru/1.2.1: 4646 | resolution: {integrity: sha512-faQrqNMzcPCHGVC2aaOINk13K+aaBDUPjGWl0teOXywElLjyVAB6Oe2jj62jHYtwsU49jXhScYbvPENK+6zAvQ==} 4647 | engines: {node: '>= 4.0.0'} 4648 | dev: false 4649 | -------------------------------------------------------------------------------- /scripts/copy.ts: -------------------------------------------------------------------------------- 1 | import fs from 'fs' 2 | import path, { dirname } from 'path' 3 | import { fileURLToPath } from 'url' 4 | 5 | const __dirname = dirname(fileURLToPath(import.meta.url)) 6 | 7 | const pluginsFolder = path.resolve(__dirname, '../src/plugins') 8 | if (fs.existsSync(pluginsFolder)) { 9 | const plugins = fs.readdirSync(path.resolve(__dirname, '../src/plugins')) 10 | 11 | // eslint-disable-next-line array-callback-return 12 | plugins.map((item) => { 13 | const source = path.resolve(__dirname, '../src/plugins/', item, 'package.json') 14 | if (fs.existsSync(source)) { 15 | const dest = path.resolve(__dirname, '../dist/plugins', item, 'package.json') 16 | fs.copyFileSync(source, dest) 17 | } 18 | }) 19 | } 20 | -------------------------------------------------------------------------------- /src/el/README.md: -------------------------------------------------------------------------------- 1 | # 配置 2 | 3 | 你可以使用 `JSON` 来书写你的配置,也可以自行加载 `YAML` 文件。 4 | -------------------------------------------------------------------------------- /src/el/index.ts: -------------------------------------------------------------------------------- 1 | import type { El } from 'el-bot' 2 | const config: El = { 3 | // @ts-expect-error dotenv 4 | qq: parseInt(process.env.BOT_QQ), 5 | // 你可以直接解析 mirai-api-http 的配置 6 | setting: 'mcl/config/net.mamoe.mirai-api-http/setting.yml', 7 | // setting: { 8 | // enableWebsocket: false, // 须与 mirai-api-http 的配置保持一致,若 mirai 已设置为 true,则此处也应为 true 9 | // }, 10 | db: { 11 | // 默认关闭 12 | enable: false, 13 | uri: process.env.BOT_DB_URI, 14 | analytics: true, 15 | }, 16 | bot: { 17 | plugins: { 18 | // default: ['rss'], 19 | custom: ['./plugins/test'], 20 | }, 21 | rss: [ 22 | { 23 | name: '云游君的小站', 24 | url: 'https://www.yunyoujun.cn/atom.xml', 25 | customFields: { 26 | item: ['updated', 'summary'], 27 | }, 28 | content: [ 29 | '标题:${item.title}', 30 | '链接:${item.link}', 31 | '时间:${item.updated}', 32 | ], 33 | target: { 34 | group: [707408530], 35 | }, 36 | }, 37 | ], 38 | answer: [ 39 | { 40 | re: '早呀|早上|哦哈呦|起床啦', 41 | reply: [ 42 | { 43 | type: 'Plain', 44 | text: '新的一天也要加油鸭', 45 | }, 46 | ], 47 | }, 48 | { 49 | re: '晚安|哦呀斯密', 50 | api: 'https://el-bot-api.vercel.app/api/wanan', 51 | reply: '${data[0]}', 52 | }, 53 | { 54 | at: true, 55 | includes: '在吗', 56 | reply: '我在', 57 | }, 58 | { 59 | includes: ['bing', '壁纸'], 60 | reply: [ 61 | { 62 | type: 'Image', 63 | url: 'https://images.weserv.nl/?url=https://bing.ioliu.cn/v1/rand', 64 | }, 65 | ], 66 | }, 67 | ], 68 | }, 69 | // webhook 70 | webhook: { 71 | enable: true, 72 | path: '/webhook', 73 | port: 7777, 74 | secret: 'el-psy-congroo', 75 | }, 76 | } 77 | 78 | export default config 79 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import { Bot } from 'el-bot' 2 | import el from './el' 3 | 4 | const bot = new Bot(el) 5 | bot.start() 6 | 7 | // 监听消息 8 | // bot.mirai.on("message", (msg) => { 9 | // console.log(msg) 10 | // }) 11 | -------------------------------------------------------------------------------- /src/plugins/test/index.ts: -------------------------------------------------------------------------------- 1 | import type { Bot } from 'el-bot' 2 | 3 | export default (ctx: Bot) => { 4 | const mirai = ctx.mirai 5 | mirai.on('message', (msg) => { 6 | msg.reply( 7 | '我是一个无情的自定义测试插件,可以到 el/index.yml plugins.custom 处关闭我。', 8 | ) 9 | }) 10 | } 11 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES6", 4 | "module": "CommonJS", 5 | "moduleResolution": "node", 6 | "strict": true, 7 | "sourceMap": true, 8 | "resolveJsonModule": true, 9 | "outDir": "dist", 10 | "allowSyntheticDefaultImports": true, 11 | "esModuleInterop": true, 12 | "allowJs": true 13 | }, 14 | "include": ["package.json", "**/*.ts", "src/**/*.ts", "src/plugins/**/*/package.json"], 15 | "exclude": ["node_modules", "dist", "mcl"] 16 | } 17 | -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'tsup' 2 | 3 | export default defineConfig({ 4 | entry: ['src/**/*.ts'], 5 | clean: true, 6 | outDir: 'dist', 7 | loader: { 8 | '.yml': 'binary', 9 | '.md': 'text', 10 | }, 11 | // todo esm when axios is ok 12 | format: ['cjs'], 13 | target: 'esnext', 14 | }) 15 | --------------------------------------------------------------------------------