├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── jsconfig.json ├── package-lock.json ├── package.json ├── src ├── app.d.ts ├── app.html ├── lib │ ├── index.js │ ├── motionSwiper.js │ ├── motionSwiper.scss │ └── utils.js └── routes │ ├── +layout.js │ └── +page.svelte ├── static ├── favicon.png └── images │ ├── david-becker-cl8lM1W2nHM-unsplash.jpg │ ├── igor-lypnytskyi-GzX8mr1y7H0-unsplash.jpg │ ├── josh-withers-EG8_QJ0OgOU-unsplash.jpg │ ├── josh-withers-TCBvy1-xHU8-unsplash.jpg │ ├── neom-I7NOiVT6jq0-unsplash.jpg │ └── neom-i60yUhfWeYI-unsplash.jpg ├── svelte.config.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /dist 5 | /.svelte-kit 6 | /package 7 | .env 8 | .env.* 9 | !.env.example 10 | vite.config.js.timestamp-* 11 | vite.config.ts.timestamp-* 12 | /.vercel 13 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /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 | # MotionSwiper 2 | 3 | https://github.com/jramke/motion-swiper/assets/81250358/ff27114b-d73f-424a-bbf6-b52fa247e12d 4 | 5 | Introducing MotionSwiper – a minimal draggable slider with a seamless and fluid bending motion effect like seen in [this pen by Jesper Landberg](https://codepen.io/ReGGae/live/povjKxV). 6 | 7 | It's built with GSAP and does not rely on WebGL/ThreeJs or Canvas, ensuring there are no drawbacks in terms of **accessibility** or **performance**. 8 | 9 | ## Demo 10 | View a live demo here: https://motion-swiper.vercel.app/ 11 | 12 | MotionSwiper in the wilds: 13 | - https://www.joostramke.com/ 14 | - https://www.brandium.nl/agency/ 15 | 16 | 17 | ## Getting started 18 | 19 | MotionSwiper is created with [GSAP](https://gsap.com/) so its installed with MotionSwiper if needed. 20 | 21 | ```bash 22 | npm i motion-swiper 23 | ``` 24 | 25 | ### Import 26 | ```js 27 | // MotionSwiper functionality 28 | import MotionSwiper from "motion-swiper"; 29 | 30 | // MotionSwiper styles 31 | import "motion-swiper/css"; // or "motion-swiper/scss" 32 | ``` 33 | 34 | ### Initialize 35 | Initialze the MotionSwiper class with a selector or an element as first parameter and a optional option object as second parameter. 36 | 37 | The values in this example are the default values. 38 | ```js 39 | const motionSwiper = new MotionSwiper('.motion-swiper', { 40 | loop: true, // loop throug slides 41 | lerp: 0.1, // amout of lerp 42 | speed: 2.5, // speed of the swiper when sliding 43 | centered: true, // first slide is centered 44 | teasing: true, // move on scroll (needs "gsap/ScrollTrigger") 45 | normalizingSpeed: 0.8, // how fast the slides go back to normal 46 | swipeOnClick: true, // swipe to slide when clicking it 47 | }); 48 | ``` 49 | 50 | ### Markup 51 | ```html 52 |
53 |
54 | 55 |
56 |
57 | 58 |
59 |
60 | ... 61 | 62 |
63 |
64 | ``` 65 | 66 | ### Styling 67 | The `.motion-swiper` class comes with some css custom properties you can override to customize MotionSwiper. 68 | 69 | ```css 70 | .motion-swiper { 71 | --swiper-slide-spacing: 1.5vw; 72 | --swiper-height: 35vh; 73 | --swiper-slide-width: 40vw; 74 | } 75 | ``` 76 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./.svelte-kit/tsconfig.json", 3 | "compilerOptions": { 4 | "esModuleInterop": true, 5 | "forceConsistentCasingInFileNames": true, 6 | "resolveJsonModule": true, 7 | "skipLibCheck": true, 8 | "sourceMap": true, 9 | "module": "NodeNext", 10 | "moduleResolution": "NodeNext" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "motion-swiper", 3 | "version": "1.0.5", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "motion-swiper", 9 | "version": "1.0.5", 10 | "license": "MIT", 11 | "dependencies": { 12 | "gsap": "^3.12.x" 13 | }, 14 | "devDependencies": { 15 | "@sveltejs/adapter-auto": "^3.1.1", 16 | "@sveltejs/adapter-vercel": "^5.1.0", 17 | "@sveltejs/kit": "^2.4.1", 18 | "@sveltejs/package": "^2.2.6", 19 | "@sveltejs/vite-plugin-svelte": "^3.0.1", 20 | "publint": "^0.2.7", 21 | "svelte": "^4.2.9", 22 | "svelte-check": "^3.6.3", 23 | "tslib": "^2.6.2", 24 | "typescript": "^5.3.3", 25 | "vite": "^5.0.12" 26 | }, 27 | "peerDependencies": { 28 | "@vercel/analytics": "^1.3.1", 29 | "bootstrap": "^5.3.2", 30 | "lenis": "^1.1.3", 31 | "sass": "^1.69.5", 32 | "svelte": "^4.0.0" 33 | } 34 | }, 35 | "node_modules/@ampproject/remapping": { 36 | "version": "2.2.1", 37 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", 38 | "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", 39 | "dev": true, 40 | "dependencies": { 41 | "@jridgewell/gen-mapping": "^0.3.0", 42 | "@jridgewell/trace-mapping": "^0.3.9" 43 | }, 44 | "engines": { 45 | "node": ">=6.0.0" 46 | } 47 | }, 48 | "node_modules/@darkroom.engineering/tempus": { 49 | "version": "0.0.46", 50 | "resolved": "https://registry.npmjs.org/@darkroom.engineering/tempus/-/tempus-0.0.46.tgz", 51 | "integrity": "sha512-s5vav3KMHYezvUCl4ee5epg0oimF6M8C9gAaKxFnFaTvX2q3ywFDryIv6XLd0mRFUt3S1uHDJqKaiEcs2ZVSvw==", 52 | "peer": true 53 | }, 54 | "node_modules/@esbuild/aix-ppc64": { 55 | "version": "0.19.11", 56 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.19.11.tgz", 57 | "integrity": "sha512-FnzU0LyE3ySQk7UntJO4+qIiQgI7KoODnZg5xzXIrFJlKd2P2gwHsHY4927xj9y5PJmJSzULiUCWmv7iWnNa7g==", 58 | "cpu": [ 59 | "ppc64" 60 | ], 61 | "dev": true, 62 | "optional": true, 63 | "os": [ 64 | "aix" 65 | ], 66 | "engines": { 67 | "node": ">=12" 68 | } 69 | }, 70 | "node_modules/@esbuild/android-arm": { 71 | "version": "0.19.11", 72 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.11.tgz", 73 | "integrity": "sha512-5OVapq0ClabvKvQ58Bws8+wkLCV+Rxg7tUVbo9xu034Nm536QTII4YzhaFriQ7rMrorfnFKUsArD2lqKbFY4vw==", 74 | "cpu": [ 75 | "arm" 76 | ], 77 | "dev": true, 78 | "optional": true, 79 | "os": [ 80 | "android" 81 | ], 82 | "engines": { 83 | "node": ">=12" 84 | } 85 | }, 86 | "node_modules/@esbuild/android-arm64": { 87 | "version": "0.19.11", 88 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.11.tgz", 89 | "integrity": "sha512-aiu7K/5JnLj//KOnOfEZ0D90obUkRzDMyqd/wNAUQ34m4YUPVhRZpnqKV9uqDGxT7cToSDnIHsGooyIczu9T+Q==", 90 | "cpu": [ 91 | "arm64" 92 | ], 93 | "dev": true, 94 | "optional": true, 95 | "os": [ 96 | "android" 97 | ], 98 | "engines": { 99 | "node": ">=12" 100 | } 101 | }, 102 | "node_modules/@esbuild/android-x64": { 103 | "version": "0.19.11", 104 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.11.tgz", 105 | "integrity": "sha512-eccxjlfGw43WYoY9QgB82SgGgDbibcqyDTlk3l3C0jOVHKxrjdc9CTwDUQd0vkvYg5um0OH+GpxYvp39r+IPOg==", 106 | "cpu": [ 107 | "x64" 108 | ], 109 | "dev": true, 110 | "optional": true, 111 | "os": [ 112 | "android" 113 | ], 114 | "engines": { 115 | "node": ">=12" 116 | } 117 | }, 118 | "node_modules/@esbuild/darwin-arm64": { 119 | "version": "0.19.11", 120 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.11.tgz", 121 | "integrity": "sha512-ETp87DRWuSt9KdDVkqSoKoLFHYTrkyz2+65fj9nfXsaV3bMhTCjtQfw3y+um88vGRKRiF7erPrh/ZuIdLUIVxQ==", 122 | "cpu": [ 123 | "arm64" 124 | ], 125 | "dev": true, 126 | "optional": true, 127 | "os": [ 128 | "darwin" 129 | ], 130 | "engines": { 131 | "node": ">=12" 132 | } 133 | }, 134 | "node_modules/@esbuild/darwin-x64": { 135 | "version": "0.19.11", 136 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.11.tgz", 137 | "integrity": "sha512-fkFUiS6IUK9WYUO/+22omwetaSNl5/A8giXvQlcinLIjVkxwTLSktbF5f/kJMftM2MJp9+fXqZ5ezS7+SALp4g==", 138 | "cpu": [ 139 | "x64" 140 | ], 141 | "dev": true, 142 | "optional": true, 143 | "os": [ 144 | "darwin" 145 | ], 146 | "engines": { 147 | "node": ">=12" 148 | } 149 | }, 150 | "node_modules/@esbuild/freebsd-arm64": { 151 | "version": "0.19.11", 152 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.11.tgz", 153 | "integrity": "sha512-lhoSp5K6bxKRNdXUtHoNc5HhbXVCS8V0iZmDvyWvYq9S5WSfTIHU2UGjcGt7UeS6iEYp9eeymIl5mJBn0yiuxA==", 154 | "cpu": [ 155 | "arm64" 156 | ], 157 | "dev": true, 158 | "optional": true, 159 | "os": [ 160 | "freebsd" 161 | ], 162 | "engines": { 163 | "node": ">=12" 164 | } 165 | }, 166 | "node_modules/@esbuild/freebsd-x64": { 167 | "version": "0.19.11", 168 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.11.tgz", 169 | "integrity": "sha512-JkUqn44AffGXitVI6/AbQdoYAq0TEullFdqcMY/PCUZ36xJ9ZJRtQabzMA+Vi7r78+25ZIBosLTOKnUXBSi1Kw==", 170 | "cpu": [ 171 | "x64" 172 | ], 173 | "dev": true, 174 | "optional": true, 175 | "os": [ 176 | "freebsd" 177 | ], 178 | "engines": { 179 | "node": ">=12" 180 | } 181 | }, 182 | "node_modules/@esbuild/linux-arm": { 183 | "version": "0.19.11", 184 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.11.tgz", 185 | "integrity": "sha512-3CRkr9+vCV2XJbjwgzjPtO8T0SZUmRZla+UL1jw+XqHZPkPgZiyWvbDvl9rqAN8Zl7qJF0O/9ycMtjU67HN9/Q==", 186 | "cpu": [ 187 | "arm" 188 | ], 189 | "dev": true, 190 | "optional": true, 191 | "os": [ 192 | "linux" 193 | ], 194 | "engines": { 195 | "node": ">=12" 196 | } 197 | }, 198 | "node_modules/@esbuild/linux-arm64": { 199 | "version": "0.19.11", 200 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.11.tgz", 201 | "integrity": "sha512-LneLg3ypEeveBSMuoa0kwMpCGmpu8XQUh+mL8XXwoYZ6Be2qBnVtcDI5azSvh7vioMDhoJFZzp9GWp9IWpYoUg==", 202 | "cpu": [ 203 | "arm64" 204 | ], 205 | "dev": true, 206 | "optional": true, 207 | "os": [ 208 | "linux" 209 | ], 210 | "engines": { 211 | "node": ">=12" 212 | } 213 | }, 214 | "node_modules/@esbuild/linux-ia32": { 215 | "version": "0.19.11", 216 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.11.tgz", 217 | "integrity": "sha512-caHy++CsD8Bgq2V5CodbJjFPEiDPq8JJmBdeyZ8GWVQMjRD0sU548nNdwPNvKjVpamYYVL40AORekgfIubwHoA==", 218 | "cpu": [ 219 | "ia32" 220 | ], 221 | "dev": true, 222 | "optional": true, 223 | "os": [ 224 | "linux" 225 | ], 226 | "engines": { 227 | "node": ">=12" 228 | } 229 | }, 230 | "node_modules/@esbuild/linux-loong64": { 231 | "version": "0.19.11", 232 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.11.tgz", 233 | "integrity": "sha512-ppZSSLVpPrwHccvC6nQVZaSHlFsvCQyjnvirnVjbKSHuE5N24Yl8F3UwYUUR1UEPaFObGD2tSvVKbvR+uT1Nrg==", 234 | "cpu": [ 235 | "loong64" 236 | ], 237 | "dev": true, 238 | "optional": true, 239 | "os": [ 240 | "linux" 241 | ], 242 | "engines": { 243 | "node": ">=12" 244 | } 245 | }, 246 | "node_modules/@esbuild/linux-mips64el": { 247 | "version": "0.19.11", 248 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.11.tgz", 249 | "integrity": "sha512-B5x9j0OgjG+v1dF2DkH34lr+7Gmv0kzX6/V0afF41FkPMMqaQ77pH7CrhWeR22aEeHKaeZVtZ6yFwlxOKPVFyg==", 250 | "cpu": [ 251 | "mips64el" 252 | ], 253 | "dev": true, 254 | "optional": true, 255 | "os": [ 256 | "linux" 257 | ], 258 | "engines": { 259 | "node": ">=12" 260 | } 261 | }, 262 | "node_modules/@esbuild/linux-ppc64": { 263 | "version": "0.19.11", 264 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.11.tgz", 265 | "integrity": "sha512-MHrZYLeCG8vXblMetWyttkdVRjQlQUb/oMgBNurVEnhj4YWOr4G5lmBfZjHYQHHN0g6yDmCAQRR8MUHldvvRDA==", 266 | "cpu": [ 267 | "ppc64" 268 | ], 269 | "dev": true, 270 | "optional": true, 271 | "os": [ 272 | "linux" 273 | ], 274 | "engines": { 275 | "node": ">=12" 276 | } 277 | }, 278 | "node_modules/@esbuild/linux-riscv64": { 279 | "version": "0.19.11", 280 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.11.tgz", 281 | "integrity": "sha512-f3DY++t94uVg141dozDu4CCUkYW+09rWtaWfnb3bqe4w5NqmZd6nPVBm+qbz7WaHZCoqXqHz5p6CM6qv3qnSSQ==", 282 | "cpu": [ 283 | "riscv64" 284 | ], 285 | "dev": true, 286 | "optional": true, 287 | "os": [ 288 | "linux" 289 | ], 290 | "engines": { 291 | "node": ">=12" 292 | } 293 | }, 294 | "node_modules/@esbuild/linux-s390x": { 295 | "version": "0.19.11", 296 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.11.tgz", 297 | "integrity": "sha512-A5xdUoyWJHMMlcSMcPGVLzYzpcY8QP1RtYzX5/bS4dvjBGVxdhuiYyFwp7z74ocV7WDc0n1harxmpq2ePOjI0Q==", 298 | "cpu": [ 299 | "s390x" 300 | ], 301 | "dev": true, 302 | "optional": true, 303 | "os": [ 304 | "linux" 305 | ], 306 | "engines": { 307 | "node": ">=12" 308 | } 309 | }, 310 | "node_modules/@esbuild/linux-x64": { 311 | "version": "0.19.11", 312 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.11.tgz", 313 | "integrity": "sha512-grbyMlVCvJSfxFQUndw5mCtWs5LO1gUlwP4CDi4iJBbVpZcqLVT29FxgGuBJGSzyOxotFG4LoO5X+M1350zmPA==", 314 | "cpu": [ 315 | "x64" 316 | ], 317 | "dev": true, 318 | "optional": true, 319 | "os": [ 320 | "linux" 321 | ], 322 | "engines": { 323 | "node": ">=12" 324 | } 325 | }, 326 | "node_modules/@esbuild/netbsd-x64": { 327 | "version": "0.19.11", 328 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.11.tgz", 329 | "integrity": "sha512-13jvrQZJc3P230OhU8xgwUnDeuC/9egsjTkXN49b3GcS5BKvJqZn86aGM8W9pd14Kd+u7HuFBMVtrNGhh6fHEQ==", 330 | "cpu": [ 331 | "x64" 332 | ], 333 | "dev": true, 334 | "optional": true, 335 | "os": [ 336 | "netbsd" 337 | ], 338 | "engines": { 339 | "node": ">=12" 340 | } 341 | }, 342 | "node_modules/@esbuild/openbsd-x64": { 343 | "version": "0.19.11", 344 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.11.tgz", 345 | "integrity": "sha512-ysyOGZuTp6SNKPE11INDUeFVVQFrhcNDVUgSQVDzqsqX38DjhPEPATpid04LCoUr2WXhQTEZ8ct/EgJCUDpyNw==", 346 | "cpu": [ 347 | "x64" 348 | ], 349 | "dev": true, 350 | "optional": true, 351 | "os": [ 352 | "openbsd" 353 | ], 354 | "engines": { 355 | "node": ">=12" 356 | } 357 | }, 358 | "node_modules/@esbuild/sunos-x64": { 359 | "version": "0.19.11", 360 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.11.tgz", 361 | "integrity": "sha512-Hf+Sad9nVwvtxy4DXCZQqLpgmRTQqyFyhT3bZ4F2XlJCjxGmRFF0Shwn9rzhOYRB61w9VMXUkxlBy56dk9JJiQ==", 362 | "cpu": [ 363 | "x64" 364 | ], 365 | "dev": true, 366 | "optional": true, 367 | "os": [ 368 | "sunos" 369 | ], 370 | "engines": { 371 | "node": ">=12" 372 | } 373 | }, 374 | "node_modules/@esbuild/win32-arm64": { 375 | "version": "0.19.11", 376 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.11.tgz", 377 | "integrity": "sha512-0P58Sbi0LctOMOQbpEOvOL44Ne0sqbS0XWHMvvrg6NE5jQ1xguCSSw9jQeUk2lfrXYsKDdOe6K+oZiwKPilYPQ==", 378 | "cpu": [ 379 | "arm64" 380 | ], 381 | "dev": true, 382 | "optional": true, 383 | "os": [ 384 | "win32" 385 | ], 386 | "engines": { 387 | "node": ">=12" 388 | } 389 | }, 390 | "node_modules/@esbuild/win32-ia32": { 391 | "version": "0.19.11", 392 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.11.tgz", 393 | "integrity": "sha512-6YOrWS+sDJDmshdBIQU+Uoyh7pQKrdykdefC1avn76ss5c+RN6gut3LZA4E2cH5xUEp5/cA0+YxRaVtRAb0xBg==", 394 | "cpu": [ 395 | "ia32" 396 | ], 397 | "dev": true, 398 | "optional": true, 399 | "os": [ 400 | "win32" 401 | ], 402 | "engines": { 403 | "node": ">=12" 404 | } 405 | }, 406 | "node_modules/@esbuild/win32-x64": { 407 | "version": "0.19.11", 408 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.11.tgz", 409 | "integrity": "sha512-vfkhltrjCAb603XaFhqhAF4LGDi2M4OrCRrFusyQ+iTLQ/o60QQXxc9cZC/FFpihBI9N1Grn6SMKVJ4KP7Fuiw==", 410 | "cpu": [ 411 | "x64" 412 | ], 413 | "dev": true, 414 | "optional": true, 415 | "os": [ 416 | "win32" 417 | ], 418 | "engines": { 419 | "node": ">=12" 420 | } 421 | }, 422 | "node_modules/@jridgewell/gen-mapping": { 423 | "version": "0.3.3", 424 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", 425 | "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", 426 | "dev": true, 427 | "dependencies": { 428 | "@jridgewell/set-array": "^1.0.1", 429 | "@jridgewell/sourcemap-codec": "^1.4.10", 430 | "@jridgewell/trace-mapping": "^0.3.9" 431 | }, 432 | "engines": { 433 | "node": ">=6.0.0" 434 | } 435 | }, 436 | "node_modules/@jridgewell/resolve-uri": { 437 | "version": "3.1.1", 438 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", 439 | "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", 440 | "dev": true, 441 | "engines": { 442 | "node": ">=6.0.0" 443 | } 444 | }, 445 | "node_modules/@jridgewell/set-array": { 446 | "version": "1.1.2", 447 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", 448 | "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", 449 | "dev": true, 450 | "engines": { 451 | "node": ">=6.0.0" 452 | } 453 | }, 454 | "node_modules/@jridgewell/sourcemap-codec": { 455 | "version": "1.4.15", 456 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", 457 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", 458 | "dev": true 459 | }, 460 | "node_modules/@jridgewell/trace-mapping": { 461 | "version": "0.3.20", 462 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", 463 | "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", 464 | "dev": true, 465 | "dependencies": { 466 | "@jridgewell/resolve-uri": "^3.1.0", 467 | "@jridgewell/sourcemap-codec": "^1.4.14" 468 | } 469 | }, 470 | "node_modules/@mapbox/node-pre-gyp": { 471 | "version": "1.0.11", 472 | "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz", 473 | "integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==", 474 | "dev": true, 475 | "dependencies": { 476 | "detect-libc": "^2.0.0", 477 | "https-proxy-agent": "^5.0.0", 478 | "make-dir": "^3.1.0", 479 | "node-fetch": "^2.6.7", 480 | "nopt": "^5.0.0", 481 | "npmlog": "^5.0.1", 482 | "rimraf": "^3.0.2", 483 | "semver": "^7.3.5", 484 | "tar": "^6.1.11" 485 | }, 486 | "bin": { 487 | "node-pre-gyp": "bin/node-pre-gyp" 488 | } 489 | }, 490 | "node_modules/@mapbox/node-pre-gyp/node_modules/brace-expansion": { 491 | "version": "1.1.11", 492 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 493 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 494 | "dev": true, 495 | "dependencies": { 496 | "balanced-match": "^1.0.0", 497 | "concat-map": "0.0.1" 498 | } 499 | }, 500 | "node_modules/@mapbox/node-pre-gyp/node_modules/glob": { 501 | "version": "7.2.3", 502 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 503 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 504 | "dev": true, 505 | "dependencies": { 506 | "fs.realpath": "^1.0.0", 507 | "inflight": "^1.0.4", 508 | "inherits": "2", 509 | "minimatch": "^3.1.1", 510 | "once": "^1.3.0", 511 | "path-is-absolute": "^1.0.0" 512 | }, 513 | "engines": { 514 | "node": "*" 515 | }, 516 | "funding": { 517 | "url": "https://github.com/sponsors/isaacs" 518 | } 519 | }, 520 | "node_modules/@mapbox/node-pre-gyp/node_modules/minimatch": { 521 | "version": "3.1.2", 522 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 523 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 524 | "dev": true, 525 | "dependencies": { 526 | "brace-expansion": "^1.1.7" 527 | }, 528 | "engines": { 529 | "node": "*" 530 | } 531 | }, 532 | "node_modules/@mapbox/node-pre-gyp/node_modules/rimraf": { 533 | "version": "3.0.2", 534 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 535 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 536 | "dev": true, 537 | "dependencies": { 538 | "glob": "^7.1.3" 539 | }, 540 | "bin": { 541 | "rimraf": "bin.js" 542 | }, 543 | "funding": { 544 | "url": "https://github.com/sponsors/isaacs" 545 | } 546 | }, 547 | "node_modules/@nodelib/fs.scandir": { 548 | "version": "2.1.5", 549 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 550 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 551 | "dev": true, 552 | "dependencies": { 553 | "@nodelib/fs.stat": "2.0.5", 554 | "run-parallel": "^1.1.9" 555 | }, 556 | "engines": { 557 | "node": ">= 8" 558 | } 559 | }, 560 | "node_modules/@nodelib/fs.stat": { 561 | "version": "2.0.5", 562 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 563 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 564 | "dev": true, 565 | "engines": { 566 | "node": ">= 8" 567 | } 568 | }, 569 | "node_modules/@nodelib/fs.walk": { 570 | "version": "1.2.8", 571 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 572 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 573 | "dev": true, 574 | "dependencies": { 575 | "@nodelib/fs.scandir": "2.1.5", 576 | "fastq": "^1.6.0" 577 | }, 578 | "engines": { 579 | "node": ">= 8" 580 | } 581 | }, 582 | "node_modules/@polka/url": { 583 | "version": "1.0.0-next.24", 584 | "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.24.tgz", 585 | "integrity": "sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==", 586 | "dev": true 587 | }, 588 | "node_modules/@popperjs/core": { 589 | "version": "2.11.8", 590 | "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", 591 | "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", 592 | "peer": true, 593 | "funding": { 594 | "type": "opencollective", 595 | "url": "https://opencollective.com/popperjs" 596 | } 597 | }, 598 | "node_modules/@rollup/pluginutils": { 599 | "version": "4.2.1", 600 | "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", 601 | "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", 602 | "dev": true, 603 | "dependencies": { 604 | "estree-walker": "^2.0.1", 605 | "picomatch": "^2.2.2" 606 | }, 607 | "engines": { 608 | "node": ">= 8.0.0" 609 | } 610 | }, 611 | "node_modules/@rollup/pluginutils/node_modules/estree-walker": { 612 | "version": "2.0.2", 613 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 614 | "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", 615 | "dev": true 616 | }, 617 | "node_modules/@rollup/rollup-android-arm-eabi": { 618 | "version": "4.18.0", 619 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.18.0.tgz", 620 | "integrity": "sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==", 621 | "cpu": [ 622 | "arm" 623 | ], 624 | "dev": true, 625 | "optional": true, 626 | "os": [ 627 | "android" 628 | ] 629 | }, 630 | "node_modules/@rollup/rollup-android-arm64": { 631 | "version": "4.18.0", 632 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.18.0.tgz", 633 | "integrity": "sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==", 634 | "cpu": [ 635 | "arm64" 636 | ], 637 | "dev": true, 638 | "optional": true, 639 | "os": [ 640 | "android" 641 | ] 642 | }, 643 | "node_modules/@rollup/rollup-darwin-arm64": { 644 | "version": "4.18.0", 645 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.18.0.tgz", 646 | "integrity": "sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==", 647 | "cpu": [ 648 | "arm64" 649 | ], 650 | "dev": true, 651 | "optional": true, 652 | "os": [ 653 | "darwin" 654 | ] 655 | }, 656 | "node_modules/@rollup/rollup-darwin-x64": { 657 | "version": "4.18.0", 658 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.18.0.tgz", 659 | "integrity": "sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==", 660 | "cpu": [ 661 | "x64" 662 | ], 663 | "dev": true, 664 | "optional": true, 665 | "os": [ 666 | "darwin" 667 | ] 668 | }, 669 | "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 670 | "version": "4.18.0", 671 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.18.0.tgz", 672 | "integrity": "sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==", 673 | "cpu": [ 674 | "arm" 675 | ], 676 | "dev": true, 677 | "optional": true, 678 | "os": [ 679 | "linux" 680 | ] 681 | }, 682 | "node_modules/@rollup/rollup-linux-arm-musleabihf": { 683 | "version": "4.18.0", 684 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.18.0.tgz", 685 | "integrity": "sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==", 686 | "cpu": [ 687 | "arm" 688 | ], 689 | "dev": true, 690 | "optional": true, 691 | "os": [ 692 | "linux" 693 | ] 694 | }, 695 | "node_modules/@rollup/rollup-linux-arm64-gnu": { 696 | "version": "4.18.0", 697 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.18.0.tgz", 698 | "integrity": "sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==", 699 | "cpu": [ 700 | "arm64" 701 | ], 702 | "dev": true, 703 | "optional": true, 704 | "os": [ 705 | "linux" 706 | ] 707 | }, 708 | "node_modules/@rollup/rollup-linux-arm64-musl": { 709 | "version": "4.18.0", 710 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.18.0.tgz", 711 | "integrity": "sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==", 712 | "cpu": [ 713 | "arm64" 714 | ], 715 | "dev": true, 716 | "optional": true, 717 | "os": [ 718 | "linux" 719 | ] 720 | }, 721 | "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { 722 | "version": "4.18.0", 723 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.18.0.tgz", 724 | "integrity": "sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==", 725 | "cpu": [ 726 | "ppc64" 727 | ], 728 | "dev": true, 729 | "optional": true, 730 | "os": [ 731 | "linux" 732 | ] 733 | }, 734 | "node_modules/@rollup/rollup-linux-riscv64-gnu": { 735 | "version": "4.18.0", 736 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.18.0.tgz", 737 | "integrity": "sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==", 738 | "cpu": [ 739 | "riscv64" 740 | ], 741 | "dev": true, 742 | "optional": true, 743 | "os": [ 744 | "linux" 745 | ] 746 | }, 747 | "node_modules/@rollup/rollup-linux-s390x-gnu": { 748 | "version": "4.18.0", 749 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.18.0.tgz", 750 | "integrity": "sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==", 751 | "cpu": [ 752 | "s390x" 753 | ], 754 | "dev": true, 755 | "optional": true, 756 | "os": [ 757 | "linux" 758 | ] 759 | }, 760 | "node_modules/@rollup/rollup-linux-x64-gnu": { 761 | "version": "4.18.0", 762 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.18.0.tgz", 763 | "integrity": "sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==", 764 | "cpu": [ 765 | "x64" 766 | ], 767 | "dev": true, 768 | "optional": true, 769 | "os": [ 770 | "linux" 771 | ] 772 | }, 773 | "node_modules/@rollup/rollup-linux-x64-musl": { 774 | "version": "4.18.0", 775 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.18.0.tgz", 776 | "integrity": "sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==", 777 | "cpu": [ 778 | "x64" 779 | ], 780 | "dev": true, 781 | "optional": true, 782 | "os": [ 783 | "linux" 784 | ] 785 | }, 786 | "node_modules/@rollup/rollup-win32-arm64-msvc": { 787 | "version": "4.18.0", 788 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.18.0.tgz", 789 | "integrity": "sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==", 790 | "cpu": [ 791 | "arm64" 792 | ], 793 | "dev": true, 794 | "optional": true, 795 | "os": [ 796 | "win32" 797 | ] 798 | }, 799 | "node_modules/@rollup/rollup-win32-ia32-msvc": { 800 | "version": "4.18.0", 801 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.18.0.tgz", 802 | "integrity": "sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==", 803 | "cpu": [ 804 | "ia32" 805 | ], 806 | "dev": true, 807 | "optional": true, 808 | "os": [ 809 | "win32" 810 | ] 811 | }, 812 | "node_modules/@rollup/rollup-win32-x64-msvc": { 813 | "version": "4.18.0", 814 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.18.0.tgz", 815 | "integrity": "sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==", 816 | "cpu": [ 817 | "x64" 818 | ], 819 | "dev": true, 820 | "optional": true, 821 | "os": [ 822 | "win32" 823 | ] 824 | }, 825 | "node_modules/@sveltejs/adapter-auto": { 826 | "version": "3.1.1", 827 | "resolved": "https://registry.npmjs.org/@sveltejs/adapter-auto/-/adapter-auto-3.1.1.tgz", 828 | "integrity": "sha512-6LeZft2Fo/4HfmLBi5CucMYmgRxgcETweQl/yQoZo/895K3S9YWYN4Sfm/IhwlIpbJp3QNvhKmwCHbsqQNYQpw==", 829 | "dev": true, 830 | "dependencies": { 831 | "import-meta-resolve": "^4.0.0" 832 | }, 833 | "peerDependencies": { 834 | "@sveltejs/kit": "^2.0.0" 835 | } 836 | }, 837 | "node_modules/@sveltejs/adapter-vercel": { 838 | "version": "5.1.0", 839 | "resolved": "https://registry.npmjs.org/@sveltejs/adapter-vercel/-/adapter-vercel-5.1.0.tgz", 840 | "integrity": "sha512-Z9yRJ4H2/7LcBlvN2/TKu1H0hWoRGonr8kPhP1GJ23LRW76IbiiX5gs/MLc6+ZGogCZYVJ4USmx6m+RFtvQTRw==", 841 | "dev": true, 842 | "dependencies": { 843 | "@vercel/nft": "^0.26.1", 844 | "esbuild": "^0.19.11" 845 | }, 846 | "peerDependencies": { 847 | "@sveltejs/kit": "^2.4.0" 848 | } 849 | }, 850 | "node_modules/@sveltejs/kit": { 851 | "version": "2.5.17", 852 | "resolved": "https://registry.npmjs.org/@sveltejs/kit/-/kit-2.5.17.tgz", 853 | "integrity": "sha512-wiADwq7VreR3ctOyxilAZOfPz3Jiy2IIp2C8gfafhTdQaVuGIHllfqQm8dXZKADymKr3uShxzgLZFT+a+CM4kA==", 854 | "dev": true, 855 | "hasInstallScript": true, 856 | "dependencies": { 857 | "@types/cookie": "^0.6.0", 858 | "cookie": "^0.6.0", 859 | "devalue": "^5.0.0", 860 | "esm-env": "^1.0.0", 861 | "import-meta-resolve": "^4.1.0", 862 | "kleur": "^4.1.5", 863 | "magic-string": "^0.30.5", 864 | "mrmime": "^2.0.0", 865 | "sade": "^1.8.1", 866 | "set-cookie-parser": "^2.6.0", 867 | "sirv": "^2.0.4", 868 | "tiny-glob": "^0.2.9" 869 | }, 870 | "bin": { 871 | "svelte-kit": "svelte-kit.js" 872 | }, 873 | "engines": { 874 | "node": ">=18.13" 875 | }, 876 | "peerDependencies": { 877 | "@sveltejs/vite-plugin-svelte": "^3.0.0", 878 | "svelte": "^4.0.0 || ^5.0.0-next.0", 879 | "vite": "^5.0.3" 880 | } 881 | }, 882 | "node_modules/@sveltejs/package": { 883 | "version": "2.2.6", 884 | "resolved": "https://registry.npmjs.org/@sveltejs/package/-/package-2.2.6.tgz", 885 | "integrity": "sha512-rhKL/96M7LCvFI2xN94qsqHtEWr/ypcMGiii3s6dRW7ADt3tiDm8UfExjRR8v5jW3Femz0+VJ0TNevxI4Q9Quw==", 886 | "dev": true, 887 | "dependencies": { 888 | "chokidar": "^3.5.3", 889 | "kleur": "^4.1.5", 890 | "sade": "^1.8.1", 891 | "semver": "^7.5.4", 892 | "svelte2tsx": "~0.7.0" 893 | }, 894 | "bin": { 895 | "svelte-package": "svelte-package.js" 896 | }, 897 | "engines": { 898 | "node": "^16.14 || >=18" 899 | }, 900 | "peerDependencies": { 901 | "svelte": "^3.44.0 || ^4.0.0 || ^5.0.0-next.1" 902 | } 903 | }, 904 | "node_modules/@sveltejs/vite-plugin-svelte": { 905 | "version": "3.0.1", 906 | "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-3.0.1.tgz", 907 | "integrity": "sha512-CGURX6Ps+TkOovK6xV+Y2rn8JKa8ZPUHPZ/NKgCxAmgBrXReavzFl8aOSCj3kQ1xqT7yGJj53hjcV/gqwDAaWA==", 908 | "dev": true, 909 | "dependencies": { 910 | "@sveltejs/vite-plugin-svelte-inspector": "^2.0.0-next.0 || ^2.0.0", 911 | "debug": "^4.3.4", 912 | "deepmerge": "^4.3.1", 913 | "kleur": "^4.1.5", 914 | "magic-string": "^0.30.5", 915 | "svelte-hmr": "^0.15.3", 916 | "vitefu": "^0.2.5" 917 | }, 918 | "engines": { 919 | "node": "^18.0.0 || >=20" 920 | }, 921 | "peerDependencies": { 922 | "svelte": "^4.0.0 || ^5.0.0-next.0", 923 | "vite": "^5.0.0" 924 | } 925 | }, 926 | "node_modules/@sveltejs/vite-plugin-svelte-inspector": { 927 | "version": "2.0.0", 928 | "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte-inspector/-/vite-plugin-svelte-inspector-2.0.0.tgz", 929 | "integrity": "sha512-gjr9ZFg1BSlIpfZ4PRewigrvYmHWbDrq2uvvPB1AmTWKuM+dI1JXQSUu2pIrYLb/QncyiIGkFDFKTwJ0XqQZZg==", 930 | "dev": true, 931 | "dependencies": { 932 | "debug": "^4.3.4" 933 | }, 934 | "engines": { 935 | "node": "^18.0.0 || >=20" 936 | }, 937 | "peerDependencies": { 938 | "@sveltejs/vite-plugin-svelte": "^3.0.0", 939 | "svelte": "^4.0.0 || ^5.0.0-next.0", 940 | "vite": "^5.0.0" 941 | } 942 | }, 943 | "node_modules/@types/cookie": { 944 | "version": "0.6.0", 945 | "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz", 946 | "integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==", 947 | "dev": true 948 | }, 949 | "node_modules/@types/estree": { 950 | "version": "1.0.5", 951 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", 952 | "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", 953 | "dev": true 954 | }, 955 | "node_modules/@types/pug": { 956 | "version": "2.0.10", 957 | "resolved": "https://registry.npmjs.org/@types/pug/-/pug-2.0.10.tgz", 958 | "integrity": "sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==", 959 | "dev": true 960 | }, 961 | "node_modules/@vercel/analytics": { 962 | "version": "1.3.1", 963 | "resolved": "https://registry.npmjs.org/@vercel/analytics/-/analytics-1.3.1.tgz", 964 | "integrity": "sha512-xhSlYgAuJ6Q4WQGkzYTLmXwhYl39sWjoMA3nHxfkvG+WdBT25c563a7QhwwKivEOZtPJXifYHR1m2ihoisbWyA==", 965 | "peer": true, 966 | "dependencies": { 967 | "server-only": "^0.0.1" 968 | }, 969 | "peerDependencies": { 970 | "next": ">= 13", 971 | "react": "^18 || ^19" 972 | }, 973 | "peerDependenciesMeta": { 974 | "next": { 975 | "optional": true 976 | }, 977 | "react": { 978 | "optional": true 979 | } 980 | } 981 | }, 982 | "node_modules/@vercel/nft": { 983 | "version": "0.26.2", 984 | "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.26.2.tgz", 985 | "integrity": "sha512-bxe2iShmKZi7476xYamyKvhhKwQ6JPEtQ2FSq1AjMUH2buMd8LQMkdoHinTqZYc+1sMTh3G0ARdjzNvV1FEisA==", 986 | "dev": true, 987 | "dependencies": { 988 | "@mapbox/node-pre-gyp": "^1.0.5", 989 | "@rollup/pluginutils": "^4.0.0", 990 | "acorn": "^8.6.0", 991 | "acorn-import-attributes": "^1.9.2", 992 | "async-sema": "^3.1.1", 993 | "bindings": "^1.4.0", 994 | "estree-walker": "2.0.2", 995 | "glob": "^7.1.3", 996 | "graceful-fs": "^4.2.9", 997 | "micromatch": "^4.0.2", 998 | "node-gyp-build": "^4.2.2", 999 | "resolve-from": "^5.0.0" 1000 | }, 1001 | "bin": { 1002 | "nft": "out/cli.js" 1003 | }, 1004 | "engines": { 1005 | "node": ">=16" 1006 | } 1007 | }, 1008 | "node_modules/@vercel/nft/node_modules/brace-expansion": { 1009 | "version": "1.1.11", 1010 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1011 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1012 | "dev": true, 1013 | "dependencies": { 1014 | "balanced-match": "^1.0.0", 1015 | "concat-map": "0.0.1" 1016 | } 1017 | }, 1018 | "node_modules/@vercel/nft/node_modules/estree-walker": { 1019 | "version": "2.0.2", 1020 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", 1021 | "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", 1022 | "dev": true 1023 | }, 1024 | "node_modules/@vercel/nft/node_modules/glob": { 1025 | "version": "7.2.3", 1026 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 1027 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 1028 | "dev": true, 1029 | "dependencies": { 1030 | "fs.realpath": "^1.0.0", 1031 | "inflight": "^1.0.4", 1032 | "inherits": "2", 1033 | "minimatch": "^3.1.1", 1034 | "once": "^1.3.0", 1035 | "path-is-absolute": "^1.0.0" 1036 | }, 1037 | "engines": { 1038 | "node": "*" 1039 | }, 1040 | "funding": { 1041 | "url": "https://github.com/sponsors/isaacs" 1042 | } 1043 | }, 1044 | "node_modules/@vercel/nft/node_modules/minimatch": { 1045 | "version": "3.1.2", 1046 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1047 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1048 | "dev": true, 1049 | "dependencies": { 1050 | "brace-expansion": "^1.1.7" 1051 | }, 1052 | "engines": { 1053 | "node": "*" 1054 | } 1055 | }, 1056 | "node_modules/@vercel/nft/node_modules/resolve-from": { 1057 | "version": "5.0.0", 1058 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", 1059 | "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", 1060 | "dev": true, 1061 | "engines": { 1062 | "node": ">=8" 1063 | } 1064 | }, 1065 | "node_modules/abbrev": { 1066 | "version": "1.1.1", 1067 | "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", 1068 | "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", 1069 | "dev": true 1070 | }, 1071 | "node_modules/acorn": { 1072 | "version": "8.11.2", 1073 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", 1074 | "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", 1075 | "dev": true, 1076 | "bin": { 1077 | "acorn": "bin/acorn" 1078 | }, 1079 | "engines": { 1080 | "node": ">=0.4.0" 1081 | } 1082 | }, 1083 | "node_modules/acorn-import-attributes": { 1084 | "version": "1.9.2", 1085 | "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.2.tgz", 1086 | "integrity": "sha512-O+nfJwNolEA771IYJaiLWK1UAwjNsQmZbTRqqwBYxCgVQTmpFEMvBw6LOIQV0Me339L5UMVYFyRohGnGlQDdIQ==", 1087 | "dev": true, 1088 | "peerDependencies": { 1089 | "acorn": "^8" 1090 | } 1091 | }, 1092 | "node_modules/agent-base": { 1093 | "version": "6.0.2", 1094 | "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", 1095 | "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", 1096 | "dev": true, 1097 | "dependencies": { 1098 | "debug": "4" 1099 | }, 1100 | "engines": { 1101 | "node": ">= 6.0.0" 1102 | } 1103 | }, 1104 | "node_modules/ansi-regex": { 1105 | "version": "5.0.1", 1106 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1107 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1108 | "dev": true, 1109 | "engines": { 1110 | "node": ">=8" 1111 | } 1112 | }, 1113 | "node_modules/anymatch": { 1114 | "version": "3.1.3", 1115 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 1116 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 1117 | "dependencies": { 1118 | "normalize-path": "^3.0.0", 1119 | "picomatch": "^2.0.4" 1120 | }, 1121 | "engines": { 1122 | "node": ">= 8" 1123 | } 1124 | }, 1125 | "node_modules/aproba": { 1126 | "version": "2.0.0", 1127 | "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", 1128 | "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", 1129 | "dev": true 1130 | }, 1131 | "node_modules/are-we-there-yet": { 1132 | "version": "2.0.0", 1133 | "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", 1134 | "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", 1135 | "dev": true, 1136 | "dependencies": { 1137 | "delegates": "^1.0.0", 1138 | "readable-stream": "^3.6.0" 1139 | }, 1140 | "engines": { 1141 | "node": ">=10" 1142 | } 1143 | }, 1144 | "node_modules/aria-query": { 1145 | "version": "5.3.0", 1146 | "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", 1147 | "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", 1148 | "dev": true, 1149 | "dependencies": { 1150 | "dequal": "^2.0.3" 1151 | } 1152 | }, 1153 | "node_modules/async-sema": { 1154 | "version": "3.1.1", 1155 | "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz", 1156 | "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==", 1157 | "dev": true 1158 | }, 1159 | "node_modules/axobject-query": { 1160 | "version": "4.0.0", 1161 | "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.0.0.tgz", 1162 | "integrity": "sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==", 1163 | "dev": true, 1164 | "dependencies": { 1165 | "dequal": "^2.0.3" 1166 | } 1167 | }, 1168 | "node_modules/balanced-match": { 1169 | "version": "1.0.2", 1170 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1171 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1172 | "dev": true 1173 | }, 1174 | "node_modules/binary-extensions": { 1175 | "version": "2.2.0", 1176 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 1177 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", 1178 | "engines": { 1179 | "node": ">=8" 1180 | } 1181 | }, 1182 | "node_modules/bindings": { 1183 | "version": "1.5.0", 1184 | "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", 1185 | "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", 1186 | "dev": true, 1187 | "dependencies": { 1188 | "file-uri-to-path": "1.0.0" 1189 | } 1190 | }, 1191 | "node_modules/bootstrap": { 1192 | "version": "5.3.2", 1193 | "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.2.tgz", 1194 | "integrity": "sha512-D32nmNWiQHo94BKHLmOrdjlL05q1c8oxbtBphQFb9Z5to6eGRDCm0QgeaZ4zFBHzfg2++rqa2JkqCcxDy0sH0g==", 1195 | "funding": [ 1196 | { 1197 | "type": "github", 1198 | "url": "https://github.com/sponsors/twbs" 1199 | }, 1200 | { 1201 | "type": "opencollective", 1202 | "url": "https://opencollective.com/bootstrap" 1203 | } 1204 | ], 1205 | "peer": true, 1206 | "peerDependencies": { 1207 | "@popperjs/core": "^2.11.8" 1208 | } 1209 | }, 1210 | "node_modules/brace-expansion": { 1211 | "version": "2.0.1", 1212 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 1213 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1214 | "dev": true, 1215 | "dependencies": { 1216 | "balanced-match": "^1.0.0" 1217 | } 1218 | }, 1219 | "node_modules/braces": { 1220 | "version": "3.0.3", 1221 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 1222 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 1223 | "dependencies": { 1224 | "fill-range": "^7.1.1" 1225 | }, 1226 | "engines": { 1227 | "node": ">=8" 1228 | } 1229 | }, 1230 | "node_modules/buffer-crc32": { 1231 | "version": "0.2.13", 1232 | "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", 1233 | "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", 1234 | "dev": true, 1235 | "engines": { 1236 | "node": "*" 1237 | } 1238 | }, 1239 | "node_modules/callsites": { 1240 | "version": "3.1.0", 1241 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1242 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1243 | "dev": true, 1244 | "engines": { 1245 | "node": ">=6" 1246 | } 1247 | }, 1248 | "node_modules/chokidar": { 1249 | "version": "3.5.3", 1250 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", 1251 | "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", 1252 | "funding": [ 1253 | { 1254 | "type": "individual", 1255 | "url": "https://paulmillr.com/funding/" 1256 | } 1257 | ], 1258 | "dependencies": { 1259 | "anymatch": "~3.1.2", 1260 | "braces": "~3.0.2", 1261 | "glob-parent": "~5.1.2", 1262 | "is-binary-path": "~2.1.0", 1263 | "is-glob": "~4.0.1", 1264 | "normalize-path": "~3.0.0", 1265 | "readdirp": "~3.6.0" 1266 | }, 1267 | "engines": { 1268 | "node": ">= 8.10.0" 1269 | }, 1270 | "optionalDependencies": { 1271 | "fsevents": "~2.3.2" 1272 | } 1273 | }, 1274 | "node_modules/chownr": { 1275 | "version": "2.0.0", 1276 | "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", 1277 | "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", 1278 | "dev": true, 1279 | "engines": { 1280 | "node": ">=10" 1281 | } 1282 | }, 1283 | "node_modules/code-red": { 1284 | "version": "1.0.4", 1285 | "resolved": "https://registry.npmjs.org/code-red/-/code-red-1.0.4.tgz", 1286 | "integrity": "sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==", 1287 | "dev": true, 1288 | "dependencies": { 1289 | "@jridgewell/sourcemap-codec": "^1.4.15", 1290 | "@types/estree": "^1.0.1", 1291 | "acorn": "^8.10.0", 1292 | "estree-walker": "^3.0.3", 1293 | "periscopic": "^3.1.0" 1294 | } 1295 | }, 1296 | "node_modules/color-support": { 1297 | "version": "1.1.3", 1298 | "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", 1299 | "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", 1300 | "dev": true, 1301 | "bin": { 1302 | "color-support": "bin.js" 1303 | } 1304 | }, 1305 | "node_modules/concat-map": { 1306 | "version": "0.0.1", 1307 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1308 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1309 | "dev": true 1310 | }, 1311 | "node_modules/console-control-strings": { 1312 | "version": "1.1.0", 1313 | "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", 1314 | "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", 1315 | "dev": true 1316 | }, 1317 | "node_modules/cookie": { 1318 | "version": "0.6.0", 1319 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", 1320 | "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", 1321 | "dev": true, 1322 | "engines": { 1323 | "node": ">= 0.6" 1324 | } 1325 | }, 1326 | "node_modules/css-tree": { 1327 | "version": "2.3.1", 1328 | "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", 1329 | "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", 1330 | "dev": true, 1331 | "dependencies": { 1332 | "mdn-data": "2.0.30", 1333 | "source-map-js": "^1.0.1" 1334 | }, 1335 | "engines": { 1336 | "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" 1337 | } 1338 | }, 1339 | "node_modules/debug": { 1340 | "version": "4.3.4", 1341 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 1342 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 1343 | "dev": true, 1344 | "dependencies": { 1345 | "ms": "2.1.2" 1346 | }, 1347 | "engines": { 1348 | "node": ">=6.0" 1349 | }, 1350 | "peerDependenciesMeta": { 1351 | "supports-color": { 1352 | "optional": true 1353 | } 1354 | } 1355 | }, 1356 | "node_modules/dedent-js": { 1357 | "version": "1.0.1", 1358 | "resolved": "https://registry.npmjs.org/dedent-js/-/dedent-js-1.0.1.tgz", 1359 | "integrity": "sha512-OUepMozQULMLUmhxS95Vudo0jb0UchLimi3+pQ2plj61Fcy8axbP9hbiD4Sz6DPqn6XG3kfmziVfQ1rSys5AJQ==", 1360 | "dev": true 1361 | }, 1362 | "node_modules/deepmerge": { 1363 | "version": "4.3.1", 1364 | "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", 1365 | "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", 1366 | "dev": true, 1367 | "engines": { 1368 | "node": ">=0.10.0" 1369 | } 1370 | }, 1371 | "node_modules/delegates": { 1372 | "version": "1.0.0", 1373 | "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", 1374 | "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", 1375 | "dev": true 1376 | }, 1377 | "node_modules/dequal": { 1378 | "version": "2.0.3", 1379 | "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", 1380 | "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", 1381 | "dev": true, 1382 | "engines": { 1383 | "node": ">=6" 1384 | } 1385 | }, 1386 | "node_modules/detect-indent": { 1387 | "version": "6.1.0", 1388 | "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", 1389 | "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", 1390 | "dev": true, 1391 | "engines": { 1392 | "node": ">=8" 1393 | } 1394 | }, 1395 | "node_modules/detect-libc": { 1396 | "version": "2.0.2", 1397 | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.2.tgz", 1398 | "integrity": "sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==", 1399 | "dev": true, 1400 | "engines": { 1401 | "node": ">=8" 1402 | } 1403 | }, 1404 | "node_modules/devalue": { 1405 | "version": "5.0.0", 1406 | "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.0.0.tgz", 1407 | "integrity": "sha512-gO+/OMXF7488D+u3ue+G7Y4AA3ZmUnB3eHJXmBTgNHvr4ZNzl36A0ZtG+XCRNYCkYx/bFmw4qtkoFLa+wSrwAA==", 1408 | "dev": true 1409 | }, 1410 | "node_modules/emoji-regex": { 1411 | "version": "8.0.0", 1412 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 1413 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 1414 | "dev": true 1415 | }, 1416 | "node_modules/es6-promise": { 1417 | "version": "3.3.1", 1418 | "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz", 1419 | "integrity": "sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==", 1420 | "dev": true 1421 | }, 1422 | "node_modules/esbuild": { 1423 | "version": "0.19.11", 1424 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.11.tgz", 1425 | "integrity": "sha512-HJ96Hev2hX/6i5cDVwcqiJBBtuo9+FeIJOtZ9W1kA5M6AMJRHUZlpYZ1/SbEwtO0ioNAW8rUooVpC/WehY2SfA==", 1426 | "dev": true, 1427 | "hasInstallScript": true, 1428 | "bin": { 1429 | "esbuild": "bin/esbuild" 1430 | }, 1431 | "engines": { 1432 | "node": ">=12" 1433 | }, 1434 | "optionalDependencies": { 1435 | "@esbuild/aix-ppc64": "0.19.11", 1436 | "@esbuild/android-arm": "0.19.11", 1437 | "@esbuild/android-arm64": "0.19.11", 1438 | "@esbuild/android-x64": "0.19.11", 1439 | "@esbuild/darwin-arm64": "0.19.11", 1440 | "@esbuild/darwin-x64": "0.19.11", 1441 | "@esbuild/freebsd-arm64": "0.19.11", 1442 | "@esbuild/freebsd-x64": "0.19.11", 1443 | "@esbuild/linux-arm": "0.19.11", 1444 | "@esbuild/linux-arm64": "0.19.11", 1445 | "@esbuild/linux-ia32": "0.19.11", 1446 | "@esbuild/linux-loong64": "0.19.11", 1447 | "@esbuild/linux-mips64el": "0.19.11", 1448 | "@esbuild/linux-ppc64": "0.19.11", 1449 | "@esbuild/linux-riscv64": "0.19.11", 1450 | "@esbuild/linux-s390x": "0.19.11", 1451 | "@esbuild/linux-x64": "0.19.11", 1452 | "@esbuild/netbsd-x64": "0.19.11", 1453 | "@esbuild/openbsd-x64": "0.19.11", 1454 | "@esbuild/sunos-x64": "0.19.11", 1455 | "@esbuild/win32-arm64": "0.19.11", 1456 | "@esbuild/win32-ia32": "0.19.11", 1457 | "@esbuild/win32-x64": "0.19.11" 1458 | } 1459 | }, 1460 | "node_modules/esm-env": { 1461 | "version": "1.0.0", 1462 | "resolved": "https://registry.npmjs.org/esm-env/-/esm-env-1.0.0.tgz", 1463 | "integrity": "sha512-Cf6VksWPsTuW01vU9Mk/3vRue91Zevka5SjyNf3nEpokFRuqt/KjUQoGAwq9qMmhpLTHmXzSIrFRw8zxWzmFBA==", 1464 | "dev": true 1465 | }, 1466 | "node_modules/estree-walker": { 1467 | "version": "3.0.3", 1468 | "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", 1469 | "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", 1470 | "dev": true, 1471 | "dependencies": { 1472 | "@types/estree": "^1.0.0" 1473 | } 1474 | }, 1475 | "node_modules/fast-glob": { 1476 | "version": "3.3.2", 1477 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 1478 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 1479 | "dev": true, 1480 | "dependencies": { 1481 | "@nodelib/fs.stat": "^2.0.2", 1482 | "@nodelib/fs.walk": "^1.2.3", 1483 | "glob-parent": "^5.1.2", 1484 | "merge2": "^1.3.0", 1485 | "micromatch": "^4.0.4" 1486 | }, 1487 | "engines": { 1488 | "node": ">=8.6.0" 1489 | } 1490 | }, 1491 | "node_modules/fastq": { 1492 | "version": "1.15.0", 1493 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", 1494 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", 1495 | "dev": true, 1496 | "dependencies": { 1497 | "reusify": "^1.0.4" 1498 | } 1499 | }, 1500 | "node_modules/file-uri-to-path": { 1501 | "version": "1.0.0", 1502 | "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", 1503 | "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", 1504 | "dev": true 1505 | }, 1506 | "node_modules/fill-range": { 1507 | "version": "7.1.1", 1508 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1509 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1510 | "dependencies": { 1511 | "to-regex-range": "^5.0.1" 1512 | }, 1513 | "engines": { 1514 | "node": ">=8" 1515 | } 1516 | }, 1517 | "node_modules/fs-minipass": { 1518 | "version": "2.1.0", 1519 | "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", 1520 | "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", 1521 | "dev": true, 1522 | "dependencies": { 1523 | "minipass": "^3.0.0" 1524 | }, 1525 | "engines": { 1526 | "node": ">= 8" 1527 | } 1528 | }, 1529 | "node_modules/fs-minipass/node_modules/minipass": { 1530 | "version": "3.3.6", 1531 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", 1532 | "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", 1533 | "dev": true, 1534 | "dependencies": { 1535 | "yallist": "^4.0.0" 1536 | }, 1537 | "engines": { 1538 | "node": ">=8" 1539 | } 1540 | }, 1541 | "node_modules/fs.realpath": { 1542 | "version": "1.0.0", 1543 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1544 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1545 | "dev": true 1546 | }, 1547 | "node_modules/fsevents": { 1548 | "version": "2.3.3", 1549 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1550 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1551 | "hasInstallScript": true, 1552 | "optional": true, 1553 | "os": [ 1554 | "darwin" 1555 | ], 1556 | "engines": { 1557 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1558 | } 1559 | }, 1560 | "node_modules/gauge": { 1561 | "version": "3.0.2", 1562 | "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", 1563 | "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", 1564 | "dev": true, 1565 | "dependencies": { 1566 | "aproba": "^1.0.3 || ^2.0.0", 1567 | "color-support": "^1.1.2", 1568 | "console-control-strings": "^1.0.0", 1569 | "has-unicode": "^2.0.1", 1570 | "object-assign": "^4.1.1", 1571 | "signal-exit": "^3.0.0", 1572 | "string-width": "^4.2.3", 1573 | "strip-ansi": "^6.0.1", 1574 | "wide-align": "^1.1.2" 1575 | }, 1576 | "engines": { 1577 | "node": ">=10" 1578 | } 1579 | }, 1580 | "node_modules/glob": { 1581 | "version": "8.1.0", 1582 | "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", 1583 | "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", 1584 | "dev": true, 1585 | "dependencies": { 1586 | "fs.realpath": "^1.0.0", 1587 | "inflight": "^1.0.4", 1588 | "inherits": "2", 1589 | "minimatch": "^5.0.1", 1590 | "once": "^1.3.0" 1591 | }, 1592 | "engines": { 1593 | "node": ">=12" 1594 | }, 1595 | "funding": { 1596 | "url": "https://github.com/sponsors/isaacs" 1597 | } 1598 | }, 1599 | "node_modules/glob-parent": { 1600 | "version": "5.1.2", 1601 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1602 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1603 | "dependencies": { 1604 | "is-glob": "^4.0.1" 1605 | }, 1606 | "engines": { 1607 | "node": ">= 6" 1608 | } 1609 | }, 1610 | "node_modules/globalyzer": { 1611 | "version": "0.1.0", 1612 | "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz", 1613 | "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==", 1614 | "dev": true 1615 | }, 1616 | "node_modules/globrex": { 1617 | "version": "0.1.2", 1618 | "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", 1619 | "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==", 1620 | "dev": true 1621 | }, 1622 | "node_modules/graceful-fs": { 1623 | "version": "4.2.11", 1624 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 1625 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 1626 | "dev": true 1627 | }, 1628 | "node_modules/gsap": { 1629 | "version": "3.12.3", 1630 | "resolved": "https://registry.npmjs.org/gsap/-/gsap-3.12.3.tgz", 1631 | "integrity": "sha512-TySXTE+ABiAVa61W+h5wv2p5GkJT1Uj//4nWpK8EjmhcDqwH++35IvtbQlVVFj+rdcJdFCdCt0SKgb+SwdPq/A==" 1632 | }, 1633 | "node_modules/has-unicode": { 1634 | "version": "2.0.1", 1635 | "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", 1636 | "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", 1637 | "dev": true 1638 | }, 1639 | "node_modules/https-proxy-agent": { 1640 | "version": "5.0.1", 1641 | "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", 1642 | "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", 1643 | "dev": true, 1644 | "dependencies": { 1645 | "agent-base": "6", 1646 | "debug": "4" 1647 | }, 1648 | "engines": { 1649 | "node": ">= 6" 1650 | } 1651 | }, 1652 | "node_modules/ignore-walk": { 1653 | "version": "5.0.1", 1654 | "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-5.0.1.tgz", 1655 | "integrity": "sha512-yemi4pMf51WKT7khInJqAvsIGzoqYXblnsz0ql8tM+yi1EKYTY1evX4NAbJrLL/Aanr2HyZeluqU+Oi7MGHokw==", 1656 | "dev": true, 1657 | "dependencies": { 1658 | "minimatch": "^5.0.1" 1659 | }, 1660 | "engines": { 1661 | "node": "^12.13.0 || ^14.15.0 || >=16.0.0" 1662 | } 1663 | }, 1664 | "node_modules/immutable": { 1665 | "version": "4.3.4", 1666 | "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.4.tgz", 1667 | "integrity": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==", 1668 | "peer": true 1669 | }, 1670 | "node_modules/import-fresh": { 1671 | "version": "3.3.0", 1672 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 1673 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 1674 | "dev": true, 1675 | "dependencies": { 1676 | "parent-module": "^1.0.0", 1677 | "resolve-from": "^4.0.0" 1678 | }, 1679 | "engines": { 1680 | "node": ">=6" 1681 | }, 1682 | "funding": { 1683 | "url": "https://github.com/sponsors/sindresorhus" 1684 | } 1685 | }, 1686 | "node_modules/import-meta-resolve": { 1687 | "version": "4.1.0", 1688 | "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz", 1689 | "integrity": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==", 1690 | "dev": true, 1691 | "funding": { 1692 | "type": "github", 1693 | "url": "https://github.com/sponsors/wooorm" 1694 | } 1695 | }, 1696 | "node_modules/inflight": { 1697 | "version": "1.0.6", 1698 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1699 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1700 | "dev": true, 1701 | "dependencies": { 1702 | "once": "^1.3.0", 1703 | "wrappy": "1" 1704 | } 1705 | }, 1706 | "node_modules/inherits": { 1707 | "version": "2.0.4", 1708 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1709 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1710 | "dev": true 1711 | }, 1712 | "node_modules/is-binary-path": { 1713 | "version": "2.1.0", 1714 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 1715 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 1716 | "dependencies": { 1717 | "binary-extensions": "^2.0.0" 1718 | }, 1719 | "engines": { 1720 | "node": ">=8" 1721 | } 1722 | }, 1723 | "node_modules/is-extglob": { 1724 | "version": "2.1.1", 1725 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1726 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1727 | "engines": { 1728 | "node": ">=0.10.0" 1729 | } 1730 | }, 1731 | "node_modules/is-fullwidth-code-point": { 1732 | "version": "3.0.0", 1733 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 1734 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 1735 | "dev": true, 1736 | "engines": { 1737 | "node": ">=8" 1738 | } 1739 | }, 1740 | "node_modules/is-glob": { 1741 | "version": "4.0.3", 1742 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 1743 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 1744 | "dependencies": { 1745 | "is-extglob": "^2.1.1" 1746 | }, 1747 | "engines": { 1748 | "node": ">=0.10.0" 1749 | } 1750 | }, 1751 | "node_modules/is-number": { 1752 | "version": "7.0.0", 1753 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 1754 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 1755 | "engines": { 1756 | "node": ">=0.12.0" 1757 | } 1758 | }, 1759 | "node_modules/is-reference": { 1760 | "version": "3.0.2", 1761 | "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.2.tgz", 1762 | "integrity": "sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==", 1763 | "dev": true, 1764 | "dependencies": { 1765 | "@types/estree": "*" 1766 | } 1767 | }, 1768 | "node_modules/kleur": { 1769 | "version": "4.1.5", 1770 | "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", 1771 | "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", 1772 | "dev": true, 1773 | "engines": { 1774 | "node": ">=6" 1775 | } 1776 | }, 1777 | "node_modules/lenis": { 1778 | "version": "1.1.3", 1779 | "resolved": "https://registry.npmjs.org/lenis/-/lenis-1.1.3.tgz", 1780 | "integrity": "sha512-Ny62QbNKFdnYPutULPMCgXU6YADKgkICBke41snSXDH1p9iIA1w1+RiHSfJEoMaRCa1SXer4Rzv0f4txCQcQpg==", 1781 | "peer": true, 1782 | "dependencies": { 1783 | "@darkroom.engineering/tempus": "^0.0.46" 1784 | }, 1785 | "funding": { 1786 | "type": "github", 1787 | "url": "https://github.com/sponsors/darkroomengineering" 1788 | }, 1789 | "peerDependencies": { 1790 | "react": ">=17.0.0", 1791 | "react-dom": ">=17.0.0" 1792 | }, 1793 | "peerDependenciesMeta": { 1794 | "react": { 1795 | "optional": true 1796 | }, 1797 | "react-dom": { 1798 | "optional": true 1799 | } 1800 | } 1801 | }, 1802 | "node_modules/locate-character": { 1803 | "version": "3.0.0", 1804 | "resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz", 1805 | "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==", 1806 | "dev": true 1807 | }, 1808 | "node_modules/lower-case": { 1809 | "version": "2.0.2", 1810 | "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", 1811 | "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", 1812 | "dev": true, 1813 | "dependencies": { 1814 | "tslib": "^2.0.3" 1815 | } 1816 | }, 1817 | "node_modules/lru-cache": { 1818 | "version": "6.0.0", 1819 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 1820 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 1821 | "dev": true, 1822 | "dependencies": { 1823 | "yallist": "^4.0.0" 1824 | }, 1825 | "engines": { 1826 | "node": ">=10" 1827 | } 1828 | }, 1829 | "node_modules/magic-string": { 1830 | "version": "0.30.5", 1831 | "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.5.tgz", 1832 | "integrity": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==", 1833 | "dev": true, 1834 | "dependencies": { 1835 | "@jridgewell/sourcemap-codec": "^1.4.15" 1836 | }, 1837 | "engines": { 1838 | "node": ">=12" 1839 | } 1840 | }, 1841 | "node_modules/make-dir": { 1842 | "version": "3.1.0", 1843 | "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", 1844 | "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", 1845 | "dev": true, 1846 | "dependencies": { 1847 | "semver": "^6.0.0" 1848 | }, 1849 | "engines": { 1850 | "node": ">=8" 1851 | }, 1852 | "funding": { 1853 | "url": "https://github.com/sponsors/sindresorhus" 1854 | } 1855 | }, 1856 | "node_modules/make-dir/node_modules/semver": { 1857 | "version": "6.3.1", 1858 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 1859 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 1860 | "dev": true, 1861 | "bin": { 1862 | "semver": "bin/semver.js" 1863 | } 1864 | }, 1865 | "node_modules/mdn-data": { 1866 | "version": "2.0.30", 1867 | "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", 1868 | "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", 1869 | "dev": true 1870 | }, 1871 | "node_modules/merge2": { 1872 | "version": "1.4.1", 1873 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 1874 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 1875 | "dev": true, 1876 | "engines": { 1877 | "node": ">= 8" 1878 | } 1879 | }, 1880 | "node_modules/micromatch": { 1881 | "version": "4.0.5", 1882 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 1883 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 1884 | "dev": true, 1885 | "dependencies": { 1886 | "braces": "^3.0.2", 1887 | "picomatch": "^2.3.1" 1888 | }, 1889 | "engines": { 1890 | "node": ">=8.6" 1891 | } 1892 | }, 1893 | "node_modules/min-indent": { 1894 | "version": "1.0.1", 1895 | "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", 1896 | "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", 1897 | "dev": true, 1898 | "engines": { 1899 | "node": ">=4" 1900 | } 1901 | }, 1902 | "node_modules/minimatch": { 1903 | "version": "5.1.6", 1904 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", 1905 | "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", 1906 | "dev": true, 1907 | "dependencies": { 1908 | "brace-expansion": "^2.0.1" 1909 | }, 1910 | "engines": { 1911 | "node": ">=10" 1912 | } 1913 | }, 1914 | "node_modules/minimist": { 1915 | "version": "1.2.8", 1916 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 1917 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 1918 | "dev": true, 1919 | "funding": { 1920 | "url": "https://github.com/sponsors/ljharb" 1921 | } 1922 | }, 1923 | "node_modules/minipass": { 1924 | "version": "5.0.0", 1925 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", 1926 | "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", 1927 | "dev": true, 1928 | "engines": { 1929 | "node": ">=8" 1930 | } 1931 | }, 1932 | "node_modules/minizlib": { 1933 | "version": "2.1.2", 1934 | "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", 1935 | "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", 1936 | "dev": true, 1937 | "dependencies": { 1938 | "minipass": "^3.0.0", 1939 | "yallist": "^4.0.0" 1940 | }, 1941 | "engines": { 1942 | "node": ">= 8" 1943 | } 1944 | }, 1945 | "node_modules/minizlib/node_modules/minipass": { 1946 | "version": "3.3.6", 1947 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", 1948 | "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", 1949 | "dev": true, 1950 | "dependencies": { 1951 | "yallist": "^4.0.0" 1952 | }, 1953 | "engines": { 1954 | "node": ">=8" 1955 | } 1956 | }, 1957 | "node_modules/mkdirp": { 1958 | "version": "0.5.6", 1959 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", 1960 | "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", 1961 | "dev": true, 1962 | "dependencies": { 1963 | "minimist": "^1.2.6" 1964 | }, 1965 | "bin": { 1966 | "mkdirp": "bin/cmd.js" 1967 | } 1968 | }, 1969 | "node_modules/mri": { 1970 | "version": "1.2.0", 1971 | "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", 1972 | "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", 1973 | "dev": true, 1974 | "engines": { 1975 | "node": ">=4" 1976 | } 1977 | }, 1978 | "node_modules/mrmime": { 1979 | "version": "2.0.0", 1980 | "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz", 1981 | "integrity": "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==", 1982 | "dev": true, 1983 | "engines": { 1984 | "node": ">=10" 1985 | } 1986 | }, 1987 | "node_modules/ms": { 1988 | "version": "2.1.2", 1989 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1990 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 1991 | "dev": true 1992 | }, 1993 | "node_modules/nanoid": { 1994 | "version": "3.3.7", 1995 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", 1996 | "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", 1997 | "dev": true, 1998 | "funding": [ 1999 | { 2000 | "type": "github", 2001 | "url": "https://github.com/sponsors/ai" 2002 | } 2003 | ], 2004 | "bin": { 2005 | "nanoid": "bin/nanoid.cjs" 2006 | }, 2007 | "engines": { 2008 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2009 | } 2010 | }, 2011 | "node_modules/no-case": { 2012 | "version": "3.0.4", 2013 | "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", 2014 | "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", 2015 | "dev": true, 2016 | "dependencies": { 2017 | "lower-case": "^2.0.2", 2018 | "tslib": "^2.0.3" 2019 | } 2020 | }, 2021 | "node_modules/node-fetch": { 2022 | "version": "2.7.0", 2023 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", 2024 | "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", 2025 | "dev": true, 2026 | "dependencies": { 2027 | "whatwg-url": "^5.0.0" 2028 | }, 2029 | "engines": { 2030 | "node": "4.x || >=6.0.0" 2031 | }, 2032 | "peerDependencies": { 2033 | "encoding": "^0.1.0" 2034 | }, 2035 | "peerDependenciesMeta": { 2036 | "encoding": { 2037 | "optional": true 2038 | } 2039 | } 2040 | }, 2041 | "node_modules/node-gyp-build": { 2042 | "version": "4.8.0", 2043 | "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.0.tgz", 2044 | "integrity": "sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==", 2045 | "dev": true, 2046 | "bin": { 2047 | "node-gyp-build": "bin.js", 2048 | "node-gyp-build-optional": "optional.js", 2049 | "node-gyp-build-test": "build-test.js" 2050 | } 2051 | }, 2052 | "node_modules/nopt": { 2053 | "version": "5.0.0", 2054 | "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", 2055 | "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", 2056 | "dev": true, 2057 | "dependencies": { 2058 | "abbrev": "1" 2059 | }, 2060 | "bin": { 2061 | "nopt": "bin/nopt.js" 2062 | }, 2063 | "engines": { 2064 | "node": ">=6" 2065 | } 2066 | }, 2067 | "node_modules/normalize-path": { 2068 | "version": "3.0.0", 2069 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2070 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2071 | "engines": { 2072 | "node": ">=0.10.0" 2073 | } 2074 | }, 2075 | "node_modules/npm-bundled": { 2076 | "version": "2.0.1", 2077 | "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-2.0.1.tgz", 2078 | "integrity": "sha512-gZLxXdjEzE/+mOstGDqR6b0EkhJ+kM6fxM6vUuckuctuVPh80Q6pw/rSZj9s4Gex9GxWtIicO1pc8DB9KZWudw==", 2079 | "dev": true, 2080 | "dependencies": { 2081 | "npm-normalize-package-bin": "^2.0.0" 2082 | }, 2083 | "engines": { 2084 | "node": "^12.13.0 || ^14.15.0 || >=16.0.0" 2085 | } 2086 | }, 2087 | "node_modules/npm-normalize-package-bin": { 2088 | "version": "2.0.0", 2089 | "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-2.0.0.tgz", 2090 | "integrity": "sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==", 2091 | "dev": true, 2092 | "engines": { 2093 | "node": "^12.13.0 || ^14.15.0 || >=16.0.0" 2094 | } 2095 | }, 2096 | "node_modules/npm-packlist": { 2097 | "version": "5.1.3", 2098 | "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-5.1.3.tgz", 2099 | "integrity": "sha512-263/0NGrn32YFYi4J533qzrQ/krmmrWwhKkzwTuM4f/07ug51odoaNjUexxO4vxlzURHcmYMH1QjvHjsNDKLVg==", 2100 | "dev": true, 2101 | "dependencies": { 2102 | "glob": "^8.0.1", 2103 | "ignore-walk": "^5.0.1", 2104 | "npm-bundled": "^2.0.0", 2105 | "npm-normalize-package-bin": "^2.0.0" 2106 | }, 2107 | "bin": { 2108 | "npm-packlist": "bin/index.js" 2109 | }, 2110 | "engines": { 2111 | "node": "^12.13.0 || ^14.15.0 || >=16.0.0" 2112 | } 2113 | }, 2114 | "node_modules/npmlog": { 2115 | "version": "5.0.1", 2116 | "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", 2117 | "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", 2118 | "dev": true, 2119 | "dependencies": { 2120 | "are-we-there-yet": "^2.0.0", 2121 | "console-control-strings": "^1.1.0", 2122 | "gauge": "^3.0.0", 2123 | "set-blocking": "^2.0.0" 2124 | } 2125 | }, 2126 | "node_modules/object-assign": { 2127 | "version": "4.1.1", 2128 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 2129 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 2130 | "dev": true, 2131 | "engines": { 2132 | "node": ">=0.10.0" 2133 | } 2134 | }, 2135 | "node_modules/once": { 2136 | "version": "1.4.0", 2137 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2138 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2139 | "dev": true, 2140 | "dependencies": { 2141 | "wrappy": "1" 2142 | } 2143 | }, 2144 | "node_modules/parent-module": { 2145 | "version": "1.0.1", 2146 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2147 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2148 | "dev": true, 2149 | "dependencies": { 2150 | "callsites": "^3.0.0" 2151 | }, 2152 | "engines": { 2153 | "node": ">=6" 2154 | } 2155 | }, 2156 | "node_modules/pascal-case": { 2157 | "version": "3.1.2", 2158 | "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", 2159 | "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", 2160 | "dev": true, 2161 | "dependencies": { 2162 | "no-case": "^3.0.4", 2163 | "tslib": "^2.0.3" 2164 | } 2165 | }, 2166 | "node_modules/path-is-absolute": { 2167 | "version": "1.0.1", 2168 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 2169 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 2170 | "dev": true, 2171 | "engines": { 2172 | "node": ">=0.10.0" 2173 | } 2174 | }, 2175 | "node_modules/periscopic": { 2176 | "version": "3.1.0", 2177 | "resolved": "https://registry.npmjs.org/periscopic/-/periscopic-3.1.0.tgz", 2178 | "integrity": "sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==", 2179 | "dev": true, 2180 | "dependencies": { 2181 | "@types/estree": "^1.0.0", 2182 | "estree-walker": "^3.0.0", 2183 | "is-reference": "^3.0.0" 2184 | } 2185 | }, 2186 | "node_modules/picocolors": { 2187 | "version": "1.0.0", 2188 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 2189 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", 2190 | "dev": true 2191 | }, 2192 | "node_modules/picomatch": { 2193 | "version": "2.3.1", 2194 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2195 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2196 | "engines": { 2197 | "node": ">=8.6" 2198 | }, 2199 | "funding": { 2200 | "url": "https://github.com/sponsors/jonschlinkert" 2201 | } 2202 | }, 2203 | "node_modules/postcss": { 2204 | "version": "8.4.38", 2205 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", 2206 | "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", 2207 | "dev": true, 2208 | "funding": [ 2209 | { 2210 | "type": "opencollective", 2211 | "url": "https://opencollective.com/postcss/" 2212 | }, 2213 | { 2214 | "type": "tidelift", 2215 | "url": "https://tidelift.com/funding/github/npm/postcss" 2216 | }, 2217 | { 2218 | "type": "github", 2219 | "url": "https://github.com/sponsors/ai" 2220 | } 2221 | ], 2222 | "dependencies": { 2223 | "nanoid": "^3.3.7", 2224 | "picocolors": "^1.0.0", 2225 | "source-map-js": "^1.2.0" 2226 | }, 2227 | "engines": { 2228 | "node": "^10 || ^12 || >=14" 2229 | } 2230 | }, 2231 | "node_modules/publint": { 2232 | "version": "0.2.7", 2233 | "resolved": "https://registry.npmjs.org/publint/-/publint-0.2.7.tgz", 2234 | "integrity": "sha512-tLU4ee3110BxWfAmCZggJmCUnYWgPTr0QLnx08sqpLYa8JHRiOudd+CgzdpfU5x5eOaW2WMkpmOrFshRFYK7Mw==", 2235 | "dev": true, 2236 | "dependencies": { 2237 | "npm-packlist": "^5.1.3", 2238 | "picocolors": "^1.0.0", 2239 | "sade": "^1.8.1" 2240 | }, 2241 | "bin": { 2242 | "publint": "lib/cli.js" 2243 | }, 2244 | "engines": { 2245 | "node": ">=16" 2246 | }, 2247 | "funding": { 2248 | "url": "https://bjornlu.com/sponsor" 2249 | } 2250 | }, 2251 | "node_modules/queue-microtask": { 2252 | "version": "1.2.3", 2253 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2254 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2255 | "dev": true, 2256 | "funding": [ 2257 | { 2258 | "type": "github", 2259 | "url": "https://github.com/sponsors/feross" 2260 | }, 2261 | { 2262 | "type": "patreon", 2263 | "url": "https://www.patreon.com/feross" 2264 | }, 2265 | { 2266 | "type": "consulting", 2267 | "url": "https://feross.org/support" 2268 | } 2269 | ] 2270 | }, 2271 | "node_modules/readable-stream": { 2272 | "version": "3.6.2", 2273 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", 2274 | "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", 2275 | "dev": true, 2276 | "dependencies": { 2277 | "inherits": "^2.0.3", 2278 | "string_decoder": "^1.1.1", 2279 | "util-deprecate": "^1.0.1" 2280 | }, 2281 | "engines": { 2282 | "node": ">= 6" 2283 | } 2284 | }, 2285 | "node_modules/readdirp": { 2286 | "version": "3.6.0", 2287 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 2288 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 2289 | "dependencies": { 2290 | "picomatch": "^2.2.1" 2291 | }, 2292 | "engines": { 2293 | "node": ">=8.10.0" 2294 | } 2295 | }, 2296 | "node_modules/resolve-from": { 2297 | "version": "4.0.0", 2298 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 2299 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 2300 | "dev": true, 2301 | "engines": { 2302 | "node": ">=4" 2303 | } 2304 | }, 2305 | "node_modules/reusify": { 2306 | "version": "1.0.4", 2307 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 2308 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 2309 | "dev": true, 2310 | "engines": { 2311 | "iojs": ">=1.0.0", 2312 | "node": ">=0.10.0" 2313 | } 2314 | }, 2315 | "node_modules/rimraf": { 2316 | "version": "2.7.1", 2317 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", 2318 | "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", 2319 | "dev": true, 2320 | "dependencies": { 2321 | "glob": "^7.1.3" 2322 | }, 2323 | "bin": { 2324 | "rimraf": "bin.js" 2325 | } 2326 | }, 2327 | "node_modules/rimraf/node_modules/brace-expansion": { 2328 | "version": "1.1.11", 2329 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 2330 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 2331 | "dev": true, 2332 | "dependencies": { 2333 | "balanced-match": "^1.0.0", 2334 | "concat-map": "0.0.1" 2335 | } 2336 | }, 2337 | "node_modules/rimraf/node_modules/glob": { 2338 | "version": "7.2.3", 2339 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 2340 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 2341 | "dev": true, 2342 | "dependencies": { 2343 | "fs.realpath": "^1.0.0", 2344 | "inflight": "^1.0.4", 2345 | "inherits": "2", 2346 | "minimatch": "^3.1.1", 2347 | "once": "^1.3.0", 2348 | "path-is-absolute": "^1.0.0" 2349 | }, 2350 | "engines": { 2351 | "node": "*" 2352 | }, 2353 | "funding": { 2354 | "url": "https://github.com/sponsors/isaacs" 2355 | } 2356 | }, 2357 | "node_modules/rimraf/node_modules/minimatch": { 2358 | "version": "3.1.2", 2359 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2360 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2361 | "dev": true, 2362 | "dependencies": { 2363 | "brace-expansion": "^1.1.7" 2364 | }, 2365 | "engines": { 2366 | "node": "*" 2367 | } 2368 | }, 2369 | "node_modules/rollup": { 2370 | "version": "4.18.0", 2371 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.18.0.tgz", 2372 | "integrity": "sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==", 2373 | "dev": true, 2374 | "dependencies": { 2375 | "@types/estree": "1.0.5" 2376 | }, 2377 | "bin": { 2378 | "rollup": "dist/bin/rollup" 2379 | }, 2380 | "engines": { 2381 | "node": ">=18.0.0", 2382 | "npm": ">=8.0.0" 2383 | }, 2384 | "optionalDependencies": { 2385 | "@rollup/rollup-android-arm-eabi": "4.18.0", 2386 | "@rollup/rollup-android-arm64": "4.18.0", 2387 | "@rollup/rollup-darwin-arm64": "4.18.0", 2388 | "@rollup/rollup-darwin-x64": "4.18.0", 2389 | "@rollup/rollup-linux-arm-gnueabihf": "4.18.0", 2390 | "@rollup/rollup-linux-arm-musleabihf": "4.18.0", 2391 | "@rollup/rollup-linux-arm64-gnu": "4.18.0", 2392 | "@rollup/rollup-linux-arm64-musl": "4.18.0", 2393 | "@rollup/rollup-linux-powerpc64le-gnu": "4.18.0", 2394 | "@rollup/rollup-linux-riscv64-gnu": "4.18.0", 2395 | "@rollup/rollup-linux-s390x-gnu": "4.18.0", 2396 | "@rollup/rollup-linux-x64-gnu": "4.18.0", 2397 | "@rollup/rollup-linux-x64-musl": "4.18.0", 2398 | "@rollup/rollup-win32-arm64-msvc": "4.18.0", 2399 | "@rollup/rollup-win32-ia32-msvc": "4.18.0", 2400 | "@rollup/rollup-win32-x64-msvc": "4.18.0", 2401 | "fsevents": "~2.3.2" 2402 | } 2403 | }, 2404 | "node_modules/run-parallel": { 2405 | "version": "1.2.0", 2406 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 2407 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 2408 | "dev": true, 2409 | "funding": [ 2410 | { 2411 | "type": "github", 2412 | "url": "https://github.com/sponsors/feross" 2413 | }, 2414 | { 2415 | "type": "patreon", 2416 | "url": "https://www.patreon.com/feross" 2417 | }, 2418 | { 2419 | "type": "consulting", 2420 | "url": "https://feross.org/support" 2421 | } 2422 | ], 2423 | "dependencies": { 2424 | "queue-microtask": "^1.2.2" 2425 | } 2426 | }, 2427 | "node_modules/sade": { 2428 | "version": "1.8.1", 2429 | "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", 2430 | "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", 2431 | "dev": true, 2432 | "dependencies": { 2433 | "mri": "^1.1.0" 2434 | }, 2435 | "engines": { 2436 | "node": ">=6" 2437 | } 2438 | }, 2439 | "node_modules/safe-buffer": { 2440 | "version": "5.2.1", 2441 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 2442 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", 2443 | "dev": true, 2444 | "funding": [ 2445 | { 2446 | "type": "github", 2447 | "url": "https://github.com/sponsors/feross" 2448 | }, 2449 | { 2450 | "type": "patreon", 2451 | "url": "https://www.patreon.com/feross" 2452 | }, 2453 | { 2454 | "type": "consulting", 2455 | "url": "https://feross.org/support" 2456 | } 2457 | ] 2458 | }, 2459 | "node_modules/sander": { 2460 | "version": "0.5.1", 2461 | "resolved": "https://registry.npmjs.org/sander/-/sander-0.5.1.tgz", 2462 | "integrity": "sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==", 2463 | "dev": true, 2464 | "dependencies": { 2465 | "es6-promise": "^3.1.2", 2466 | "graceful-fs": "^4.1.3", 2467 | "mkdirp": "^0.5.1", 2468 | "rimraf": "^2.5.2" 2469 | } 2470 | }, 2471 | "node_modules/sass": { 2472 | "version": "1.69.5", 2473 | "resolved": "https://registry.npmjs.org/sass/-/sass-1.69.5.tgz", 2474 | "integrity": "sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==", 2475 | "peer": true, 2476 | "dependencies": { 2477 | "chokidar": ">=3.0.0 <4.0.0", 2478 | "immutable": "^4.0.0", 2479 | "source-map-js": ">=0.6.2 <2.0.0" 2480 | }, 2481 | "bin": { 2482 | "sass": "sass.js" 2483 | }, 2484 | "engines": { 2485 | "node": ">=14.0.0" 2486 | } 2487 | }, 2488 | "node_modules/semver": { 2489 | "version": "7.5.4", 2490 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", 2491 | "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", 2492 | "dev": true, 2493 | "dependencies": { 2494 | "lru-cache": "^6.0.0" 2495 | }, 2496 | "bin": { 2497 | "semver": "bin/semver.js" 2498 | }, 2499 | "engines": { 2500 | "node": ">=10" 2501 | } 2502 | }, 2503 | "node_modules/server-only": { 2504 | "version": "0.0.1", 2505 | "resolved": "https://registry.npmjs.org/server-only/-/server-only-0.0.1.tgz", 2506 | "integrity": "sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==", 2507 | "peer": true 2508 | }, 2509 | "node_modules/set-blocking": { 2510 | "version": "2.0.0", 2511 | "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", 2512 | "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", 2513 | "dev": true 2514 | }, 2515 | "node_modules/set-cookie-parser": { 2516 | "version": "2.6.0", 2517 | "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.6.0.tgz", 2518 | "integrity": "sha512-RVnVQxTXuerk653XfuliOxBP81Sf0+qfQE73LIYKcyMYHG94AuH0kgrQpRDuTZnSmjpysHmzxJXKNfa6PjFhyQ==", 2519 | "dev": true 2520 | }, 2521 | "node_modules/signal-exit": { 2522 | "version": "3.0.7", 2523 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 2524 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", 2525 | "dev": true 2526 | }, 2527 | "node_modules/sirv": { 2528 | "version": "2.0.4", 2529 | "resolved": "https://registry.npmjs.org/sirv/-/sirv-2.0.4.tgz", 2530 | "integrity": "sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==", 2531 | "dev": true, 2532 | "dependencies": { 2533 | "@polka/url": "^1.0.0-next.24", 2534 | "mrmime": "^2.0.0", 2535 | "totalist": "^3.0.0" 2536 | }, 2537 | "engines": { 2538 | "node": ">= 10" 2539 | } 2540 | }, 2541 | "node_modules/sorcery": { 2542 | "version": "0.11.0", 2543 | "resolved": "https://registry.npmjs.org/sorcery/-/sorcery-0.11.0.tgz", 2544 | "integrity": "sha512-J69LQ22xrQB1cIFJhPfgtLuI6BpWRiWu1Y3vSsIwK/eAScqJxd/+CJlUuHQRdX2C9NGFamq+KqNywGgaThwfHw==", 2545 | "dev": true, 2546 | "dependencies": { 2547 | "@jridgewell/sourcemap-codec": "^1.4.14", 2548 | "buffer-crc32": "^0.2.5", 2549 | "minimist": "^1.2.0", 2550 | "sander": "^0.5.0" 2551 | }, 2552 | "bin": { 2553 | "sorcery": "bin/sorcery" 2554 | } 2555 | }, 2556 | "node_modules/source-map-js": { 2557 | "version": "1.2.0", 2558 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", 2559 | "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", 2560 | "engines": { 2561 | "node": ">=0.10.0" 2562 | } 2563 | }, 2564 | "node_modules/string_decoder": { 2565 | "version": "1.3.0", 2566 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", 2567 | "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", 2568 | "dev": true, 2569 | "dependencies": { 2570 | "safe-buffer": "~5.2.0" 2571 | } 2572 | }, 2573 | "node_modules/string-width": { 2574 | "version": "4.2.3", 2575 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 2576 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 2577 | "dev": true, 2578 | "dependencies": { 2579 | "emoji-regex": "^8.0.0", 2580 | "is-fullwidth-code-point": "^3.0.0", 2581 | "strip-ansi": "^6.0.1" 2582 | }, 2583 | "engines": { 2584 | "node": ">=8" 2585 | } 2586 | }, 2587 | "node_modules/strip-ansi": { 2588 | "version": "6.0.1", 2589 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2590 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2591 | "dev": true, 2592 | "dependencies": { 2593 | "ansi-regex": "^5.0.1" 2594 | }, 2595 | "engines": { 2596 | "node": ">=8" 2597 | } 2598 | }, 2599 | "node_modules/strip-indent": { 2600 | "version": "3.0.0", 2601 | "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", 2602 | "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", 2603 | "dev": true, 2604 | "dependencies": { 2605 | "min-indent": "^1.0.0" 2606 | }, 2607 | "engines": { 2608 | "node": ">=8" 2609 | } 2610 | }, 2611 | "node_modules/svelte": { 2612 | "version": "4.2.9", 2613 | "resolved": "https://registry.npmjs.org/svelte/-/svelte-4.2.9.tgz", 2614 | "integrity": "sha512-hsoB/WZGEPFXeRRLPhPrbRz67PhP6sqYgvwcAs+gWdSQSvNDw+/lTeUJSWe5h2xC97Fz/8QxAOqItwBzNJPU8w==", 2615 | "dev": true, 2616 | "dependencies": { 2617 | "@ampproject/remapping": "^2.2.1", 2618 | "@jridgewell/sourcemap-codec": "^1.4.15", 2619 | "@jridgewell/trace-mapping": "^0.3.18", 2620 | "@types/estree": "^1.0.1", 2621 | "acorn": "^8.9.0", 2622 | "aria-query": "^5.3.0", 2623 | "axobject-query": "^4.0.0", 2624 | "code-red": "^1.0.3", 2625 | "css-tree": "^2.3.1", 2626 | "estree-walker": "^3.0.3", 2627 | "is-reference": "^3.0.1", 2628 | "locate-character": "^3.0.0", 2629 | "magic-string": "^0.30.4", 2630 | "periscopic": "^3.1.0" 2631 | }, 2632 | "engines": { 2633 | "node": ">=16" 2634 | } 2635 | }, 2636 | "node_modules/svelte-check": { 2637 | "version": "3.6.3", 2638 | "resolved": "https://registry.npmjs.org/svelte-check/-/svelte-check-3.6.3.tgz", 2639 | "integrity": "sha512-Q2nGnoysxUnB9KjnjpQLZwdjK62DHyW6nuH/gm2qteFnDk0lCehe/6z8TsIvYeKjC6luKaWxiNGyOcWiLLPSwA==", 2640 | "dev": true, 2641 | "dependencies": { 2642 | "@jridgewell/trace-mapping": "^0.3.17", 2643 | "chokidar": "^3.4.1", 2644 | "fast-glob": "^3.2.7", 2645 | "import-fresh": "^3.2.1", 2646 | "picocolors": "^1.0.0", 2647 | "sade": "^1.7.4", 2648 | "svelte-preprocess": "^5.1.0", 2649 | "typescript": "^5.0.3" 2650 | }, 2651 | "bin": { 2652 | "svelte-check": "bin/svelte-check" 2653 | }, 2654 | "peerDependencies": { 2655 | "svelte": "^3.55.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0" 2656 | } 2657 | }, 2658 | "node_modules/svelte-hmr": { 2659 | "version": "0.15.3", 2660 | "resolved": "https://registry.npmjs.org/svelte-hmr/-/svelte-hmr-0.15.3.tgz", 2661 | "integrity": "sha512-41snaPswvSf8TJUhlkoJBekRrABDXDMdpNpT2tfHIv4JuhgvHqLMhEPGtaQn0BmbNSTkuz2Ed20DF2eHw0SmBQ==", 2662 | "dev": true, 2663 | "engines": { 2664 | "node": "^12.20 || ^14.13.1 || >= 16" 2665 | }, 2666 | "peerDependencies": { 2667 | "svelte": "^3.19.0 || ^4.0.0" 2668 | } 2669 | }, 2670 | "node_modules/svelte-preprocess": { 2671 | "version": "5.1.1", 2672 | "resolved": "https://registry.npmjs.org/svelte-preprocess/-/svelte-preprocess-5.1.1.tgz", 2673 | "integrity": "sha512-p/Dp4hmrBW5mrCCq29lEMFpIJT2FZsRlouxEc5qpbOmXRbaFs7clLs8oKPwD3xCFyZfv1bIhvOzpQkhMEVQdMw==", 2674 | "dev": true, 2675 | "hasInstallScript": true, 2676 | "dependencies": { 2677 | "@types/pug": "^2.0.6", 2678 | "detect-indent": "^6.1.0", 2679 | "magic-string": "^0.27.0", 2680 | "sorcery": "^0.11.0", 2681 | "strip-indent": "^3.0.0" 2682 | }, 2683 | "engines": { 2684 | "node": ">= 14.10.0" 2685 | }, 2686 | "peerDependencies": { 2687 | "@babel/core": "^7.10.2", 2688 | "coffeescript": "^2.5.1", 2689 | "less": "^3.11.3 || ^4.0.0", 2690 | "postcss": "^7 || ^8", 2691 | "postcss-load-config": "^2.1.0 || ^3.0.0 || ^4.0.0", 2692 | "pug": "^3.0.0", 2693 | "sass": "^1.26.8", 2694 | "stylus": "^0.55.0", 2695 | "sugarss": "^2.0.0 || ^3.0.0 || ^4.0.0", 2696 | "svelte": "^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0", 2697 | "typescript": ">=3.9.5 || ^4.0.0 || ^5.0.0" 2698 | }, 2699 | "peerDependenciesMeta": { 2700 | "@babel/core": { 2701 | "optional": true 2702 | }, 2703 | "coffeescript": { 2704 | "optional": true 2705 | }, 2706 | "less": { 2707 | "optional": true 2708 | }, 2709 | "postcss": { 2710 | "optional": true 2711 | }, 2712 | "postcss-load-config": { 2713 | "optional": true 2714 | }, 2715 | "pug": { 2716 | "optional": true 2717 | }, 2718 | "sass": { 2719 | "optional": true 2720 | }, 2721 | "stylus": { 2722 | "optional": true 2723 | }, 2724 | "sugarss": { 2725 | "optional": true 2726 | }, 2727 | "typescript": { 2728 | "optional": true 2729 | } 2730 | } 2731 | }, 2732 | "node_modules/svelte-preprocess/node_modules/magic-string": { 2733 | "version": "0.27.0", 2734 | "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz", 2735 | "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==", 2736 | "dev": true, 2737 | "dependencies": { 2738 | "@jridgewell/sourcemap-codec": "^1.4.13" 2739 | }, 2740 | "engines": { 2741 | "node": ">=12" 2742 | } 2743 | }, 2744 | "node_modules/svelte2tsx": { 2745 | "version": "0.7.0", 2746 | "resolved": "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.7.0.tgz", 2747 | "integrity": "sha512-qAelcydnmuiDvD1HsrWi23RWx24RZTKRv6n4JaGC/pkoJfbLkJPQT2wa1qN0ZyfKTNLSyoj2FW9z62l/AUzUNA==", 2748 | "dev": true, 2749 | "dependencies": { 2750 | "dedent-js": "^1.0.1", 2751 | "pascal-case": "^3.1.1" 2752 | }, 2753 | "peerDependencies": { 2754 | "svelte": "^3.55 || ^4.0.0-next.0 || ^4.0 || ^5.0.0-next.0", 2755 | "typescript": "^4.9.4 || ^5.0.0" 2756 | } 2757 | }, 2758 | "node_modules/tar": { 2759 | "version": "6.2.1", 2760 | "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", 2761 | "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", 2762 | "dev": true, 2763 | "dependencies": { 2764 | "chownr": "^2.0.0", 2765 | "fs-minipass": "^2.0.0", 2766 | "minipass": "^5.0.0", 2767 | "minizlib": "^2.1.1", 2768 | "mkdirp": "^1.0.3", 2769 | "yallist": "^4.0.0" 2770 | }, 2771 | "engines": { 2772 | "node": ">=10" 2773 | } 2774 | }, 2775 | "node_modules/tar/node_modules/mkdirp": { 2776 | "version": "1.0.4", 2777 | "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", 2778 | "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", 2779 | "dev": true, 2780 | "bin": { 2781 | "mkdirp": "bin/cmd.js" 2782 | }, 2783 | "engines": { 2784 | "node": ">=10" 2785 | } 2786 | }, 2787 | "node_modules/tiny-glob": { 2788 | "version": "0.2.9", 2789 | "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", 2790 | "integrity": "sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==", 2791 | "dev": true, 2792 | "dependencies": { 2793 | "globalyzer": "0.1.0", 2794 | "globrex": "^0.1.2" 2795 | } 2796 | }, 2797 | "node_modules/to-regex-range": { 2798 | "version": "5.0.1", 2799 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 2800 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 2801 | "dependencies": { 2802 | "is-number": "^7.0.0" 2803 | }, 2804 | "engines": { 2805 | "node": ">=8.0" 2806 | } 2807 | }, 2808 | "node_modules/totalist": { 2809 | "version": "3.0.1", 2810 | "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", 2811 | "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", 2812 | "dev": true, 2813 | "engines": { 2814 | "node": ">=6" 2815 | } 2816 | }, 2817 | "node_modules/tr46": { 2818 | "version": "0.0.3", 2819 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", 2820 | "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", 2821 | "dev": true 2822 | }, 2823 | "node_modules/tslib": { 2824 | "version": "2.6.2", 2825 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", 2826 | "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", 2827 | "dev": true 2828 | }, 2829 | "node_modules/typescript": { 2830 | "version": "5.3.3", 2831 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", 2832 | "integrity": "sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==", 2833 | "dev": true, 2834 | "bin": { 2835 | "tsc": "bin/tsc", 2836 | "tsserver": "bin/tsserver" 2837 | }, 2838 | "engines": { 2839 | "node": ">=14.17" 2840 | } 2841 | }, 2842 | "node_modules/util-deprecate": { 2843 | "version": "1.0.2", 2844 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 2845 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", 2846 | "dev": true 2847 | }, 2848 | "node_modules/vite": { 2849 | "version": "5.3.1", 2850 | "resolved": "https://registry.npmjs.org/vite/-/vite-5.3.1.tgz", 2851 | "integrity": "sha512-XBmSKRLXLxiaPYamLv3/hnP/KXDai1NDexN0FpkTaZXTfycHvkRHoenpgl/fvuK/kPbB6xAgoyiryAhQNxYmAQ==", 2852 | "dev": true, 2853 | "dependencies": { 2854 | "esbuild": "^0.21.3", 2855 | "postcss": "^8.4.38", 2856 | "rollup": "^4.13.0" 2857 | }, 2858 | "bin": { 2859 | "vite": "bin/vite.js" 2860 | }, 2861 | "engines": { 2862 | "node": "^18.0.0 || >=20.0.0" 2863 | }, 2864 | "funding": { 2865 | "url": "https://github.com/vitejs/vite?sponsor=1" 2866 | }, 2867 | "optionalDependencies": { 2868 | "fsevents": "~2.3.3" 2869 | }, 2870 | "peerDependencies": { 2871 | "@types/node": "^18.0.0 || >=20.0.0", 2872 | "less": "*", 2873 | "lightningcss": "^1.21.0", 2874 | "sass": "*", 2875 | "stylus": "*", 2876 | "sugarss": "*", 2877 | "terser": "^5.4.0" 2878 | }, 2879 | "peerDependenciesMeta": { 2880 | "@types/node": { 2881 | "optional": true 2882 | }, 2883 | "less": { 2884 | "optional": true 2885 | }, 2886 | "lightningcss": { 2887 | "optional": true 2888 | }, 2889 | "sass": { 2890 | "optional": true 2891 | }, 2892 | "stylus": { 2893 | "optional": true 2894 | }, 2895 | "sugarss": { 2896 | "optional": true 2897 | }, 2898 | "terser": { 2899 | "optional": true 2900 | } 2901 | } 2902 | }, 2903 | "node_modules/vite/node_modules/@esbuild/aix-ppc64": { 2904 | "version": "0.21.5", 2905 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", 2906 | "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", 2907 | "cpu": [ 2908 | "ppc64" 2909 | ], 2910 | "dev": true, 2911 | "optional": true, 2912 | "os": [ 2913 | "aix" 2914 | ], 2915 | "engines": { 2916 | "node": ">=12" 2917 | } 2918 | }, 2919 | "node_modules/vite/node_modules/@esbuild/android-arm": { 2920 | "version": "0.21.5", 2921 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", 2922 | "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", 2923 | "cpu": [ 2924 | "arm" 2925 | ], 2926 | "dev": true, 2927 | "optional": true, 2928 | "os": [ 2929 | "android" 2930 | ], 2931 | "engines": { 2932 | "node": ">=12" 2933 | } 2934 | }, 2935 | "node_modules/vite/node_modules/@esbuild/android-arm64": { 2936 | "version": "0.21.5", 2937 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", 2938 | "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", 2939 | "cpu": [ 2940 | "arm64" 2941 | ], 2942 | "dev": true, 2943 | "optional": true, 2944 | "os": [ 2945 | "android" 2946 | ], 2947 | "engines": { 2948 | "node": ">=12" 2949 | } 2950 | }, 2951 | "node_modules/vite/node_modules/@esbuild/android-x64": { 2952 | "version": "0.21.5", 2953 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", 2954 | "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", 2955 | "cpu": [ 2956 | "x64" 2957 | ], 2958 | "dev": true, 2959 | "optional": true, 2960 | "os": [ 2961 | "android" 2962 | ], 2963 | "engines": { 2964 | "node": ">=12" 2965 | } 2966 | }, 2967 | "node_modules/vite/node_modules/@esbuild/darwin-arm64": { 2968 | "version": "0.21.5", 2969 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", 2970 | "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", 2971 | "cpu": [ 2972 | "arm64" 2973 | ], 2974 | "dev": true, 2975 | "optional": true, 2976 | "os": [ 2977 | "darwin" 2978 | ], 2979 | "engines": { 2980 | "node": ">=12" 2981 | } 2982 | }, 2983 | "node_modules/vite/node_modules/@esbuild/darwin-x64": { 2984 | "version": "0.21.5", 2985 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", 2986 | "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", 2987 | "cpu": [ 2988 | "x64" 2989 | ], 2990 | "dev": true, 2991 | "optional": true, 2992 | "os": [ 2993 | "darwin" 2994 | ], 2995 | "engines": { 2996 | "node": ">=12" 2997 | } 2998 | }, 2999 | "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { 3000 | "version": "0.21.5", 3001 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", 3002 | "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", 3003 | "cpu": [ 3004 | "arm64" 3005 | ], 3006 | "dev": true, 3007 | "optional": true, 3008 | "os": [ 3009 | "freebsd" 3010 | ], 3011 | "engines": { 3012 | "node": ">=12" 3013 | } 3014 | }, 3015 | "node_modules/vite/node_modules/@esbuild/freebsd-x64": { 3016 | "version": "0.21.5", 3017 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", 3018 | "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", 3019 | "cpu": [ 3020 | "x64" 3021 | ], 3022 | "dev": true, 3023 | "optional": true, 3024 | "os": [ 3025 | "freebsd" 3026 | ], 3027 | "engines": { 3028 | "node": ">=12" 3029 | } 3030 | }, 3031 | "node_modules/vite/node_modules/@esbuild/linux-arm": { 3032 | "version": "0.21.5", 3033 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", 3034 | "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", 3035 | "cpu": [ 3036 | "arm" 3037 | ], 3038 | "dev": true, 3039 | "optional": true, 3040 | "os": [ 3041 | "linux" 3042 | ], 3043 | "engines": { 3044 | "node": ">=12" 3045 | } 3046 | }, 3047 | "node_modules/vite/node_modules/@esbuild/linux-arm64": { 3048 | "version": "0.21.5", 3049 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", 3050 | "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", 3051 | "cpu": [ 3052 | "arm64" 3053 | ], 3054 | "dev": true, 3055 | "optional": true, 3056 | "os": [ 3057 | "linux" 3058 | ], 3059 | "engines": { 3060 | "node": ">=12" 3061 | } 3062 | }, 3063 | "node_modules/vite/node_modules/@esbuild/linux-ia32": { 3064 | "version": "0.21.5", 3065 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", 3066 | "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", 3067 | "cpu": [ 3068 | "ia32" 3069 | ], 3070 | "dev": true, 3071 | "optional": true, 3072 | "os": [ 3073 | "linux" 3074 | ], 3075 | "engines": { 3076 | "node": ">=12" 3077 | } 3078 | }, 3079 | "node_modules/vite/node_modules/@esbuild/linux-loong64": { 3080 | "version": "0.21.5", 3081 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", 3082 | "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", 3083 | "cpu": [ 3084 | "loong64" 3085 | ], 3086 | "dev": true, 3087 | "optional": true, 3088 | "os": [ 3089 | "linux" 3090 | ], 3091 | "engines": { 3092 | "node": ">=12" 3093 | } 3094 | }, 3095 | "node_modules/vite/node_modules/@esbuild/linux-mips64el": { 3096 | "version": "0.21.5", 3097 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", 3098 | "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", 3099 | "cpu": [ 3100 | "mips64el" 3101 | ], 3102 | "dev": true, 3103 | "optional": true, 3104 | "os": [ 3105 | "linux" 3106 | ], 3107 | "engines": { 3108 | "node": ">=12" 3109 | } 3110 | }, 3111 | "node_modules/vite/node_modules/@esbuild/linux-ppc64": { 3112 | "version": "0.21.5", 3113 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", 3114 | "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", 3115 | "cpu": [ 3116 | "ppc64" 3117 | ], 3118 | "dev": true, 3119 | "optional": true, 3120 | "os": [ 3121 | "linux" 3122 | ], 3123 | "engines": { 3124 | "node": ">=12" 3125 | } 3126 | }, 3127 | "node_modules/vite/node_modules/@esbuild/linux-riscv64": { 3128 | "version": "0.21.5", 3129 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", 3130 | "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", 3131 | "cpu": [ 3132 | "riscv64" 3133 | ], 3134 | "dev": true, 3135 | "optional": true, 3136 | "os": [ 3137 | "linux" 3138 | ], 3139 | "engines": { 3140 | "node": ">=12" 3141 | } 3142 | }, 3143 | "node_modules/vite/node_modules/@esbuild/linux-s390x": { 3144 | "version": "0.21.5", 3145 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", 3146 | "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", 3147 | "cpu": [ 3148 | "s390x" 3149 | ], 3150 | "dev": true, 3151 | "optional": true, 3152 | "os": [ 3153 | "linux" 3154 | ], 3155 | "engines": { 3156 | "node": ">=12" 3157 | } 3158 | }, 3159 | "node_modules/vite/node_modules/@esbuild/linux-x64": { 3160 | "version": "0.21.5", 3161 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", 3162 | "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", 3163 | "cpu": [ 3164 | "x64" 3165 | ], 3166 | "dev": true, 3167 | "optional": true, 3168 | "os": [ 3169 | "linux" 3170 | ], 3171 | "engines": { 3172 | "node": ">=12" 3173 | } 3174 | }, 3175 | "node_modules/vite/node_modules/@esbuild/netbsd-x64": { 3176 | "version": "0.21.5", 3177 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", 3178 | "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", 3179 | "cpu": [ 3180 | "x64" 3181 | ], 3182 | "dev": true, 3183 | "optional": true, 3184 | "os": [ 3185 | "netbsd" 3186 | ], 3187 | "engines": { 3188 | "node": ">=12" 3189 | } 3190 | }, 3191 | "node_modules/vite/node_modules/@esbuild/openbsd-x64": { 3192 | "version": "0.21.5", 3193 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", 3194 | "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", 3195 | "cpu": [ 3196 | "x64" 3197 | ], 3198 | "dev": true, 3199 | "optional": true, 3200 | "os": [ 3201 | "openbsd" 3202 | ], 3203 | "engines": { 3204 | "node": ">=12" 3205 | } 3206 | }, 3207 | "node_modules/vite/node_modules/@esbuild/sunos-x64": { 3208 | "version": "0.21.5", 3209 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", 3210 | "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", 3211 | "cpu": [ 3212 | "x64" 3213 | ], 3214 | "dev": true, 3215 | "optional": true, 3216 | "os": [ 3217 | "sunos" 3218 | ], 3219 | "engines": { 3220 | "node": ">=12" 3221 | } 3222 | }, 3223 | "node_modules/vite/node_modules/@esbuild/win32-arm64": { 3224 | "version": "0.21.5", 3225 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", 3226 | "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", 3227 | "cpu": [ 3228 | "arm64" 3229 | ], 3230 | "dev": true, 3231 | "optional": true, 3232 | "os": [ 3233 | "win32" 3234 | ], 3235 | "engines": { 3236 | "node": ">=12" 3237 | } 3238 | }, 3239 | "node_modules/vite/node_modules/@esbuild/win32-ia32": { 3240 | "version": "0.21.5", 3241 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", 3242 | "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", 3243 | "cpu": [ 3244 | "ia32" 3245 | ], 3246 | "dev": true, 3247 | "optional": true, 3248 | "os": [ 3249 | "win32" 3250 | ], 3251 | "engines": { 3252 | "node": ">=12" 3253 | } 3254 | }, 3255 | "node_modules/vite/node_modules/@esbuild/win32-x64": { 3256 | "version": "0.21.5", 3257 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", 3258 | "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", 3259 | "cpu": [ 3260 | "x64" 3261 | ], 3262 | "dev": true, 3263 | "optional": true, 3264 | "os": [ 3265 | "win32" 3266 | ], 3267 | "engines": { 3268 | "node": ">=12" 3269 | } 3270 | }, 3271 | "node_modules/vite/node_modules/esbuild": { 3272 | "version": "0.21.5", 3273 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", 3274 | "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", 3275 | "dev": true, 3276 | "hasInstallScript": true, 3277 | "bin": { 3278 | "esbuild": "bin/esbuild" 3279 | }, 3280 | "engines": { 3281 | "node": ">=12" 3282 | }, 3283 | "optionalDependencies": { 3284 | "@esbuild/aix-ppc64": "0.21.5", 3285 | "@esbuild/android-arm": "0.21.5", 3286 | "@esbuild/android-arm64": "0.21.5", 3287 | "@esbuild/android-x64": "0.21.5", 3288 | "@esbuild/darwin-arm64": "0.21.5", 3289 | "@esbuild/darwin-x64": "0.21.5", 3290 | "@esbuild/freebsd-arm64": "0.21.5", 3291 | "@esbuild/freebsd-x64": "0.21.5", 3292 | "@esbuild/linux-arm": "0.21.5", 3293 | "@esbuild/linux-arm64": "0.21.5", 3294 | "@esbuild/linux-ia32": "0.21.5", 3295 | "@esbuild/linux-loong64": "0.21.5", 3296 | "@esbuild/linux-mips64el": "0.21.5", 3297 | "@esbuild/linux-ppc64": "0.21.5", 3298 | "@esbuild/linux-riscv64": "0.21.5", 3299 | "@esbuild/linux-s390x": "0.21.5", 3300 | "@esbuild/linux-x64": "0.21.5", 3301 | "@esbuild/netbsd-x64": "0.21.5", 3302 | "@esbuild/openbsd-x64": "0.21.5", 3303 | "@esbuild/sunos-x64": "0.21.5", 3304 | "@esbuild/win32-arm64": "0.21.5", 3305 | "@esbuild/win32-ia32": "0.21.5", 3306 | "@esbuild/win32-x64": "0.21.5" 3307 | } 3308 | }, 3309 | "node_modules/vitefu": { 3310 | "version": "0.2.5", 3311 | "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-0.2.5.tgz", 3312 | "integrity": "sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==", 3313 | "dev": true, 3314 | "peerDependencies": { 3315 | "vite": "^3.0.0 || ^4.0.0 || ^5.0.0" 3316 | }, 3317 | "peerDependenciesMeta": { 3318 | "vite": { 3319 | "optional": true 3320 | } 3321 | } 3322 | }, 3323 | "node_modules/webidl-conversions": { 3324 | "version": "3.0.1", 3325 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", 3326 | "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", 3327 | "dev": true 3328 | }, 3329 | "node_modules/whatwg-url": { 3330 | "version": "5.0.0", 3331 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", 3332 | "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", 3333 | "dev": true, 3334 | "dependencies": { 3335 | "tr46": "~0.0.3", 3336 | "webidl-conversions": "^3.0.0" 3337 | } 3338 | }, 3339 | "node_modules/wide-align": { 3340 | "version": "1.1.5", 3341 | "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", 3342 | "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", 3343 | "dev": true, 3344 | "dependencies": { 3345 | "string-width": "^1.0.2 || 2 || 3 || 4" 3346 | } 3347 | }, 3348 | "node_modules/wrappy": { 3349 | "version": "1.0.2", 3350 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 3351 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 3352 | "dev": true 3353 | }, 3354 | "node_modules/yallist": { 3355 | "version": "4.0.0", 3356 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 3357 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 3358 | "dev": true 3359 | } 3360 | } 3361 | } 3362 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "motion-swiper", 3 | "version": "1.0.6", 4 | "license": "GPL-3.0-only", 5 | "description": "Draggable slider with a fluid bending motion effect but no Threejs as usual", 6 | "homepage": "https://motion-swiper.vercel.app/", 7 | "author": "Joost Ramke (https://joostramke.com/)", 8 | "repository": { 9 | "type": "git", 10 | "url": "https://github.com/jramke/motion-swiper" 11 | }, 12 | "keywords": [ 13 | "slider", 14 | "gsap", 15 | "draggable", 16 | "swiper", 17 | "motion" 18 | ], 19 | "scripts": { 20 | "dev": "vite dev", 21 | "build": "vite build && npm run package", 22 | "preview": "vite preview", 23 | "package": "svelte-kit sync && svelte-package && publint && sass --no-source-map --style=compressed src/lib/motionSwiper.scss dist/motionSwiper.css", 24 | "prepublishOnly": "npm run package", 25 | "check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json", 26 | "check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch" 27 | }, 28 | "exports": { 29 | ".": { 30 | "types": "./dist/index.d.ts", 31 | "svelte": "./dist/index.js", 32 | "default": "./dist/index.js" 33 | }, 34 | "./css": "./dist/motionSwiper.css", 35 | "./scss": "./dist/motionSwiper.scss" 36 | }, 37 | "files": [ 38 | "dist", 39 | "!dist/**/*.test.*", 40 | "!dist/**/*.spec.*" 41 | ], 42 | "peerDependencies": { 43 | "@vercel/analytics": "^1.3.1", 44 | "bootstrap": "^5.3.2", 45 | "lenis": "^1.1.3", 46 | "sass": "^1.69.5", 47 | "svelte": "^4.0.0" 48 | }, 49 | "devDependencies": { 50 | "@sveltejs/adapter-auto": "^3.1.1", 51 | "@sveltejs/adapter-vercel": "^5.1.0", 52 | "@sveltejs/kit": "^2.4.1", 53 | "@sveltejs/package": "^2.2.6", 54 | "@sveltejs/vite-plugin-svelte": "^3.0.1", 55 | "publint": "^0.2.7", 56 | "svelte": "^4.2.9", 57 | "svelte-check": "^3.6.3", 58 | "tslib": "^2.6.2", 59 | "typescript": "^5.3.3", 60 | "vite": "^5.0.12" 61 | }, 62 | "types": "./dist/index.d.ts", 63 | "type": "module", 64 | "dependencies": { 65 | "gsap": "^3.12.x" 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- 1 | // See https://kit.svelte.dev/docs/types#app 2 | // for information about these interfaces 3 | declare global { 4 | namespace App { 5 | // interface Error {} 6 | // interface Locals {} 7 | // interface PageData {} 8 | // interface Platform {} 9 | } 10 | } 11 | 12 | export {}; 13 | -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | %sveltekit.head% 8 | 9 | 10 |
%sveltekit.body%
11 | 12 | 13 | -------------------------------------------------------------------------------- /src/lib/index.js: -------------------------------------------------------------------------------- 1 | import "./motionSwiper.scss"; 2 | import MotionSwiper from "./motionSwiper.js"; 3 | 4 | export default MotionSwiper; -------------------------------------------------------------------------------- /src/lib/motionSwiper.js: -------------------------------------------------------------------------------- 1 | import gsap from "gsap"; 2 | import { ScrollTrigger } from "gsap/dist/ScrollTrigger"; 3 | import { lerp, clamp } from "./utils.js"; 4 | 5 | export default class MotionSwiper { 6 | constructor(el, options = {}) { 7 | if (typeof(gsap) === "undefined") { 8 | console.warn("GSAP is needed for Motion Swiper to work."); 9 | return 10 | } 11 | this.swiper = typeof (el) === 'string' ? document.querySelector(el) : el; 12 | this.wrapper = this.swiper.querySelector('.motion-swiper__wrapper'); 13 | this.items = this.swiper.querySelectorAll('.motion-swiper__slide'); 14 | this.inners = this.swiper.querySelectorAll('.motion-swiper__inner'); 15 | this.swiperWidth = this.swiper.clientWidth; 16 | this.itemWidth = this.items[0].clientWidth; 17 | this.wrapWidth = this.items.length * this.itemWidth; 18 | 19 | this.options = Object.assign({}, { 20 | loop: true, 21 | lerp: 0.1, 22 | speed: 2.5, 23 | centered: true, 24 | teasing: true, 25 | normalizingSpeed: 0.8, 26 | swipeOnClick: true, 27 | }, options); 28 | 29 | this.scrollSpeed = 0; 30 | this.oldScrollY = 0; 31 | this.scrollY = 0; 32 | this.lastTeasedScrollY = 0; 33 | this.teasedScrollY = 0; 34 | this.y = 0; 35 | this.touchStart = 0; 36 | this.touchX = 0; 37 | this.progress = 0; 38 | this.swipedToScrollY = 0; 39 | this.pressed = false; 40 | this.isDragging = false; 41 | this.normalizing = false; 42 | this.paused = false; 43 | this.lastDirection = ''; 44 | this.direction = ''; 45 | this.event = {}; 46 | 47 | if (this.swiper.hasAttribute('motion-swiper-init')) return; 48 | this.maskPath = this.createMaskPath(); 49 | this.animations = this.createMaskAnimations(); 50 | this.bind(); 51 | this.dispose(0); 52 | this.render(); 53 | if (this.options.teasing) { 54 | this.scrollTrigger = null; 55 | this.teasing(); 56 | } 57 | this.swiper.setAttribute('motion-swiper-init', ''); 58 | } 59 | handleTouchStart(e) { 60 | this.touchStart = e.clientX; 61 | this.pressed = true; 62 | this.normalizing = false; 63 | } 64 | handleTouchMove(e) { 65 | if (this.pressed === false) return; 66 | this.isDragging = true; 67 | this.swiper.classList.add('is-dragging'); 68 | this.touchX = e.clientX; 69 | this.scrollY += (this.touchX - this.touchStart) * this.options.speed; 70 | if (!this.options.loop) { 71 | let end = this.options.centered ? this.wrapWidth - this.swiperWidth + this.swiperWidth - this.itemWidth : this.wrapWidth - this.swiperWidth; 72 | if (Math.abs(this.scrollY) >= end) { 73 | this.handleSwipedToEnd(-1 * (end)); 74 | return; 75 | } 76 | if (this.scrollY >= 0) { 77 | this.handleSwipedToEnd(0); 78 | return; 79 | } 80 | } 81 | this.touchStart = this.touchX; 82 | } 83 | handleTouchEnd() { 84 | this.isDragging = false; 85 | this.pressed = false; 86 | this.swiper.classList.remove('is-dragging'); 87 | } 88 | handleSwipedToEnd(pos) { 89 | console.log(pos, 'end'); 90 | this.normalizeMask(); 91 | this.scrollY = pos; 92 | this.touchStart = this.touchX; 93 | } 94 | preventScroll(e){ 95 | e.preventDefault(); 96 | e.stopPropagation(); 97 | return false; 98 | } 99 | bind() { 100 | this.event.pointerdown = (e) => this.handleTouchStart(e); 101 | this.event.pointermove = (e) => this.handleTouchMove(e); 102 | this.event.pointerup = (e) => this.handleTouchEnd(e); 103 | this.event.selectstart = (e) => { 104 | console.log('select'); 105 | e.preventDefault(); 106 | return false; 107 | } 108 | this.event.click = (i) => { 109 | this.swipeTo(i); 110 | }; 111 | this.event.resize = () => { 112 | this.swiperWidth = this.swiper.clientWidth; 113 | this.itemWidth = this.items[0].clientWidth; 114 | this.wrapWidth = this.items.length * this.itemWidth; 115 | } 116 | 117 | this.swiper.addEventListener('pointerdown', this.event.pointerdown); 118 | this.swiper.addEventListener('pointermove', this.event.pointermove); 119 | this.swiper.addEventListener('pointerup', this.event.pointerup); 120 | this.swiper.addEventListener('selectstart', this.event.selectstart); 121 | this.items.forEach(e => e.addEventListener('selectstart', this.event.selectstart)); 122 | 123 | if (this.options.swipeOnClick) { 124 | this.items.forEach((e, i) => { 125 | e.addEventListener('click', () => this.event.click(i)); 126 | }) 127 | } 128 | 129 | window.addEventListener('resize', this.event.resize); 130 | } 131 | render() { 132 | if (this.paused) return; 133 | requestAnimationFrame(() => this.render()); 134 | 135 | this.y = lerp(this.y, this.scrollY, this.options.lerp); 136 | this.dispose(this.y); 137 | 138 | this.scrollSpeed = clamp(this.y - this.oldScrollY, -100, 100); 139 | this.scrollSpeed = Math.round((this.scrollSpeed + Number.EPSILON) * 100) / 100; 140 | 141 | this.direction = this.scrollSpeed > 0 ? 'right' : 'left'; 142 | if (this.scrollSpeed == 0 && this.lastDirection.length > 0) this.direction = this.lastDirection; 143 | 144 | this.progress = Math.abs(this.scrollSpeed) / 100; 145 | this.progress = Math.round((this.progress + Number.EPSILON) * 100) / 100; 146 | 147 | if (this.normalizing) { 148 | this.progress = lerp(this.progress, 0, this.options.lerp); 149 | this.scrollSpeed = lerp(this.scrollSpeed, 0, this.options.lerp); 150 | } 151 | 152 | if (this.pressed) { 153 | window.addEventListener('wheel', this.preventScroll, { passive: false }); 154 | } else { 155 | window.removeEventListener('wheel', this.preventScroll); 156 | } 157 | 158 | gsap.to(this.animations[this.direction], { 159 | progress: this.progress 160 | }); 161 | 162 | if (!this.isDragging) { 163 | this.normalizeMask(); 164 | } 165 | gsap.to(this.items, { 166 | scale: 1 - Math.min(100, Math.abs(this.scrollSpeed)) * (this.options.lerp * 0.02), 167 | }); 168 | 169 | this.oldScrollY = this.y; 170 | this.lastDirection = this.direction; 171 | } 172 | createMaskPath() { 173 | let maskpath = document.querySelector('#motion-swiper__mask path'); 174 | for (const slide of this.inners) { 175 | slide.style.cssText += 176 | '-webkit-clip-path: url(#motion-swiper__mask);clip-path: url(#motion-swiper__mask);'; 177 | } 178 | if (maskpath) return maskpath; 179 | 180 | document.body.insertAdjacentHTML( 181 | 'beforeend', 182 | ` 183 | 184 | 185 | 186 | 187 | 193 | 194 | 195 | 196 | ` 197 | ); 198 | return document.querySelector('#motion-swiper__mask path'); 199 | } 200 | normalizeMask() { 201 | if (this.normalizing) return; 202 | this.normalizing = true; 203 | gsap.to(this.animations[this.direction], { progress: 0 }); 204 | gsap.to(this.maskPath, { 205 | duration: this.options.normalizingSpeed, 206 | attr: { 207 | d: this.maskPath.dataset.pathNormal, 208 | }, 209 | onComplete: () => { 210 | this.normalizing = false; 211 | }, 212 | }); 213 | } 214 | createMaskAnimations() { 215 | return { 216 | left: gsap.to(this.maskPath, { 217 | paused: true, 218 | attr: { d: this.maskPath.dataset.pathLeft }, 219 | }), 220 | right: gsap.to(this.maskPath, { 221 | paused: true, 222 | attr: { d: this.maskPath.dataset.pathRight }, 223 | }), 224 | }; 225 | } 226 | dispose(scroll) { 227 | gsap.set(this.items, { 228 | x: (i) => { 229 | if (this.options.centered) { 230 | return (i * this.itemWidth + scroll) + (this.swiperWidth / 2) - (this.itemWidth / 2); 231 | } else { 232 | return i * this.itemWidth + scroll; 233 | } 234 | }, 235 | modifiers: { 236 | x: (x, target) => { 237 | const s = gsap.utils.wrap(-this.itemWidth, this.wrapWidth - this.itemWidth, parseInt(x)); 238 | return this.options.loop ? `${s}px` : x; 239 | }, 240 | }, 241 | }); 242 | } 243 | swipeTo(index) { 244 | if (this.isDragging) return; 245 | let end = this.options.centered ? this.wrapWidth - this.swiperWidth + this.swiperWidth - this.itemWidth : this.wrapWidth - this.swiperWidth; 246 | let targetX = this.options.centered ? this.swiperWidth / 2 - this.itemWidth / 2 : 0; 247 | let targetXbefore = gsap.getProperty(this.items[index], 'x'); 248 | this.swipedToScrollY = targetXbefore - targetX; 249 | if (!this.options.loop && Math.abs(this.scrollY - this.swipedToScrollY) >= end) { 250 | this.scrollY = -end; 251 | return 252 | } 253 | this.scrollY -= this.swipedToScrollY; 254 | } 255 | teasing() { 256 | if (typeof(ScrollTrigger) === "undefined") { 257 | console.warn("GSAP ScrollTrigger Plugin is needed for the Motion Swiper teasing option."); 258 | return 259 | } 260 | gsap.registerPlugin(ScrollTrigger); 261 | let tween = null; 262 | tween = gsap.to({teasedScrollY: this.teasedScrollY}, { 263 | teasedScrollY: this.itemWidth, 264 | ease: "none", 265 | onUpdate: () => { 266 | if (tween === null) return; 267 | this.teasedScrollY = tween.targets()[0].teasedScrollY; 268 | this.scrollY -= this.teasedScrollY - this.lastTeasedScrollY; 269 | this.lastTeasedScrollY = this.teasedScrollY; 270 | } 271 | }); 272 | this.scrollTrigger = ScrollTrigger.create({ 273 | animation: tween, 274 | trigger: this.swiper, 275 | scrub: () => typeof(Lenis) === "undefined" ? 1 : true, 276 | }) 277 | } 278 | start() { 279 | this.paused = false; 280 | this.render(); 281 | } 282 | stop() { 283 | this.paused = true; 284 | } 285 | kill() { 286 | this.paused = true; 287 | this.swiper.removeEventListener('pointerdown', this.event.pointerdown); 288 | this.swiper.removeEventListener('pointermove', this.event.pointermove); 289 | this.swiper.removeEventListener('pointerup', this.event.pointerup); 290 | this.swiper.removeEventListener('selectstart', this.event.selectstart); 291 | this.items.forEach((e, i) => e.removeEventListener('click', this.event.click)) 292 | window.removeEventListener('resize', this.event.resize); 293 | this.scrollTrigger?.kill(); 294 | this.swiper.remove(); 295 | this.maskPath.closest('svg').remove(); 296 | } 297 | } 298 | -------------------------------------------------------------------------------- /src/lib/motionSwiper.scss: -------------------------------------------------------------------------------- 1 | .motion-swiper { 2 | --swiper-slide-spacing: 1.5vw; 3 | --swiper-height: 35vh; 4 | --swiper-slide-width: 40vw; 5 | @media (min-width: 1100px) { 6 | --swiper-height: 55vh; 7 | --swiper-slide-width: 28vw; 8 | } 9 | @media (max-width: 767.98px) { 10 | --swiper-height: 25vh; 11 | } 12 | overflow: hidden; 13 | cursor: grab; 14 | width: 100%; 15 | position: relative; 16 | z-index: 1; 17 | height: var(--swiper-height); 18 | &.is-dragging { 19 | cursor: grabbing; 20 | .motion-swiper__inner { 21 | pointer-events: none; 22 | } 23 | } 24 | &__wrapper { 25 | display: flex; 26 | position: absolute; 27 | z-index: 1; 28 | height: 100%; 29 | top: 0; 30 | left: 0; 31 | width: 100%; 32 | } 33 | &__slide { 34 | position: absolute; 35 | z-index: 1; 36 | top: 0; 37 | left: 0; 38 | width: var(--swiper-slide-width); 39 | height: 100%; 40 | padding: 0 calc(var(--swiper-slide-spacing) / 2); 41 | overflow: hidden; 42 | user-select: none; 43 | -webkit-user-drag: none; 44 | } 45 | &__inner { 46 | height: 100%; 47 | display: block; 48 | img { 49 | object-fit: cover; 50 | width: 100%; 51 | height: 100%; 52 | pointer-events: none; 53 | user-select: none; 54 | z-index: -1; 55 | } 56 | } 57 | } -------------------------------------------------------------------------------- /src/lib/utils.js: -------------------------------------------------------------------------------- 1 | export function lerp(v0, v1, t) { 2 | return v0 * (1 - t) + v1 * t; 3 | } 4 | export function clamp(val, min, max) { 5 | return Math.min(Math.max(val, min), max); 6 | } -------------------------------------------------------------------------------- /src/routes/+layout.js: -------------------------------------------------------------------------------- 1 | import { dev } from '$app/environment'; 2 | import { inject } from '@vercel/analytics'; 3 | 4 | inject({ mode: dev ? 'development' : 'production' }); 5 | 6 | export const prerender = true; -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- 1 | 33 | 34 | 75 | 76 | 77 | MotionSwiper 78 | 79 | 80 | 87 |
88 |
89 | Waving hand 90 |

MotionSwiper

91 |

Introducing MotionSwiper – a minimal draggable slider with a seamless and fluid bending motion effect.
92 | It's built with GSAP and does not rely on WebGL/ThreeJs or Canvas, ensuring there are no drawbacks in terms of accessibility or performance.

93 | Inspired by: this pen by Jesper Landberg 94 | and this pen by Fabio Ottaviani 95 |

96 |

97 | Getting started 98 |

99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 | 107 |
108 |
109 |
110 |
111 | 112 |
113 |
114 |
115 |
116 | 117 |
118 |
119 |
120 |
121 | 122 |
123 |
124 |
125 |
126 | 127 |
128 |
129 |
130 |
131 | 132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |

Made by Joost

140 |
141 |
-------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/48a2dac470030c868f396cc09a91079edcab207a/static/favicon.png -------------------------------------------------------------------------------- /static/images/david-becker-cl8lM1W2nHM-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/48a2dac470030c868f396cc09a91079edcab207a/static/images/david-becker-cl8lM1W2nHM-unsplash.jpg -------------------------------------------------------------------------------- /static/images/igor-lypnytskyi-GzX8mr1y7H0-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/48a2dac470030c868f396cc09a91079edcab207a/static/images/igor-lypnytskyi-GzX8mr1y7H0-unsplash.jpg -------------------------------------------------------------------------------- /static/images/josh-withers-EG8_QJ0OgOU-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/48a2dac470030c868f396cc09a91079edcab207a/static/images/josh-withers-EG8_QJ0OgOU-unsplash.jpg -------------------------------------------------------------------------------- /static/images/josh-withers-TCBvy1-xHU8-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/48a2dac470030c868f396cc09a91079edcab207a/static/images/josh-withers-TCBvy1-xHU8-unsplash.jpg -------------------------------------------------------------------------------- /static/images/neom-I7NOiVT6jq0-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/48a2dac470030c868f396cc09a91079edcab207a/static/images/neom-I7NOiVT6jq0-unsplash.jpg -------------------------------------------------------------------------------- /static/images/neom-i60yUhfWeYI-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jramke/motion-swiper/48a2dac470030c868f396cc09a91079edcab207a/static/images/neom-i60yUhfWeYI-unsplash.jpg -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- 1 | import adapter from '@sveltejs/adapter-vercel'; 2 | 3 | /** @type {import('@sveltejs/kit').Config} */ 4 | const config = { 5 | kit: { 6 | // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list. 7 | // If your environment is not supported or you settled on a specific environment, switch out the adapter. 8 | // See https://kit.svelte.dev/docs/adapters for more information about adapters. 9 | adapter: adapter() 10 | } 11 | }; 12 | 13 | export default config; 14 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | import { sveltekit } from '@sveltejs/kit/vite'; 2 | import { defineConfig } from 'vite'; 3 | 4 | export default defineConfig({ 5 | plugins: [sveltekit()] 6 | }); 7 | --------------------------------------------------------------------------------