├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── cast.html ├── index.html ├── package.json ├── postcss.config.js ├── public ├── CNAME ├── cover.png ├── favicon.ico ├── favicon.png └── favicon.svg ├── src ├── App.vue ├── Cast.vue ├── assets │ └── main.css ├── cast.ts ├── components │ ├── CastButton.vue │ ├── PageFooter.vue │ ├── PageHeader.vue │ ├── QRCode.vue │ ├── WifiForm.vue │ ├── WifiInfo.vue │ ├── WifiInfoActions.vue │ ├── form │ │ ├── Input.vue │ │ ├── Select.vue │ │ └── mixin.ts │ └── icons │ │ ├── Activity.vue │ │ ├── ArrowUp.vue │ │ ├── Printer.vue │ │ ├── QRCode.vue │ │ ├── Share.vue │ │ └── Wifi.vue ├── lib │ ├── cast │ │ ├── receiver.ts │ │ ├── sender.ts │ │ └── types.ts │ ├── on-idle.ts │ ├── qr-code.ts │ └── strings.ts ├── main.ts ├── shims-vue.d.ts └── state │ ├── cast-sender.ts │ ├── hash.ts │ ├── qr-code.ts │ └── wifi.ts ├── tailwind.config.js ├── tsconfig.json ├── vite.config.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | dist 4 | *.local -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "css.validate": false 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Vue Wi-Fi QR Code Generator 2 | 3 | Share your Wi-Fi Network with your guests! 4 | 5 | ## Dependencies 6 | 7 | - [Vue.js v3](https://v3.vuejs.org/) 8 | - [Tailwind CSS](https://tailwindcss.com/) 9 | - [Vite](https://github.com/vitejs/vite) 10 | - [QRCode](https://github.com/soldair/node-qrcode) 11 | - [lodash](https://lodash.com/) 12 | 13 | ## Icon pack 14 | - [Table Icons](https://tablericons.com/) 15 | 16 | ## Commands 17 | 18 | ```sh 19 | yarn dev 20 | yarn build 21 | ``` 22 | 23 | ## Spec 24 | 25 | https://github.com/zxing/zxing/wiki/Barcode-Contents#wi-fi-network-config-android-ios-11 -------------------------------------------------------------------------------- /cast.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Vue Wi-Fi QRCode 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Vue Wi-Fi QRCode 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-wifi-qrcode", 3 | "version": "1.3.0", 4 | "license": "GPL-3.0+", 5 | "scripts": { 6 | "dev": "vite", 7 | "build": "vuedx-typecheck . && vite build", 8 | "deploy:surge": "yarn build && surge dist/", 9 | "lint": "eslint src/" 10 | }, 11 | "dependencies": { 12 | "lodash-es": "^4.17.20", 13 | "qrcode": "^1.4.4", 14 | "tailwindcss": "^2.0.3", 15 | "vue": "^3.0.5" 16 | }, 17 | "devDependencies": { 18 | "@types/chromecast-caf-receiver": "^5.0.13", 19 | "@types/chromecast-caf-sender": "^1.0.3", 20 | "@types/lodash-es": "^4.17.4", 21 | "@types/qrcode": "^1.4.0", 22 | "@vitejs/plugin-vue": "^1.1.4", 23 | "@vue/compiler-sfc": "^3.0.5", 24 | "@vuedx/typecheck": "^0.6.0", 25 | "@vuedx/typescript-plugin-vue": "^0.6.0", 26 | "autoprefixer": "^10.2.4", 27 | "postcss": "^8.2.6", 28 | "typescript": "^4.1.3", 29 | "vite": "^2.0.0-beta.65" 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: [ 3 | require('tailwindcss'), 4 | require('autoprefixer') 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /public/CNAME: -------------------------------------------------------------------------------- 1 | https://vue-wifi-qrcode-generator.surge.sh -------------------------------------------------------------------------------- /public/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinicius73/vue-wifi-qrcode-generator/289a695464444def3a5370378640cba5465c0715/public/cover.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinicius73/vue-wifi-qrcode-generator/289a695464444def3a5370378640cba5465c0715/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vinicius73/vue-wifi-qrcode-generator/289a695464444def3a5370378640cba5465c0715/public/favicon.png -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- 1 | 6 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- 1 | 25 | 26 | 53 | -------------------------------------------------------------------------------- /src/Cast.vue: -------------------------------------------------------------------------------- 1 | 46 | 47 | 67 | 68 | -------------------------------------------------------------------------------- /src/assets/main.css: -------------------------------------------------------------------------------- 1 | @import 'tailwindcss/base'; 2 | @import 'tailwindcss/components'; 3 | @import 'tailwindcss/utilities'; 4 | /* variables */ 5 | 6 | :root { 7 | --base-vue-blue: 52, 73, 94; 8 | --base-vue-green: 65, 184, 131; 9 | --vue-blue: rgb(var(--base-vue-blue)); 10 | --vue-green: rgb(var(--base-vue-green)); 11 | } 12 | 13 | body, html { 14 | background-color: #fff; 15 | } 16 | 17 | /* form */ 18 | 19 | input[type="text"] { 20 | @apply appearance-none block w-full bg-gray-200 text-gray-700 border rounded py-3 px-4 mb-3 leading-tight; 21 | } 22 | 23 | input[type="text"]:focus { 24 | @apply outline-none bg-white border-vue-blue; 25 | } 26 | 27 | select { 28 | @apply block appearance-none w-full bg-gray-200 border border-gray-200 text-gray-700 py-3 px-4 pr-8 rounded leading-tight; 29 | } 30 | 31 | select:focus { 32 | @apply outline-none bg-white border-vue-blue; 33 | } 34 | 35 | label { 36 | @apply block uppercase tracking-wide text-xs font-bold mb-2 text-vue-green; 37 | } 38 | 39 | button { 40 | @apply bg-vue-blue text-white font-bold py-2 px-4 rounded inline-flex items-center; 41 | } 42 | 43 | button.error { 44 | @apply bg-red-800 text-white; 45 | } 46 | 47 | button:hover, button:active, button:focus { 48 | @apply bg-vue-green outline-none; 49 | } 50 | 51 | button svg { 52 | max-width: 24px; 53 | max-height: 24px; 54 | } 55 | 56 | /* elements */ 57 | 58 | .version-text { 59 | @apply text-center font-mono text-sm text-vue-blue; 60 | } 61 | 62 | .box { 63 | @apply bg-white shadow-lg rounded px-8 pt-6 pb-8 mb-4; 64 | box-shadow: rgba(var(--base-vue-blue), 0.1) 0px 10px 15px -3px, rgba(var(--base-vue-blue), 0.05) 0px 4px 6px -2px; 65 | } 66 | 67 | .container { 68 | @apply mx-auto max-w-4xl; 69 | } 70 | 71 | .page-header { 72 | @apply flex items-center justify-between flex-wrap bg-vue-green p-6 text-white; 73 | } 74 | 75 | .page-header h1 { 76 | @apply text-xl ml-5; 77 | } 78 | 79 | .page-header .logo { 80 | width: 48px; 81 | } 82 | 83 | .page-footer { 84 | @apply font-mono text-vue-blue text-center text-sm; 85 | } 86 | 87 | .page-footer a { 88 | @apply text-vue-green; 89 | } 90 | 91 | #app { 92 | @apply min-h-screen flex flex-col; 93 | } 94 | 95 | #page-main { 96 | @apply mt-2 grid grid-cols-2 gap-4 flex-grow; 97 | } 98 | 99 | #page-main .wifi-info { 100 | @apply row-span-2; 101 | } 102 | 103 | hr { 104 | @apply border-solid border-vue-blue border-2 mb-4 mt-4; 105 | } 106 | 107 | /* print */ 108 | 109 | @media print { 110 | .page-header, .page-footer, .wifi-form, .hide-on-print { 111 | display: none; 112 | } 113 | body { 114 | @apply bg-white; 115 | } 116 | #page-main { 117 | @apply grid-cols-1 max-w-screen-sm; 118 | } 119 | .box { 120 | @apply shadow-none border-solid border-vue-blue border-2; 121 | } 122 | } 123 | 124 | @media (max-width: 768px) { 125 | #page-main { 126 | @apply grid-cols-1; 127 | } 128 | } -------------------------------------------------------------------------------- /src/cast.ts: -------------------------------------------------------------------------------- 1 | import { createApp } from 'vue' 2 | import Root from './Cast.vue' 3 | import './assets/main.css' 4 | 5 | createApp(Root).mount('#app-root') 6 | -------------------------------------------------------------------------------- /src/components/CastButton.vue: -------------------------------------------------------------------------------- 1 | 42 | 43 | 48 | 49 | -------------------------------------------------------------------------------- /src/components/PageFooter.vue: -------------------------------------------------------------------------------- 1 | 14 | 15 | 30 | -------------------------------------------------------------------------------- /src/components/PageHeader.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 27 | -------------------------------------------------------------------------------- /src/components/QRCode.vue: -------------------------------------------------------------------------------- 1 | 31 | 32 | 45 | -------------------------------------------------------------------------------- /src/components/WifiForm.vue: -------------------------------------------------------------------------------- 1 | 49 | 50 | 76 | -------------------------------------------------------------------------------- /src/components/WifiInfo.vue: -------------------------------------------------------------------------------- 1 | 70 | 71 | 94 | 95 | 117 | -------------------------------------------------------------------------------- /src/components/WifiInfoActions.vue: -------------------------------------------------------------------------------- 1 | 70 | 71 | 89 | 90 | 98 | -------------------------------------------------------------------------------- /src/components/form/Input.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 27 | -------------------------------------------------------------------------------- /src/components/form/Select.vue: -------------------------------------------------------------------------------- 1 | 21 | 22 | 43 | -------------------------------------------------------------------------------- /src/components/form/mixin.ts: -------------------------------------------------------------------------------- 1 | import { computed, ComponentOptionsMixin, SetupContext } from 'vue' 2 | import { random } from '../../lib/strings' 3 | import { isEmpty } from 'lodash-es' 4 | 5 | interface MixinProps { 6 | label: string, 7 | value: string, 8 | name: string, 9 | placeholder: string, 10 | id: string, 11 | } 12 | 13 | const mixin: ComponentOptionsMixin = { 14 | props: { 15 | label: String, 16 | value: String, 17 | name: String, 18 | placeholder: String, 19 | id: { 20 | type: String, 21 | default: () => `input-${random()}` 22 | } 23 | }, 24 | emits: ['input', 'change'], 25 | change: ['change'] 26 | } 27 | 28 | const useInputProps = (props: MixinProps, { emit }: SetupContext) => { 29 | const label = computed(() => { 30 | const { label } = props 31 | 32 | return isEmpty(label) ? false : label 33 | }) 34 | 35 | const name = computed(() => { 36 | return props.name || props.id 37 | }) 38 | 39 | const on = (name: string) => (event: Event) => { 40 | emit(name, event) 41 | } 42 | 43 | return { 44 | label, 45 | name, 46 | id: props.id, 47 | value: computed(() => props.value), 48 | placeholder: computed(() => props.placeholder), 49 | onInput: on('input'), 50 | onChange: on('change') 51 | } 52 | } 53 | 54 | export { 55 | mixin, 56 | useInputProps, 57 | MixinProps 58 | } 59 | -------------------------------------------------------------------------------- /src/components/icons/Activity.vue: -------------------------------------------------------------------------------- 1 | 18 | 19 | -------------------------------------------------------------------------------- /src/components/icons/ArrowUp.vue: -------------------------------------------------------------------------------- 1 | 8 | 9 | 14 | -------------------------------------------------------------------------------- /src/components/icons/Printer.vue: -------------------------------------------------------------------------------- 1 | 14 | 15 | 25 | -------------------------------------------------------------------------------- /src/components/icons/QRCode.vue: -------------------------------------------------------------------------------- 1 | 14 | 28 | -------------------------------------------------------------------------------- /src/components/icons/Share.vue: -------------------------------------------------------------------------------- 1 | 14 | 15 | 32 | -------------------------------------------------------------------------------- /src/components/icons/Wifi.vue: -------------------------------------------------------------------------------- 1 | 14 | 15 | 31 | -------------------------------------------------------------------------------- /src/lib/cast/receiver.ts: -------------------------------------------------------------------------------- 1 | import { MESSAGES } from './types' 2 | 3 | interface CastMessage { 4 | data: T 5 | } 6 | 7 | export type EventHandler = (event: CastMessage) => any 8 | export type HooksMap = Record 9 | 10 | const start = (hooks: HooksMap) => { 11 | // @ts-ignore 12 | const instance = cast.framework.CastReceiverContext.getInstance() 13 | 14 | Object.entries(hooks) 15 | .forEach(([ key, callback ]) => { 16 | instance 17 | .addCustomMessageListener(key, callback) 18 | }) 19 | 20 | instance.start(); 21 | 22 | return instance 23 | } 24 | 25 | export { 26 | MESSAGES, 27 | start 28 | } -------------------------------------------------------------------------------- /src/lib/cast/sender.ts: -------------------------------------------------------------------------------- 1 | import { random } from '../strings' 2 | 3 | const SENDER_ADDRESS = 'https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1' 4 | const HOOK_KEY = '__onGCastApiAvailable' 5 | const APPLICATION_ID = String(import.meta.env.VITE_CAST_APPLICATION_ID) 6 | const SCRIPT_ID = random() 7 | 8 | const loadScript = (onAvailable: (x: any) => void, onLoad?: () => any) => { 9 | 10 | const script = document.createElement('script') 11 | 12 | script.setAttribute('src', SENDER_ADDRESS) 13 | script.setAttribute('id', SCRIPT_ID) 14 | // @ts-ignore 15 | script.setAttribute('async', true) 16 | // @ts-ignore 17 | script.setAttribute('defer', true) 18 | 19 | if (onLoad) { 20 | script.onload = () => onLoad 21 | } 22 | 23 | document.head.appendChild(script) 24 | 25 | // @ts-ignore 26 | window[HOOK_KEY] = function (isAvailable) { 27 | // @ts-ignore 28 | window[HOOK_KEY] = null 29 | 30 | if (isAvailable) { 31 | onAvailable( 32 | setup() 33 | ); 34 | } 35 | }; 36 | } 37 | 38 | const setup = () => { 39 | cast.framework.setLoggerLevel(cast.framework.LoggerLevel.DEBUG) 40 | 41 | const instance = cast.framework.CastContext.getInstance() 42 | 43 | instance.setOptions({ 44 | receiverApplicationId: APPLICATION_ID, 45 | autoJoinPolicy: chrome.cast.AutoJoinPolicy.ORIGIN_SCOPED 46 | }); 47 | 48 | return instance 49 | } 50 | 51 | export { loadScript, setup } -------------------------------------------------------------------------------- /src/lib/cast/types.ts: -------------------------------------------------------------------------------- 1 | export enum MESSAGES { 2 | QR_CHANGE = 'urn:x-cast:QR_CHANGE' 3 | } -------------------------------------------------------------------------------- /src/lib/on-idle.ts: -------------------------------------------------------------------------------- 1 | import { isFunction } from 'lodash-es' 2 | /** 3 | * @type Function 4 | * @param {Function} 5 | * @returns {void} 6 | */ 7 | const subscribe: (cb: () => R) => R = ((w) => { 8 | // @ts-ignore 9 | if (isFunction(w.requestIdleCallback)) { 10 | // @ts-ignore 11 | return w.requestIdleCallback.bind(w) 12 | } 13 | 14 | if (isFunction(w.requestAnimationFrame)) { 15 | return w.requestAnimationFrame.bind(w) 16 | } 17 | 18 | return function _setTimeout (fn: () => R) { 19 | return setTimeout(fn, 1) 20 | } 21 | })(window) 22 | 23 | /** 24 | * @param {Function} fn 25 | * @returns {Promise} 26 | */ 27 | const onIdle = (fn: () => R | Promise): Promise => { 28 | return new Promise(resolve => { 29 | subscribe(() => resolve(fn && fn())) 30 | }) 31 | } 32 | 33 | export { onIdle } 34 | -------------------------------------------------------------------------------- /src/lib/qr-code.ts: -------------------------------------------------------------------------------- 1 | const specials = [';', ':', ',', '"', '\'', '\\'] 2 | 3 | enum ConnectionType { 4 | WEP = 'WEP', 5 | WPA = 'WPA', 6 | 'WPA2-EAP' = 'WPA2-EAP', 7 | nopass = 'nopass' 8 | } 9 | 10 | type QRCodeData = { 11 | type: ConnectionType, 12 | ssid: string, 13 | password: string 14 | } 15 | 16 | const escape = (value: string) => { 17 | return (value || '') 18 | .split('') 19 | .map(char => { 20 | if (specials.includes(char)) { 21 | return `\\${char}` 22 | } 23 | 24 | return char 25 | }) 26 | .join('') 27 | } 28 | 29 | const buildQRCodeData = ({ type, ssid, password }: QRCodeData) => { 30 | return `WIFI:T:${type};S:${escape(ssid)};P:${escape(password)};;` 31 | } 32 | 33 | export { buildQRCodeData, QRCodeData, ConnectionType } 34 | -------------------------------------------------------------------------------- /src/lib/strings.ts: -------------------------------------------------------------------------------- 1 | export const random = (size = 10) => Math.random() 2 | .toString(36).replace(/[^a-z]+/g, '') 3 | .substr(0, size) 4 | -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- 1 | import { createApp } from 'vue' 2 | import Root from './App.vue' 3 | import './assets/main.css' 4 | 5 | const app = createApp(Root) 6 | 7 | app.mount('#app-root') 8 | -------------------------------------------------------------------------------- /src/shims-vue.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.vue' { 2 | import { DefineComponent } from 'vue' 3 | const component: DefineComponent<{}, {}, any> 4 | export default component 5 | } 6 | -------------------------------------------------------------------------------- /src/state/cast-sender.ts: -------------------------------------------------------------------------------- 1 | import { ref } from 'vue' 2 | import { loadScript } from '../lib/cast/sender' 3 | import { MESSAGES } from '../lib/cast/types' 4 | import { onIdle } from '../lib/on-idle' 5 | import { debounce } from 'lodash-es' 6 | 7 | const useSender = () => { 8 | const castState = ref(null) 9 | const sessionState = ref(null) 10 | const isConnected = ref(false) 11 | 12 | let instance: cast.framework.CastContext 13 | 14 | loadScript(ctx => { 15 | instance = ctx 16 | 17 | const { CAST_STATE_CHANGED, SESSION_STATE_CHANGED } = cast.framework.CastContextEventType 18 | 19 | instance.addEventListener( 20 | CAST_STATE_CHANGED, 21 | (ev: cast.framework.CastStateEventData) => { 22 | console.debug(`cast: state ${castState}`) 23 | castState.value = ev.castState 24 | isConnected.value = ev.castState === cast.framework.CastState.CONNECTED 25 | }) 26 | 27 | instance.addEventListener( 28 | SESSION_STATE_CHANGED, 29 | (ev: cast.framework.SessionStateEventData) => { 30 | console.debug(`cast: sessionState ${ev.sessionState}`) 31 | sessionState.value = ev.sessionState 32 | }) 33 | }) 34 | 35 | const sendMessage = debounce((namespace: MESSAGES, data: Record) => { 36 | const session = instance?.getCurrentSession() 37 | 38 | if (!session) { 39 | console.warn('cast: missin session'); 40 | return 41 | } 42 | 43 | console.log('cast: sending', namespace) 44 | 45 | onIdle(() => session.sendMessage(namespace, data)) 46 | .catch(console.warn) 47 | }, 1_000) 48 | 49 | return { 50 | castState, 51 | sessionState, 52 | sendMessage, 53 | isConnected 54 | } 55 | } 56 | 57 | export { 58 | useSender 59 | } -------------------------------------------------------------------------------- /src/state/hash.ts: -------------------------------------------------------------------------------- 1 | import { computed, readonly, ref, watchEffect } from 'vue' 2 | import { debounce, isEmpty } from 'lodash-es' 3 | import { onIdle } from '../lib/on-idle' 4 | 5 | const getHash = () => { 6 | const val = String(window.location.hash) 7 | 8 | return val.startsWith('#') 9 | ? val.substring(1) 10 | : val 11 | } 12 | 13 | const getCurrent = (prefix: string) => { 14 | const val = getHash() 15 | 16 | if (isEmpty(val)) { 17 | return {} 18 | } 19 | 20 | if (val.startsWith(prefix)) { 21 | try { 22 | const json = atob(val.replace(prefix, '')) 23 | 24 | return JSON.parse(json) 25 | } catch (err) { 26 | console.warn(err) 27 | return {} 28 | } 29 | } 30 | 31 | return {} 32 | } 33 | 34 | const useHash = (prefix: string, getter: () => Record) => { 35 | const raw = computed(getter) 36 | 37 | const hash = ref('') 38 | 39 | const updateHash = debounce(val => { 40 | onIdle(() => { 41 | hash.value = btoa(JSON.stringify(val)) 42 | 43 | watchEffect(() => { 44 | window.location.hash = `${prefix}${hash.value}` 45 | }) 46 | }) 47 | }, 1000) 48 | 49 | watchEffect(() => { 50 | updateHash({ ...raw.value }) 51 | }) 52 | 53 | return { 54 | hash: readonly(hash) 55 | } 56 | } 57 | 58 | export { useHash, getCurrent } 59 | -------------------------------------------------------------------------------- /src/state/qr-code.ts: -------------------------------------------------------------------------------- 1 | import QRCode from 'qrcode' 2 | import { debounce } from 'lodash-es' 3 | import { onIdle } from '../lib/on-idle' 4 | 5 | import { 6 | readonly, 7 | ref, 8 | computed, 9 | watchEffect, 10 | onMounted 11 | } from 'vue' 12 | 13 | export enum QualityTypes { 14 | HIGH = 'H', 15 | MEDIUM = 'M', 16 | LOW = 'L' 17 | } 18 | 19 | const useQRCode = (getter: () => string, quality: QualityTypes) => { 20 | const raw = computed(getter) 21 | const src = ref('') 22 | 23 | const updateQrCode = debounce((text: string) => { 24 | onIdle(async () => { 25 | src.value = await QRCode.toDataURL( 26 | text, 27 | { 28 | errorCorrectionLevel: quality, 29 | margin: 2, 30 | scale: 50 31 | } 32 | ) 33 | }) 34 | .catch(console.warn) 35 | 36 | }, 600) 37 | 38 | onMounted(() => { 39 | watchEffect(() => { 40 | updateQrCode(raw.value) 41 | }) 42 | }) 43 | 44 | return { 45 | src: readonly(src), 46 | raw 47 | } 48 | } 49 | 50 | export { useQRCode } 51 | -------------------------------------------------------------------------------- /src/state/wifi.ts: -------------------------------------------------------------------------------- 1 | import { reactive, readonly } from 'vue' 2 | import { QRCodeData } from '../lib/qr-code' 3 | 4 | const state = reactive({ 5 | ssid: 'my ssid', 6 | password: 'my password', 7 | type: 'WPA' 8 | }) as QRCodeData 9 | 10 | const setState = (newState: Partial) => { 11 | Object.assign(state, newState) 12 | } 13 | 14 | const useWifi = (def?: QRCodeData) => { 15 | if (def) { 16 | setState(def) 17 | } 18 | 19 | return { state: readonly(state), setState } 20 | } 21 | 22 | export { useWifi } 23 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | // const defaultTheme = require('tailwindcss/defaultTheme') 2 | 3 | module.exports = { 4 | purge: { 5 | enabled: process.env.NODE_ENV === 'production', 6 | content: [ 7 | './index.html', 8 | './src/**/*.vue', 9 | './src/**/*.js' 10 | // etc. 11 | ] 12 | }, 13 | theme: { 14 | extend: { 15 | colors: { 16 | 'vue-blue': 'var(--vue-blue)', 17 | 'vue-green': 'var(--vue-green)' 18 | }, 19 | fontFamily: { 20 | // sans: ['Inter var', ...defaultTheme.fontFamily.sans] 21 | } 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "esnext", 4 | "module": "esnext", 5 | "moduleResolution": "node", 6 | "strict": true, 7 | "jsx": "preserve", 8 | "sourceMap": true, 9 | "resolveJsonModule": true, 10 | "esModuleInterop": true, 11 | "lib": ["esnext", "dom"], 12 | "types": [ 13 | "vite/client", 14 | "chromecast-caf-sender", 15 | "chromecast-caf-receiver" 16 | ] 17 | }, 18 | "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"] 19 | } 20 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import { resolve } from 'path' 3 | import vue from '@vitejs/plugin-vue' 4 | 5 | const pkg = require('./package.json') 6 | 7 | process.env.VITE_APP_VERSION = pkg.version 8 | 9 | // https://vitejs.dev/config/ 10 | export default defineConfig({ 11 | plugins: [vue({ 12 | template: { 13 | compilerOptions: { 14 | isCustomElement: tag => tag.startsWith('google-') 15 | } 16 | } 17 | })], 18 | build: { 19 | rollupOptions: { 20 | input: { 21 | main: resolve(__dirname, 'index.html'), 22 | cast: resolve(__dirname, 'cast.html') 23 | } 24 | } 25 | } 26 | }) 27 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13": 6 | version "7.12.13" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.13.tgz#dcfc826beef65e75c50e21d3837d7d95798dd658" 8 | integrity sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g== 9 | dependencies: 10 | "@babel/highlight" "^7.12.13" 11 | 12 | "@babel/generator@^7.12.1": 13 | version "7.12.15" 14 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.15.tgz#4617b5d0b25cc572474cc1aafee1edeaf9b5368f" 15 | integrity sha512-6F2xHxBiFXWNSGb7vyCUTBF8RCLY66rS0zEPcP8t/nQyXjha5EuK4z7H5o7fWG8B4M7y6mqVWq1J+1PuwRhecQ== 16 | dependencies: 17 | "@babel/types" "^7.12.13" 18 | jsesc "^2.5.1" 19 | source-map "^0.5.0" 20 | 21 | "@babel/helper-function-name@^7.10.4": 22 | version "7.12.13" 23 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz#93ad656db3c3c2232559fd7b2c3dbdcbe0eb377a" 24 | integrity sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA== 25 | dependencies: 26 | "@babel/helper-get-function-arity" "^7.12.13" 27 | "@babel/template" "^7.12.13" 28 | "@babel/types" "^7.12.13" 29 | 30 | "@babel/helper-get-function-arity@^7.12.13": 31 | version "7.12.13" 32 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz#bc63451d403a3b3082b97e1d8b3fe5bd4091e583" 33 | integrity sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg== 34 | dependencies: 35 | "@babel/types" "^7.12.13" 36 | 37 | "@babel/helper-split-export-declaration@^7.11.0": 38 | version "7.12.13" 39 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz#e9430be00baf3e88b0e13e6f9d4eaf2136372b05" 40 | integrity sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg== 41 | dependencies: 42 | "@babel/types" "^7.12.13" 43 | 44 | "@babel/helper-validator-identifier@^7.10.4", "@babel/helper-validator-identifier@^7.12.11": 45 | version "7.12.11" 46 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed" 47 | integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw== 48 | 49 | "@babel/highlight@^7.12.13": 50 | version "7.12.13" 51 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.12.13.tgz#8ab538393e00370b26271b01fa08f7f27f2e795c" 52 | integrity sha512-kocDQvIbgMKlWxXe9fof3TQ+gkIPOUSEYhJjqUjvKMez3krV7vbzYCDq39Oj11UAVK7JqPVGQPlgE85dPNlQww== 53 | dependencies: 54 | "@babel/helper-validator-identifier" "^7.12.11" 55 | chalk "^2.0.0" 56 | js-tokens "^4.0.0" 57 | 58 | "@babel/parser@7.12.3": 59 | version "7.12.3" 60 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.3.tgz#a305415ebe7a6c7023b40b5122a0662d928334cd" 61 | integrity sha512-kFsOS0IbsuhO5ojF8Hc8z/8vEIOkylVBrjiZUbLTE3XFe0Qi+uu6HjzQixkFaqr0ZPAMZcBVxEwmsnsLPZ2Xsw== 62 | 63 | "@babel/parser@^7.12.0", "@babel/parser@^7.12.1", "@babel/parser@^7.12.13", "@babel/parser@^7.12.3": 64 | version "7.12.16" 65 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.16.tgz#cc31257419d2c3189d394081635703f549fc1ed4" 66 | integrity sha512-c/+u9cqV6F0+4Hpq01jnJO+GLp2DdT63ppz9Xa+6cHaajM9VFzK/iDXiKK65YtpeVwu+ctfS6iqlMqRgQRzeCw== 67 | 68 | "@babel/template@^7.12.13", "@babel/template@^7.12.7": 69 | version "7.12.13" 70 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.12.13.tgz#530265be8a2589dbb37523844c5bcb55947fb327" 71 | integrity sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA== 72 | dependencies: 73 | "@babel/code-frame" "^7.12.13" 74 | "@babel/parser" "^7.12.13" 75 | "@babel/types" "^7.12.13" 76 | 77 | "@babel/traverse@7.12.1": 78 | version "7.12.1" 79 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.1.tgz#941395e0c5cc86d5d3e75caa095d3924526f0c1e" 80 | integrity sha512-MA3WPoRt1ZHo2ZmoGKNqi20YnPt0B1S0GTZEPhhd+hw2KGUzBlHuVunj6K4sNuK+reEvyiPwtp0cpaqLzJDmAw== 81 | dependencies: 82 | "@babel/code-frame" "^7.10.4" 83 | "@babel/generator" "^7.12.1" 84 | "@babel/helper-function-name" "^7.10.4" 85 | "@babel/helper-split-export-declaration" "^7.11.0" 86 | "@babel/parser" "^7.12.1" 87 | "@babel/types" "^7.12.1" 88 | debug "^4.1.0" 89 | globals "^11.1.0" 90 | lodash "^4.17.19" 91 | 92 | "@babel/types@7.12.1": 93 | version "7.12.1" 94 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.1.tgz#e109d9ab99a8de735be287ee3d6a9947a190c4ae" 95 | integrity sha512-BzSY3NJBKM4kyatSOWh3D/JJ2O3CVzBybHWxtgxnggaxEuaSTTDqeiSb/xk9lrkw2Tbqyivw5ZU4rT+EfznQsA== 96 | dependencies: 97 | "@babel/helper-validator-identifier" "^7.10.4" 98 | lodash "^4.17.19" 99 | to-fast-properties "^2.0.0" 100 | 101 | "@babel/types@^7.12.0", "@babel/types@^7.12.1", "@babel/types@^7.12.13": 102 | version "7.12.13" 103 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.13.tgz#8be1aa8f2c876da11a9cf650c0ecf656913ad611" 104 | integrity sha512-oKrdZTld2im1z8bDwTOQvUbxKwE+854zc16qWZQlcTqMN00pWxHQ4ZeOq0yDMnisOpRykH2/5Qqcrk/OlbAjiQ== 105 | dependencies: 106 | "@babel/helper-validator-identifier" "^7.12.11" 107 | lodash "^4.17.19" 108 | to-fast-properties "^2.0.0" 109 | 110 | "@fullhuman/postcss-purgecss@^3.1.3": 111 | version "3.1.3" 112 | resolved "https://registry.yarnpkg.com/@fullhuman/postcss-purgecss/-/postcss-purgecss-3.1.3.tgz#47af7b87c9bfb3de4bc94a38f875b928fffdf339" 113 | integrity sha512-kwOXw8fZ0Lt1QmeOOrd+o4Ibvp4UTEBFQbzvWldjlKv5n+G9sXfIPn1hh63IQIL8K8vbvv1oYMJiIUbuy9bGaA== 114 | dependencies: 115 | purgecss "^3.1.3" 116 | 117 | "@intlify/core-base@9.0.0-beta.16": 118 | version "9.0.0-beta.16" 119 | resolved "https://registry.yarnpkg.com/@intlify/core-base/-/core-base-9.0.0-beta.16.tgz#ab35802b982f52db20d4758d020c2dcd1724e7f9" 120 | integrity sha512-PJLDVYy3x8Mf9+XtWljEfk4Lo6mudopYlRvB89NQR3TkR+Tqkbcsegj09XdXpTKBYiq+yQrlZKZ0KEHb7l5Zuw== 121 | dependencies: 122 | "@intlify/message-compiler" "9.0.0-beta.16" 123 | "@intlify/message-resolver" "9.0.0-beta.16" 124 | "@intlify/runtime" "9.0.0-beta.16" 125 | "@intlify/shared" "9.0.0-beta.16" 126 | 127 | "@intlify/core@^9.0.0-beta.15": 128 | version "9.0.0-beta.16" 129 | resolved "https://registry.yarnpkg.com/@intlify/core/-/core-9.0.0-beta.16.tgz#d74d4678868b37b641bdf999552b237d84dacb88" 130 | integrity sha512-tPXf9rr+ZzG1zXgdLo8rCO2jws6eIXzJSaTvgnanZpfyyMKE+T8Ra5vVu3f/Sm0J7flT+z/Q3kLfnbpOMQ1UiQ== 131 | dependencies: 132 | "@intlify/core-base" "9.0.0-beta.16" 133 | 134 | "@intlify/message-compiler@9.0.0-beta.16": 135 | version "9.0.0-beta.16" 136 | resolved "https://registry.yarnpkg.com/@intlify/message-compiler/-/message-compiler-9.0.0-beta.16.tgz#359993251a303f148b3a325eca055cdbaf0cd95f" 137 | integrity sha512-dE4UZsbVl5TKogYdfrJ6nQKdin1R4XMKVBVa9dE1A8HVvVHBSLy6iQiYpcw8TwcEHIa+rFjuuHuh+IdN3eCw+g== 138 | dependencies: 139 | "@intlify/message-resolver" "9.0.0-beta.16" 140 | "@intlify/shared" "9.0.0-beta.16" 141 | source-map "0.6.1" 142 | 143 | "@intlify/message-resolver@9.0.0-beta.16": 144 | version "9.0.0-beta.16" 145 | resolved "https://registry.yarnpkg.com/@intlify/message-resolver/-/message-resolver-9.0.0-beta.16.tgz#f8960344201050d17560f8d01f63e3cd0b9bf59c" 146 | integrity sha512-xwjsFuDDYEv7g1KE5QZRbrPgfsrNsDhYLtNYR7Tn4inzbmB6ipak2UlDzDcQGLieSFbe1WwAoNL0IXy4sUKboQ== 147 | 148 | "@intlify/runtime@9.0.0-beta.16": 149 | version "9.0.0-beta.16" 150 | resolved "https://registry.yarnpkg.com/@intlify/runtime/-/runtime-9.0.0-beta.16.tgz#6a210a5b0984f9e295025e3dde5262108e0e69d9" 151 | integrity sha512-py+stHrbkBoEB2OsBB+rySevR+54uhybF54LToGjErr740R/AVuOVTJEKRS/LF9VvinGZZTu/WVOXcPpMfqt8Q== 152 | dependencies: 153 | "@intlify/message-compiler" "9.0.0-beta.16" 154 | "@intlify/message-resolver" "9.0.0-beta.16" 155 | "@intlify/shared" "9.0.0-beta.16" 156 | 157 | "@intlify/shared@9.0.0-beta.16": 158 | version "9.0.0-beta.16" 159 | resolved "https://registry.yarnpkg.com/@intlify/shared/-/shared-9.0.0-beta.16.tgz#51a80ca4705c93cb14c8f06398dfc550df09d67d" 160 | integrity sha512-A7GSOovcZn/NMoAmDc8FG9uRcFv6iygriK8+C6HFeOnMQ9X+T9f5A9bPtXhCOCiRpQm9SUtGqXedxO5Y8rz9/A== 161 | 162 | "@nodelib/fs.scandir@2.1.4": 163 | version "2.1.4" 164 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz#d4b3549a5db5de2683e0c1071ab4f140904bbf69" 165 | integrity sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA== 166 | dependencies: 167 | "@nodelib/fs.stat" "2.0.4" 168 | run-parallel "^1.1.9" 169 | 170 | "@nodelib/fs.stat@2.0.4", "@nodelib/fs.stat@^2.0.2": 171 | version "2.0.4" 172 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz#a3f2dd61bab43b8db8fa108a121cfffe4c676655" 173 | integrity sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q== 174 | 175 | "@nodelib/fs.walk@^1.2.3": 176 | version "1.2.6" 177 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz#cce9396b30aa5afe9e3756608f5831adcb53d063" 178 | integrity sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow== 179 | dependencies: 180 | "@nodelib/fs.scandir" "2.1.4" 181 | fastq "^1.6.0" 182 | 183 | "@sentry/core@5.30.0": 184 | version "5.30.0" 185 | resolved "https://registry.yarnpkg.com/@sentry/core/-/core-5.30.0.tgz#6b203664f69e75106ee8b5a2fe1d717379b331f3" 186 | integrity sha512-TmfrII8w1PQZSZgPpUESqjB+jC6MvZJZdLtE/0hZ+SrnKhW3x5WlYLvTXZpcWePYBku7rl2wn1RZu6uT0qCTeg== 187 | dependencies: 188 | "@sentry/hub" "5.30.0" 189 | "@sentry/minimal" "5.30.0" 190 | "@sentry/types" "5.30.0" 191 | "@sentry/utils" "5.30.0" 192 | tslib "^1.9.3" 193 | 194 | "@sentry/hub@5.30.0": 195 | version "5.30.0" 196 | resolved "https://registry.yarnpkg.com/@sentry/hub/-/hub-5.30.0.tgz#2453be9b9cb903404366e198bd30c7ca74cdc100" 197 | integrity sha512-2tYrGnzb1gKz2EkMDQcfLrDTvmGcQPuWxLnJKXJvYTQDGLlEvi2tWz1VIHjunmOvJrB5aIQLhm+dcMRwFZDCqQ== 198 | dependencies: 199 | "@sentry/types" "5.30.0" 200 | "@sentry/utils" "5.30.0" 201 | tslib "^1.9.3" 202 | 203 | "@sentry/minimal@5.30.0": 204 | version "5.30.0" 205 | resolved "https://registry.yarnpkg.com/@sentry/minimal/-/minimal-5.30.0.tgz#ce3d3a6a273428e0084adcb800bc12e72d34637b" 206 | integrity sha512-BwWb/owZKtkDX+Sc4zCSTNcvZUq7YcH3uAVlmh/gtR9rmUvbzAA3ewLuB3myi4wWRAMEtny6+J/FN/x+2wn9Xw== 207 | dependencies: 208 | "@sentry/hub" "5.30.0" 209 | "@sentry/types" "5.30.0" 210 | tslib "^1.9.3" 211 | 212 | "@sentry/node@^5.30.0": 213 | version "5.30.0" 214 | resolved "https://registry.yarnpkg.com/@sentry/node/-/node-5.30.0.tgz#4ca479e799b1021285d7fe12ac0858951c11cd48" 215 | integrity sha512-Br5oyVBF0fZo6ZS9bxbJZG4ApAjRqAnqFFurMVJJdunNb80brh7a5Qva2kjhm+U6r9NJAB5OmDyPkA1Qnt+QVg== 216 | dependencies: 217 | "@sentry/core" "5.30.0" 218 | "@sentry/hub" "5.30.0" 219 | "@sentry/tracing" "5.30.0" 220 | "@sentry/types" "5.30.0" 221 | "@sentry/utils" "5.30.0" 222 | cookie "^0.4.1" 223 | https-proxy-agent "^5.0.0" 224 | lru_map "^0.3.3" 225 | tslib "^1.9.3" 226 | 227 | "@sentry/tracing@5.30.0": 228 | version "5.30.0" 229 | resolved "https://registry.yarnpkg.com/@sentry/tracing/-/tracing-5.30.0.tgz#501d21f00c3f3be7f7635d8710da70d9419d4e1f" 230 | integrity sha512-dUFowCr0AIMwiLD7Fs314Mdzcug+gBVo/+NCMyDw8tFxJkwWAKl7Qa2OZxLQ0ZHjakcj1hNKfCQJ9rhyfOl4Aw== 231 | dependencies: 232 | "@sentry/hub" "5.30.0" 233 | "@sentry/minimal" "5.30.0" 234 | "@sentry/types" "5.30.0" 235 | "@sentry/utils" "5.30.0" 236 | tslib "^1.9.3" 237 | 238 | "@sentry/types@5.30.0": 239 | version "5.30.0" 240 | resolved "https://registry.yarnpkg.com/@sentry/types/-/types-5.30.0.tgz#19709bbe12a1a0115bc790b8942917da5636f402" 241 | integrity sha512-R8xOqlSTZ+htqrfteCWU5Nk0CDN5ApUTvrlvBuiH1DyP6czDZ4ktbZB0hAgBlVcK0U+qpD3ag3Tqqpa5Q67rPw== 242 | 243 | "@sentry/utils@5.30.0": 244 | version "5.30.0" 245 | resolved "https://registry.yarnpkg.com/@sentry/utils/-/utils-5.30.0.tgz#9a5bd7ccff85ccfe7856d493bffa64cabc41e980" 246 | integrity sha512-zaYmoH0NWWtvnJjC9/CBseXMtKHm/tm40sz3YfJRxeQjyzRqNQPgivpd9R/oDJCYj999mzdW382p/qi2ypjLww== 247 | dependencies: 248 | "@sentry/types" "5.30.0" 249 | tslib "^1.9.3" 250 | 251 | "@types/braces@*": 252 | version "3.0.0" 253 | resolved "https://registry.yarnpkg.com/@types/braces/-/braces-3.0.0.tgz#7da1c0d44ff1c7eb660a36ec078ea61ba7eb42cb" 254 | integrity sha512-TbH79tcyi9FHwbyboOKeRachRq63mSuWYXOflsNO9ZyE5ClQ/JaozNKl+aWUq87qPNsXasXxi2AbgfwIJ+8GQw== 255 | 256 | "@types/chrome@*": 257 | version "0.0.130" 258 | resolved "https://registry.yarnpkg.com/@types/chrome/-/chrome-0.0.130.tgz#cde0934f673474794c01209bde84a4fc69987b23" 259 | integrity sha512-pAHbcPeOmjNCF5EoUCAZk3+5lll1yyIDP+CZRNf1Dk8LaANkNBNZ5szHqeYYVjMyEGP6yIFeaO+Y7qNpz1hVOw== 260 | dependencies: 261 | "@types/filesystem" "*" 262 | "@types/har-format" "*" 263 | 264 | "@types/chromecast-caf-receiver@^5.0.13": 265 | version "5.0.13" 266 | resolved "https://registry.yarnpkg.com/@types/chromecast-caf-receiver/-/chromecast-caf-receiver-5.0.13.tgz#c32d622973b9acb19408385b73a842f85284b1b4" 267 | integrity sha512-AR+4kzGrw+ruIVyMJApOpR/swa78bM+mvhkvXfCmk6Y0dqGccbctR2jWUtf2EuNOnicfXKm36D8QEf6B8rAvyw== 268 | 269 | "@types/chromecast-caf-sender@^1.0.3": 270 | version "1.0.3" 271 | resolved "https://registry.yarnpkg.com/@types/chromecast-caf-sender/-/chromecast-caf-sender-1.0.3.tgz#9bebbc16debc060463b56f3ca130052dfc499d4d" 272 | integrity sha512-UhlRZxrHvtpoDJFiNNUTIM63LNRV18LJYrfPehEatqyp7jrQYdhc8o32PfTujFIHARSSfu6zUxnOFCDWG/nwVA== 273 | dependencies: 274 | "@types/chrome" "*" 275 | 276 | "@types/filesystem@*": 277 | version "0.0.29" 278 | resolved "https://registry.yarnpkg.com/@types/filesystem/-/filesystem-0.0.29.tgz#ee3748eb5be140dcf980c3bd35f11aec5f7a3748" 279 | integrity sha512-85/1KfRedmfPGsbK8YzeaQUyV1FQAvMPMTuWFQ5EkLd2w7szhNO96bk3Rh/SKmOfd9co2rCLf0Voy4o7ECBOvw== 280 | dependencies: 281 | "@types/filewriter" "*" 282 | 283 | "@types/filewriter@*": 284 | version "0.0.28" 285 | resolved "https://registry.yarnpkg.com/@types/filewriter/-/filewriter-0.0.28.tgz#c054e8af4d9dd75db4e63abc76f885168714d4b3" 286 | integrity sha1-wFTor02d11205jq8dviFFocU1LM= 287 | 288 | "@types/har-format@*": 289 | version "1.2.5" 290 | resolved "https://registry.yarnpkg.com/@types/har-format/-/har-format-1.2.5.tgz#4f6648814d0fdcb6a510e3364a9db439a753c4b1" 291 | integrity sha512-IG8AE1m2pWtPqQ7wXhFhy6Q59bwwnLwO36v5Rit2FrbXCIp8Sk8E2PfUCreyrdo17STwFSKDAkitVuVYbpEHvQ== 292 | 293 | "@types/lodash-es@^4.17.4": 294 | version "4.17.4" 295 | resolved "https://registry.yarnpkg.com/@types/lodash-es/-/lodash-es-4.17.4.tgz#b2e440d2bf8a93584a9fd798452ec497986c9b97" 296 | integrity sha512-BBz79DCJbD2CVYZH67MBeHZRX++HF+5p8Mo5MzjZi64Wac39S3diedJYHZtScbRVf4DjZyN6LzA0SB0zy+HSSQ== 297 | dependencies: 298 | "@types/lodash" "*" 299 | 300 | "@types/lodash@*": 301 | version "4.14.168" 302 | resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.168.tgz#fe24632e79b7ade3f132891afff86caa5e5ce008" 303 | integrity sha512-oVfRvqHV/V6D1yifJbVRU3TMp8OT6o6BG+U9MkwuJ3U8/CsDHvalRpsxBqivn71ztOFZBTfJMvETbqHiaNSj7Q== 304 | 305 | "@types/micromatch@^4.0.1": 306 | version "4.0.1" 307 | resolved "https://registry.yarnpkg.com/@types/micromatch/-/micromatch-4.0.1.tgz#9381449dd659fc3823fd2a4190ceacc985083bc7" 308 | integrity sha512-my6fLBvpY70KattTNzYOK6KU1oR1+UCz9ug/JbcF5UrEmeCt9P7DV2t7L8+t18mMPINqGQCE4O8PLOPbI84gxw== 309 | dependencies: 310 | "@types/braces" "*" 311 | 312 | "@types/node@*": 313 | version "14.14.27" 314 | resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.27.tgz#c7127f8da0498993e13b1a42faf1303d3110d2f2" 315 | integrity sha512-Ecfmo4YDQPwuqTCl1yBxLV5ihKfRlkBmzUEDcfIRvDxOTGQEeikr317Ln7Gcv0tjA8dVgKI3rniqW2G1OyKDng== 316 | 317 | "@types/qrcode@^1.4.0": 318 | version "1.4.0" 319 | resolved "https://registry.yarnpkg.com/@types/qrcode/-/qrcode-1.4.0.tgz#103a93c6dfcbd022f9a9ca445e49a3477f799303" 320 | integrity sha512-BwDnCjdZKVOyy6+SPJ4ph+0DAftZGn5JFCY/MhetdEQ8yF6+YndhJWlfdBP8vtMe0w5/FH29Xi6bnEwVWkU1LQ== 321 | dependencies: 322 | "@types/node" "*" 323 | 324 | "@vitejs/plugin-vue@^1.1.4": 325 | version "1.1.4" 326 | resolved "https://registry.yarnpkg.com/@vitejs/plugin-vue/-/plugin-vue-1.1.4.tgz#1dd388519b75439b7733601b55238ca691864796" 327 | integrity sha512-cUDILd++9jdhdjpuhgJofQqOabOKe+kTWTE2HQY2PBHEUO2fgwTurLE0cJg9UcIo1x4lHfsp+59S9TBCHgTZkw== 328 | 329 | "@vue/compiler-core@3.0.5", "@vue/compiler-core@^3.0.0", "@vue/compiler-core@^3.0.1", "@vue/compiler-core@^3.0.2": 330 | version "3.0.5" 331 | resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.0.5.tgz#a6e54cabe9536e74c6513acd2649f311af1d43ac" 332 | integrity sha512-iFXwk2gmU/GGwN4hpBwDWWMLvpkIejf/AybcFtlQ5V1ur+5jwfBaV0Y1RXoR6ePfBPJixtKZ3PmN+M+HgMAtfQ== 333 | dependencies: 334 | "@babel/parser" "^7.12.0" 335 | "@babel/types" "^7.12.0" 336 | "@vue/shared" "3.0.5" 337 | estree-walker "^2.0.1" 338 | source-map "^0.6.1" 339 | 340 | "@vue/compiler-dom@3.0.5": 341 | version "3.0.5" 342 | resolved "https://registry.yarnpkg.com/@vue/compiler-dom/-/compiler-dom-3.0.5.tgz#7885a13e6d18f64dde8ebceec052ed2c102696c2" 343 | integrity sha512-HSOSe2XSPuCkp20h4+HXSiPH9qkhz6YbW9z9ZtL5vef2T2PMugH7/osIFVSrRZP/Ul5twFZ7MIRlp8tPX6e4/g== 344 | dependencies: 345 | "@vue/compiler-core" "3.0.5" 346 | "@vue/shared" "3.0.5" 347 | 348 | "@vue/compiler-sfc@^3.0.5": 349 | version "3.0.5" 350 | resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.0.5.tgz#3ae08e60244a72faf9598361874fb7bdb5b1d37c" 351 | integrity sha512-uOAC4X0Gx3SQ9YvDC7YMpbDvoCmPvP0afVhJoxRotDdJ+r8VO3q4hFf/2f7U62k4Vkdftp6DVni8QixrfYzs+w== 352 | dependencies: 353 | "@babel/parser" "^7.12.0" 354 | "@babel/types" "^7.12.0" 355 | "@vue/compiler-core" "3.0.5" 356 | "@vue/compiler-dom" "3.0.5" 357 | "@vue/compiler-ssr" "3.0.5" 358 | "@vue/shared" "3.0.5" 359 | consolidate "^0.16.0" 360 | estree-walker "^2.0.1" 361 | hash-sum "^2.0.0" 362 | lru-cache "^5.1.1" 363 | magic-string "^0.25.7" 364 | merge-source-map "^1.1.0" 365 | postcss "^7.0.32" 366 | postcss-modules "^3.2.2" 367 | postcss-selector-parser "^6.0.4" 368 | source-map "^0.6.1" 369 | 370 | "@vue/compiler-ssr@3.0.5": 371 | version "3.0.5" 372 | resolved "https://registry.yarnpkg.com/@vue/compiler-ssr/-/compiler-ssr-3.0.5.tgz#7661ad891a0be948726c7f7ad1e425253c587b83" 373 | integrity sha512-Wm//Kuxa1DpgjE4P9W0coZr8wklOfJ35Jtq61CbU+t601CpPTK4+FL2QDBItaG7aoUUDCWL5nnxMkuaOgzTBKg== 374 | dependencies: 375 | "@vue/compiler-dom" "3.0.5" 376 | "@vue/shared" "3.0.5" 377 | 378 | "@vue/reactivity@3.0.5": 379 | version "3.0.5" 380 | resolved "https://registry.yarnpkg.com/@vue/reactivity/-/reactivity-3.0.5.tgz#e3789e4d523d845f9ae0b4d770e2b45594742fd2" 381 | integrity sha512-3xodUE3sEIJgS7ntwUbopIpzzvi7vDAOjVamfb2l+v1FUg0jpd3gf62N2wggJw3fxBMr+QvyxpD+dBoxLsmAjw== 382 | dependencies: 383 | "@vue/shared" "3.0.5" 384 | 385 | "@vue/runtime-core@3.0.5": 386 | version "3.0.5" 387 | resolved "https://registry.yarnpkg.com/@vue/runtime-core/-/runtime-core-3.0.5.tgz#da6331d5f300d5794e9e0ebdc8a8bd72a9e19962" 388 | integrity sha512-Cnyi2NqREwOLcTEsIi1DQX1hHtkVj4eGm4hBG7HhokS05DqpK4/80jG6PCCnCH9rIJDB2FqtaODX397210plXg== 389 | dependencies: 390 | "@vue/reactivity" "3.0.5" 391 | "@vue/shared" "3.0.5" 392 | 393 | "@vue/runtime-dom@3.0.5": 394 | version "3.0.5" 395 | resolved "https://registry.yarnpkg.com/@vue/runtime-dom/-/runtime-dom-3.0.5.tgz#1ce2c9c449e26ab06963da0064096e882a7a8935" 396 | integrity sha512-iilX1KySeIzHHtErT6Y44db1rhWK5tAI0CiJIPr+SJoZ2jbjoOSE6ff/jfIQakchbm1d6jq6VtRVnp5xYdOXKA== 397 | dependencies: 398 | "@vue/runtime-core" "3.0.5" 399 | "@vue/shared" "3.0.5" 400 | csstype "^2.6.8" 401 | 402 | "@vue/shared@3.0.5": 403 | version "3.0.5" 404 | resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.0.5.tgz#c131d88bd6713cc4d93b3bb1372edb1983225ff0" 405 | integrity sha512-gYsNoGkWejBxNO6SNRjOh/xKeZ0H0V+TFzaPzODfBjkAIb0aQgBuixC1brandC/CDJy1wYPwSoYrXpvul7m6yw== 406 | 407 | "@vuedx/analyze@0.6.3": 408 | version "0.6.3" 409 | resolved "https://registry.yarnpkg.com/@vuedx/analyze/-/analyze-0.6.3.tgz#f7f367ea1a1b10e22212a4f2f89d5781f17f3c84" 410 | integrity sha512-LiQ7Ppw4nEr5qjth+gg1m48yXD7usOcAygUU10lLwfRRlDZevxAdZRcNuC0vBOXUG3xbl6CSDXnAMeWFdlUiyw== 411 | dependencies: 412 | "@babel/code-frame" "^7.10.4" 413 | "@babel/generator" "^7.12.1" 414 | "@babel/parser" "^7.12.3" 415 | "@babel/template" "^7.12.7" 416 | "@babel/traverse" "7.12.1" 417 | "@babel/types" "7.12.1" 418 | "@types/micromatch" "^4.0.1" 419 | "@vuedx/compiler-sfc" "0.6.2" 420 | "@vuedx/compiler-tsx" "0.6.3" 421 | "@vuedx/projectconfig" "0.6.2" 422 | "@vuedx/shared" "0.6.2" 423 | "@vuedx/template-ast-types" "0.6.2" 424 | cli-highlight "^2.1.4" 425 | commander "^6.1.0" 426 | fast-glob "^3.2.4" 427 | hash-sum "^2.0.0" 428 | micromatch "^4.0.2" 429 | 430 | "@vuedx/compiler-sfc@0.6.2": 431 | version "0.6.2" 432 | resolved "https://registry.yarnpkg.com/@vuedx/compiler-sfc/-/compiler-sfc-0.6.2.tgz#f9a0d66eb48be839d363364ed4cd96967929f3cb" 433 | integrity sha512-mJehCyO6BJiHCLPfVQQZb7RliuwBh7voGkrF27SkA3yhv44VSDaMbDIX2VRm3utl1CacFEVdNFqB9QYviZByfg== 434 | dependencies: 435 | "@vue/compiler-core" "^3.0.2" 436 | lru-cache "^6.0.0" 437 | source-map "^0.6.1" 438 | 439 | "@vuedx/compiler-tsx@0.6.3": 440 | version "0.6.3" 441 | resolved "https://registry.yarnpkg.com/@vuedx/compiler-tsx/-/compiler-tsx-0.6.3.tgz#d5ed641ee5c90baf3a04962f47e8c9d31d318b9a" 442 | integrity sha512-H1SSgUHQXWoTnrIxvl9uXGMUqKlWjNddp8xc+EAg7BRQ4F7kFzHTzOsafG5xzrqnmZujj8cLUknG123rWgsxIg== 443 | dependencies: 444 | "@babel/parser" "7.12.3" 445 | "@babel/types" "7.12.1" 446 | "@vue/compiler-core" "^3.0.1" 447 | "@vuedx/shared" "0.6.2" 448 | "@vuedx/template-ast-types" "0.6.2" 449 | 450 | "@vuedx/projectconfig@0.6.2": 451 | version "0.6.2" 452 | resolved "https://registry.yarnpkg.com/@vuedx/projectconfig/-/projectconfig-0.6.2.tgz#4c7c32fc76a5a0cb2a8a8b4c4530183d7b70decc" 453 | integrity sha512-qoekczmYpg4bOHMUduGgwGEWYq2CZL9HfztNzSPaJnErTBc4VNFnCBLsAtFPLkILASh6vzE2m/EpIzSpMW5mJQ== 454 | 455 | "@vuedx/shared@0.6.2": 456 | version "0.6.2" 457 | resolved "https://registry.yarnpkg.com/@vuedx/shared/-/shared-0.6.2.tgz#ada493a0af75306e37ac19fe8e836f1ce07c8745" 458 | integrity sha512-xCXK+X5iDXkNfLglxFGFeEtqSWlopU8Cj6dGgMABWlee7HVDl47A4sj5oQpKuTjwRJHyE+BYtgGxtf1eLee5Yg== 459 | dependencies: 460 | "@sentry/node" "^5.30.0" 461 | node-unique-machine-id "^1.1.0" 462 | uuid "^8.3.2" 463 | 464 | "@vuedx/template-ast-types@0.6.2": 465 | version "0.6.2" 466 | resolved "https://registry.yarnpkg.com/@vuedx/template-ast-types/-/template-ast-types-0.6.2.tgz#8932b665abfed4593a0bdbfa91ed788056876770" 467 | integrity sha512-TY3IesmF6/XbZnlLnImE30MXVJeXpMh8F5ZKZeeVDIvDWmPDZ6fC8DbDj1GycZtx77C85yZRnJJqq5v0AED4aw== 468 | dependencies: 469 | "@vue/compiler-core" "^3.0.0" 470 | 471 | "@vuedx/typecheck@^0.6.0": 472 | version "0.6.3" 473 | resolved "https://registry.yarnpkg.com/@vuedx/typecheck/-/typecheck-0.6.3.tgz#d66b8dcfa8d7d37ccfa196d019c8a5cc8bc7fc4d" 474 | integrity sha512-1WfUI+bqg1O8Vklz24EZdsUE6ak4QCxtV6gWrUw+VUbep7ANhZM4RkaMsDFWVdeb2dip9ROrO8ESBrsIViPT8Q== 475 | dependencies: 476 | "@vuedx/shared" "0.6.2" 477 | "@vuedx/typescript-plugin-vue" "0.6.3" 478 | "@vuedx/vue-virtual-textdocument" "0.6.3" 479 | chalk "^4.1.0" 480 | fast-glob "^3.2.4" 481 | minimist "^1.2.5" 482 | resolve-from "^5.0.0" 483 | typescript "^4.0.3" 484 | 485 | "@vuedx/typescript-plugin-vue@0.6.3", "@vuedx/typescript-plugin-vue@^0.6.0": 486 | version "0.6.3" 487 | resolved "https://registry.yarnpkg.com/@vuedx/typescript-plugin-vue/-/typescript-plugin-vue-0.6.3.tgz#cc2d99bdc0abbde9bb5909341c47715af00539a3" 488 | integrity sha512-zAhXM9LDVYvjAMnTiqf6yZcJXXh1rQrH3JhcmQNmlxk26sRysfa/VWNC8qkfq9vcOKRf1eQusH4g+Vov6qPGig== 489 | dependencies: 490 | "@intlify/core" "^9.0.0-beta.15" 491 | "@vuedx/analyze" "0.6.3" 492 | "@vuedx/compiler-sfc" "0.6.2" 493 | "@vuedx/projectconfig" "0.6.2" 494 | "@vuedx/shared" "0.6.2" 495 | "@vuedx/template-ast-types" "0.6.2" 496 | "@vuedx/vue-virtual-textdocument" "0.6.3" 497 | de-indent "^1.0.2" 498 | json5 "^2.1.3" 499 | quick-lru "^5.1.1" 500 | vscode-uri "^2.1.2" 501 | vscode-web-custom-data "^0.3.2" 502 | 503 | "@vuedx/vue-virtual-textdocument@0.6.3": 504 | version "0.6.3" 505 | resolved "https://registry.yarnpkg.com/@vuedx/vue-virtual-textdocument/-/vue-virtual-textdocument-0.6.3.tgz#750484d93378b47ead5f6e319e32d33160ed5658" 506 | integrity sha512-FN5h4GsIcYAIfFbal0+1ryddDgpxMx/gxGE5QYinbwj5PwILZzyAUt//drQfppIHzCL+TJuZSml7fAod5tYvQA== 507 | dependencies: 508 | "@vuedx/analyze" "0.6.3" 509 | "@vuedx/compiler-sfc" "0.6.2" 510 | "@vuedx/compiler-tsx" "0.6.3" 511 | "@vuedx/shared" "0.6.2" 512 | source-map "^0.6.1" 513 | vscode-languageserver-textdocument "^1.0.1" 514 | vscode-uri "^2.1.2" 515 | 516 | acorn-node@^1.6.1: 517 | version "1.8.2" 518 | resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" 519 | integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== 520 | dependencies: 521 | acorn "^7.0.0" 522 | acorn-walk "^7.0.0" 523 | xtend "^4.0.2" 524 | 525 | acorn-walk@^7.0.0: 526 | version "7.2.0" 527 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" 528 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 529 | 530 | acorn@^7.0.0: 531 | version "7.4.1" 532 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 533 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 534 | 535 | agent-base@6: 536 | version "6.0.2" 537 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" 538 | integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== 539 | dependencies: 540 | debug "4" 541 | 542 | ansi-regex@^4.1.0: 543 | version "4.1.0" 544 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 545 | integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== 546 | 547 | ansi-regex@^5.0.0: 548 | version "5.0.0" 549 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 550 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 551 | 552 | ansi-styles@^3.2.0, ansi-styles@^3.2.1: 553 | version "3.2.1" 554 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 555 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 556 | dependencies: 557 | color-convert "^1.9.0" 558 | 559 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 560 | version "4.3.0" 561 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 562 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 563 | dependencies: 564 | color-convert "^2.0.1" 565 | 566 | any-promise@^1.0.0: 567 | version "1.3.0" 568 | resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" 569 | integrity sha1-q8av7tzqUugJzcA3au0845Y10X8= 570 | 571 | at-least-node@^1.0.0: 572 | version "1.0.0" 573 | resolved "https://registry.yarnpkg.com/at-least-node/-/at-least-node-1.0.0.tgz#602cd4b46e844ad4effc92a8011a3c46e0238dc2" 574 | integrity sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg== 575 | 576 | autoprefixer@^10.2.4: 577 | version "10.2.4" 578 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.2.4.tgz#c0e7cf24fcc6a1ae5d6250c623f0cb8beef2f7e1" 579 | integrity sha512-DCCdUQiMD+P/as8m3XkeTUkUKuuRqLGcwD0nll7wevhqoJfMRpJlkFd1+MQh1pvupjiQuip42lc/VFvfUTMSKw== 580 | dependencies: 581 | browserslist "^4.16.1" 582 | caniuse-lite "^1.0.30001181" 583 | colorette "^1.2.1" 584 | fraction.js "^4.0.13" 585 | normalize-range "^0.1.2" 586 | postcss-value-parser "^4.1.0" 587 | 588 | balanced-match@^1.0.0: 589 | version "1.0.0" 590 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 591 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 592 | 593 | base64-js@^1.3.1: 594 | version "1.5.1" 595 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" 596 | integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== 597 | 598 | big.js@^5.2.2: 599 | version "5.2.2" 600 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" 601 | integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== 602 | 603 | bluebird@^3.7.2: 604 | version "3.7.2" 605 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" 606 | integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== 607 | 608 | brace-expansion@^1.1.7: 609 | version "1.1.11" 610 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 611 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 612 | dependencies: 613 | balanced-match "^1.0.0" 614 | concat-map "0.0.1" 615 | 616 | braces@^3.0.1: 617 | version "3.0.2" 618 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 619 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 620 | dependencies: 621 | fill-range "^7.0.1" 622 | 623 | browserslist@^4.16.1: 624 | version "4.16.3" 625 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.3.tgz#340aa46940d7db878748567c5dea24a48ddf3717" 626 | integrity sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw== 627 | dependencies: 628 | caniuse-lite "^1.0.30001181" 629 | colorette "^1.2.1" 630 | electron-to-chromium "^1.3.649" 631 | escalade "^3.1.1" 632 | node-releases "^1.1.70" 633 | 634 | buffer-alloc-unsafe@^1.1.0: 635 | version "1.1.0" 636 | resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" 637 | integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg== 638 | 639 | buffer-alloc@^1.2.0: 640 | version "1.2.0" 641 | resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" 642 | integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow== 643 | dependencies: 644 | buffer-alloc-unsafe "^1.1.0" 645 | buffer-fill "^1.0.0" 646 | 647 | buffer-fill@^1.0.0: 648 | version "1.0.0" 649 | resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" 650 | integrity sha1-+PeLdniYiO858gXNY39o5wISKyw= 651 | 652 | buffer-from@^1.1.1: 653 | version "1.1.1" 654 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 655 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 656 | 657 | buffer@^5.4.3: 658 | version "5.7.1" 659 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" 660 | integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== 661 | dependencies: 662 | base64-js "^1.3.1" 663 | ieee754 "^1.1.13" 664 | 665 | bytes@^3.0.0: 666 | version "3.1.0" 667 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" 668 | integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== 669 | 670 | camelcase-css@^2.0.1: 671 | version "2.0.1" 672 | resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" 673 | integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== 674 | 675 | camelcase@^5.0.0: 676 | version "5.3.1" 677 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 678 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 679 | 680 | caniuse-lite@^1.0.30001181: 681 | version "1.0.30001185" 682 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001185.tgz#3482a407d261da04393e2f0d61eefbc53be43b95" 683 | integrity sha512-Fpi4kVNtNvJ15H0F6vwmXtb3tukv3Zg3qhKkOGUq7KJ1J6b9kf4dnNgtEAFXhRsJo0gNj9W60+wBvn0JcTvdTg== 684 | 685 | chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2: 686 | version "2.4.2" 687 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 688 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 689 | dependencies: 690 | ansi-styles "^3.2.1" 691 | escape-string-regexp "^1.0.5" 692 | supports-color "^5.3.0" 693 | 694 | chalk@^4.0.0, chalk@^4.1.0: 695 | version "4.1.0" 696 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" 697 | integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== 698 | dependencies: 699 | ansi-styles "^4.1.0" 700 | supports-color "^7.1.0" 701 | 702 | cli-highlight@^2.1.4: 703 | version "2.1.10" 704 | resolved "https://registry.yarnpkg.com/cli-highlight/-/cli-highlight-2.1.10.tgz#26a087da9209dce4fcb8cf5427dc97cd96ac173a" 705 | integrity sha512-CcPFD3JwdQ2oSzy+AMG6j3LRTkNjM82kzcSKzoVw6cLanDCJNlsLjeqVTOTfOfucnWv5F0rmBemVf1m9JiIasw== 706 | dependencies: 707 | chalk "^4.0.0" 708 | highlight.js "^10.0.0" 709 | mz "^2.4.0" 710 | parse5 "^5.1.1" 711 | parse5-htmlparser2-tree-adapter "^6.0.0" 712 | yargs "^16.0.0" 713 | 714 | cliui@^5.0.0: 715 | version "5.0.0" 716 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" 717 | integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== 718 | dependencies: 719 | string-width "^3.1.0" 720 | strip-ansi "^5.2.0" 721 | wrap-ansi "^5.1.0" 722 | 723 | cliui@^7.0.2: 724 | version "7.0.4" 725 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 726 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 727 | dependencies: 728 | string-width "^4.2.0" 729 | strip-ansi "^6.0.0" 730 | wrap-ansi "^7.0.0" 731 | 732 | color-convert@^1.9.0, color-convert@^1.9.1: 733 | version "1.9.3" 734 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 735 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 736 | dependencies: 737 | color-name "1.1.3" 738 | 739 | color-convert@^2.0.1: 740 | version "2.0.1" 741 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 742 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 743 | dependencies: 744 | color-name "~1.1.4" 745 | 746 | color-name@1.1.3: 747 | version "1.1.3" 748 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 749 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 750 | 751 | color-name@^1.0.0, color-name@~1.1.4: 752 | version "1.1.4" 753 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 754 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 755 | 756 | color-string@^1.5.4: 757 | version "1.5.4" 758 | resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.4.tgz#dd51cd25cfee953d138fe4002372cc3d0e504cb6" 759 | integrity sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw== 760 | dependencies: 761 | color-name "^1.0.0" 762 | simple-swizzle "^0.2.2" 763 | 764 | color@^3.1.3: 765 | version "3.1.3" 766 | resolved "https://registry.yarnpkg.com/color/-/color-3.1.3.tgz#ca67fb4e7b97d611dcde39eceed422067d91596e" 767 | integrity sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ== 768 | dependencies: 769 | color-convert "^1.9.1" 770 | color-string "^1.5.4" 771 | 772 | colorette@^1.2.1: 773 | version "1.2.1" 774 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b" 775 | integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw== 776 | 777 | commander@^6.0.0, commander@^6.1.0: 778 | version "6.2.1" 779 | resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" 780 | integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== 781 | 782 | concat-map@0.0.1: 783 | version "0.0.1" 784 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 785 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 786 | 787 | consolidate@^0.16.0: 788 | version "0.16.0" 789 | resolved "https://registry.yarnpkg.com/consolidate/-/consolidate-0.16.0.tgz#a11864768930f2f19431660a65906668f5fbdc16" 790 | integrity sha512-Nhl1wzCslqXYTJVDyJCu3ODohy9OfBMB5uD2BiBTzd7w+QY0lBzafkR8y8755yMYHAaMD4NuzbAw03/xzfw+eQ== 791 | dependencies: 792 | bluebird "^3.7.2" 793 | 794 | cookie@^0.4.1: 795 | version "0.4.1" 796 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.1.tgz#afd713fe26ebd21ba95ceb61f9a8116e50a537d1" 797 | integrity sha512-ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA== 798 | 799 | css-unit-converter@^1.1.1: 800 | version "1.1.2" 801 | resolved "https://registry.yarnpkg.com/css-unit-converter/-/css-unit-converter-1.1.2.tgz#4c77f5a1954e6dbff60695ecb214e3270436ab21" 802 | integrity sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA== 803 | 804 | cssesc@^3.0.0: 805 | version "3.0.0" 806 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" 807 | integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== 808 | 809 | csstype@^2.6.8: 810 | version "2.6.14" 811 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-2.6.14.tgz#004822a4050345b55ad4dcc00be1d9cf2f4296de" 812 | integrity sha512-2mSc+VEpGPblzAxyeR+vZhJKgYg0Og0nnRi7pmRXFYYxSfnOnW8A5wwQb4n4cE2nIOzqKOAzLCaEX6aBmNEv8A== 813 | 814 | de-indent@^1.0.2: 815 | version "1.0.2" 816 | resolved "https://registry.yarnpkg.com/de-indent/-/de-indent-1.0.2.tgz#b2038e846dc33baa5796128d0804b455b8c1e21d" 817 | integrity sha1-sgOOhG3DO6pXlhKNCAS0VbjB4h0= 818 | 819 | debug@4, debug@^4.1.0: 820 | version "4.3.1" 821 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" 822 | integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== 823 | dependencies: 824 | ms "2.1.2" 825 | 826 | decamelize@^1.2.0: 827 | version "1.2.0" 828 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 829 | integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 830 | 831 | defined@^1.0.0: 832 | version "1.0.0" 833 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 834 | integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM= 835 | 836 | detective@^5.2.0: 837 | version "5.2.0" 838 | resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.0.tgz#feb2a77e85b904ecdea459ad897cc90a99bd2a7b" 839 | integrity sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg== 840 | dependencies: 841 | acorn-node "^1.6.1" 842 | defined "^1.0.0" 843 | minimist "^1.1.1" 844 | 845 | didyoumean@^1.2.1: 846 | version "1.2.1" 847 | resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.1.tgz#e92edfdada6537d484d73c0172fd1eba0c4976ff" 848 | integrity sha1-6S7f2tplN9SE1zwBcv0eugxJdv8= 849 | 850 | dijkstrajs@^1.0.1: 851 | version "1.0.1" 852 | resolved "https://registry.yarnpkg.com/dijkstrajs/-/dijkstrajs-1.0.1.tgz#d3cd81221e3ea40742cfcde556d4e99e98ddc71b" 853 | integrity sha1-082BIh4+pAdCz83lVtTpnpjdxxs= 854 | 855 | electron-to-chromium@^1.3.649: 856 | version "1.3.663" 857 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.663.tgz#dd54adfd8d7f0e01b80d236c6e232efbaa0c686c" 858 | integrity sha512-xkVkzHj6k3oRRGlmdgUCCLSLhtFYHDCTH7SeK+LJdJjnsLcrdbpr8EYmfMQhez3V/KPO5UScSpzQ0feYX6Qoyw== 859 | 860 | emoji-regex@^7.0.1: 861 | version "7.0.3" 862 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 863 | integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== 864 | 865 | emoji-regex@^8.0.0: 866 | version "8.0.0" 867 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 868 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 869 | 870 | emojis-list@^3.0.0: 871 | version "3.0.0" 872 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78" 873 | integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q== 874 | 875 | esbuild@^0.8.34: 876 | version "0.8.44" 877 | resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.8.44.tgz#2a74f48fe20579081c9d8fe99be6fb8d2848c887" 878 | integrity sha512-m9yyBZMgWuAB7e7tA2g9L4PovoLa5Xb73+Yg9uBBR2w3Fe4P9/nxqj/HLrw1k/rjdjF1eX1kNJRytboqOtRCCQ== 879 | 880 | escalade@^3.1.1: 881 | version "3.1.1" 882 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 883 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 884 | 885 | escape-string-regexp@^1.0.5: 886 | version "1.0.5" 887 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 888 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 889 | 890 | estree-walker@^2.0.1: 891 | version "2.0.2" 892 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" 893 | integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== 894 | 895 | fast-glob@^3.2.4: 896 | version "3.2.5" 897 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.5.tgz#7939af2a656de79a4f1901903ee8adcaa7cb9661" 898 | integrity sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg== 899 | dependencies: 900 | "@nodelib/fs.stat" "^2.0.2" 901 | "@nodelib/fs.walk" "^1.2.3" 902 | glob-parent "^5.1.0" 903 | merge2 "^1.3.0" 904 | micromatch "^4.0.2" 905 | picomatch "^2.2.1" 906 | 907 | fastq@^1.6.0: 908 | version "1.10.1" 909 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.10.1.tgz#8b8f2ac8bf3632d67afcd65dac248d5fdc45385e" 910 | integrity sha512-AWuv6Ery3pM+dY7LYS8YIaCiQvUaos9OB1RyNgaOWnaX+Tik7Onvcsf8x8c+YtDeT0maYLniBip2hox5KtEXXA== 911 | dependencies: 912 | reusify "^1.0.4" 913 | 914 | fill-range@^7.0.1: 915 | version "7.0.1" 916 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 917 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 918 | dependencies: 919 | to-regex-range "^5.0.1" 920 | 921 | find-up@^3.0.0: 922 | version "3.0.0" 923 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" 924 | integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== 925 | dependencies: 926 | locate-path "^3.0.0" 927 | 928 | fraction.js@^4.0.13: 929 | version "4.0.13" 930 | resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.0.13.tgz#3c1c315fa16b35c85fffa95725a36fa729c69dfe" 931 | integrity sha512-E1fz2Xs9ltlUp+qbiyx9wmt2n9dRzPsS11Jtdb8D2o+cC7wr9xkkKsVKJuBX0ST+LVS+LhLO+SbLJNtfWcJvXA== 932 | 933 | fs-extra@^9.1.0: 934 | version "9.1.0" 935 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" 936 | integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== 937 | dependencies: 938 | at-least-node "^1.0.0" 939 | graceful-fs "^4.2.0" 940 | jsonfile "^6.0.1" 941 | universalify "^2.0.0" 942 | 943 | fs.realpath@^1.0.0: 944 | version "1.0.0" 945 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 946 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 947 | 948 | fsevents@~2.3.1: 949 | version "2.3.2" 950 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 951 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 952 | 953 | function-bind@^1.1.1: 954 | version "1.1.1" 955 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 956 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 957 | 958 | generic-names@^2.0.1: 959 | version "2.0.1" 960 | resolved "https://registry.yarnpkg.com/generic-names/-/generic-names-2.0.1.tgz#f8a378ead2ccaa7a34f0317b05554832ae41b872" 961 | integrity sha512-kPCHWa1m9wGG/OwQpeweTwM/PYiQLrUIxXbt/P4Nic3LbGjCP0YwrALHW1uNLKZ0LIMg+RF+XRlj2ekT9ZlZAQ== 962 | dependencies: 963 | loader-utils "^1.1.0" 964 | 965 | get-caller-file@^2.0.1, get-caller-file@^2.0.5: 966 | version "2.0.5" 967 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 968 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 969 | 970 | glob-parent@^5.1.0: 971 | version "5.1.1" 972 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" 973 | integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== 974 | dependencies: 975 | is-glob "^4.0.1" 976 | 977 | glob@^7.0.0, glob@^7.1.2: 978 | version "7.1.6" 979 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 980 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 981 | dependencies: 982 | fs.realpath "^1.0.0" 983 | inflight "^1.0.4" 984 | inherits "2" 985 | minimatch "^3.0.4" 986 | once "^1.3.0" 987 | path-is-absolute "^1.0.0" 988 | 989 | globals@^11.1.0: 990 | version "11.12.0" 991 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 992 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 993 | 994 | graceful-fs@^4.1.6, graceful-fs@^4.2.0: 995 | version "4.2.6" 996 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" 997 | integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== 998 | 999 | has-flag@^3.0.0: 1000 | version "3.0.0" 1001 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1002 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1003 | 1004 | has-flag@^4.0.0: 1005 | version "4.0.0" 1006 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1007 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1008 | 1009 | has@^1.0.3: 1010 | version "1.0.3" 1011 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1012 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1013 | dependencies: 1014 | function-bind "^1.1.1" 1015 | 1016 | hash-sum@^2.0.0: 1017 | version "2.0.0" 1018 | resolved "https://registry.yarnpkg.com/hash-sum/-/hash-sum-2.0.0.tgz#81d01bb5de8ea4a214ad5d6ead1b523460b0b45a" 1019 | integrity sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg== 1020 | 1021 | highlight.js@^10.0.0: 1022 | version "10.6.0" 1023 | resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-10.6.0.tgz#0073aa71d566906965ba6e1b7be7b2682f5e18b6" 1024 | integrity sha512-8mlRcn5vk/r4+QcqerapwBYTe+iPL5ih6xrNylxrnBdHQiijDETfXX7VIxC3UiCRiINBJfANBAsPzAvRQj8RpQ== 1025 | 1026 | html-tags@^3.1.0: 1027 | version "3.1.0" 1028 | resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.1.0.tgz#7b5e6f7e665e9fb41f30007ed9e0d41e97fb2140" 1029 | integrity sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg== 1030 | 1031 | https-proxy-agent@^5.0.0: 1032 | version "5.0.0" 1033 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" 1034 | integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== 1035 | dependencies: 1036 | agent-base "6" 1037 | debug "4" 1038 | 1039 | icss-replace-symbols@^1.1.0: 1040 | version "1.1.0" 1041 | resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" 1042 | integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0= 1043 | 1044 | icss-utils@^4.0.0, icss-utils@^4.1.1: 1045 | version "4.1.1" 1046 | resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467" 1047 | integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA== 1048 | dependencies: 1049 | postcss "^7.0.14" 1050 | 1051 | ieee754@^1.1.13: 1052 | version "1.2.1" 1053 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" 1054 | integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== 1055 | 1056 | indexes-of@^1.0.1: 1057 | version "1.0.1" 1058 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" 1059 | integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc= 1060 | 1061 | inflight@^1.0.4: 1062 | version "1.0.6" 1063 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1064 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1065 | dependencies: 1066 | once "^1.3.0" 1067 | wrappy "1" 1068 | 1069 | inherits@2: 1070 | version "2.0.4" 1071 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1072 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1073 | 1074 | is-arrayish@^0.3.1: 1075 | version "0.3.2" 1076 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" 1077 | integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== 1078 | 1079 | is-core-module@^2.2.0: 1080 | version "2.2.0" 1081 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a" 1082 | integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ== 1083 | dependencies: 1084 | has "^1.0.3" 1085 | 1086 | is-extglob@^2.1.1: 1087 | version "2.1.1" 1088 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1089 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 1090 | 1091 | is-fullwidth-code-point@^2.0.0: 1092 | version "2.0.0" 1093 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1094 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 1095 | 1096 | is-fullwidth-code-point@^3.0.0: 1097 | version "3.0.0" 1098 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1099 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1100 | 1101 | is-glob@^4.0.1: 1102 | version "4.0.1" 1103 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 1104 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 1105 | dependencies: 1106 | is-extglob "^2.1.1" 1107 | 1108 | is-number@^7.0.0: 1109 | version "7.0.0" 1110 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1111 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1112 | 1113 | isarray@^2.0.1: 1114 | version "2.0.5" 1115 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" 1116 | integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== 1117 | 1118 | js-tokens@^4.0.0: 1119 | version "4.0.0" 1120 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1121 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1122 | 1123 | jsesc@^2.5.1: 1124 | version "2.5.2" 1125 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 1126 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 1127 | 1128 | json5@^1.0.1: 1129 | version "1.0.1" 1130 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 1131 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 1132 | dependencies: 1133 | minimist "^1.2.0" 1134 | 1135 | json5@^2.1.3: 1136 | version "2.2.0" 1137 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" 1138 | integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== 1139 | dependencies: 1140 | minimist "^1.2.5" 1141 | 1142 | jsonfile@^6.0.1: 1143 | version "6.1.0" 1144 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" 1145 | integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== 1146 | dependencies: 1147 | universalify "^2.0.0" 1148 | optionalDependencies: 1149 | graceful-fs "^4.1.6" 1150 | 1151 | loader-utils@^1.1.0: 1152 | version "1.4.0" 1153 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" 1154 | integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== 1155 | dependencies: 1156 | big.js "^5.2.2" 1157 | emojis-list "^3.0.0" 1158 | json5 "^1.0.1" 1159 | 1160 | locate-path@^3.0.0: 1161 | version "3.0.0" 1162 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" 1163 | integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== 1164 | dependencies: 1165 | p-locate "^3.0.0" 1166 | path-exists "^3.0.0" 1167 | 1168 | lodash-es@^4.17.20: 1169 | version "4.17.20" 1170 | resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.20.tgz#29f6332eefc60e849f869c264bc71126ad61e8f7" 1171 | integrity sha512-JD1COMZsq8maT6mnuz1UMV0jvYD0E0aUsSOdrr1/nAG3dhqQXwRRgeW0cSqH1U43INKcqxaiVIQNOUDld7gRDA== 1172 | 1173 | lodash.camelcase@^4.3.0: 1174 | version "4.3.0" 1175 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 1176 | integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY= 1177 | 1178 | lodash.toarray@^4.4.0: 1179 | version "4.4.0" 1180 | resolved "https://registry.yarnpkg.com/lodash.toarray/-/lodash.toarray-4.4.0.tgz#24c4bfcd6b2fba38bfd0594db1179d8e9b656561" 1181 | integrity sha1-JMS/zWsvuji/0FlNsRedjptlZWE= 1182 | 1183 | lodash@^4.17.19, lodash@^4.17.20: 1184 | version "4.17.20" 1185 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" 1186 | integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== 1187 | 1188 | lru-cache@^5.1.1: 1189 | version "5.1.1" 1190 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" 1191 | integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== 1192 | dependencies: 1193 | yallist "^3.0.2" 1194 | 1195 | lru-cache@^6.0.0: 1196 | version "6.0.0" 1197 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1198 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1199 | dependencies: 1200 | yallist "^4.0.0" 1201 | 1202 | lru_map@^0.3.3: 1203 | version "0.3.3" 1204 | resolved "https://registry.yarnpkg.com/lru_map/-/lru_map-0.3.3.tgz#b5c8351b9464cbd750335a79650a0ec0e56118dd" 1205 | integrity sha1-tcg1G5Rky9dQM1p5ZQoOwOVhGN0= 1206 | 1207 | magic-string@^0.25.7: 1208 | version "0.25.7" 1209 | resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051" 1210 | integrity sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA== 1211 | dependencies: 1212 | sourcemap-codec "^1.4.4" 1213 | 1214 | merge-source-map@^1.1.0: 1215 | version "1.1.0" 1216 | resolved "https://registry.yarnpkg.com/merge-source-map/-/merge-source-map-1.1.0.tgz#2fdde7e6020939f70906a68f2d7ae685e4c8c646" 1217 | integrity sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw== 1218 | dependencies: 1219 | source-map "^0.6.1" 1220 | 1221 | merge2@^1.3.0: 1222 | version "1.4.1" 1223 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 1224 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1225 | 1226 | micromatch@^4.0.2: 1227 | version "4.0.2" 1228 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" 1229 | integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== 1230 | dependencies: 1231 | braces "^3.0.1" 1232 | picomatch "^2.0.5" 1233 | 1234 | minimatch@^3.0.4: 1235 | version "3.0.4" 1236 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1237 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 1238 | dependencies: 1239 | brace-expansion "^1.1.7" 1240 | 1241 | minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5: 1242 | version "1.2.5" 1243 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 1244 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 1245 | 1246 | modern-normalize@^1.0.0: 1247 | version "1.0.0" 1248 | resolved "https://registry.yarnpkg.com/modern-normalize/-/modern-normalize-1.0.0.tgz#539d84a1e141338b01b346f3e27396d0ed17601e" 1249 | integrity sha512-1lM+BMLGuDfsdwf3rsgBSrxJwAZHFIrQ8YR61xIqdHo0uNKI9M52wNpHSrliZATJp51On6JD0AfRxd4YGSU0lw== 1250 | 1251 | ms@2.1.2: 1252 | version "2.1.2" 1253 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1254 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1255 | 1256 | mz@^2.4.0: 1257 | version "2.7.0" 1258 | resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" 1259 | integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== 1260 | dependencies: 1261 | any-promise "^1.0.0" 1262 | object-assign "^4.0.1" 1263 | thenify-all "^1.0.0" 1264 | 1265 | nanoid@^3.1.20: 1266 | version "3.1.20" 1267 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.20.tgz#badc263c6b1dcf14b71efaa85f6ab4c1d6cfc788" 1268 | integrity sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw== 1269 | 1270 | node-emoji@^1.8.1: 1271 | version "1.10.0" 1272 | resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.10.0.tgz#8886abd25d9c7bb61802a658523d1f8d2a89b2da" 1273 | integrity sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw== 1274 | dependencies: 1275 | lodash.toarray "^4.4.0" 1276 | 1277 | node-releases@^1.1.70: 1278 | version "1.1.70" 1279 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.70.tgz#66e0ed0273aa65666d7fe78febe7634875426a08" 1280 | integrity sha512-Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw== 1281 | 1282 | node-unique-machine-id@^1.1.0: 1283 | version "1.1.0" 1284 | resolved "https://registry.yarnpkg.com/node-unique-machine-id/-/node-unique-machine-id-1.1.0.tgz#dbd9351da927cfc0e85a663a55e8644da384b746" 1285 | integrity sha512-uJtdcFelVD08XdvxYWYzMYprSTPYl9CYiQbyGYbjXZcMZtLRlEqNUs+C/va/81DNgExsMHL5g0YDYQFS0pENRQ== 1286 | dependencies: 1287 | uuid "^3.3.3" 1288 | 1289 | normalize-range@^0.1.2: 1290 | version "0.1.2" 1291 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 1292 | integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= 1293 | 1294 | object-assign@^4.0.1, object-assign@^4.1.1: 1295 | version "4.1.1" 1296 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1297 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 1298 | 1299 | object-hash@^2.1.1: 1300 | version "2.1.1" 1301 | resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-2.1.1.tgz#9447d0279b4fcf80cff3259bf66a1dc73afabe09" 1302 | integrity sha512-VOJmgmS+7wvXf8CjbQmimtCnEx3IAoLxI3fp2fbWehxrWBcAQFbk+vcwb6vzR0VZv/eNCJ/27j151ZTwqW/JeQ== 1303 | 1304 | once@^1.3.0: 1305 | version "1.4.0" 1306 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1307 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 1308 | dependencies: 1309 | wrappy "1" 1310 | 1311 | p-limit@^2.0.0: 1312 | version "2.3.0" 1313 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 1314 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 1315 | dependencies: 1316 | p-try "^2.0.0" 1317 | 1318 | p-locate@^3.0.0: 1319 | version "3.0.0" 1320 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" 1321 | integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== 1322 | dependencies: 1323 | p-limit "^2.0.0" 1324 | 1325 | p-try@^2.0.0: 1326 | version "2.2.0" 1327 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 1328 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 1329 | 1330 | parse5-htmlparser2-tree-adapter@^6.0.0: 1331 | version "6.0.1" 1332 | resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz#2cdf9ad823321140370d4dbf5d3e92c7c8ddc6e6" 1333 | integrity sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA== 1334 | dependencies: 1335 | parse5 "^6.0.1" 1336 | 1337 | parse5@^5.1.1: 1338 | version "5.1.1" 1339 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.1.tgz#f68e4e5ba1852ac2cadc00f4555fff6c2abb6178" 1340 | integrity sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug== 1341 | 1342 | parse5@^6.0.1: 1343 | version "6.0.1" 1344 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" 1345 | integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== 1346 | 1347 | path-exists@^3.0.0: 1348 | version "3.0.0" 1349 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1350 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 1351 | 1352 | path-is-absolute@^1.0.0: 1353 | version "1.0.1" 1354 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1355 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 1356 | 1357 | path-parse@^1.0.6: 1358 | version "1.0.6" 1359 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 1360 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 1361 | 1362 | picomatch@^2.0.5, picomatch@^2.2.1: 1363 | version "2.2.2" 1364 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" 1365 | integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== 1366 | 1367 | pngjs@^3.3.0: 1368 | version "3.4.0" 1369 | resolved "https://registry.yarnpkg.com/pngjs/-/pngjs-3.4.0.tgz#99ca7d725965fb655814eaf65f38f12bbdbf555f" 1370 | integrity sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w== 1371 | 1372 | postcss-functions@^3: 1373 | version "3.0.0" 1374 | resolved "https://registry.yarnpkg.com/postcss-functions/-/postcss-functions-3.0.0.tgz#0e94d01444700a481de20de4d55fb2640564250e" 1375 | integrity sha1-DpTQFERwCkgd4g3k1V+yZAVkJQ4= 1376 | dependencies: 1377 | glob "^7.1.2" 1378 | object-assign "^4.1.1" 1379 | postcss "^6.0.9" 1380 | postcss-value-parser "^3.3.0" 1381 | 1382 | postcss-js@^3.0.3: 1383 | version "3.0.3" 1384 | resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-3.0.3.tgz#2f0bd370a2e8599d45439f6970403b5873abda33" 1385 | integrity sha512-gWnoWQXKFw65Hk/mi2+WTQTHdPD5UJdDXZmX073EY/B3BWnYjO4F4t0VneTCnCGQ5E5GsCdMkzPaTXwl3r5dJw== 1386 | dependencies: 1387 | camelcase-css "^2.0.1" 1388 | postcss "^8.1.6" 1389 | 1390 | postcss-modules-extract-imports@^2.0.0: 1391 | version "2.0.0" 1392 | resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e" 1393 | integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ== 1394 | dependencies: 1395 | postcss "^7.0.5" 1396 | 1397 | postcss-modules-local-by-default@^3.0.2: 1398 | version "3.0.3" 1399 | resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz#bb14e0cc78279d504dbdcbfd7e0ca28993ffbbb0" 1400 | integrity sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw== 1401 | dependencies: 1402 | icss-utils "^4.1.1" 1403 | postcss "^7.0.32" 1404 | postcss-selector-parser "^6.0.2" 1405 | postcss-value-parser "^4.1.0" 1406 | 1407 | postcss-modules-scope@^2.2.0: 1408 | version "2.2.0" 1409 | resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee" 1410 | integrity sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ== 1411 | dependencies: 1412 | postcss "^7.0.6" 1413 | postcss-selector-parser "^6.0.0" 1414 | 1415 | postcss-modules-values@^3.0.0: 1416 | version "3.0.0" 1417 | resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10" 1418 | integrity sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg== 1419 | dependencies: 1420 | icss-utils "^4.0.0" 1421 | postcss "^7.0.6" 1422 | 1423 | postcss-modules@^3.2.2: 1424 | version "3.2.2" 1425 | resolved "https://registry.yarnpkg.com/postcss-modules/-/postcss-modules-3.2.2.tgz#ee390de0f9f18e761e1778dfb9be26685c02c51f" 1426 | integrity sha512-JQ8IAqHELxC0N6tyCg2UF40pACY5oiL6UpiqqcIFRWqgDYO8B0jnxzoQ0EOpPrWXvcpu6BSbQU/3vSiq7w8Nhw== 1427 | dependencies: 1428 | generic-names "^2.0.1" 1429 | icss-replace-symbols "^1.1.0" 1430 | lodash.camelcase "^4.3.0" 1431 | postcss "^7.0.32" 1432 | postcss-modules-extract-imports "^2.0.0" 1433 | postcss-modules-local-by-default "^3.0.2" 1434 | postcss-modules-scope "^2.2.0" 1435 | postcss-modules-values "^3.0.0" 1436 | string-hash "^1.1.1" 1437 | 1438 | postcss-nested@^5.0.1: 1439 | version "5.0.3" 1440 | resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-5.0.3.tgz#2f46d77a06fc98d9c22344fd097396f5431386db" 1441 | integrity sha512-R2LHPw+u5hFfDgJG748KpGbJyTv7Yr33/2tIMWxquYuHTd9EXu27PYnKi7BxMXLtzKC0a0WVsqHtd7qIluQu/g== 1442 | dependencies: 1443 | postcss-selector-parser "^6.0.4" 1444 | 1445 | postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4: 1446 | version "6.0.4" 1447 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz#56075a1380a04604c38b063ea7767a129af5c2b3" 1448 | integrity sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw== 1449 | dependencies: 1450 | cssesc "^3.0.0" 1451 | indexes-of "^1.0.1" 1452 | uniq "^1.0.1" 1453 | util-deprecate "^1.0.2" 1454 | 1455 | postcss-value-parser@^3.3.0: 1456 | version "3.3.1" 1457 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" 1458 | integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== 1459 | 1460 | postcss-value-parser@^4.1.0: 1461 | version "4.1.0" 1462 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" 1463 | integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== 1464 | 1465 | postcss@^6.0.9: 1466 | version "6.0.23" 1467 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324" 1468 | integrity sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag== 1469 | dependencies: 1470 | chalk "^2.4.1" 1471 | source-map "^0.6.1" 1472 | supports-color "^5.4.0" 1473 | 1474 | postcss@^7.0.14, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6: 1475 | version "7.0.35" 1476 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24" 1477 | integrity sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg== 1478 | dependencies: 1479 | chalk "^2.4.2" 1480 | source-map "^0.6.1" 1481 | supports-color "^6.1.0" 1482 | 1483 | postcss@^8.1.6, postcss@^8.2.1, postcss@^8.2.6: 1484 | version "8.2.6" 1485 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.2.6.tgz#5d69a974543b45f87e464bc4c3e392a97d6be9fe" 1486 | integrity sha512-xpB8qYxgPuly166AGlpRjUdEYtmOWx2iCwGmrv4vqZL9YPVviDVPZPRXxnXr6xPZOdxQ9lp3ZBFCRgWJ7LE3Sg== 1487 | dependencies: 1488 | colorette "^1.2.1" 1489 | nanoid "^3.1.20" 1490 | source-map "^0.6.1" 1491 | 1492 | pretty-hrtime@^1.0.3: 1493 | version "1.0.3" 1494 | resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" 1495 | integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= 1496 | 1497 | purgecss@^3.1.3: 1498 | version "3.1.3" 1499 | resolved "https://registry.yarnpkg.com/purgecss/-/purgecss-3.1.3.tgz#26987ec09d12eeadc318e22f6e5a9eb0be094f41" 1500 | integrity sha512-hRSLN9mguJ2lzlIQtW4qmPS2kh6oMnA9RxdIYK8sz18QYqd6ePp4GNDl18oWHA1f2v2NEQIh51CO8s/E3YGckQ== 1501 | dependencies: 1502 | commander "^6.0.0" 1503 | glob "^7.0.0" 1504 | postcss "^8.2.1" 1505 | postcss-selector-parser "^6.0.2" 1506 | 1507 | qrcode@^1.4.4: 1508 | version "1.4.4" 1509 | resolved "https://registry.yarnpkg.com/qrcode/-/qrcode-1.4.4.tgz#f0c43568a7e7510a55efc3b88d9602f71963ea83" 1510 | integrity sha512-oLzEC5+NKFou9P0bMj5+v6Z40evexeE29Z9cummZXZ9QXyMr3lphkURzxjXgPJC5azpxcshoDWV1xE46z+/c3Q== 1511 | dependencies: 1512 | buffer "^5.4.3" 1513 | buffer-alloc "^1.2.0" 1514 | buffer-from "^1.1.1" 1515 | dijkstrajs "^1.0.1" 1516 | isarray "^2.0.1" 1517 | pngjs "^3.3.0" 1518 | yargs "^13.2.4" 1519 | 1520 | queue-microtask@^1.2.2: 1521 | version "1.2.2" 1522 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.2.tgz#abf64491e6ecf0f38a6502403d4cda04f372dfd3" 1523 | integrity sha512-dB15eXv3p2jDlbOiNLyMabYg1/sXvppd8DP2J3EOCQ0AkuSXCW2tP7mnVouVLJKgUMY6yP0kcQDVpLCN13h4Xg== 1524 | 1525 | quick-lru@^5.1.1: 1526 | version "5.1.1" 1527 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" 1528 | integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== 1529 | 1530 | reduce-css-calc@^2.1.8: 1531 | version "2.1.8" 1532 | resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-2.1.8.tgz#7ef8761a28d614980dc0c982f772c93f7a99de03" 1533 | integrity sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg== 1534 | dependencies: 1535 | css-unit-converter "^1.1.1" 1536 | postcss-value-parser "^3.3.0" 1537 | 1538 | require-directory@^2.1.1: 1539 | version "2.1.1" 1540 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1541 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 1542 | 1543 | require-main-filename@^2.0.0: 1544 | version "2.0.0" 1545 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 1546 | integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== 1547 | 1548 | resolve-from@^5.0.0: 1549 | version "5.0.0" 1550 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" 1551 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 1552 | 1553 | resolve@^1.19.0: 1554 | version "1.20.0" 1555 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" 1556 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== 1557 | dependencies: 1558 | is-core-module "^2.2.0" 1559 | path-parse "^1.0.6" 1560 | 1561 | reusify@^1.0.4: 1562 | version "1.0.4" 1563 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 1564 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1565 | 1566 | rollup@^2.38.5: 1567 | version "2.39.0" 1568 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.39.0.tgz#be4f98c9e421793a8fec82c854fb567c35e22ab6" 1569 | integrity sha512-+WR3bttcq7zE+BntH09UxaW3bQo3vItuYeLsyk4dL2tuwbeSKJuvwiawyhEnvRdRgrII0Uzk00FpctHO/zB1kw== 1570 | optionalDependencies: 1571 | fsevents "~2.3.1" 1572 | 1573 | run-parallel@^1.1.9: 1574 | version "1.2.0" 1575 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 1576 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 1577 | dependencies: 1578 | queue-microtask "^1.2.2" 1579 | 1580 | set-blocking@^2.0.0: 1581 | version "2.0.0" 1582 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 1583 | integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= 1584 | 1585 | simple-swizzle@^0.2.2: 1586 | version "0.2.2" 1587 | resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" 1588 | integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= 1589 | dependencies: 1590 | is-arrayish "^0.3.1" 1591 | 1592 | source-map@0.6.1, source-map@^0.6.1: 1593 | version "0.6.1" 1594 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 1595 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 1596 | 1597 | source-map@^0.5.0: 1598 | version "0.5.7" 1599 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 1600 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 1601 | 1602 | sourcemap-codec@^1.4.4: 1603 | version "1.4.8" 1604 | resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" 1605 | integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== 1606 | 1607 | string-hash@^1.1.1: 1608 | version "1.1.3" 1609 | resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b" 1610 | integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs= 1611 | 1612 | string-width@^3.0.0, string-width@^3.1.0: 1613 | version "3.1.0" 1614 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 1615 | integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== 1616 | dependencies: 1617 | emoji-regex "^7.0.1" 1618 | is-fullwidth-code-point "^2.0.0" 1619 | strip-ansi "^5.1.0" 1620 | 1621 | string-width@^4.1.0, string-width@^4.2.0: 1622 | version "4.2.0" 1623 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" 1624 | integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== 1625 | dependencies: 1626 | emoji-regex "^8.0.0" 1627 | is-fullwidth-code-point "^3.0.0" 1628 | strip-ansi "^6.0.0" 1629 | 1630 | strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: 1631 | version "5.2.0" 1632 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 1633 | integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 1634 | dependencies: 1635 | ansi-regex "^4.1.0" 1636 | 1637 | strip-ansi@^6.0.0: 1638 | version "6.0.0" 1639 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 1640 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 1641 | dependencies: 1642 | ansi-regex "^5.0.0" 1643 | 1644 | supports-color@^5.3.0, supports-color@^5.4.0: 1645 | version "5.5.0" 1646 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1647 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1648 | dependencies: 1649 | has-flag "^3.0.0" 1650 | 1651 | supports-color@^6.1.0: 1652 | version "6.1.0" 1653 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" 1654 | integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== 1655 | dependencies: 1656 | has-flag "^3.0.0" 1657 | 1658 | supports-color@^7.1.0: 1659 | version "7.2.0" 1660 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1661 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1662 | dependencies: 1663 | has-flag "^4.0.0" 1664 | 1665 | tailwindcss@^2.0.3: 1666 | version "2.0.3" 1667 | resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-2.0.3.tgz#f8d07797d1f89dc4b171673c26237b58783c2c86" 1668 | integrity sha512-s8NEqdLBiVbbdL0a5XwTb8jKmIonOuI4RMENEcKLR61jw6SdKvBss7NWZzwCaD+ZIjlgmesv8tmrjXEp7C0eAQ== 1669 | dependencies: 1670 | "@fullhuman/postcss-purgecss" "^3.1.3" 1671 | bytes "^3.0.0" 1672 | chalk "^4.1.0" 1673 | color "^3.1.3" 1674 | detective "^5.2.0" 1675 | didyoumean "^1.2.1" 1676 | fs-extra "^9.1.0" 1677 | html-tags "^3.1.0" 1678 | lodash "^4.17.20" 1679 | modern-normalize "^1.0.0" 1680 | node-emoji "^1.8.1" 1681 | object-hash "^2.1.1" 1682 | postcss-functions "^3" 1683 | postcss-js "^3.0.3" 1684 | postcss-nested "^5.0.1" 1685 | postcss-selector-parser "^6.0.4" 1686 | postcss-value-parser "^4.1.0" 1687 | pretty-hrtime "^1.0.3" 1688 | reduce-css-calc "^2.1.8" 1689 | resolve "^1.19.0" 1690 | 1691 | thenify-all@^1.0.0: 1692 | version "1.6.0" 1693 | resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" 1694 | integrity sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY= 1695 | dependencies: 1696 | thenify ">= 3.1.0 < 4" 1697 | 1698 | "thenify@>= 3.1.0 < 4": 1699 | version "3.3.1" 1700 | resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" 1701 | integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== 1702 | dependencies: 1703 | any-promise "^1.0.0" 1704 | 1705 | to-fast-properties@^2.0.0: 1706 | version "2.0.0" 1707 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 1708 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 1709 | 1710 | to-regex-range@^5.0.1: 1711 | version "5.0.1" 1712 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1713 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1714 | dependencies: 1715 | is-number "^7.0.0" 1716 | 1717 | tslib@^1.9.3: 1718 | version "1.14.1" 1719 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 1720 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 1721 | 1722 | typescript@^4.0.3, typescript@^4.1.3: 1723 | version "4.1.5" 1724 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.1.5.tgz#123a3b214aaff3be32926f0d8f1f6e704eb89a72" 1725 | integrity sha512-6OSu9PTIzmn9TCDiovULTnET6BgXtDYL4Gg4szY+cGsc3JP1dQL8qvE8kShTRx1NIw4Q9IBHlwODjkjWEtMUyA== 1726 | 1727 | uniq@^1.0.1: 1728 | version "1.0.1" 1729 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 1730 | integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= 1731 | 1732 | universalify@^2.0.0: 1733 | version "2.0.0" 1734 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" 1735 | integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== 1736 | 1737 | util-deprecate@^1.0.2: 1738 | version "1.0.2" 1739 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 1740 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= 1741 | 1742 | uuid@^3.3.3: 1743 | version "3.4.0" 1744 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" 1745 | integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== 1746 | 1747 | uuid@^8.3.2: 1748 | version "8.3.2" 1749 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" 1750 | integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== 1751 | 1752 | vite@^2.0.0-beta.65: 1753 | version "2.0.0-beta.69" 1754 | resolved "https://registry.yarnpkg.com/vite/-/vite-2.0.0-beta.69.tgz#dd10b4c366d64e670a0da612097fe9645c40212b" 1755 | integrity sha512-Wf4bWOK/b6Q+06Wyk7uJIBy/LiENGx26do6tn9gOMRRZLEuLizN/cDzGqnQkGVVevbb18xdilyxhnTes0lFjZg== 1756 | dependencies: 1757 | esbuild "^0.8.34" 1758 | postcss "^8.2.1" 1759 | resolve "^1.19.0" 1760 | rollup "^2.38.5" 1761 | optionalDependencies: 1762 | fsevents "~2.3.1" 1763 | 1764 | vscode-languageserver-textdocument@^1.0.1: 1765 | version "1.0.1" 1766 | resolved "https://registry.yarnpkg.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.1.tgz#178168e87efad6171b372add1dea34f53e5d330f" 1767 | integrity sha512-UIcJDjX7IFkck7cSkNNyzIz5FyvpQfY7sdzVy+wkKN/BLaD4DQ0ppXQrKePomCxTS7RrolK1I0pey0bG9eh8dA== 1768 | 1769 | vscode-uri@^2.1.2: 1770 | version "2.1.2" 1771 | resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-2.1.2.tgz#c8d40de93eb57af31f3c715dd650e2ca2c096f1c" 1772 | integrity sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A== 1773 | 1774 | vscode-web-custom-data@^0.3.2: 1775 | version "0.3.3" 1776 | resolved "https://registry.yarnpkg.com/vscode-web-custom-data/-/vscode-web-custom-data-0.3.3.tgz#9e1f2388c718d6f190038a19d144834a436b876f" 1777 | integrity sha512-orMjjj1r4efP5ocODYZm3orpANakRBsxPZPDoD5UIrFOPKDFtMJQLp6PIH1rb3AYVRD1iYXMhDQoC6tZ+DrigA== 1778 | 1779 | vue@^3.0.5: 1780 | version "3.0.5" 1781 | resolved "https://registry.yarnpkg.com/vue/-/vue-3.0.5.tgz#de1b82eba24abfe71e0970fc9b8d4b2babdc3fe1" 1782 | integrity sha512-TfaprOmtsAfhQau7WsomXZ8d9op/dkQLNIq8qPV3A0Vxs6GR5E+c1rfJS1SDkXRQj+dFyfnec7+U0Be1huiScg== 1783 | dependencies: 1784 | "@vue/compiler-dom" "3.0.5" 1785 | "@vue/runtime-dom" "3.0.5" 1786 | "@vue/shared" "3.0.5" 1787 | 1788 | which-module@^2.0.0: 1789 | version "2.0.0" 1790 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 1791 | integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= 1792 | 1793 | wrap-ansi@^5.1.0: 1794 | version "5.1.0" 1795 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" 1796 | integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== 1797 | dependencies: 1798 | ansi-styles "^3.2.0" 1799 | string-width "^3.0.0" 1800 | strip-ansi "^5.0.0" 1801 | 1802 | wrap-ansi@^7.0.0: 1803 | version "7.0.0" 1804 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 1805 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 1806 | dependencies: 1807 | ansi-styles "^4.0.0" 1808 | string-width "^4.1.0" 1809 | strip-ansi "^6.0.0" 1810 | 1811 | wrappy@1: 1812 | version "1.0.2" 1813 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1814 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1815 | 1816 | xtend@^4.0.2: 1817 | version "4.0.2" 1818 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 1819 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 1820 | 1821 | y18n@^4.0.0: 1822 | version "4.0.1" 1823 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.1.tgz#8db2b83c31c5d75099bb890b23f3094891e247d4" 1824 | integrity sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ== 1825 | 1826 | y18n@^5.0.5: 1827 | version "5.0.5" 1828 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.5.tgz#8769ec08d03b1ea2df2500acef561743bbb9ab18" 1829 | integrity sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg== 1830 | 1831 | yallist@^3.0.2: 1832 | version "3.1.1" 1833 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" 1834 | integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== 1835 | 1836 | yallist@^4.0.0: 1837 | version "4.0.0" 1838 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 1839 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 1840 | 1841 | yargs-parser@^13.1.2: 1842 | version "13.1.2" 1843 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" 1844 | integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== 1845 | dependencies: 1846 | camelcase "^5.0.0" 1847 | decamelize "^1.2.0" 1848 | 1849 | yargs-parser@^20.2.2: 1850 | version "20.2.4" 1851 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" 1852 | integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== 1853 | 1854 | yargs@^13.2.4: 1855 | version "13.3.2" 1856 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" 1857 | integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== 1858 | dependencies: 1859 | cliui "^5.0.0" 1860 | find-up "^3.0.0" 1861 | get-caller-file "^2.0.1" 1862 | require-directory "^2.1.1" 1863 | require-main-filename "^2.0.0" 1864 | set-blocking "^2.0.0" 1865 | string-width "^3.0.0" 1866 | which-module "^2.0.0" 1867 | y18n "^4.0.0" 1868 | yargs-parser "^13.1.2" 1869 | 1870 | yargs@^16.0.0: 1871 | version "16.2.0" 1872 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" 1873 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 1874 | dependencies: 1875 | cliui "^7.0.2" 1876 | escalade "^3.1.1" 1877 | get-caller-file "^2.0.5" 1878 | require-directory "^2.1.1" 1879 | string-width "^4.2.0" 1880 | y18n "^5.0.5" 1881 | yargs-parser "^20.2.2" 1882 | --------------------------------------------------------------------------------