[READ-ONLY] Mirror of https://github.com/flo-bit/ui-kit. 🦊 fox ui, svelte 5 and tailwind 4 flo-bit.dev/ui-kit/
svelte tailwindcss ui-components
0

Configure Feed

Select the types of activity you want to include in your feed.

fix deploy, update readme

Florian (Mar 13, 2025, 6:26 PM +0100) 54c5199f ad7b7841

+1394 -104
+20 -25
README.md
··· 11 11 12 12 **Work in progress, only for testing purposes** 13 13 14 - 1. setup a new svelte project with tailwind 15 - 16 - 2. install the main dependencies 14 + ## 1. Create a new svelte project with tailwind css (including `@tailwindcss/typography` and `@tailwindcss/forms` plugins) 17 15 18 16 ```bash 19 - npm install bits-ui tailwind-variants @tailwindcss/forms @tailwindcss/typography @zerodevx/svelte-img 17 + npx sv create my-project 20 18 ``` 21 19 22 - 3. if you want to use the image component, add the plugin to your vite config 20 + ## 2. Install fox-ui-svelte 23 21 24 - ```ts 25 - import { imagetools } from '@zerodevx/svelte-img/vite'; 26 - 27 - export default defineConfig({ 28 - plugins: [sveltekit(), imagetools()] 29 - }); 22 + ```bash 23 + npm install fox-ui-svelte 30 24 ``` 31 25 32 - 4. set theme variables in your app.css (changing `gray` and `blue` to your preferred colors, using find and replace) and add the tailwind plugins 26 + ## 3. set theme variables in your app.css (changing `gray` and `blue` to your preferred colors, using find and replace). 33 27 34 28 ```css 35 - @plugin '@tailwindcss/typography'; 36 - @plugin '@tailwindcss/forms'; 29 + @source "../node_modules/fox-ui-svelte"; 37 30 38 31 @theme { 39 32 --color-base-50: var(--color-gray-50); ··· 62 55 } 63 56 ``` 64 57 65 - 5. copy `src/lib/utils.ts` to your projects lib folder (has to be exactly this name and path) 58 + ## 4. Use the components 66 59 67 - 6. copy components from `src/lib/components` to your project 68 - 69 - Some components might need additional dependencies, just install once you get an error (recommended), or install all of them at once: 70 - 71 - ```bash 72 - npm install bits-ui tailwind-variants @tailwindcss/forms @tailwindcss/typography layerchart plyr svelte-sonner tailwindcss-animate three @threlte/extras @threlte/core @types/three @zerodevx/svelte-img @number-flow/svelte wavesurfer.js hls.js @texel/color 60 + ```svelte 61 + <script> 62 + import { Button } from 'fox-ui-svelte'; 63 + </script> 73 64 ``` 74 65 75 - again tailwind plugins should be added to your `app.css` 76 66 77 - ```css 78 - // [other plugins...] 79 - @plugin 'tailwindcss-animate'; 67 + If you want to use the image component, add the plugin to your vite config 68 + 69 + ```ts 70 + import { imagetools } from '@zerodevx/svelte-img/vite'; 71 + 72 + export default defineConfig({ 73 + plugins: [sveltekit(), imagetools()] 74 + }); 80 75 ```
+1374 -79
package-lock.json
··· 161 161 "node": ">17.0.0" 162 162 } 163 163 }, 164 + "node_modules/@emnapi/runtime": { 165 + "version": "1.3.1", 166 + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.3.1.tgz", 167 + "integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==", 168 + "dev": true, 169 + "license": "MIT", 170 + "optional": true, 171 + "dependencies": { 172 + "tslib": "^2.4.0" 173 + } 174 + }, 175 + "node_modules/@esbuild/aix-ppc64": { 176 + "version": "0.25.1", 177 + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.1.tgz", 178 + "integrity": "sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ==", 179 + "cpu": [ 180 + "ppc64" 181 + ], 182 + "license": "MIT", 183 + "optional": true, 184 + "os": [ 185 + "aix" 186 + ], 187 + "engines": { 188 + "node": ">=18" 189 + } 190 + }, 191 + "node_modules/@esbuild/android-arm": { 192 + "version": "0.25.1", 193 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.1.tgz", 194 + "integrity": "sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q==", 195 + "cpu": [ 196 + "arm" 197 + ], 198 + "license": "MIT", 199 + "optional": true, 200 + "os": [ 201 + "android" 202 + ], 203 + "engines": { 204 + "node": ">=18" 205 + } 206 + }, 207 + "node_modules/@esbuild/android-arm64": { 208 + "version": "0.25.1", 209 + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.1.tgz", 210 + "integrity": "sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA==", 211 + "cpu": [ 212 + "arm64" 213 + ], 214 + "license": "MIT", 215 + "optional": true, 216 + "os": [ 217 + "android" 218 + ], 219 + "engines": { 220 + "node": ">=18" 221 + } 222 + }, 223 + "node_modules/@esbuild/android-x64": { 224 + "version": "0.25.1", 225 + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.1.tgz", 226 + "integrity": "sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw==", 227 + "cpu": [ 228 + "x64" 229 + ], 230 + "license": "MIT", 231 + "optional": true, 232 + "os": [ 233 + "android" 234 + ], 235 + "engines": { 236 + "node": ">=18" 237 + } 238 + }, 164 239 "node_modules/@esbuild/darwin-arm64": { 165 240 "version": "0.25.1", 166 241 "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.1.tgz", ··· 177 252 "node": ">=18" 178 253 } 179 254 }, 255 + "node_modules/@esbuild/darwin-x64": { 256 + "version": "0.25.1", 257 + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.1.tgz", 258 + "integrity": "sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA==", 259 + "cpu": [ 260 + "x64" 261 + ], 262 + "license": "MIT", 263 + "optional": true, 264 + "os": [ 265 + "darwin" 266 + ], 267 + "engines": { 268 + "node": ">=18" 269 + } 270 + }, 271 + "node_modules/@esbuild/freebsd-arm64": { 272 + "version": "0.25.1", 273 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.1.tgz", 274 + "integrity": "sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A==", 275 + "cpu": [ 276 + "arm64" 277 + ], 278 + "license": "MIT", 279 + "optional": true, 280 + "os": [ 281 + "freebsd" 282 + ], 283 + "engines": { 284 + "node": ">=18" 285 + } 286 + }, 287 + "node_modules/@esbuild/freebsd-x64": { 288 + "version": "0.25.1", 289 + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.1.tgz", 290 + "integrity": "sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww==", 291 + "cpu": [ 292 + "x64" 293 + ], 294 + "license": "MIT", 295 + "optional": true, 296 + "os": [ 297 + "freebsd" 298 + ], 299 + "engines": { 300 + "node": ">=18" 301 + } 302 + }, 303 + "node_modules/@esbuild/linux-arm": { 304 + "version": "0.25.1", 305 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.1.tgz", 306 + "integrity": "sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ==", 307 + "cpu": [ 308 + "arm" 309 + ], 310 + "license": "MIT", 311 + "optional": true, 312 + "os": [ 313 + "linux" 314 + ], 315 + "engines": { 316 + "node": ">=18" 317 + } 318 + }, 319 + "node_modules/@esbuild/linux-arm64": { 320 + "version": "0.25.1", 321 + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.1.tgz", 322 + "integrity": "sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ==", 323 + "cpu": [ 324 + "arm64" 325 + ], 326 + "license": "MIT", 327 + "optional": true, 328 + "os": [ 329 + "linux" 330 + ], 331 + "engines": { 332 + "node": ">=18" 333 + } 334 + }, 335 + "node_modules/@esbuild/linux-ia32": { 336 + "version": "0.25.1", 337 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.1.tgz", 338 + "integrity": "sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ==", 339 + "cpu": [ 340 + "ia32" 341 + ], 342 + "license": "MIT", 343 + "optional": true, 344 + "os": [ 345 + "linux" 346 + ], 347 + "engines": { 348 + "node": ">=18" 349 + } 350 + }, 351 + "node_modules/@esbuild/linux-loong64": { 352 + "version": "0.25.1", 353 + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.1.tgz", 354 + "integrity": "sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg==", 355 + "cpu": [ 356 + "loong64" 357 + ], 358 + "license": "MIT", 359 + "optional": true, 360 + "os": [ 361 + "linux" 362 + ], 363 + "engines": { 364 + "node": ">=18" 365 + } 366 + }, 367 + "node_modules/@esbuild/linux-mips64el": { 368 + "version": "0.25.1", 369 + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.1.tgz", 370 + "integrity": "sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg==", 371 + "cpu": [ 372 + "mips64el" 373 + ], 374 + "license": "MIT", 375 + "optional": true, 376 + "os": [ 377 + "linux" 378 + ], 379 + "engines": { 380 + "node": ">=18" 381 + } 382 + }, 383 + "node_modules/@esbuild/linux-ppc64": { 384 + "version": "0.25.1", 385 + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.1.tgz", 386 + "integrity": "sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg==", 387 + "cpu": [ 388 + "ppc64" 389 + ], 390 + "license": "MIT", 391 + "optional": true, 392 + "os": [ 393 + "linux" 394 + ], 395 + "engines": { 396 + "node": ">=18" 397 + } 398 + }, 399 + "node_modules/@esbuild/linux-riscv64": { 400 + "version": "0.25.1", 401 + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.1.tgz", 402 + "integrity": "sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ==", 403 + "cpu": [ 404 + "riscv64" 405 + ], 406 + "license": "MIT", 407 + "optional": true, 408 + "os": [ 409 + "linux" 410 + ], 411 + "engines": { 412 + "node": ">=18" 413 + } 414 + }, 415 + "node_modules/@esbuild/linux-s390x": { 416 + "version": "0.25.1", 417 + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.1.tgz", 418 + "integrity": "sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ==", 419 + "cpu": [ 420 + "s390x" 421 + ], 422 + "license": "MIT", 423 + "optional": true, 424 + "os": [ 425 + "linux" 426 + ], 427 + "engines": { 428 + "node": ">=18" 429 + } 430 + }, 431 + "node_modules/@esbuild/linux-x64": { 432 + "version": "0.25.1", 433 + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.1.tgz", 434 + "integrity": "sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA==", 435 + "cpu": [ 436 + "x64" 437 + ], 438 + "license": "MIT", 439 + "optional": true, 440 + "os": [ 441 + "linux" 442 + ], 443 + "engines": { 444 + "node": ">=18" 445 + } 446 + }, 447 + "node_modules/@esbuild/netbsd-arm64": { 448 + "version": "0.25.1", 449 + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.1.tgz", 450 + "integrity": "sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g==", 451 + "cpu": [ 452 + "arm64" 453 + ], 454 + "license": "MIT", 455 + "optional": true, 456 + "os": [ 457 + "netbsd" 458 + ], 459 + "engines": { 460 + "node": ">=18" 461 + } 462 + }, 463 + "node_modules/@esbuild/netbsd-x64": { 464 + "version": "0.25.1", 465 + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.1.tgz", 466 + "integrity": "sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA==", 467 + "cpu": [ 468 + "x64" 469 + ], 470 + "license": "MIT", 471 + "optional": true, 472 + "os": [ 473 + "netbsd" 474 + ], 475 + "engines": { 476 + "node": ">=18" 477 + } 478 + }, 479 + "node_modules/@esbuild/openbsd-arm64": { 480 + "version": "0.25.1", 481 + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.1.tgz", 482 + "integrity": "sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg==", 483 + "cpu": [ 484 + "arm64" 485 + ], 486 + "license": "MIT", 487 + "optional": true, 488 + "os": [ 489 + "openbsd" 490 + ], 491 + "engines": { 492 + "node": ">=18" 493 + } 494 + }, 495 + "node_modules/@esbuild/openbsd-x64": { 496 + "version": "0.25.1", 497 + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.1.tgz", 498 + "integrity": "sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw==", 499 + "cpu": [ 500 + "x64" 501 + ], 502 + "license": "MIT", 503 + "optional": true, 504 + "os": [ 505 + "openbsd" 506 + ], 507 + "engines": { 508 + "node": ">=18" 509 + } 510 + }, 511 + "node_modules/@esbuild/sunos-x64": { 512 + "version": "0.25.1", 513 + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.1.tgz", 514 + "integrity": "sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg==", 515 + "cpu": [ 516 + "x64" 517 + ], 518 + "license": "MIT", 519 + "optional": true, 520 + "os": [ 521 + "sunos" 522 + ], 523 + "engines": { 524 + "node": ">=18" 525 + } 526 + }, 527 + "node_modules/@esbuild/win32-arm64": { 528 + "version": "0.25.1", 529 + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.1.tgz", 530 + "integrity": "sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ==", 531 + "cpu": [ 532 + "arm64" 533 + ], 534 + "license": "MIT", 535 + "optional": true, 536 + "os": [ 537 + "win32" 538 + ], 539 + "engines": { 540 + "node": ">=18" 541 + } 542 + }, 543 + "node_modules/@esbuild/win32-ia32": { 544 + "version": "0.25.1", 545 + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.1.tgz", 546 + "integrity": "sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A==", 547 + "cpu": [ 548 + "ia32" 549 + ], 550 + "license": "MIT", 551 + "optional": true, 552 + "os": [ 553 + "win32" 554 + ], 555 + "engines": { 556 + "node": ">=18" 557 + } 558 + }, 559 + "node_modules/@esbuild/win32-x64": { 560 + "version": "0.25.1", 561 + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.1.tgz", 562 + "integrity": "sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg==", 563 + "cpu": [ 564 + "x64" 565 + ], 566 + "license": "MIT", 567 + "optional": true, 568 + "os": [ 569 + "win32" 570 + ], 571 + "engines": { 572 + "node": ">=18" 573 + } 574 + }, 180 575 "node_modules/@eslint-community/eslint-utils": { 181 - "version": "4.5.0", 182 - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.5.0.tgz", 183 - "integrity": "sha512-RoV8Xs9eNwiDvhv7M+xcL4PWyRyIXRY/FLp3buU4h1EYfdF7unWUy3dOjPqb3C7rMUewIcqwW850PgS8h1o1yg==", 576 + "version": "4.5.1", 577 + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.5.1.tgz", 578 + "integrity": "sha512-soEIOALTfTK6EjmKMMoLugwaP0rzkad90iIWd1hMO9ARkSAyjfMfkRRhLvD5qH7vvM0Cg72pieUfR6yh6XxC4w==", 184 579 "dev": true, 185 580 "license": "MIT", 186 581 "dependencies": { ··· 460 855 "@img/sharp-libvips-darwin-arm64": "1.0.4" 461 856 } 462 857 }, 858 + "node_modules/@img/sharp-darwin-x64": { 859 + "version": "0.33.5", 860 + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz", 861 + "integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==", 862 + "cpu": [ 863 + "x64" 864 + ], 865 + "dev": true, 866 + "license": "Apache-2.0", 867 + "optional": true, 868 + "os": [ 869 + "darwin" 870 + ], 871 + "engines": { 872 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 873 + }, 874 + "funding": { 875 + "url": "https://opencollective.com/libvips" 876 + }, 877 + "optionalDependencies": { 878 + "@img/sharp-libvips-darwin-x64": "1.0.4" 879 + } 880 + }, 463 881 "node_modules/@img/sharp-libvips-darwin-arm64": { 464 882 "version": "1.0.4", 465 883 "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz", ··· 473 891 "os": [ 474 892 "darwin" 475 893 ], 894 + "funding": { 895 + "url": "https://opencollective.com/libvips" 896 + } 897 + }, 898 + "node_modules/@img/sharp-libvips-darwin-x64": { 899 + "version": "1.0.4", 900 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz", 901 + "integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==", 902 + "cpu": [ 903 + "x64" 904 + ], 905 + "dev": true, 906 + "license": "LGPL-3.0-or-later", 907 + "optional": true, 908 + "os": [ 909 + "darwin" 910 + ], 911 + "funding": { 912 + "url": "https://opencollective.com/libvips" 913 + } 914 + }, 915 + "node_modules/@img/sharp-libvips-linux-arm": { 916 + "version": "1.0.5", 917 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz", 918 + "integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==", 919 + "cpu": [ 920 + "arm" 921 + ], 922 + "dev": true, 923 + "license": "LGPL-3.0-or-later", 924 + "optional": true, 925 + "os": [ 926 + "linux" 927 + ], 928 + "funding": { 929 + "url": "https://opencollective.com/libvips" 930 + } 931 + }, 932 + "node_modules/@img/sharp-libvips-linux-arm64": { 933 + "version": "1.0.4", 934 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz", 935 + "integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==", 936 + "cpu": [ 937 + "arm64" 938 + ], 939 + "dev": true, 940 + "license": "LGPL-3.0-or-later", 941 + "optional": true, 942 + "os": [ 943 + "linux" 944 + ], 945 + "funding": { 946 + "url": "https://opencollective.com/libvips" 947 + } 948 + }, 949 + "node_modules/@img/sharp-libvips-linux-s390x": { 950 + "version": "1.0.4", 951 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz", 952 + "integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==", 953 + "cpu": [ 954 + "s390x" 955 + ], 956 + "dev": true, 957 + "license": "LGPL-3.0-or-later", 958 + "optional": true, 959 + "os": [ 960 + "linux" 961 + ], 962 + "funding": { 963 + "url": "https://opencollective.com/libvips" 964 + } 965 + }, 966 + "node_modules/@img/sharp-libvips-linux-x64": { 967 + "version": "1.0.4", 968 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz", 969 + "integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==", 970 + "cpu": [ 971 + "x64" 972 + ], 973 + "dev": true, 974 + "license": "LGPL-3.0-or-later", 975 + "optional": true, 976 + "os": [ 977 + "linux" 978 + ], 979 + "funding": { 980 + "url": "https://opencollective.com/libvips" 981 + } 982 + }, 983 + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { 984 + "version": "1.0.4", 985 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz", 986 + "integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==", 987 + "cpu": [ 988 + "arm64" 989 + ], 990 + "dev": true, 991 + "license": "LGPL-3.0-or-later", 992 + "optional": true, 993 + "os": [ 994 + "linux" 995 + ], 996 + "funding": { 997 + "url": "https://opencollective.com/libvips" 998 + } 999 + }, 1000 + "node_modules/@img/sharp-libvips-linuxmusl-x64": { 1001 + "version": "1.0.4", 1002 + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz", 1003 + "integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==", 1004 + "cpu": [ 1005 + "x64" 1006 + ], 1007 + "dev": true, 1008 + "license": "LGPL-3.0-or-later", 1009 + "optional": true, 1010 + "os": [ 1011 + "linux" 1012 + ], 1013 + "funding": { 1014 + "url": "https://opencollective.com/libvips" 1015 + } 1016 + }, 1017 + "node_modules/@img/sharp-linux-arm": { 1018 + "version": "0.33.5", 1019 + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz", 1020 + "integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==", 1021 + "cpu": [ 1022 + "arm" 1023 + ], 1024 + "dev": true, 1025 + "license": "Apache-2.0", 1026 + "optional": true, 1027 + "os": [ 1028 + "linux" 1029 + ], 1030 + "engines": { 1031 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1032 + }, 1033 + "funding": { 1034 + "url": "https://opencollective.com/libvips" 1035 + }, 1036 + "optionalDependencies": { 1037 + "@img/sharp-libvips-linux-arm": "1.0.5" 1038 + } 1039 + }, 1040 + "node_modules/@img/sharp-linux-arm64": { 1041 + "version": "0.33.5", 1042 + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz", 1043 + "integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==", 1044 + "cpu": [ 1045 + "arm64" 1046 + ], 1047 + "dev": true, 1048 + "license": "Apache-2.0", 1049 + "optional": true, 1050 + "os": [ 1051 + "linux" 1052 + ], 1053 + "engines": { 1054 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1055 + }, 1056 + "funding": { 1057 + "url": "https://opencollective.com/libvips" 1058 + }, 1059 + "optionalDependencies": { 1060 + "@img/sharp-libvips-linux-arm64": "1.0.4" 1061 + } 1062 + }, 1063 + "node_modules/@img/sharp-linux-s390x": { 1064 + "version": "0.33.5", 1065 + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz", 1066 + "integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==", 1067 + "cpu": [ 1068 + "s390x" 1069 + ], 1070 + "dev": true, 1071 + "license": "Apache-2.0", 1072 + "optional": true, 1073 + "os": [ 1074 + "linux" 1075 + ], 1076 + "engines": { 1077 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1078 + }, 1079 + "funding": { 1080 + "url": "https://opencollective.com/libvips" 1081 + }, 1082 + "optionalDependencies": { 1083 + "@img/sharp-libvips-linux-s390x": "1.0.4" 1084 + } 1085 + }, 1086 + "node_modules/@img/sharp-linux-x64": { 1087 + "version": "0.33.5", 1088 + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz", 1089 + "integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==", 1090 + "cpu": [ 1091 + "x64" 1092 + ], 1093 + "dev": true, 1094 + "license": "Apache-2.0", 1095 + "optional": true, 1096 + "os": [ 1097 + "linux" 1098 + ], 1099 + "engines": { 1100 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1101 + }, 1102 + "funding": { 1103 + "url": "https://opencollective.com/libvips" 1104 + }, 1105 + "optionalDependencies": { 1106 + "@img/sharp-libvips-linux-x64": "1.0.4" 1107 + } 1108 + }, 1109 + "node_modules/@img/sharp-linuxmusl-arm64": { 1110 + "version": "0.33.5", 1111 + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz", 1112 + "integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==", 1113 + "cpu": [ 1114 + "arm64" 1115 + ], 1116 + "dev": true, 1117 + "license": "Apache-2.0", 1118 + "optional": true, 1119 + "os": [ 1120 + "linux" 1121 + ], 1122 + "engines": { 1123 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1124 + }, 1125 + "funding": { 1126 + "url": "https://opencollective.com/libvips" 1127 + }, 1128 + "optionalDependencies": { 1129 + "@img/sharp-libvips-linuxmusl-arm64": "1.0.4" 1130 + } 1131 + }, 1132 + "node_modules/@img/sharp-linuxmusl-x64": { 1133 + "version": "0.33.5", 1134 + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz", 1135 + "integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==", 1136 + "cpu": [ 1137 + "x64" 1138 + ], 1139 + "dev": true, 1140 + "license": "Apache-2.0", 1141 + "optional": true, 1142 + "os": [ 1143 + "linux" 1144 + ], 1145 + "engines": { 1146 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1147 + }, 1148 + "funding": { 1149 + "url": "https://opencollective.com/libvips" 1150 + }, 1151 + "optionalDependencies": { 1152 + "@img/sharp-libvips-linuxmusl-x64": "1.0.4" 1153 + } 1154 + }, 1155 + "node_modules/@img/sharp-wasm32": { 1156 + "version": "0.33.5", 1157 + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz", 1158 + "integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==", 1159 + "cpu": [ 1160 + "wasm32" 1161 + ], 1162 + "dev": true, 1163 + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", 1164 + "optional": true, 1165 + "dependencies": { 1166 + "@emnapi/runtime": "^1.2.0" 1167 + }, 1168 + "engines": { 1169 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1170 + }, 1171 + "funding": { 1172 + "url": "https://opencollective.com/libvips" 1173 + } 1174 + }, 1175 + "node_modules/@img/sharp-win32-ia32": { 1176 + "version": "0.33.5", 1177 + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz", 1178 + "integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==", 1179 + "cpu": [ 1180 + "ia32" 1181 + ], 1182 + "dev": true, 1183 + "license": "Apache-2.0 AND LGPL-3.0-or-later", 1184 + "optional": true, 1185 + "os": [ 1186 + "win32" 1187 + ], 1188 + "engines": { 1189 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1190 + }, 1191 + "funding": { 1192 + "url": "https://opencollective.com/libvips" 1193 + } 1194 + }, 1195 + "node_modules/@img/sharp-win32-x64": { 1196 + "version": "0.33.5", 1197 + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz", 1198 + "integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==", 1199 + "cpu": [ 1200 + "x64" 1201 + ], 1202 + "dev": true, 1203 + "license": "Apache-2.0 AND LGPL-3.0-or-later", 1204 + "optional": true, 1205 + "os": [ 1206 + "win32" 1207 + ], 1208 + "engines": { 1209 + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" 1210 + }, 476 1211 "funding": { 477 1212 "url": "https://opencollective.com/libvips" 478 1213 } ··· 650 1385 }, 651 1386 "funding": { 652 1387 "url": "https://github.com/sponsors/antonk52" 653 - } 654 - }, 655 - "node_modules/@layerstack/tailwind/node_modules/picomatch": { 656 - "version": "2.3.1", 657 - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 658 - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 659 - "license": "MIT", 660 - "engines": { 661 - "node": ">=8.6" 662 - }, 663 - "funding": { 664 - "url": "https://github.com/sponsors/jonschlinkert" 665 1388 } 666 1389 }, 667 1390 "node_modules/@layerstack/tailwind/node_modules/postcss-load-config": { ··· 871 1594 } 872 1595 } 873 1596 }, 1597 + "node_modules/@rollup/pluginutils/node_modules/picomatch": { 1598 + "version": "4.0.2", 1599 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", 1600 + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", 1601 + "license": "MIT", 1602 + "engines": { 1603 + "node": ">=12" 1604 + }, 1605 + "funding": { 1606 + "url": "https://github.com/sponsors/jonschlinkert" 1607 + } 1608 + }, 1609 + "node_modules/@rollup/rollup-android-arm-eabi": { 1610 + "version": "4.35.0", 1611 + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.35.0.tgz", 1612 + "integrity": "sha512-uYQ2WfPaqz5QtVgMxfN6NpLD+no0MYHDBywl7itPYd3K5TjjSghNKmX8ic9S8NU8w81NVhJv/XojcHptRly7qQ==", 1613 + "cpu": [ 1614 + "arm" 1615 + ], 1616 + "license": "MIT", 1617 + "optional": true, 1618 + "os": [ 1619 + "android" 1620 + ] 1621 + }, 1622 + "node_modules/@rollup/rollup-android-arm64": { 1623 + "version": "4.35.0", 1624 + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.35.0.tgz", 1625 + "integrity": "sha512-FtKddj9XZudurLhdJnBl9fl6BwCJ3ky8riCXjEw3/UIbjmIY58ppWwPEvU3fNu+W7FUsAsB1CdH+7EQE6CXAPA==", 1626 + "cpu": [ 1627 + "arm64" 1628 + ], 1629 + "license": "MIT", 1630 + "optional": true, 1631 + "os": [ 1632 + "android" 1633 + ] 1634 + }, 874 1635 "node_modules/@rollup/rollup-darwin-arm64": { 875 1636 "version": "4.35.0", 876 1637 "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.35.0.tgz", ··· 882 1643 "optional": true, 883 1644 "os": [ 884 1645 "darwin" 1646 + ] 1647 + }, 1648 + "node_modules/@rollup/rollup-darwin-x64": { 1649 + "version": "4.35.0", 1650 + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.35.0.tgz", 1651 + "integrity": "sha512-3IrHjfAS6Vkp+5bISNQnPogRAW5GAV1n+bNCrDwXmfMHbPl5EhTmWtfmwlJxFRUCBZ+tZ/OxDyU08aF6NI/N5Q==", 1652 + "cpu": [ 1653 + "x64" 1654 + ], 1655 + "license": "MIT", 1656 + "optional": true, 1657 + "os": [ 1658 + "darwin" 1659 + ] 1660 + }, 1661 + "node_modules/@rollup/rollup-freebsd-arm64": { 1662 + "version": "4.35.0", 1663 + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.35.0.tgz", 1664 + "integrity": "sha512-sxjoD/6F9cDLSELuLNnY0fOrM9WA0KrM0vWm57XhrIMf5FGiN8D0l7fn+bpUeBSU7dCgPV2oX4zHAsAXyHFGcQ==", 1665 + "cpu": [ 1666 + "arm64" 1667 + ], 1668 + "license": "MIT", 1669 + "optional": true, 1670 + "os": [ 1671 + "freebsd" 1672 + ] 1673 + }, 1674 + "node_modules/@rollup/rollup-freebsd-x64": { 1675 + "version": "4.35.0", 1676 + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.35.0.tgz", 1677 + "integrity": "sha512-2mpHCeRuD1u/2kruUiHSsnjWtHjqVbzhBkNVQ1aVD63CcexKVcQGwJ2g5VphOd84GvxfSvnnlEyBtQCE5hxVVw==", 1678 + "cpu": [ 1679 + "x64" 1680 + ], 1681 + "license": "MIT", 1682 + "optional": true, 1683 + "os": [ 1684 + "freebsd" 1685 + ] 1686 + }, 1687 + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 1688 + "version": "4.35.0", 1689 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.35.0.tgz", 1690 + "integrity": "sha512-mrA0v3QMy6ZSvEuLs0dMxcO2LnaCONs1Z73GUDBHWbY8tFFocM6yl7YyMu7rz4zS81NDSqhrUuolyZXGi8TEqg==", 1691 + "cpu": [ 1692 + "arm" 1693 + ], 1694 + "license": "MIT", 1695 + "optional": true, 1696 + "os": [ 1697 + "linux" 1698 + ] 1699 + }, 1700 + "node_modules/@rollup/rollup-linux-arm-musleabihf": { 1701 + "version": "4.35.0", 1702 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.35.0.tgz", 1703 + "integrity": "sha512-DnYhhzcvTAKNexIql8pFajr0PiDGrIsBYPRvCKlA5ixSS3uwo/CWNZxB09jhIapEIg945KOzcYEAGGSmTSpk7A==", 1704 + "cpu": [ 1705 + "arm" 1706 + ], 1707 + "license": "MIT", 1708 + "optional": true, 1709 + "os": [ 1710 + "linux" 1711 + ] 1712 + }, 1713 + "node_modules/@rollup/rollup-linux-arm64-gnu": { 1714 + "version": "4.35.0", 1715 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.35.0.tgz", 1716 + "integrity": "sha512-uagpnH2M2g2b5iLsCTZ35CL1FgyuzzJQ8L9VtlJ+FckBXroTwNOaD0z0/UF+k5K3aNQjbm8LIVpxykUOQt1m/A==", 1717 + "cpu": [ 1718 + "arm64" 1719 + ], 1720 + "license": "MIT", 1721 + "optional": true, 1722 + "os": [ 1723 + "linux" 1724 + ] 1725 + }, 1726 + "node_modules/@rollup/rollup-linux-arm64-musl": { 1727 + "version": "4.35.0", 1728 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.35.0.tgz", 1729 + "integrity": "sha512-XQxVOCd6VJeHQA/7YcqyV0/88N6ysSVzRjJ9I9UA/xXpEsjvAgDTgH3wQYz5bmr7SPtVK2TsP2fQ2N9L4ukoUg==", 1730 + "cpu": [ 1731 + "arm64" 1732 + ], 1733 + "license": "MIT", 1734 + "optional": true, 1735 + "os": [ 1736 + "linux" 1737 + ] 1738 + }, 1739 + "node_modules/@rollup/rollup-linux-loongarch64-gnu": { 1740 + "version": "4.35.0", 1741 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.35.0.tgz", 1742 + "integrity": "sha512-5pMT5PzfgwcXEwOaSrqVsz/LvjDZt+vQ8RT/70yhPU06PTuq8WaHhfT1LW+cdD7mW6i/J5/XIkX/1tCAkh1W6g==", 1743 + "cpu": [ 1744 + "loong64" 1745 + ], 1746 + "license": "MIT", 1747 + "optional": true, 1748 + "os": [ 1749 + "linux" 1750 + ] 1751 + }, 1752 + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { 1753 + "version": "4.35.0", 1754 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.35.0.tgz", 1755 + "integrity": "sha512-c+zkcvbhbXF98f4CtEIP1EBA/lCic5xB0lToneZYvMeKu5Kamq3O8gqrxiYYLzlZH6E3Aq+TSW86E4ay8iD8EA==", 1756 + "cpu": [ 1757 + "ppc64" 1758 + ], 1759 + "license": "MIT", 1760 + "optional": true, 1761 + "os": [ 1762 + "linux" 1763 + ] 1764 + }, 1765 + "node_modules/@rollup/rollup-linux-riscv64-gnu": { 1766 + "version": "4.35.0", 1767 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.35.0.tgz", 1768 + "integrity": "sha512-s91fuAHdOwH/Tad2tzTtPX7UZyytHIRR6V4+2IGlV0Cej5rkG0R61SX4l4y9sh0JBibMiploZx3oHKPnQBKe4g==", 1769 + "cpu": [ 1770 + "riscv64" 1771 + ], 1772 + "license": "MIT", 1773 + "optional": true, 1774 + "os": [ 1775 + "linux" 1776 + ] 1777 + }, 1778 + "node_modules/@rollup/rollup-linux-s390x-gnu": { 1779 + "version": "4.35.0", 1780 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.35.0.tgz", 1781 + "integrity": "sha512-hQRkPQPLYJZYGP+Hj4fR9dDBMIM7zrzJDWFEMPdTnTy95Ljnv0/4w/ixFw3pTBMEuuEuoqtBINYND4M7ujcuQw==", 1782 + "cpu": [ 1783 + "s390x" 1784 + ], 1785 + "license": "MIT", 1786 + "optional": true, 1787 + "os": [ 1788 + "linux" 1789 + ] 1790 + }, 1791 + "node_modules/@rollup/rollup-linux-x64-gnu": { 1792 + "version": "4.35.0", 1793 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.35.0.tgz", 1794 + "integrity": "sha512-Pim1T8rXOri+0HmV4CdKSGrqcBWX0d1HoPnQ0uw0bdp1aP5SdQVNBy8LjYncvnLgu3fnnCt17xjWGd4cqh8/hA==", 1795 + "cpu": [ 1796 + "x64" 1797 + ], 1798 + "license": "MIT", 1799 + "optional": true, 1800 + "os": [ 1801 + "linux" 1802 + ] 1803 + }, 1804 + "node_modules/@rollup/rollup-linux-x64-musl": { 1805 + "version": "4.35.0", 1806 + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.35.0.tgz", 1807 + "integrity": "sha512-QysqXzYiDvQWfUiTm8XmJNO2zm9yC9P/2Gkrwg2dH9cxotQzunBHYr6jk4SujCTqnfGxduOmQcI7c2ryuW8XVg==", 1808 + "cpu": [ 1809 + "x64" 1810 + ], 1811 + "license": "MIT", 1812 + "optional": true, 1813 + "os": [ 1814 + "linux" 1815 + ] 1816 + }, 1817 + "node_modules/@rollup/rollup-win32-arm64-msvc": { 1818 + "version": "4.35.0", 1819 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.35.0.tgz", 1820 + "integrity": "sha512-OUOlGqPkVJCdJETKOCEf1mw848ZyJ5w50/rZ/3IBQVdLfR5jk/6Sr5m3iO2tdPgwo0x7VcncYuOvMhBWZq8ayg==", 1821 + "cpu": [ 1822 + "arm64" 1823 + ], 1824 + "license": "MIT", 1825 + "optional": true, 1826 + "os": [ 1827 + "win32" 1828 + ] 1829 + }, 1830 + "node_modules/@rollup/rollup-win32-ia32-msvc": { 1831 + "version": "4.35.0", 1832 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.35.0.tgz", 1833 + "integrity": "sha512-2/lsgejMrtwQe44glq7AFFHLfJBPafpsTa6JvP2NGef/ifOa4KBoglVf7AKN7EV9o32evBPRqfg96fEHzWo5kw==", 1834 + "cpu": [ 1835 + "ia32" 1836 + ], 1837 + "license": "MIT", 1838 + "optional": true, 1839 + "os": [ 1840 + "win32" 1841 + ] 1842 + }, 1843 + "node_modules/@rollup/rollup-win32-x64-msvc": { 1844 + "version": "4.35.0", 1845 + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.35.0.tgz", 1846 + "integrity": "sha512-PIQeY5XDkrOysbQblSW7v3l1MDZzkTEzAfTPkj5VAu3FW8fS4ynyLg2sINp0fp3SjZ8xkRYpLqoKcYqAkhU1dw==", 1847 + "cpu": [ 1848 + "x64" 1849 + ], 1850 + "license": "MIT", 1851 + "optional": true, 1852 + "os": [ 1853 + "win32" 885 1854 ] 886 1855 }, 887 1856 "node_modules/@sveltejs/acorn-typescript": { ··· 1029 1998 } 1030 1999 }, 1031 2000 "node_modules/@tailwindcss/node": { 1032 - "version": "4.0.13", 1033 - "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.0.13.tgz", 1034 - "integrity": "sha512-P9TmtE9Vew0vv5FwyD4bsg/dHHsIsAuUXkenuGUc5gm8fYgaxpdoxIKngCyEMEQxyCKR8PQY5V5VrrKNOx7exg==", 2001 + "version": "4.0.14", 2002 + "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.0.14.tgz", 2003 + "integrity": "sha512-Ux9NbFkKWYE4rfUFz6M5JFLs/GEYP6ysxT8uSyPn6aTbh2K3xDE1zz++eVK4Vwx799fzMF8CID9sdHn4j/Ab8w==", 1035 2004 "dev": true, 1036 2005 "license": "MIT", 1037 2006 "dependencies": { 1038 2007 "enhanced-resolve": "^5.18.1", 1039 2008 "jiti": "^2.4.2", 1040 - "tailwindcss": "4.0.13" 2009 + "tailwindcss": "4.0.14" 1041 2010 } 1042 2011 }, 1043 2012 "node_modules/@tailwindcss/oxide": { 1044 - "version": "4.0.13", 1045 - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.0.13.tgz", 1046 - "integrity": "sha512-pTH3Ex5zAWC9LbS+WsYAFmkXQW3NRjmvxkKJY3NP1x0KHBWjz0Q2uGtdGMJzsa0EwoZ7wq9RTbMH1UNPceCpWw==", 2013 + "version": "4.0.14", 2014 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.0.14.tgz", 2015 + "integrity": "sha512-M8VCNyO/NBi5vJ2cRcI9u8w7Si+i76a7o1vveoGtbbjpEYJZYiyc7f2VGps/DqawO56l3tImIbq2OT/533jcrA==", 1047 2016 "dev": true, 1048 2017 "license": "MIT", 1049 2018 "engines": { 1050 2019 "node": ">= 10" 1051 2020 }, 1052 2021 "optionalDependencies": { 1053 - "@tailwindcss/oxide-android-arm64": "4.0.13", 1054 - "@tailwindcss/oxide-darwin-arm64": "4.0.13", 1055 - "@tailwindcss/oxide-darwin-x64": "4.0.13", 1056 - "@tailwindcss/oxide-freebsd-x64": "4.0.13", 1057 - "@tailwindcss/oxide-linux-arm-gnueabihf": "4.0.13", 1058 - "@tailwindcss/oxide-linux-arm64-gnu": "4.0.13", 1059 - "@tailwindcss/oxide-linux-arm64-musl": "4.0.13", 1060 - "@tailwindcss/oxide-linux-x64-gnu": "4.0.13", 1061 - "@tailwindcss/oxide-linux-x64-musl": "4.0.13", 1062 - "@tailwindcss/oxide-win32-arm64-msvc": "4.0.13", 1063 - "@tailwindcss/oxide-win32-x64-msvc": "4.0.13" 2022 + "@tailwindcss/oxide-android-arm64": "4.0.14", 2023 + "@tailwindcss/oxide-darwin-arm64": "4.0.14", 2024 + "@tailwindcss/oxide-darwin-x64": "4.0.14", 2025 + "@tailwindcss/oxide-freebsd-x64": "4.0.14", 2026 + "@tailwindcss/oxide-linux-arm-gnueabihf": "4.0.14", 2027 + "@tailwindcss/oxide-linux-arm64-gnu": "4.0.14", 2028 + "@tailwindcss/oxide-linux-arm64-musl": "4.0.14", 2029 + "@tailwindcss/oxide-linux-x64-gnu": "4.0.14", 2030 + "@tailwindcss/oxide-linux-x64-musl": "4.0.14", 2031 + "@tailwindcss/oxide-win32-arm64-msvc": "4.0.14", 2032 + "@tailwindcss/oxide-win32-x64-msvc": "4.0.14" 2033 + } 2034 + }, 2035 + "node_modules/@tailwindcss/oxide-android-arm64": { 2036 + "version": "4.0.14", 2037 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.0.14.tgz", 2038 + "integrity": "sha512-VBFKC2rFyfJ5J8lRwjy6ub3rgpY186kAcYgiUr8ArR8BAZzMruyeKJ6mlsD22Zp5ZLcPW/FXMasJiJBx0WsdQg==", 2039 + "cpu": [ 2040 + "arm64" 2041 + ], 2042 + "dev": true, 2043 + "license": "MIT", 2044 + "optional": true, 2045 + "os": [ 2046 + "android" 2047 + ], 2048 + "engines": { 2049 + "node": ">= 10" 1064 2050 } 1065 2051 }, 1066 2052 "node_modules/@tailwindcss/oxide-darwin-arm64": { 1067 - "version": "4.0.13", 1068 - "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.0.13.tgz", 1069 - "integrity": "sha512-Bj1QGlEJSjs/205CIRfb5/jeveOqzJ4pFMdRxu0gyiYWxBRyxsExXqaD+7162wnLP/EDKh6S1MC9E/1GwEhLtA==", 2053 + "version": "4.0.14", 2054 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.0.14.tgz", 2055 + "integrity": "sha512-U3XOwLrefGr2YQZ9DXasDSNWGPZBCh8F62+AExBEDMLDfvLLgI/HDzY8Oq8p/JtqkAY38sWPOaNnRwEGKU5Zmg==", 1070 2056 "cpu": [ 1071 2057 "arm64" 1072 2058 ], ··· 1080 2066 "node": ">= 10" 1081 2067 } 1082 2068 }, 2069 + "node_modules/@tailwindcss/oxide-darwin-x64": { 2070 + "version": "4.0.14", 2071 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.0.14.tgz", 2072 + "integrity": "sha512-V5AjFuc3ndWGnOi1d379UsODb0TzAS2DYIP/lwEbfvafUaD2aNZIcbwJtYu2DQqO2+s/XBvDVA+w4yUyaewRwg==", 2073 + "cpu": [ 2074 + "x64" 2075 + ], 2076 + "dev": true, 2077 + "license": "MIT", 2078 + "optional": true, 2079 + "os": [ 2080 + "darwin" 2081 + ], 2082 + "engines": { 2083 + "node": ">= 10" 2084 + } 2085 + }, 2086 + "node_modules/@tailwindcss/oxide-freebsd-x64": { 2087 + "version": "4.0.14", 2088 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.0.14.tgz", 2089 + "integrity": "sha512-tXvtxbaZfcPfqBwW3f53lTcyH6EDT+1eT7yabwcfcxTs+8yTPqxsDUhrqe9MrnEzpNkd+R/QAjJapfd4tjWdLg==", 2090 + "cpu": [ 2091 + "x64" 2092 + ], 2093 + "dev": true, 2094 + "license": "MIT", 2095 + "optional": true, 2096 + "os": [ 2097 + "freebsd" 2098 + ], 2099 + "engines": { 2100 + "node": ">= 10" 2101 + } 2102 + }, 2103 + "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { 2104 + "version": "4.0.14", 2105 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.0.14.tgz", 2106 + "integrity": "sha512-cSeLNWWqIWeSTmBntQvyY2/2gcLX8rkPFfDDTQVF8qbRcRMVPLxBvFVJyfSAYRNch6ZyVH2GI6dtgALOBDpdNA==", 2107 + "cpu": [ 2108 + "arm" 2109 + ], 2110 + "dev": true, 2111 + "license": "MIT", 2112 + "optional": true, 2113 + "os": [ 2114 + "linux" 2115 + ], 2116 + "engines": { 2117 + "node": ">= 10" 2118 + } 2119 + }, 2120 + "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { 2121 + "version": "4.0.14", 2122 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.0.14.tgz", 2123 + "integrity": "sha512-bwDWLBalXFMDItcSXzFk6y7QKvj6oFlaY9vM+agTlwFL1n1OhDHYLZkSjaYsh6KCeG0VB0r7H8PUJVOM1LRZyg==", 2124 + "cpu": [ 2125 + "arm64" 2126 + ], 2127 + "dev": true, 2128 + "license": "MIT", 2129 + "optional": true, 2130 + "os": [ 2131 + "linux" 2132 + ], 2133 + "engines": { 2134 + "node": ">= 10" 2135 + } 2136 + }, 2137 + "node_modules/@tailwindcss/oxide-linux-arm64-musl": { 2138 + "version": "4.0.14", 2139 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.0.14.tgz", 2140 + "integrity": "sha512-gVkJdnR/L6iIcGYXx64HGJRmlme2FGr/aZH0W6u4A3RgPMAb+6ELRLi+UBiH83RXBm9vwCfkIC/q8T51h8vUJQ==", 2141 + "cpu": [ 2142 + "arm64" 2143 + ], 2144 + "dev": true, 2145 + "license": "MIT", 2146 + "optional": true, 2147 + "os": [ 2148 + "linux" 2149 + ], 2150 + "engines": { 2151 + "node": ">= 10" 2152 + } 2153 + }, 2154 + "node_modules/@tailwindcss/oxide-linux-x64-gnu": { 2155 + "version": "4.0.14", 2156 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.0.14.tgz", 2157 + "integrity": "sha512-EE+EQ+c6tTpzsg+LGO1uuusjXxYx0Q00JE5ubcIGfsogSKth8n8i2BcS2wYTQe4jXGs+BQs35l78BIPzgwLddw==", 2158 + "cpu": [ 2159 + "x64" 2160 + ], 2161 + "dev": true, 2162 + "license": "MIT", 2163 + "optional": true, 2164 + "os": [ 2165 + "linux" 2166 + ], 2167 + "engines": { 2168 + "node": ">= 10" 2169 + } 2170 + }, 2171 + "node_modules/@tailwindcss/oxide-linux-x64-musl": { 2172 + "version": "4.0.14", 2173 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.0.14.tgz", 2174 + "integrity": "sha512-KCCOzo+L6XPT0oUp2Jwh233ETRQ/F6cwUnMnR0FvMUCbkDAzHbcyOgpfuAtRa5HD0WbTbH4pVD+S0pn1EhNfbw==", 2175 + "cpu": [ 2176 + "x64" 2177 + ], 2178 + "dev": true, 2179 + "license": "MIT", 2180 + "optional": true, 2181 + "os": [ 2182 + "linux" 2183 + ], 2184 + "engines": { 2185 + "node": ">= 10" 2186 + } 2187 + }, 2188 + "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { 2189 + "version": "4.0.14", 2190 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.0.14.tgz", 2191 + "integrity": "sha512-AHObFiFL9lNYcm3tZSPqa/cHGpM5wOrNmM2uOMoKppp+0Hom5uuyRh0QkOp7jftsHZdrZUpmoz0Mp6vhh2XtUg==", 2192 + "cpu": [ 2193 + "arm64" 2194 + ], 2195 + "dev": true, 2196 + "license": "MIT", 2197 + "optional": true, 2198 + "os": [ 2199 + "win32" 2200 + ], 2201 + "engines": { 2202 + "node": ">= 10" 2203 + } 2204 + }, 2205 + "node_modules/@tailwindcss/oxide-win32-x64-msvc": { 2206 + "version": "4.0.14", 2207 + "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.0.14.tgz", 2208 + "integrity": "sha512-rNXXMDJfCJLw/ZaFTOLOHoGULxyXfh2iXTGiChFiYTSgKBKQHIGEpV0yn5N25WGzJJ+VBnRjHzlmDqRV+d//oQ==", 2209 + "cpu": [ 2210 + "x64" 2211 + ], 2212 + "dev": true, 2213 + "license": "MIT", 2214 + "optional": true, 2215 + "os": [ 2216 + "win32" 2217 + ], 2218 + "engines": { 2219 + "node": ">= 10" 2220 + } 2221 + }, 1083 2222 "node_modules/@tailwindcss/postcss": { 1084 - "version": "4.0.13", 1085 - "resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.0.13.tgz", 1086 - "integrity": "sha512-zTmnPGDYb2HKClTBTBwB+lLQH+Rq4etnQXFXs2lisRyXryUnoJIBByFTljkaK9F1d7o14h6t4NJIlfbZuOHR+A==", 2223 + "version": "4.0.14", 2224 + "resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.0.14.tgz", 2225 + "integrity": "sha512-+uIR6KtKhla1XeIanF27KtrfYy+PX+R679v5LxbkmEZlhQe3g8rk+wKj7Xgt++rWGRuFLGMXY80Ek8JNn+kN/g==", 1087 2226 "dev": true, 1088 2227 "license": "MIT", 1089 2228 "dependencies": { 1090 2229 "@alloc/quick-lru": "^5.2.0", 1091 - "@tailwindcss/node": "4.0.13", 1092 - "@tailwindcss/oxide": "4.0.13", 2230 + "@tailwindcss/node": "4.0.14", 2231 + "@tailwindcss/oxide": "4.0.14", 1093 2232 "lightningcss": "1.29.2", 1094 2233 "postcss": "^8.4.41", 1095 - "tailwindcss": "4.0.13" 2234 + "tailwindcss": "4.0.14" 1096 2235 } 1097 2236 }, 1098 2237 "node_modules/@tailwindcss/typography": { ··· 1187 2326 } 1188 2327 }, 1189 2328 "node_modules/@threlte/extras": { 1190 - "version": "9.0.1", 1191 - "resolved": "https://registry.npmjs.org/@threlte/extras/-/extras-9.0.1.tgz", 1192 - "integrity": "sha512-xI0s5a/9NdBbUSaYCnTHfnVl44kZQUTuTPfzwv4gmMM2r2HewM5QsMDBBwBTcuVcYqkM9aUKl+5MWa20LnH/mg==", 2329 + "version": "9.0.2", 2330 + "resolved": "https://registry.npmjs.org/@threlte/extras/-/extras-9.0.2.tgz", 2331 + "integrity": "sha512-9sUZiEuxDShvaML0IbFvlhWeOMgfkQOvuzYdnW5bnmVtvp6xUrprCNo2uBxR5aEL2wFZlqXBL9oGq2jI8XDdsw==", 1193 2332 "license": "MIT", 1194 2333 "dependencies": { 1195 2334 "@threejs-kit/instanced-sprite-mesh": "^2.5.0", ··· 1572 2711 "node": ">= 8" 1573 2712 } 1574 2713 }, 1575 - "node_modules/anymatch/node_modules/picomatch": { 1576 - "version": "2.3.1", 1577 - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 1578 - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 1579 - "license": "MIT", 1580 - "engines": { 1581 - "node": ">=8.6" 1582 - }, 1583 - "funding": { 1584 - "url": "https://github.com/sponsors/jonschlinkert" 1585 - } 1586 - }, 1587 2714 "node_modules/arg": { 1588 2715 "version": "5.0.2", 1589 2716 "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", ··· 1655 2782 } 1656 2783 }, 1657 2784 "node_modules/bits-ui": { 1658 - "version": "1.3.10", 1659 - "resolved": "https://registry.npmjs.org/bits-ui/-/bits-ui-1.3.10.tgz", 1660 - "integrity": "sha512-Mg6ENVlI/dwHX9hR1cSiAp5gqzwzowPbXPRW32RxFdUKakuL8qYyewwr446VC7UkZLEpNeoHn7HICcBscJhYdw==", 2785 + "version": "1.3.11", 2786 + "resolved": "https://registry.npmjs.org/bits-ui/-/bits-ui-1.3.11.tgz", 2787 + "integrity": "sha512-E8OMM9ae3iTwzKBdy6v0A9sp6xwvWEBz41TS5KkLYeFwZZnTJvc6P+0IqyzFLpQHxuRCZZNFLb5Wid00QvRbJA==", 1661 2788 "license": "MIT", 1662 2789 "dependencies": { 1663 2790 "@floating-ui/core": "^1.6.4", ··· 3323 4450 "url": "https://opencollective.com/parcel" 3324 4451 } 3325 4452 }, 4453 + "node_modules/lightningcss-darwin-x64": { 4454 + "version": "1.29.2", 4455 + "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.29.2.tgz", 4456 + "integrity": "sha512-j5qYxamyQw4kDXX5hnnCKMf3mLlHvG44f24Qyi2965/Ycz829MYqjrVg2H8BidybHBp9kom4D7DR5VqCKDXS0w==", 4457 + "cpu": [ 4458 + "x64" 4459 + ], 4460 + "license": "MPL-2.0", 4461 + "optional": true, 4462 + "os": [ 4463 + "darwin" 4464 + ], 4465 + "engines": { 4466 + "node": ">= 12.0.0" 4467 + }, 4468 + "funding": { 4469 + "type": "opencollective", 4470 + "url": "https://opencollective.com/parcel" 4471 + } 4472 + }, 4473 + "node_modules/lightningcss-freebsd-x64": { 4474 + "version": "1.29.2", 4475 + "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.29.2.tgz", 4476 + "integrity": "sha512-wDk7M2tM78Ii8ek9YjnY8MjV5f5JN2qNVO+/0BAGZRvXKtQrBC4/cn4ssQIpKIPP44YXw6gFdpUF+Ps+RGsCwg==", 4477 + "cpu": [ 4478 + "x64" 4479 + ], 4480 + "license": "MPL-2.0", 4481 + "optional": true, 4482 + "os": [ 4483 + "freebsd" 4484 + ], 4485 + "engines": { 4486 + "node": ">= 12.0.0" 4487 + }, 4488 + "funding": { 4489 + "type": "opencollective", 4490 + "url": "https://opencollective.com/parcel" 4491 + } 4492 + }, 4493 + "node_modules/lightningcss-linux-arm-gnueabihf": { 4494 + "version": "1.29.2", 4495 + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.29.2.tgz", 4496 + "integrity": "sha512-IRUrOrAF2Z+KExdExe3Rz7NSTuuJ2HvCGlMKoquK5pjvo2JY4Rybr+NrKnq0U0hZnx5AnGsuFHjGnNT14w26sg==", 4497 + "cpu": [ 4498 + "arm" 4499 + ], 4500 + "license": "MPL-2.0", 4501 + "optional": true, 4502 + "os": [ 4503 + "linux" 4504 + ], 4505 + "engines": { 4506 + "node": ">= 12.0.0" 4507 + }, 4508 + "funding": { 4509 + "type": "opencollective", 4510 + "url": "https://opencollective.com/parcel" 4511 + } 4512 + }, 4513 + "node_modules/lightningcss-linux-arm64-gnu": { 4514 + "version": "1.29.2", 4515 + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.29.2.tgz", 4516 + "integrity": "sha512-KKCpOlmhdjvUTX/mBuaKemp0oeDIBBLFiU5Fnqxh1/DZ4JPZi4evEH7TKoSBFOSOV3J7iEmmBaw/8dpiUvRKlQ==", 4517 + "cpu": [ 4518 + "arm64" 4519 + ], 4520 + "license": "MPL-2.0", 4521 + "optional": true, 4522 + "os": [ 4523 + "linux" 4524 + ], 4525 + "engines": { 4526 + "node": ">= 12.0.0" 4527 + }, 4528 + "funding": { 4529 + "type": "opencollective", 4530 + "url": "https://opencollective.com/parcel" 4531 + } 4532 + }, 4533 + "node_modules/lightningcss-linux-arm64-musl": { 4534 + "version": "1.29.2", 4535 + "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.29.2.tgz", 4536 + "integrity": "sha512-Q64eM1bPlOOUgxFmoPUefqzY1yV3ctFPE6d/Vt7WzLW4rKTv7MyYNky+FWxRpLkNASTnKQUaiMJ87zNODIrrKQ==", 4537 + "cpu": [ 4538 + "arm64" 4539 + ], 4540 + "license": "MPL-2.0", 4541 + "optional": true, 4542 + "os": [ 4543 + "linux" 4544 + ], 4545 + "engines": { 4546 + "node": ">= 12.0.0" 4547 + }, 4548 + "funding": { 4549 + "type": "opencollective", 4550 + "url": "https://opencollective.com/parcel" 4551 + } 4552 + }, 4553 + "node_modules/lightningcss-linux-x64-gnu": { 4554 + "version": "1.29.2", 4555 + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.29.2.tgz", 4556 + "integrity": "sha512-0v6idDCPG6epLXtBH/RPkHvYx74CVziHo6TMYga8O2EiQApnUPZsbR9nFNrg2cgBzk1AYqEd95TlrsL7nYABQg==", 4557 + "cpu": [ 4558 + "x64" 4559 + ], 4560 + "license": "MPL-2.0", 4561 + "optional": true, 4562 + "os": [ 4563 + "linux" 4564 + ], 4565 + "engines": { 4566 + "node": ">= 12.0.0" 4567 + }, 4568 + "funding": { 4569 + "type": "opencollective", 4570 + "url": "https://opencollective.com/parcel" 4571 + } 4572 + }, 4573 + "node_modules/lightningcss-linux-x64-musl": { 4574 + "version": "1.29.2", 4575 + "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.29.2.tgz", 4576 + "integrity": "sha512-rMpz2yawkgGT8RULc5S4WiZopVMOFWjiItBT7aSfDX4NQav6M44rhn5hjtkKzB+wMTRlLLqxkeYEtQ3dd9696w==", 4577 + "cpu": [ 4578 + "x64" 4579 + ], 4580 + "license": "MPL-2.0", 4581 + "optional": true, 4582 + "os": [ 4583 + "linux" 4584 + ], 4585 + "engines": { 4586 + "node": ">= 12.0.0" 4587 + }, 4588 + "funding": { 4589 + "type": "opencollective", 4590 + "url": "https://opencollective.com/parcel" 4591 + } 4592 + }, 4593 + "node_modules/lightningcss-win32-arm64-msvc": { 4594 + "version": "1.29.2", 4595 + "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.29.2.tgz", 4596 + "integrity": "sha512-nL7zRW6evGQqYVu/bKGK+zShyz8OVzsCotFgc7judbt6wnB2KbiKKJwBE4SGoDBQ1O94RjW4asrCjQL4i8Fhbw==", 4597 + "cpu": [ 4598 + "arm64" 4599 + ], 4600 + "license": "MPL-2.0", 4601 + "optional": true, 4602 + "os": [ 4603 + "win32" 4604 + ], 4605 + "engines": { 4606 + "node": ">= 12.0.0" 4607 + }, 4608 + "funding": { 4609 + "type": "opencollective", 4610 + "url": "https://opencollective.com/parcel" 4611 + } 4612 + }, 4613 + "node_modules/lightningcss-win32-x64-msvc": { 4614 + "version": "1.29.2", 4615 + "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.29.2.tgz", 4616 + "integrity": "sha512-EdIUW3B2vLuHmv7urfzMI/h2fmlnOQBk1xlsDxkN1tCWKjNFjfLhGxYk8C8mzpSfr+A6jFFIi8fU6LbQGsRWjA==", 4617 + "cpu": [ 4618 + "x64" 4619 + ], 4620 + "license": "MPL-2.0", 4621 + "optional": true, 4622 + "os": [ 4623 + "win32" 4624 + ], 4625 + "engines": { 4626 + "node": ">= 12.0.0" 4627 + }, 4628 + "funding": { 4629 + "type": "opencollective", 4630 + "url": "https://opencollective.com/parcel" 4631 + } 4632 + }, 3326 4633 "node_modules/lilconfig": { 3327 4634 "version": "2.1.0", 3328 4635 "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", ··· 3471 4778 }, 3472 4779 "engines": { 3473 4780 "node": ">=8.6" 3474 - } 3475 - }, 3476 - "node_modules/micromatch/node_modules/picomatch": { 3477 - "version": "2.3.1", 3478 - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3479 - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3480 - "license": "MIT", 3481 - "engines": { 3482 - "node": ">=8.6" 3483 - }, 3484 - "funding": { 3485 - "url": "https://github.com/sponsors/jonschlinkert" 3486 4781 } 3487 4782 }, 3488 4783 "node_modules/mini-svg-data-uri": { ··· 3796 5091 "license": "ISC" 3797 5092 }, 3798 5093 "node_modules/picomatch": { 3799 - "version": "4.0.2", 3800 - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", 3801 - "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", 5094 + "version": "2.3.1", 5095 + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 5096 + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3802 5097 "license": "MIT", 3803 5098 "engines": { 3804 - "node": ">=12" 5099 + "node": ">=8.6" 3805 5100 }, 3806 5101 "funding": { 3807 5102 "url": "https://github.com/sponsors/jonschlinkert" ··· 5001 6296 } 5002 6297 }, 5003 6298 "node_modules/tailwindcss": { 5004 - "version": "4.0.13", 5005 - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.0.13.tgz", 5006 - "integrity": "sha512-gbvFrB0fOsTv/OugXWi2PtflJ4S6/ctu6Mmn3bCftmLY/6xRsQVEJPgIIpABwpZ52DpONkCA3bEj5b54MHxF2Q==", 6299 + "version": "4.0.14", 6300 + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.0.14.tgz", 6301 + "integrity": "sha512-92YT2dpt671tFiHH/e1ok9D987N9fHD5VWoly1CdPD/Cd1HMglvZwP3nx2yTj2lbXDAHt8QssZkxTLCCTNL+xw==", 5007 6302 "license": "MIT" 5008 6303 }, 5009 6304 "node_modules/tailwindcss-animate": {