From e1e0ac234561e82fb8e88f370555fa4ecd5e55af Mon Sep 17 00:00:00 2001
From: DarkSky <25152247+darkskygit@users.noreply.github.com>
Date: Fri, 27 Feb 2026 11:56:54 +0800
Subject: [PATCH] chore: cleanup deps (#14525)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
#### PR Dependency Tree
* **PR #14525** 👈
This tree was auto-generated by
[Charcoal](https://github.com/danerwilliams/charcoal)
## Summary by CodeRabbit
* **Chores**
* Removed an unused development dependency.
* Updated dotLottie/Lottie-related dependency versions across packages
and replaced a removed player dependency with the new package.
* **Refactor**
* AI animated icons now re-export from a shared component and are loaded
only in the browser, reducing upfront bundle weight and centralizing
icon assets.
---
blocksuite/affine/components/package.json | 2 +-
blocksuite/integration-test/package.json | 2 +-
packages/backend/server/package.json | 1 -
packages/frontend/core/package.json | 2 +-
.../core/src/blocksuite/ai/_common/icons.ts | 56 +-
yarn.lock | 2080 ++---------------
6 files changed, 181 insertions(+), 1962 deletions(-)
diff --git a/blocksuite/affine/components/package.json b/blocksuite/affine/components/package.json
index f8ff653f2..e7fdcfb02 100644
--- a/blocksuite/affine/components/package.json
+++ b/blocksuite/affine/components/package.json
@@ -19,7 +19,7 @@
"@blocksuite/sync": "workspace:*",
"@floating-ui/dom": "^1.6.13",
"@lit/context": "^1.1.2",
- "@lottiefiles/dotlottie-wc": "^0.5.0",
+ "@lottiefiles/dotlottie-wc": "^0.9.4",
"@preact/signals-core": "^1.8.0",
"@toeverything/theme": "^1.1.23",
"@types/hast": "^3.0.4",
diff --git a/blocksuite/integration-test/package.json b/blocksuite/integration-test/package.json
index b01090272..d131b8e20 100644
--- a/blocksuite/integration-test/package.json
+++ b/blocksuite/integration-test/package.json
@@ -17,7 +17,7 @@
"@blocksuite/icons": "^2.2.17",
"@floating-ui/dom": "^1.6.13",
"@lit/context": "^1.1.3",
- "@lottiefiles/dotlottie-wc": "^0.5.0",
+ "@lottiefiles/dotlottie-wc": "^0.9.4",
"@preact/signals-core": "^1.8.0",
"@toeverything/theme": "^1.1.23",
"@vanilla-extract/css": "^1.17.0",
diff --git a/packages/backend/server/package.json b/packages/backend/server/package.json
index 60f9343ae..9c6d6cf9f 100644
--- a/packages/backend/server/package.json
+++ b/packages/backend/server/package.json
@@ -126,7 +126,6 @@
"@faker-js/faker": "^10.1.0",
"@nestjs/swagger": "^11.2.0",
"@nestjs/testing": "patch:@nestjs/testing@npm%3A10.4.15#~/.yarn/patches/@nestjs-testing-npm-10.4.15-d591a1705a.patch",
- "@react-email/preview-server": "^4.3.2",
"@types/cookie-parser": "^1.4.8",
"@types/express": "^5.0.1",
"@types/express-serve-static-core": "^5.0.6",
diff --git a/packages/frontend/core/package.json b/packages/frontend/core/package.json
index 359bfbfca..8bb8fc4ee 100644
--- a/packages/frontend/core/package.json
+++ b/packages/frontend/core/package.json
@@ -26,13 +26,13 @@
"@blocksuite/global": "workspace:*",
"@blocksuite/icons": "^2.2.17",
"@blocksuite/std": "workspace:*",
- "@dotlottie/player-component": "^2.7.12",
"@emotion/cache": "^11.14.0",
"@emotion/css": "^11.13.5",
"@emotion/react": "^11.14.0",
"@floating-ui/dom": "^1.6.13",
"@juggle/resize-observer": "^3.4.0",
"@lit/context": "^1.1.4",
+ "@lottiefiles/dotlottie-wc": "^0.9.4",
"@marsidev/react-turnstile": "^1.1.0",
"@myriaddreamin/typst-ts-renderer": "^0.7.0-rc2",
"@myriaddreamin/typst-ts-web-compiler": "^0.7.0-rc2",
diff --git a/packages/frontend/core/src/blocksuite/ai/_common/icons.ts b/packages/frontend/core/src/blocksuite/ai/_common/icons.ts
index ad3035e78..892564642 100644
--- a/packages/frontend/core/src/blocksuite/ai/_common/icons.ts
+++ b/packages/frontend/core/src/blocksuite/ai/_common/icons.ts
@@ -1,15 +1,11 @@
-import '@dotlottie/player-component';
-
import { html } from 'lit';
-export const AIStarIconWithAnimation = html``;
+export { AIStarIconWithAnimation } from '@blocksuite/affine/components/icons';
+
+// dotlottie-wc can only be used in the browser
+if (typeof window !== 'undefined') {
+ import('@lottiefiles/dotlottie-wc').catch(console.error);
+}
export const AffineIcon = (color: string) =>
html` `;
-export const AIPenIconWithAnimation = html``;
+>`;
-export const AIPresentationIconWithAnimation = html``;
+>`;
-export const AIMindMapIconWithAnimation = html``;
+>`;
-export const AIImageIconWithAnimation = html``;
+>`;
-export const MakeItRealIconWithAnimation = html``;
+>`;
diff --git a/yarn.lock b/yarn.lock
index 20bf7bf96..c8389b4b5 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -418,13 +418,13 @@ __metadata:
"@blocksuite/global": "workspace:*"
"@blocksuite/icons": "npm:^2.2.17"
"@blocksuite/std": "workspace:*"
- "@dotlottie/player-component": "npm:^2.7.12"
"@emotion/cache": "npm:^11.14.0"
"@emotion/css": "npm:^11.13.5"
"@emotion/react": "npm:^11.14.0"
"@floating-ui/dom": "npm:^1.6.13"
"@juggle/resize-observer": "npm:^3.4.0"
"@lit/context": "npm:^1.1.4"
+ "@lottiefiles/dotlottie-wc": "npm:^0.9.4"
"@marsidev/react-turnstile": "npm:^1.1.0"
"@myriaddreamin/typst-ts-renderer": "npm:^0.7.0-rc2"
"@myriaddreamin/typst-ts-web-compiler": "npm:^0.7.0-rc2"
@@ -1021,7 +1021,6 @@ __metadata:
"@prisma/instrumentation": "npm:^6.7.0"
"@queuedash/api": "npm:^3.16.0"
"@react-email/components": "npm:^0.5.7"
- "@react-email/preview-server": "npm:^4.3.2"
"@socket.io/redis-adapter": "npm:^8.3.0"
"@types/cookie-parser": "npm:^1.4.8"
"@types/express": "npm:^5.0.1"
@@ -1258,16 +1257,6 @@ __metadata:
languageName: node
linkType: hard
-"@ampproject/remapping@npm:^2.2.0":
- version: 2.3.0
- resolution: "@ampproject/remapping@npm:2.3.0"
- dependencies:
- "@jridgewell/gen-mapping": "npm:^0.3.5"
- "@jridgewell/trace-mapping": "npm:^0.3.24"
- checksum: 10/f3451525379c68a73eb0a1e65247fbf28c0cccd126d93af21c75fceff77773d43c0d4a2d51978fb131aff25b5f2cb41a9fe48cc296e61ae65e679c4f6918b0ab
- languageName: node
- linkType: hard
-
"@antfu/install-pkg@npm:^1.1.0":
version: 1.1.0
resolution: "@antfu/install-pkg@npm:1.1.0"
@@ -1588,7 +1577,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.26.2, @babel/code-frame@npm:^7.28.6, @babel/code-frame@npm:^7.29.0":
+"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.28.6, @babel/code-frame@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/code-frame@npm:7.29.0"
dependencies:
@@ -1606,29 +1595,6 @@ __metadata:
languageName: node
linkType: hard
-"@babel/core@npm:7.26.10":
- version: 7.26.10
- resolution: "@babel/core@npm:7.26.10"
- dependencies:
- "@ampproject/remapping": "npm:^2.2.0"
- "@babel/code-frame": "npm:^7.26.2"
- "@babel/generator": "npm:^7.26.10"
- "@babel/helper-compilation-targets": "npm:^7.26.5"
- "@babel/helper-module-transforms": "npm:^7.26.0"
- "@babel/helpers": "npm:^7.26.10"
- "@babel/parser": "npm:^7.26.10"
- "@babel/template": "npm:^7.26.9"
- "@babel/traverse": "npm:^7.26.10"
- "@babel/types": "npm:^7.26.10"
- convert-source-map: "npm:^2.0.0"
- debug: "npm:^4.1.0"
- gensync: "npm:^1.0.0-beta.2"
- json5: "npm:^2.2.3"
- semver: "npm:^6.3.1"
- checksum: 10/68f6707eebd6bb8beed7ceccf5153e35b86c323e40d11d796d75c626ac8f1cc4e1f795584c5ab5f886bc64150c22d5088123d68c069c63f29984c4fc054d1dab
- languageName: node
- linkType: hard
-
"@babel/core@npm:^7.12.3, @babel/core@npm:^7.18.5, @babel/core@npm:^7.23.9, @babel/core@npm:^7.24.4, @babel/core@npm:^7.26.10, @babel/core@npm:^7.28.0, @babel/core@npm:^7.28.5":
version: 7.29.0
resolution: "@babel/core@npm:7.29.0"
@@ -1652,7 +1618,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/generator@npm:^7.18.13, @babel/generator@npm:^7.26.10, @babel/generator@npm:^7.27.0, @babel/generator@npm:^7.28.0, @babel/generator@npm:^7.29.0":
+"@babel/generator@npm:^7.18.13, @babel/generator@npm:^7.26.10, @babel/generator@npm:^7.28.0, @babel/generator@npm:^7.29.0":
version: 7.29.1
resolution: "@babel/generator@npm:7.29.1"
dependencies:
@@ -1665,7 +1631,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-compilation-targets@npm:^7.26.5, @babel/helper-compilation-targets@npm:^7.28.6":
+"@babel/helper-compilation-targets@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helper-compilation-targets@npm:7.28.6"
dependencies:
@@ -1695,7 +1661,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-module-transforms@npm:^7.26.0, @babel/helper-module-transforms@npm:^7.28.6":
+"@babel/helper-module-transforms@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helper-module-transforms@npm:7.28.6"
dependencies:
@@ -1736,7 +1702,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helpers@npm:^7.26.10, @babel/helpers@npm:^7.28.6":
+"@babel/helpers@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/helpers@npm:7.28.6"
dependencies:
@@ -1746,17 +1712,6 @@ __metadata:
languageName: node
linkType: hard
-"@babel/parser@npm:7.27.0":
- version: 7.27.0
- resolution: "@babel/parser@npm:7.27.0"
- dependencies:
- "@babel/types": "npm:^7.27.0"
- bin:
- parser: ./bin/babel-parser.js
- checksum: 10/0fee9f05c6db753882ca9d10958301493443da9f6986d7020ebd7a696b35886240016899bc0b47d871aea2abcafd64632343719742e87432c8145e0ec2af2a03
- languageName: node
- linkType: hard
-
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.20.7, @babel/parser@npm:^7.23.9, @babel/parser@npm:^7.24.4, @babel/parser@npm:^7.25.4, @babel/parser@npm:^7.26.10, @babel/parser@npm:^7.27.0, @babel/parser@npm:^7.28.6, @babel/parser@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/parser@npm:7.29.0"
@@ -1841,7 +1796,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/template@npm:^7.18.10, @babel/template@npm:^7.20.7, @babel/template@npm:^7.26.9, @babel/template@npm:^7.27.0, @babel/template@npm:^7.28.6":
+"@babel/template@npm:^7.18.10, @babel/template@npm:^7.20.7, @babel/template@npm:^7.28.6":
version: 7.28.6
resolution: "@babel/template@npm:7.28.6"
dependencies:
@@ -1852,21 +1807,6 @@ __metadata:
languageName: node
linkType: hard
-"@babel/traverse@npm:7.27.0":
- version: 7.27.0
- resolution: "@babel/traverse@npm:7.27.0"
- dependencies:
- "@babel/code-frame": "npm:^7.26.2"
- "@babel/generator": "npm:^7.27.0"
- "@babel/parser": "npm:^7.27.0"
- "@babel/template": "npm:^7.27.0"
- "@babel/types": "npm:^7.27.0"
- debug: "npm:^4.3.1"
- globals: "npm:^11.1.0"
- checksum: 10/b0675bc16bd87187e8b090557b0650135de56a621692ad8614b20f32621350ae0fc2e1129b73b780d64a9ed4beab46849a17f90d5267b6ae6ce09ec8412a12c7
- languageName: node
- linkType: hard
-
"@babel/traverse@npm:^7.26.10, @babel/traverse@npm:^7.27.0, @babel/traverse@npm:^7.28.0, @babel/traverse@npm:^7.28.6, @babel/traverse@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/traverse@npm:7.29.0"
@@ -1882,7 +1822,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/types@npm:^7.0.0, @babel/types@npm:^7.18.13, @babel/types@npm:^7.20.7, @babel/types@npm:^7.25.4, @babel/types@npm:^7.26.10, @babel/types@npm:^7.27.0, @babel/types@npm:^7.28.2, @babel/types@npm:^7.28.6, @babel/types@npm:^7.29.0":
+"@babel/types@npm:^7.0.0, @babel/types@npm:^7.18.13, @babel/types@npm:^7.20.7, @babel/types@npm:^7.25.4, @babel/types@npm:^7.26.10, @babel/types@npm:^7.28.2, @babel/types@npm:^7.28.6, @babel/types@npm:^7.29.0":
version: 7.29.0
resolution: "@babel/types@npm:7.29.0"
dependencies:
@@ -2499,7 +2439,7 @@ __metadata:
"@blocksuite/sync": "workspace:*"
"@floating-ui/dom": "npm:^1.6.13"
"@lit/context": "npm:^1.1.2"
- "@lottiefiles/dotlottie-wc": "npm:^0.5.0"
+ "@lottiefiles/dotlottie-wc": "npm:^0.9.4"
"@preact/signals-core": "npm:^1.8.0"
"@toeverything/theme": "npm:^1.1.23"
"@types/hast": "npm:^3.0.4"
@@ -3810,7 +3750,7 @@ __metadata:
"@blocksuite/icons": "npm:^2.2.17"
"@floating-ui/dom": "npm:^1.6.13"
"@lit/context": "npm:^1.1.3"
- "@lottiefiles/dotlottie-wc": "npm:^0.5.0"
+ "@lottiefiles/dotlottie-wc": "npm:^0.9.4"
"@preact/signals-core": "npm:^1.8.0"
"@toeverything/theme": "npm:^1.1.23"
"@vanilla-extract/css": "npm:^1.17.0"
@@ -4350,42 +4290,6 @@ __metadata:
languageName: node
linkType: hard
-"@dotlottie/common@npm:0.7.11":
- version: 0.7.11
- resolution: "@dotlottie/common@npm:0.7.11"
- dependencies:
- "@dotlottie/dotlottie-js": "npm:^0.7.0"
- "@preact/signals-core": "npm:^1.2.3"
- howler: "npm:^2.2.3"
- lottie-web: "npm:^5.12.2"
- xstate: "npm:^4.38.1"
- checksum: 10/b82030323b237629e9dfb906f3aec4f148390aebe748201adaa6fc66c569d6da885814ac00b177948c9e5fd9ace123bc04eadd42368a59110dc0abac72888b24
- languageName: node
- linkType: hard
-
-"@dotlottie/dotlottie-js@npm:^0.7.0":
- version: 0.7.2
- resolution: "@dotlottie/dotlottie-js@npm:0.7.2"
- dependencies:
- browser-image-hash: "npm:^0.0.5"
- fflate: "npm:^0.8.1"
- sharp: "npm:^0.33.2"
- sharp-phash: "npm:^2.1.0"
- valibot: "npm:^0.13.1"
- checksum: 10/349f2e2cfb67dcd918ba6f8fc755c7505a9700528c2f06622da5a9dbd6c5bf6565c04979e8bf925e29c93c82c456b5b9b3bb64e55ec6567c0c5fff461be17563
- languageName: node
- linkType: hard
-
-"@dotlottie/player-component@npm:^2.7.12":
- version: 2.7.12
- resolution: "@dotlottie/player-component@npm:2.7.12"
- dependencies:
- "@dotlottie/common": "npm:0.7.11"
- lit: "npm:^2.7.5"
- checksum: 10/d34652776090bba7982bcdd7371d20fca2c0c8f74c4a13319db730953703af38bd706265d60b6f7cacffe085079d9e4a7912522ed255fad2159175e199339455
- languageName: node
- linkType: hard
-
"@electron-forge/cli@npm:^7.10.2":
version: 7.10.2
resolution: "@electron-forge/cli@npm:7.10.2"
@@ -4940,7 +4844,7 @@ __metadata:
languageName: node
linkType: hard
-"@emnapi/runtime@npm:^1.2.0, @emnapi/runtime@npm:^1.4.3, @emnapi/runtime@npm:^1.5.0, @emnapi/runtime@npm:^1.7.0, @emnapi/runtime@npm:^1.7.1":
+"@emnapi/runtime@npm:^1.4.3, @emnapi/runtime@npm:^1.5.0, @emnapi/runtime@npm:^1.7.1":
version: 1.8.1
resolution: "@emnapi/runtime@npm:1.8.1"
dependencies:
@@ -6679,609 +6583,6 @@ __metadata:
languageName: node
linkType: hard
-"@img/colour@npm:^1.0.0":
- version: 1.0.0
- resolution: "@img/colour@npm:1.0.0"
- checksum: 10/bd248d7c4b8ba99a72b22a005a63f1d3309ee8343a74b6d0d1314bae300a3096919991a09e9a9243cf6ca50e393b4c5a7e065488ed616c3b58d052473240b812
- languageName: node
- linkType: hard
-
-"@img/sharp-darwin-arm64@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-darwin-arm64@npm:0.33.5"
- dependencies:
- "@img/sharp-libvips-darwin-arm64": "npm:1.0.4"
- dependenciesMeta:
- "@img/sharp-libvips-darwin-arm64":
- optional: true
- conditions: os=darwin & cpu=arm64
- languageName: node
- linkType: hard
-
-"@img/sharp-darwin-arm64@npm:0.34.4":
- version: 0.34.4
- resolution: "@img/sharp-darwin-arm64@npm:0.34.4"
- dependencies:
- "@img/sharp-libvips-darwin-arm64": "npm:1.2.3"
- dependenciesMeta:
- "@img/sharp-libvips-darwin-arm64":
- optional: true
- conditions: os=darwin & cpu=arm64
- languageName: node
- linkType: hard
-
-"@img/sharp-darwin-arm64@npm:0.34.5":
- version: 0.34.5
- resolution: "@img/sharp-darwin-arm64@npm:0.34.5"
- dependencies:
- "@img/sharp-libvips-darwin-arm64": "npm:1.2.4"
- dependenciesMeta:
- "@img/sharp-libvips-darwin-arm64":
- optional: true
- conditions: os=darwin & cpu=arm64
- languageName: node
- linkType: hard
-
-"@img/sharp-darwin-x64@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-darwin-x64@npm:0.33.5"
- dependencies:
- "@img/sharp-libvips-darwin-x64": "npm:1.0.4"
- dependenciesMeta:
- "@img/sharp-libvips-darwin-x64":
- optional: true
- conditions: os=darwin & cpu=x64
- languageName: node
- linkType: hard
-
-"@img/sharp-darwin-x64@npm:0.34.4":
- version: 0.34.4
- resolution: "@img/sharp-darwin-x64@npm:0.34.4"
- dependencies:
- "@img/sharp-libvips-darwin-x64": "npm:1.2.3"
- dependenciesMeta:
- "@img/sharp-libvips-darwin-x64":
- optional: true
- conditions: os=darwin & cpu=x64
- languageName: node
- linkType: hard
-
-"@img/sharp-darwin-x64@npm:0.34.5":
- version: 0.34.5
- resolution: "@img/sharp-darwin-x64@npm:0.34.5"
- dependencies:
- "@img/sharp-libvips-darwin-x64": "npm:1.2.4"
- dependenciesMeta:
- "@img/sharp-libvips-darwin-x64":
- optional: true
- conditions: os=darwin & cpu=x64
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-darwin-arm64@npm:1.0.4":
- version: 1.0.4
- resolution: "@img/sharp-libvips-darwin-arm64@npm:1.0.4"
- conditions: os=darwin & cpu=arm64
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-darwin-arm64@npm:1.2.3":
- version: 1.2.3
- resolution: "@img/sharp-libvips-darwin-arm64@npm:1.2.3"
- conditions: os=darwin & cpu=arm64
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-darwin-arm64@npm:1.2.4":
- version: 1.2.4
- resolution: "@img/sharp-libvips-darwin-arm64@npm:1.2.4"
- conditions: os=darwin & cpu=arm64
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-darwin-x64@npm:1.0.4":
- version: 1.0.4
- resolution: "@img/sharp-libvips-darwin-x64@npm:1.0.4"
- conditions: os=darwin & cpu=x64
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-darwin-x64@npm:1.2.3":
- version: 1.2.3
- resolution: "@img/sharp-libvips-darwin-x64@npm:1.2.3"
- conditions: os=darwin & cpu=x64
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-darwin-x64@npm:1.2.4":
- version: 1.2.4
- resolution: "@img/sharp-libvips-darwin-x64@npm:1.2.4"
- conditions: os=darwin & cpu=x64
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linux-arm64@npm:1.0.4":
- version: 1.0.4
- resolution: "@img/sharp-libvips-linux-arm64@npm:1.0.4"
- conditions: os=linux & cpu=arm64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linux-arm64@npm:1.2.3":
- version: 1.2.3
- resolution: "@img/sharp-libvips-linux-arm64@npm:1.2.3"
- conditions: os=linux & cpu=arm64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linux-arm64@npm:1.2.4":
- version: 1.2.4
- resolution: "@img/sharp-libvips-linux-arm64@npm:1.2.4"
- conditions: os=linux & cpu=arm64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linux-arm@npm:1.0.5":
- version: 1.0.5
- resolution: "@img/sharp-libvips-linux-arm@npm:1.0.5"
- conditions: os=linux & cpu=arm & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linux-arm@npm:1.2.3":
- version: 1.2.3
- resolution: "@img/sharp-libvips-linux-arm@npm:1.2.3"
- conditions: os=linux & cpu=arm & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linux-arm@npm:1.2.4":
- version: 1.2.4
- resolution: "@img/sharp-libvips-linux-arm@npm:1.2.4"
- conditions: os=linux & cpu=arm & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linux-ppc64@npm:1.2.3":
- version: 1.2.3
- resolution: "@img/sharp-libvips-linux-ppc64@npm:1.2.3"
- conditions: os=linux & cpu=ppc64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linux-ppc64@npm:1.2.4":
- version: 1.2.4
- resolution: "@img/sharp-libvips-linux-ppc64@npm:1.2.4"
- conditions: os=linux & cpu=ppc64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linux-riscv64@npm:1.2.4":
- version: 1.2.4
- resolution: "@img/sharp-libvips-linux-riscv64@npm:1.2.4"
- conditions: os=linux & cpu=riscv64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linux-s390x@npm:1.0.4":
- version: 1.0.4
- resolution: "@img/sharp-libvips-linux-s390x@npm:1.0.4"
- conditions: os=linux & cpu=s390x & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linux-s390x@npm:1.2.3":
- version: 1.2.3
- resolution: "@img/sharp-libvips-linux-s390x@npm:1.2.3"
- conditions: os=linux & cpu=s390x & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linux-s390x@npm:1.2.4":
- version: 1.2.4
- resolution: "@img/sharp-libvips-linux-s390x@npm:1.2.4"
- conditions: os=linux & cpu=s390x & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linux-x64@npm:1.0.4":
- version: 1.0.4
- resolution: "@img/sharp-libvips-linux-x64@npm:1.0.4"
- conditions: os=linux & cpu=x64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linux-x64@npm:1.2.3":
- version: 1.2.3
- resolution: "@img/sharp-libvips-linux-x64@npm:1.2.3"
- conditions: os=linux & cpu=x64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linux-x64@npm:1.2.4":
- version: 1.2.4
- resolution: "@img/sharp-libvips-linux-x64@npm:1.2.4"
- conditions: os=linux & cpu=x64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4":
- version: 1.0.4
- resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4"
- conditions: os=linux & cpu=arm64 & libc=musl
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linuxmusl-arm64@npm:1.2.3":
- version: 1.2.3
- resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.2.3"
- conditions: os=linux & cpu=arm64 & libc=musl
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linuxmusl-arm64@npm:1.2.4":
- version: 1.2.4
- resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.2.4"
- conditions: os=linux & cpu=arm64 & libc=musl
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linuxmusl-x64@npm:1.0.4":
- version: 1.0.4
- resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.0.4"
- conditions: os=linux & cpu=x64 & libc=musl
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linuxmusl-x64@npm:1.2.3":
- version: 1.2.3
- resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.2.3"
- conditions: os=linux & cpu=x64 & libc=musl
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linuxmusl-x64@npm:1.2.4":
- version: 1.2.4
- resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.2.4"
- conditions: os=linux & cpu=x64 & libc=musl
- languageName: node
- linkType: hard
-
-"@img/sharp-linux-arm64@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-linux-arm64@npm:0.33.5"
- dependencies:
- "@img/sharp-libvips-linux-arm64": "npm:1.0.4"
- dependenciesMeta:
- "@img/sharp-libvips-linux-arm64":
- optional: true
- conditions: os=linux & cpu=arm64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-linux-arm64@npm:0.34.4":
- version: 0.34.4
- resolution: "@img/sharp-linux-arm64@npm:0.34.4"
- dependencies:
- "@img/sharp-libvips-linux-arm64": "npm:1.2.3"
- dependenciesMeta:
- "@img/sharp-libvips-linux-arm64":
- optional: true
- conditions: os=linux & cpu=arm64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-linux-arm64@npm:0.34.5":
- version: 0.34.5
- resolution: "@img/sharp-linux-arm64@npm:0.34.5"
- dependencies:
- "@img/sharp-libvips-linux-arm64": "npm:1.2.4"
- dependenciesMeta:
- "@img/sharp-libvips-linux-arm64":
- optional: true
- conditions: os=linux & cpu=arm64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-linux-arm@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-linux-arm@npm:0.33.5"
- dependencies:
- "@img/sharp-libvips-linux-arm": "npm:1.0.5"
- dependenciesMeta:
- "@img/sharp-libvips-linux-arm":
- optional: true
- conditions: os=linux & cpu=arm & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-linux-arm@npm:0.34.4":
- version: 0.34.4
- resolution: "@img/sharp-linux-arm@npm:0.34.4"
- dependencies:
- "@img/sharp-libvips-linux-arm": "npm:1.2.3"
- dependenciesMeta:
- "@img/sharp-libvips-linux-arm":
- optional: true
- conditions: os=linux & cpu=arm & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-linux-arm@npm:0.34.5":
- version: 0.34.5
- resolution: "@img/sharp-linux-arm@npm:0.34.5"
- dependencies:
- "@img/sharp-libvips-linux-arm": "npm:1.2.4"
- dependenciesMeta:
- "@img/sharp-libvips-linux-arm":
- optional: true
- conditions: os=linux & cpu=arm & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-linux-ppc64@npm:0.34.4":
- version: 0.34.4
- resolution: "@img/sharp-linux-ppc64@npm:0.34.4"
- dependencies:
- "@img/sharp-libvips-linux-ppc64": "npm:1.2.3"
- dependenciesMeta:
- "@img/sharp-libvips-linux-ppc64":
- optional: true
- conditions: os=linux & cpu=ppc64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-linux-ppc64@npm:0.34.5":
- version: 0.34.5
- resolution: "@img/sharp-linux-ppc64@npm:0.34.5"
- dependencies:
- "@img/sharp-libvips-linux-ppc64": "npm:1.2.4"
- dependenciesMeta:
- "@img/sharp-libvips-linux-ppc64":
- optional: true
- conditions: os=linux & cpu=ppc64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-linux-riscv64@npm:0.34.5":
- version: 0.34.5
- resolution: "@img/sharp-linux-riscv64@npm:0.34.5"
- dependencies:
- "@img/sharp-libvips-linux-riscv64": "npm:1.2.4"
- dependenciesMeta:
- "@img/sharp-libvips-linux-riscv64":
- optional: true
- conditions: os=linux & cpu=riscv64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-linux-s390x@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-linux-s390x@npm:0.33.5"
- dependencies:
- "@img/sharp-libvips-linux-s390x": "npm:1.0.4"
- dependenciesMeta:
- "@img/sharp-libvips-linux-s390x":
- optional: true
- conditions: os=linux & cpu=s390x & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-linux-s390x@npm:0.34.4":
- version: 0.34.4
- resolution: "@img/sharp-linux-s390x@npm:0.34.4"
- dependencies:
- "@img/sharp-libvips-linux-s390x": "npm:1.2.3"
- dependenciesMeta:
- "@img/sharp-libvips-linux-s390x":
- optional: true
- conditions: os=linux & cpu=s390x & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-linux-s390x@npm:0.34.5":
- version: 0.34.5
- resolution: "@img/sharp-linux-s390x@npm:0.34.5"
- dependencies:
- "@img/sharp-libvips-linux-s390x": "npm:1.2.4"
- dependenciesMeta:
- "@img/sharp-libvips-linux-s390x":
- optional: true
- conditions: os=linux & cpu=s390x & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-linux-x64@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-linux-x64@npm:0.33.5"
- dependencies:
- "@img/sharp-libvips-linux-x64": "npm:1.0.4"
- dependenciesMeta:
- "@img/sharp-libvips-linux-x64":
- optional: true
- conditions: os=linux & cpu=x64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-linux-x64@npm:0.34.4":
- version: 0.34.4
- resolution: "@img/sharp-linux-x64@npm:0.34.4"
- dependencies:
- "@img/sharp-libvips-linux-x64": "npm:1.2.3"
- dependenciesMeta:
- "@img/sharp-libvips-linux-x64":
- optional: true
- conditions: os=linux & cpu=x64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-linux-x64@npm:0.34.5":
- version: 0.34.5
- resolution: "@img/sharp-linux-x64@npm:0.34.5"
- dependencies:
- "@img/sharp-libvips-linux-x64": "npm:1.2.4"
- dependenciesMeta:
- "@img/sharp-libvips-linux-x64":
- optional: true
- conditions: os=linux & cpu=x64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-linuxmusl-arm64@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-linuxmusl-arm64@npm:0.33.5"
- dependencies:
- "@img/sharp-libvips-linuxmusl-arm64": "npm:1.0.4"
- dependenciesMeta:
- "@img/sharp-libvips-linuxmusl-arm64":
- optional: true
- conditions: os=linux & cpu=arm64 & libc=musl
- languageName: node
- linkType: hard
-
-"@img/sharp-linuxmusl-arm64@npm:0.34.4":
- version: 0.34.4
- resolution: "@img/sharp-linuxmusl-arm64@npm:0.34.4"
- dependencies:
- "@img/sharp-libvips-linuxmusl-arm64": "npm:1.2.3"
- dependenciesMeta:
- "@img/sharp-libvips-linuxmusl-arm64":
- optional: true
- conditions: os=linux & cpu=arm64 & libc=musl
- languageName: node
- linkType: hard
-
-"@img/sharp-linuxmusl-arm64@npm:0.34.5":
- version: 0.34.5
- resolution: "@img/sharp-linuxmusl-arm64@npm:0.34.5"
- dependencies:
- "@img/sharp-libvips-linuxmusl-arm64": "npm:1.2.4"
- dependenciesMeta:
- "@img/sharp-libvips-linuxmusl-arm64":
- optional: true
- conditions: os=linux & cpu=arm64 & libc=musl
- languageName: node
- linkType: hard
-
-"@img/sharp-linuxmusl-x64@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-linuxmusl-x64@npm:0.33.5"
- dependencies:
- "@img/sharp-libvips-linuxmusl-x64": "npm:1.0.4"
- dependenciesMeta:
- "@img/sharp-libvips-linuxmusl-x64":
- optional: true
- conditions: os=linux & cpu=x64 & libc=musl
- languageName: node
- linkType: hard
-
-"@img/sharp-linuxmusl-x64@npm:0.34.4":
- version: 0.34.4
- resolution: "@img/sharp-linuxmusl-x64@npm:0.34.4"
- dependencies:
- "@img/sharp-libvips-linuxmusl-x64": "npm:1.2.3"
- dependenciesMeta:
- "@img/sharp-libvips-linuxmusl-x64":
- optional: true
- conditions: os=linux & cpu=x64 & libc=musl
- languageName: node
- linkType: hard
-
-"@img/sharp-linuxmusl-x64@npm:0.34.5":
- version: 0.34.5
- resolution: "@img/sharp-linuxmusl-x64@npm:0.34.5"
- dependencies:
- "@img/sharp-libvips-linuxmusl-x64": "npm:1.2.4"
- dependenciesMeta:
- "@img/sharp-libvips-linuxmusl-x64":
- optional: true
- conditions: os=linux & cpu=x64 & libc=musl
- languageName: node
- linkType: hard
-
-"@img/sharp-wasm32@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-wasm32@npm:0.33.5"
- dependencies:
- "@emnapi/runtime": "npm:^1.2.0"
- conditions: cpu=wasm32
- languageName: node
- linkType: hard
-
-"@img/sharp-wasm32@npm:0.34.4":
- version: 0.34.4
- resolution: "@img/sharp-wasm32@npm:0.34.4"
- dependencies:
- "@emnapi/runtime": "npm:^1.5.0"
- conditions: cpu=wasm32
- languageName: node
- linkType: hard
-
-"@img/sharp-wasm32@npm:0.34.5":
- version: 0.34.5
- resolution: "@img/sharp-wasm32@npm:0.34.5"
- dependencies:
- "@emnapi/runtime": "npm:^1.7.0"
- conditions: cpu=wasm32
- languageName: node
- linkType: hard
-
-"@img/sharp-win32-arm64@npm:0.34.4":
- version: 0.34.4
- resolution: "@img/sharp-win32-arm64@npm:0.34.4"
- conditions: os=win32 & cpu=arm64
- languageName: node
- linkType: hard
-
-"@img/sharp-win32-arm64@npm:0.34.5":
- version: 0.34.5
- resolution: "@img/sharp-win32-arm64@npm:0.34.5"
- conditions: os=win32 & cpu=arm64
- languageName: node
- linkType: hard
-
-"@img/sharp-win32-ia32@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-win32-ia32@npm:0.33.5"
- conditions: os=win32 & cpu=ia32
- languageName: node
- linkType: hard
-
-"@img/sharp-win32-ia32@npm:0.34.4":
- version: 0.34.4
- resolution: "@img/sharp-win32-ia32@npm:0.34.4"
- conditions: os=win32 & cpu=ia32
- languageName: node
- linkType: hard
-
-"@img/sharp-win32-ia32@npm:0.34.5":
- version: 0.34.5
- resolution: "@img/sharp-win32-ia32@npm:0.34.5"
- conditions: os=win32 & cpu=ia32
- languageName: node
- linkType: hard
-
-"@img/sharp-win32-x64@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-win32-x64@npm:0.33.5"
- conditions: os=win32 & cpu=x64
- languageName: node
- linkType: hard
-
-"@img/sharp-win32-x64@npm:0.34.4":
- version: 0.34.4
- resolution: "@img/sharp-win32-x64@npm:0.34.4"
- conditions: os=win32 & cpu=x64
- languageName: node
- linkType: hard
-
-"@img/sharp-win32-x64@npm:0.34.5":
- version: 0.34.5
- resolution: "@img/sharp-win32-x64@npm:0.34.5"
- conditions: os=win32 & cpu=x64
- languageName: node
- linkType: hard
-
"@inquirer/ansi@npm:^1.0.2":
version: 1.0.2
resolution: "@inquirer/ansi@npm:1.0.2"
@@ -8143,7 +7444,7 @@ __metadata:
languageName: node
linkType: hard
-"@jridgewell/gen-mapping@npm:^0.3.12, @jridgewell/gen-mapping@npm:^0.3.2, @jridgewell/gen-mapping@npm:^0.3.5":
+"@jridgewell/gen-mapping@npm:^0.3.12, @jridgewell/gen-mapping@npm:^0.3.5":
version: 0.3.13
resolution: "@jridgewell/gen-mapping@npm:0.3.13"
dependencies:
@@ -8277,7 +7578,7 @@ __metadata:
languageName: node
linkType: hard
-"@lit-labs/ssr-dom-shim@npm:^1.0.0, @lit-labs/ssr-dom-shim@npm:^1.1.0, @lit-labs/ssr-dom-shim@npm:^1.2.0":
+"@lit-labs/ssr-dom-shim@npm:^1.2.0":
version: 1.3.0
resolution: "@lit-labs/ssr-dom-shim@npm:1.3.0"
checksum: 10/a15c5d145a20f367a392cff91f2091ffe54457119ac26569670bbbe32760f86d1e250f865dc1bd0604641106376776c4862a8fff9adb44f9881b510747c08680
@@ -8302,15 +7603,6 @@ __metadata:
languageName: node
linkType: hard
-"@lit/reactive-element@npm:^1.3.0, @lit/reactive-element@npm:^1.6.0":
- version: 1.6.3
- resolution: "@lit/reactive-element@npm:1.6.3"
- dependencies:
- "@lit-labs/ssr-dom-shim": "npm:^1.0.0"
- checksum: 10/664c899bb0b144590dc4faf83b358b1504810eac107778c3aeb384affc65a7ef4eda754944bcc34a57237db03dff145332406345ac24da19ca37cf4b3cb343d3
- languageName: node
- linkType: hard
-
"@lit/reactive-element@npm:^1.6.2 || ^2.1.0, @lit/reactive-element@npm:^2.1.0":
version: 2.1.0
resolution: "@lit/reactive-element@npm:2.1.0"
@@ -8320,38 +7612,20 @@ __metadata:
languageName: node
linkType: hard
-"@lottiefiles/dotlottie-react@npm:0.13.3":
- version: 0.13.3
- resolution: "@lottiefiles/dotlottie-react@npm:0.13.3"
+"@lottiefiles/dotlottie-wc@npm:^0.9.4":
+ version: 0.9.4
+ resolution: "@lottiefiles/dotlottie-wc@npm:0.9.4"
dependencies:
- "@lottiefiles/dotlottie-web": "npm:0.42.0"
- peerDependencies:
- react: ^17 || ^18 || ^19
- checksum: 10/b9b00dc606ad998ffe635944b7ddad21c9c252d3b51729ae3e29f8673b134eaf2bb05b42010fe310f1df7e912e62bf581ea52c50ecbadc834f163639f1640d3d
- languageName: node
- linkType: hard
-
-"@lottiefiles/dotlottie-wc@npm:^0.5.0":
- version: 0.5.3
- resolution: "@lottiefiles/dotlottie-wc@npm:0.5.3"
- dependencies:
- "@lottiefiles/dotlottie-web": "npm:0.44.0"
+ "@lottiefiles/dotlottie-web": "npm:0.65.0"
lit: "npm:^3.2.1"
- checksum: 10/c1851320783b7efb1d3cbfbe447f54a920bef1f9b5afd71ebdcb25e475c27c1bb4aa1a09f854ef9672b03ddadb66c70b5f47aa05ce37fed7915d3d8520348353
+ checksum: 10/5685a370c675f0b846354ad73d8931fc8e978582511c079b58e3dc21c004e7b629c566d6a1b9fe97d4f7458f9b966b8520bc64bc7be18d9a09aa5abfc7596a73
languageName: node
linkType: hard
-"@lottiefiles/dotlottie-web@npm:0.42.0":
- version: 0.42.0
- resolution: "@lottiefiles/dotlottie-web@npm:0.42.0"
- checksum: 10/ced847f8ffe353821e045c7c4ddc058d85766faebcab346485cace03202b4a4871a6a27517fe2137a9d560c0f24607dd4b9432caf26d3dfd197ceb76f7498314
- languageName: node
- linkType: hard
-
-"@lottiefiles/dotlottie-web@npm:0.44.0":
- version: 0.44.0
- resolution: "@lottiefiles/dotlottie-web@npm:0.44.0"
- checksum: 10/d8349ff353da858fcdd3df307f2f0cdf7e1d629f87454d8f221917ea199dbb26e46213e5c50abf0bf04a935aa31fe2bc535d3f605d64e1688666d3d0e4f0c252
+"@lottiefiles/dotlottie-web@npm:0.65.0":
+ version: 0.65.0
+ resolution: "@lottiefiles/dotlottie-web@npm:0.65.0"
+ checksum: 10/221c3287cdea610bfe802caeb2fac768b851285f99dca5287a644e811733992f482ef2fb7b8379796b147143c92d8af86d25c708265802a014e1c3b1e962dac3
languageName: node
linkType: hard
@@ -10055,69 +9329,6 @@ __metadata:
languageName: node
linkType: hard
-"@next/env@npm:15.5.2":
- version: 15.5.2
- resolution: "@next/env@npm:15.5.2"
- checksum: 10/1e1c4f5b725165663460bae67de95cab624c66a865395a0af98405d3302483bebed8e79fcc2dc1c447b7010b5519fddb49670de16b00b75d679b52b29a4d86f5
- languageName: node
- linkType: hard
-
-"@next/swc-darwin-arm64@npm:15.5.2":
- version: 15.5.2
- resolution: "@next/swc-darwin-arm64@npm:15.5.2"
- conditions: os=darwin & cpu=arm64
- languageName: node
- linkType: hard
-
-"@next/swc-darwin-x64@npm:15.5.2":
- version: 15.5.2
- resolution: "@next/swc-darwin-x64@npm:15.5.2"
- conditions: os=darwin & cpu=x64
- languageName: node
- linkType: hard
-
-"@next/swc-linux-arm64-gnu@npm:15.5.2":
- version: 15.5.2
- resolution: "@next/swc-linux-arm64-gnu@npm:15.5.2"
- conditions: os=linux & cpu=arm64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@next/swc-linux-arm64-musl@npm:15.5.2":
- version: 15.5.2
- resolution: "@next/swc-linux-arm64-musl@npm:15.5.2"
- conditions: os=linux & cpu=arm64 & libc=musl
- languageName: node
- linkType: hard
-
-"@next/swc-linux-x64-gnu@npm:15.5.2":
- version: 15.5.2
- resolution: "@next/swc-linux-x64-gnu@npm:15.5.2"
- conditions: os=linux & cpu=x64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@next/swc-linux-x64-musl@npm:15.5.2":
- version: 15.5.2
- resolution: "@next/swc-linux-x64-musl@npm:15.5.2"
- conditions: os=linux & cpu=x64 & libc=musl
- languageName: node
- linkType: hard
-
-"@next/swc-win32-arm64-msvc@npm:15.5.2":
- version: 15.5.2
- resolution: "@next/swc-win32-arm64-msvc@npm:15.5.2"
- conditions: os=win32 & cpu=arm64
- languageName: node
- linkType: hard
-
-"@next/swc-win32-x64-msvc@npm:15.5.2":
- version: 15.5.2
- resolution: "@next/swc-win32-x64-msvc@npm:15.5.2"
- conditions: os=win32 & cpu=x64
- languageName: node
- linkType: hard
-
"@noble/hashes@npm:^1.1.5":
version: 1.8.0
resolution: "@noble/hashes@npm:1.8.0"
@@ -11731,7 +10942,7 @@ __metadata:
languageName: node
linkType: hard
-"@preact/signals-core@npm:^1.2.3, @preact/signals-core@npm:^1.8.0":
+"@preact/signals-core@npm:^1.8.0":
version: 1.8.0
resolution: "@preact/signals-core@npm:1.8.0"
checksum: 10/480c1aaf1bce6f8bd5544eec9fd92a70ccdfffa24c23d99aa8e3c13783cc6b06ec0a3d90578c5fd368d06121cbe0f8fbe81368aa45ddba11d8a28af15410a9dc
@@ -11964,13 +11175,6 @@ __metadata:
languageName: node
linkType: hard
-"@radix-ui/colors@npm:3.0.0":
- version: 3.0.0
- resolution: "@radix-ui/colors@npm:3.0.0"
- checksum: 10/bc9ffb01b3964f16482dc278cf6d86d85b73eae7cb94a77018fbd53b103b3d5ec1ecf77882cfbf8892f28c2c6057db8e19bf4d66234ed330a430373b092c5cfe
- languageName: node
- linkType: hard
-
"@radix-ui/number@npm:1.1.1":
version: 1.1.1
resolution: "@radix-ui/number@npm:1.1.1"
@@ -12302,7 +11506,7 @@ __metadata:
languageName: node
linkType: hard
-"@radix-ui/react-dropdown-menu@npm:2.1.16, @radix-ui/react-dropdown-menu@npm:^2.1.16, @radix-ui/react-dropdown-menu@npm:^2.1.3":
+"@radix-ui/react-dropdown-menu@npm:^2.1.16, @radix-ui/react-dropdown-menu@npm:^2.1.3":
version: 2.1.16
resolution: "@radix-ui/react-dropdown-menu@npm:2.1.16"
dependencies:
@@ -12527,7 +11731,7 @@ __metadata:
languageName: node
linkType: hard
-"@radix-ui/react-popover@npm:1.1.15, @radix-ui/react-popover@npm:^1.1.15, @radix-ui/react-popover@npm:^1.1.3":
+"@radix-ui/react-popover@npm:^1.1.15, @radix-ui/react-popover@npm:^1.1.3":
version: 1.1.15
resolution: "@radix-ui/react-popover@npm:1.1.15"
dependencies:
@@ -12929,7 +12133,7 @@ __metadata:
languageName: node
linkType: hard
-"@radix-ui/react-tabs@npm:1.1.13, @radix-ui/react-tabs@npm:^1.1.13, @radix-ui/react-tabs@npm:^1.1.2":
+"@radix-ui/react-tabs@npm:^1.1.13, @radix-ui/react-tabs@npm:^1.1.2":
version: 1.1.13
resolution: "@radix-ui/react-tabs@npm:1.1.13"
dependencies:
@@ -13056,7 +12260,7 @@ __metadata:
languageName: node
linkType: hard
-"@radix-ui/react-tooltip@npm:1.2.8, @radix-ui/react-tooltip@npm:^1.1.5, @radix-ui/react-tooltip@npm:^1.1.8":
+"@radix-ui/react-tooltip@npm:^1.1.5, @radix-ui/react-tooltip@npm:^1.1.8":
version: 1.2.8
resolution: "@radix-ui/react-tooltip@npm:1.2.8"
dependencies:
@@ -14346,55 +13550,6 @@ __metadata:
languageName: node
linkType: hard
-"@react-email/preview-server@npm:^4.3.2":
- version: 4.3.2
- resolution: "@react-email/preview-server@npm:4.3.2"
- dependencies:
- "@babel/core": "npm:7.26.10"
- "@babel/parser": "npm:7.27.0"
- "@babel/traverse": "npm:7.27.0"
- "@lottiefiles/dotlottie-react": "npm:0.13.3"
- "@radix-ui/colors": "npm:3.0.0"
- "@radix-ui/react-collapsible": "npm:1.1.12"
- "@radix-ui/react-dropdown-menu": "npm:2.1.16"
- "@radix-ui/react-popover": "npm:1.1.15"
- "@radix-ui/react-slot": "npm:1.2.3"
- "@radix-ui/react-tabs": "npm:1.1.13"
- "@radix-ui/react-toggle-group": "npm:1.1.11"
- "@radix-ui/react-tooltip": "npm:1.2.8"
- "@types/node": "npm:22.14.1"
- "@types/normalize-path": "npm:3.0.2"
- "@types/react": "npm:19.0.10"
- "@types/react-dom": "npm:19.0.4"
- "@types/webpack": "npm:5.28.5"
- autoprefixer: "npm:10.4.21"
- clsx: "npm:2.1.1"
- esbuild: "npm:0.25.10"
- framer-motion: "npm:12.23.22"
- json5: "npm:2.2.3"
- log-symbols: "npm:4.1.0"
- module-punycode: "npm:punycode@2.3.1"
- next: "npm:15.5.2"
- node-html-parser: "npm:7.0.1"
- ora: "npm:5.4.1"
- pretty-bytes: "npm:6.1.1"
- prism-react-renderer: "npm:2.4.1"
- react: "npm:19.0.0"
- react-dom: "npm:19.0.0"
- sharp: "npm:0.34.4"
- socket.io-client: "npm:4.8.1"
- sonner: "npm:2.0.3"
- source-map-js: "npm:1.2.1"
- spamc: "npm:0.0.5"
- stacktrace-parser: "npm:0.1.11"
- tailwind-merge: "npm:3.2.0"
- tailwindcss: "npm:3.4.0"
- use-debounce: "npm:10.0.4"
- zod: "npm:3.24.3"
- checksum: 10/b5d7d107eae3d24c9d2b92c832aab4f07c972ed9c1b4ea20b867165d590f34747aff29d47397d86e43b631a9b347aecb82c163efcfd58ef1b699598bf2f4a880
- languageName: node
- linkType: hard
-
"@react-email/preview@npm:0.0.13":
version: 0.0.13
resolution: "@react-email/preview@npm:0.0.13"
@@ -15304,42 +14459,6 @@ __metadata:
languageName: node
linkType: hard
-"@rgba-image/common@npm:^0.1.0, @rgba-image/common@npm:^0.1.13":
- version: 0.1.13
- resolution: "@rgba-image/common@npm:0.1.13"
- checksum: 10/9e2598b551a1097f5265c53df6ef1d03d11f356e30f25e19ee69da43a989e1f731925d0c61e169eb9f40e87e3a24650cbafd3dc09787c26d14b6d9cdc8f89504
- languageName: node
- linkType: hard
-
-"@rgba-image/copy@npm:^0.1.2":
- version: 0.1.3
- resolution: "@rgba-image/copy@npm:0.1.3"
- dependencies:
- "@rgba-image/common": "npm:^0.1.13"
- checksum: 10/0e01876353767e930bc5b4ba17cc3a6344478dc7c8f51c6626f8b4c0e91595f12d5e191816ceadabdadbf0728db08d19a6aa235b2261371120056f3fd9a8e624
- languageName: node
- linkType: hard
-
-"@rgba-image/create-image@npm:^0.1.1":
- version: 0.1.1
- resolution: "@rgba-image/create-image@npm:0.1.1"
- dependencies:
- "@rgba-image/common": "npm:^0.1.0"
- checksum: 10/2f55720b58a2ba8dbc5502552eee3639972436b840a2b6cde0d381553e8ed2ef7110aee2b204bc7522a3e01aff4be532f432f49bc0ba7bd4d99b31b9170f9b64
- languageName: node
- linkType: hard
-
-"@rgba-image/lanczos@npm:^0.1.0":
- version: 0.1.1
- resolution: "@rgba-image/lanczos@npm:0.1.1"
- dependencies:
- "@rgba-image/common": "npm:^0.1.13"
- "@rgba-image/copy": "npm:^0.1.2"
- "@rgba-image/create-image": "npm:^0.1.1"
- checksum: 10/d5074a9ced2f3573f5d3a38adc048a7ae642013392986b3ff90daac09f475bc2f61d23e5d4a197f15b2ae61033749acf2d9e9704f203a8e318dc15413be71c58
- languageName: node
- linkType: hard
-
"@rolldown/pluginutils@npm:1.0.0-beta.53":
version: 1.0.0-beta.53
resolution: "@rolldown/pluginutils@npm:1.0.0-beta.53"
@@ -16587,15 +15706,6 @@ __metadata:
languageName: node
linkType: hard
-"@swc/helpers@npm:0.5.15":
- version: 0.5.15
- resolution: "@swc/helpers@npm:0.5.15"
- dependencies:
- tslib: "npm:^2.8.0"
- checksum: 10/e3f32c6deeecfb0fa3f22edff03a7b358e7ce16d27b0f1c8b5cdc3042c5c4ce4da6eac0b781ab7cc4f54696ece657467d56734fb26883439fb00017385364c4c
- languageName: node
- linkType: hard
-
"@swc/helpers@npm:^0.5.0":
version: 0.5.18
resolution: "@swc/helpers@npm:0.5.18"
@@ -18046,15 +17156,6 @@ __metadata:
languageName: node
linkType: hard
-"@types/node@npm:22.14.1":
- version: 22.14.1
- resolution: "@types/node@npm:22.14.1"
- dependencies:
- undici-types: "npm:~6.21.0"
- checksum: 10/561b1ad98ef5176d6da856ffbbe494f16655149f6a7d561de0423c8784910c81267d7d6459f59d68a97b3cbae9b5996b3b5dfe64f4de3de2239d295dcf4a4dcc
- languageName: node
- linkType: hard
-
"@types/node@npm:^20.0.0":
version: 20.19.1
resolution: "@types/node@npm:20.19.1"
@@ -18073,13 +17174,6 @@ __metadata:
languageName: node
linkType: hard
-"@types/normalize-path@npm:3.0.2":
- version: 3.0.2
- resolution: "@types/normalize-path@npm:3.0.2"
- checksum: 10/0fafa7d0c19eca1501cc4f9ce8a8c6ca7739d0fcd58f5851c56ad2babafc07c6113d593b4d8cc045678e0828af134f2339901f8dfe200801ee7b2d3e1496c316
- languageName: node
- linkType: hard
-
"@types/object-path@npm:^0.11.1":
version: 0.11.4
resolution: "@types/object-path@npm:0.11.4"
@@ -18149,13 +17243,6 @@ __metadata:
languageName: node
linkType: hard
-"@types/prismjs@npm:^1.26.0":
- version: 1.26.6
- resolution: "@types/prismjs@npm:1.26.6"
- checksum: 10/37c056eb7a9130ef6548d7655af78ea575c8eaa9167ea2dd64d8719384b1af4a385ffe928aa4939da607ce276703a6787bdac8ecc79a373e2a73ddf6d75bc161
- languageName: node
- linkType: hard
-
"@types/qs@npm:*":
version: 6.9.18
resolution: "@types/qs@npm:6.9.18"
@@ -18170,15 +17257,6 @@ __metadata:
languageName: node
linkType: hard
-"@types/react-dom@npm:19.0.4":
- version: 19.0.4
- resolution: "@types/react-dom@npm:19.0.4"
- peerDependencies:
- "@types/react": ^19.0.0
- checksum: 10/f15d470242f0b7cca57dd7e991a2852525ac93b2cb92f7e6c104d7bd6a978c3b1d0ba9b8698f23bc19c16b5cd98a6d160007be52c61196952f57cf019f204254
- languageName: node
- linkType: hard
-
"@types/react-dom@npm:^19.0.2":
version: 19.1.5
resolution: "@types/react-dom@npm:19.1.5"
@@ -18188,15 +17266,6 @@ __metadata:
languageName: node
linkType: hard
-"@types/react@npm:19.0.10":
- version: 19.0.10
- resolution: "@types/react@npm:19.0.10"
- dependencies:
- csstype: "npm:^3.0.2"
- checksum: 10/10b592d212ebe4b4e0bd42a95c58af3d8dfcb8b3fa4b412d686c2ff8810d5dd3e3a30ebedb31d7b738e33a39c43503e24fe4e6ca8a21d842870043793f4eda98
- languageName: node
- linkType: hard
-
"@types/react@npm:^19.0.1":
version: 19.1.5
resolution: "@types/react@npm:19.1.5"
@@ -18396,17 +17465,6 @@ __metadata:
languageName: node
linkType: hard
-"@types/webpack@npm:5.28.5":
- version: 5.28.5
- resolution: "@types/webpack@npm:5.28.5"
- dependencies:
- "@types/node": "npm:*"
- tapable: "npm:^2.2.0"
- webpack: "npm:^5"
- checksum: 10/14359d9ccecef7ef1ea271c00baec5337213c7fda63a34c61b9e519505b3928d0807cdbb5b1172d1994e1179920b89c57eaf2cbf64599958b67cd70720ac2a9b
- languageName: node
- linkType: hard
-
"@types/whatwg-mimetype@npm:^3.0.2":
version: 3.0.2
resolution: "@types/whatwg-mimetype@npm:3.0.2"
@@ -19582,13 +18640,6 @@ __metadata:
languageName: node
linkType: hard
-"any-promise@npm:^1.0.0":
- version: 1.3.0
- resolution: "any-promise@npm:1.3.0"
- checksum: 10/6737469ba353b5becf29e4dc3680736b9caa06d300bda6548812a8fee63ae7d336d756f88572fa6b5219aed36698d808fa55f62af3e7e6845c7a1dc77d240edb
- languageName: node
- linkType: hard
-
"anymatch@npm:~3.1.2":
version: 3.1.3
resolution: "anymatch@npm:3.1.3"
@@ -19688,7 +18739,7 @@ __metadata:
languageName: node
linkType: hard
-"arg@npm:5.0.2, arg@npm:^5.0.2":
+"arg@npm:5.0.2":
version: 5.0.2
resolution: "arg@npm:5.0.2"
checksum: 10/92fe7de222054a060fd2329e92e867410b3ea260328147ee3fb7855f78efae005f4087e698d4e688a856893c56bb09951588c40f2c901cf6996cd8cd7bcfef2c
@@ -19925,7 +18976,7 @@ __metadata:
languageName: node
linkType: hard
-"autoprefixer@npm:10.4.21, autoprefixer@npm:^10.4.20":
+"autoprefixer@npm:^10.4.20":
version: 10.4.21
resolution: "autoprefixer@npm:10.4.21"
dependencies:
@@ -20339,17 +19390,6 @@ __metadata:
languageName: node
linkType: hard
-"browser-image-hash@npm:^0.0.5":
- version: 0.0.5
- resolution: "browser-image-hash@npm:0.0.5"
- dependencies:
- "@rgba-image/lanczos": "npm:^0.1.0"
- decimal.js: "npm:^10.2.0"
- wasm-imagemagick: "npm:^1.2.3"
- checksum: 10/fa45bdcb4f6338a3e4a80b4495732b2a675f9dad9bb98999a2c39348fdc0057d772232972dee32db9f1a58de509355731c31b2d1533e5ac93f285d809775addd
- languageName: node
- linkType: hard
-
"browserslist@npm:^4.0.0, browserslist@npm:^4.24.0, browserslist@npm:^4.24.4, browserslist@npm:^4.24.5, browserslist@npm:^4.28.1":
version: 4.28.1
resolution: "browserslist@npm:4.28.1"
@@ -20675,13 +19715,6 @@ __metadata:
languageName: node
linkType: hard
-"camelcase-css@npm:^2.0.1":
- version: 2.0.1
- resolution: "camelcase-css@npm:2.0.1"
- checksum: 10/1cec2b3b3dcb5026688a470b00299a8db7d904c4802845c353dbd12d9d248d3346949a814d83bfd988d4d2e5b9904c07efe76fecd195a1d4f05b543e7c0b56b1
- languageName: node
- linkType: hard
-
"camelcase@npm:^5.3.1":
version: 5.3.1
resolution: "camelcase@npm:5.3.1"
@@ -20708,7 +19741,7 @@ __metadata:
languageName: node
linkType: hard
-"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001579, caniuse-lite@npm:^1.0.30001702, caniuse-lite@npm:^1.0.30001759":
+"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001702, caniuse-lite@npm:^1.0.30001759":
version: 1.0.30001774
resolution: "caniuse-lite@npm:1.0.30001774"
checksum: 10/63c87aeac08548847ecd12746144029761707d9eae57750f673543a2b2a6126bca98584dd551818e8dc2a480d11489bebe0027af26de4ee46466e7b216109862
@@ -21245,7 +20278,7 @@ __metadata:
languageName: node
linkType: hard
-"client-only@npm:0.0.1, client-only@npm:^0.0.1":
+"client-only@npm:^0.0.1":
version: 0.0.1
resolution: "client-only@npm:0.0.1"
checksum: 10/0c16bf660dadb90610553c1d8946a7fdfb81d624adea073b8440b7d795d5b5b08beb3c950c6a2cf16279365a3265158a236876d92bce16423c485c322d7dfaf8
@@ -21334,7 +20367,7 @@ __metadata:
languageName: node
linkType: hard
-"clsx@npm:2.1.1, clsx@npm:^2.0.0, clsx@npm:^2.1.1":
+"clsx@npm:^2.0.0, clsx@npm:^2.1.1":
version: 2.1.1
resolution: "clsx@npm:2.1.1"
checksum: 10/cdfb57fa6c7649bbff98d9028c2f0de2f91c86f551179541cf784b1cfdc1562dcb951955f46d54d930a3879931a980e32a46b598acaea274728dbe068deca919
@@ -21523,13 +20556,6 @@ __metadata:
languageName: node
linkType: hard
-"commander@npm:^4.0.0":
- version: 4.1.1
- resolution: "commander@npm:4.1.1"
- checksum: 10/3b2dc4125f387dab73b3294dbcb0ab2a862f9c0ad748ee2b27e3544d25325b7a8cdfbcc228d103a98a716960b14478114a5206b5415bd48cdafa38797891562c
- languageName: node
- linkType: hard
-
"commander@npm:^5.0.0":
version: 5.1.0
resolution: "commander@npm:5.1.0"
@@ -22808,7 +21834,7 @@ __metadata:
languageName: node
linkType: hard
-"debug@npm:~4.3.1, debug@npm:~4.3.2, debug@npm:~4.3.4":
+"debug@npm:~4.3.1, debug@npm:~4.3.4":
version: 4.3.7
resolution: "debug@npm:4.3.7"
dependencies:
@@ -22827,7 +21853,7 @@ __metadata:
languageName: node
linkType: hard
-"decimal.js@npm:^10.2.0, decimal.js@npm:^10.4.3":
+"decimal.js@npm:^10.4.3":
version: 10.6.0
resolution: "decimal.js@npm:10.6.0"
checksum: 10/c0d45842d47c311d11b38ce7ccc911121953d4df3ebb1465d92b31970eb4f6738a065426a06094af59bee4b0d64e42e7c8984abd57b6767c64ea90cf90bb4a69
@@ -23057,7 +22083,7 @@ __metadata:
languageName: node
linkType: hard
-"detect-libc@npm:^2.0.0, detect-libc@npm:^2.0.1, detect-libc@npm:^2.0.3, detect-libc@npm:^2.1.0, detect-libc@npm:^2.1.2":
+"detect-libc@npm:^2.0.0, detect-libc@npm:^2.0.1, detect-libc@npm:^2.0.3":
version: 2.1.2
resolution: "detect-libc@npm:2.1.2"
checksum: 10/b736c8d97d5d46164c0d1bed53eb4e6a3b1d8530d460211e2d52f1c552875e706c58a5376854e4e54f8b828c9cada58c855288c968522eb93ac7696d65970766
@@ -23104,13 +22130,6 @@ __metadata:
languageName: node
linkType: hard
-"didyoumean@npm:^1.2.2":
- version: 1.2.2
- resolution: "didyoumean@npm:1.2.2"
- checksum: 10/de7f11b6a0c8c61018629b7f405bb9746d6e994ce87c1a4b7655c3c718442dc69037a3d46d804950604fd9cbe85c074f7b224a119fc1bda851690a74540c6cf8
- languageName: node
- linkType: hard
-
"diff@npm:^8.0.2":
version: 8.0.3
resolution: "diff@npm:8.0.3"
@@ -23144,13 +22163,6 @@ __metadata:
languageName: node
linkType: hard
-"dlv@npm:^1.1.3":
- version: 1.1.3
- resolution: "dlv@npm:1.1.3"
- checksum: 10/836459ec6b50e43e9ed388a5fc28954be99e3481af3fa4b5d82a600762eb65ef8faacd454097ed7fc2f8a60aea2800d65a4cece5cd0d81ab82b2031f3f759e6e
- languageName: node
- linkType: hard
-
"dns-packet@npm:^5.2.2":
version: 5.6.1
resolution: "dns-packet@npm:5.6.1"
@@ -23801,15 +22813,6 @@ __metadata:
languageName: node
linkType: hard
-"error-stack-parser@npm:^2.0.6":
- version: 2.1.4
- resolution: "error-stack-parser@npm:2.1.4"
- dependencies:
- stackframe: "npm:^1.3.4"
- checksum: 10/23db33135bfc6ba701e5eee45e1bb9bd2fe33c5d4f9927440d9a499c7ac538f91f455fcd878611361269893c56734419252c40d8105eb3b023cf8b0fc2ebb64e
- languageName: node
- linkType: hard
-
"es-iterator-helpers@npm:@nolyfill/es-iterator-helpers@^1":
version: 1.0.21
resolution: "@nolyfill/es-iterator-helpers@npm:1.0.21"
@@ -23859,95 +22862,6 @@ __metadata:
languageName: node
linkType: hard
-"esbuild@npm:0.25.10, esbuild@npm:^0.25.0":
- version: 0.25.10
- resolution: "esbuild@npm:0.25.10"
- dependencies:
- "@esbuild/aix-ppc64": "npm:0.25.10"
- "@esbuild/android-arm": "npm:0.25.10"
- "@esbuild/android-arm64": "npm:0.25.10"
- "@esbuild/android-x64": "npm:0.25.10"
- "@esbuild/darwin-arm64": "npm:0.25.10"
- "@esbuild/darwin-x64": "npm:0.25.10"
- "@esbuild/freebsd-arm64": "npm:0.25.10"
- "@esbuild/freebsd-x64": "npm:0.25.10"
- "@esbuild/linux-arm": "npm:0.25.10"
- "@esbuild/linux-arm64": "npm:0.25.10"
- "@esbuild/linux-ia32": "npm:0.25.10"
- "@esbuild/linux-loong64": "npm:0.25.10"
- "@esbuild/linux-mips64el": "npm:0.25.10"
- "@esbuild/linux-ppc64": "npm:0.25.10"
- "@esbuild/linux-riscv64": "npm:0.25.10"
- "@esbuild/linux-s390x": "npm:0.25.10"
- "@esbuild/linux-x64": "npm:0.25.10"
- "@esbuild/netbsd-arm64": "npm:0.25.10"
- "@esbuild/netbsd-x64": "npm:0.25.10"
- "@esbuild/openbsd-arm64": "npm:0.25.10"
- "@esbuild/openbsd-x64": "npm:0.25.10"
- "@esbuild/openharmony-arm64": "npm:0.25.10"
- "@esbuild/sunos-x64": "npm:0.25.10"
- "@esbuild/win32-arm64": "npm:0.25.10"
- "@esbuild/win32-ia32": "npm:0.25.10"
- "@esbuild/win32-x64": "npm:0.25.10"
- dependenciesMeta:
- "@esbuild/aix-ppc64":
- optional: true
- "@esbuild/android-arm":
- optional: true
- "@esbuild/android-arm64":
- optional: true
- "@esbuild/android-x64":
- optional: true
- "@esbuild/darwin-arm64":
- optional: true
- "@esbuild/darwin-x64":
- optional: true
- "@esbuild/freebsd-arm64":
- optional: true
- "@esbuild/freebsd-x64":
- optional: true
- "@esbuild/linux-arm":
- optional: true
- "@esbuild/linux-arm64":
- optional: true
- "@esbuild/linux-ia32":
- optional: true
- "@esbuild/linux-loong64":
- optional: true
- "@esbuild/linux-mips64el":
- optional: true
- "@esbuild/linux-ppc64":
- optional: true
- "@esbuild/linux-riscv64":
- optional: true
- "@esbuild/linux-s390x":
- optional: true
- "@esbuild/linux-x64":
- optional: true
- "@esbuild/netbsd-arm64":
- optional: true
- "@esbuild/netbsd-x64":
- optional: true
- "@esbuild/openbsd-arm64":
- optional: true
- "@esbuild/openbsd-x64":
- optional: true
- "@esbuild/openharmony-arm64":
- optional: true
- "@esbuild/sunos-x64":
- optional: true
- "@esbuild/win32-arm64":
- optional: true
- "@esbuild/win32-ia32":
- optional: true
- "@esbuild/win32-x64":
- optional: true
- bin:
- esbuild: bin/esbuild
- checksum: 10/a8e4d33d7e785b7c8e1255d2ef532a53d1406659dbf2d0d3cdeb95c4760f51f86683e42974643b4f1dbe58381b6c7ce1217d4c8325f84353fbfc40be7b326358
- languageName: node
- linkType: hard
-
"esbuild@npm:^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0 || ^0.24.0 || ^0.25.0 || ^0.26.0 || ^0.27.0, esbuild@npm:^0.27.0, esbuild@npm:esbuild@>=0.17.6 <0.28.0, esbuild@npm:~0.27.0":
version: 0.27.3
resolution: "esbuild@npm:0.27.3"
@@ -24037,6 +22951,95 @@ __metadata:
languageName: node
linkType: hard
+"esbuild@npm:^0.25.0":
+ version: 0.25.10
+ resolution: "esbuild@npm:0.25.10"
+ dependencies:
+ "@esbuild/aix-ppc64": "npm:0.25.10"
+ "@esbuild/android-arm": "npm:0.25.10"
+ "@esbuild/android-arm64": "npm:0.25.10"
+ "@esbuild/android-x64": "npm:0.25.10"
+ "@esbuild/darwin-arm64": "npm:0.25.10"
+ "@esbuild/darwin-x64": "npm:0.25.10"
+ "@esbuild/freebsd-arm64": "npm:0.25.10"
+ "@esbuild/freebsd-x64": "npm:0.25.10"
+ "@esbuild/linux-arm": "npm:0.25.10"
+ "@esbuild/linux-arm64": "npm:0.25.10"
+ "@esbuild/linux-ia32": "npm:0.25.10"
+ "@esbuild/linux-loong64": "npm:0.25.10"
+ "@esbuild/linux-mips64el": "npm:0.25.10"
+ "@esbuild/linux-ppc64": "npm:0.25.10"
+ "@esbuild/linux-riscv64": "npm:0.25.10"
+ "@esbuild/linux-s390x": "npm:0.25.10"
+ "@esbuild/linux-x64": "npm:0.25.10"
+ "@esbuild/netbsd-arm64": "npm:0.25.10"
+ "@esbuild/netbsd-x64": "npm:0.25.10"
+ "@esbuild/openbsd-arm64": "npm:0.25.10"
+ "@esbuild/openbsd-x64": "npm:0.25.10"
+ "@esbuild/openharmony-arm64": "npm:0.25.10"
+ "@esbuild/sunos-x64": "npm:0.25.10"
+ "@esbuild/win32-arm64": "npm:0.25.10"
+ "@esbuild/win32-ia32": "npm:0.25.10"
+ "@esbuild/win32-x64": "npm:0.25.10"
+ dependenciesMeta:
+ "@esbuild/aix-ppc64":
+ optional: true
+ "@esbuild/android-arm":
+ optional: true
+ "@esbuild/android-arm64":
+ optional: true
+ "@esbuild/android-x64":
+ optional: true
+ "@esbuild/darwin-arm64":
+ optional: true
+ "@esbuild/darwin-x64":
+ optional: true
+ "@esbuild/freebsd-arm64":
+ optional: true
+ "@esbuild/freebsd-x64":
+ optional: true
+ "@esbuild/linux-arm":
+ optional: true
+ "@esbuild/linux-arm64":
+ optional: true
+ "@esbuild/linux-ia32":
+ optional: true
+ "@esbuild/linux-loong64":
+ optional: true
+ "@esbuild/linux-mips64el":
+ optional: true
+ "@esbuild/linux-ppc64":
+ optional: true
+ "@esbuild/linux-riscv64":
+ optional: true
+ "@esbuild/linux-s390x":
+ optional: true
+ "@esbuild/linux-x64":
+ optional: true
+ "@esbuild/netbsd-arm64":
+ optional: true
+ "@esbuild/netbsd-x64":
+ optional: true
+ "@esbuild/openbsd-arm64":
+ optional: true
+ "@esbuild/openbsd-x64":
+ optional: true
+ "@esbuild/openharmony-arm64":
+ optional: true
+ "@esbuild/sunos-x64":
+ optional: true
+ "@esbuild/win32-arm64":
+ optional: true
+ "@esbuild/win32-ia32":
+ optional: true
+ "@esbuild/win32-x64":
+ optional: true
+ bin:
+ esbuild: bin/esbuild
+ checksum: 10/a8e4d33d7e785b7c8e1255d2ef532a53d1406659dbf2d0d3cdeb95c4760f51f86683e42974643b4f1dbe58381b6c7ce1217d4c8325f84353fbfc40be7b326358
+ languageName: node
+ linkType: hard
+
"escalade@npm:^3.1.1, escalade@npm:^3.2.0":
version: 3.2.0
resolution: "escalade@npm:3.2.0"
@@ -24761,7 +23764,7 @@ __metadata:
languageName: node
linkType: hard
-"fast-glob@npm:3.3.3, fast-glob@npm:^3.2.7, fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.0, fast-glob@npm:^3.3.3":
+"fast-glob@npm:3.3.3, fast-glob@npm:^3.2.7, fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.3":
version: 3.3.3
resolution: "fast-glob@npm:3.3.3"
dependencies:
@@ -24900,7 +23903,7 @@ __metadata:
languageName: node
linkType: hard
-"fflate@npm:^0.8.1, fflate@npm:^0.8.2":
+"fflate@npm:^0.8.2":
version: 0.8.2
resolution: "fflate@npm:0.8.2"
checksum: 10/2bd26ba6d235d428de793c6a0cd1aaa96a06269ebd4e21b46c8fd1bd136abc631acf27e188d47c3936db090bf3e1ede11d15ce9eae9bffdc4bfe1b9dc66ca9cb
@@ -25252,28 +24255,6 @@ __metadata:
languageName: node
linkType: hard
-"framer-motion@npm:12.23.22":
- version: 12.23.22
- resolution: "framer-motion@npm:12.23.22"
- dependencies:
- motion-dom: "npm:^12.23.21"
- motion-utils: "npm:^12.23.6"
- tslib: "npm:^2.4.0"
- peerDependencies:
- "@emotion/is-prop-valid": "*"
- react: ^18.0.0 || ^19.0.0
- react-dom: ^18.0.0 || ^19.0.0
- peerDependenciesMeta:
- "@emotion/is-prop-valid":
- optional: true
- react:
- optional: true
- react-dom:
- optional: true
- checksum: 10/ea16b23a7587634e42a5fd0ac0fafaaee34ec720947f9cd4c7f80d7e8a68c3371df43309c1216302387b7d3682d132c27d376b2b63628df56270539046c3acda
- languageName: node
- linkType: hard
-
"fresh@npm:^2.0.0":
version: 2.0.0
resolution: "fresh@npm:2.0.0"
@@ -25837,13 +24818,6 @@ __metadata:
languageName: node
linkType: hard
-"globals@npm:^11.1.0":
- version: 11.12.0
- resolution: "globals@npm:11.12.0"
- checksum: 10/9f054fa38ff8de8fa356502eb9d2dae0c928217b8b5c8de1f09f5c9b6c8a96d8b9bd3afc49acbcd384a98a81fea713c859e1b09e214c60509517bb8fc2bc13c2
- languageName: node
- linkType: hard
-
"globals@npm:^14.0.0":
version: 14.0.0
resolution: "globals@npm:14.0.0"
@@ -26278,7 +25252,7 @@ __metadata:
languageName: node
linkType: hard
-"he@npm:1.2.0, he@npm:^1.2.0":
+"he@npm:^1.2.0":
version: 1.2.0
resolution: "he@npm:1.2.0"
bin:
@@ -26361,13 +25335,6 @@ __metadata:
languageName: node
linkType: hard
-"howler@npm:^2.2.3":
- version: 2.2.4
- resolution: "howler@npm:2.2.4"
- checksum: 10/e4177f6581ede99fdec68c2dc16a01e74ed3e4f3b28d4804030246f74f15a50311bd3d4d332a6e968a296e6bae1d0a8c8703e8e22d98ef8f5a3299e545e2fe55
- languageName: node
- linkType: hard
-
"hpack.js@npm:^2.1.6":
version: 2.1.6
resolution: "hpack.js@npm:2.1.6"
@@ -27755,7 +26722,7 @@ __metadata:
languageName: node
linkType: hard
-"jiti@npm:^1.17.1, jiti@npm:^1.19.1, jiti@npm:^1.20.0, jiti@npm:^1.21.6":
+"jiti@npm:^1.17.1, jiti@npm:^1.20.0, jiti@npm:^1.21.6":
version: 1.21.7
resolution: "jiti@npm:1.21.7"
bin:
@@ -27980,7 +26947,7 @@ __metadata:
languageName: node
linkType: hard
-"json5@npm:2.2.3, json5@npm:^2.1.2, json5@npm:^2.2.2, json5@npm:^2.2.3":
+"json5@npm:^2.1.2, json5@npm:^2.2.2, json5@npm:^2.2.3":
version: 2.2.3
resolution: "json5@npm:2.2.3"
bin:
@@ -28386,14 +27353,7 @@ __metadata:
languageName: node
linkType: hard
-"lilconfig@npm:^2.1.0":
- version: 2.1.0
- resolution: "lilconfig@npm:2.1.0"
- checksum: 10/b1314a2e55319013d5e7d7d08be39015829d2764a1eaee130129545d40388499d81b1c31b0f9b3417d4db12775a88008b72ec33dd06e0184cf7503b32ca7cc0b
- languageName: node
- linkType: hard
-
-"lilconfig@npm:^3.0.0, lilconfig@npm:^3.1.3":
+"lilconfig@npm:^3.1.3":
version: 3.1.3
resolution: "lilconfig@npm:3.1.3"
checksum: 10/b932ce1af94985f0efbe8896e57b1f814a48c8dbd7fc0ef8469785c6303ed29d0090af3ccad7e36b626bfca3a4dc56cc262697e9a8dd867623cf09a39d54e4c3
@@ -28495,17 +27455,6 @@ __metadata:
languageName: node
linkType: hard
-"lit-element@npm:^3.3.0":
- version: 3.3.3
- resolution: "lit-element@npm:3.3.3"
- dependencies:
- "@lit-labs/ssr-dom-shim": "npm:^1.1.0"
- "@lit/reactive-element": "npm:^1.3.0"
- lit-html: "npm:^2.8.0"
- checksum: 10/7968e7f3ce3994911f27c4c54acc956488c91d8af81677cce3d6f0c2eaea45cceb79b064077159392238d6e43d46015a950269db9914fea8913566aacb17eaa1
- languageName: node
- linkType: hard
-
"lit-element@npm:^4.2.0":
version: 4.2.0
resolution: "lit-element@npm:4.2.0"
@@ -28517,15 +27466,6 @@ __metadata:
languageName: node
linkType: hard
-"lit-html@npm:^2.8.0":
- version: 2.8.0
- resolution: "lit-html@npm:2.8.0"
- dependencies:
- "@types/trusted-types": "npm:^2.0.2"
- checksum: 10/3503e55e2927c2ff94773cf041fc4128f92291869c9192f36eacb7f95132d11f6b329e5b910ab60a4456349cd2e6d23b33d83291b24d557bcd6b904d6314ac1a
- languageName: node
- linkType: hard
-
"lit-html@npm:^3.2.1, lit-html@npm:^3.3.0":
version: 3.3.0
resolution: "lit-html@npm:3.3.0"
@@ -28535,17 +27475,6 @@ __metadata:
languageName: node
linkType: hard
-"lit@npm:^2.7.5":
- version: 2.8.0
- resolution: "lit@npm:2.8.0"
- dependencies:
- "@lit/reactive-element": "npm:^1.6.0"
- lit-element: "npm:^3.3.0"
- lit-html: "npm:^2.8.0"
- checksum: 10/aa64c1136b855ba328d41157dba67657d480345aeec3c1dd829abeb67719d759c9ff2ade9903f9cfb4f9d012b16087034aaa5b33f1182e70c615765562e3251b
- languageName: node
- linkType: hard
-
"lit@npm:^3.2.0, lit@npm:^3.2.1":
version: 3.3.0
resolution: "lit@npm:3.3.0"
@@ -28866,7 +27795,7 @@ __metadata:
languageName: node
linkType: hard
-"log-symbols@npm:4.1.0, log-symbols@npm:^4.0.0, log-symbols@npm:^4.1.0":
+"log-symbols@npm:^4.0.0, log-symbols@npm:^4.1.0":
version: 4.1.0
resolution: "log-symbols@npm:4.1.0"
dependencies:
@@ -30376,13 +29305,6 @@ __metadata:
languageName: node
linkType: hard
-"module-punycode@npm:punycode@2.3.1, punycode@npm:^2.1.0":
- version: 2.3.1
- resolution: "punycode@npm:2.3.1"
- checksum: 10/febdc4362bead22f9e2608ff0171713230b57aff9dddc1c273aa2a651fbd366f94b7d6a71d78342a7c0819906750351ca7f2edd26ea41b626d87d6a13d1bd059
- languageName: node
- linkType: hard
-
"monaco-editor@npm:^0.52.2":
version: 0.52.2
resolution: "monaco-editor@npm:0.52.2"
@@ -30390,22 +29312,6 @@ __metadata:
languageName: node
linkType: hard
-"motion-dom@npm:^12.23.21":
- version: 12.34.3
- resolution: "motion-dom@npm:12.34.3"
- dependencies:
- motion-utils: "npm:^12.29.2"
- checksum: 10/17abb91f87020f00470f886cced6c6ebd58b9d5848c9bb12eb38f029dc7077344cf6ac2ccbe0adf1a8996191c17a98abfe91eaa99a1723909d7dd25a4f2b1101
- languageName: node
- linkType: hard
-
-"motion-utils@npm:^12.23.6, motion-utils@npm:^12.29.2":
- version: 12.29.2
- resolution: "motion-utils@npm:12.29.2"
- checksum: 10/ae5f9be58c07939af72334894ed1a18653d724946182a718dc3d11268ef26e63804c3f16dee5a6110596d4406b539c4513822b74f86adebef9488601c34b18b7
- languageName: node
- linkType: hard
-
"mp4-muxer@npm:^5.2.2":
version: 5.2.2
resolution: "mp4-muxer@npm:5.2.2"
@@ -30612,17 +29518,6 @@ __metadata:
languageName: node
linkType: hard
-"mz@npm:^2.7.0":
- version: 2.7.0
- resolution: "mz@npm:2.7.0"
- dependencies:
- any-promise: "npm:^1.0.0"
- object-assign: "npm:^4.0.1"
- thenify-all: "npm:^1.0.0"
- checksum: 10/8427de0ece99a07e9faed3c0c6778820d7543e3776f9a84d22cf0ec0a8eb65f6e9aee9c9d353ff9a105ff62d33a9463c6ca638974cc652ee8140cd1e35951c87
- languageName: node
- linkType: hard
-
"nano-spawn@npm:^1.0.0":
version: 1.0.1
resolution: "nano-spawn@npm:1.0.1"
@@ -30630,7 +29525,7 @@ __metadata:
languageName: node
linkType: hard
-"nanoid@npm:^3.3.11, nanoid@npm:^3.3.6":
+"nanoid@npm:^3.3.11":
version: 3.3.11
resolution: "nanoid@npm:3.3.11"
bin:
@@ -30764,65 +29659,6 @@ __metadata:
languageName: node
linkType: hard
-"next@npm:15.5.2":
- version: 15.5.2
- resolution: "next@npm:15.5.2"
- dependencies:
- "@next/env": "npm:15.5.2"
- "@next/swc-darwin-arm64": "npm:15.5.2"
- "@next/swc-darwin-x64": "npm:15.5.2"
- "@next/swc-linux-arm64-gnu": "npm:15.5.2"
- "@next/swc-linux-arm64-musl": "npm:15.5.2"
- "@next/swc-linux-x64-gnu": "npm:15.5.2"
- "@next/swc-linux-x64-musl": "npm:15.5.2"
- "@next/swc-win32-arm64-msvc": "npm:15.5.2"
- "@next/swc-win32-x64-msvc": "npm:15.5.2"
- "@swc/helpers": "npm:0.5.15"
- caniuse-lite: "npm:^1.0.30001579"
- postcss: "npm:8.4.31"
- sharp: "npm:^0.34.3"
- styled-jsx: "npm:5.1.6"
- peerDependencies:
- "@opentelemetry/api": ^1.1.0
- "@playwright/test": ^1.51.1
- babel-plugin-react-compiler: "*"
- react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
- react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
- sass: ^1.3.0
- dependenciesMeta:
- "@next/swc-darwin-arm64":
- optional: true
- "@next/swc-darwin-x64":
- optional: true
- "@next/swc-linux-arm64-gnu":
- optional: true
- "@next/swc-linux-arm64-musl":
- optional: true
- "@next/swc-linux-x64-gnu":
- optional: true
- "@next/swc-linux-x64-musl":
- optional: true
- "@next/swc-win32-arm64-msvc":
- optional: true
- "@next/swc-win32-x64-msvc":
- optional: true
- sharp:
- optional: true
- peerDependenciesMeta:
- "@opentelemetry/api":
- optional: true
- "@playwright/test":
- optional: true
- babel-plugin-react-compiler:
- optional: true
- sass:
- optional: true
- bin:
- next: dist/bin/next
- checksum: 10/0e5a7420e7ea9bba57b32575378c9d74eb4cc95a34453d0e88dd6212f95d7d4f9fd35a106dba0ca5f537e3265a3ab48cf93487f7c792502ee83da3a9bb4be92c
- languageName: node
- linkType: hard
-
"nice-try@npm:^1.0.4":
version: 1.0.5
resolution: "nice-try@npm:1.0.5"
@@ -30984,16 +29820,6 @@ __metadata:
languageName: node
linkType: hard
-"node-html-parser@npm:7.0.1":
- version: 7.0.1
- resolution: "node-html-parser@npm:7.0.1"
- dependencies:
- css-select: "npm:^5.1.0"
- he: "npm:1.2.0"
- checksum: 10/726db99091551ab3620f001892d6afb4c87b505ffc8fc6b8cd7bb225701a805b85615504dd93a0d4ee095ef46d2ec4dabc9b61165d8034704b191601f5bf6936
- languageName: node
- linkType: hard
-
"node-int64@npm:^0.4.0":
version: 0.4.0
resolution: "node-int64@npm:0.4.0"
@@ -31199,14 +30025,14 @@ __metadata:
languageName: node
linkType: hard
-"object-assign@npm:^4, object-assign@npm:^4.0.1, object-assign@npm:^4.1.0, object-assign@npm:^4.1.1":
+"object-assign@npm:^4, object-assign@npm:^4.1.0, object-assign@npm:^4.1.1":
version: 4.1.1
resolution: "object-assign@npm:4.1.1"
checksum: 10/fcc6e4ea8c7fe48abfbb552578b1c53e0d194086e2e6bbbf59e0a536381a292f39943c6e9628af05b5528aa5e3318bb30d6b2e53cadaf5b8fe9e12c4b69af23f
languageName: node
linkType: hard
-"object-hash@npm:3.0.0, object-hash@npm:^3.0.0":
+"object-hash@npm:3.0.0":
version: 3.0.0
resolution: "object-hash@npm:3.0.0"
checksum: 10/f498d456a20512ba7be500cef4cf7b3c183cc72c65372a549c9a0e6dd78ce26f375e9b1315c07592d3fde8f10d5019986eba35970570d477ed9a2a702514432a
@@ -31426,7 +30252,7 @@ __metadata:
languageName: node
linkType: hard
-"ora@npm:5.4.1, ora@npm:^5.1.0, ora@npm:^5.4.1":
+"ora@npm:^5.1.0, ora@npm:^5.4.1":
version: 5.4.1
resolution: "ora@npm:5.4.1"
dependencies:
@@ -31647,13 +30473,6 @@ __metadata:
languageName: node
linkType: hard
-"p-map@npm:^2.0.0":
- version: 2.1.0
- resolution: "p-map@npm:2.1.0"
- checksum: 10/9e3ad3c9f6d75a5b5661bcad78c91f3a63849189737cd75e4f1225bf9ac205194e5c44aac2ef6f09562b1facdb9bd1425584d7ac375bfaa17b3f1a142dab936d
- languageName: node
- linkType: hard
-
"p-map@npm:^4.0.0":
version: 4.0.0
resolution: "p-map@npm:4.0.0"
@@ -32222,20 +31041,13 @@ __metadata:
languageName: node
linkType: hard
-"pify@npm:^2.0.0, pify@npm:^2.3.0":
+"pify@npm:^2.0.0":
version: 2.3.0
resolution: "pify@npm:2.3.0"
checksum: 10/9503aaeaf4577acc58642ad1d25c45c6d90288596238fb68f82811c08104c800e5a7870398e9f015d82b44ecbcbef3dc3d4251a1cbb582f6e5959fe09884b2ba
languageName: node
linkType: hard
-"pirates@npm:^4.0.1":
- version: 4.0.7
- resolution: "pirates@npm:4.0.7"
- checksum: 10/2427f371366081ae42feb58214f04805d6b41d6b84d74480ebcc9e0ddbd7105a139f7c653daeaf83ad8a1a77214cf07f64178e76de048128fec501eab3305a96
- languageName: node
- linkType: hard
-
"piscina@npm:^5.1.4":
version: 5.1.4
resolution: "piscina@npm:5.1.4"
@@ -32437,48 +31249,6 @@ __metadata:
languageName: node
linkType: hard
-"postcss-import@npm:^15.1.0":
- version: 15.1.0
- resolution: "postcss-import@npm:15.1.0"
- dependencies:
- postcss-value-parser: "npm:^4.0.0"
- read-cache: "npm:^1.0.0"
- resolve: "npm:^1.1.7"
- peerDependencies:
- postcss: ^8.0.0
- checksum: 10/33c91b7e6b794b5c33d7d7d4730e5f0729c131d2de1ada7fcc116955625a78c3ce613983f019fa9447681795cf3f851e9c38dfbe3f48a2d08a8aef917c70a32a
- languageName: node
- linkType: hard
-
-"postcss-js@npm:^4.0.1":
- version: 4.1.0
- resolution: "postcss-js@npm:4.1.0"
- dependencies:
- camelcase-css: "npm:^2.0.1"
- peerDependencies:
- postcss: ^8.4.21
- checksum: 10/32f5422478e60086e5d70b4ea6f4bcdb15baae16e9e311497fbbf5e6d07dfb5916e7fd61957e8664b923c8c68a5bd364cb0517d8e263cfd12cc601a1c1ab9ad2
- languageName: node
- linkType: hard
-
-"postcss-load-config@npm:^4.0.1":
- version: 4.0.2
- resolution: "postcss-load-config@npm:4.0.2"
- dependencies:
- lilconfig: "npm:^3.0.0"
- yaml: "npm:^2.3.4"
- peerDependencies:
- postcss: ">=8.0.9"
- ts-node: ">=9.0.0"
- peerDependenciesMeta:
- postcss:
- optional: true
- ts-node:
- optional: true
- checksum: 10/e2c2ed9b7998a5b123e1ce0c124daf6504b1454c67dcc1c8fdbcc5ffb2597b7de245e3ac34f63afc928d3fd3260b1e36492ebbdb01a9ff63f16b3c8b7b925d1b
- languageName: node
- linkType: hard
-
"postcss-loader@npm:^8.1.1":
version: 8.1.1
resolution: "postcss-loader@npm:8.1.1"
@@ -32618,17 +31388,6 @@ __metadata:
languageName: node
linkType: hard
-"postcss-nested@npm:^6.0.1":
- version: 6.2.0
- resolution: "postcss-nested@npm:6.2.0"
- dependencies:
- postcss-selector-parser: "npm:^6.1.1"
- peerDependencies:
- postcss: ^8.2.14
- checksum: 10/d7f6ba6bfd03d42f84689a0630d4e393c421bb53723f16fe179a840f03ed17763b0fe494458577d2a015e857e0ec27c7e194909ffe209ee5f0676aec39737317
- languageName: node
- linkType: hard
-
"postcss-normalize-charset@npm:^7.0.1":
version: 7.0.1
resolution: "postcss-normalize-charset@npm:7.0.1"
@@ -32762,16 +31521,6 @@ __metadata:
languageName: node
linkType: hard
-"postcss-selector-parser@npm:^6.0.11, postcss-selector-parser@npm:^6.1.1":
- version: 6.1.2
- resolution: "postcss-selector-parser@npm:6.1.2"
- dependencies:
- cssesc: "npm:^3.0.0"
- util-deprecate: "npm:^1.0.2"
- checksum: 10/190034c94d809c115cd2f32ee6aade84e933450a43ec3899c3e78e7d7b33efd3a2a975bb45d7700b6c5b196c06a7d9acf3f1ba6f1d87032d9675a29d8bca1dd3
- languageName: node
- linkType: hard
-
"postcss-selector-parser@npm:^7.0.0, postcss-selector-parser@npm:^7.1.0":
version: 7.1.0
resolution: "postcss-selector-parser@npm:7.1.0"
@@ -32805,25 +31554,14 @@ __metadata:
languageName: node
linkType: hard
-"postcss-value-parser@npm:^4.0.0, postcss-value-parser@npm:^4.1.0, postcss-value-parser@npm:^4.2.0":
+"postcss-value-parser@npm:^4.1.0, postcss-value-parser@npm:^4.2.0":
version: 4.2.0
resolution: "postcss-value-parser@npm:4.2.0"
checksum: 10/e4e4486f33b3163a606a6ed94f9c196ab49a37a7a7163abfcd469e5f113210120d70b8dd5e33d64636f41ad52316a3725655421eb9a1094f1bcab1db2f555c62
languageName: node
linkType: hard
-"postcss@npm:8.4.31":
- version: 8.4.31
- resolution: "postcss@npm:8.4.31"
- dependencies:
- nanoid: "npm:^3.3.6"
- picocolors: "npm:^1.0.0"
- source-map-js: "npm:^1.0.2"
- checksum: 10/1a6653e72105907377f9d4f2cd341d8d90e3fde823a5ddea1e2237aaa56933ea07853f0f2758c28892a1d70c53bbaca200eb8b80f8ed55f13093003dbec5afa0
- languageName: node
- linkType: hard
-
-"postcss@npm:^8.4.23, postcss@npm:^8.4.33, postcss@npm:^8.4.41, postcss@npm:^8.4.49, postcss@npm:^8.5.6":
+"postcss@npm:^8.4.33, postcss@npm:^8.4.41, postcss@npm:^8.4.49, postcss@npm:^8.5.6":
version: 8.5.6
resolution: "postcss@npm:8.5.6"
dependencies:
@@ -32891,13 +31629,6 @@ __metadata:
languageName: node
linkType: hard
-"pretty-bytes@npm:6.1.1":
- version: 6.1.1
- resolution: "pretty-bytes@npm:6.1.1"
- checksum: 10/43d29d909d2d88072da2c3d72f8fd0f2d2523c516bfa640aff6e31f596ea1004b6601f4cabc50d14b2cf10e82635ebe5b7d9378f3d5bae1c0067131829421b8a
- languageName: node
- linkType: hard
-
"pretty-error@npm:^4.0.0":
version: 4.0.0
resolution: "pretty-error@npm:4.0.0"
@@ -32928,18 +31659,6 @@ __metadata:
languageName: node
linkType: hard
-"prism-react-renderer@npm:2.4.1":
- version: 2.4.1
- resolution: "prism-react-renderer@npm:2.4.1"
- dependencies:
- "@types/prismjs": "npm:^1.26.0"
- clsx: "npm:^2.0.0"
- peerDependencies:
- react: ">=16.0.0"
- checksum: 10/f76ea89b8b18c477eb74e9ddda2571b5c4d21142731f6733160723aa03567b17df315d7db68ffb1122c199750ece65578ecacb488559229b26db5474d6aae55b
- languageName: node
- linkType: hard
-
"prisma@npm:^6.6.0":
version: 6.8.2
resolution: "prisma@npm:6.8.2"
@@ -33145,6 +31864,13 @@ __metadata:
languageName: node
linkType: hard
+"punycode@npm:^2.1.0":
+ version: 2.3.1
+ resolution: "punycode@npm:2.3.1"
+ checksum: 10/febdc4362bead22f9e2608ff0171713230b57aff9dddc1c273aa2a651fbd366f94b7d6a71d78342a7c0819906750351ca7f2edd26ea41b626d87d6a13d1bd059
+ languageName: node
+ linkType: hard
+
"qr-creator@npm:^1.0.0":
version: 1.0.0
resolution: "qr-creator@npm:1.0.0"
@@ -33452,17 +32178,6 @@ __metadata:
languageName: node
linkType: hard
-"react-dom@npm:19.0.0":
- version: 19.0.0
- resolution: "react-dom@npm:19.0.0"
- dependencies:
- scheduler: "npm:^0.25.0"
- peerDependencies:
- react: ^19.0.0
- checksum: 10/aa64a2f1991042f516260e8b0eca0ae777b6c8f1aa2b5ae096e80bbb6ac9b005aef2bca697969841d34f7e1819556263476bdfea36c35092e8d9aefde3de2d9a
- languageName: node
- linkType: hard
-
"react-dom@npm:19.2.1, react-dom@npm:^19.2.1":
version: 19.2.1
resolution: "react-dom@npm:19.2.1"
@@ -33842,13 +32557,6 @@ __metadata:
languageName: node
linkType: hard
-"react@npm:19.0.0":
- version: 19.0.0
- resolution: "react@npm:19.0.0"
- checksum: 10/2490969c503f644703c88990d20e4011fa6119ddeca451e9de48f6d7ab058d670d2852a5fcd3aa3cd90a923ab2815d532637bd4a814add402ae5c0d4f129ee71
- languageName: node
- linkType: hard
-
"react@npm:^19.2.1":
version: 19.2.1
resolution: "react@npm:19.2.1"
@@ -33867,15 +32575,6 @@ __metadata:
languageName: node
linkType: hard
-"read-cache@npm:^1.0.0":
- version: 1.0.0
- resolution: "read-cache@npm:1.0.0"
- dependencies:
- pify: "npm:^2.3.0"
- checksum: 10/83a39149d9dfa38f0c482ea0d77b34773c92fef07fe7599cdd914d255b14d0453e0229ef6379d8d27d6947f42d7581635296d0cfa7708f05a9bd8e789d398b31
- languageName: node
- linkType: hard
-
"read-pkg-up@npm:^2.0.0":
version: 2.0.0
resolution: "read-pkg-up@npm:2.0.0"
@@ -34350,7 +33049,7 @@ __metadata:
languageName: node
linkType: hard
-"resolve@npm:^1.1.6, resolve@npm:^1.1.7, resolve@npm:^1.10.0, resolve@npm:^1.19.0, resolve@npm:^1.20.0, resolve@npm:^1.22.1, resolve@npm:^1.22.2, resolve@npm:^1.22.8":
+"resolve@npm:^1.1.6, resolve@npm:^1.10.0, resolve@npm:^1.19.0, resolve@npm:^1.20.0, resolve@npm:^1.22.1, resolve@npm:^1.22.8":
version: 1.22.11
resolution: "resolve@npm:1.22.11"
dependencies:
@@ -34376,7 +33075,7 @@ __metadata:
languageName: node
linkType: hard
-"resolve@patch:resolve@npm%3A^1.1.6#optional!builtin, resolve@patch:resolve@npm%3A^1.1.7#optional!builtin, resolve@patch:resolve@npm%3A^1.10.0#optional!builtin, resolve@patch:resolve@npm%3A^1.19.0#optional!builtin, resolve@patch:resolve@npm%3A^1.20.0#optional!builtin, resolve@patch:resolve@npm%3A^1.22.1#optional!builtin, resolve@patch:resolve@npm%3A^1.22.2#optional!builtin, resolve@patch:resolve@npm%3A^1.22.8#optional!builtin":
+"resolve@patch:resolve@npm%3A^1.1.6#optional!builtin, resolve@patch:resolve@npm%3A^1.10.0#optional!builtin, resolve@patch:resolve@npm%3A^1.19.0#optional!builtin, resolve@patch:resolve@npm%3A^1.20.0#optional!builtin, resolve@patch:resolve@npm%3A^1.22.1#optional!builtin, resolve@patch:resolve@npm%3A^1.22.8#optional!builtin":
version: 1.22.11
resolution: "resolve@patch:resolve@npm%3A1.22.11#optional!builtin::version=1.22.11&hash=c3c19d"
dependencies:
@@ -34738,13 +33437,6 @@ __metadata:
languageName: node
linkType: hard
-"scheduler@npm:^0.25.0":
- version: 0.25.0
- resolution: "scheduler@npm:0.25.0"
- checksum: 10/e661e38503ab29a153429a99203fefa764f28b35c079719eb5efdd2c1c1086522f6653d8ffce388209682c23891a6d1d32fa6badf53c35fb5b9cd0c55ace42de
- languageName: node
- linkType: hard
-
"scheduler@npm:^0.27.0":
version: 0.27.0
resolution: "scheduler@npm:0.27.0"
@@ -35072,246 +33764,6 @@ __metadata:
languageName: node
linkType: hard
-"sharp-phash@npm:^2.1.0":
- version: 2.2.0
- resolution: "sharp-phash@npm:2.2.0"
- peerDependencies:
- sharp: ">= 0.32.0"
- checksum: 10/a9b0ca1426c5ce618d956e3bf23acdb2b341833b53a69e959fad4a91a0751ae8310e5d82f045fb3eba27b40d1de258096038fc1c6b13dd71aa10a8bee28d071f
- languageName: node
- linkType: hard
-
-"sharp@npm:0.34.4":
- version: 0.34.4
- resolution: "sharp@npm:0.34.4"
- dependencies:
- "@img/colour": "npm:^1.0.0"
- "@img/sharp-darwin-arm64": "npm:0.34.4"
- "@img/sharp-darwin-x64": "npm:0.34.4"
- "@img/sharp-libvips-darwin-arm64": "npm:1.2.3"
- "@img/sharp-libvips-darwin-x64": "npm:1.2.3"
- "@img/sharp-libvips-linux-arm": "npm:1.2.3"
- "@img/sharp-libvips-linux-arm64": "npm:1.2.3"
- "@img/sharp-libvips-linux-ppc64": "npm:1.2.3"
- "@img/sharp-libvips-linux-s390x": "npm:1.2.3"
- "@img/sharp-libvips-linux-x64": "npm:1.2.3"
- "@img/sharp-libvips-linuxmusl-arm64": "npm:1.2.3"
- "@img/sharp-libvips-linuxmusl-x64": "npm:1.2.3"
- "@img/sharp-linux-arm": "npm:0.34.4"
- "@img/sharp-linux-arm64": "npm:0.34.4"
- "@img/sharp-linux-ppc64": "npm:0.34.4"
- "@img/sharp-linux-s390x": "npm:0.34.4"
- "@img/sharp-linux-x64": "npm:0.34.4"
- "@img/sharp-linuxmusl-arm64": "npm:0.34.4"
- "@img/sharp-linuxmusl-x64": "npm:0.34.4"
- "@img/sharp-wasm32": "npm:0.34.4"
- "@img/sharp-win32-arm64": "npm:0.34.4"
- "@img/sharp-win32-ia32": "npm:0.34.4"
- "@img/sharp-win32-x64": "npm:0.34.4"
- detect-libc: "npm:^2.1.0"
- semver: "npm:^7.7.2"
- dependenciesMeta:
- "@img/sharp-darwin-arm64":
- optional: true
- "@img/sharp-darwin-x64":
- optional: true
- "@img/sharp-libvips-darwin-arm64":
- optional: true
- "@img/sharp-libvips-darwin-x64":
- optional: true
- "@img/sharp-libvips-linux-arm":
- optional: true
- "@img/sharp-libvips-linux-arm64":
- optional: true
- "@img/sharp-libvips-linux-ppc64":
- optional: true
- "@img/sharp-libvips-linux-s390x":
- optional: true
- "@img/sharp-libvips-linux-x64":
- optional: true
- "@img/sharp-libvips-linuxmusl-arm64":
- optional: true
- "@img/sharp-libvips-linuxmusl-x64":
- optional: true
- "@img/sharp-linux-arm":
- optional: true
- "@img/sharp-linux-arm64":
- optional: true
- "@img/sharp-linux-ppc64":
- optional: true
- "@img/sharp-linux-s390x":
- optional: true
- "@img/sharp-linux-x64":
- optional: true
- "@img/sharp-linuxmusl-arm64":
- optional: true
- "@img/sharp-linuxmusl-x64":
- optional: true
- "@img/sharp-wasm32":
- optional: true
- "@img/sharp-win32-arm64":
- optional: true
- "@img/sharp-win32-ia32":
- optional: true
- "@img/sharp-win32-x64":
- optional: true
- checksum: 10/8e6268e3b0fba7704291684e63c2829963a5ec311d8a8ebbcd32d750c4efb0b01594d925d289ccb5ac0ac373df40fedf5a05a8f331470db799b9c78c48923cba
- languageName: node
- linkType: hard
-
-"sharp@npm:^0.33.2":
- version: 0.33.5
- resolution: "sharp@npm:0.33.5"
- dependencies:
- "@img/sharp-darwin-arm64": "npm:0.33.5"
- "@img/sharp-darwin-x64": "npm:0.33.5"
- "@img/sharp-libvips-darwin-arm64": "npm:1.0.4"
- "@img/sharp-libvips-darwin-x64": "npm:1.0.4"
- "@img/sharp-libvips-linux-arm": "npm:1.0.5"
- "@img/sharp-libvips-linux-arm64": "npm:1.0.4"
- "@img/sharp-libvips-linux-s390x": "npm:1.0.4"
- "@img/sharp-libvips-linux-x64": "npm:1.0.4"
- "@img/sharp-libvips-linuxmusl-arm64": "npm:1.0.4"
- "@img/sharp-libvips-linuxmusl-x64": "npm:1.0.4"
- "@img/sharp-linux-arm": "npm:0.33.5"
- "@img/sharp-linux-arm64": "npm:0.33.5"
- "@img/sharp-linux-s390x": "npm:0.33.5"
- "@img/sharp-linux-x64": "npm:0.33.5"
- "@img/sharp-linuxmusl-arm64": "npm:0.33.5"
- "@img/sharp-linuxmusl-x64": "npm:0.33.5"
- "@img/sharp-wasm32": "npm:0.33.5"
- "@img/sharp-win32-ia32": "npm:0.33.5"
- "@img/sharp-win32-x64": "npm:0.33.5"
- color: "npm:^4.2.3"
- detect-libc: "npm:^2.0.3"
- semver: "npm:^7.6.3"
- dependenciesMeta:
- "@img/sharp-darwin-arm64":
- optional: true
- "@img/sharp-darwin-x64":
- optional: true
- "@img/sharp-libvips-darwin-arm64":
- optional: true
- "@img/sharp-libvips-darwin-x64":
- optional: true
- "@img/sharp-libvips-linux-arm":
- optional: true
- "@img/sharp-libvips-linux-arm64":
- optional: true
- "@img/sharp-libvips-linux-s390x":
- optional: true
- "@img/sharp-libvips-linux-x64":
- optional: true
- "@img/sharp-libvips-linuxmusl-arm64":
- optional: true
- "@img/sharp-libvips-linuxmusl-x64":
- optional: true
- "@img/sharp-linux-arm":
- optional: true
- "@img/sharp-linux-arm64":
- optional: true
- "@img/sharp-linux-s390x":
- optional: true
- "@img/sharp-linux-x64":
- optional: true
- "@img/sharp-linuxmusl-arm64":
- optional: true
- "@img/sharp-linuxmusl-x64":
- optional: true
- "@img/sharp-wasm32":
- optional: true
- "@img/sharp-win32-ia32":
- optional: true
- "@img/sharp-win32-x64":
- optional: true
- checksum: 10/9f153578cb02735359cbcc874f52b56b8074ed997498c35255c7099d4f4f506f6ddf83a437a55242c7ad4f979336660504b6c78e29d6933f4981dedbdae5ce09
- languageName: node
- linkType: hard
-
-"sharp@npm:^0.34.3":
- version: 0.34.5
- resolution: "sharp@npm:0.34.5"
- dependencies:
- "@img/colour": "npm:^1.0.0"
- "@img/sharp-darwin-arm64": "npm:0.34.5"
- "@img/sharp-darwin-x64": "npm:0.34.5"
- "@img/sharp-libvips-darwin-arm64": "npm:1.2.4"
- "@img/sharp-libvips-darwin-x64": "npm:1.2.4"
- "@img/sharp-libvips-linux-arm": "npm:1.2.4"
- "@img/sharp-libvips-linux-arm64": "npm:1.2.4"
- "@img/sharp-libvips-linux-ppc64": "npm:1.2.4"
- "@img/sharp-libvips-linux-riscv64": "npm:1.2.4"
- "@img/sharp-libvips-linux-s390x": "npm:1.2.4"
- "@img/sharp-libvips-linux-x64": "npm:1.2.4"
- "@img/sharp-libvips-linuxmusl-arm64": "npm:1.2.4"
- "@img/sharp-libvips-linuxmusl-x64": "npm:1.2.4"
- "@img/sharp-linux-arm": "npm:0.34.5"
- "@img/sharp-linux-arm64": "npm:0.34.5"
- "@img/sharp-linux-ppc64": "npm:0.34.5"
- "@img/sharp-linux-riscv64": "npm:0.34.5"
- "@img/sharp-linux-s390x": "npm:0.34.5"
- "@img/sharp-linux-x64": "npm:0.34.5"
- "@img/sharp-linuxmusl-arm64": "npm:0.34.5"
- "@img/sharp-linuxmusl-x64": "npm:0.34.5"
- "@img/sharp-wasm32": "npm:0.34.5"
- "@img/sharp-win32-arm64": "npm:0.34.5"
- "@img/sharp-win32-ia32": "npm:0.34.5"
- "@img/sharp-win32-x64": "npm:0.34.5"
- detect-libc: "npm:^2.1.2"
- semver: "npm:^7.7.3"
- dependenciesMeta:
- "@img/sharp-darwin-arm64":
- optional: true
- "@img/sharp-darwin-x64":
- optional: true
- "@img/sharp-libvips-darwin-arm64":
- optional: true
- "@img/sharp-libvips-darwin-x64":
- optional: true
- "@img/sharp-libvips-linux-arm":
- optional: true
- "@img/sharp-libvips-linux-arm64":
- optional: true
- "@img/sharp-libvips-linux-ppc64":
- optional: true
- "@img/sharp-libvips-linux-riscv64":
- optional: true
- "@img/sharp-libvips-linux-s390x":
- optional: true
- "@img/sharp-libvips-linux-x64":
- optional: true
- "@img/sharp-libvips-linuxmusl-arm64":
- optional: true
- "@img/sharp-libvips-linuxmusl-x64":
- optional: true
- "@img/sharp-linux-arm":
- optional: true
- "@img/sharp-linux-arm64":
- optional: true
- "@img/sharp-linux-ppc64":
- optional: true
- "@img/sharp-linux-riscv64":
- optional: true
- "@img/sharp-linux-s390x":
- optional: true
- "@img/sharp-linux-x64":
- optional: true
- "@img/sharp-linuxmusl-arm64":
- optional: true
- "@img/sharp-linuxmusl-x64":
- optional: true
- "@img/sharp-wasm32":
- optional: true
- "@img/sharp-win32-arm64":
- optional: true
- "@img/sharp-win32-ia32":
- optional: true
- "@img/sharp-win32-x64":
- optional: true
- checksum: 10/d62bc638c8ad382dffc266beeaffab71457d592abeb6fdf95b512e6dcbce0abf47b8d903b4ea081f012ceb40e4462f1e219184c729329146df32a5ccec2c231f
- languageName: node
- linkType: hard
-
"shebang-command@npm:^1.2.0":
version: 1.2.0
resolution: "shebang-command@npm:1.2.0"
@@ -35552,18 +34004,6 @@ __metadata:
languageName: node
linkType: hard
-"socket.io-client@npm:4.8.1":
- version: 4.8.1
- resolution: "socket.io-client@npm:4.8.1"
- dependencies:
- "@socket.io/component-emitter": "npm:~3.1.0"
- debug: "npm:~4.3.2"
- engine.io-client: "npm:~6.6.1"
- socket.io-parser: "npm:~4.2.4"
- checksum: 10/7480cf1ab30eba371a96dd1ce2ce9018dcbeaf81035a066fb89d99df0d0a6388b05840c92d970317c739956b68b28b0f4833f3b18e460a24eef557b9bca127c1
- languageName: node
- linkType: hard
-
"socket.io-client@npm:^4.8.3":
version: 4.8.3
resolution: "socket.io-client@npm:4.8.3"
@@ -35644,16 +34084,6 @@ __metadata:
languageName: node
linkType: hard
-"sonner@npm:2.0.3":
- version: 2.0.3
- resolution: "sonner@npm:2.0.3"
- peerDependencies:
- react: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- checksum: 10/e7e4233c9ef96f2db4f5516a181d0b464104a6b8554ac36b403a53d14f21baddae48187ce48d22a7821eb1e3e9168f7df471405001652ab3abfcfe8930f7a6fa
- languageName: node
- linkType: hard
-
"sonner@npm:^2.0.7":
version: 2.0.7
resolution: "sonner@npm:2.0.7"
@@ -35664,7 +34094,7 @@ __metadata:
languageName: node
linkType: hard
-"source-map-js@npm:1.2.1, source-map-js@npm:^1.0.1, source-map-js@npm:^1.0.2, source-map-js@npm:^1.2.0, source-map-js@npm:^1.2.1":
+"source-map-js@npm:^1.0.1, source-map-js@npm:^1.0.2, source-map-js@npm:^1.2.0, source-map-js@npm:^1.2.1":
version: 1.2.1
resolution: "source-map-js@npm:1.2.1"
checksum: 10/ff9d8c8bf096d534a5b7707e0382ef827b4dd360a577d3f34d2b9f48e12c9d230b5747974ee7c607f0df65113732711bb701fe9ece3c7edbd43cb2294d707df3
@@ -35693,13 +34123,6 @@ __metadata:
languageName: node
linkType: hard
-"source-map@npm:0.5.6":
- version: 0.5.6
- resolution: "source-map@npm:0.5.6"
- checksum: 10/c62fe98e106c762307eea3a982242c1a76a31bc762da10fe2dda12252d423c163e0cd45d313330c8bd040cc5121702511138252308f72b8a9273825e81e4db30
- languageName: node
- linkType: hard
-
"source-map@npm:^0.5.7":
version: 0.5.7
resolution: "source-map@npm:0.5.7"
@@ -35728,13 +34151,6 @@ __metadata:
languageName: node
linkType: hard
-"spamc@npm:0.0.5":
- version: 0.0.5
- resolution: "spamc@npm:0.0.5"
- checksum: 10/297e89aae95ab9a706a811f32d28131ccebce008f409f78436ad6bb44c40c091ececf3a589fb29c3b382a05694795e03f60689bf77595c668d96930f93f27ff2
- languageName: node
- linkType: hard
-
"spdx-correct@npm:^3.0.0":
version: 3.2.0
resolution: "spdx-correct@npm:3.2.0"
@@ -35865,15 +34281,6 @@ __metadata:
languageName: node
linkType: hard
-"stack-generator@npm:^2.0.5":
- version: 2.0.10
- resolution: "stack-generator@npm:2.0.10"
- dependencies:
- stackframe: "npm:^1.3.4"
- checksum: 10/4fc3978a934424218a0aa9f398034e1f78153d5ff4f4ff9c62478c672debb47dd58de05b09fc3900530cbb526d72c93a6e6c9353bacc698e3b1c00ca3dda0c47
- languageName: node
- linkType: hard
-
"stack-trace@npm:0.0.x":
version: 0.0.10
resolution: "stack-trace@npm:0.0.10"
@@ -35897,43 +34304,6 @@ __metadata:
languageName: node
linkType: hard
-"stackframe@npm:^1.3.4":
- version: 1.3.4
- resolution: "stackframe@npm:1.3.4"
- checksum: 10/29ca71c1fd17974c1c178df0236b1407bc65f6ea389cc43dec000def6e42ff548d4453de9a85b76469e2ae2b2abdd802c6b6f3db947c05794efbd740d1cf4121
- languageName: node
- linkType: hard
-
-"stacktrace-gps@npm:^3.0.4":
- version: 3.1.2
- resolution: "stacktrace-gps@npm:3.1.2"
- dependencies:
- source-map: "npm:0.5.6"
- stackframe: "npm:^1.3.4"
- checksum: 10/21cb60ce0990f7a661e964cf4bdef1e70dda2286fb628fbd0fd1e69e8925138433d08ed84969de2d396b3b91515e15336a502f777c26587db89f3933d6f63f9b
- languageName: node
- linkType: hard
-
-"stacktrace-js@npm:^2.0.0":
- version: 2.0.2
- resolution: "stacktrace-js@npm:2.0.2"
- dependencies:
- error-stack-parser: "npm:^2.0.6"
- stack-generator: "npm:^2.0.5"
- stacktrace-gps: "npm:^3.0.4"
- checksum: 10/e5f60a09852687e4a9206927fe1078e24d63e00a71a2dcddd67940e9504a54931a3454439d5b4e3e0e62aeb979be810573e8d3332fbef0dbfa335a8781b4b57c
- languageName: node
- linkType: hard
-
-"stacktrace-parser@npm:0.1.11":
- version: 0.1.11
- resolution: "stacktrace-parser@npm:0.1.11"
- dependencies:
- type-fest: "npm:^0.7.1"
- checksum: 10/1120cf716606ec6a8e25cc9b6ada79d7b91e6a599bba1a6664e6badc8b5f37987d7df7d9ad0344f717a042781fd8e1e999de08614a5afea451b68902421036b5
- languageName: node
- linkType: hard
-
"standard-as-callback@npm:^2.1.0":
version: 2.1.0
resolution: "standard-as-callback@npm:2.1.0"
@@ -36278,22 +34648,6 @@ __metadata:
languageName: node
linkType: hard
-"styled-jsx@npm:5.1.6":
- version: 5.1.6
- resolution: "styled-jsx@npm:5.1.6"
- dependencies:
- client-only: "npm:0.0.1"
- peerDependencies:
- react: ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0"
- peerDependenciesMeta:
- "@babel/core":
- optional: true
- babel-plugin-macros:
- optional: true
- checksum: 10/ba01200e8227fe1441a719c2e7da96c8aa7ef61d14211d1500e1abce12efa118479bcb6e7e12beecb9e1db76432caad2f4e01bbc0c9be21c134b088a4ca5ffe0
- languageName: node
- linkType: hard
-
"stylehacks@npm:^7.0.5":
version: 7.0.5
resolution: "stylehacks@npm:7.0.5"
@@ -36335,24 +34689,6 @@ __metadata:
languageName: node
linkType: hard
-"sucrase@npm:^3.32.0":
- version: 3.35.1
- resolution: "sucrase@npm:3.35.1"
- dependencies:
- "@jridgewell/gen-mapping": "npm:^0.3.2"
- commander: "npm:^4.0.0"
- lines-and-columns: "npm:^1.1.6"
- mz: "npm:^2.7.0"
- pirates: "npm:^4.0.1"
- tinyglobby: "npm:^0.2.11"
- ts-interface-checker: "npm:^0.1.9"
- bin:
- sucrase: bin/sucrase
- sucrase-node: bin/sucrase-node
- checksum: 10/539f5c6ebc1ff8d449a89eb52b8c8944a730b9840ddadbd299a7d89ebcf16c3f4bc9aa59e1f2e112a502e5cf1508f7e02065f0e97c0435eb9a7058e997dfff5a
- languageName: node
- linkType: hard
-
"sumchecker@npm:^3.0.1":
version: 3.0.1
resolution: "sumchecker@npm:3.0.1"
@@ -36542,13 +34878,6 @@ __metadata:
languageName: node
linkType: hard
-"tailwind-merge@npm:3.2.0":
- version: 3.2.0
- resolution: "tailwind-merge@npm:3.2.0"
- checksum: 10/ece231b18bf27cb70847e236d987e254c152e0440dbeb59c08ddf157de79fe89d6b7d1127c75d753e868f31dd77ded38ce8d23a1e405ff735a6642407c671fb9
- languageName: node
- linkType: hard
-
"tailwind-merge@npm:^3.4.0":
version: 3.4.0
resolution: "tailwind-merge@npm:3.4.0"
@@ -36565,39 +34894,6 @@ __metadata:
languageName: node
linkType: hard
-"tailwindcss@npm:3.4.0":
- version: 3.4.0
- resolution: "tailwindcss@npm:3.4.0"
- dependencies:
- "@alloc/quick-lru": "npm:^5.2.0"
- arg: "npm:^5.0.2"
- chokidar: "npm:^3.5.3"
- didyoumean: "npm:^1.2.2"
- dlv: "npm:^1.1.3"
- fast-glob: "npm:^3.3.0"
- glob-parent: "npm:^6.0.2"
- is-glob: "npm:^4.0.3"
- jiti: "npm:^1.19.1"
- lilconfig: "npm:^2.1.0"
- micromatch: "npm:^4.0.5"
- normalize-path: "npm:^3.0.0"
- object-hash: "npm:^3.0.0"
- picocolors: "npm:^1.0.0"
- postcss: "npm:^8.4.23"
- postcss-import: "npm:^15.1.0"
- postcss-js: "npm:^4.0.1"
- postcss-load-config: "npm:^4.0.1"
- postcss-nested: "npm:^6.0.1"
- postcss-selector-parser: "npm:^6.0.11"
- resolve: "npm:^1.22.2"
- sucrase: "npm:^3.32.0"
- bin:
- tailwind: lib/cli.js
- tailwindcss: lib/cli.js
- checksum: 10/e69de4856308b3a6bcd084cc6745b6e3dcf6623553414f042d0365adceb70d79e41ec97a2a38c3aea0d5a875aa1eb4e84e04ad35ea1f0f7debcb7150779eae52
- languageName: node
- linkType: hard
-
"tailwindcss@npm:4.1.18":
version: 4.1.18
resolution: "tailwindcss@npm:4.1.18"
@@ -36612,7 +34908,7 @@ __metadata:
languageName: node
linkType: hard
-"tapable@npm:^2.0.0, tapable@npm:^2.2.0, tapable@npm:^2.2.1, tapable@npm:^2.3.0":
+"tapable@npm:^2.0.0, tapable@npm:^2.2.1, tapable@npm:^2.3.0":
version: 2.3.0
resolution: "tapable@npm:2.3.0"
checksum: 10/496a841039960533bb6e44816a01fffc2a1eb428bb2051ecab9e87adf07f19e1f937566cbbbb09dceff31163c0ffd81baafcad84db900b601f0155dd0b37e9f2
@@ -36743,24 +35039,6 @@ __metadata:
languageName: node
linkType: hard
-"thenify-all@npm:^1.0.0":
- version: 1.6.0
- resolution: "thenify-all@npm:1.6.0"
- dependencies:
- thenify: "npm:>= 3.1.0 < 4"
- checksum: 10/dba7cc8a23a154cdcb6acb7f51d61511c37a6b077ec5ab5da6e8b874272015937788402fd271fdfc5f187f8cb0948e38d0a42dcc89d554d731652ab458f5343e
- languageName: node
- linkType: hard
-
-"thenify@npm:>= 3.1.0 < 4":
- version: 3.3.1
- resolution: "thenify@npm:3.3.1"
- dependencies:
- any-promise: "npm:^1.0.0"
- checksum: 10/486e1283a867440a904e36741ff1a177faa827cf94d69506f7e3ae4187b9afdf9ec368b3d8da225c192bfe2eb943f3f0080594156bf39f21b57cd1411e2e7f6d
- languageName: node
- linkType: hard
-
"thingies@npm:^1.20.0":
version: 1.21.0
resolution: "thingies@npm:1.21.0"
@@ -36872,7 +35150,7 @@ __metadata:
languageName: node
linkType: hard
-"tinyglobby@npm:^0.2.11, tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.14, tinyglobby@npm:^0.2.15":
+"tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.14, tinyglobby@npm:^0.2.15":
version: 0.2.15
resolution: "tinyglobby@npm:0.2.15"
dependencies:
@@ -37128,13 +35406,6 @@ __metadata:
languageName: node
linkType: hard
-"ts-interface-checker@npm:^0.1.9":
- version: 0.1.13
- resolution: "ts-interface-checker@npm:0.1.13"
- checksum: 10/9f7346b9e25bade7a1050c001ec5a4f7023909c0e1644c5a96ae20703a131627f081479e6622a4ecee2177283d0069e651e507bedadd3904fc4010ab28ffce00
- languageName: node
- linkType: hard
-
"ts-log@npm:^2.2.3":
version: 2.2.7
resolution: "ts-log@npm:2.2.7"
@@ -37248,13 +35519,6 @@ __metadata:
languageName: node
linkType: hard
-"type-fest@npm:^0.7.1":
- version: 0.7.1
- resolution: "type-fest@npm:0.7.1"
- checksum: 10/0699b6011bb3f7fac5fd5385e2e09432cde08fa89283f24084f29db00ec69a5445cd3aa976438ec74fc552a9a96f4a04ed390b5cb62eb7483aa4b6e5b935e059
- languageName: node
- linkType: hard
-
"type-fest@npm:^1.0.2":
version: 1.4.0
resolution: "type-fest@npm:1.4.0"
@@ -37865,15 +36129,6 @@ __metadata:
languageName: node
linkType: hard
-"use-debounce@npm:10.0.4":
- version: 10.0.4
- resolution: "use-debounce@npm:10.0.4"
- peerDependencies:
- react: "*"
- checksum: 10/e193bbed307204b655abab545704ca608b23db10680f299f4b9b48b935a9fd68b68827c79de3bf5517010524bfa15709bf6b0ab1f915d6305b5d2ce27bf11ad7
- languageName: node
- linkType: hard
-
"use-sidecar@npm:^1.1.3":
version: 1.1.3
resolution: "use-sidecar@npm:1.1.3"
@@ -37993,13 +36248,6 @@ __metadata:
languageName: node
linkType: hard
-"valibot@npm:^0.13.1":
- version: 0.13.1
- resolution: "valibot@npm:0.13.1"
- checksum: 10/feaef6de3a18c24cf6bc0c8874d64b920cf906b0613569122163d298546e81df22233a364983899c81d0e04097f73bde6cbbfbfe135232a079da42c45e8ccae5
- languageName: node
- linkType: hard
-
"validate-npm-package-license@npm:^3.0.1":
version: 3.0.4
resolution: "validate-npm-package-license@npm:3.0.4"
@@ -38326,16 +36574,6 @@ __metadata:
languageName: node
linkType: hard
-"wasm-imagemagick@npm:^1.2.3":
- version: 1.2.8
- resolution: "wasm-imagemagick@npm:1.2.8"
- dependencies:
- p-map: "npm:^2.0.0"
- stacktrace-js: "npm:^2.0.0"
- checksum: 10/44d8e28c6b03168f017e816a71367804aee79c901ba6208db0f53faa8bac7b0c1b5b423d561674c6d4d853f97d1bfc79def61c80600cd328124b3a1a8e43fdba
- languageName: node
- linkType: hard
-
"watchpack@npm:^2.5.1":
version: 2.5.1
resolution: "watchpack@npm:2.5.1"
@@ -38491,7 +36729,7 @@ __metadata:
languageName: node
linkType: hard
-"webpack@npm:^5, webpack@npm:^5.102.1, webpack@npm:^5.69.1":
+"webpack@npm:^5.102.1, webpack@npm:^5.69.1":
version: 5.105.2
resolution: "webpack@npm:5.105.2"
dependencies:
@@ -38881,13 +37119,6 @@ __metadata:
languageName: node
linkType: hard
-"xstate@npm:^4.38.1":
- version: 4.38.3
- resolution: "xstate@npm:4.38.3"
- checksum: 10/82f30ed1d049d6be6274e54e34f46cad93fe773e4e333753acf363b8010f3685d256f154a91e5c1d615df654e14164dfc630c768af090925442b2c877cb9f11c
- languageName: node
- linkType: hard
-
"xtend@npm:^4.0.0, xtend@npm:^4.0.2":
version: 4.0.2
resolution: "xtend@npm:4.0.2"
@@ -38968,7 +37199,7 @@ __metadata:
languageName: node
linkType: hard
-"yaml@npm:^2.0.0, yaml@npm:^2.3.1, yaml@npm:^2.3.4, yaml@npm:^2.5.1, yaml@npm:^2.7.1, yaml@npm:^2.8.1":
+"yaml@npm:^2.0.0, yaml@npm:^2.3.1, yaml@npm:^2.5.1, yaml@npm:^2.7.1, yaml@npm:^2.8.1":
version: 2.8.2
resolution: "yaml@npm:2.8.2"
bin:
@@ -39095,13 +37326,6 @@ __metadata:
languageName: node
linkType: hard
-"zod@npm:3.24.3":
- version: 3.24.3
- resolution: "zod@npm:3.24.3"
- checksum: 10/1b15db625ca633324084f3a8587bfb907043bbca407a09f7d5da6a9781b3838c68e9312b49e91e479d2f8bf04cdda5810803ac9504e3b7ccbec3adf2de625fb8
- languageName: node
- linkType: hard
-
"zod@npm:^3.22.0, zod@npm:^3.24.2, zod@npm:^3.25.76":
version: 3.25.76
resolution: "zod@npm:3.25.76"