├── .eslintrc.cjs ├── .gitignore ├── LICENSE ├── README.md ├── _demos ├── bonsai-01.png ├── bonsai-02.png ├── foot-01.png ├── foot-02.png └── foot-03.png ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public └── vite.svg ├── src ├── App.tsx ├── ThreeSceneV1.tsx ├── ThreeSceneV2.tsx ├── assets │ └── react.svg ├── index.css ├── main.tsx ├── shaders │ ├── fragmentV1.glsl │ ├── fragmentV2.glsl │ ├── vertexV1.glsl │ └── vertexV2.glsl └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | env: { browser: true, es2020: true }, 4 | extends: [ 5 | 'eslint:recommended', 6 | 'plugin:@typescript-eslint/recommended', 7 | 'plugin:react-hooks/recommended', 8 | ], 9 | ignorePatterns: ['dist', '.eslintrc.cjs'], 10 | parser: '@typescript-eslint/parser', 11 | plugins: ['react-refresh'], 12 | rules: { 13 | 'react-refresh/only-export-components': [ 14 | 'warn', 15 | { allowConstantExport: true }, 16 | ], 17 | }, 18 | } 19 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | .pnpm-debug.log* 9 | 10 | # Diagnostic reports (https://nodejs.org/api/report.html) 11 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 12 | 13 | # Runtime data 14 | pids 15 | *.pid 16 | *.seed 17 | *.pid.lock 18 | 19 | # Directory for instrumented libs generated by jscoverage/JSCover 20 | lib-cov 21 | 22 | # Coverage directory used by tools like istanbul 23 | coverage 24 | *.lcov 25 | 26 | # nyc test coverage 27 | .nyc_output 28 | 29 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 30 | .grunt 31 | 32 | # Bower dependency directory (https://bower.io/) 33 | bower_components 34 | 35 | # node-waf configuration 36 | .lock-wscript 37 | 38 | # Compiled binary addons (https://nodejs.org/api/addons.html) 39 | build/Release 40 | 41 | # Dependency directories 42 | node_modules/ 43 | jspm_packages/ 44 | 45 | # Snowpack dependency directory (https://snowpack.dev/) 46 | web_modules/ 47 | 48 | # TypeScript cache 49 | *.tsbuildinfo 50 | 51 | # Optional npm cache directory 52 | .npm 53 | 54 | # Optional eslint cache 55 | .eslintcache 56 | 57 | # Optional stylelint cache 58 | .stylelintcache 59 | 60 | # Microbundle cache 61 | .rpt2_cache/ 62 | .rts2_cache_cjs/ 63 | .rts2_cache_es/ 64 | .rts2_cache_umd/ 65 | 66 | # Optional REPL history 67 | .node_repl_history 68 | 69 | # Output of 'npm pack' 70 | *.tgz 71 | 72 | # Yarn Integrity file 73 | .yarn-integrity 74 | 75 | # dotenv environment variable files 76 | .env 77 | .env.development.local 78 | .env.test.local 79 | .env.production.local 80 | .env.local 81 | 82 | # parcel-bundler cache (https://parceljs.org/) 83 | .cache 84 | .parcel-cache 85 | 86 | # Next.js build output 87 | .next 88 | out 89 | 90 | # Nuxt.js build / generate output 91 | .nuxt 92 | dist 93 | 94 | # Gatsby files 95 | .cache/ 96 | # Comment in the public line in if your project uses Gatsby and not Next.js 97 | # https://nextjs.org/blog/next-9-1#public-directory-support 98 | # public 99 | 100 | # vuepress build output 101 | .vuepress/dist 102 | 103 | # vuepress v2.x temp and cache directory 104 | .temp 105 | .cache 106 | 107 | # Docusaurus cache and generated files 108 | .docusaurus 109 | 110 | # Serverless directories 111 | .serverless/ 112 | 113 | # FuseBox cache 114 | .fusebox/ 115 | 116 | # DynamoDB Local files 117 | .dynamodb/ 118 | 119 | # TernJS port file 120 | .tern-port 121 | 122 | # Stores VSCode versions used for testing VSCode extensions 123 | .vscode-test 124 | 125 | # yarn v2 126 | .yarn/cache 127 | .yarn/unplugged 128 | .yarn/build-state.yml 129 | .yarn/install-state.gz 130 | .pnp.* 131 | 132 | # MacOS 133 | .DS_Store 134 | 135 | # 3D models 136 | models 137 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Attribution-NonCommercial-ShareAlike 4.0 International 2 | 3 | ======================================================================= 4 | 5 | Creative Commons Corporation ("Creative Commons") is not a law firm and 6 | does not provide legal services or legal advice. Distribution of 7 | Creative Commons public licenses does not create a lawyer-client or 8 | other relationship. Creative Commons makes its licenses and related 9 | information available on an "as-is" basis. Creative Commons gives no 10 | warranties regarding its licenses, any material licensed under their 11 | terms and conditions, or any related information. Creative Commons 12 | disclaims all liability for damages resulting from their use to the 13 | fullest extent possible. 14 | 15 | Using Creative Commons Public Licenses 16 | 17 | Creative Commons public licenses provide a standard set of terms and 18 | conditions that creators and other rights holders may use to share 19 | original works of authorship and other material subject to copyright 20 | and certain other rights specified in the public license below. The 21 | following considerations are for informational purposes only, are not 22 | exhaustive, and do not form part of our licenses. 23 | 24 | Considerations for licensors: Our public licenses are 25 | intended for use by those authorized to give the public 26 | permission to use material in ways otherwise restricted by 27 | copyright and certain other rights. Our licenses are 28 | irrevocable. Licensors should read and understand the terms 29 | and conditions of the license they choose before applying it. 30 | Licensors should also secure all rights necessary before 31 | applying our licenses so that the public can reuse the 32 | material as expected. Licensors should clearly mark any 33 | material not subject to the license. This includes other CC- 34 | licensed material, or material used under an exception or 35 | limitation to copyright. More considerations for licensors: 36 | wiki.creativecommons.org/Considerations_for_licensors 37 | 38 | Considerations for the public: By using one of our public 39 | licenses, a licensor grants the public permission to use the 40 | licensed material under specified terms and conditions. If 41 | the licensor's permission is not necessary for any reason--for 42 | example, because of any applicable exception or limitation to 43 | copyright--then that use is not regulated by the license. Our 44 | licenses grant only permissions under copyright and certain 45 | other rights that a licensor has authority to grant. Use of 46 | the licensed material may still be restricted for other 47 | reasons, including because others have copyright or other 48 | rights in the material. A licensor may make special requests, 49 | such as asking that all changes be marked or described. 50 | Although not required by our licenses, you are encouraged to 51 | respect those requests where reasonable. More considerations 52 | for the public: 53 | wiki.creativecommons.org/Considerations_for_licensees 54 | 55 | ======================================================================= 56 | 57 | Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International 58 | Public License 59 | 60 | By exercising the Licensed Rights (defined below), You accept and agree 61 | to be bound by the terms and conditions of this Creative Commons 62 | Attribution-NonCommercial-ShareAlike 4.0 International Public License 63 | ("Public License"). To the extent this Public License may be 64 | interpreted as a contract, You are granted the Licensed Rights in 65 | consideration of Your acceptance of these terms and conditions, and the 66 | Licensor grants You such rights in consideration of benefits the 67 | Licensor receives from making the Licensed Material available under 68 | these terms and conditions. 69 | 70 | Section 1 -- Definitions. 71 | 72 | a. Adapted Material means material subject to Copyright and Similar 73 | Rights that is derived from or based upon the Licensed Material 74 | and in which the Licensed Material is translated, altered, 75 | arranged, transformed, or otherwise modified in a manner requiring 76 | permission under the Copyright and Similar Rights held by the 77 | Licensor. For purposes of this Public License, where the Licensed 78 | Material is a musical work, performance, or sound recording, 79 | Adapted Material is always produced where the Licensed Material is 80 | synched in timed relation with a moving image. 81 | 82 | b. Adapter's License means the license You apply to Your Copyright 83 | and Similar Rights in Your contributions to Adapted Material in 84 | accordance with the terms and conditions of this Public License. 85 | 86 | c. BY-NC-SA Compatible License means a license listed at 87 | creativecommons.org/compatiblelicenses, approved by Creative 88 | Commons as essentially the equivalent of this Public License. 89 | 90 | d. Copyright and Similar Rights means copyright and/or similar rights 91 | closely related to copyright including, without limitation, 92 | performance, broadcast, sound recording, and Sui Generis Database 93 | Rights, without regard to how the rights are labeled or 94 | categorized. For purposes of this Public License, the rights 95 | specified in Section 2(b)(1)-(2) are not Copyright and Similar 96 | Rights. 97 | 98 | e. Effective Technological Measures means those measures that, in the 99 | absence of proper authority, may not be circumvented under laws 100 | fulfilling obligations under Article 11 of the WIPO Copyright 101 | Treaty adopted on December 20, 1996, and/or similar international 102 | agreements. 103 | 104 | f. Exceptions and Limitations means fair use, fair dealing, and/or 105 | any other exception or limitation to Copyright and Similar Rights 106 | that applies to Your use of the Licensed Material. 107 | 108 | g. License Elements means the license attributes listed in the name 109 | of a Creative Commons Public License. The License Elements of this 110 | Public License are Attribution, NonCommercial, and ShareAlike. 111 | 112 | h. Licensed Material means the artistic or literary work, database, 113 | or other material to which the Licensor applied this Public 114 | License. 115 | 116 | i. Licensed Rights means the rights granted to You subject to the 117 | terms and conditions of this Public License, which are limited to 118 | all Copyright and Similar Rights that apply to Your use of the 119 | Licensed Material and that the Licensor has authority to license. 120 | 121 | j. Licensor means the individual(s) or entity(ies) granting rights 122 | under this Public License. 123 | 124 | k. NonCommercial means not primarily intended for or directed towards 125 | commercial advantage or monetary compensation. For purposes of 126 | this Public License, the exchange of the Licensed Material for 127 | other material subject to Copyright and Similar Rights by digital 128 | file-sharing or similar means is NonCommercial provided there is 129 | no payment of monetary compensation in connection with the 130 | exchange. 131 | 132 | l. Share means to provide material to the public by any means or 133 | process that requires permission under the Licensed Rights, such 134 | as reproduction, public display, public performance, distribution, 135 | dissemination, communication, or importation, and to make material 136 | available to the public including in ways that members of the 137 | public may access the material from a place and at a time 138 | individually chosen by them. 139 | 140 | m. Sui Generis Database Rights means rights other than copyright 141 | resulting from Directive 96/9/EC of the European Parliament and of 142 | the Council of 11 March 1996 on the legal protection of databases, 143 | as amended and/or succeeded, as well as other essentially 144 | equivalent rights anywhere in the world. 145 | 146 | n. You means the individual or entity exercising the Licensed Rights 147 | under this Public License. Your has a corresponding meaning. 148 | 149 | Section 2 -- Scope. 150 | 151 | a. License grant. 152 | 153 | 1. Subject to the terms and conditions of this Public License, 154 | the Licensor hereby grants You a worldwide, royalty-free, 155 | non-sublicensable, non-exclusive, irrevocable license to 156 | exercise the Licensed Rights in the Licensed Material to: 157 | 158 | a. reproduce and Share the Licensed Material, in whole or 159 | in part, for NonCommercial purposes only; and 160 | 161 | b. produce, reproduce, and Share Adapted Material for 162 | NonCommercial purposes only. 163 | 164 | 2. Exceptions and Limitations. For the avoidance of doubt, where 165 | Exceptions and Limitations apply to Your use, this Public 166 | License does not apply, and You do not need to comply with 167 | its terms and conditions. 168 | 169 | 3. Term. The term of this Public License is specified in Section 170 | 6(a). 171 | 172 | 4. Media and formats; technical modifications allowed. The 173 | Licensor authorizes You to exercise the Licensed Rights in 174 | all media and formats whether now known or hereafter created, 175 | and to make technical modifications necessary to do so. The 176 | Licensor waives and/or agrees not to assert any right or 177 | authority to forbid You from making technical modifications 178 | necessary to exercise the Licensed Rights, including 179 | technical modifications necessary to circumvent Effective 180 | Technological Measures. For purposes of this Public License, 181 | simply making modifications authorized by this Section 2(a) 182 | (4) never produces Adapted Material. 183 | 184 | 5. Downstream recipients. 185 | 186 | a. Offer from the Licensor -- Licensed Material. Every 187 | recipient of the Licensed Material automatically 188 | receives an offer from the Licensor to exercise the 189 | Licensed Rights under the terms and conditions of this 190 | Public License. 191 | 192 | b. Additional offer from the Licensor -- Adapted Material. 193 | Every recipient of Adapted Material from You 194 | automatically receives an offer from the Licensor to 195 | exercise the Licensed Rights in the Adapted Material 196 | under the conditions of the Adapter's License You apply. 197 | 198 | c. No downstream restrictions. You may not offer or impose 199 | any additional or different terms or conditions on, or 200 | apply any Effective Technological Measures to, the 201 | Licensed Material if doing so restricts exercise of the 202 | Licensed Rights by any recipient of the Licensed 203 | Material. 204 | 205 | 6. No endorsement. Nothing in this Public License constitutes or 206 | may be construed as permission to assert or imply that You 207 | are, or that Your use of the Licensed Material is, connected 208 | with, or sponsored, endorsed, or granted official status by, 209 | the Licensor or others designated to receive attribution as 210 | provided in Section 3(a)(1)(A)(i). 211 | 212 | b. Other rights. 213 | 214 | 1. Moral rights, such as the right of integrity, are not 215 | licensed under this Public License, nor are publicity, 216 | privacy, and/or other similar personality rights; however, to 217 | the extent possible, the Licensor waives and/or agrees not to 218 | assert any such rights held by the Licensor to the limited 219 | extent necessary to allow You to exercise the Licensed 220 | Rights, but not otherwise. 221 | 222 | 2. Patent and trademark rights are not licensed under this 223 | Public License. 224 | 225 | 3. To the extent possible, the Licensor waives any right to 226 | collect royalties from You for the exercise of the Licensed 227 | Rights, whether directly or through a collecting society 228 | under any voluntary or waivable statutory or compulsory 229 | licensing scheme. In all other cases the Licensor expressly 230 | reserves any right to collect such royalties, including when 231 | the Licensed Material is used other than for NonCommercial 232 | purposes. 233 | 234 | Section 3 -- License Conditions. 235 | 236 | Your exercise of the Licensed Rights is expressly made subject to the 237 | following conditions. 238 | 239 | a. Attribution. 240 | 241 | 1. If You Share the Licensed Material (including in modified 242 | form), You must: 243 | 244 | a. retain the following if it is supplied by the Licensor 245 | with the Licensed Material: 246 | 247 | i. identification of the creator(s) of the Licensed 248 | Material and any others designated to receive 249 | attribution, in any reasonable manner requested by 250 | the Licensor (including by pseudonym if 251 | designated); 252 | 253 | ii. a copyright notice; 254 | 255 | iii. a notice that refers to this Public License; 256 | 257 | iv. a notice that refers to the disclaimer of 258 | warranties; 259 | 260 | v. a URI or hyperlink to the Licensed Material to the 261 | extent reasonably practicable; 262 | 263 | b. indicate if You modified the Licensed Material and 264 | retain an indication of any previous modifications; and 265 | 266 | c. indicate the Licensed Material is licensed under this 267 | Public License, and include the text of, or the URI or 268 | hyperlink to, this Public License. 269 | 270 | 2. You may satisfy the conditions in Section 3(a)(1) in any 271 | reasonable manner based on the medium, means, and context in 272 | which You Share the Licensed Material. For example, it may be 273 | reasonable to satisfy the conditions by providing a URI or 274 | hyperlink to a resource that includes the required 275 | information. 276 | 3. If requested by the Licensor, You must remove any of the 277 | information required by Section 3(a)(1)(A) to the extent 278 | reasonably practicable. 279 | 280 | b. ShareAlike. 281 | 282 | In addition to the conditions in Section 3(a), if You Share 283 | Adapted Material You produce, the following conditions also apply. 284 | 285 | 1. The Adapter's License You apply must be a Creative Commons 286 | license with the same License Elements, this version or 287 | later, or a BY-NC-SA Compatible License. 288 | 289 | 2. You must include the text of, or the URI or hyperlink to, the 290 | Adapter's License You apply. You may satisfy this condition 291 | in any reasonable manner based on the medium, means, and 292 | context in which You Share Adapted Material. 293 | 294 | 3. You may not offer or impose any additional or different terms 295 | or conditions on, or apply any Effective Technological 296 | Measures to, Adapted Material that restrict exercise of the 297 | rights granted under the Adapter's License You apply. 298 | 299 | Section 4 -- Sui Generis Database Rights. 300 | 301 | Where the Licensed Rights include Sui Generis Database Rights that 302 | apply to Your use of the Licensed Material: 303 | 304 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right 305 | to extract, reuse, reproduce, and Share all or a substantial 306 | portion of the contents of the database for NonCommercial purposes 307 | only; 308 | 309 | b. if You include all or a substantial portion of the database 310 | contents in a database in which You have Sui Generis Database 311 | Rights, then the database in which You have Sui Generis Database 312 | Rights (but not its individual contents) is Adapted Material, 313 | including for purposes of Section 3(b); and 314 | 315 | c. You must comply with the conditions in Section 3(a) if You Share 316 | all or a substantial portion of the contents of the database. 317 | 318 | For the avoidance of doubt, this Section 4 supplements and does not 319 | replace Your obligations under this Public License where the Licensed 320 | Rights include other Copyright and Similar Rights. 321 | 322 | Section 5 -- Disclaimer of Warranties and Limitation of Liability. 323 | 324 | a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE 325 | EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS 326 | AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF 327 | ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, 328 | IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, 329 | WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR 330 | PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, 331 | ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT 332 | KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT 333 | ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. 334 | 335 | b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE 336 | TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, 337 | NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, 338 | INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, 339 | COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR 340 | USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN 341 | ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR 342 | DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR 343 | IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. 344 | 345 | c. The disclaimer of warranties and limitation of liability provided 346 | above shall be interpreted in a manner that, to the extent 347 | possible, most closely approximates an absolute disclaimer and 348 | waiver of all liability. 349 | 350 | Section 6 -- Term and Termination. 351 | 352 | a. This Public License applies for the term of the Copyright and 353 | Similar Rights licensed here. However, if You fail to comply with 354 | this Public License, then Your rights under this Public License 355 | terminate automatically. 356 | 357 | b. Where Your right to use the Licensed Material has terminated under 358 | Section 6(a), it reinstates: 359 | 360 | 1. automatically as of the date the violation is cured, provided 361 | it is cured within 30 days of Your discovery of the 362 | violation; or 363 | 364 | 2. upon express reinstatement by the Licensor. 365 | 366 | For the avoidance of doubt, this Section 6(b) does not affect any 367 | right the Licensor may have to seek remedies for Your violations 368 | of this Public License. 369 | 370 | c. For the avoidance of doubt, the Licensor may also offer the 371 | Licensed Material under separate terms or conditions or stop 372 | distributing the Licensed Material at any time; however, doing so 373 | will not terminate this Public License. 374 | 375 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public 376 | License. 377 | 378 | Section 7 -- Other Terms and Conditions. 379 | 380 | a. The Licensor shall not be bound by any additional or different 381 | terms or conditions communicated by You unless expressly agreed. 382 | 383 | b. Any arrangements, understandings, or agreements regarding the 384 | Licensed Material not stated herein are separate from and 385 | independent of the terms and conditions of this Public License. 386 | 387 | Section 8 -- Interpretation. 388 | 389 | a. For the avoidance of doubt, this Public License does not, and 390 | shall not be interpreted to, reduce, limit, restrict, or impose 391 | conditions on any use of the Licensed Material that could lawfully 392 | be made without permission under this Public License. 393 | 394 | b. To the extent possible, if any provision of this Public License is 395 | deemed unenforceable, it shall be automatically reformed to the 396 | minimum extent necessary to make it enforceable. If the provision 397 | cannot be reformed, it shall be severed from this Public License 398 | without affecting the enforceability of the remaining terms and 399 | conditions. 400 | 401 | c. No term or condition of this Public License will be waived and no 402 | failure to comply consented to unless expressly agreed to by the 403 | Licensor. 404 | 405 | d. Nothing in this Public License constitutes or may be interpreted 406 | as a limitation upon, or waiver of, any privileges and immunities 407 | that apply to the Licensor or You, including from the legal 408 | processes of any jurisdiction or authority. 409 | 410 | ======================================================================= 411 | 412 | Creative Commons is not a party to its public 413 | licenses. Notwithstanding, Creative Commons may elect to apply one of 414 | its public licenses to material it publishes and in those instances 415 | will be considered the “Licensor.” The text of the Creative Commons 416 | public licenses is dedicated to the public domain under the CC0 Public 417 | Domain Dedication. Except for the limited purpose of indicating that 418 | material is shared under a Creative Commons public license or as 419 | otherwise permitted by the Creative Commons policies published at 420 | creativecommons.org/policies, Creative Commons does not authorize the 421 | use of the trademark "Creative Commons" or any other trademark or logo 422 | of Creative Commons without its prior written consent including, 423 | without limitation, in connection with any unauthorized modifications 424 | to any of its public licenses or any other arrangements, 425 | understandings, or agreements concerning use of licensed material. For 426 | the avoidance of doubt, this paragraph does not form part of the 427 | public licenses. 428 | 429 | Creative Commons may be contacted at creativecommons.org. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🌊 Volume Rendering 2 | 3 | Volume rendering is a common technique used to render 3D medical imaging data like MRIs or CT scans. This repo contains the code for my implementation in Three.js and GLSL. Here's a 30-second demo on [Twitter](https://x.com/SuboptimalEng/status/1781808470985003035) and [Reddit](https://www.reddit.com/r/GraphicsProgramming/comments/1c9ke0p/volume_rendering_in_threejs_and_glsl/). 4 | 5 | Huge thanks to Will Usher for his blog post on [Volume Rendering in WebGL](https://www.willusher.io/webgl/2019/01/13/volume-rendering-with-webgl). 6 | 7 | 8 | 9 | 10 | 11 | ## Setup 12 | 13 | ``` 14 | git clone https://github.com/SuboptimalEng/volume-rendering.git 15 | cd volume-rendering/ 16 | npm install 17 | npm run dev 18 | ``` 19 | 20 | But wait, there's more! After running these commands, you will be able to open the project in localhost. However, there will be no image rendered on screen. Why, you may ask? Simple, I did not want to upload multiple 16MB data files to GitHub. To see the demo in action, you will need to download one of these files and upload them via the UI. 21 | 22 | - Foot - https://klacansky.com/open-scivis-datasets/foot/foot_256x256x256_uint8.raw 23 | - Skull - https://klacansky.com/open-scivis-datasets/skull/skull_256x256x256_uint8.raw 24 | - Bonsai - https://klacansky.com/open-scivis-datasets/bonsai/bonsai_256x256x256_uint8.raw 25 | 26 | Note: The website I linked has tons of models, but not all of them will work. I've hard-coded this project to work with `256x256x256 uint8` files that are scaled `1x1x1`. 27 | 28 | ## References 29 | 30 | - Will Usher's Blog Post - https://www.willusher.io/webgl/2019/01/13/volume-rendering-with-webgl 31 | - Open Scientific Visualization Datasets - https://klacansky.com/open-scivis-datasets 32 | - The Art of Code - https://www.youtube.com/watch?v=S8AWd66hoCo 33 | - Inigo Quilez - https://iquilezles.org/articles/palettes/ 34 | 35 | ## License 36 | 37 | Shield: [![CC BY-NC-SA 4.0][cc-by-nc-sa-shield]][cc-by-nc-sa] 38 | 39 | This work is licensed under a 40 | [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License][cc-by-nc-sa]. 41 | 42 | [![CC BY-NC-SA 4.0][cc-by-nc-sa-image]][cc-by-nc-sa] 43 | 44 | [cc-by-nc-sa]: http://creativecommons.org/licenses/by-nc-sa/4.0/ 45 | [cc-by-nc-sa-image]: https://licensebuttons.net/l/by-nc-sa/4.0/88x31.png 46 | [cc-by-nc-sa-shield]: https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg 47 | -------------------------------------------------------------------------------- /_demos/bonsai-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuboptimalEng/volume-rendering/df7a0d77a8a1d7545a696c387c0c5ddee52a7fbd/_demos/bonsai-01.png -------------------------------------------------------------------------------- /_demos/bonsai-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuboptimalEng/volume-rendering/df7a0d77a8a1d7545a696c387c0c5ddee52a7fbd/_demos/bonsai-02.png -------------------------------------------------------------------------------- /_demos/foot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuboptimalEng/volume-rendering/df7a0d77a8a1d7545a696c387c0c5ddee52a7fbd/_demos/foot-01.png -------------------------------------------------------------------------------- /_demos/foot-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuboptimalEng/volume-rendering/df7a0d77a8a1d7545a696c387c0c5ddee52a7fbd/_demos/foot-02.png -------------------------------------------------------------------------------- /_demos/foot-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuboptimalEng/volume-rendering/df7a0d77a8a1d7545a696c387c0c5ddee52a7fbd/_demos/foot-03.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Vite + React + TS 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "volume-rendering", 3 | "version": "0.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "volume-rendering", 9 | "version": "0.0.0", 10 | "dependencies": { 11 | "react": "^18.2.0", 12 | "react-dom": "^18.2.0", 13 | "three": "^0.163.0" 14 | }, 15 | "devDependencies": { 16 | "@types/dat.gui": "^0.7.13", 17 | "@types/react": "^18.2.66", 18 | "@types/react-dom": "^18.2.22", 19 | "@types/three": "^0.163.0", 20 | "@typescript-eslint/eslint-plugin": "^7.2.0", 21 | "@typescript-eslint/parser": "^7.2.0", 22 | "@vitejs/plugin-react": "^4.2.1", 23 | "autoprefixer": "^10.4.19", 24 | "dat.gui": "^0.7.9", 25 | "eslint": "^8.57.0", 26 | "eslint-plugin-react-hooks": "^4.6.0", 27 | "eslint-plugin-react-refresh": "^0.4.6", 28 | "postcss": "^8.4.38", 29 | "tailwindcss": "^3.4.3", 30 | "typescript": "^5.2.2", 31 | "vite": "^5.2.0" 32 | } 33 | }, 34 | "node_modules/@aashutoshrathi/word-wrap": { 35 | "version": "1.2.6", 36 | "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", 37 | "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", 38 | "dev": true, 39 | "engines": { 40 | "node": ">=0.10.0" 41 | } 42 | }, 43 | "node_modules/@alloc/quick-lru": { 44 | "version": "5.2.0", 45 | "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", 46 | "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", 47 | "dev": true, 48 | "engines": { 49 | "node": ">=10" 50 | }, 51 | "funding": { 52 | "url": "https://github.com/sponsors/sindresorhus" 53 | } 54 | }, 55 | "node_modules/@ampproject/remapping": { 56 | "version": "2.3.0", 57 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", 58 | "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", 59 | "dev": true, 60 | "dependencies": { 61 | "@jridgewell/gen-mapping": "^0.3.5", 62 | "@jridgewell/trace-mapping": "^0.3.24" 63 | }, 64 | "engines": { 65 | "node": ">=6.0.0" 66 | } 67 | }, 68 | "node_modules/@babel/code-frame": { 69 | "version": "7.24.2", 70 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz", 71 | "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==", 72 | "dev": true, 73 | "dependencies": { 74 | "@babel/highlight": "^7.24.2", 75 | "picocolors": "^1.0.0" 76 | }, 77 | "engines": { 78 | "node": ">=6.9.0" 79 | } 80 | }, 81 | "node_modules/@babel/compat-data": { 82 | "version": "7.24.4", 83 | "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.4.tgz", 84 | "integrity": "sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==", 85 | "dev": true, 86 | "engines": { 87 | "node": ">=6.9.0" 88 | } 89 | }, 90 | "node_modules/@babel/core": { 91 | "version": "7.24.4", 92 | "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.4.tgz", 93 | "integrity": "sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==", 94 | "dev": true, 95 | "dependencies": { 96 | "@ampproject/remapping": "^2.2.0", 97 | "@babel/code-frame": "^7.24.2", 98 | "@babel/generator": "^7.24.4", 99 | "@babel/helper-compilation-targets": "^7.23.6", 100 | "@babel/helper-module-transforms": "^7.23.3", 101 | "@babel/helpers": "^7.24.4", 102 | "@babel/parser": "^7.24.4", 103 | "@babel/template": "^7.24.0", 104 | "@babel/traverse": "^7.24.1", 105 | "@babel/types": "^7.24.0", 106 | "convert-source-map": "^2.0.0", 107 | "debug": "^4.1.0", 108 | "gensync": "^1.0.0-beta.2", 109 | "json5": "^2.2.3", 110 | "semver": "^6.3.1" 111 | }, 112 | "engines": { 113 | "node": ">=6.9.0" 114 | }, 115 | "funding": { 116 | "type": "opencollective", 117 | "url": "https://opencollective.com/babel" 118 | } 119 | }, 120 | "node_modules/@babel/core/node_modules/semver": { 121 | "version": "6.3.1", 122 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 123 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 124 | "dev": true, 125 | "bin": { 126 | "semver": "bin/semver.js" 127 | } 128 | }, 129 | "node_modules/@babel/generator": { 130 | "version": "7.24.4", 131 | "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.4.tgz", 132 | "integrity": "sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==", 133 | "dev": true, 134 | "dependencies": { 135 | "@babel/types": "^7.24.0", 136 | "@jridgewell/gen-mapping": "^0.3.5", 137 | "@jridgewell/trace-mapping": "^0.3.25", 138 | "jsesc": "^2.5.1" 139 | }, 140 | "engines": { 141 | "node": ">=6.9.0" 142 | } 143 | }, 144 | "node_modules/@babel/helper-compilation-targets": { 145 | "version": "7.23.6", 146 | "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", 147 | "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", 148 | "dev": true, 149 | "dependencies": { 150 | "@babel/compat-data": "^7.23.5", 151 | "@babel/helper-validator-option": "^7.23.5", 152 | "browserslist": "^4.22.2", 153 | "lru-cache": "^5.1.1", 154 | "semver": "^6.3.1" 155 | }, 156 | "engines": { 157 | "node": ">=6.9.0" 158 | } 159 | }, 160 | "node_modules/@babel/helper-compilation-targets/node_modules/semver": { 161 | "version": "6.3.1", 162 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 163 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 164 | "dev": true, 165 | "bin": { 166 | "semver": "bin/semver.js" 167 | } 168 | }, 169 | "node_modules/@babel/helper-environment-visitor": { 170 | "version": "7.22.20", 171 | "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", 172 | "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", 173 | "dev": true, 174 | "engines": { 175 | "node": ">=6.9.0" 176 | } 177 | }, 178 | "node_modules/@babel/helper-function-name": { 179 | "version": "7.23.0", 180 | "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", 181 | "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", 182 | "dev": true, 183 | "dependencies": { 184 | "@babel/template": "^7.22.15", 185 | "@babel/types": "^7.23.0" 186 | }, 187 | "engines": { 188 | "node": ">=6.9.0" 189 | } 190 | }, 191 | "node_modules/@babel/helper-hoist-variables": { 192 | "version": "7.22.5", 193 | "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", 194 | "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", 195 | "dev": true, 196 | "dependencies": { 197 | "@babel/types": "^7.22.5" 198 | }, 199 | "engines": { 200 | "node": ">=6.9.0" 201 | } 202 | }, 203 | "node_modules/@babel/helper-module-imports": { 204 | "version": "7.24.3", 205 | "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz", 206 | "integrity": "sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==", 207 | "dev": true, 208 | "dependencies": { 209 | "@babel/types": "^7.24.0" 210 | }, 211 | "engines": { 212 | "node": ">=6.9.0" 213 | } 214 | }, 215 | "node_modules/@babel/helper-module-transforms": { 216 | "version": "7.23.3", 217 | "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", 218 | "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", 219 | "dev": true, 220 | "dependencies": { 221 | "@babel/helper-environment-visitor": "^7.22.20", 222 | "@babel/helper-module-imports": "^7.22.15", 223 | "@babel/helper-simple-access": "^7.22.5", 224 | "@babel/helper-split-export-declaration": "^7.22.6", 225 | "@babel/helper-validator-identifier": "^7.22.20" 226 | }, 227 | "engines": { 228 | "node": ">=6.9.0" 229 | }, 230 | "peerDependencies": { 231 | "@babel/core": "^7.0.0" 232 | } 233 | }, 234 | "node_modules/@babel/helper-plugin-utils": { 235 | "version": "7.24.0", 236 | "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.0.tgz", 237 | "integrity": "sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==", 238 | "dev": true, 239 | "engines": { 240 | "node": ">=6.9.0" 241 | } 242 | }, 243 | "node_modules/@babel/helper-simple-access": { 244 | "version": "7.22.5", 245 | "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", 246 | "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", 247 | "dev": true, 248 | "dependencies": { 249 | "@babel/types": "^7.22.5" 250 | }, 251 | "engines": { 252 | "node": ">=6.9.0" 253 | } 254 | }, 255 | "node_modules/@babel/helper-split-export-declaration": { 256 | "version": "7.22.6", 257 | "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", 258 | "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", 259 | "dev": true, 260 | "dependencies": { 261 | "@babel/types": "^7.22.5" 262 | }, 263 | "engines": { 264 | "node": ">=6.9.0" 265 | } 266 | }, 267 | "node_modules/@babel/helper-string-parser": { 268 | "version": "7.24.1", 269 | "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz", 270 | "integrity": "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==", 271 | "dev": true, 272 | "engines": { 273 | "node": ">=6.9.0" 274 | } 275 | }, 276 | "node_modules/@babel/helper-validator-identifier": { 277 | "version": "7.22.20", 278 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", 279 | "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", 280 | "dev": true, 281 | "engines": { 282 | "node": ">=6.9.0" 283 | } 284 | }, 285 | "node_modules/@babel/helper-validator-option": { 286 | "version": "7.23.5", 287 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", 288 | "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", 289 | "dev": true, 290 | "engines": { 291 | "node": ">=6.9.0" 292 | } 293 | }, 294 | "node_modules/@babel/helpers": { 295 | "version": "7.24.4", 296 | "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.4.tgz", 297 | "integrity": "sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==", 298 | "dev": true, 299 | "dependencies": { 300 | "@babel/template": "^7.24.0", 301 | "@babel/traverse": "^7.24.1", 302 | "@babel/types": "^7.24.0" 303 | }, 304 | "engines": { 305 | "node": ">=6.9.0" 306 | } 307 | }, 308 | "node_modules/@babel/highlight": { 309 | "version": "7.24.2", 310 | "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.2.tgz", 311 | "integrity": "sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==", 312 | "dev": true, 313 | "dependencies": { 314 | "@babel/helper-validator-identifier": "^7.22.20", 315 | "chalk": "^2.4.2", 316 | "js-tokens": "^4.0.0", 317 | "picocolors": "^1.0.0" 318 | }, 319 | "engines": { 320 | "node": ">=6.9.0" 321 | } 322 | }, 323 | "node_modules/@babel/parser": { 324 | "version": "7.24.4", 325 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.4.tgz", 326 | "integrity": "sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==", 327 | "dev": true, 328 | "bin": { 329 | "parser": "bin/babel-parser.js" 330 | }, 331 | "engines": { 332 | "node": ">=6.0.0" 333 | } 334 | }, 335 | "node_modules/@babel/plugin-transform-react-jsx-self": { 336 | "version": "7.24.1", 337 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.1.tgz", 338 | "integrity": "sha512-kDJgnPujTmAZ/9q2CN4m2/lRsUUPDvsG3+tSHWUJIzMGTt5U/b/fwWd3RO3n+5mjLrsBrVa5eKFRVSQbi3dF1w==", 339 | "dev": true, 340 | "dependencies": { 341 | "@babel/helper-plugin-utils": "^7.24.0" 342 | }, 343 | "engines": { 344 | "node": ">=6.9.0" 345 | }, 346 | "peerDependencies": { 347 | "@babel/core": "^7.0.0-0" 348 | } 349 | }, 350 | "node_modules/@babel/plugin-transform-react-jsx-source": { 351 | "version": "7.24.1", 352 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.1.tgz", 353 | "integrity": "sha512-1v202n7aUq4uXAieRTKcwPzNyphlCuqHHDcdSNc+vdhoTEZcFMh+L5yZuCmGaIO7bs1nJUNfHB89TZyoL48xNA==", 354 | "dev": true, 355 | "dependencies": { 356 | "@babel/helper-plugin-utils": "^7.24.0" 357 | }, 358 | "engines": { 359 | "node": ">=6.9.0" 360 | }, 361 | "peerDependencies": { 362 | "@babel/core": "^7.0.0-0" 363 | } 364 | }, 365 | "node_modules/@babel/template": { 366 | "version": "7.24.0", 367 | "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz", 368 | "integrity": "sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==", 369 | "dev": true, 370 | "dependencies": { 371 | "@babel/code-frame": "^7.23.5", 372 | "@babel/parser": "^7.24.0", 373 | "@babel/types": "^7.24.0" 374 | }, 375 | "engines": { 376 | "node": ">=6.9.0" 377 | } 378 | }, 379 | "node_modules/@babel/traverse": { 380 | "version": "7.24.1", 381 | "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.1.tgz", 382 | "integrity": "sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==", 383 | "dev": true, 384 | "dependencies": { 385 | "@babel/code-frame": "^7.24.1", 386 | "@babel/generator": "^7.24.1", 387 | "@babel/helper-environment-visitor": "^7.22.20", 388 | "@babel/helper-function-name": "^7.23.0", 389 | "@babel/helper-hoist-variables": "^7.22.5", 390 | "@babel/helper-split-export-declaration": "^7.22.6", 391 | "@babel/parser": "^7.24.1", 392 | "@babel/types": "^7.24.0", 393 | "debug": "^4.3.1", 394 | "globals": "^11.1.0" 395 | }, 396 | "engines": { 397 | "node": ">=6.9.0" 398 | } 399 | }, 400 | "node_modules/@babel/types": { 401 | "version": "7.24.0", 402 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz", 403 | "integrity": "sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==", 404 | "dev": true, 405 | "dependencies": { 406 | "@babel/helper-string-parser": "^7.23.4", 407 | "@babel/helper-validator-identifier": "^7.22.20", 408 | "to-fast-properties": "^2.0.0" 409 | }, 410 | "engines": { 411 | "node": ">=6.9.0" 412 | } 413 | }, 414 | "node_modules/@esbuild/aix-ppc64": { 415 | "version": "0.20.2", 416 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", 417 | "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", 418 | "cpu": [ 419 | "ppc64" 420 | ], 421 | "dev": true, 422 | "optional": true, 423 | "os": [ 424 | "aix" 425 | ], 426 | "engines": { 427 | "node": ">=12" 428 | } 429 | }, 430 | "node_modules/@esbuild/android-arm": { 431 | "version": "0.20.2", 432 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", 433 | "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", 434 | "cpu": [ 435 | "arm" 436 | ], 437 | "dev": true, 438 | "optional": true, 439 | "os": [ 440 | "android" 441 | ], 442 | "engines": { 443 | "node": ">=12" 444 | } 445 | }, 446 | "node_modules/@esbuild/android-arm64": { 447 | "version": "0.20.2", 448 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", 449 | "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", 450 | "cpu": [ 451 | "arm64" 452 | ], 453 | "dev": true, 454 | "optional": true, 455 | "os": [ 456 | "android" 457 | ], 458 | "engines": { 459 | "node": ">=12" 460 | } 461 | }, 462 | "node_modules/@esbuild/android-x64": { 463 | "version": "0.20.2", 464 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", 465 | "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", 466 | "cpu": [ 467 | "x64" 468 | ], 469 | "dev": true, 470 | "optional": true, 471 | "os": [ 472 | "android" 473 | ], 474 | "engines": { 475 | "node": ">=12" 476 | } 477 | }, 478 | "node_modules/@esbuild/darwin-arm64": { 479 | "version": "0.20.2", 480 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", 481 | "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", 482 | "cpu": [ 483 | "arm64" 484 | ], 485 | "dev": true, 486 | "optional": true, 487 | "os": [ 488 | "darwin" 489 | ], 490 | "engines": { 491 | "node": ">=12" 492 | } 493 | }, 494 | "node_modules/@esbuild/darwin-x64": { 495 | "version": "0.20.2", 496 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", 497 | "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", 498 | "cpu": [ 499 | "x64" 500 | ], 501 | "dev": true, 502 | "optional": true, 503 | "os": [ 504 | "darwin" 505 | ], 506 | "engines": { 507 | "node": ">=12" 508 | } 509 | }, 510 | "node_modules/@esbuild/freebsd-arm64": { 511 | "version": "0.20.2", 512 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", 513 | "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", 514 | "cpu": [ 515 | "arm64" 516 | ], 517 | "dev": true, 518 | "optional": true, 519 | "os": [ 520 | "freebsd" 521 | ], 522 | "engines": { 523 | "node": ">=12" 524 | } 525 | }, 526 | "node_modules/@esbuild/freebsd-x64": { 527 | "version": "0.20.2", 528 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", 529 | "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", 530 | "cpu": [ 531 | "x64" 532 | ], 533 | "dev": true, 534 | "optional": true, 535 | "os": [ 536 | "freebsd" 537 | ], 538 | "engines": { 539 | "node": ">=12" 540 | } 541 | }, 542 | "node_modules/@esbuild/linux-arm": { 543 | "version": "0.20.2", 544 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", 545 | "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", 546 | "cpu": [ 547 | "arm" 548 | ], 549 | "dev": true, 550 | "optional": true, 551 | "os": [ 552 | "linux" 553 | ], 554 | "engines": { 555 | "node": ">=12" 556 | } 557 | }, 558 | "node_modules/@esbuild/linux-arm64": { 559 | "version": "0.20.2", 560 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", 561 | "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", 562 | "cpu": [ 563 | "arm64" 564 | ], 565 | "dev": true, 566 | "optional": true, 567 | "os": [ 568 | "linux" 569 | ], 570 | "engines": { 571 | "node": ">=12" 572 | } 573 | }, 574 | "node_modules/@esbuild/linux-ia32": { 575 | "version": "0.20.2", 576 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", 577 | "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", 578 | "cpu": [ 579 | "ia32" 580 | ], 581 | "dev": true, 582 | "optional": true, 583 | "os": [ 584 | "linux" 585 | ], 586 | "engines": { 587 | "node": ">=12" 588 | } 589 | }, 590 | "node_modules/@esbuild/linux-loong64": { 591 | "version": "0.20.2", 592 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", 593 | "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", 594 | "cpu": [ 595 | "loong64" 596 | ], 597 | "dev": true, 598 | "optional": true, 599 | "os": [ 600 | "linux" 601 | ], 602 | "engines": { 603 | "node": ">=12" 604 | } 605 | }, 606 | "node_modules/@esbuild/linux-mips64el": { 607 | "version": "0.20.2", 608 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", 609 | "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", 610 | "cpu": [ 611 | "mips64el" 612 | ], 613 | "dev": true, 614 | "optional": true, 615 | "os": [ 616 | "linux" 617 | ], 618 | "engines": { 619 | "node": ">=12" 620 | } 621 | }, 622 | "node_modules/@esbuild/linux-ppc64": { 623 | "version": "0.20.2", 624 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", 625 | "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", 626 | "cpu": [ 627 | "ppc64" 628 | ], 629 | "dev": true, 630 | "optional": true, 631 | "os": [ 632 | "linux" 633 | ], 634 | "engines": { 635 | "node": ">=12" 636 | } 637 | }, 638 | "node_modules/@esbuild/linux-riscv64": { 639 | "version": "0.20.2", 640 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", 641 | "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", 642 | "cpu": [ 643 | "riscv64" 644 | ], 645 | "dev": true, 646 | "optional": true, 647 | "os": [ 648 | "linux" 649 | ], 650 | "engines": { 651 | "node": ">=12" 652 | } 653 | }, 654 | "node_modules/@esbuild/linux-s390x": { 655 | "version": "0.20.2", 656 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", 657 | "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", 658 | "cpu": [ 659 | "s390x" 660 | ], 661 | "dev": true, 662 | "optional": true, 663 | "os": [ 664 | "linux" 665 | ], 666 | "engines": { 667 | "node": ">=12" 668 | } 669 | }, 670 | "node_modules/@esbuild/linux-x64": { 671 | "version": "0.20.2", 672 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", 673 | "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", 674 | "cpu": [ 675 | "x64" 676 | ], 677 | "dev": true, 678 | "optional": true, 679 | "os": [ 680 | "linux" 681 | ], 682 | "engines": { 683 | "node": ">=12" 684 | } 685 | }, 686 | "node_modules/@esbuild/netbsd-x64": { 687 | "version": "0.20.2", 688 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", 689 | "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", 690 | "cpu": [ 691 | "x64" 692 | ], 693 | "dev": true, 694 | "optional": true, 695 | "os": [ 696 | "netbsd" 697 | ], 698 | "engines": { 699 | "node": ">=12" 700 | } 701 | }, 702 | "node_modules/@esbuild/openbsd-x64": { 703 | "version": "0.20.2", 704 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", 705 | "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", 706 | "cpu": [ 707 | "x64" 708 | ], 709 | "dev": true, 710 | "optional": true, 711 | "os": [ 712 | "openbsd" 713 | ], 714 | "engines": { 715 | "node": ">=12" 716 | } 717 | }, 718 | "node_modules/@esbuild/sunos-x64": { 719 | "version": "0.20.2", 720 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", 721 | "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", 722 | "cpu": [ 723 | "x64" 724 | ], 725 | "dev": true, 726 | "optional": true, 727 | "os": [ 728 | "sunos" 729 | ], 730 | "engines": { 731 | "node": ">=12" 732 | } 733 | }, 734 | "node_modules/@esbuild/win32-arm64": { 735 | "version": "0.20.2", 736 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", 737 | "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", 738 | "cpu": [ 739 | "arm64" 740 | ], 741 | "dev": true, 742 | "optional": true, 743 | "os": [ 744 | "win32" 745 | ], 746 | "engines": { 747 | "node": ">=12" 748 | } 749 | }, 750 | "node_modules/@esbuild/win32-ia32": { 751 | "version": "0.20.2", 752 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", 753 | "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", 754 | "cpu": [ 755 | "ia32" 756 | ], 757 | "dev": true, 758 | "optional": true, 759 | "os": [ 760 | "win32" 761 | ], 762 | "engines": { 763 | "node": ">=12" 764 | } 765 | }, 766 | "node_modules/@esbuild/win32-x64": { 767 | "version": "0.20.2", 768 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", 769 | "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", 770 | "cpu": [ 771 | "x64" 772 | ], 773 | "dev": true, 774 | "optional": true, 775 | "os": [ 776 | "win32" 777 | ], 778 | "engines": { 779 | "node": ">=12" 780 | } 781 | }, 782 | "node_modules/@eslint-community/eslint-utils": { 783 | "version": "4.4.0", 784 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 785 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 786 | "dev": true, 787 | "dependencies": { 788 | "eslint-visitor-keys": "^3.3.0" 789 | }, 790 | "engines": { 791 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 792 | }, 793 | "peerDependencies": { 794 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 795 | } 796 | }, 797 | "node_modules/@eslint-community/regexpp": { 798 | "version": "4.10.0", 799 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", 800 | "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", 801 | "dev": true, 802 | "engines": { 803 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 804 | } 805 | }, 806 | "node_modules/@eslint/eslintrc": { 807 | "version": "2.1.4", 808 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", 809 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", 810 | "dev": true, 811 | "dependencies": { 812 | "ajv": "^6.12.4", 813 | "debug": "^4.3.2", 814 | "espree": "^9.6.0", 815 | "globals": "^13.19.0", 816 | "ignore": "^5.2.0", 817 | "import-fresh": "^3.2.1", 818 | "js-yaml": "^4.1.0", 819 | "minimatch": "^3.1.2", 820 | "strip-json-comments": "^3.1.1" 821 | }, 822 | "engines": { 823 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 824 | }, 825 | "funding": { 826 | "url": "https://opencollective.com/eslint" 827 | } 828 | }, 829 | "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { 830 | "version": "1.1.11", 831 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 832 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 833 | "dev": true, 834 | "dependencies": { 835 | "balanced-match": "^1.0.0", 836 | "concat-map": "0.0.1" 837 | } 838 | }, 839 | "node_modules/@eslint/eslintrc/node_modules/globals": { 840 | "version": "13.24.0", 841 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 842 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 843 | "dev": true, 844 | "dependencies": { 845 | "type-fest": "^0.20.2" 846 | }, 847 | "engines": { 848 | "node": ">=8" 849 | }, 850 | "funding": { 851 | "url": "https://github.com/sponsors/sindresorhus" 852 | } 853 | }, 854 | "node_modules/@eslint/eslintrc/node_modules/minimatch": { 855 | "version": "3.1.2", 856 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 857 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 858 | "dev": true, 859 | "dependencies": { 860 | "brace-expansion": "^1.1.7" 861 | }, 862 | "engines": { 863 | "node": "*" 864 | } 865 | }, 866 | "node_modules/@eslint/js": { 867 | "version": "8.57.0", 868 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", 869 | "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", 870 | "dev": true, 871 | "engines": { 872 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 873 | } 874 | }, 875 | "node_modules/@humanwhocodes/config-array": { 876 | "version": "0.11.14", 877 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", 878 | "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", 879 | "dev": true, 880 | "dependencies": { 881 | "@humanwhocodes/object-schema": "^2.0.2", 882 | "debug": "^4.3.1", 883 | "minimatch": "^3.0.5" 884 | }, 885 | "engines": { 886 | "node": ">=10.10.0" 887 | } 888 | }, 889 | "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { 890 | "version": "1.1.11", 891 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 892 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 893 | "dev": true, 894 | "dependencies": { 895 | "balanced-match": "^1.0.0", 896 | "concat-map": "0.0.1" 897 | } 898 | }, 899 | "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { 900 | "version": "3.1.2", 901 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 902 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 903 | "dev": true, 904 | "dependencies": { 905 | "brace-expansion": "^1.1.7" 906 | }, 907 | "engines": { 908 | "node": "*" 909 | } 910 | }, 911 | "node_modules/@humanwhocodes/module-importer": { 912 | "version": "1.0.1", 913 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 914 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 915 | "dev": true, 916 | "engines": { 917 | "node": ">=12.22" 918 | }, 919 | "funding": { 920 | "type": "github", 921 | "url": "https://github.com/sponsors/nzakas" 922 | } 923 | }, 924 | "node_modules/@humanwhocodes/object-schema": { 925 | "version": "2.0.3", 926 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", 927 | "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", 928 | "dev": true 929 | }, 930 | "node_modules/@isaacs/cliui": { 931 | "version": "8.0.2", 932 | "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", 933 | "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", 934 | "dev": true, 935 | "dependencies": { 936 | "string-width": "^5.1.2", 937 | "string-width-cjs": "npm:string-width@^4.2.0", 938 | "strip-ansi": "^7.0.1", 939 | "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", 940 | "wrap-ansi": "^8.1.0", 941 | "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" 942 | }, 943 | "engines": { 944 | "node": ">=12" 945 | } 946 | }, 947 | "node_modules/@isaacs/cliui/node_modules/ansi-regex": { 948 | "version": "6.0.1", 949 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", 950 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", 951 | "dev": true, 952 | "engines": { 953 | "node": ">=12" 954 | }, 955 | "funding": { 956 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 957 | } 958 | }, 959 | "node_modules/@isaacs/cliui/node_modules/strip-ansi": { 960 | "version": "7.1.0", 961 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 962 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 963 | "dev": true, 964 | "dependencies": { 965 | "ansi-regex": "^6.0.1" 966 | }, 967 | "engines": { 968 | "node": ">=12" 969 | }, 970 | "funding": { 971 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 972 | } 973 | }, 974 | "node_modules/@jridgewell/gen-mapping": { 975 | "version": "0.3.5", 976 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", 977 | "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", 978 | "dev": true, 979 | "dependencies": { 980 | "@jridgewell/set-array": "^1.2.1", 981 | "@jridgewell/sourcemap-codec": "^1.4.10", 982 | "@jridgewell/trace-mapping": "^0.3.24" 983 | }, 984 | "engines": { 985 | "node": ">=6.0.0" 986 | } 987 | }, 988 | "node_modules/@jridgewell/resolve-uri": { 989 | "version": "3.1.2", 990 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 991 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 992 | "dev": true, 993 | "engines": { 994 | "node": ">=6.0.0" 995 | } 996 | }, 997 | "node_modules/@jridgewell/set-array": { 998 | "version": "1.2.1", 999 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 1000 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 1001 | "dev": true, 1002 | "engines": { 1003 | "node": ">=6.0.0" 1004 | } 1005 | }, 1006 | "node_modules/@jridgewell/sourcemap-codec": { 1007 | "version": "1.4.15", 1008 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", 1009 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", 1010 | "dev": true 1011 | }, 1012 | "node_modules/@jridgewell/trace-mapping": { 1013 | "version": "0.3.25", 1014 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 1015 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 1016 | "dev": true, 1017 | "dependencies": { 1018 | "@jridgewell/resolve-uri": "^3.1.0", 1019 | "@jridgewell/sourcemap-codec": "^1.4.14" 1020 | } 1021 | }, 1022 | "node_modules/@nodelib/fs.scandir": { 1023 | "version": "2.1.5", 1024 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 1025 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 1026 | "dev": true, 1027 | "dependencies": { 1028 | "@nodelib/fs.stat": "2.0.5", 1029 | "run-parallel": "^1.1.9" 1030 | }, 1031 | "engines": { 1032 | "node": ">= 8" 1033 | } 1034 | }, 1035 | "node_modules/@nodelib/fs.stat": { 1036 | "version": "2.0.5", 1037 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 1038 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 1039 | "dev": true, 1040 | "engines": { 1041 | "node": ">= 8" 1042 | } 1043 | }, 1044 | "node_modules/@nodelib/fs.walk": { 1045 | "version": "1.2.8", 1046 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 1047 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 1048 | "dev": true, 1049 | "dependencies": { 1050 | "@nodelib/fs.scandir": "2.1.5", 1051 | "fastq": "^1.6.0" 1052 | }, 1053 | "engines": { 1054 | "node": ">= 8" 1055 | } 1056 | }, 1057 | "node_modules/@pkgjs/parseargs": { 1058 | "version": "0.11.0", 1059 | "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", 1060 | "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", 1061 | "dev": true, 1062 | "optional": true, 1063 | "engines": { 1064 | "node": ">=14" 1065 | } 1066 | }, 1067 | "node_modules/@rollup/rollup-android-arm-eabi": { 1068 | "version": "4.14.0", 1069 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.14.0.tgz", 1070 | "integrity": "sha512-jwXtxYbRt1V+CdQSy6Z+uZti7JF5irRKF8hlKfEnF/xJpcNGuuiZMBvuoYM+x9sr9iWGnzrlM0+9hvQ1kgkf1w==", 1071 | "cpu": [ 1072 | "arm" 1073 | ], 1074 | "dev": true, 1075 | "optional": true, 1076 | "os": [ 1077 | "android" 1078 | ] 1079 | }, 1080 | "node_modules/@rollup/rollup-android-arm64": { 1081 | "version": "4.14.0", 1082 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.14.0.tgz", 1083 | "integrity": "sha512-fI9nduZhCccjzlsA/OuAwtFGWocxA4gqXGTLvOyiF8d+8o0fZUeSztixkYjcGq1fGZY3Tkq4yRvHPFxU+jdZ9Q==", 1084 | "cpu": [ 1085 | "arm64" 1086 | ], 1087 | "dev": true, 1088 | "optional": true, 1089 | "os": [ 1090 | "android" 1091 | ] 1092 | }, 1093 | "node_modules/@rollup/rollup-darwin-arm64": { 1094 | "version": "4.14.0", 1095 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.14.0.tgz", 1096 | "integrity": "sha512-BcnSPRM76/cD2gQC+rQNGBN6GStBs2pl/FpweW8JYuz5J/IEa0Fr4AtrPv766DB/6b2MZ/AfSIOSGw3nEIP8SA==", 1097 | "cpu": [ 1098 | "arm64" 1099 | ], 1100 | "dev": true, 1101 | "optional": true, 1102 | "os": [ 1103 | "darwin" 1104 | ] 1105 | }, 1106 | "node_modules/@rollup/rollup-darwin-x64": { 1107 | "version": "4.14.0", 1108 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.14.0.tgz", 1109 | "integrity": "sha512-LDyFB9GRolGN7XI6955aFeI3wCdCUszFWumWU0deHA8VpR3nWRrjG6GtGjBrQxQKFevnUTHKCfPR4IvrW3kCgQ==", 1110 | "cpu": [ 1111 | "x64" 1112 | ], 1113 | "dev": true, 1114 | "optional": true, 1115 | "os": [ 1116 | "darwin" 1117 | ] 1118 | }, 1119 | "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 1120 | "version": "4.14.0", 1121 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.14.0.tgz", 1122 | "integrity": "sha512-ygrGVhQP47mRh0AAD0zl6QqCbNsf0eTo+vgwkY6LunBcg0f2Jv365GXlDUECIyoXp1kKwL5WW6rsO429DBY/bA==", 1123 | "cpu": [ 1124 | "arm" 1125 | ], 1126 | "dev": true, 1127 | "optional": true, 1128 | "os": [ 1129 | "linux" 1130 | ] 1131 | }, 1132 | "node_modules/@rollup/rollup-linux-arm64-gnu": { 1133 | "version": "4.14.0", 1134 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.14.0.tgz", 1135 | "integrity": "sha512-x+uJ6MAYRlHGe9wi4HQjxpaKHPM3d3JjqqCkeC5gpnnI6OWovLdXTpfa8trjxPLnWKyBsSi5kne+146GAxFt4A==", 1136 | "cpu": [ 1137 | "arm64" 1138 | ], 1139 | "dev": true, 1140 | "optional": true, 1141 | "os": [ 1142 | "linux" 1143 | ] 1144 | }, 1145 | "node_modules/@rollup/rollup-linux-arm64-musl": { 1146 | "version": "4.14.0", 1147 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.14.0.tgz", 1148 | "integrity": "sha512-nrRw8ZTQKg6+Lttwqo6a2VxR9tOroa2m91XbdQ2sUUzHoedXlsyvY1fN4xWdqz8PKmf4orDwejxXHjh7YBGUCA==", 1149 | "cpu": [ 1150 | "arm64" 1151 | ], 1152 | "dev": true, 1153 | "optional": true, 1154 | "os": [ 1155 | "linux" 1156 | ] 1157 | }, 1158 | "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { 1159 | "version": "4.14.0", 1160 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.14.0.tgz", 1161 | "integrity": "sha512-xV0d5jDb4aFu84XKr+lcUJ9y3qpIWhttO3Qev97z8DKLXR62LC3cXT/bMZXrjLF9X+P5oSmJTzAhqwUbY96PnA==", 1162 | "cpu": [ 1163 | "ppc64le" 1164 | ], 1165 | "dev": true, 1166 | "optional": true, 1167 | "os": [ 1168 | "linux" 1169 | ] 1170 | }, 1171 | "node_modules/@rollup/rollup-linux-riscv64-gnu": { 1172 | "version": "4.14.0", 1173 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.14.0.tgz", 1174 | "integrity": "sha512-SDDhBQwZX6LPRoPYjAZWyL27LbcBo7WdBFWJi5PI9RPCzU8ijzkQn7tt8NXiXRiFMJCVpkuMkBf4OxSxVMizAw==", 1175 | "cpu": [ 1176 | "riscv64" 1177 | ], 1178 | "dev": true, 1179 | "optional": true, 1180 | "os": [ 1181 | "linux" 1182 | ] 1183 | }, 1184 | "node_modules/@rollup/rollup-linux-s390x-gnu": { 1185 | "version": "4.14.0", 1186 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.14.0.tgz", 1187 | "integrity": "sha512-RxB/qez8zIDshNJDufYlTT0ZTVut5eCpAZ3bdXDU9yTxBzui3KhbGjROK2OYTTor7alM7XBhssgoO3CZ0XD3qA==", 1188 | "cpu": [ 1189 | "s390x" 1190 | ], 1191 | "dev": true, 1192 | "optional": true, 1193 | "os": [ 1194 | "linux" 1195 | ] 1196 | }, 1197 | "node_modules/@rollup/rollup-linux-x64-gnu": { 1198 | "version": "4.14.0", 1199 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.14.0.tgz", 1200 | "integrity": "sha512-C6y6z2eCNCfhZxT9u+jAM2Fup89ZjiG5pIzZIDycs1IwESviLxwkQcFRGLjnDrP+PT+v5i4YFvlcfAs+LnreXg==", 1201 | "cpu": [ 1202 | "x64" 1203 | ], 1204 | "dev": true, 1205 | "optional": true, 1206 | "os": [ 1207 | "linux" 1208 | ] 1209 | }, 1210 | "node_modules/@rollup/rollup-linux-x64-musl": { 1211 | "version": "4.14.0", 1212 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.14.0.tgz", 1213 | "integrity": "sha512-i0QwbHYfnOMYsBEyjxcwGu5SMIi9sImDVjDg087hpzXqhBSosxkE7gyIYFHgfFl4mr7RrXksIBZ4DoLoP4FhJg==", 1214 | "cpu": [ 1215 | "x64" 1216 | ], 1217 | "dev": true, 1218 | "optional": true, 1219 | "os": [ 1220 | "linux" 1221 | ] 1222 | }, 1223 | "node_modules/@rollup/rollup-win32-arm64-msvc": { 1224 | "version": "4.14.0", 1225 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.14.0.tgz", 1226 | "integrity": "sha512-Fq52EYb0riNHLBTAcL0cun+rRwyZ10S9vKzhGKKgeD+XbwunszSY0rVMco5KbOsTlwovP2rTOkiII/fQ4ih/zQ==", 1227 | "cpu": [ 1228 | "arm64" 1229 | ], 1230 | "dev": true, 1231 | "optional": true, 1232 | "os": [ 1233 | "win32" 1234 | ] 1235 | }, 1236 | "node_modules/@rollup/rollup-win32-ia32-msvc": { 1237 | "version": "4.14.0", 1238 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.14.0.tgz", 1239 | "integrity": "sha512-e/PBHxPdJ00O9p5Ui43+vixSgVf4NlLsmV6QneGERJ3lnjIua/kim6PRFe3iDueT1rQcgSkYP8ZBBXa/h4iPvw==", 1240 | "cpu": [ 1241 | "ia32" 1242 | ], 1243 | "dev": true, 1244 | "optional": true, 1245 | "os": [ 1246 | "win32" 1247 | ] 1248 | }, 1249 | "node_modules/@rollup/rollup-win32-x64-msvc": { 1250 | "version": "4.14.0", 1251 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.14.0.tgz", 1252 | "integrity": "sha512-aGg7iToJjdklmxlUlJh/PaPNa4PmqHfyRMLunbL3eaMO0gp656+q1zOKkpJ/CVe9CryJv6tAN1HDoR8cNGzkag==", 1253 | "cpu": [ 1254 | "x64" 1255 | ], 1256 | "dev": true, 1257 | "optional": true, 1258 | "os": [ 1259 | "win32" 1260 | ] 1261 | }, 1262 | "node_modules/@types/babel__core": { 1263 | "version": "7.20.5", 1264 | "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", 1265 | "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", 1266 | "dev": true, 1267 | "dependencies": { 1268 | "@babel/parser": "^7.20.7", 1269 | "@babel/types": "^7.20.7", 1270 | "@types/babel__generator": "*", 1271 | "@types/babel__template": "*", 1272 | "@types/babel__traverse": "*" 1273 | } 1274 | }, 1275 | "node_modules/@types/babel__generator": { 1276 | "version": "7.6.8", 1277 | "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", 1278 | "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", 1279 | "dev": true, 1280 | "dependencies": { 1281 | "@babel/types": "^7.0.0" 1282 | } 1283 | }, 1284 | "node_modules/@types/babel__template": { 1285 | "version": "7.4.4", 1286 | "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", 1287 | "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", 1288 | "dev": true, 1289 | "dependencies": { 1290 | "@babel/parser": "^7.1.0", 1291 | "@babel/types": "^7.0.0" 1292 | } 1293 | }, 1294 | "node_modules/@types/babel__traverse": { 1295 | "version": "7.20.5", 1296 | "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.5.tgz", 1297 | "integrity": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==", 1298 | "dev": true, 1299 | "dependencies": { 1300 | "@babel/types": "^7.20.7" 1301 | } 1302 | }, 1303 | "node_modules/@types/dat.gui": { 1304 | "version": "0.7.13", 1305 | "resolved": "https://registry.npmjs.org/@types/dat.gui/-/dat.gui-0.7.13.tgz", 1306 | "integrity": "sha512-LmG4Pr0mbsB/1WVttf8xaHx45BvSBDGY5D9+0/9AZCbI4vvOguwBHZdKyJMxt5Yst8+icRSHKmr7ClV2u5ZtDA==", 1307 | "dev": true 1308 | }, 1309 | "node_modules/@types/estree": { 1310 | "version": "1.0.5", 1311 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", 1312 | "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", 1313 | "dev": true 1314 | }, 1315 | "node_modules/@types/json-schema": { 1316 | "version": "7.0.15", 1317 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 1318 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 1319 | "dev": true 1320 | }, 1321 | "node_modules/@types/prop-types": { 1322 | "version": "15.7.12", 1323 | "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz", 1324 | "integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==", 1325 | "dev": true 1326 | }, 1327 | "node_modules/@types/react": { 1328 | "version": "18.2.74", 1329 | "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.74.tgz", 1330 | "integrity": "sha512-9AEqNZZyBx8OdZpxzQlaFEVCSFUM2YXJH46yPOiOpm078k6ZLOCcuAzGum/zK8YBwY+dbahVNbHrbgrAwIRlqw==", 1331 | "dev": true, 1332 | "dependencies": { 1333 | "@types/prop-types": "*", 1334 | "csstype": "^3.0.2" 1335 | } 1336 | }, 1337 | "node_modules/@types/react-dom": { 1338 | "version": "18.2.24", 1339 | "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.24.tgz", 1340 | "integrity": "sha512-cN6upcKd8zkGy4HU9F1+/s98Hrp6D4MOcippK4PoE8OZRngohHZpbJn1GsaDLz87MqvHNoT13nHvNqM9ocRHZg==", 1341 | "dev": true, 1342 | "dependencies": { 1343 | "@types/react": "*" 1344 | } 1345 | }, 1346 | "node_modules/@types/semver": { 1347 | "version": "7.5.8", 1348 | "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", 1349 | "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", 1350 | "dev": true 1351 | }, 1352 | "node_modules/@types/stats.js": { 1353 | "version": "0.17.3", 1354 | "resolved": "https://registry.npmjs.org/@types/stats.js/-/stats.js-0.17.3.tgz", 1355 | "integrity": "sha512-pXNfAD3KHOdif9EQXZ9deK82HVNaXP5ZIF5RP2QG6OQFNTaY2YIetfrE9t528vEreGQvEPRDDc8muaoYeK0SxQ==", 1356 | "dev": true 1357 | }, 1358 | "node_modules/@types/three": { 1359 | "version": "0.163.0", 1360 | "resolved": "https://registry.npmjs.org/@types/three/-/three-0.163.0.tgz", 1361 | "integrity": "sha512-uIdDhsXRpQiBUkflBS/i1l3JX14fW6Ot9csed60nfbZNXHDTRsnV2xnTVwXcgbvTiboAR4IW+t+lTL5f1rqIqA==", 1362 | "dev": true, 1363 | "dependencies": { 1364 | "@tweenjs/tween.js": "~23.1.1", 1365 | "@types/stats.js": "*", 1366 | "@types/webxr": "*", 1367 | "fflate": "~0.8.2", 1368 | "meshoptimizer": "~0.18.1" 1369 | } 1370 | }, 1371 | "node_modules/@types/three/node_modules/@tweenjs/tween.js": { 1372 | "version": "23.1.3", 1373 | "resolved": "https://registry.npmjs.org/@tweenjs/tween.js/-/tween.js-23.1.3.tgz", 1374 | "integrity": "sha512-vJmvvwFxYuGnF2axRtPYocag6Clbb5YS7kLL+SO/TeVFzHqDIWrNKYtcsPMibjDx9O+bu+psAy9NKfWklassUA==", 1375 | "dev": true 1376 | }, 1377 | "node_modules/@types/webxr": { 1378 | "version": "0.5.15", 1379 | "resolved": "https://registry.npmjs.org/@types/webxr/-/webxr-0.5.15.tgz", 1380 | "integrity": "sha512-nC9116Gd4N+CqTxqo6gvCfhAMAzgRcfS8ZsciNodHq8uwW4JCVKwhagw8yN0XmC7mHrLnWqniJpoVEiR+72Drw==", 1381 | "dev": true 1382 | }, 1383 | "node_modules/@typescript-eslint/eslint-plugin": { 1384 | "version": "7.5.0", 1385 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.5.0.tgz", 1386 | "integrity": "sha512-HpqNTH8Du34nLxbKgVMGljZMG0rJd2O9ecvr2QLYp+7512ty1j42KnsFwspPXg1Vh8an9YImf6CokUBltisZFQ==", 1387 | "dev": true, 1388 | "dependencies": { 1389 | "@eslint-community/regexpp": "^4.5.1", 1390 | "@typescript-eslint/scope-manager": "7.5.0", 1391 | "@typescript-eslint/type-utils": "7.5.0", 1392 | "@typescript-eslint/utils": "7.5.0", 1393 | "@typescript-eslint/visitor-keys": "7.5.0", 1394 | "debug": "^4.3.4", 1395 | "graphemer": "^1.4.0", 1396 | "ignore": "^5.2.4", 1397 | "natural-compare": "^1.4.0", 1398 | "semver": "^7.5.4", 1399 | "ts-api-utils": "^1.0.1" 1400 | }, 1401 | "engines": { 1402 | "node": "^18.18.0 || >=20.0.0" 1403 | }, 1404 | "funding": { 1405 | "type": "opencollective", 1406 | "url": "https://opencollective.com/typescript-eslint" 1407 | }, 1408 | "peerDependencies": { 1409 | "@typescript-eslint/parser": "^7.0.0", 1410 | "eslint": "^8.56.0" 1411 | }, 1412 | "peerDependenciesMeta": { 1413 | "typescript": { 1414 | "optional": true 1415 | } 1416 | } 1417 | }, 1418 | "node_modules/@typescript-eslint/parser": { 1419 | "version": "7.5.0", 1420 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.5.0.tgz", 1421 | "integrity": "sha512-cj+XGhNujfD2/wzR1tabNsidnYRaFfEkcULdcIyVBYcXjBvBKOes+mpMBP7hMpOyk+gBcfXsrg4NBGAStQyxjQ==", 1422 | "dev": true, 1423 | "dependencies": { 1424 | "@typescript-eslint/scope-manager": "7.5.0", 1425 | "@typescript-eslint/types": "7.5.0", 1426 | "@typescript-eslint/typescript-estree": "7.5.0", 1427 | "@typescript-eslint/visitor-keys": "7.5.0", 1428 | "debug": "^4.3.4" 1429 | }, 1430 | "engines": { 1431 | "node": "^18.18.0 || >=20.0.0" 1432 | }, 1433 | "funding": { 1434 | "type": "opencollective", 1435 | "url": "https://opencollective.com/typescript-eslint" 1436 | }, 1437 | "peerDependencies": { 1438 | "eslint": "^8.56.0" 1439 | }, 1440 | "peerDependenciesMeta": { 1441 | "typescript": { 1442 | "optional": true 1443 | } 1444 | } 1445 | }, 1446 | "node_modules/@typescript-eslint/scope-manager": { 1447 | "version": "7.5.0", 1448 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.5.0.tgz", 1449 | "integrity": "sha512-Z1r7uJY0MDeUlql9XJ6kRVgk/sP11sr3HKXn268HZyqL7i4cEfrdFuSSY/0tUqT37l5zT0tJOsuDP16kio85iA==", 1450 | "dev": true, 1451 | "dependencies": { 1452 | "@typescript-eslint/types": "7.5.0", 1453 | "@typescript-eslint/visitor-keys": "7.5.0" 1454 | }, 1455 | "engines": { 1456 | "node": "^18.18.0 || >=20.0.0" 1457 | }, 1458 | "funding": { 1459 | "type": "opencollective", 1460 | "url": "https://opencollective.com/typescript-eslint" 1461 | } 1462 | }, 1463 | "node_modules/@typescript-eslint/type-utils": { 1464 | "version": "7.5.0", 1465 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.5.0.tgz", 1466 | "integrity": "sha512-A021Rj33+G8mx2Dqh0nMO9GyjjIBK3MqgVgZ2qlKf6CJy51wY/lkkFqq3TqqnH34XyAHUkq27IjlUkWlQRpLHw==", 1467 | "dev": true, 1468 | "dependencies": { 1469 | "@typescript-eslint/typescript-estree": "7.5.0", 1470 | "@typescript-eslint/utils": "7.5.0", 1471 | "debug": "^4.3.4", 1472 | "ts-api-utils": "^1.0.1" 1473 | }, 1474 | "engines": { 1475 | "node": "^18.18.0 || >=20.0.0" 1476 | }, 1477 | "funding": { 1478 | "type": "opencollective", 1479 | "url": "https://opencollective.com/typescript-eslint" 1480 | }, 1481 | "peerDependencies": { 1482 | "eslint": "^8.56.0" 1483 | }, 1484 | "peerDependenciesMeta": { 1485 | "typescript": { 1486 | "optional": true 1487 | } 1488 | } 1489 | }, 1490 | "node_modules/@typescript-eslint/types": { 1491 | "version": "7.5.0", 1492 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.5.0.tgz", 1493 | "integrity": "sha512-tv5B4IHeAdhR7uS4+bf8Ov3k793VEVHd45viRRkehIUZxm0WF82VPiLgHzA/Xl4TGPg1ZD49vfxBKFPecD5/mg==", 1494 | "dev": true, 1495 | "engines": { 1496 | "node": "^18.18.0 || >=20.0.0" 1497 | }, 1498 | "funding": { 1499 | "type": "opencollective", 1500 | "url": "https://opencollective.com/typescript-eslint" 1501 | } 1502 | }, 1503 | "node_modules/@typescript-eslint/typescript-estree": { 1504 | "version": "7.5.0", 1505 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.5.0.tgz", 1506 | "integrity": "sha512-YklQQfe0Rv2PZEueLTUffiQGKQneiIEKKnfIqPIOxgM9lKSZFCjT5Ad4VqRKj/U4+kQE3fa8YQpskViL7WjdPQ==", 1507 | "dev": true, 1508 | "dependencies": { 1509 | "@typescript-eslint/types": "7.5.0", 1510 | "@typescript-eslint/visitor-keys": "7.5.0", 1511 | "debug": "^4.3.4", 1512 | "globby": "^11.1.0", 1513 | "is-glob": "^4.0.3", 1514 | "minimatch": "9.0.3", 1515 | "semver": "^7.5.4", 1516 | "ts-api-utils": "^1.0.1" 1517 | }, 1518 | "engines": { 1519 | "node": "^18.18.0 || >=20.0.0" 1520 | }, 1521 | "funding": { 1522 | "type": "opencollective", 1523 | "url": "https://opencollective.com/typescript-eslint" 1524 | }, 1525 | "peerDependenciesMeta": { 1526 | "typescript": { 1527 | "optional": true 1528 | } 1529 | } 1530 | }, 1531 | "node_modules/@typescript-eslint/utils": { 1532 | "version": "7.5.0", 1533 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.5.0.tgz", 1534 | "integrity": "sha512-3vZl9u0R+/FLQcpy2EHyRGNqAS/ofJ3Ji8aebilfJe+fobK8+LbIFmrHciLVDxjDoONmufDcnVSF38KwMEOjzw==", 1535 | "dev": true, 1536 | "dependencies": { 1537 | "@eslint-community/eslint-utils": "^4.4.0", 1538 | "@types/json-schema": "^7.0.12", 1539 | "@types/semver": "^7.5.0", 1540 | "@typescript-eslint/scope-manager": "7.5.0", 1541 | "@typescript-eslint/types": "7.5.0", 1542 | "@typescript-eslint/typescript-estree": "7.5.0", 1543 | "semver": "^7.5.4" 1544 | }, 1545 | "engines": { 1546 | "node": "^18.18.0 || >=20.0.0" 1547 | }, 1548 | "funding": { 1549 | "type": "opencollective", 1550 | "url": "https://opencollective.com/typescript-eslint" 1551 | }, 1552 | "peerDependencies": { 1553 | "eslint": "^8.56.0" 1554 | } 1555 | }, 1556 | "node_modules/@typescript-eslint/visitor-keys": { 1557 | "version": "7.5.0", 1558 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.5.0.tgz", 1559 | "integrity": "sha512-mcuHM/QircmA6O7fy6nn2w/3ditQkj+SgtOc8DW3uQ10Yfj42amm2i+6F2K4YAOPNNTmE6iM1ynM6lrSwdendA==", 1560 | "dev": true, 1561 | "dependencies": { 1562 | "@typescript-eslint/types": "7.5.0", 1563 | "eslint-visitor-keys": "^3.4.1" 1564 | }, 1565 | "engines": { 1566 | "node": "^18.18.0 || >=20.0.0" 1567 | }, 1568 | "funding": { 1569 | "type": "opencollective", 1570 | "url": "https://opencollective.com/typescript-eslint" 1571 | } 1572 | }, 1573 | "node_modules/@ungap/structured-clone": { 1574 | "version": "1.2.0", 1575 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", 1576 | "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", 1577 | "dev": true 1578 | }, 1579 | "node_modules/@vitejs/plugin-react": { 1580 | "version": "4.2.1", 1581 | "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.2.1.tgz", 1582 | "integrity": "sha512-oojO9IDc4nCUUi8qIR11KoQm0XFFLIwsRBwHRR4d/88IWghn1y6ckz/bJ8GHDCsYEJee8mDzqtJxh15/cisJNQ==", 1583 | "dev": true, 1584 | "dependencies": { 1585 | "@babel/core": "^7.23.5", 1586 | "@babel/plugin-transform-react-jsx-self": "^7.23.3", 1587 | "@babel/plugin-transform-react-jsx-source": "^7.23.3", 1588 | "@types/babel__core": "^7.20.5", 1589 | "react-refresh": "^0.14.0" 1590 | }, 1591 | "engines": { 1592 | "node": "^14.18.0 || >=16.0.0" 1593 | }, 1594 | "peerDependencies": { 1595 | "vite": "^4.2.0 || ^5.0.0" 1596 | } 1597 | }, 1598 | "node_modules/acorn": { 1599 | "version": "8.11.3", 1600 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", 1601 | "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", 1602 | "dev": true, 1603 | "bin": { 1604 | "acorn": "bin/acorn" 1605 | }, 1606 | "engines": { 1607 | "node": ">=0.4.0" 1608 | } 1609 | }, 1610 | "node_modules/acorn-jsx": { 1611 | "version": "5.3.2", 1612 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 1613 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 1614 | "dev": true, 1615 | "peerDependencies": { 1616 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 1617 | } 1618 | }, 1619 | "node_modules/ajv": { 1620 | "version": "6.12.6", 1621 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 1622 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 1623 | "dev": true, 1624 | "dependencies": { 1625 | "fast-deep-equal": "^3.1.1", 1626 | "fast-json-stable-stringify": "^2.0.0", 1627 | "json-schema-traverse": "^0.4.1", 1628 | "uri-js": "^4.2.2" 1629 | }, 1630 | "funding": { 1631 | "type": "github", 1632 | "url": "https://github.com/sponsors/epoberezkin" 1633 | } 1634 | }, 1635 | "node_modules/ansi-regex": { 1636 | "version": "5.0.1", 1637 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1638 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1639 | "dev": true, 1640 | "engines": { 1641 | "node": ">=8" 1642 | } 1643 | }, 1644 | "node_modules/ansi-styles": { 1645 | "version": "3.2.1", 1646 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 1647 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 1648 | "dev": true, 1649 | "dependencies": { 1650 | "color-convert": "^1.9.0" 1651 | }, 1652 | "engines": { 1653 | "node": ">=4" 1654 | } 1655 | }, 1656 | "node_modules/any-promise": { 1657 | "version": "1.3.0", 1658 | "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", 1659 | "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", 1660 | "dev": true 1661 | }, 1662 | "node_modules/anymatch": { 1663 | "version": "3.1.3", 1664 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 1665 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 1666 | "dev": true, 1667 | "dependencies": { 1668 | "normalize-path": "^3.0.0", 1669 | "picomatch": "^2.0.4" 1670 | }, 1671 | "engines": { 1672 | "node": ">= 8" 1673 | } 1674 | }, 1675 | "node_modules/arg": { 1676 | "version": "5.0.2", 1677 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", 1678 | "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", 1679 | "dev": true 1680 | }, 1681 | "node_modules/argparse": { 1682 | "version": "2.0.1", 1683 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 1684 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 1685 | "dev": true 1686 | }, 1687 | "node_modules/array-union": { 1688 | "version": "2.1.0", 1689 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 1690 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 1691 | "dev": true, 1692 | "engines": { 1693 | "node": ">=8" 1694 | } 1695 | }, 1696 | "node_modules/autoprefixer": { 1697 | "version": "10.4.19", 1698 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", 1699 | "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", 1700 | "dev": true, 1701 | "funding": [ 1702 | { 1703 | "type": "opencollective", 1704 | "url": "https://opencollective.com/postcss/" 1705 | }, 1706 | { 1707 | "type": "tidelift", 1708 | "url": "https://tidelift.com/funding/github/npm/autoprefixer" 1709 | }, 1710 | { 1711 | "type": "github", 1712 | "url": "https://github.com/sponsors/ai" 1713 | } 1714 | ], 1715 | "dependencies": { 1716 | "browserslist": "^4.23.0", 1717 | "caniuse-lite": "^1.0.30001599", 1718 | "fraction.js": "^4.3.7", 1719 | "normalize-range": "^0.1.2", 1720 | "picocolors": "^1.0.0", 1721 | "postcss-value-parser": "^4.2.0" 1722 | }, 1723 | "bin": { 1724 | "autoprefixer": "bin/autoprefixer" 1725 | }, 1726 | "engines": { 1727 | "node": "^10 || ^12 || >=14" 1728 | }, 1729 | "peerDependencies": { 1730 | "postcss": "^8.1.0" 1731 | } 1732 | }, 1733 | "node_modules/balanced-match": { 1734 | "version": "1.0.2", 1735 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1736 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1737 | "dev": true 1738 | }, 1739 | "node_modules/binary-extensions": { 1740 | "version": "2.3.0", 1741 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", 1742 | "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", 1743 | "dev": true, 1744 | "engines": { 1745 | "node": ">=8" 1746 | }, 1747 | "funding": { 1748 | "url": "https://github.com/sponsors/sindresorhus" 1749 | } 1750 | }, 1751 | "node_modules/brace-expansion": { 1752 | "version": "2.0.1", 1753 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 1754 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1755 | "dev": true, 1756 | "dependencies": { 1757 | "balanced-match": "^1.0.0" 1758 | } 1759 | }, 1760 | "node_modules/braces": { 1761 | "version": "3.0.2", 1762 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 1763 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 1764 | "dev": true, 1765 | "dependencies": { 1766 | "fill-range": "^7.0.1" 1767 | }, 1768 | "engines": { 1769 | "node": ">=8" 1770 | } 1771 | }, 1772 | "node_modules/browserslist": { 1773 | "version": "4.23.0", 1774 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", 1775 | "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", 1776 | "dev": true, 1777 | "funding": [ 1778 | { 1779 | "type": "opencollective", 1780 | "url": "https://opencollective.com/browserslist" 1781 | }, 1782 | { 1783 | "type": "tidelift", 1784 | "url": "https://tidelift.com/funding/github/npm/browserslist" 1785 | }, 1786 | { 1787 | "type": "github", 1788 | "url": "https://github.com/sponsors/ai" 1789 | } 1790 | ], 1791 | "dependencies": { 1792 | "caniuse-lite": "^1.0.30001587", 1793 | "electron-to-chromium": "^1.4.668", 1794 | "node-releases": "^2.0.14", 1795 | "update-browserslist-db": "^1.0.13" 1796 | }, 1797 | "bin": { 1798 | "browserslist": "cli.js" 1799 | }, 1800 | "engines": { 1801 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 1802 | } 1803 | }, 1804 | "node_modules/callsites": { 1805 | "version": "3.1.0", 1806 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1807 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1808 | "dev": true, 1809 | "engines": { 1810 | "node": ">=6" 1811 | } 1812 | }, 1813 | "node_modules/camelcase-css": { 1814 | "version": "2.0.1", 1815 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 1816 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 1817 | "dev": true, 1818 | "engines": { 1819 | "node": ">= 6" 1820 | } 1821 | }, 1822 | "node_modules/caniuse-lite": { 1823 | "version": "1.0.30001606", 1824 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001606.tgz", 1825 | "integrity": "sha512-LPbwnW4vfpJId225pwjZJOgX1m9sGfbw/RKJvw/t0QhYOOaTXHvkjVGFGPpvwEzufrjvTlsULnVTxdy4/6cqkg==", 1826 | "dev": true, 1827 | "funding": [ 1828 | { 1829 | "type": "opencollective", 1830 | "url": "https://opencollective.com/browserslist" 1831 | }, 1832 | { 1833 | "type": "tidelift", 1834 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 1835 | }, 1836 | { 1837 | "type": "github", 1838 | "url": "https://github.com/sponsors/ai" 1839 | } 1840 | ] 1841 | }, 1842 | "node_modules/chalk": { 1843 | "version": "2.4.2", 1844 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 1845 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 1846 | "dev": true, 1847 | "dependencies": { 1848 | "ansi-styles": "^3.2.1", 1849 | "escape-string-regexp": "^1.0.5", 1850 | "supports-color": "^5.3.0" 1851 | }, 1852 | "engines": { 1853 | "node": ">=4" 1854 | } 1855 | }, 1856 | "node_modules/chokidar": { 1857 | "version": "3.6.0", 1858 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", 1859 | "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", 1860 | "dev": true, 1861 | "dependencies": { 1862 | "anymatch": "~3.1.2", 1863 | "braces": "~3.0.2", 1864 | "glob-parent": "~5.1.2", 1865 | "is-binary-path": "~2.1.0", 1866 | "is-glob": "~4.0.1", 1867 | "normalize-path": "~3.0.0", 1868 | "readdirp": "~3.6.0" 1869 | }, 1870 | "engines": { 1871 | "node": ">= 8.10.0" 1872 | }, 1873 | "funding": { 1874 | "url": "https://paulmillr.com/funding/" 1875 | }, 1876 | "optionalDependencies": { 1877 | "fsevents": "~2.3.2" 1878 | } 1879 | }, 1880 | "node_modules/chokidar/node_modules/glob-parent": { 1881 | "version": "5.1.2", 1882 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1883 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1884 | "dev": true, 1885 | "dependencies": { 1886 | "is-glob": "^4.0.1" 1887 | }, 1888 | "engines": { 1889 | "node": ">= 6" 1890 | } 1891 | }, 1892 | "node_modules/color-convert": { 1893 | "version": "1.9.3", 1894 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 1895 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 1896 | "dev": true, 1897 | "dependencies": { 1898 | "color-name": "1.1.3" 1899 | } 1900 | }, 1901 | "node_modules/color-name": { 1902 | "version": "1.1.3", 1903 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 1904 | "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", 1905 | "dev": true 1906 | }, 1907 | "node_modules/commander": { 1908 | "version": "4.1.1", 1909 | "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", 1910 | "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", 1911 | "dev": true, 1912 | "engines": { 1913 | "node": ">= 6" 1914 | } 1915 | }, 1916 | "node_modules/concat-map": { 1917 | "version": "0.0.1", 1918 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1919 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1920 | "dev": true 1921 | }, 1922 | "node_modules/convert-source-map": { 1923 | "version": "2.0.0", 1924 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", 1925 | "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", 1926 | "dev": true 1927 | }, 1928 | "node_modules/cross-spawn": { 1929 | "version": "7.0.3", 1930 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1931 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1932 | "dev": true, 1933 | "dependencies": { 1934 | "path-key": "^3.1.0", 1935 | "shebang-command": "^2.0.0", 1936 | "which": "^2.0.1" 1937 | }, 1938 | "engines": { 1939 | "node": ">= 8" 1940 | } 1941 | }, 1942 | "node_modules/cssesc": { 1943 | "version": "3.0.0", 1944 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 1945 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 1946 | "dev": true, 1947 | "bin": { 1948 | "cssesc": "bin/cssesc" 1949 | }, 1950 | "engines": { 1951 | "node": ">=4" 1952 | } 1953 | }, 1954 | "node_modules/csstype": { 1955 | "version": "3.1.3", 1956 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", 1957 | "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", 1958 | "dev": true 1959 | }, 1960 | "node_modules/dat.gui": { 1961 | "version": "0.7.9", 1962 | "resolved": "https://registry.npmjs.org/dat.gui/-/dat.gui-0.7.9.tgz", 1963 | "integrity": "sha512-sCNc1OHobc+Erc1HqiswYgHdVNpSJUlk/Hz8vzOCsER7rl+oF/4+v8GXFUyCgtXpoCX6+bnmg07DedLvBLwYKQ==", 1964 | "dev": true 1965 | }, 1966 | "node_modules/debug": { 1967 | "version": "4.3.4", 1968 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 1969 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 1970 | "dev": true, 1971 | "dependencies": { 1972 | "ms": "2.1.2" 1973 | }, 1974 | "engines": { 1975 | "node": ">=6.0" 1976 | }, 1977 | "peerDependenciesMeta": { 1978 | "supports-color": { 1979 | "optional": true 1980 | } 1981 | } 1982 | }, 1983 | "node_modules/deep-is": { 1984 | "version": "0.1.4", 1985 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1986 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1987 | "dev": true 1988 | }, 1989 | "node_modules/didyoumean": { 1990 | "version": "1.2.2", 1991 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", 1992 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", 1993 | "dev": true 1994 | }, 1995 | "node_modules/dir-glob": { 1996 | "version": "3.0.1", 1997 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 1998 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 1999 | "dev": true, 2000 | "dependencies": { 2001 | "path-type": "^4.0.0" 2002 | }, 2003 | "engines": { 2004 | "node": ">=8" 2005 | } 2006 | }, 2007 | "node_modules/dlv": { 2008 | "version": "1.1.3", 2009 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 2010 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", 2011 | "dev": true 2012 | }, 2013 | "node_modules/doctrine": { 2014 | "version": "3.0.0", 2015 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 2016 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 2017 | "dev": true, 2018 | "dependencies": { 2019 | "esutils": "^2.0.2" 2020 | }, 2021 | "engines": { 2022 | "node": ">=6.0.0" 2023 | } 2024 | }, 2025 | "node_modules/eastasianwidth": { 2026 | "version": "0.2.0", 2027 | "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", 2028 | "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", 2029 | "dev": true 2030 | }, 2031 | "node_modules/electron-to-chromium": { 2032 | "version": "1.4.729", 2033 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.729.tgz", 2034 | "integrity": "sha512-bx7+5Saea/qu14kmPTDHQxkp2UnziG3iajUQu3BxFvCOnpAJdDbMV4rSl+EqFDkkpNNVUFlR1kDfpL59xfy1HA==", 2035 | "dev": true 2036 | }, 2037 | "node_modules/emoji-regex": { 2038 | "version": "9.2.2", 2039 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 2040 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", 2041 | "dev": true 2042 | }, 2043 | "node_modules/esbuild": { 2044 | "version": "0.20.2", 2045 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", 2046 | "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", 2047 | "dev": true, 2048 | "hasInstallScript": true, 2049 | "bin": { 2050 | "esbuild": "bin/esbuild" 2051 | }, 2052 | "engines": { 2053 | "node": ">=12" 2054 | }, 2055 | "optionalDependencies": { 2056 | "@esbuild/aix-ppc64": "0.20.2", 2057 | "@esbuild/android-arm": "0.20.2", 2058 | "@esbuild/android-arm64": "0.20.2", 2059 | "@esbuild/android-x64": "0.20.2", 2060 | "@esbuild/darwin-arm64": "0.20.2", 2061 | "@esbuild/darwin-x64": "0.20.2", 2062 | "@esbuild/freebsd-arm64": "0.20.2", 2063 | "@esbuild/freebsd-x64": "0.20.2", 2064 | "@esbuild/linux-arm": "0.20.2", 2065 | "@esbuild/linux-arm64": "0.20.2", 2066 | "@esbuild/linux-ia32": "0.20.2", 2067 | "@esbuild/linux-loong64": "0.20.2", 2068 | "@esbuild/linux-mips64el": "0.20.2", 2069 | "@esbuild/linux-ppc64": "0.20.2", 2070 | "@esbuild/linux-riscv64": "0.20.2", 2071 | "@esbuild/linux-s390x": "0.20.2", 2072 | "@esbuild/linux-x64": "0.20.2", 2073 | "@esbuild/netbsd-x64": "0.20.2", 2074 | "@esbuild/openbsd-x64": "0.20.2", 2075 | "@esbuild/sunos-x64": "0.20.2", 2076 | "@esbuild/win32-arm64": "0.20.2", 2077 | "@esbuild/win32-ia32": "0.20.2", 2078 | "@esbuild/win32-x64": "0.20.2" 2079 | } 2080 | }, 2081 | "node_modules/escalade": { 2082 | "version": "3.1.2", 2083 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", 2084 | "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", 2085 | "dev": true, 2086 | "engines": { 2087 | "node": ">=6" 2088 | } 2089 | }, 2090 | "node_modules/escape-string-regexp": { 2091 | "version": "1.0.5", 2092 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 2093 | "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", 2094 | "dev": true, 2095 | "engines": { 2096 | "node": ">=0.8.0" 2097 | } 2098 | }, 2099 | "node_modules/eslint": { 2100 | "version": "8.57.0", 2101 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", 2102 | "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", 2103 | "dev": true, 2104 | "dependencies": { 2105 | "@eslint-community/eslint-utils": "^4.2.0", 2106 | "@eslint-community/regexpp": "^4.6.1", 2107 | "@eslint/eslintrc": "^2.1.4", 2108 | "@eslint/js": "8.57.0", 2109 | "@humanwhocodes/config-array": "^0.11.14", 2110 | "@humanwhocodes/module-importer": "^1.0.1", 2111 | "@nodelib/fs.walk": "^1.2.8", 2112 | "@ungap/structured-clone": "^1.2.0", 2113 | "ajv": "^6.12.4", 2114 | "chalk": "^4.0.0", 2115 | "cross-spawn": "^7.0.2", 2116 | "debug": "^4.3.2", 2117 | "doctrine": "^3.0.0", 2118 | "escape-string-regexp": "^4.0.0", 2119 | "eslint-scope": "^7.2.2", 2120 | "eslint-visitor-keys": "^3.4.3", 2121 | "espree": "^9.6.1", 2122 | "esquery": "^1.4.2", 2123 | "esutils": "^2.0.2", 2124 | "fast-deep-equal": "^3.1.3", 2125 | "file-entry-cache": "^6.0.1", 2126 | "find-up": "^5.0.0", 2127 | "glob-parent": "^6.0.2", 2128 | "globals": "^13.19.0", 2129 | "graphemer": "^1.4.0", 2130 | "ignore": "^5.2.0", 2131 | "imurmurhash": "^0.1.4", 2132 | "is-glob": "^4.0.0", 2133 | "is-path-inside": "^3.0.3", 2134 | "js-yaml": "^4.1.0", 2135 | "json-stable-stringify-without-jsonify": "^1.0.1", 2136 | "levn": "^0.4.1", 2137 | "lodash.merge": "^4.6.2", 2138 | "minimatch": "^3.1.2", 2139 | "natural-compare": "^1.4.0", 2140 | "optionator": "^0.9.3", 2141 | "strip-ansi": "^6.0.1", 2142 | "text-table": "^0.2.0" 2143 | }, 2144 | "bin": { 2145 | "eslint": "bin/eslint.js" 2146 | }, 2147 | "engines": { 2148 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 2149 | }, 2150 | "funding": { 2151 | "url": "https://opencollective.com/eslint" 2152 | } 2153 | }, 2154 | "node_modules/eslint-plugin-react-hooks": { 2155 | "version": "4.6.0", 2156 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", 2157 | "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", 2158 | "dev": true, 2159 | "engines": { 2160 | "node": ">=10" 2161 | }, 2162 | "peerDependencies": { 2163 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" 2164 | } 2165 | }, 2166 | "node_modules/eslint-plugin-react-refresh": { 2167 | "version": "0.4.6", 2168 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.6.tgz", 2169 | "integrity": "sha512-NjGXdm7zgcKRkKMua34qVO9doI7VOxZ6ancSvBELJSSoX97jyndXcSoa8XBh69JoB31dNz3EEzlMcizZl7LaMA==", 2170 | "dev": true, 2171 | "peerDependencies": { 2172 | "eslint": ">=7" 2173 | } 2174 | }, 2175 | "node_modules/eslint-scope": { 2176 | "version": "7.2.2", 2177 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 2178 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 2179 | "dev": true, 2180 | "dependencies": { 2181 | "esrecurse": "^4.3.0", 2182 | "estraverse": "^5.2.0" 2183 | }, 2184 | "engines": { 2185 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 2186 | }, 2187 | "funding": { 2188 | "url": "https://opencollective.com/eslint" 2189 | } 2190 | }, 2191 | "node_modules/eslint-visitor-keys": { 2192 | "version": "3.4.3", 2193 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 2194 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 2195 | "dev": true, 2196 | "engines": { 2197 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 2198 | }, 2199 | "funding": { 2200 | "url": "https://opencollective.com/eslint" 2201 | } 2202 | }, 2203 | "node_modules/eslint/node_modules/ansi-styles": { 2204 | "version": "4.3.0", 2205 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 2206 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 2207 | "dev": true, 2208 | "dependencies": { 2209 | "color-convert": "^2.0.1" 2210 | }, 2211 | "engines": { 2212 | "node": ">=8" 2213 | }, 2214 | "funding": { 2215 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 2216 | } 2217 | }, 2218 | "node_modules/eslint/node_modules/brace-expansion": { 2219 | "version": "1.1.11", 2220 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 2221 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 2222 | "dev": true, 2223 | "dependencies": { 2224 | "balanced-match": "^1.0.0", 2225 | "concat-map": "0.0.1" 2226 | } 2227 | }, 2228 | "node_modules/eslint/node_modules/chalk": { 2229 | "version": "4.1.2", 2230 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 2231 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 2232 | "dev": true, 2233 | "dependencies": { 2234 | "ansi-styles": "^4.1.0", 2235 | "supports-color": "^7.1.0" 2236 | }, 2237 | "engines": { 2238 | "node": ">=10" 2239 | }, 2240 | "funding": { 2241 | "url": "https://github.com/chalk/chalk?sponsor=1" 2242 | } 2243 | }, 2244 | "node_modules/eslint/node_modules/color-convert": { 2245 | "version": "2.0.1", 2246 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 2247 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 2248 | "dev": true, 2249 | "dependencies": { 2250 | "color-name": "~1.1.4" 2251 | }, 2252 | "engines": { 2253 | "node": ">=7.0.0" 2254 | } 2255 | }, 2256 | "node_modules/eslint/node_modules/color-name": { 2257 | "version": "1.1.4", 2258 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 2259 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 2260 | "dev": true 2261 | }, 2262 | "node_modules/eslint/node_modules/escape-string-regexp": { 2263 | "version": "4.0.0", 2264 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 2265 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 2266 | "dev": true, 2267 | "engines": { 2268 | "node": ">=10" 2269 | }, 2270 | "funding": { 2271 | "url": "https://github.com/sponsors/sindresorhus" 2272 | } 2273 | }, 2274 | "node_modules/eslint/node_modules/globals": { 2275 | "version": "13.24.0", 2276 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 2277 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 2278 | "dev": true, 2279 | "dependencies": { 2280 | "type-fest": "^0.20.2" 2281 | }, 2282 | "engines": { 2283 | "node": ">=8" 2284 | }, 2285 | "funding": { 2286 | "url": "https://github.com/sponsors/sindresorhus" 2287 | } 2288 | }, 2289 | "node_modules/eslint/node_modules/has-flag": { 2290 | "version": "4.0.0", 2291 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2292 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2293 | "dev": true, 2294 | "engines": { 2295 | "node": ">=8" 2296 | } 2297 | }, 2298 | "node_modules/eslint/node_modules/minimatch": { 2299 | "version": "3.1.2", 2300 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2301 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2302 | "dev": true, 2303 | "dependencies": { 2304 | "brace-expansion": "^1.1.7" 2305 | }, 2306 | "engines": { 2307 | "node": "*" 2308 | } 2309 | }, 2310 | "node_modules/eslint/node_modules/supports-color": { 2311 | "version": "7.2.0", 2312 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 2313 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 2314 | "dev": true, 2315 | "dependencies": { 2316 | "has-flag": "^4.0.0" 2317 | }, 2318 | "engines": { 2319 | "node": ">=8" 2320 | } 2321 | }, 2322 | "node_modules/espree": { 2323 | "version": "9.6.1", 2324 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 2325 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 2326 | "dev": true, 2327 | "dependencies": { 2328 | "acorn": "^8.9.0", 2329 | "acorn-jsx": "^5.3.2", 2330 | "eslint-visitor-keys": "^3.4.1" 2331 | }, 2332 | "engines": { 2333 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 2334 | }, 2335 | "funding": { 2336 | "url": "https://opencollective.com/eslint" 2337 | } 2338 | }, 2339 | "node_modules/esquery": { 2340 | "version": "1.5.0", 2341 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 2342 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 2343 | "dev": true, 2344 | "dependencies": { 2345 | "estraverse": "^5.1.0" 2346 | }, 2347 | "engines": { 2348 | "node": ">=0.10" 2349 | } 2350 | }, 2351 | "node_modules/esrecurse": { 2352 | "version": "4.3.0", 2353 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 2354 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 2355 | "dev": true, 2356 | "dependencies": { 2357 | "estraverse": "^5.2.0" 2358 | }, 2359 | "engines": { 2360 | "node": ">=4.0" 2361 | } 2362 | }, 2363 | "node_modules/estraverse": { 2364 | "version": "5.3.0", 2365 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 2366 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 2367 | "dev": true, 2368 | "engines": { 2369 | "node": ">=4.0" 2370 | } 2371 | }, 2372 | "node_modules/esutils": { 2373 | "version": "2.0.3", 2374 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 2375 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 2376 | "dev": true, 2377 | "engines": { 2378 | "node": ">=0.10.0" 2379 | } 2380 | }, 2381 | "node_modules/fast-deep-equal": { 2382 | "version": "3.1.3", 2383 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 2384 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 2385 | "dev": true 2386 | }, 2387 | "node_modules/fast-glob": { 2388 | "version": "3.3.2", 2389 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 2390 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 2391 | "dev": true, 2392 | "dependencies": { 2393 | "@nodelib/fs.stat": "^2.0.2", 2394 | "@nodelib/fs.walk": "^1.2.3", 2395 | "glob-parent": "^5.1.2", 2396 | "merge2": "^1.3.0", 2397 | "micromatch": "^4.0.4" 2398 | }, 2399 | "engines": { 2400 | "node": ">=8.6.0" 2401 | } 2402 | }, 2403 | "node_modules/fast-glob/node_modules/glob-parent": { 2404 | "version": "5.1.2", 2405 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 2406 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 2407 | "dev": true, 2408 | "dependencies": { 2409 | "is-glob": "^4.0.1" 2410 | }, 2411 | "engines": { 2412 | "node": ">= 6" 2413 | } 2414 | }, 2415 | "node_modules/fast-json-stable-stringify": { 2416 | "version": "2.1.0", 2417 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 2418 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 2419 | "dev": true 2420 | }, 2421 | "node_modules/fast-levenshtein": { 2422 | "version": "2.0.6", 2423 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 2424 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 2425 | "dev": true 2426 | }, 2427 | "node_modules/fastq": { 2428 | "version": "1.17.1", 2429 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", 2430 | "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", 2431 | "dev": true, 2432 | "dependencies": { 2433 | "reusify": "^1.0.4" 2434 | } 2435 | }, 2436 | "node_modules/fflate": { 2437 | "version": "0.8.2", 2438 | "resolved": "https://registry.npmjs.org/fflate/-/fflate-0.8.2.tgz", 2439 | "integrity": "sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==", 2440 | "dev": true 2441 | }, 2442 | "node_modules/file-entry-cache": { 2443 | "version": "6.0.1", 2444 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 2445 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 2446 | "dev": true, 2447 | "dependencies": { 2448 | "flat-cache": "^3.0.4" 2449 | }, 2450 | "engines": { 2451 | "node": "^10.12.0 || >=12.0.0" 2452 | } 2453 | }, 2454 | "node_modules/fill-range": { 2455 | "version": "7.0.1", 2456 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 2457 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 2458 | "dev": true, 2459 | "dependencies": { 2460 | "to-regex-range": "^5.0.1" 2461 | }, 2462 | "engines": { 2463 | "node": ">=8" 2464 | } 2465 | }, 2466 | "node_modules/find-up": { 2467 | "version": "5.0.0", 2468 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 2469 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 2470 | "dev": true, 2471 | "dependencies": { 2472 | "locate-path": "^6.0.0", 2473 | "path-exists": "^4.0.0" 2474 | }, 2475 | "engines": { 2476 | "node": ">=10" 2477 | }, 2478 | "funding": { 2479 | "url": "https://github.com/sponsors/sindresorhus" 2480 | } 2481 | }, 2482 | "node_modules/flat-cache": { 2483 | "version": "3.2.0", 2484 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", 2485 | "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", 2486 | "dev": true, 2487 | "dependencies": { 2488 | "flatted": "^3.2.9", 2489 | "keyv": "^4.5.3", 2490 | "rimraf": "^3.0.2" 2491 | }, 2492 | "engines": { 2493 | "node": "^10.12.0 || >=12.0.0" 2494 | } 2495 | }, 2496 | "node_modules/flatted": { 2497 | "version": "3.3.1", 2498 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", 2499 | "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", 2500 | "dev": true 2501 | }, 2502 | "node_modules/foreground-child": { 2503 | "version": "3.1.1", 2504 | "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", 2505 | "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", 2506 | "dev": true, 2507 | "dependencies": { 2508 | "cross-spawn": "^7.0.0", 2509 | "signal-exit": "^4.0.1" 2510 | }, 2511 | "engines": { 2512 | "node": ">=14" 2513 | }, 2514 | "funding": { 2515 | "url": "https://github.com/sponsors/isaacs" 2516 | } 2517 | }, 2518 | "node_modules/fraction.js": { 2519 | "version": "4.3.7", 2520 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", 2521 | "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", 2522 | "dev": true, 2523 | "engines": { 2524 | "node": "*" 2525 | }, 2526 | "funding": { 2527 | "type": "patreon", 2528 | "url": "https://github.com/sponsors/rawify" 2529 | } 2530 | }, 2531 | "node_modules/fs.realpath": { 2532 | "version": "1.0.0", 2533 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 2534 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 2535 | "dev": true 2536 | }, 2537 | "node_modules/fsevents": { 2538 | "version": "2.3.3", 2539 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 2540 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 2541 | "dev": true, 2542 | "hasInstallScript": true, 2543 | "optional": true, 2544 | "os": [ 2545 | "darwin" 2546 | ], 2547 | "engines": { 2548 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 2549 | } 2550 | }, 2551 | "node_modules/function-bind": { 2552 | "version": "1.1.2", 2553 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 2554 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 2555 | "dev": true, 2556 | "funding": { 2557 | "url": "https://github.com/sponsors/ljharb" 2558 | } 2559 | }, 2560 | "node_modules/gensync": { 2561 | "version": "1.0.0-beta.2", 2562 | "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", 2563 | "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", 2564 | "dev": true, 2565 | "engines": { 2566 | "node": ">=6.9.0" 2567 | } 2568 | }, 2569 | "node_modules/glob": { 2570 | "version": "7.2.3", 2571 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 2572 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 2573 | "dev": true, 2574 | "dependencies": { 2575 | "fs.realpath": "^1.0.0", 2576 | "inflight": "^1.0.4", 2577 | "inherits": "2", 2578 | "minimatch": "^3.1.1", 2579 | "once": "^1.3.0", 2580 | "path-is-absolute": "^1.0.0" 2581 | }, 2582 | "engines": { 2583 | "node": "*" 2584 | }, 2585 | "funding": { 2586 | "url": "https://github.com/sponsors/isaacs" 2587 | } 2588 | }, 2589 | "node_modules/glob-parent": { 2590 | "version": "6.0.2", 2591 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 2592 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 2593 | "dev": true, 2594 | "dependencies": { 2595 | "is-glob": "^4.0.3" 2596 | }, 2597 | "engines": { 2598 | "node": ">=10.13.0" 2599 | } 2600 | }, 2601 | "node_modules/glob/node_modules/brace-expansion": { 2602 | "version": "1.1.11", 2603 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 2604 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 2605 | "dev": true, 2606 | "dependencies": { 2607 | "balanced-match": "^1.0.0", 2608 | "concat-map": "0.0.1" 2609 | } 2610 | }, 2611 | "node_modules/glob/node_modules/minimatch": { 2612 | "version": "3.1.2", 2613 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2614 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2615 | "dev": true, 2616 | "dependencies": { 2617 | "brace-expansion": "^1.1.7" 2618 | }, 2619 | "engines": { 2620 | "node": "*" 2621 | } 2622 | }, 2623 | "node_modules/globals": { 2624 | "version": "11.12.0", 2625 | "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", 2626 | "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", 2627 | "dev": true, 2628 | "engines": { 2629 | "node": ">=4" 2630 | } 2631 | }, 2632 | "node_modules/globby": { 2633 | "version": "11.1.0", 2634 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 2635 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 2636 | "dev": true, 2637 | "dependencies": { 2638 | "array-union": "^2.1.0", 2639 | "dir-glob": "^3.0.1", 2640 | "fast-glob": "^3.2.9", 2641 | "ignore": "^5.2.0", 2642 | "merge2": "^1.4.1", 2643 | "slash": "^3.0.0" 2644 | }, 2645 | "engines": { 2646 | "node": ">=10" 2647 | }, 2648 | "funding": { 2649 | "url": "https://github.com/sponsors/sindresorhus" 2650 | } 2651 | }, 2652 | "node_modules/graphemer": { 2653 | "version": "1.4.0", 2654 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 2655 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 2656 | "dev": true 2657 | }, 2658 | "node_modules/has-flag": { 2659 | "version": "3.0.0", 2660 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 2661 | "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", 2662 | "dev": true, 2663 | "engines": { 2664 | "node": ">=4" 2665 | } 2666 | }, 2667 | "node_modules/hasown": { 2668 | "version": "2.0.2", 2669 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", 2670 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", 2671 | "dev": true, 2672 | "dependencies": { 2673 | "function-bind": "^1.1.2" 2674 | }, 2675 | "engines": { 2676 | "node": ">= 0.4" 2677 | } 2678 | }, 2679 | "node_modules/ignore": { 2680 | "version": "5.3.1", 2681 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", 2682 | "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", 2683 | "dev": true, 2684 | "engines": { 2685 | "node": ">= 4" 2686 | } 2687 | }, 2688 | "node_modules/import-fresh": { 2689 | "version": "3.3.0", 2690 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2691 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2692 | "dev": true, 2693 | "dependencies": { 2694 | "parent-module": "^1.0.0", 2695 | "resolve-from": "^4.0.0" 2696 | }, 2697 | "engines": { 2698 | "node": ">=6" 2699 | }, 2700 | "funding": { 2701 | "url": "https://github.com/sponsors/sindresorhus" 2702 | } 2703 | }, 2704 | "node_modules/imurmurhash": { 2705 | "version": "0.1.4", 2706 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2707 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2708 | "dev": true, 2709 | "engines": { 2710 | "node": ">=0.8.19" 2711 | } 2712 | }, 2713 | "node_modules/inflight": { 2714 | "version": "1.0.6", 2715 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2716 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2717 | "dev": true, 2718 | "dependencies": { 2719 | "once": "^1.3.0", 2720 | "wrappy": "1" 2721 | } 2722 | }, 2723 | "node_modules/inherits": { 2724 | "version": "2.0.4", 2725 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2726 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 2727 | "dev": true 2728 | }, 2729 | "node_modules/is-binary-path": { 2730 | "version": "2.1.0", 2731 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 2732 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 2733 | "dev": true, 2734 | "dependencies": { 2735 | "binary-extensions": "^2.0.0" 2736 | }, 2737 | "engines": { 2738 | "node": ">=8" 2739 | } 2740 | }, 2741 | "node_modules/is-core-module": { 2742 | "version": "2.13.1", 2743 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", 2744 | "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", 2745 | "dev": true, 2746 | "dependencies": { 2747 | "hasown": "^2.0.0" 2748 | }, 2749 | "funding": { 2750 | "url": "https://github.com/sponsors/ljharb" 2751 | } 2752 | }, 2753 | "node_modules/is-extglob": { 2754 | "version": "2.1.1", 2755 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2756 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2757 | "dev": true, 2758 | "engines": { 2759 | "node": ">=0.10.0" 2760 | } 2761 | }, 2762 | "node_modules/is-fullwidth-code-point": { 2763 | "version": "3.0.0", 2764 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2765 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2766 | "dev": true, 2767 | "engines": { 2768 | "node": ">=8" 2769 | } 2770 | }, 2771 | "node_modules/is-glob": { 2772 | "version": "4.0.3", 2773 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2774 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2775 | "dev": true, 2776 | "dependencies": { 2777 | "is-extglob": "^2.1.1" 2778 | }, 2779 | "engines": { 2780 | "node": ">=0.10.0" 2781 | } 2782 | }, 2783 | "node_modules/is-number": { 2784 | "version": "7.0.0", 2785 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2786 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2787 | "dev": true, 2788 | "engines": { 2789 | "node": ">=0.12.0" 2790 | } 2791 | }, 2792 | "node_modules/is-path-inside": { 2793 | "version": "3.0.3", 2794 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 2795 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 2796 | "dev": true, 2797 | "engines": { 2798 | "node": ">=8" 2799 | } 2800 | }, 2801 | "node_modules/isexe": { 2802 | "version": "2.0.0", 2803 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2804 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2805 | "dev": true 2806 | }, 2807 | "node_modules/jackspeak": { 2808 | "version": "2.3.6", 2809 | "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", 2810 | "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", 2811 | "dev": true, 2812 | "dependencies": { 2813 | "@isaacs/cliui": "^8.0.2" 2814 | }, 2815 | "engines": { 2816 | "node": ">=14" 2817 | }, 2818 | "funding": { 2819 | "url": "https://github.com/sponsors/isaacs" 2820 | }, 2821 | "optionalDependencies": { 2822 | "@pkgjs/parseargs": "^0.11.0" 2823 | } 2824 | }, 2825 | "node_modules/jiti": { 2826 | "version": "1.21.0", 2827 | "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", 2828 | "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", 2829 | "dev": true, 2830 | "bin": { 2831 | "jiti": "bin/jiti.js" 2832 | } 2833 | }, 2834 | "node_modules/js-tokens": { 2835 | "version": "4.0.0", 2836 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2837 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 2838 | }, 2839 | "node_modules/js-yaml": { 2840 | "version": "4.1.0", 2841 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2842 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2843 | "dev": true, 2844 | "dependencies": { 2845 | "argparse": "^2.0.1" 2846 | }, 2847 | "bin": { 2848 | "js-yaml": "bin/js-yaml.js" 2849 | } 2850 | }, 2851 | "node_modules/jsesc": { 2852 | "version": "2.5.2", 2853 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", 2854 | "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", 2855 | "dev": true, 2856 | "bin": { 2857 | "jsesc": "bin/jsesc" 2858 | }, 2859 | "engines": { 2860 | "node": ">=4" 2861 | } 2862 | }, 2863 | "node_modules/json-buffer": { 2864 | "version": "3.0.1", 2865 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 2866 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 2867 | "dev": true 2868 | }, 2869 | "node_modules/json-schema-traverse": { 2870 | "version": "0.4.1", 2871 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2872 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2873 | "dev": true 2874 | }, 2875 | "node_modules/json-stable-stringify-without-jsonify": { 2876 | "version": "1.0.1", 2877 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2878 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 2879 | "dev": true 2880 | }, 2881 | "node_modules/json5": { 2882 | "version": "2.2.3", 2883 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 2884 | "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", 2885 | "dev": true, 2886 | "bin": { 2887 | "json5": "lib/cli.js" 2888 | }, 2889 | "engines": { 2890 | "node": ">=6" 2891 | } 2892 | }, 2893 | "node_modules/keyv": { 2894 | "version": "4.5.4", 2895 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 2896 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 2897 | "dev": true, 2898 | "dependencies": { 2899 | "json-buffer": "3.0.1" 2900 | } 2901 | }, 2902 | "node_modules/levn": { 2903 | "version": "0.4.1", 2904 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2905 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2906 | "dev": true, 2907 | "dependencies": { 2908 | "prelude-ls": "^1.2.1", 2909 | "type-check": "~0.4.0" 2910 | }, 2911 | "engines": { 2912 | "node": ">= 0.8.0" 2913 | } 2914 | }, 2915 | "node_modules/lilconfig": { 2916 | "version": "2.1.0", 2917 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", 2918 | "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", 2919 | "dev": true, 2920 | "engines": { 2921 | "node": ">=10" 2922 | } 2923 | }, 2924 | "node_modules/lines-and-columns": { 2925 | "version": "1.2.4", 2926 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 2927 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", 2928 | "dev": true 2929 | }, 2930 | "node_modules/locate-path": { 2931 | "version": "6.0.0", 2932 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2933 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2934 | "dev": true, 2935 | "dependencies": { 2936 | "p-locate": "^5.0.0" 2937 | }, 2938 | "engines": { 2939 | "node": ">=10" 2940 | }, 2941 | "funding": { 2942 | "url": "https://github.com/sponsors/sindresorhus" 2943 | } 2944 | }, 2945 | "node_modules/lodash.merge": { 2946 | "version": "4.6.2", 2947 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2948 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2949 | "dev": true 2950 | }, 2951 | "node_modules/loose-envify": { 2952 | "version": "1.4.0", 2953 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 2954 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 2955 | "dependencies": { 2956 | "js-tokens": "^3.0.0 || ^4.0.0" 2957 | }, 2958 | "bin": { 2959 | "loose-envify": "cli.js" 2960 | } 2961 | }, 2962 | "node_modules/lru-cache": { 2963 | "version": "5.1.1", 2964 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", 2965 | "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", 2966 | "dev": true, 2967 | "dependencies": { 2968 | "yallist": "^3.0.2" 2969 | } 2970 | }, 2971 | "node_modules/merge2": { 2972 | "version": "1.4.1", 2973 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2974 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2975 | "dev": true, 2976 | "engines": { 2977 | "node": ">= 8" 2978 | } 2979 | }, 2980 | "node_modules/meshoptimizer": { 2981 | "version": "0.18.1", 2982 | "resolved": "https://registry.npmjs.org/meshoptimizer/-/meshoptimizer-0.18.1.tgz", 2983 | "integrity": "sha512-ZhoIoL7TNV4s5B6+rx5mC//fw8/POGyNxS/DZyCJeiZ12ScLfVwRE/GfsxwiTkMYYD5DmK2/JXnEVXqL4rF+Sw==", 2984 | "dev": true 2985 | }, 2986 | "node_modules/micromatch": { 2987 | "version": "4.0.5", 2988 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 2989 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 2990 | "dev": true, 2991 | "dependencies": { 2992 | "braces": "^3.0.2", 2993 | "picomatch": "^2.3.1" 2994 | }, 2995 | "engines": { 2996 | "node": ">=8.6" 2997 | } 2998 | }, 2999 | "node_modules/minimatch": { 3000 | "version": "9.0.3", 3001 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", 3002 | "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", 3003 | "dev": true, 3004 | "dependencies": { 3005 | "brace-expansion": "^2.0.1" 3006 | }, 3007 | "engines": { 3008 | "node": ">=16 || 14 >=14.17" 3009 | }, 3010 | "funding": { 3011 | "url": "https://github.com/sponsors/isaacs" 3012 | } 3013 | }, 3014 | "node_modules/minipass": { 3015 | "version": "7.0.4", 3016 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", 3017 | "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", 3018 | "dev": true, 3019 | "engines": { 3020 | "node": ">=16 || 14 >=14.17" 3021 | } 3022 | }, 3023 | "node_modules/ms": { 3024 | "version": "2.1.2", 3025 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 3026 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 3027 | "dev": true 3028 | }, 3029 | "node_modules/mz": { 3030 | "version": "2.7.0", 3031 | "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", 3032 | "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", 3033 | "dev": true, 3034 | "dependencies": { 3035 | "any-promise": "^1.0.0", 3036 | "object-assign": "^4.0.1", 3037 | "thenify-all": "^1.0.0" 3038 | } 3039 | }, 3040 | "node_modules/nanoid": { 3041 | "version": "3.3.7", 3042 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", 3043 | "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", 3044 | "dev": true, 3045 | "funding": [ 3046 | { 3047 | "type": "github", 3048 | "url": "https://github.com/sponsors/ai" 3049 | } 3050 | ], 3051 | "bin": { 3052 | "nanoid": "bin/nanoid.cjs" 3053 | }, 3054 | "engines": { 3055 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 3056 | } 3057 | }, 3058 | "node_modules/natural-compare": { 3059 | "version": "1.4.0", 3060 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 3061 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 3062 | "dev": true 3063 | }, 3064 | "node_modules/node-releases": { 3065 | "version": "2.0.14", 3066 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", 3067 | "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", 3068 | "dev": true 3069 | }, 3070 | "node_modules/normalize-path": { 3071 | "version": "3.0.0", 3072 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 3073 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 3074 | "dev": true, 3075 | "engines": { 3076 | "node": ">=0.10.0" 3077 | } 3078 | }, 3079 | "node_modules/normalize-range": { 3080 | "version": "0.1.2", 3081 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 3082 | "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", 3083 | "dev": true, 3084 | "engines": { 3085 | "node": ">=0.10.0" 3086 | } 3087 | }, 3088 | "node_modules/object-assign": { 3089 | "version": "4.1.1", 3090 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 3091 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 3092 | "dev": true, 3093 | "engines": { 3094 | "node": ">=0.10.0" 3095 | } 3096 | }, 3097 | "node_modules/object-hash": { 3098 | "version": "3.0.0", 3099 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", 3100 | "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", 3101 | "dev": true, 3102 | "engines": { 3103 | "node": ">= 6" 3104 | } 3105 | }, 3106 | "node_modules/once": { 3107 | "version": "1.4.0", 3108 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 3109 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 3110 | "dev": true, 3111 | "dependencies": { 3112 | "wrappy": "1" 3113 | } 3114 | }, 3115 | "node_modules/optionator": { 3116 | "version": "0.9.3", 3117 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", 3118 | "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", 3119 | "dev": true, 3120 | "dependencies": { 3121 | "@aashutoshrathi/word-wrap": "^1.2.3", 3122 | "deep-is": "^0.1.3", 3123 | "fast-levenshtein": "^2.0.6", 3124 | "levn": "^0.4.1", 3125 | "prelude-ls": "^1.2.1", 3126 | "type-check": "^0.4.0" 3127 | }, 3128 | "engines": { 3129 | "node": ">= 0.8.0" 3130 | } 3131 | }, 3132 | "node_modules/p-limit": { 3133 | "version": "3.1.0", 3134 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 3135 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 3136 | "dev": true, 3137 | "dependencies": { 3138 | "yocto-queue": "^0.1.0" 3139 | }, 3140 | "engines": { 3141 | "node": ">=10" 3142 | }, 3143 | "funding": { 3144 | "url": "https://github.com/sponsors/sindresorhus" 3145 | } 3146 | }, 3147 | "node_modules/p-locate": { 3148 | "version": "5.0.0", 3149 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 3150 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 3151 | "dev": true, 3152 | "dependencies": { 3153 | "p-limit": "^3.0.2" 3154 | }, 3155 | "engines": { 3156 | "node": ">=10" 3157 | }, 3158 | "funding": { 3159 | "url": "https://github.com/sponsors/sindresorhus" 3160 | } 3161 | }, 3162 | "node_modules/parent-module": { 3163 | "version": "1.0.1", 3164 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 3165 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 3166 | "dev": true, 3167 | "dependencies": { 3168 | "callsites": "^3.0.0" 3169 | }, 3170 | "engines": { 3171 | "node": ">=6" 3172 | } 3173 | }, 3174 | "node_modules/path-exists": { 3175 | "version": "4.0.0", 3176 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3177 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3178 | "dev": true, 3179 | "engines": { 3180 | "node": ">=8" 3181 | } 3182 | }, 3183 | "node_modules/path-is-absolute": { 3184 | "version": "1.0.1", 3185 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3186 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3187 | "dev": true, 3188 | "engines": { 3189 | "node": ">=0.10.0" 3190 | } 3191 | }, 3192 | "node_modules/path-key": { 3193 | "version": "3.1.1", 3194 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3195 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3196 | "dev": true, 3197 | "engines": { 3198 | "node": ">=8" 3199 | } 3200 | }, 3201 | "node_modules/path-parse": { 3202 | "version": "1.0.7", 3203 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3204 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 3205 | "dev": true 3206 | }, 3207 | "node_modules/path-scurry": { 3208 | "version": "1.10.2", 3209 | "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.2.tgz", 3210 | "integrity": "sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==", 3211 | "dev": true, 3212 | "dependencies": { 3213 | "lru-cache": "^10.2.0", 3214 | "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" 3215 | }, 3216 | "engines": { 3217 | "node": ">=16 || 14 >=14.17" 3218 | }, 3219 | "funding": { 3220 | "url": "https://github.com/sponsors/isaacs" 3221 | } 3222 | }, 3223 | "node_modules/path-scurry/node_modules/lru-cache": { 3224 | "version": "10.2.0", 3225 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", 3226 | "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", 3227 | "dev": true, 3228 | "engines": { 3229 | "node": "14 || >=16.14" 3230 | } 3231 | }, 3232 | "node_modules/path-type": { 3233 | "version": "4.0.0", 3234 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 3235 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 3236 | "dev": true, 3237 | "engines": { 3238 | "node": ">=8" 3239 | } 3240 | }, 3241 | "node_modules/picocolors": { 3242 | "version": "1.0.0", 3243 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 3244 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", 3245 | "dev": true 3246 | }, 3247 | "node_modules/picomatch": { 3248 | "version": "2.3.1", 3249 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3250 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3251 | "dev": true, 3252 | "engines": { 3253 | "node": ">=8.6" 3254 | }, 3255 | "funding": { 3256 | "url": "https://github.com/sponsors/jonschlinkert" 3257 | } 3258 | }, 3259 | "node_modules/pify": { 3260 | "version": "2.3.0", 3261 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", 3262 | "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", 3263 | "dev": true, 3264 | "engines": { 3265 | "node": ">=0.10.0" 3266 | } 3267 | }, 3268 | "node_modules/pirates": { 3269 | "version": "4.0.6", 3270 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", 3271 | "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", 3272 | "dev": true, 3273 | "engines": { 3274 | "node": ">= 6" 3275 | } 3276 | }, 3277 | "node_modules/postcss": { 3278 | "version": "8.4.38", 3279 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", 3280 | "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", 3281 | "dev": true, 3282 | "funding": [ 3283 | { 3284 | "type": "opencollective", 3285 | "url": "https://opencollective.com/postcss/" 3286 | }, 3287 | { 3288 | "type": "tidelift", 3289 | "url": "https://tidelift.com/funding/github/npm/postcss" 3290 | }, 3291 | { 3292 | "type": "github", 3293 | "url": "https://github.com/sponsors/ai" 3294 | } 3295 | ], 3296 | "dependencies": { 3297 | "nanoid": "^3.3.7", 3298 | "picocolors": "^1.0.0", 3299 | "source-map-js": "^1.2.0" 3300 | }, 3301 | "engines": { 3302 | "node": "^10 || ^12 || >=14" 3303 | } 3304 | }, 3305 | "node_modules/postcss-import": { 3306 | "version": "15.1.0", 3307 | "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", 3308 | "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", 3309 | "dev": true, 3310 | "dependencies": { 3311 | "postcss-value-parser": "^4.0.0", 3312 | "read-cache": "^1.0.0", 3313 | "resolve": "^1.1.7" 3314 | }, 3315 | "engines": { 3316 | "node": ">=14.0.0" 3317 | }, 3318 | "peerDependencies": { 3319 | "postcss": "^8.0.0" 3320 | } 3321 | }, 3322 | "node_modules/postcss-js": { 3323 | "version": "4.0.1", 3324 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", 3325 | "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", 3326 | "dev": true, 3327 | "dependencies": { 3328 | "camelcase-css": "^2.0.1" 3329 | }, 3330 | "engines": { 3331 | "node": "^12 || ^14 || >= 16" 3332 | }, 3333 | "funding": { 3334 | "type": "opencollective", 3335 | "url": "https://opencollective.com/postcss/" 3336 | }, 3337 | "peerDependencies": { 3338 | "postcss": "^8.4.21" 3339 | } 3340 | }, 3341 | "node_modules/postcss-load-config": { 3342 | "version": "4.0.2", 3343 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", 3344 | "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", 3345 | "dev": true, 3346 | "funding": [ 3347 | { 3348 | "type": "opencollective", 3349 | "url": "https://opencollective.com/postcss/" 3350 | }, 3351 | { 3352 | "type": "github", 3353 | "url": "https://github.com/sponsors/ai" 3354 | } 3355 | ], 3356 | "dependencies": { 3357 | "lilconfig": "^3.0.0", 3358 | "yaml": "^2.3.4" 3359 | }, 3360 | "engines": { 3361 | "node": ">= 14" 3362 | }, 3363 | "peerDependencies": { 3364 | "postcss": ">=8.0.9", 3365 | "ts-node": ">=9.0.0" 3366 | }, 3367 | "peerDependenciesMeta": { 3368 | "postcss": { 3369 | "optional": true 3370 | }, 3371 | "ts-node": { 3372 | "optional": true 3373 | } 3374 | } 3375 | }, 3376 | "node_modules/postcss-load-config/node_modules/lilconfig": { 3377 | "version": "3.1.1", 3378 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.1.tgz", 3379 | "integrity": "sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==", 3380 | "dev": true, 3381 | "engines": { 3382 | "node": ">=14" 3383 | }, 3384 | "funding": { 3385 | "url": "https://github.com/sponsors/antonk52" 3386 | } 3387 | }, 3388 | "node_modules/postcss-nested": { 3389 | "version": "6.0.1", 3390 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", 3391 | "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", 3392 | "dev": true, 3393 | "dependencies": { 3394 | "postcss-selector-parser": "^6.0.11" 3395 | }, 3396 | "engines": { 3397 | "node": ">=12.0" 3398 | }, 3399 | "funding": { 3400 | "type": "opencollective", 3401 | "url": "https://opencollective.com/postcss/" 3402 | }, 3403 | "peerDependencies": { 3404 | "postcss": "^8.2.14" 3405 | } 3406 | }, 3407 | "node_modules/postcss-selector-parser": { 3408 | "version": "6.0.16", 3409 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz", 3410 | "integrity": "sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==", 3411 | "dev": true, 3412 | "dependencies": { 3413 | "cssesc": "^3.0.0", 3414 | "util-deprecate": "^1.0.2" 3415 | }, 3416 | "engines": { 3417 | "node": ">=4" 3418 | } 3419 | }, 3420 | "node_modules/postcss-value-parser": { 3421 | "version": "4.2.0", 3422 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 3423 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", 3424 | "dev": true 3425 | }, 3426 | "node_modules/prelude-ls": { 3427 | "version": "1.2.1", 3428 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 3429 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 3430 | "dev": true, 3431 | "engines": { 3432 | "node": ">= 0.8.0" 3433 | } 3434 | }, 3435 | "node_modules/punycode": { 3436 | "version": "2.3.1", 3437 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 3438 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 3439 | "dev": true, 3440 | "engines": { 3441 | "node": ">=6" 3442 | } 3443 | }, 3444 | "node_modules/queue-microtask": { 3445 | "version": "1.2.3", 3446 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 3447 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 3448 | "dev": true, 3449 | "funding": [ 3450 | { 3451 | "type": "github", 3452 | "url": "https://github.com/sponsors/feross" 3453 | }, 3454 | { 3455 | "type": "patreon", 3456 | "url": "https://www.patreon.com/feross" 3457 | }, 3458 | { 3459 | "type": "consulting", 3460 | "url": "https://feross.org/support" 3461 | } 3462 | ] 3463 | }, 3464 | "node_modules/react": { 3465 | "version": "18.2.0", 3466 | "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", 3467 | "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", 3468 | "dependencies": { 3469 | "loose-envify": "^1.1.0" 3470 | }, 3471 | "engines": { 3472 | "node": ">=0.10.0" 3473 | } 3474 | }, 3475 | "node_modules/react-dom": { 3476 | "version": "18.2.0", 3477 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", 3478 | "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", 3479 | "dependencies": { 3480 | "loose-envify": "^1.1.0", 3481 | "scheduler": "^0.23.0" 3482 | }, 3483 | "peerDependencies": { 3484 | "react": "^18.2.0" 3485 | } 3486 | }, 3487 | "node_modules/react-refresh": { 3488 | "version": "0.14.0", 3489 | "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", 3490 | "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", 3491 | "dev": true, 3492 | "engines": { 3493 | "node": ">=0.10.0" 3494 | } 3495 | }, 3496 | "node_modules/read-cache": { 3497 | "version": "1.0.0", 3498 | "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", 3499 | "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", 3500 | "dev": true, 3501 | "dependencies": { 3502 | "pify": "^2.3.0" 3503 | } 3504 | }, 3505 | "node_modules/readdirp": { 3506 | "version": "3.6.0", 3507 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 3508 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 3509 | "dev": true, 3510 | "dependencies": { 3511 | "picomatch": "^2.2.1" 3512 | }, 3513 | "engines": { 3514 | "node": ">=8.10.0" 3515 | } 3516 | }, 3517 | "node_modules/resolve": { 3518 | "version": "1.22.8", 3519 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", 3520 | "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", 3521 | "dev": true, 3522 | "dependencies": { 3523 | "is-core-module": "^2.13.0", 3524 | "path-parse": "^1.0.7", 3525 | "supports-preserve-symlinks-flag": "^1.0.0" 3526 | }, 3527 | "bin": { 3528 | "resolve": "bin/resolve" 3529 | }, 3530 | "funding": { 3531 | "url": "https://github.com/sponsors/ljharb" 3532 | } 3533 | }, 3534 | "node_modules/resolve-from": { 3535 | "version": "4.0.0", 3536 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3537 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3538 | "dev": true, 3539 | "engines": { 3540 | "node": ">=4" 3541 | } 3542 | }, 3543 | "node_modules/reusify": { 3544 | "version": "1.0.4", 3545 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3546 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3547 | "dev": true, 3548 | "engines": { 3549 | "iojs": ">=1.0.0", 3550 | "node": ">=0.10.0" 3551 | } 3552 | }, 3553 | "node_modules/rimraf": { 3554 | "version": "3.0.2", 3555 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 3556 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 3557 | "dev": true, 3558 | "dependencies": { 3559 | "glob": "^7.1.3" 3560 | }, 3561 | "bin": { 3562 | "rimraf": "bin.js" 3563 | }, 3564 | "funding": { 3565 | "url": "https://github.com/sponsors/isaacs" 3566 | } 3567 | }, 3568 | "node_modules/rollup": { 3569 | "version": "4.14.0", 3570 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.14.0.tgz", 3571 | "integrity": "sha512-Qe7w62TyawbDzB4yt32R0+AbIo6m1/sqO7UPzFS8Z/ksL5mrfhA0v4CavfdmFav3D+ub4QeAgsGEe84DoWe/nQ==", 3572 | "dev": true, 3573 | "dependencies": { 3574 | "@types/estree": "1.0.5" 3575 | }, 3576 | "bin": { 3577 | "rollup": "dist/bin/rollup" 3578 | }, 3579 | "engines": { 3580 | "node": ">=18.0.0", 3581 | "npm": ">=8.0.0" 3582 | }, 3583 | "optionalDependencies": { 3584 | "@rollup/rollup-android-arm-eabi": "4.14.0", 3585 | "@rollup/rollup-android-arm64": "4.14.0", 3586 | "@rollup/rollup-darwin-arm64": "4.14.0", 3587 | "@rollup/rollup-darwin-x64": "4.14.0", 3588 | "@rollup/rollup-linux-arm-gnueabihf": "4.14.0", 3589 | "@rollup/rollup-linux-arm64-gnu": "4.14.0", 3590 | "@rollup/rollup-linux-arm64-musl": "4.14.0", 3591 | "@rollup/rollup-linux-powerpc64le-gnu": "4.14.0", 3592 | "@rollup/rollup-linux-riscv64-gnu": "4.14.0", 3593 | "@rollup/rollup-linux-s390x-gnu": "4.14.0", 3594 | "@rollup/rollup-linux-x64-gnu": "4.14.0", 3595 | "@rollup/rollup-linux-x64-musl": "4.14.0", 3596 | "@rollup/rollup-win32-arm64-msvc": "4.14.0", 3597 | "@rollup/rollup-win32-ia32-msvc": "4.14.0", 3598 | "@rollup/rollup-win32-x64-msvc": "4.14.0", 3599 | "fsevents": "~2.3.2" 3600 | } 3601 | }, 3602 | "node_modules/run-parallel": { 3603 | "version": "1.2.0", 3604 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3605 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3606 | "dev": true, 3607 | "funding": [ 3608 | { 3609 | "type": "github", 3610 | "url": "https://github.com/sponsors/feross" 3611 | }, 3612 | { 3613 | "type": "patreon", 3614 | "url": "https://www.patreon.com/feross" 3615 | }, 3616 | { 3617 | "type": "consulting", 3618 | "url": "https://feross.org/support" 3619 | } 3620 | ], 3621 | "dependencies": { 3622 | "queue-microtask": "^1.2.2" 3623 | } 3624 | }, 3625 | "node_modules/scheduler": { 3626 | "version": "0.23.0", 3627 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", 3628 | "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", 3629 | "dependencies": { 3630 | "loose-envify": "^1.1.0" 3631 | } 3632 | }, 3633 | "node_modules/semver": { 3634 | "version": "7.6.0", 3635 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", 3636 | "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", 3637 | "dev": true, 3638 | "dependencies": { 3639 | "lru-cache": "^6.0.0" 3640 | }, 3641 | "bin": { 3642 | "semver": "bin/semver.js" 3643 | }, 3644 | "engines": { 3645 | "node": ">=10" 3646 | } 3647 | }, 3648 | "node_modules/semver/node_modules/lru-cache": { 3649 | "version": "6.0.0", 3650 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 3651 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 3652 | "dev": true, 3653 | "dependencies": { 3654 | "yallist": "^4.0.0" 3655 | }, 3656 | "engines": { 3657 | "node": ">=10" 3658 | } 3659 | }, 3660 | "node_modules/semver/node_modules/yallist": { 3661 | "version": "4.0.0", 3662 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 3663 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 3664 | "dev": true 3665 | }, 3666 | "node_modules/shebang-command": { 3667 | "version": "2.0.0", 3668 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3669 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3670 | "dev": true, 3671 | "dependencies": { 3672 | "shebang-regex": "^3.0.0" 3673 | }, 3674 | "engines": { 3675 | "node": ">=8" 3676 | } 3677 | }, 3678 | "node_modules/shebang-regex": { 3679 | "version": "3.0.0", 3680 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3681 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3682 | "dev": true, 3683 | "engines": { 3684 | "node": ">=8" 3685 | } 3686 | }, 3687 | "node_modules/signal-exit": { 3688 | "version": "4.1.0", 3689 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 3690 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 3691 | "dev": true, 3692 | "engines": { 3693 | "node": ">=14" 3694 | }, 3695 | "funding": { 3696 | "url": "https://github.com/sponsors/isaacs" 3697 | } 3698 | }, 3699 | "node_modules/slash": { 3700 | "version": "3.0.0", 3701 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3702 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3703 | "dev": true, 3704 | "engines": { 3705 | "node": ">=8" 3706 | } 3707 | }, 3708 | "node_modules/source-map-js": { 3709 | "version": "1.2.0", 3710 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", 3711 | "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", 3712 | "dev": true, 3713 | "engines": { 3714 | "node": ">=0.10.0" 3715 | } 3716 | }, 3717 | "node_modules/string-width": { 3718 | "version": "5.1.2", 3719 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", 3720 | "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", 3721 | "dev": true, 3722 | "dependencies": { 3723 | "eastasianwidth": "^0.2.0", 3724 | "emoji-regex": "^9.2.2", 3725 | "strip-ansi": "^7.0.1" 3726 | }, 3727 | "engines": { 3728 | "node": ">=12" 3729 | }, 3730 | "funding": { 3731 | "url": "https://github.com/sponsors/sindresorhus" 3732 | } 3733 | }, 3734 | "node_modules/string-width-cjs": { 3735 | "name": "string-width", 3736 | "version": "4.2.3", 3737 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3738 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3739 | "dev": true, 3740 | "dependencies": { 3741 | "emoji-regex": "^8.0.0", 3742 | "is-fullwidth-code-point": "^3.0.0", 3743 | "strip-ansi": "^6.0.1" 3744 | }, 3745 | "engines": { 3746 | "node": ">=8" 3747 | } 3748 | }, 3749 | "node_modules/string-width-cjs/node_modules/emoji-regex": { 3750 | "version": "8.0.0", 3751 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 3752 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 3753 | "dev": true 3754 | }, 3755 | "node_modules/string-width/node_modules/ansi-regex": { 3756 | "version": "6.0.1", 3757 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", 3758 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", 3759 | "dev": true, 3760 | "engines": { 3761 | "node": ">=12" 3762 | }, 3763 | "funding": { 3764 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 3765 | } 3766 | }, 3767 | "node_modules/string-width/node_modules/strip-ansi": { 3768 | "version": "7.1.0", 3769 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 3770 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 3771 | "dev": true, 3772 | "dependencies": { 3773 | "ansi-regex": "^6.0.1" 3774 | }, 3775 | "engines": { 3776 | "node": ">=12" 3777 | }, 3778 | "funding": { 3779 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 3780 | } 3781 | }, 3782 | "node_modules/strip-ansi": { 3783 | "version": "6.0.1", 3784 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3785 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3786 | "dev": true, 3787 | "dependencies": { 3788 | "ansi-regex": "^5.0.1" 3789 | }, 3790 | "engines": { 3791 | "node": ">=8" 3792 | } 3793 | }, 3794 | "node_modules/strip-ansi-cjs": { 3795 | "name": "strip-ansi", 3796 | "version": "6.0.1", 3797 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3798 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3799 | "dev": true, 3800 | "dependencies": { 3801 | "ansi-regex": "^5.0.1" 3802 | }, 3803 | "engines": { 3804 | "node": ">=8" 3805 | } 3806 | }, 3807 | "node_modules/strip-json-comments": { 3808 | "version": "3.1.1", 3809 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3810 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3811 | "dev": true, 3812 | "engines": { 3813 | "node": ">=8" 3814 | }, 3815 | "funding": { 3816 | "url": "https://github.com/sponsors/sindresorhus" 3817 | } 3818 | }, 3819 | "node_modules/sucrase": { 3820 | "version": "3.35.0", 3821 | "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", 3822 | "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", 3823 | "dev": true, 3824 | "dependencies": { 3825 | "@jridgewell/gen-mapping": "^0.3.2", 3826 | "commander": "^4.0.0", 3827 | "glob": "^10.3.10", 3828 | "lines-and-columns": "^1.1.6", 3829 | "mz": "^2.7.0", 3830 | "pirates": "^4.0.1", 3831 | "ts-interface-checker": "^0.1.9" 3832 | }, 3833 | "bin": { 3834 | "sucrase": "bin/sucrase", 3835 | "sucrase-node": "bin/sucrase-node" 3836 | }, 3837 | "engines": { 3838 | "node": ">=16 || 14 >=14.17" 3839 | } 3840 | }, 3841 | "node_modules/sucrase/node_modules/glob": { 3842 | "version": "10.3.12", 3843 | "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz", 3844 | "integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==", 3845 | "dev": true, 3846 | "dependencies": { 3847 | "foreground-child": "^3.1.0", 3848 | "jackspeak": "^2.3.6", 3849 | "minimatch": "^9.0.1", 3850 | "minipass": "^7.0.4", 3851 | "path-scurry": "^1.10.2" 3852 | }, 3853 | "bin": { 3854 | "glob": "dist/esm/bin.mjs" 3855 | }, 3856 | "engines": { 3857 | "node": ">=16 || 14 >=14.17" 3858 | }, 3859 | "funding": { 3860 | "url": "https://github.com/sponsors/isaacs" 3861 | } 3862 | }, 3863 | "node_modules/supports-color": { 3864 | "version": "5.5.0", 3865 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 3866 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 3867 | "dev": true, 3868 | "dependencies": { 3869 | "has-flag": "^3.0.0" 3870 | }, 3871 | "engines": { 3872 | "node": ">=4" 3873 | } 3874 | }, 3875 | "node_modules/supports-preserve-symlinks-flag": { 3876 | "version": "1.0.0", 3877 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3878 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3879 | "dev": true, 3880 | "engines": { 3881 | "node": ">= 0.4" 3882 | }, 3883 | "funding": { 3884 | "url": "https://github.com/sponsors/ljharb" 3885 | } 3886 | }, 3887 | "node_modules/tailwindcss": { 3888 | "version": "3.4.3", 3889 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.3.tgz", 3890 | "integrity": "sha512-U7sxQk/n397Bmx4JHbJx/iSOOv5G+II3f1kpLpY2QeUv5DcPdcTsYLlusZfq1NthHS1c1cZoyFmmkex1rzke0A==", 3891 | "dev": true, 3892 | "dependencies": { 3893 | "@alloc/quick-lru": "^5.2.0", 3894 | "arg": "^5.0.2", 3895 | "chokidar": "^3.5.3", 3896 | "didyoumean": "^1.2.2", 3897 | "dlv": "^1.1.3", 3898 | "fast-glob": "^3.3.0", 3899 | "glob-parent": "^6.0.2", 3900 | "is-glob": "^4.0.3", 3901 | "jiti": "^1.21.0", 3902 | "lilconfig": "^2.1.0", 3903 | "micromatch": "^4.0.5", 3904 | "normalize-path": "^3.0.0", 3905 | "object-hash": "^3.0.0", 3906 | "picocolors": "^1.0.0", 3907 | "postcss": "^8.4.23", 3908 | "postcss-import": "^15.1.0", 3909 | "postcss-js": "^4.0.1", 3910 | "postcss-load-config": "^4.0.1", 3911 | "postcss-nested": "^6.0.1", 3912 | "postcss-selector-parser": "^6.0.11", 3913 | "resolve": "^1.22.2", 3914 | "sucrase": "^3.32.0" 3915 | }, 3916 | "bin": { 3917 | "tailwind": "lib/cli.js", 3918 | "tailwindcss": "lib/cli.js" 3919 | }, 3920 | "engines": { 3921 | "node": ">=14.0.0" 3922 | } 3923 | }, 3924 | "node_modules/text-table": { 3925 | "version": "0.2.0", 3926 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 3927 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 3928 | "dev": true 3929 | }, 3930 | "node_modules/thenify": { 3931 | "version": "3.3.1", 3932 | "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", 3933 | "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", 3934 | "dev": true, 3935 | "dependencies": { 3936 | "any-promise": "^1.0.0" 3937 | } 3938 | }, 3939 | "node_modules/thenify-all": { 3940 | "version": "1.6.0", 3941 | "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", 3942 | "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", 3943 | "dev": true, 3944 | "dependencies": { 3945 | "thenify": ">= 3.1.0 < 4" 3946 | }, 3947 | "engines": { 3948 | "node": ">=0.8" 3949 | } 3950 | }, 3951 | "node_modules/three": { 3952 | "version": "0.163.0", 3953 | "resolved": "https://registry.npmjs.org/three/-/three-0.163.0.tgz", 3954 | "integrity": "sha512-HlMgCb2TF/dTLRtknBnjUTsR8FsDqBY43itYop2+Zg822I+Kd0Ua2vs8CvfBVefXkBdNDrLMoRTGCIIpfCuDew==" 3955 | }, 3956 | "node_modules/to-fast-properties": { 3957 | "version": "2.0.0", 3958 | "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", 3959 | "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", 3960 | "dev": true, 3961 | "engines": { 3962 | "node": ">=4" 3963 | } 3964 | }, 3965 | "node_modules/to-regex-range": { 3966 | "version": "5.0.1", 3967 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3968 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3969 | "dev": true, 3970 | "dependencies": { 3971 | "is-number": "^7.0.0" 3972 | }, 3973 | "engines": { 3974 | "node": ">=8.0" 3975 | } 3976 | }, 3977 | "node_modules/ts-api-utils": { 3978 | "version": "1.3.0", 3979 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", 3980 | "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", 3981 | "dev": true, 3982 | "engines": { 3983 | "node": ">=16" 3984 | }, 3985 | "peerDependencies": { 3986 | "typescript": ">=4.2.0" 3987 | } 3988 | }, 3989 | "node_modules/ts-interface-checker": { 3990 | "version": "0.1.13", 3991 | "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", 3992 | "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", 3993 | "dev": true 3994 | }, 3995 | "node_modules/type-check": { 3996 | "version": "0.4.0", 3997 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3998 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3999 | "dev": true, 4000 | "dependencies": { 4001 | "prelude-ls": "^1.2.1" 4002 | }, 4003 | "engines": { 4004 | "node": ">= 0.8.0" 4005 | } 4006 | }, 4007 | "node_modules/type-fest": { 4008 | "version": "0.20.2", 4009 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 4010 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 4011 | "dev": true, 4012 | "engines": { 4013 | "node": ">=10" 4014 | }, 4015 | "funding": { 4016 | "url": "https://github.com/sponsors/sindresorhus" 4017 | } 4018 | }, 4019 | "node_modules/typescript": { 4020 | "version": "5.4.4", 4021 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.4.tgz", 4022 | "integrity": "sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==", 4023 | "dev": true, 4024 | "bin": { 4025 | "tsc": "bin/tsc", 4026 | "tsserver": "bin/tsserver" 4027 | }, 4028 | "engines": { 4029 | "node": ">=14.17" 4030 | } 4031 | }, 4032 | "node_modules/update-browserslist-db": { 4033 | "version": "1.0.13", 4034 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", 4035 | "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", 4036 | "dev": true, 4037 | "funding": [ 4038 | { 4039 | "type": "opencollective", 4040 | "url": "https://opencollective.com/browserslist" 4041 | }, 4042 | { 4043 | "type": "tidelift", 4044 | "url": "https://tidelift.com/funding/github/npm/browserslist" 4045 | }, 4046 | { 4047 | "type": "github", 4048 | "url": "https://github.com/sponsors/ai" 4049 | } 4050 | ], 4051 | "dependencies": { 4052 | "escalade": "^3.1.1", 4053 | "picocolors": "^1.0.0" 4054 | }, 4055 | "bin": { 4056 | "update-browserslist-db": "cli.js" 4057 | }, 4058 | "peerDependencies": { 4059 | "browserslist": ">= 4.21.0" 4060 | } 4061 | }, 4062 | "node_modules/uri-js": { 4063 | "version": "4.4.1", 4064 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 4065 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 4066 | "dev": true, 4067 | "dependencies": { 4068 | "punycode": "^2.1.0" 4069 | } 4070 | }, 4071 | "node_modules/util-deprecate": { 4072 | "version": "1.0.2", 4073 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 4074 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", 4075 | "dev": true 4076 | }, 4077 | "node_modules/vite": { 4078 | "version": "5.2.8", 4079 | "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.8.tgz", 4080 | "integrity": "sha512-OyZR+c1CE8yeHw5V5t59aXsUPPVTHMDjEZz8MgguLL/Q7NblxhZUlTu9xSPqlsUO/y+X7dlU05jdhvyycD55DA==", 4081 | "dev": true, 4082 | "dependencies": { 4083 | "esbuild": "^0.20.1", 4084 | "postcss": "^8.4.38", 4085 | "rollup": "^4.13.0" 4086 | }, 4087 | "bin": { 4088 | "vite": "bin/vite.js" 4089 | }, 4090 | "engines": { 4091 | "node": "^18.0.0 || >=20.0.0" 4092 | }, 4093 | "funding": { 4094 | "url": "https://github.com/vitejs/vite?sponsor=1" 4095 | }, 4096 | "optionalDependencies": { 4097 | "fsevents": "~2.3.3" 4098 | }, 4099 | "peerDependencies": { 4100 | "@types/node": "^18.0.0 || >=20.0.0", 4101 | "less": "*", 4102 | "lightningcss": "^1.21.0", 4103 | "sass": "*", 4104 | "stylus": "*", 4105 | "sugarss": "*", 4106 | "terser": "^5.4.0" 4107 | }, 4108 | "peerDependenciesMeta": { 4109 | "@types/node": { 4110 | "optional": true 4111 | }, 4112 | "less": { 4113 | "optional": true 4114 | }, 4115 | "lightningcss": { 4116 | "optional": true 4117 | }, 4118 | "sass": { 4119 | "optional": true 4120 | }, 4121 | "stylus": { 4122 | "optional": true 4123 | }, 4124 | "sugarss": { 4125 | "optional": true 4126 | }, 4127 | "terser": { 4128 | "optional": true 4129 | } 4130 | } 4131 | }, 4132 | "node_modules/which": { 4133 | "version": "2.0.2", 4134 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 4135 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 4136 | "dev": true, 4137 | "dependencies": { 4138 | "isexe": "^2.0.0" 4139 | }, 4140 | "bin": { 4141 | "node-which": "bin/node-which" 4142 | }, 4143 | "engines": { 4144 | "node": ">= 8" 4145 | } 4146 | }, 4147 | "node_modules/wrap-ansi": { 4148 | "version": "8.1.0", 4149 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", 4150 | "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", 4151 | "dev": true, 4152 | "dependencies": { 4153 | "ansi-styles": "^6.1.0", 4154 | "string-width": "^5.0.1", 4155 | "strip-ansi": "^7.0.1" 4156 | }, 4157 | "engines": { 4158 | "node": ">=12" 4159 | }, 4160 | "funding": { 4161 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 4162 | } 4163 | }, 4164 | "node_modules/wrap-ansi-cjs": { 4165 | "name": "wrap-ansi", 4166 | "version": "7.0.0", 4167 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 4168 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 4169 | "dev": true, 4170 | "dependencies": { 4171 | "ansi-styles": "^4.0.0", 4172 | "string-width": "^4.1.0", 4173 | "strip-ansi": "^6.0.0" 4174 | }, 4175 | "engines": { 4176 | "node": ">=10" 4177 | }, 4178 | "funding": { 4179 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 4180 | } 4181 | }, 4182 | "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { 4183 | "version": "4.3.0", 4184 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 4185 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 4186 | "dev": true, 4187 | "dependencies": { 4188 | "color-convert": "^2.0.1" 4189 | }, 4190 | "engines": { 4191 | "node": ">=8" 4192 | }, 4193 | "funding": { 4194 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 4195 | } 4196 | }, 4197 | "node_modules/wrap-ansi-cjs/node_modules/color-convert": { 4198 | "version": "2.0.1", 4199 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 4200 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 4201 | "dev": true, 4202 | "dependencies": { 4203 | "color-name": "~1.1.4" 4204 | }, 4205 | "engines": { 4206 | "node": ">=7.0.0" 4207 | } 4208 | }, 4209 | "node_modules/wrap-ansi-cjs/node_modules/color-name": { 4210 | "version": "1.1.4", 4211 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 4212 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 4213 | "dev": true 4214 | }, 4215 | "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { 4216 | "version": "8.0.0", 4217 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 4218 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", 4219 | "dev": true 4220 | }, 4221 | "node_modules/wrap-ansi-cjs/node_modules/string-width": { 4222 | "version": "4.2.3", 4223 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 4224 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 4225 | "dev": true, 4226 | "dependencies": { 4227 | "emoji-regex": "^8.0.0", 4228 | "is-fullwidth-code-point": "^3.0.0", 4229 | "strip-ansi": "^6.0.1" 4230 | }, 4231 | "engines": { 4232 | "node": ">=8" 4233 | } 4234 | }, 4235 | "node_modules/wrap-ansi/node_modules/ansi-regex": { 4236 | "version": "6.0.1", 4237 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", 4238 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", 4239 | "dev": true, 4240 | "engines": { 4241 | "node": ">=12" 4242 | }, 4243 | "funding": { 4244 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 4245 | } 4246 | }, 4247 | "node_modules/wrap-ansi/node_modules/ansi-styles": { 4248 | "version": "6.2.1", 4249 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", 4250 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", 4251 | "dev": true, 4252 | "engines": { 4253 | "node": ">=12" 4254 | }, 4255 | "funding": { 4256 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 4257 | } 4258 | }, 4259 | "node_modules/wrap-ansi/node_modules/strip-ansi": { 4260 | "version": "7.1.0", 4261 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 4262 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 4263 | "dev": true, 4264 | "dependencies": { 4265 | "ansi-regex": "^6.0.1" 4266 | }, 4267 | "engines": { 4268 | "node": ">=12" 4269 | }, 4270 | "funding": { 4271 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 4272 | } 4273 | }, 4274 | "node_modules/wrappy": { 4275 | "version": "1.0.2", 4276 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 4277 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 4278 | "dev": true 4279 | }, 4280 | "node_modules/yallist": { 4281 | "version": "3.1.1", 4282 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", 4283 | "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", 4284 | "dev": true 4285 | }, 4286 | "node_modules/yaml": { 4287 | "version": "2.4.1", 4288 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.1.tgz", 4289 | "integrity": "sha512-pIXzoImaqmfOrL7teGUBt/T7ZDnyeGBWyXQBvOVhLkWLN37GXv8NMLK406UY6dS51JfcQHsmcW5cJ441bHg6Lg==", 4290 | "dev": true, 4291 | "bin": { 4292 | "yaml": "bin.mjs" 4293 | }, 4294 | "engines": { 4295 | "node": ">= 14" 4296 | } 4297 | }, 4298 | "node_modules/yocto-queue": { 4299 | "version": "0.1.0", 4300 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 4301 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 4302 | "dev": true, 4303 | "engines": { 4304 | "node": ">=10" 4305 | }, 4306 | "funding": { 4307 | "url": "https://github.com/sponsors/sindresorhus" 4308 | } 4309 | } 4310 | } 4311 | } 4312 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "volume-rendering", 3 | "private": true, 4 | "version": "0.0.0", 5 | "type": "module", 6 | "scripts": { 7 | "dev": "vite", 8 | "build": "tsc && vite build", 9 | "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", 10 | "preview": "vite preview" 11 | }, 12 | "dependencies": { 13 | "react": "^18.2.0", 14 | "react-dom": "^18.2.0", 15 | "three": "^0.163.0" 16 | }, 17 | "devDependencies": { 18 | "@types/dat.gui": "^0.7.13", 19 | "@types/react": "^18.2.66", 20 | "@types/react-dom": "^18.2.22", 21 | "@types/three": "^0.163.0", 22 | "@typescript-eslint/eslint-plugin": "^7.2.0", 23 | "@typescript-eslint/parser": "^7.2.0", 24 | "@vitejs/plugin-react": "^4.2.1", 25 | "autoprefixer": "^10.4.19", 26 | "dat.gui": "^0.7.9", 27 | "eslint": "^8.57.0", 28 | "eslint-plugin-react-hooks": "^4.6.0", 29 | "eslint-plugin-react-refresh": "^0.4.6", 30 | "postcss": "^8.4.38", 31 | "tailwindcss": "^3.4.3", 32 | "typescript": "^5.2.2", 33 | "vite": "^5.2.0" 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- 1 | import { ThreeSceneV1 } from './ThreeSceneV1'; 2 | import { ThreeSceneV2 } from './ThreeSceneV2'; 3 | 4 | function App() { 5 | const version = 'v2'; 6 | const map = { 7 | v1: , 8 | v2: , 9 | }[version]; 10 | 11 | return ( 12 | <> 13 |
{map}
14 | 15 | ); 16 | } 17 | 18 | export default App; 19 | -------------------------------------------------------------------------------- /src/ThreeSceneV1.tsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef } from 'react'; 2 | import * as Three from 'three'; 3 | import { OrbitControls } from 'three/examples/jsm/Addons.js'; 4 | import vertexV1 from './shaders/vertexV1.glsl?raw'; 5 | import fragmentV1 from './shaders/fragmentV1.glsl?raw'; 6 | 7 | const generateCube = (p: Three.Vector3 = new Three.Vector3(0, 0, 0)) => { 8 | const geo1 = new Three.BoxGeometry(1, 1, 1); 9 | const mat1 = new Three.MeshBasicMaterial({ color: 0x00ff00 }); 10 | const cube = new Three.Mesh(geo1, mat1); 11 | cube.position.set(p.x, p.y, p.z); 12 | return cube; 13 | }; 14 | 15 | export const ThreeSceneV1 = () => { 16 | const canvasRef = useRef(null); 17 | 18 | useEffect(() => { 19 | if (canvasRef.current === null) { 20 | return; 21 | } 22 | 23 | const width = window.innerWidth; 24 | const height = window.innerHeight; 25 | const renderer = new Three.WebGLRenderer({ canvas: canvasRef.current }); 26 | renderer.setSize(width, height); 27 | 28 | const myCamera = new Three.PerspectiveCamera(75, width / height, 0.1, 1000); 29 | myCamera.position.set(0, 0, -5); 30 | myCamera.lookAt(new Three.Vector3(0, 0, 0)); 31 | myCamera.up.set(0, 1, 0); 32 | 33 | const scene = new Three.Scene(); 34 | const cube1 = generateCube(new Three.Vector3(-2, 0, 0)); 35 | const cube2 = generateCube(new Three.Vector3(2, 0, 0)); 36 | scene.add(cube1); 37 | scene.add(cube2); 38 | 39 | // const geo1 = new Three.PlaneGeometry(2, 2, 2); 40 | const geo1 = new Three.BoxGeometry(2, 2, 2); 41 | const mat1 = new Three.ShaderMaterial({ 42 | uniforms: { 43 | u_camera: { 44 | value: myCamera.position, 45 | }, 46 | u_resolution: { 47 | value: new Three.Vector3(width, height, 1), 48 | }, 49 | }, 50 | vertexShader: vertexV1, 51 | fragmentShader: fragmentV1, 52 | }); 53 | const m1 = new Three.Mesh(geo1, mat1); 54 | // Changing this position will change world space coords of the mesh. 55 | // Since transform camera coordinates to object space, this will 56 | // also work on the ray march. Same for rotataion + scale. 57 | // m1.position.x = 2; 58 | // m1.rotation.x = 10; 59 | // m1.scale.x = 2; 60 | scene.add(m1); 61 | 62 | const controls = new OrbitControls(myCamera, renderer.domElement); 63 | 64 | const animate = () => { 65 | controls.update(); 66 | renderer.render(scene, myCamera); 67 | requestAnimationFrame(animate); 68 | }; 69 | animate(); 70 | }, []); 71 | 72 | return ( 73 | <> 74 | 75 | 76 | ); 77 | }; 78 | -------------------------------------------------------------------------------- /src/ThreeSceneV2.tsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useRef, useState } from 'react'; 2 | import * as Three from 'three'; 3 | import { GUI } from 'dat.gui'; 4 | import { OrbitControls } from 'three/examples/jsm/Addons.js'; 5 | import Stats from 'three/addons/libs/stats.module.js'; 6 | import vertexV2 from './shaders/vertexV2.glsl?raw'; 7 | import fragmentV2 from './shaders/fragmentV2.glsl?raw'; 8 | 9 | const handleVolumeFileUpload = (event: any, dim: number, setDataFn: any) => { 10 | const file = event.target.files[0]; 11 | const reader = new FileReader(); 12 | reader.onload = (e: any) => { 13 | const arrayBuffer = e.target.result; 14 | 15 | const uint8Array = new Uint8Array(arrayBuffer); 16 | // Assuming the raw file contains 256x256x256 uint8 values 17 | const data = new Uint8Array(dim * dim * dim); 18 | for (let i = 0; i < uint8Array.length; i++) { 19 | data[i] = uint8Array[i]; 20 | } 21 | setDataFn(data); 22 | }; 23 | reader.readAsArrayBuffer(file); 24 | }; 25 | 26 | const initData = (canvasRef: any, volumeData: any, dim: number) => { 27 | const width = window.innerWidth; 28 | const height = window.innerHeight; 29 | 30 | const camera = new Three.PerspectiveCamera(75, width / height, 0.1, 1000); 31 | camera.position.set(0, 0, -2); 32 | camera.lookAt(new Three.Vector3(0, 0, 0)); 33 | camera.up.set(0, 1, 0); 34 | 35 | const renderer = new Three.WebGLRenderer({ canvas: canvasRef.current }); 36 | const stats = new Stats(); 37 | const clock = new Three.Clock(); 38 | const controls = new OrbitControls(camera, renderer.domElement); 39 | 40 | renderer.setSize(width, height); 41 | clock.start(); 42 | document.body.appendChild(stats.dom); 43 | 44 | const gui = new GUI(); 45 | const folder = gui.addFolder('Display Settings'); 46 | folder.open(); 47 | 48 | const crossFolder = folder.addFolder('Cross Section Settings'); 49 | const crossSectionSize = new Three.Vector3(0.5, 0.5, 0.5); 50 | crossFolder.add(crossSectionSize, 'x', 0.02, 0.5, 0.02); 51 | crossFolder.add(crossSectionSize, 'y', 0.02, 0.5, 0.02); 52 | crossFolder.add(crossSectionSize, 'z', 0.02, 0.5, 0.02); 53 | crossFolder.open(); 54 | 55 | const volumeDataTexture = new Three.Data3DTexture(volumeData, dim, dim, dim); 56 | volumeDataTexture.format = Three.RedFormat; 57 | // volumeDataTexture.type = Three.UnsignedByteType; 58 | volumeDataTexture.minFilter = Three.LinearFilter; 59 | volumeDataTexture.magFilter = Three.LinearFilter; 60 | // volumeDataTexture.wrapS = Three.RepeatWrapping; 61 | volumeDataTexture.wrapT = Three.RepeatWrapping; 62 | // volumeDataTexture.wrapR = Three.RepeatWrapping; 63 | volumeDataTexture.needsUpdate = true; 64 | console.log(volumeDataTexture); 65 | 66 | const uniforms = { 67 | u_camera: { 68 | value: camera.position, 69 | }, 70 | u_resolution: { 71 | value: new Three.Vector3(width, height, 1), 72 | }, 73 | u_dt: { 74 | value: 0.01, 75 | }, 76 | u_time: { 77 | value: 0.0, 78 | }, 79 | u_crossSectionSize: { 80 | value: crossSectionSize, 81 | }, 82 | u_color: { 83 | value: 1, 84 | }, 85 | u_volume: { 86 | value: volumeDataTexture, 87 | }, 88 | u_isoValue: { 89 | value: 1, 90 | }, 91 | u_alphaVal: { 92 | value: 0.2, 93 | }, 94 | }; 95 | 96 | const algoFolder = folder.addFolder('Algorithm Settings'); 97 | algoFolder.add(uniforms.u_dt, 'value', 0.004, 0.016, 0.002).name('step size'); 98 | algoFolder.add(uniforms.u_color, 'value', 1, 3, 1).name('color'); 99 | const alphaSetting = algoFolder 100 | .add(uniforms.u_alphaVal, 'value', 0.01, 0.4, 0.01) 101 | .name('alpha val'); 102 | algoFolder.add(uniforms.u_isoValue, 'value', 0, 1, 0.04).name('iso value'); 103 | algoFolder.open(); 104 | 105 | return { 106 | camera, 107 | stats, 108 | clock, 109 | uniforms, 110 | gui, 111 | renderer, 112 | controls, 113 | alphaSetting, 114 | }; 115 | }; 116 | 117 | export const ThreeSceneV2 = () => { 118 | const dim = 256; 119 | const canvasRef = useRef(null); 120 | const [volumeData, setVolumeData] = useState(null); 121 | 122 | useEffect(() => { 123 | if (canvasRef.current === null) { 124 | console.log('No canvas!'); 125 | return; 126 | } 127 | 128 | if (volumeData === null) { 129 | console.log('No volume data!'); 130 | return; 131 | } 132 | 133 | // todo: I should clean this up... 134 | const { camera, stats, clock, uniforms, gui, renderer, controls } = 135 | initData(canvasRef, volumeData, dim); 136 | 137 | // Note: Plane works, but looks very weird... 138 | // const geo1 = new Three.PlaneGeometry(2, 2, 2); 139 | const scene = new Three.Scene(); 140 | const geo1 = new Three.BoxGeometry(2, 2, 2); 141 | const mat1 = new Three.ShaderMaterial({ 142 | uniforms: { ...uniforms }, 143 | vertexShader: vertexV2, 144 | fragmentShader: fragmentV2, 145 | }); 146 | const mesh1 = new Three.Mesh(geo1, mat1); 147 | mesh1.rotateY(Math.PI / 2); 148 | scene.add(mesh1); 149 | 150 | const animate = () => { 151 | controls.update(); 152 | stats.update(); 153 | renderer.render(scene, camera); 154 | uniforms.u_time.value = clock.getElapsedTime(); 155 | requestAnimationFrame(animate); 156 | }; 157 | 158 | animate(); 159 | 160 | return () => { 161 | document.body.removeChild(stats.dom); 162 | stats.end(); 163 | gui.destroy(); 164 | }; 165 | }, [volumeData]); 166 | 167 | return ( 168 | <> 169 |
170 | handleVolumeFileUpload(e, dim, setVolumeData)} 173 | /> 174 |
175 | 176 | 177 | ); 178 | }; 179 | -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | :root { 2 | font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; 3 | line-height: 1.5; 4 | font-weight: 400; 5 | 6 | color-scheme: light dark; 7 | color: rgba(255, 255, 255, 0.87); 8 | background-color: #242424; 9 | 10 | font-synthesis: none; 11 | text-rendering: optimizeLegibility; 12 | -webkit-font-smoothing: antialiased; 13 | -moz-osx-font-smoothing: grayscale; 14 | } 15 | 16 | a { 17 | font-weight: 500; 18 | color: #646cff; 19 | text-decoration: inherit; 20 | } 21 | a:hover { 22 | color: #535bf2; 23 | } 24 | 25 | body { 26 | margin: 0; 27 | display: flex; 28 | place-items: center; 29 | min-width: 320px; 30 | min-height: 100vh; 31 | } 32 | 33 | h1 { 34 | font-size: 3.2em; 35 | line-height: 1.1; 36 | } 37 | 38 | button { 39 | border-radius: 8px; 40 | border: 1px solid transparent; 41 | padding: 0.6em 1.2em; 42 | font-size: 1em; 43 | font-weight: 500; 44 | font-family: inherit; 45 | background-color: #1a1a1a; 46 | cursor: pointer; 47 | transition: border-color 0.25s; 48 | } 49 | button:hover { 50 | border-color: #646cff; 51 | } 52 | button:focus, 53 | button:focus-visible { 54 | outline: 4px auto -webkit-focus-ring-color; 55 | } 56 | 57 | @media (prefers-color-scheme: light) { 58 | :root { 59 | color: #213547; 60 | background-color: #ffffff; 61 | } 62 | a:hover { 63 | color: #747bff; 64 | } 65 | button { 66 | background-color: #f9f9f9; 67 | } 68 | } 69 | 70 | @tailwind base; 71 | @tailwind components; 72 | @tailwind utilities; 73 | -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom/client'; 3 | import App from './App.tsx'; 4 | import './index.css'; 5 | 6 | ReactDOM.createRoot(document.getElementById('root')!).render( 7 | 8 | 9 | , 10 | ); 11 | -------------------------------------------------------------------------------- /src/shaders/fragmentV1.glsl: -------------------------------------------------------------------------------- 1 | uniform vec3 u_camera; 2 | uniform vec3 u_resolution; 3 | 4 | varying vec3 v_hitPos; 5 | varying vec3 v_hitPosWorldSpace; 6 | varying vec3 v_cameraObjectSpace; 7 | 8 | float sdCircle(vec3 p, float r) { 9 | return length(p) - r; 10 | } 11 | 12 | float sdTorus(vec3 p, vec2 t) { 13 | vec2 q = vec2(length(p.xz) - t.x, p.y); 14 | return length(q) - t.y; 15 | } 16 | 17 | float map(vec3 p) { 18 | // return sdCircle(p, 0.5); 19 | return sdTorus(p, vec2(0.5, 0.2)); 20 | } 21 | 22 | void main() { 23 | vec3 rayOrigin = vec3(0.0, 0.0, -3.0); 24 | // rayOrigin = u_camera; 25 | rayOrigin = v_cameraObjectSpace; 26 | 27 | vec2 uv = 2.0 * gl_FragCoord.xy / u_resolution.xy - 1.0; 28 | vec3 rayDir = normalize(vec3(uv, 1.0)); 29 | // rayDir = normalize(vec3(uv, 1.0) - rayOrigin); 30 | rayDir = normalize(v_hitPos - rayOrigin); 31 | // rayDir = normalize(v_hitPosWorldSpace - rayOrigin); 32 | 33 | float totalDistance = 0.0; 34 | bool discardCheck = true; 35 | 36 | for (int i = 0; i < 32; i++) { 37 | vec3 p = rayOrigin + rayDir * totalDistance; 38 | 39 | float d = map(p); 40 | 41 | totalDistance += d; 42 | 43 | if (d < 0.001) { 44 | discardCheck = false; 45 | break; 46 | } 47 | 48 | if (totalDistance >= 100.0) { 49 | // If you want to truly discard, set discardCheck to true here. 50 | // discardCheck = true; 51 | discardCheck = false; 52 | break; 53 | } 54 | } 55 | 56 | if (discardCheck) { 57 | discard; 58 | } 59 | 60 | gl_FragColor = vec4(1.0); 61 | gl_FragColor.xyz = rayDir; 62 | gl_FragColor.xyz = vec3(totalDistance * 0.1); 63 | } -------------------------------------------------------------------------------- /src/shaders/fragmentV2.glsl: -------------------------------------------------------------------------------- 1 | precision mediump int; 2 | precision mediump float; 3 | 4 | uniform vec3 u_camera; 5 | uniform vec3 u_resolution; 6 | uniform mediump sampler3D u_volume; 7 | uniform vec3 u_crossSectionSize; 8 | uniform float u_dt; 9 | uniform float u_time; 10 | uniform float u_color; 11 | uniform float u_isoValue; 12 | uniform float u_alphaVal; 13 | 14 | // Inigo Quilez - https://iquilezles.org/articles/palettes/ 15 | vec3 palette(in float t) { 16 | vec3 a = vec3(0.5, 0.5, 0.5); 17 | vec3 b = vec3(0.5, 0.5, 0.5); 18 | vec3 c = vec3(1.0, 1.0, 1.0); 19 | vec3 d = vec3(0.00, 0.33, 0.67); 20 | 21 | return a + b * cos(6.28318 * (c * t + d)); 22 | } 23 | 24 | varying vec3 v_hitPos; 25 | varying vec3 v_hitPosWorldSpace; 26 | varying vec3 v_cameraObjectSpace; 27 | 28 | // Will Usher - https://www.willusher.io/webgl/2019/01/13/volume-rendering-with-webgl 29 | vec2 intersect_box(vec3 orig, vec3 dir) { 30 | // note: used this for testing purposes 31 | // const float halfBoxSize = 0.5; 32 | // const vec3 box_min = vec3(-halfBoxSize); 33 | // const vec3 box_max = vec3(halfBoxSize); 34 | 35 | vec3 box_min = vec3(-u_crossSectionSize); 36 | vec3 box_max = vec3(u_crossSectionSize); 37 | vec3 inv_dir = 1.0 / dir; 38 | vec3 tmin_tmp = (box_min - orig) * inv_dir; 39 | vec3 tmax_tmp = (box_max - orig) * inv_dir; 40 | vec3 tmin = min(tmin_tmp, tmax_tmp); 41 | vec3 tmax = max(tmin_tmp, tmax_tmp); 42 | float t0 = max(tmin.x, max(tmin.y, tmin.z)); 43 | float t1 = min(tmax.x, min(tmax.y, tmax.z)); 44 | return vec2(t0, t1); 45 | } 46 | 47 | void main() { 48 | vec3 rayOrigin = vec3(0.0, 0.0, -3.0); 49 | // rayOrigin = u_camera; 50 | rayOrigin = v_cameraObjectSpace; 51 | 52 | vec2 uv = 2.0 * gl_FragCoord.xy / u_resolution.xy - 1.0; 53 | vec3 rayDir = normalize(vec3(uv, 1.0)); 54 | // rayDir = normalize(vec3(uv, 1.0) - rayOrigin); 55 | rayDir = normalize(v_hitPos - rayOrigin); 56 | // rayDir = normalize(v_hitPosWorldSpace - rayOrigin); 57 | 58 | // Step 2: Intersect the ray with the volume bounds to find the interval 59 | // along the ray overlapped by the volume. 60 | vec2 t_hit = intersect_box(rayOrigin, rayDir); 61 | if (t_hit.x > t_hit.y) { 62 | discard; 63 | } 64 | 65 | // We don't want to sample voxels behind the eye if it's 66 | // inside the volume, so keep the starting point at or in front 67 | // of the eye 68 | t_hit.x = max(t_hit.x, 0.0); 69 | 70 | // Step 3: Compute the step size to march through the volume grid 71 | // vec3 dt_vec = 1.0 / (vec3(20.0) * abs(rayDir)); 72 | 73 | // float dt = min(dt_vec.x, min(dt_vec.y, dt_vec.z)); 74 | // float dt = 0.002; 75 | float dt = u_dt; 76 | 77 | vec4 color = vec4(0.0); 78 | 79 | // note: 0.5 offset centers on cube 80 | vec3 p = rayOrigin + t_hit.x * rayDir + 0.5; 81 | for (float t = t_hit.x; t < t_hit.y; t += dt) { 82 | // note: used this for testing purposes 83 | // float textureVal = texture(u_volume, vec3(0.4, 0.2, 0.4)).r; 84 | 85 | float textureVal = texture(u_volume, p).r; 86 | 87 | vec4 val_color = vec4(0.0); 88 | float val_color_alpha = textureVal * 0.1; 89 | 90 | // looks a little nicer when using this alpha 91 | // val_color_alpha = smoothstep(0.0, 0.25, textureVal * 0.1); 92 | 93 | // looks even nicer 94 | val_color_alpha = smoothstep(0.0, u_alphaVal, val_color_alpha); 95 | 96 | vec3 red = vec3(1.0, 0.0, 0.0); 97 | vec3 white = vec3(1.0); 98 | if (abs(u_color - 1.0) <= 0.01) { 99 | val_color = vec4(white, val_color_alpha); 100 | } else if (abs(u_color - 2.0) <= 0.01) { 101 | val_color = vec4(mix(red, white, val_color_alpha), val_color_alpha); 102 | } else { 103 | val_color = vec4(palette(textureVal), val_color_alpha); 104 | } 105 | 106 | // Step 4.2: Accumulate the color and opacity using the front-to-back 107 | // compositing equation 108 | color.rgb += (1.0 - color.a) * val_color.a * val_color.rgb; 109 | color.a += (1.0 - color.a) * val_color.a; 110 | 111 | // todo: Add blinn-phong lighting? (done, kinda) 112 | // todo: Iso value slider? (done, kinda) 113 | // todo: Clean this up? (Is this even the right approach?) 114 | if (textureVal > u_isoValue) { 115 | // calculate normal at point by central differences method 116 | float gxLess = texture(u_volume, vec3(p.x - rayDir.x * u_dt, p.y, p.z)).r; 117 | float gxMore = texture(u_volume, vec3(p.x + rayDir.x * u_dt, p.y, p.z)).r; 118 | float dgx = gxMore - gxLess; 119 | 120 | float gyLess = texture(u_volume, vec3(p.x, p.y - rayDir.y * u_dt, p.z)).r; 121 | float gyMore = texture(u_volume, vec3(p.x, p.y + rayDir.y * u_dt, p.z)).r; 122 | float dgy = gyMore - gyLess; 123 | 124 | float gzLess = texture(u_volume, vec3(p.x, p.y, p.z - rayDir.z * u_dt)).r; 125 | float gzMore = texture(u_volume, vec3(p.x, p.y, p.z + rayDir.z * u_dt)).r; 126 | float dgz = gzMore - gzLess; 127 | vec3 n = normalize(vec3(dgx, dgy, dgz)); 128 | 129 | // calculate diffuse lighting 130 | vec3 lightSource = vec3(1.0); 131 | vec3 lightDir = normalize(lightSource); 132 | float diffuseStrength = max(dot(n, lightDir), 0.0); 133 | 134 | // calculate specular lighting 135 | vec3 viewSource = normalize(rayOrigin); 136 | vec3 reflectSource = normalize(reflect(-lightSource, n)); 137 | float specularStrength = max(0.0, dot(viewSource, reflectSource)); 138 | specularStrength = pow(specularStrength, 64.0); 139 | 140 | // add lighting 141 | color.rgb = diffuseStrength * val_color.rgb + specularStrength * val_color.rgb; 142 | color.rgb *= val_color.rgb; 143 | color.a = 0.95; 144 | break; 145 | } 146 | 147 | // Optimization: break out of the loop when the color is near opaque 148 | if (color.a >= 0.95) { 149 | break; 150 | } 151 | 152 | p += rayDir * dt; 153 | } 154 | 155 | gl_FragColor = color; 156 | } -------------------------------------------------------------------------------- /src/shaders/vertexV1.glsl: -------------------------------------------------------------------------------- 1 | uniform vec3 u_camera; // default in world space 2 | uniform vec3 u_resolution; 3 | 4 | // The Art of Code: https://www.youtube.com/watch?v=S8AWd66hoCo 5 | // It is important to keep camera + (vertex) position in same space. 6 | // We can either move (vertex) position to world space, or the camera 7 | // to object space. In this example, we transform camera to object 8 | // space and use that as the rayOrigin in the fragment shader. 9 | 10 | varying vec3 v_hitPos; // default in object space 11 | varying vec3 v_hitPosWorldSpace; 12 | varying vec3 v_cameraObjectSpace; 13 | 14 | void main() { 15 | gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0); 16 | 17 | v_hitPos = position.xyz; 18 | 19 | // In this case, we move the (vertex) position to world space. 20 | // Notice we multiply by modelMatrix, not modelViewMatrix. 21 | v_hitPosWorldSpace = (modelMatrix * vec4(position, 1.0)).xyz; 22 | 23 | // In this case, we move the camera to object space. 24 | // Notice we use inverse(modelMatrix) + put camera in homogeneous coords. 25 | v_cameraObjectSpace = (inverse(modelMatrix) * vec4(u_camera, 1.0)).xyz; 26 | } -------------------------------------------------------------------------------- /src/shaders/vertexV2.glsl: -------------------------------------------------------------------------------- 1 | precision mediump float; 2 | 3 | uniform vec3 u_camera; // default in world space 4 | uniform vec3 u_resolution; 5 | uniform float u_time; 6 | 7 | // The Art of Code - https://www.youtube.com/watch?v=S8AWd66hoCo 8 | // It is important to keep camera + (vertex) position in same space. 9 | // We can either move (vertex) position to world space, or the camera 10 | // to object space. In this example, we transform camera to object 11 | // space and use that as the rayOrigin in the fragment shader. 12 | 13 | varying vec3 v_hitPos; // default in object space 14 | varying vec3 v_hitPosWorldSpace; 15 | varying vec3 v_cameraObjectSpace; 16 | 17 | void main() { 18 | // Three.js variables: position, projectionMatrix, modelViewMatrix, modelMatrix 19 | vec3 pos = position; 20 | 21 | gl_Position = projectionMatrix * modelViewMatrix * vec4(pos, 1.0); 22 | 23 | v_hitPos = position.xyz; 24 | 25 | // In this case, we move the (vertex) position to world space. 26 | // Notice we multiply by modelMatrix, not modelViewMatrix. 27 | v_hitPosWorldSpace = (modelMatrix * vec4(position, 1.0)).xyz; 28 | 29 | // In this case, we move the camera to object space. 30 | // Notice we use inverse(modelMatrix) + put camera in homogeneous coords. 31 | v_cameraObjectSpace = (inverse(modelMatrix) * vec4(u_camera, 1.0)).xyz; 32 | } -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | export default { 3 | content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'], 4 | theme: { 5 | extend: {}, 6 | }, 7 | plugins: [], 8 | }; 9 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "useDefineForClassFields": true, 5 | "lib": ["ES2020", "DOM", "DOM.Iterable"], 6 | "module": "ESNext", 7 | "skipLibCheck": true, 8 | 9 | /* Bundler mode */ 10 | "moduleResolution": "bundler", 11 | "allowImportingTsExtensions": true, 12 | "resolveJsonModule": true, 13 | "isolatedModules": true, 14 | "noEmit": true, 15 | "jsx": "react-jsx", 16 | 17 | /* Linting */ 18 | "strict": true, 19 | "noUnusedLocals": true, 20 | "noUnusedParameters": true, 21 | "noFallthroughCasesInSwitch": true 22 | }, 23 | "include": ["src"], 24 | "references": [{ "path": "./tsconfig.node.json" }] 25 | } 26 | -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "skipLibCheck": true, 5 | "module": "ESNext", 6 | "moduleResolution": "bundler", 7 | "allowSyntheticDefaultImports": true, 8 | "strict": true 9 | }, 10 | "include": ["vite.config.ts"] 11 | } 12 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite'; 2 | import react from '@vitejs/plugin-react'; 3 | 4 | export default defineConfig({ 5 | plugins: [react()], 6 | }); 7 | --------------------------------------------------------------------------------