diff --git a/docs/.gitignore b/docs/.gitignore
new file mode 100644
index 0000000..d422c86
--- /dev/null
+++ b/docs/.gitignore
@@ -0,0 +1,10 @@
+.next/
+out/
+.vercel/
+*.tsbuildinfo
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+pnpm-debug.log*
+.env*
+!.env.example
diff --git a/docs/README.md b/docs/README.md
new file mode 100644
index 0000000..170405e
--- /dev/null
+++ b/docs/README.md
@@ -0,0 +1,22 @@
+# VniDrop website
+
+The product website for VniDrop, built with Next.js and exported as a static site.
+
+## Local development
+
+```bash
+npm install
+npm run dev
+```
+
+Open [http://localhost:3000](http://localhost:3000).
+
+## Checks
+
+```bash
+npm run lint
+npm run typecheck
+npm run build
+```
+
+The production build is written to `out/` and can be hosted by any static web server.
diff --git a/docs/app/base.css b/docs/app/base.css
new file mode 100644
index 0000000..f47fd3f
--- /dev/null
+++ b/docs/app/base.css
@@ -0,0 +1,325 @@
+:root {
+ --brand-700: #6f27e9;
+ --brand-600: #842fee;
+ --brand-500: #a855f7;
+ --brand-400: #c084fc;
+ --brand-300: #d8b4fe;
+ --brand-200: #ead4ff;
+ --brand-100: #f5eaff;
+ --ink: #171419;
+ --ink-soft: #4f4854;
+ --ink-muted: #786f7d;
+ --paper: #fbfafc;
+ --paper-warm: #f7f4f8;
+ --surface: #ffffff;
+ --surface-soft: #f3eff5;
+ --line: #e5dfe8;
+ --line-strong: #d4cad8;
+ --dark: #17131a;
+ --dark-raised: #211a25;
+ --dark-line: #362c3c;
+ --success: #24a66b;
+ --warning: #f59e0b;
+ --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
+ --font-display: "Avenir Next", Avenir, "Segoe UI", ui-sans-serif, sans-serif;
+ --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
+ --shadow-sm: 0 8px 30px rgba(41, 25, 48, 0.07);
+ --shadow-lg: 0 30px 90px rgba(49, 25, 60, 0.14);
+ --shell: 1220px;
+}
+
+* {
+ box-sizing: border-box;
+}
+
+html {
+ scroll-behavior: smooth;
+ scroll-padding-top: 92px;
+}
+
+body {
+ margin: 0;
+ overflow-x: hidden;
+ background: var(--paper);
+ color: var(--ink);
+ font-family: var(--font-sans);
+ font-size: 16px;
+ line-height: 1.6;
+ text-rendering: optimizeLegibility;
+ -webkit-font-smoothing: antialiased;
+}
+
+::selection {
+ background: var(--brand-300);
+ color: #28132f;
+}
+
+a {
+ color: inherit;
+ text-decoration: none;
+}
+
+button,
+input,
+textarea,
+select {
+ font: inherit;
+}
+
+button,
+a {
+ -webkit-tap-highlight-color: transparent;
+}
+
+button {
+ color: inherit;
+}
+
+svg {
+ display: block;
+}
+
+h1,
+h2,
+h3,
+p {
+ margin-top: 0;
+}
+
+h1,
+h2,
+h3 {
+ font-family: var(--font-display);
+ text-wrap: balance;
+}
+
+p {
+ text-wrap: pretty;
+}
+
+:focus-visible {
+ outline: 3px solid rgba(168, 85, 247, 0.55);
+ outline-offset: 3px;
+}
+
+.page-shell {
+ width: min(calc(100% - 48px), var(--shell));
+ margin-inline: auto;
+}
+
+.sr-only {
+ position: absolute;
+ width: 1px;
+ height: 1px;
+ padding: 0;
+ margin: -1px;
+ overflow: hidden;
+ clip: rect(0, 0, 0, 0);
+ white-space: nowrap;
+ border: 0;
+}
+
+.skip-link {
+ position: fixed;
+ z-index: 1000;
+ top: 12px;
+ left: 12px;
+ transform: translateY(-140%);
+ padding: 10px 16px;
+ border-radius: 10px;
+ background: var(--ink);
+ color: white;
+ font-weight: 700;
+ transition: transform 180ms ease;
+}
+
+.skip-link:focus {
+ transform: translateY(0);
+}
+
+.site-header {
+ position: fixed;
+ z-index: 100;
+ top: 16px;
+ right: 0;
+ left: 0;
+ width: min(calc(100% - 32px), 1260px);
+ margin-inline: auto;
+ border: 1px solid rgba(220, 212, 224, 0.82);
+ border-radius: 18px;
+ background: rgba(251, 250, 252, 0.82);
+ box-shadow: 0 12px 40px rgba(42, 26, 49, 0.08);
+ backdrop-filter: blur(20px) saturate(1.4);
+ -webkit-backdrop-filter: blur(20px) saturate(1.4);
+}
+
+.header-inner {
+ display: grid;
+ grid-template-columns: 1fr auto 1fr;
+ align-items: center;
+ height: 64px;
+ padding: 0 10px 0 17px;
+}
+
+.brand {
+ display: inline-flex;
+ align-items: center;
+ gap: 10px;
+ width: max-content;
+ font-family: var(--font-display);
+ font-size: 19px;
+ font-weight: 750;
+ letter-spacing: -0.04em;
+}
+
+.brand-mark-shell {
+ display: grid;
+ width: 38px;
+ height: 38px;
+ place-items: center;
+ border: 1px solid #eadcf1;
+ border-radius: 11px;
+ background: white;
+ box-shadow: 0 5px 15px rgba(105, 42, 145, 0.08);
+}
+
+.brand-mark-shell svg {
+ width: 27px;
+ height: 27px;
+}
+
+.brand-name {
+ transform: translateY(-1px);
+}
+
+.desktop-nav {
+ display: flex;
+ align-items: center;
+ gap: 3px;
+ padding: 4px;
+ border-radius: 13px;
+ background: rgba(239, 235, 241, 0.7);
+}
+
+.desktop-nav a {
+ padding: 7px 14px;
+ border-radius: 10px;
+ color: var(--ink-soft);
+ font-size: 13px;
+ font-weight: 650;
+ transition: background 160ms ease, color 160ms ease;
+}
+
+.desktop-nav a:hover {
+ background: white;
+ color: var(--ink);
+}
+
+.header-github {
+ justify-self: end;
+}
+
+.menu-button {
+ display: none;
+ width: 42px;
+ height: 42px;
+ place-items: center;
+ border: 0;
+ border-radius: 11px;
+ background: var(--surface-soft);
+ cursor: pointer;
+}
+
+.menu-button svg {
+ width: 21px;
+}
+
+.mobile-nav {
+ display: none;
+}
+
+.button {
+ display: inline-flex;
+ min-height: 52px;
+ align-items: center;
+ justify-content: center;
+ gap: 10px;
+ padding: 0 21px;
+ border: 1px solid transparent;
+ border-radius: 14px;
+ font-size: 14px;
+ font-weight: 730;
+ line-height: 1;
+ cursor: pointer;
+ transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease,
+ border-color 180ms ease;
+}
+
+.button:hover {
+ transform: translateY(-2px);
+}
+
+.button svg {
+ width: 18px;
+ height: 18px;
+}
+
+.button-small {
+ min-height: 44px;
+ padding-inline: 16px;
+ border-radius: 11px;
+ font-size: 13px;
+}
+
+.button-primary {
+ background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
+ box-shadow: 0 12px 28px rgba(132, 47, 238, 0.24), inset 0 1px rgba(255, 255, 255, 0.35);
+ color: white;
+}
+
+.button-primary:hover {
+ box-shadow: 0 16px 34px rgba(132, 47, 238, 0.3), inset 0 1px rgba(255, 255, 255, 0.35);
+}
+
+.button-ghost {
+ border-color: var(--line);
+ background: rgba(255, 255, 255, 0.72);
+ color: var(--ink);
+}
+
+.button-ghost:hover {
+ border-color: var(--line-strong);
+ background: white;
+ box-shadow: var(--shadow-sm);
+}
+
+.button-dark {
+ background: var(--ink);
+ color: white;
+}
+
+.button-light {
+ background: white;
+ color: #211925;
+ box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
+}
+
+.button-dark-ghost {
+ border-color: rgba(255, 255, 255, 0.2);
+ background: rgba(255, 255, 255, 0.06);
+ color: white;
+}
+
+.motion-ready .reveal {
+ opacity: 0;
+ transform: translateY(28px);
+ transition: opacity 700ms cubic-bezier(0.2, 0.75, 0.25, 1),
+ transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
+ transition-delay: var(--reveal-delay, 0ms);
+}
+
+.motion-ready .reveal.is-visible {
+ opacity: 1;
+ transform: translateY(0);
+}
+
diff --git a/docs/app/footer.css b/docs/app/footer.css
new file mode 100644
index 0000000..e52838a
--- /dev/null
+++ b/docs/app/footer.css
@@ -0,0 +1,103 @@
+.site-footer {
+ padding-top: 75px;
+ background: var(--paper);
+}
+
+.footer-main {
+ display: grid;
+ grid-template-columns: 1fr auto;
+ gap: 60px;
+ padding-bottom: 70px;
+}
+
+.footer-brand {
+ display: flex;
+ align-items: flex-start;
+ gap: 15px;
+}
+
+.footer-mark {
+ display: grid;
+ width: 48px;
+ height: 48px;
+ flex: 0 0 auto;
+ place-items: center;
+ border: 1px solid var(--line);
+ border-radius: 14px;
+ background: white;
+}
+
+.footer-mark svg {
+ width: 32px;
+ height: 32px;
+}
+
+.footer-brand p {
+ margin-bottom: 0;
+ color: var(--ink-muted);
+ font-size: 13px;
+}
+
+.footer-brand .footer-name {
+ margin-bottom: 3px;
+ color: var(--ink);
+ font-family: var(--font-display);
+ font-size: 21px;
+ font-weight: 750;
+ letter-spacing: -0.04em;
+}
+
+.footer-links {
+ display: grid;
+ grid-template-columns: repeat(2, minmax(140px, 1fr));
+ gap: 70px;
+}
+
+.footer-links > div {
+ display: flex;
+ flex-direction: column;
+ gap: 9px;
+}
+
+.footer-links .footer-label {
+ margin-bottom: 7px;
+ color: var(--ink-muted);
+ font-family: var(--font-mono);
+ font-size: 10px;
+ font-weight: 800;
+ letter-spacing: 0.1em;
+ text-transform: uppercase;
+}
+
+.footer-links a {
+ display: inline-flex;
+ align-items: center;
+ gap: 6px;
+ color: var(--ink-soft);
+ font-size: 13px;
+ font-weight: 600;
+}
+
+.footer-links a:hover {
+ color: var(--brand-600);
+}
+
+.footer-links svg {
+ width: 13px;
+}
+
+.footer-bottom {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ padding-top: 22px;
+ padding-bottom: 28px;
+ border-top: 1px solid var(--line);
+ color: var(--ink-muted);
+ font-size: 11px;
+}
+
+.footer-bottom p {
+ margin: 0;
+}
+
diff --git a/docs/app/home.css b/docs/app/home.css
new file mode 100644
index 0000000..55d1bea
--- /dev/null
+++ b/docs/app/home.css
@@ -0,0 +1,701 @@
+.hero-section {
+ position: relative;
+ min-height: 850px;
+ overflow: hidden;
+ padding: 150px 0 86px;
+ background:
+ radial-gradient(circle at 82% 18%, rgba(211, 165, 255, 0.24), transparent 28%),
+ radial-gradient(circle at 12% 76%, rgba(184, 108, 255, 0.12), transparent 25%),
+ linear-gradient(180deg, #fdfcfe 0%, #faf7fb 100%);
+}
+
+.hero-section::before {
+ position: absolute;
+ inset: 0;
+ background-image: radial-gradient(rgba(93, 71, 102, 0.1) 0.7px, transparent 0.7px);
+ background-size: 19px 19px;
+ content: "";
+ mask-image: linear-gradient(to bottom, black, transparent 82%);
+ opacity: 0.38;
+}
+
+.hero-ambient {
+ position: absolute;
+ border: 1px solid rgba(168, 85, 247, 0.18);
+ border-radius: 999px;
+ pointer-events: none;
+}
+
+.hero-ambient-one {
+ top: 120px;
+ right: -80px;
+ width: 420px;
+ height: 420px;
+ animation: ambient-drift 15s ease-in-out infinite alternate;
+}
+
+.hero-ambient-two {
+ bottom: -190px;
+ left: -120px;
+ width: 400px;
+ height: 400px;
+ animation: ambient-drift 18s ease-in-out -5s infinite alternate-reverse;
+}
+
+.hero-layout {
+ position: relative;
+ z-index: 1;
+ display: grid;
+ grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
+ align-items: center;
+ gap: 30px;
+}
+
+.hero-copy {
+ position: relative;
+ z-index: 3;
+ padding-top: 12px;
+}
+
+.eyebrow-badge {
+ display: inline-flex;
+ align-items: center;
+ gap: 9px;
+ margin-bottom: 25px;
+ padding: 7px 11px;
+ border: 1px solid #dfd4e4;
+ border-radius: 999px;
+ background: rgba(255, 255, 255, 0.72);
+ color: #665c6b;
+ font-family: var(--font-mono);
+ font-size: 10px;
+ font-weight: 700;
+ letter-spacing: 0.08em;
+}
+
+.eyebrow-dot {
+ width: 7px;
+ height: 7px;
+ border-radius: 50%;
+ background: var(--warning);
+ box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.13);
+}
+
+.hero-copy h1 {
+ margin-bottom: 28px;
+ font-size: clamp(3.5rem, 5.1vw, 5.4rem);
+ font-weight: 760;
+ letter-spacing: -0.072em;
+ line-height: 0.98;
+}
+
+.hero-copy h1 span {
+ background: linear-gradient(100deg, var(--brand-600), #ba62f8 58%, #7c2aef);
+ background-clip: text;
+ -webkit-background-clip: text;
+ color: transparent;
+}
+
+.hero-lead {
+ max-width: 610px;
+ margin-bottom: 30px;
+ color: var(--ink-soft);
+ font-size: 18px;
+ line-height: 1.7;
+}
+
+.hero-actions {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 11px;
+}
+
+.hero-platforms {
+ display: flex;
+ flex-wrap: wrap;
+ align-items: center;
+ gap: 14px;
+ margin-top: 35px;
+ color: var(--ink-muted);
+ font-size: 12px;
+}
+
+.hero-platforms > span {
+ font-family: var(--font-mono);
+ font-size: 10px;
+ font-weight: 700;
+ letter-spacing: 0.08em;
+ text-transform: uppercase;
+}
+
+.hero-platforms ul {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 7px;
+ margin: 0;
+ padding: 0;
+ list-style: none;
+}
+
+.hero-platforms li {
+ padding: 4px 8px;
+ border: 1px solid var(--line);
+ border-radius: 7px;
+ background: rgba(255, 255, 255, 0.65);
+}
+
+.hero-art-reveal {
+ min-width: 0;
+}
+
+.trust-section {
+ position: relative;
+ z-index: 3;
+ margin-top: -32px;
+}
+
+.trust-grid {
+ display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ overflow: hidden;
+ border: 1px solid var(--line);
+ border-radius: 23px;
+ background: rgba(255, 255, 255, 0.94);
+ box-shadow: var(--shadow-lg);
+ backdrop-filter: blur(12px);
+}
+
+.trust-item {
+ display: flex;
+ min-height: 124px;
+ align-items: center;
+ gap: 19px;
+ padding: 24px 28px;
+}
+
+.trust-item + .trust-item {
+ border-left: 1px solid var(--line);
+}
+
+.trust-number {
+ color: var(--brand-500);
+ font-family: var(--font-mono);
+ font-size: 11px;
+ font-weight: 800;
+}
+
+.trust-item strong {
+ display: block;
+ margin-bottom: 3px;
+ font-family: var(--font-display);
+ font-size: 18px;
+ letter-spacing: -0.025em;
+}
+
+.trust-item p {
+ margin: 0;
+ color: var(--ink-muted);
+ font-size: 13px;
+ line-height: 1.45;
+}
+
+.word-stream {
+ overflow: hidden;
+ padding: 92px 0 28px;
+ color: #ebe5ee;
+ font-family: var(--font-display);
+ font-size: clamp(3.5rem, 7vw, 7.6rem);
+ font-weight: 800;
+ letter-spacing: -0.055em;
+ line-height: 1;
+ white-space: nowrap;
+}
+
+.word-stream > div {
+ display: flex;
+ width: max-content;
+ align-items: center;
+ gap: 35px;
+ animation: word-stream 36s linear infinite;
+}
+
+.word-stream i {
+ color: var(--brand-300);
+ font-size: 0.18em;
+ font-style: normal;
+}
+
+.section {
+ position: relative;
+ padding: 132px 0;
+}
+
+.section-heading {
+ margin-bottom: 64px;
+}
+
+.section-heading h2,
+.privacy-intro h2,
+.network-copy h2,
+.platforms-copy h2,
+.final-cta h2,
+.approval-copy h2 {
+ margin-bottom: 20px;
+ font-size: clamp(2.7rem, 4.4vw, 4.8rem);
+ font-weight: 740;
+ letter-spacing: -0.06em;
+ line-height: 1.02;
+}
+
+.section-heading p,
+.section-lead {
+ color: var(--ink-soft);
+ font-size: 17px;
+ line-height: 1.72;
+}
+
+.section-heading-centered {
+ max-width: 810px;
+ margin-right: auto;
+ margin-left: auto;
+ text-align: center;
+}
+
+.section-heading-centered p {
+ max-width: 620px;
+ margin-right: auto;
+ margin-bottom: 0;
+ margin-left: auto;
+}
+
+.section-heading-split {
+ display: grid;
+ grid-template-columns: 1.1fr 0.72fr;
+ align-items: end;
+ gap: 90px;
+}
+
+.section-heading-split h2 {
+ margin-bottom: 0;
+}
+
+.section-heading-split p {
+ margin-bottom: 6px;
+}
+
+.kicker {
+ display: inline-block;
+ margin-bottom: 18px;
+ color: var(--brand-600);
+ font-family: var(--font-mono);
+ font-size: 11px;
+ font-weight: 800;
+ letter-spacing: 0.13em;
+}
+
+.kicker-light {
+ color: #d89bff;
+}
+
+.flow-section {
+ padding-top: 105px;
+}
+
+.invitation-section {
+ overflow: hidden;
+ background: var(--paper-warm);
+}
+
+.approval-section {
+ padding: 150px 0;
+}
+
+.approval-layout {
+ display: grid;
+ grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
+ align-items: center;
+ gap: 100px;
+}
+
+.approval-copy h2 {
+ max-width: 620px;
+}
+
+.approval-copy .section-lead {
+ max-width: 570px;
+ margin-bottom: 27px;
+}
+
+.check-list {
+ display: grid;
+ gap: 13px;
+ margin: 0 0 25px;
+ padding: 0;
+ list-style: none;
+}
+
+.check-list li {
+ display: flex;
+ align-items: center;
+ gap: 11px;
+ color: #3c3540;
+ font-size: 14px;
+ font-weight: 600;
+}
+
+.check-list svg {
+ width: 20px;
+ height: 20px;
+ padding: 4px;
+ border-radius: 50%;
+ background: var(--brand-100);
+ color: var(--brand-600);
+ stroke-width: 2.5;
+}
+
+.approval-note {
+ max-width: 555px;
+ margin: 0;
+ padding: 15px 17px;
+ border: 1px solid #eadff0;
+ border-radius: 12px;
+ background: #faf7fb;
+ color: var(--ink-muted);
+ font-size: 12px;
+ line-height: 1.55;
+}
+
+.approval-demo-wrap {
+ position: relative;
+}
+
+.demo-hint {
+ position: absolute;
+ right: 22px;
+ bottom: -45px;
+ display: inline-flex;
+ align-items: center;
+ gap: 7px;
+ color: var(--brand-600);
+ font-family: var(--font-mono);
+ font-size: 10px;
+ font-weight: 800;
+ letter-spacing: 0.07em;
+ transform: rotate(-2deg);
+}
+
+.demo-hint svg {
+ width: 15px;
+}
+
+.privacy-principles-section {
+ position: relative;
+ overflow: hidden;
+ padding: 145px 0 135px;
+ background:
+ radial-gradient(circle at 90% 8%, rgba(168, 85, 247, 0.18), transparent 25%),
+ radial-gradient(circle at 5% 90%, rgba(124, 42, 239, 0.12), transparent 25%),
+ var(--dark);
+ color: white;
+}
+
+.privacy-principles-section::after {
+ position: absolute;
+ inset: 0;
+ background-image: radial-gradient(rgba(255, 255, 255, 0.12) 0.7px, transparent 0.7px);
+ background-size: 22px 22px;
+ content: "";
+ opacity: 0.13;
+ pointer-events: none;
+}
+
+.privacy-principles-section .page-shell {
+ position: relative;
+ z-index: 1;
+}
+
+.privacy-intro {
+ max-width: 890px;
+ margin-bottom: 65px;
+}
+
+.privacy-intro h2 {
+ max-width: 840px;
+}
+
+.privacy-intro > p {
+ max-width: 700px;
+ margin-bottom: 0;
+ color: #bdb4c2;
+ font-size: 18px;
+ line-height: 1.72;
+}
+
+.privacy-point-grid {
+ display: grid;
+ grid-template-columns: repeat(4, 1fr);
+ gap: 12px;
+}
+
+.privacy-point {
+ min-height: 275px;
+ padding: 24px;
+ border: 1px solid var(--dark-line);
+ border-radius: 20px;
+ background: rgba(255, 255, 255, 0.035);
+ transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
+}
+
+.privacy-point:hover {
+ transform: translateY(-5px);
+ border-color: rgba(192, 132, 252, 0.45);
+ background: rgba(255, 255, 255, 0.055);
+}
+
+.privacy-point-top {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ margin-bottom: 43px;
+}
+
+.privacy-point-top > span {
+ display: grid;
+ width: 44px;
+ height: 44px;
+ place-items: center;
+ border: 1px solid rgba(192, 132, 252, 0.28);
+ border-radius: 12px;
+ background: rgba(168, 85, 247, 0.1);
+ color: var(--brand-400);
+}
+
+.privacy-point-top svg {
+ width: 22px;
+}
+
+.privacy-point-top small {
+ color: #706775;
+ font-family: var(--font-mono);
+ font-size: 10px;
+}
+
+.privacy-point h3 {
+ margin-bottom: 10px;
+ font-size: 19px;
+ letter-spacing: -0.025em;
+}
+
+.privacy-point p {
+ margin-bottom: 0;
+ color: #a99fac;
+ font-size: 13px;
+ line-height: 1.65;
+}
+
+.privacy-policy-link {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ gap: 30px;
+ margin-top: 38px;
+ padding-top: 27px;
+ border-top: 1px solid var(--dark-line);
+}
+
+.privacy-policy-link p {
+ margin: 0;
+ color: #a99fac;
+ font-size: 13px;
+}
+
+.privacy-policy-link a {
+ display: inline-flex;
+ align-items: center;
+ gap: 10px;
+ color: #dca7ff;
+ font-size: 14px;
+ font-weight: 750;
+}
+
+.privacy-policy-link svg {
+ width: 18px;
+ transition: transform 180ms ease;
+}
+
+.privacy-policy-link a:hover svg {
+ transform: translateX(4px);
+}
+
+.network-section {
+ padding: 150px 0;
+ background: #0f0c11;
+ color: white;
+}
+
+.network-layout {
+ display: grid;
+ grid-template-columns: minmax(0, 0.78fr) minmax(580px, 1.22fr);
+ align-items: center;
+ gap: 75px;
+}
+
+.network-copy h2 {
+ font-size: clamp(2.6rem, 4vw, 4.2rem);
+}
+
+.network-copy > p {
+ margin-bottom: 35px;
+ color: #aaa0ae;
+ font-size: 16px;
+ line-height: 1.75;
+}
+
+.network-copy blockquote {
+ position: relative;
+ margin: 0;
+ padding: 20px 0 20px 25px;
+ border-left: 2px solid var(--brand-500);
+ color: #f0e9f3;
+ font-family: var(--font-display);
+ font-size: 20px;
+ font-weight: 630;
+ line-height: 1.45;
+}
+
+.network-copy blockquote span {
+ position: absolute;
+ top: -14px;
+ left: 12px;
+ color: var(--brand-500);
+ font-family: Georgia, serif;
+ font-size: 44px;
+ opacity: 0.55;
+}
+
+.platforms-section {
+ overflow: hidden;
+ padding: 155px 0;
+}
+
+.platforms-layout {
+ display: grid;
+ grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
+ align-items: center;
+ gap: 75px;
+}
+
+.platforms-copy .section-lead {
+ max-width: 570px;
+ margin-bottom: 29px;
+}
+
+.platform-feature-list {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 8px;
+}
+
+.platform-feature-list span {
+ display: inline-flex;
+ align-items: center;
+ gap: 8px;
+ padding: 8px 11px;
+ border: 1px solid var(--line);
+ border-radius: 9px;
+ background: white;
+ color: var(--ink-soft);
+ font-size: 12px;
+ font-weight: 620;
+}
+
+.platform-feature-list svg {
+ width: 16px;
+ color: var(--brand-600);
+}
+
+.orbit-wrap {
+ min-width: 0;
+}
+
+.final-cta-section {
+ padding: 0 0 40px;
+}
+
+.final-cta {
+ position: relative;
+ overflow: hidden;
+ padding: 100px 50px;
+ border-radius: 31px;
+ background:
+ linear-gradient(125deg, rgba(255, 255, 255, 0.06), transparent 40%),
+ linear-gradient(135deg, #25172f, #171019 55%, #28143a);
+ color: white;
+ text-align: center;
+}
+
+.final-cta::after {
+ position: absolute;
+ inset: 0;
+ border: 1px solid rgba(255, 255, 255, 0.1);
+ border-radius: inherit;
+ content: "";
+ pointer-events: none;
+}
+
+.final-cta h2 {
+ position: relative;
+ z-index: 1;
+ max-width: 850px;
+ margin-right: auto;
+ margin-left: auto;
+ font-size: clamp(2.8rem, 5vw, 5.4rem);
+}
+
+.final-cta > p {
+ position: relative;
+ z-index: 1;
+ max-width: 600px;
+ margin: 0 auto 31px;
+ color: #bfb4c4;
+ font-size: 16px;
+}
+
+.final-cta > .kicker {
+ position: relative;
+ z-index: 1;
+}
+
+.final-cta-actions {
+ position: relative;
+ z-index: 1;
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: center;
+ gap: 10px;
+}
+
+.final-cta-orb {
+ position: absolute;
+ border-radius: 50%;
+ background: var(--brand-500);
+ filter: blur(90px);
+ opacity: 0.18;
+}
+
+.final-cta-orb-one {
+ top: -140px;
+ left: -70px;
+ width: 380px;
+ height: 380px;
+ animation: cta-orb 12s ease-in-out infinite alternate;
+}
+
+.final-cta-orb-two {
+ right: -80px;
+ bottom: -200px;
+ width: 430px;
+ height: 430px;
+ animation: cta-orb 15s ease-in-out -4s infinite alternate-reverse;
+}
+
diff --git a/docs/app/icon.svg b/docs/app/icon.svg
new file mode 100644
index 0000000..eaf36b9
--- /dev/null
+++ b/docs/app/icon.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/app/layout.tsx b/docs/app/layout.tsx
new file mode 100644
index 0000000..1ce3158
--- /dev/null
+++ b/docs/app/layout.tsx
@@ -0,0 +1,71 @@
+import type { Metadata, Viewport } from "next";
+import type { ReactNode } from "react";
+import { SiteFooter } from "@/components/site-footer";
+import { SiteHeader } from "@/components/site-header";
+import "./base.css";
+import "./home.css";
+import "./footer.css";
+import "./privacy/privacy-document.css";
+import "../components/hero-scene.css";
+import "../components/transfer-flow.css";
+import "../components/invitation-scene.css";
+import "../components/approval-scene.css";
+import "../components/network-scene.css";
+import "../components/platform-scene.css";
+import "./responsive.css";
+import "./privacy/privacy-responsive.css";
+import "../components/illustration-motion.css";
+
+export const metadata: Metadata = {
+ title: {
+ default: "VniDrop — Direct file transfer, on your terms",
+ template: "%s · VniDrop",
+ },
+ description:
+ "Send files and folders directly across Android, iOS, macOS, Windows, and Linux—with approval by default and no hosted transfer copy.",
+ applicationName: "VniDrop",
+ manifest: "/site.webmanifest",
+ keywords: [
+ "peer-to-peer file transfer",
+ "encrypted file sharing",
+ "cross-platform file transfer",
+ "open source",
+ ],
+ openGraph: {
+ type: "website",
+ siteName: "VniDrop",
+ title: "VniDrop — Direct file transfer, on your terms",
+ description:
+ "Move files from your device to theirs, with no account and no hosted transfer copy.",
+ },
+ twitter: {
+ card: "summary",
+ title: "VniDrop — Direct file transfer, on your terms",
+ description:
+ "Move files from your device to theirs, with no account and no hosted transfer copy.",
+ },
+};
+
+export const viewport: Viewport = {
+ width: "device-width",
+ initialScale: 1,
+ themeColor: [
+ { media: "(prefers-color-scheme: light)", color: "#fbfafc" },
+ { media: "(prefers-color-scheme: dark)", color: "#17131a" },
+ ],
+};
+
+export default function RootLayout({ children }: Readonly<{ children: ReactNode }>) {
+ return (
+
+
+
+ Skip to content
+
+
+ {children}
+
+
+
+ );
+}
diff --git a/docs/app/page.tsx b/docs/app/page.tsx
new file mode 100644
index 0000000..98d936b
--- /dev/null
+++ b/docs/app/page.tsx
@@ -0,0 +1,292 @@
+import Link from "next/link";
+import { ApprovalDemo } from "@/components/approval-demo";
+import { HeroIllustration } from "@/components/hero-illustration";
+import { Icon, type IconName } from "@/components/icons";
+import { InvitationShowcase } from "@/components/invitation-showcase";
+import { NetworkIllustration } from "@/components/network-illustration";
+import { PlatformOrbit } from "@/components/platform-orbit";
+import { Reveal } from "@/components/reveal";
+import { TransferFlow } from "@/components/transfer-flow";
+
+const trustItems = [
+ { value: "No account", detail: "Open the app and start sharing" },
+ { value: "No hosted copy", detail: "Your transfer is not parked in our cloud" },
+ { value: "No silent overwrite", detail: "Existing files stay untouched" },
+];
+
+const privacyPoints: Array<{
+ icon: IconName;
+ number: string;
+ title: string;
+ text: string;
+}> = [
+ {
+ icon: "lock",
+ number: "01",
+ title: "Encrypted in transit",
+ text: "Each connection is authenticated and end-to-end encrypted, including through a relay.",
+ },
+ {
+ icon: "shield",
+ number: "02",
+ title: "Approval by default",
+ text: "An invitation helps devices meet. It is not automatic permission to download.",
+ },
+ {
+ icon: "verified",
+ number: "03",
+ title: "Verified on arrival",
+ text: "Content addressing checks that incoming bytes match exactly what was offered.",
+ },
+ {
+ icon: "stop",
+ number: "04",
+ title: "Revocable access",
+ text: "Stop a share at any time and the invitation can no longer be used.",
+ },
+];
+
+export default function HomePage() {
+ return (
+
+
+
+
+
+
+
+
+
+ OPEN SOURCE · EARLY DEVELOPMENT
+
+
+ Your files.
+
+ A straight line
+
+ between devices.
+
+
+ Send files and folders directly when possible, with an end-to-end encrypted relay
+ when needed. No account. No hosted transfer copy. You decide who receives them.
+
+
+
+
Available across
+
+ Android
+ iOS
+ macOS
+ Windows
+ Linux
+
+
+
+
+
+
+
+
+
+
+
+
+ {trustItems.map((item, index) => (
+
+ 0{index + 1}
+
+
{item.value}
+
{item.detail}
+
+
+ ))}
+
+
+
+
+
+ FILES ◆ FOLDERS ◆ PHOTOS ◆
+ PROJECTS ◆ FILES ◆ FOLDERS ◆
+ PHOTOS ◆ PROJECTS ◆
+
+
+
+
+
+
+ ONE DROP, FIVE MOMENTS
+ A handoff that stays in your hands.
+
+ VniDrop keeps the transfer understandable from first selection to final verified file.
+
+
+
+
+
+
+
+
+
+
+
+
+ MAKE THE INTRODUCTION
+
One transfer. Three ways to meet.
+
+
+ The invitation is small enough to scan, tap, or send. Your files stay where they are
+ until a receiver connects and you allow the transfer.
+
+
+
+
+
+
+
+
+
+
+
+ CONTROL IS BUILT IN
+ A link is not permission.
+
+ Every new receiver knocks by default. Approve people you recognize, refuse the rest,
+ and follow progress for each device.
+
+
+ See the receiver before anything moves
+ Cancel a transfer already in progress
+ Stop sharing to revoke future access
+
+
+ Need an open handoff? An optional “Anyone with this transfer” mode is available for
+ non-sensitive files.
+
+
+
+
+ Try the controls
+
+
+
+
+
+
+
+ PRIVACY BY DESIGN
+ The file never becomes our file.
+
+ VniDrop coordinates a secure handoff. It does not turn your transfer into a hosted
+ download sitting on someone else’s storage.
+
+
+
+ {privacyPoints.map((point, index) => (
+
+
+
+ {point.number}
+
+ {point.title}
+ {point.text}
+
+ ))}
+
+
+ Diagnostics are optional and exclude invitations, file paths, and transfer contents.
+
+ Read the full privacy policy
+
+
+
+
+
+
+
+
+
+ DIRECT WHEN POSSIBLE
+ The shortest safe path, chosen automatically.
+
+ VniDrop tries to connect devices directly—even across home routers and mobile
+ networks. If that path is not available, a relay forwards the same encrypted
+ connection without becoming a file store.
+
+
+ “
+ The relay can move the envelope. It cannot open it.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ OPEN SOURCE · APACHE 2.0
+ Drop the cloud holding pen. Keep the control.
+
+ VniDrop is in early development. Explore the code, build the app, and help shape a
+ more direct way to share.
+
+
+
+
+
+
+ );
+}
diff --git a/docs/app/privacy/page.tsx b/docs/app/privacy/page.tsx
new file mode 100644
index 0000000..298a4d3
--- /dev/null
+++ b/docs/app/privacy/page.tsx
@@ -0,0 +1,381 @@
+import type { Metadata } from "next";
+import Link from "next/link";
+import { BrandMark } from "@/components/brand";
+import { Icon, type IconName } from "@/components/icons";
+import { Reveal } from "@/components/reveal";
+
+export const metadata: Metadata = {
+ title: "Privacy policy",
+ description:
+ "How VniDrop handles transfers, local app data, optional diagnostics, bug reports, and website visits.",
+};
+
+const summaries: Array<{ icon: IconName; label: string; value: string }> = [
+ { icon: "devices", label: "Transfers", value: "Device to device" },
+ { icon: "globe", label: "Accounts", value: "None" },
+ { icon: "shield", label: "Diagnostics", value: "Optional" },
+ { icon: "folder", label: "Hosted file copy", value: "None" },
+];
+
+const sections = [
+ ["scope", "Scope"],
+ ["transfers", "Transfers"],
+ ["local-data", "Local data"],
+ ["diagnostics", "Diagnostics"],
+ ["website", "Website"],
+ ["permissions", "Permissions"],
+ ["providers", "Service providers"],
+ ["retention", "Retention"],
+ ["choices", "Your choices"],
+ ["security", "Security"],
+ ["changes", "Changes"],
+ ["contact", "Contact"],
+];
+
+export default function PrivacyPage() {
+ return (
+
+
+
+
+
+
+
+ Back to VniDrop
+
+ PRIVACY POLICY
+ Clear by design. Specific by default.
+
+ This policy explains what moves between devices, what stays local, and what is sent
+ only when you choose to share diagnostics or a bug report.
+
+
+ Effective July 16, 2026
+
+ Version 1.0
+
+
+
+
+
+
+
+
+
+
+
+ CONTENT
+
+
+ APPROVAL
+
+
+ VERIFIED
+
+
+
+
+
+
+
+ {summaries.map((summary, index) => (
+
+
+ {summary.label}
+ {summary.value}
+
+ ))}
+
+
+
+
+
+
+
+
+
+
+
+
The short version
+
+ VniDrop has no user accounts and does not upload your transfer to a VniDrop file
+ store. Files travel over an authenticated, end-to-end encrypted connection.
+ Product diagnostics are opt-in; a bug report is sent only when you submit one.
+
+
+
+
+
+ 01
+ Scope and who “VniDrop” means
+
+ This policy covers the official VniDrop website, the VniDrop applications for
+ Android, iOS, macOS, Windows, and Linux, and the diagnostics service configured by
+ the official project. In this policy, “VniDrop,” “we,” and “us” refer to the
+ maintainers of the official VniDrop project and the official builds they distribute.
+
+
+ VniDrop is open-source software. A build distributed or operated by someone else
+ may use different networking infrastructure, diagnostics settings, or website
+ hosting. That distributor is responsible for explaining its own practices.
+
+
+
+
+ 02
+ What happens during a transfer
+ File contents
+
+ The sender chooses files or folders on their device. VniDrop streams those bytes to
+ an approved receiver and does not first upload them to a VniDrop-hosted storage
+ bucket. The receiver saves the files to a destination they choose. Relayed traffic
+ remains end-to-end encrypted.
+
+ Invitations and transfer metadata
+
+ A QR code, NFC tag, or .vnd file contains a transfer invitation. The
+ invitation includes connection and content identifiers plus transfer metadata such
+ as the transfer name, optional sender name, creation time, file count, and total
+ size. It is a capability: anyone who receives it may be able to request the transfer
+ while the share is active. Treat it like a private access link.
+
+ What peers and relays can see
+
+ A receive request can disclose the receiver’s chosen display or device name,
+ application version, and a technical endpoint identifier to the sender. A direct
+ connection exposes the peers’ IP addresses to one another. When a public relay is
+ used, its operator can observe connection metadata such as source and destination IP
+ addresses, connection time, and the amount of relayed data, but cannot read the
+ encrypted transfer contents.
+
+
+
+
+ Approval is required by default. If the sender selects “Anyone with this transfer,”
+ anyone holding the invitation may receive the files until sharing stops.
+
+
+
+
+
+ 03
+ Information kept on your device
+ VniDrop stores the information needed to operate the app locally, including:
+
+ device identity and networking keys used to establish secure connections;
+ active shares, transfer history, receiver requests, progress, and status;
+ app preferences, including access and diagnostics choices;
+ download destinations and locally managed transfer data; and
+ an anonymous installation identifier used only for diagnostics correlation.
+
+
+ This information remains until you remove the relevant history, stop or delete a
+ share, clear the app’s data, or uninstall the app, subject to operating-system file
+ behavior. Removing VniDrop history does not delete a file you already downloaded;
+ delete that file through your operating system if you no longer want it.
+
+
+
+
+ 04
+ Optional diagnostics and bug reports
+ Automatic product diagnostics
+
+ When an official build includes diagnostics, automatic usage events and crash
+ reports are disabled until you enable “Share diagnostics.” If enabled, VniDrop may
+ send an anonymous installation ID, app version, platform, sparse event names and
+ properties, crash type and message, a redacted stack trace, timestamps, and recent
+ in-app breadcrumbs. You can turn this off at any time; doing so also removes pending
+ local crash reports.
+
+ User-submitted bug reports
+
+ A bug report is separate from the diagnostics toggle and is sent only when you press
+ submit. It can contain what you say happened, what you expected, reproduction steps,
+ an optional contact email, app and platform versions, an anonymous installation ID,
+ device name and model, operating system, network and battery information, recent
+ breadcrumbs, and optional recent logs. You can exclude logs before submitting.
+
+ Data deliberately excluded
+
+ Automatic diagnostics are designed to exclude transfer contents, invitations, and
+ file paths. Before diagnostic text or optional logs are sent, VniDrop applies rules
+ intended to redact invitation tokens, endpoint identifiers, absolute paths, file and
+ content URIs, and platform document identifiers. No redaction system is perfect, so
+ review anything you type into a bug report and avoid including secrets.
+
+
+
+
+ 05
+ The VniDrop website
+
+ This website is a static product site. It does not provide an account, contact form,
+ advertising, behavioral analytics, marketing pixels, or non-essential cookies. It
+ does not ask the browser for access to your files, camera, contacts, location, or
+ nearby devices.
+
+
+ The hosting and security infrastructure may process routine request information—such
+ as IP address, time, requested page, referrer, and browser user agent—to deliver the
+ site, maintain reliability, and prevent abuse. The live hosting provider must be
+ identified in this policy before public deployment if it differs from the providers
+ described below.
+
+
+
+
+ 06
+ Device permissions
+
+
Files & folders Choose what to send and where received files are saved.
+
Camera / scanner Scan a QR invitation when you choose that receive method.
+
NFC Read or write an invitation through a compatible NFC tag.
+
Network & notifications Connect peers and alert you to background receiver requests.
+
+
+ VniDrop requests a platform permission only for the related feature. On Android, QR
+ scanning may be provided through Google Play services Code Scanner. Platform-level
+ permission prompts and service-provider terms also apply.
+
+
+
+
+ 07
+ Infrastructure and external services
+
+
+
I
+
Iroh / public relay operators Device discovery, connection establishment, and encrypted relay fallback. Relays process connection metadata but cannot decrypt transfer contents.
+
+
+
C
+
Cloudflare The project’s diagnostics design uses Cloudflare Workers, D1, and R2. Cloudflare also processes source IPs for request delivery and abuse controls.
+
+
+
G
+
Google Play services May provide the QR code scanner on supported Android devices when you choose to scan an invitation.
+
+
+
GH
+
GitHub Hosts the source repository, issue tracker, and external pages linked from this site. GitHub’s own privacy terms apply after you follow those links.
+
+
+
+ Provider policies: {" "}
+ Iroh , {" "}
+ Cloudflare , {" "}
+ Google , and {" "}
+ GitHub .
+
+
+
+
+ 08
+ Retention and deletion
+
+
+ Data Typical retention
+
+
+ Transfer history and settings Until you delete them, clear app data, or uninstall
+
+
+ Pending local crash reports Up to 30 days and 20 reports; deleted when diagnostics is disabled
+
+
+ Server diagnostics and bug reports The current project configuration is 90 days, with scheduled deletion
+
+
+ Downloaded files Until you delete them through your operating system
+
+
+
+ Operational backups, provider logs, and deletion backlogs may persist briefly beyond
+ the stated period where necessary for security, integrity, or legal obligations. If
+ the production diagnostics retention configuration changes, this policy should be
+ updated to match it.
+
+
+
+
+ 09
+ Your choices and rights
+
+ Enable or disable “Share diagnostics” in VniDrop settings.
+ Submit a bug report only when you choose, omit contact information, and exclude logs.
+ Approve or refuse each receiver, cancel a transfer, or stop sharing.
+ Delete individual transfer history or clear completed, failed, and cancelled receive history.
+ Delete downloaded files using your operating system, or clear all app data by uninstalling or resetting the app.
+
+
+ Depending on where you live, privacy law may provide rights to access, correct,
+ delete, restrict, or object to processing of personal information. Because VniDrop
+ has no account and automatic diagnostics use an anonymous installation ID, we may
+ not be able to connect a server record to you without additional information. Use
+ the contact method below and provide only what is needed to locate your submission.
+
+
+
+
+ 10
+ Security
+
+ VniDrop uses authenticated end-to-end encrypted connections, content verification,
+ deny-by-default share access, bounded diagnostics payloads, redaction, and safe file
+ publishing that avoids silently replacing an existing file. No system can guarantee
+ absolute security. Keep invitations private, verify receiver names, keep your device
+ updated, and stop sharing when a transfer is finished.
+
+
+ Please report a suspected vulnerability through the private process in the {" "}
+ VniDrop security policy , not in a public issue.
+
+
+
+
+ 11
+ Changes to this policy
+
+ VniDrop is in early development. Features and data practices may change. When this
+ policy changes, we will update the effective date and version at the top of the page
+ and publish the revised text with the project. Material changes should be called out
+ in release notes or the application where practical.
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/docs/app/privacy/privacy-document.css b/docs/app/privacy/privacy-document.css
new file mode 100644
index 0000000..c722f99
--- /dev/null
+++ b/docs/app/privacy/privacy-document.css
@@ -0,0 +1,660 @@
+.privacy-page {
+ background: #fcfbfd;
+}
+
+.privacy-hero {
+ position: relative;
+ overflow: hidden;
+ padding: 165px 0 105px;
+ background:
+ radial-gradient(circle at 80% 20%, rgba(192, 132, 252, 0.2), transparent 30%),
+ linear-gradient(180deg, #fdfcfe, #f7f3f9);
+}
+
+.privacy-hero-grid {
+ position: absolute;
+ inset: 0;
+ background-image:
+ linear-gradient(rgba(114, 84, 128, 0.055) 1px, transparent 1px),
+ linear-gradient(90deg, rgba(114, 84, 128, 0.055) 1px, transparent 1px);
+ background-size: 32px 32px;
+ mask-image: linear-gradient(to bottom, black, transparent 90%);
+}
+
+.privacy-hero-layout {
+ position: relative;
+ display: grid;
+ grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.72fr);
+ align-items: center;
+ gap: 95px;
+}
+
+.privacy-back {
+ display: flex;
+ width: max-content;
+ align-items: center;
+ gap: 8px;
+ margin-bottom: 42px;
+ color: var(--ink-muted);
+ font-size: 12px;
+ font-weight: 650;
+}
+
+.privacy-hero-copy > .kicker {
+ display: block;
+ width: max-content;
+}
+
+.privacy-back svg {
+ width: 16px;
+ transform: rotate(180deg);
+ transition: transform 180ms ease;
+}
+
+.privacy-back:hover {
+ color: var(--brand-600);
+}
+
+.privacy-back:hover svg {
+ transform: rotate(180deg) translateX(4px);
+}
+
+.privacy-hero-copy h1 {
+ margin: 0 0 25px;
+ font-size: clamp(3.7rem, 6.2vw, 6.5rem);
+ font-weight: 760;
+ letter-spacing: -0.075em;
+ line-height: 0.98;
+}
+
+.privacy-hero-copy > p {
+ max-width: 680px;
+ margin-bottom: 28px;
+ color: var(--ink-soft);
+ font-size: 18px;
+ line-height: 1.72;
+}
+
+.privacy-meta {
+ display: flex;
+ align-items: center;
+ gap: 12px;
+ color: var(--ink-muted);
+ font-family: var(--font-mono);
+ font-size: 9px;
+ font-weight: 700;
+ letter-spacing: 0.07em;
+ text-transform: uppercase;
+}
+
+.privacy-meta i {
+ width: 3px;
+ height: 3px;
+ border-radius: 50%;
+ background: var(--brand-500);
+}
+
+.privacy-hero-art {
+ position: relative;
+ min-height: 435px;
+}
+
+.privacy-art-orbit {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ border: 1px solid rgba(168, 85, 247, 0.18);
+ border-radius: 50%;
+ transform: translate(-50%, -50%);
+}
+
+.privacy-art-orbit::before,
+.privacy-art-orbit::after {
+ position: absolute;
+ border-radius: 50%;
+ background: var(--brand-400);
+ content: "";
+}
+
+.privacy-art-orbit-one {
+ width: 420px;
+ height: 420px;
+ animation: privacy-orbit 28s linear infinite;
+}
+
+.privacy-art-orbit-one::before {
+ top: 11%;
+ left: 16%;
+ width: 7px;
+ height: 7px;
+ box-shadow: 0 0 0 7px rgba(168, 85, 247, 0.09);
+}
+
+.privacy-art-orbit-one::after {
+ right: 8%;
+ bottom: 25%;
+ width: 5px;
+ height: 5px;
+}
+
+.privacy-art-orbit-two {
+ width: 295px;
+ height: 295px;
+ border-style: dashed;
+ animation: privacy-orbit 21s linear infinite reverse;
+}
+
+.privacy-art-orbit-two::before {
+ top: 48%;
+ left: -4px;
+ width: 7px;
+ height: 7px;
+}
+
+.privacy-art-orbit-two::after {
+ top: 4%;
+ right: 22%;
+ width: 5px;
+ height: 5px;
+}
+
+.privacy-mark-card {
+ position: absolute;
+ z-index: 2;
+ top: 50%;
+ left: 50%;
+ display: grid;
+ width: 180px;
+ height: 180px;
+ place-items: center;
+ border: 1px solid #dfd2e6;
+ border-radius: 45px;
+ background: rgba(255, 255, 255, 0.91);
+ box-shadow: 0 35px 90px rgba(65, 30, 80, 0.17);
+ transform: translate(-50%, -50%) rotate(-3deg);
+ backdrop-filter: blur(14px);
+}
+
+.privacy-mark-card > svg {
+ position: relative;
+ z-index: 2;
+ width: 112px;
+ height: 112px;
+}
+
+.privacy-mark-glow {
+ position: absolute;
+ inset: -35px;
+ border-radius: 50%;
+ background: rgba(168, 85, 247, 0.2);
+ filter: blur(42px);
+ animation: privacy-glow 5s ease-in-out infinite;
+}
+
+.privacy-mark-lock {
+ position: absolute;
+ right: -12px;
+ bottom: -10px;
+ display: grid;
+ width: 49px;
+ height: 49px;
+ place-items: center;
+ border: 4px solid #f8f4fa;
+ border-radius: 15px;
+ background: var(--ink);
+ box-shadow: 0 12px 30px rgba(42, 25, 50, 0.2);
+ color: white;
+ transform: rotate(3deg);
+}
+
+.privacy-mark-lock svg {
+ width: 21px;
+}
+
+.privacy-data-pill {
+ position: absolute;
+ z-index: 4;
+ display: inline-flex;
+ align-items: center;
+ gap: 7px;
+ padding: 8px 11px;
+ border: 1px solid #dfd3e4;
+ border-radius: 10px;
+ background: rgba(255, 255, 255, 0.9);
+ box-shadow: 0 12px 35px rgba(58, 33, 69, 0.11);
+ color: var(--brand-600);
+ font-family: var(--font-mono);
+ font-size: 8px;
+ font-weight: 800;
+ letter-spacing: 0.07em;
+ backdrop-filter: blur(10px);
+ animation: privacy-pill 5s ease-in-out infinite;
+}
+
+.privacy-data-pill svg {
+ width: 15px;
+}
+
+.privacy-data-pill-one {
+ top: 11%;
+ left: 4%;
+ transform: rotate(-5deg);
+}
+
+.privacy-data-pill-two {
+ top: 29%;
+ right: -2%;
+ transform: rotate(4deg);
+ animation-delay: -2s;
+}
+
+.privacy-data-pill-three {
+ bottom: 6%;
+ left: 7%;
+ transform: rotate(3deg);
+ animation-delay: -3.5s;
+}
+
+.privacy-summary {
+ position: relative;
+ z-index: 4;
+ margin-top: -37px;
+}
+
+.privacy-summary-grid {
+ display: grid;
+ grid-template-columns: repeat(4, 1fr);
+ overflow: hidden;
+ border: 1px solid var(--line);
+ border-radius: 22px;
+ background: rgba(255, 255, 255, 0.95);
+ box-shadow: var(--shadow-lg);
+ backdrop-filter: blur(12px);
+}
+
+.privacy-summary-card {
+ display: grid;
+ min-height: 151px;
+ align-content: center;
+ padding: 25px 27px;
+}
+
+.privacy-summary-card + .privacy-summary-card {
+ border-left: 1px solid var(--line);
+}
+
+.privacy-summary-card > span {
+ display: grid;
+ width: 37px;
+ height: 37px;
+ margin-bottom: 17px;
+ place-items: center;
+ border-radius: 10px;
+ background: var(--brand-100);
+ color: var(--brand-600);
+}
+
+.privacy-summary-card svg {
+ width: 19px;
+}
+
+.privacy-summary-card small {
+ margin-bottom: 1px;
+ color: var(--ink-muted);
+ font-family: var(--font-mono);
+ font-size: 8px;
+ font-weight: 700;
+ letter-spacing: 0.07em;
+ text-transform: uppercase;
+}
+
+.privacy-summary-card strong {
+ font-family: var(--font-display);
+ font-size: 16px;
+ letter-spacing: -0.02em;
+}
+
+.privacy-document-section {
+ padding: 135px 0 155px;
+}
+
+.privacy-document-layout {
+ display: grid;
+ grid-template-columns: 210px minmax(0, 780px);
+ justify-content: center;
+ gap: 105px;
+}
+
+.privacy-toc {
+ position: sticky;
+ top: 112px;
+ align-self: start;
+}
+
+.privacy-toc > p {
+ margin-bottom: 17px;
+ color: var(--ink);
+ font-family: var(--font-mono);
+ font-size: 9px;
+ font-weight: 800;
+ letter-spacing: 0.09em;
+ text-transform: uppercase;
+}
+
+.privacy-toc nav {
+ display: flex;
+ flex-direction: column;
+}
+
+.privacy-toc a {
+ display: grid;
+ grid-template-columns: 26px 1fr;
+ align-items: center;
+ gap: 6px;
+ padding: 7px 0;
+ color: #79707e;
+ font-size: 11px;
+ font-weight: 600;
+ transition: color 160ms ease, transform 160ms ease;
+}
+
+.privacy-toc a:hover {
+ color: var(--brand-600);
+ transform: translateX(3px);
+}
+
+.privacy-toc a span {
+ color: #b5aabb;
+ font-family: var(--font-mono);
+ font-size: 8px;
+}
+
+.privacy-document {
+ min-width: 0;
+}
+
+.privacy-callout {
+ display: grid;
+ grid-template-columns: auto 1fr;
+ gap: 17px;
+ margin-bottom: 75px;
+ padding: 25px;
+ border: 1px solid #dfd0e7;
+ border-radius: 17px;
+ background: linear-gradient(145deg, #fbf6ff, #f7f1fa);
+}
+
+.privacy-callout > svg {
+ width: 24px;
+ color: var(--brand-600);
+}
+
+.privacy-callout strong {
+ display: block;
+ margin-bottom: 5px;
+ font-family: var(--font-display);
+ font-size: 14px;
+}
+
+.privacy-callout p {
+ margin: 0;
+ color: var(--ink-soft);
+ font-size: 12px;
+ line-height: 1.7;
+}
+
+.policy-section {
+ position: relative;
+ scroll-margin-top: 110px;
+ padding: 0 0 72px;
+}
+
+.policy-section + .policy-section {
+ padding-top: 3px;
+ border-top: 1px solid var(--line);
+}
+
+.policy-number {
+ display: inline-flex;
+ margin-top: 0;
+ margin-bottom: 15px;
+ color: var(--brand-600);
+ font-family: var(--font-mono);
+ font-size: 9px;
+ font-weight: 800;
+ letter-spacing: 0.08em;
+}
+
+.policy-section + .policy-section .policy-number {
+ margin-top: 65px;
+}
+
+.policy-section h2 {
+ margin-bottom: 27px;
+ font-size: clamp(2rem, 3.3vw, 3.15rem);
+ font-weight: 720;
+ letter-spacing: -0.052em;
+ line-height: 1.08;
+}
+
+.policy-section h3 {
+ margin: 34px 0 10px;
+ font-size: 16px;
+ font-weight: 720;
+ letter-spacing: -0.018em;
+}
+
+.policy-section p,
+.policy-section li {
+ color: #514956;
+ font-size: 14px;
+ line-height: 1.82;
+}
+
+.policy-section p {
+ margin-bottom: 19px;
+}
+
+.policy-section ul {
+ display: grid;
+ gap: 8px;
+ margin: 17px 0 22px;
+ padding-left: 22px;
+}
+
+.policy-section li::marker {
+ color: var(--brand-500);
+}
+
+.policy-section code {
+ padding: 2px 6px;
+ border: 1px solid #e7dceb;
+ border-radius: 5px;
+ background: #f8f3fa;
+ color: var(--brand-700);
+ font-family: var(--font-mono);
+ font-size: 0.86em;
+}
+
+.policy-section a:not(.button) {
+ color: var(--brand-700);
+ font-weight: 650;
+ text-decoration: underline;
+ text-decoration-color: rgba(132, 47, 238, 0.28);
+ text-underline-offset: 3px;
+}
+
+.policy-note {
+ display: grid;
+ grid-template-columns: auto 1fr;
+ gap: 13px;
+ margin-top: 28px;
+ padding: 18px;
+ border: 1px solid #e2d6e8;
+ border-radius: 13px;
+ background: #faf7fb;
+}
+
+.policy-note svg {
+ width: 21px;
+ color: var(--brand-600);
+}
+
+.policy-note p {
+ margin: 0;
+ color: #5e5264;
+ font-size: 12px;
+ line-height: 1.65;
+}
+
+.permission-grid {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ gap: 10px;
+ margin: 30px 0;
+}
+
+.permission-grid > div {
+ display: grid;
+ grid-template-columns: auto 1fr;
+ align-items: center;
+ gap: 5px 12px;
+ padding: 17px;
+ border: 1px solid var(--line);
+ border-radius: 13px;
+ background: white;
+}
+
+.permission-grid svg {
+ width: 21px;
+ grid-row: 1 / 3;
+ color: var(--brand-600);
+}
+
+.permission-grid strong {
+ font-size: 11px;
+}
+
+.permission-grid p {
+ margin: 0;
+ color: var(--ink-muted);
+ font-size: 9px;
+ line-height: 1.5;
+}
+
+.provider-list {
+ display: grid;
+ gap: 9px;
+ margin: 28px 0;
+}
+
+.provider-list > div {
+ display: grid;
+ grid-template-columns: auto 1fr;
+ gap: 15px;
+ padding: 17px;
+ border: 1px solid var(--line);
+ border-radius: 13px;
+ background: white;
+}
+
+.provider-list > div > span {
+ display: grid;
+ width: 38px;
+ height: 38px;
+ place-items: center;
+ border-radius: 10px;
+ background: var(--brand-100);
+ color: var(--brand-700);
+ font-family: var(--font-mono);
+ font-size: 9px;
+ font-weight: 850;
+}
+
+.provider-list strong {
+ display: block;
+ margin-bottom: 3px;
+ font-size: 11px;
+}
+
+.provider-list p {
+ margin: 0;
+ color: var(--ink-muted);
+ font-size: 10px;
+ line-height: 1.55;
+}
+
+.provider-links {
+ font-size: 11px !important;
+}
+
+.retention-table {
+ overflow: hidden;
+ margin: 28px 0;
+ border: 1px solid var(--line);
+ border-radius: 14px;
+ background: white;
+}
+
+.retention-row {
+ display: grid;
+ grid-template-columns: minmax(190px, 0.72fr) 1.28fr;
+}
+
+.retention-row + .retention-row {
+ border-top: 1px solid var(--line);
+}
+
+.retention-row span {
+ padding: 14px 16px;
+ color: var(--ink-soft);
+ font-size: 10px;
+ line-height: 1.55;
+}
+
+.retention-row span + span {
+ border-left: 1px solid var(--line);
+ color: var(--ink-muted);
+}
+
+.retention-head {
+ background: #f4eff6;
+}
+
+.retention-head span {
+ color: var(--ink) !important;
+ font-family: var(--font-mono);
+ font-size: 8px;
+ font-weight: 800;
+ letter-spacing: 0.07em;
+ text-transform: uppercase;
+}
+
+.policy-contact {
+ overflow: hidden;
+ padding: 54px !important;
+ border: 1px solid #dfd0e7 !important;
+ border-radius: 21px;
+ background:
+ radial-gradient(circle at 100% 0%, rgba(168, 85, 247, 0.14), transparent 35%),
+ linear-gradient(145deg, #fbf7fe, #f6f0f9);
+}
+
+.policy-contact .policy-number {
+ margin-top: 0 !important;
+}
+
+.policy-contact h2 {
+ margin-bottom: 16px;
+}
+
+.policy-contact p {
+ max-width: 620px;
+ margin-bottom: 26px;
+}
+
+.policy-contact .button {
+ color: white;
+ text-decoration: none;
+}
+
diff --git a/docs/app/privacy/privacy-responsive.css b/docs/app/privacy/privacy-responsive.css
new file mode 100644
index 0000000..151a56c
--- /dev/null
+++ b/docs/app/privacy/privacy-responsive.css
@@ -0,0 +1,156 @@
+@keyframes privacy-orbit {
+ from { transform: translate(-50%, -50%) rotate(0); }
+ to { transform: translate(-50%, -50%) rotate(360deg); }
+}
+
+@keyframes privacy-glow {
+ 0%, 100% { opacity: 0.5; transform: scale(0.84); }
+ 50% { opacity: 1; transform: scale(1.14); }
+}
+
+@keyframes privacy-pill {
+ 0%, 100% { margin-top: 0; }
+ 50% { margin-top: -8px; }
+}
+
+@media (max-width: 1050px) {
+ .privacy-hero-layout {
+ grid-template-columns: minmax(0, 1fr) 390px;
+ gap: 45px;
+ }
+
+ .privacy-hero-copy h1 {
+ font-size: clamp(3.6rem, 6.8vw, 5.5rem);
+ }
+
+ .privacy-document-layout {
+ grid-template-columns: 180px minmax(0, 720px);
+ gap: 60px;
+ }
+}
+
+@media (max-width: 820px) {
+ .privacy-hero {
+ padding-top: 135px;
+ }
+
+ .privacy-hero-layout {
+ grid-template-columns: 1fr;
+ }
+
+ .privacy-hero-copy {
+ max-width: 690px;
+ }
+
+ .privacy-hero-art {
+ width: min(100%, 520px);
+ margin: 0 auto;
+ }
+
+ .privacy-summary-grid {
+ grid-template-columns: 1fr 1fr;
+ }
+
+ .privacy-summary-card:nth-child(3) {
+ border-top: 1px solid var(--line);
+ border-left: 0;
+ }
+
+ .privacy-summary-card:nth-child(4) {
+ border-top: 1px solid var(--line);
+ }
+
+ .privacy-document-layout {
+ grid-template-columns: 1fr;
+ }
+
+ .privacy-toc {
+ position: relative;
+ top: auto;
+ padding-bottom: 25px;
+ border-bottom: 1px solid var(--line);
+ }
+
+ .privacy-toc nav {
+ display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ }
+}
+
+@media (max-width: 560px) {
+ .privacy-hero {
+ padding: 120px 0 90px;
+ }
+
+ .privacy-back {
+ margin-bottom: 32px;
+ }
+
+ .privacy-hero-copy h1 {
+ font-size: clamp(3rem, 15vw, 4.5rem);
+ }
+
+ .privacy-hero-copy > p {
+ font-size: 15px;
+ }
+
+ .privacy-hero-art {
+ min-height: 360px;
+ transform: scale(0.86);
+ }
+
+ .privacy-summary-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .privacy-summary-card {
+ min-height: 120px;
+ }
+
+ .privacy-summary-card + .privacy-summary-card {
+ border-top: 1px solid var(--line);
+ border-left: 0;
+ }
+
+ .privacy-document-section {
+ padding: 95px 0 105px;
+ }
+
+ .privacy-toc nav {
+ grid-template-columns: 1fr 1fr;
+ }
+
+ .privacy-callout {
+ padding: 20px;
+ }
+
+ .policy-section h2 {
+ font-size: 2.25rem;
+ }
+
+ .policy-section p,
+ .policy-section li {
+ font-size: 13px;
+ }
+
+ .permission-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .retention-row {
+ grid-template-columns: 1fr;
+ }
+
+ .retention-row span + span {
+ padding-top: 0;
+ border-left: 0;
+ }
+
+ .retention-head {
+ display: none;
+ }
+
+ .policy-contact {
+ padding: 35px 24px !important;
+ }
+}
diff --git a/docs/app/responsive.css b/docs/app/responsive.css
new file mode 100644
index 0000000..95b1ca1
--- /dev/null
+++ b/docs/app/responsive.css
@@ -0,0 +1,322 @@
+@keyframes ambient-drift {
+ from { transform: translate3d(-10px, -8px, 0) rotate(0deg); }
+ to { transform: translate3d(24px, 18px, 0) rotate(8deg); }
+}
+
+@keyframes word-stream {
+ to { transform: translateX(-50%); }
+}
+
+@keyframes cta-orb {
+ from { transform: translate3d(-20px, -10px, 0) scale(0.9); }
+ to { transform: translate3d(40px, 25px, 0) scale(1.12); }
+}
+
+@media (max-width: 1120px) {
+ .hero-layout {
+ grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1.12fr);
+ }
+
+ .hero-copy h1 {
+ font-size: clamp(3.2rem, 5.4vw, 4.5rem);
+ }
+
+ .approval-layout,
+ .network-layout,
+ .platforms-layout {
+ gap: 55px;
+ }
+
+ .privacy-point-grid {
+ grid-template-columns: repeat(2, 1fr);
+ }
+
+ .privacy-point {
+ min-height: 230px;
+ }
+}
+
+@media (max-width: 920px) {
+ .desktop-nav,
+ .header-github {
+ display: none;
+ }
+
+ .header-inner {
+ grid-template-columns: 1fr auto;
+ }
+
+ .menu-button {
+ display: grid;
+ }
+
+ .mobile-nav {
+ display: grid;
+ max-height: 0;
+ overflow: hidden;
+ padding: 0 12px;
+ opacity: 0;
+ visibility: hidden;
+ transition: max-height 250ms ease, padding 250ms ease, opacity 180ms ease, visibility 250ms;
+ }
+
+ .mobile-nav.is-open {
+ max-height: 280px;
+ padding: 4px 12px 12px;
+ opacity: 1;
+ visibility: visible;
+ }
+
+ .mobile-nav a {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ padding: 12px 10px;
+ border-top: 1px solid var(--line);
+ color: var(--ink-soft);
+ font-size: 13px;
+ font-weight: 650;
+ }
+
+ .mobile-nav svg {
+ width: 17px;
+ }
+
+ .hero-section {
+ padding-top: 128px;
+ }
+
+ .hero-layout {
+ grid-template-columns: 1fr;
+ gap: 35px;
+ }
+
+ .hero-copy {
+ max-width: 720px;
+ margin: 0 auto;
+ text-align: center;
+ }
+
+ .hero-lead {
+ margin-right: auto;
+ margin-left: auto;
+ }
+
+ .hero-actions,
+ .hero-platforms {
+ justify-content: center;
+ }
+
+ .trust-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .trust-item {
+ min-height: 102px;
+ }
+
+ .trust-item + .trust-item {
+ border-top: 1px solid var(--line);
+ border-left: 0;
+ }
+
+ .section-heading-split {
+ grid-template-columns: 1fr;
+ gap: 20px;
+ }
+
+ .section-heading-split p {
+ max-width: 640px;
+ }
+
+ .approval-layout,
+ .network-layout,
+ .platforms-layout {
+ grid-template-columns: 1fr;
+ }
+
+ .approval-copy,
+ .network-copy,
+ .platforms-copy {
+ max-width: 690px;
+ }
+
+ .network-layout {
+ gap: 75px;
+ }
+
+ .platforms-layout {
+ gap: 65px;
+ }
+}
+
+@media (max-width: 680px) {
+ .page-shell {
+ width: min(calc(100% - 32px), var(--shell));
+ }
+
+ .site-header {
+ top: 10px;
+ width: calc(100% - 20px);
+ border-radius: 15px;
+ }
+
+ .header-inner {
+ height: 58px;
+ padding-left: 11px;
+ }
+
+ .brand-name {
+ font-size: 17px;
+ }
+
+ .brand-mark-shell {
+ width: 36px;
+ height: 36px;
+ }
+
+ .hero-section {
+ min-height: auto;
+ padding: 115px 0 72px;
+ }
+
+ .hero-copy h1 {
+ font-size: clamp(2.75rem, 14vw, 4.25rem);
+ letter-spacing: -0.065em;
+ }
+
+ .hero-lead {
+ font-size: 16px;
+ }
+
+ .hero-actions {
+ display: grid;
+ }
+
+ .hero-actions .button {
+ width: 100%;
+ }
+
+ .hero-platforms {
+ display: grid;
+ justify-items: center;
+ }
+
+ .hero-platforms ul {
+ justify-content: center;
+ }
+
+ .trust-section {
+ margin-top: -18px;
+ }
+
+ .trust-grid {
+ border-radius: 18px;
+ }
+
+ .trust-item {
+ padding: 20px;
+ }
+
+ .word-stream {
+ padding-top: 70px;
+ font-size: 3.6rem;
+ }
+
+ .section {
+ padding: 95px 0;
+ }
+
+ .section-heading {
+ margin-bottom: 42px;
+ }
+
+ .section-heading h2,
+ .privacy-intro h2,
+ .network-copy h2,
+ .platforms-copy h2,
+ .final-cta h2,
+ .approval-copy h2 {
+ font-size: clamp(2.35rem, 12vw, 3.5rem);
+ }
+
+ .section-heading p,
+ .section-lead {
+ font-size: 15px;
+ }
+
+ .approval-section,
+ .platforms-section,
+ .network-section,
+ .privacy-principles-section {
+ padding: 100px 0;
+ }
+
+ .approval-layout {
+ gap: 55px;
+ }
+
+ .privacy-point-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .privacy-point {
+ min-height: 0;
+ }
+
+ .privacy-point-top {
+ margin-bottom: 30px;
+ }
+
+ .privacy-policy-link {
+ align-items: flex-start;
+ flex-direction: column;
+ }
+
+ .final-cta-section {
+ padding-bottom: 24px;
+ }
+
+ .final-cta {
+ padding: 76px 22px;
+ border-radius: 23px;
+ }
+
+ .final-cta-actions {
+ display: grid;
+ }
+
+ .footer-main {
+ grid-template-columns: 1fr;
+ }
+
+ .footer-links {
+ gap: 35px;
+ }
+
+ .footer-bottom {
+ align-items: flex-start;
+ flex-direction: column;
+ gap: 5px;
+ }
+}
+
+@media (prefers-reduced-motion: reduce) {
+ html {
+ scroll-behavior: auto;
+ }
+
+ *,
+ *::before,
+ *::after {
+ scroll-behavior: auto !important;
+ animation-duration: 0.01ms !important;
+ animation-iteration-count: 1 !important;
+ transition-duration: 0.01ms !important;
+ }
+
+ .motion-ready .reveal {
+ opacity: 1;
+ transform: none;
+ }
+}
diff --git a/docs/components/approval-demo.tsx b/docs/components/approval-demo.tsx
new file mode 100644
index 0000000..74ffb18
--- /dev/null
+++ b/docs/components/approval-demo.tsx
@@ -0,0 +1,86 @@
+"use client";
+
+import { useState } from "react";
+import { Icon } from "@/components/icons";
+
+type ApprovalState = "pending" | "approved" | "refused";
+
+export function ApprovalDemo() {
+ const [state, setState] = useState("pending");
+
+ return (
+
+
+
+
+
+ Receiver requests
+
+
+
+
+
+
+
+
+
+ {state === "pending" ? "NEW REQUEST" : state === "approved" ? "IN PROGRESS" : "REQUEST CLOSED"}
+
+
+ {state === "pending" && "Maya’s phone wants to receive"}
+ {state === "approved" && "Sending securely to Maya"}
+ {state === "refused" && "Request refused"}
+
+
+
+
+
+
+
+
+
+ Summer photos
+ 42 files · 1.8 GB
+
+ {state === "approved" && 68% }
+
+
+ {state === "pending" && (
+
+ setState("refused")}>
+ Refuse
+
+ setState("approved")}>
+
+ Approve
+
+
+ )}
+
+ {state === "approved" && (
+
+
+
+
+
+ Direct connection
+ setState("pending")}>Reset demo
+
+
+ )}
+
+ {state === "refused" && (
+
+
+
This device was not given access.
+
setState("pending")}>Try again
+
+ )}
+
+
+
+ Approval is required by default
+
+
+ );
+}
diff --git a/docs/components/approval-scene.css b/docs/components/approval-scene.css
new file mode 100644
index 0000000..2edd2e0
--- /dev/null
+++ b/docs/components/approval-scene.css
@@ -0,0 +1,267 @@
+/* Interactive receiver approval */
+.approval-demo {
+ overflow: hidden;
+ border: 1px solid #ded6e2;
+ border-radius: 24px;
+ background: #fbf9fc;
+ box-shadow: 0 35px 90px rgba(49, 29, 58, 0.16);
+ transform: rotate(1deg);
+ transition: transform 280ms ease, border-color 280ms ease;
+}
+
+.approval-demo:hover { transform: rotate(0deg) translateY(-3px); }
+.approval-demo.state-approved { border-color: rgba(45, 185, 117, 0.4); }
+.approval-demo.state-refused { border-color: rgba(221, 92, 75, 0.35); }
+
+.approval-window-bar {
+ display: flex;
+ height: 48px;
+ align-items: center;
+ gap: 6px;
+ padding: 0 16px;
+ border-bottom: 1px solid #ded6e2;
+ background: #f0ecf2;
+}
+
+.approval-window-bar > span {
+ width: 8px;
+ height: 8px;
+ border-radius: 50%;
+ background: #d1c7d5;
+}
+
+.approval-window-bar > span:nth-child(1) { background: #f1a191; }
+.approval-window-bar > span:nth-child(2) { background: #f1ca72; }
+.approval-window-bar > span:nth-child(3) { background: #72cf9b; }
+
+.approval-window-bar small {
+ margin-left: auto;
+ color: #8a7f8f;
+ font-family: var(--font-mono);
+ font-size: 8px;
+ font-weight: 700;
+ letter-spacing: 0.06em;
+}
+
+.approval-body {
+ min-height: 385px;
+ padding: 35px;
+ background:
+ radial-gradient(circle at 90% 0%, rgba(192, 132, 252, 0.16), transparent 27%),
+ white;
+}
+
+.approval-heading {
+ display: flex;
+ align-items: center;
+ gap: 17px;
+ margin-bottom: 30px;
+}
+
+.device-avatar {
+ position: relative;
+ width: 52px;
+ height: 60px;
+ flex: 0 0 auto;
+ border: 4px solid #352e39;
+ border-radius: 13px;
+ background: #211d24;
+ box-shadow: 0 10px 25px rgba(42, 30, 48, 0.16);
+}
+
+.device-avatar::before {
+ position: absolute;
+ top: 4px;
+ left: 50%;
+ width: 16px;
+ height: 3px;
+ border-radius: 999px;
+ background: #0c0a0d;
+ content: "";
+ transform: translateX(-50%);
+}
+
+.device-avatar-screen {
+ position: absolute;
+ inset: 14px 8px 8px;
+ border-radius: 7px;
+ background: linear-gradient(145deg, #b55efa, #6f27e9);
+}
+
+.device-avatar-glow {
+ position: absolute;
+ inset: -5px;
+ z-index: -1;
+ border-radius: 16px;
+ box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.25);
+ animation: avatar-pulse 2.7s ease-out infinite;
+}
+
+.approval-heading h3 {
+ max-width: 360px;
+ margin: 5px 0 0;
+ font-size: 21px;
+ letter-spacing: -0.035em;
+ line-height: 1.22;
+}
+
+.approval-file {
+ display: flex;
+ align-items: center;
+ gap: 13px;
+ padding: 16px;
+ border: 1px solid #e5dde8;
+ border-radius: 14px;
+ background: #f8f5f9;
+}
+
+.approval-file-icon {
+ display: grid;
+ width: 42px;
+ height: 42px;
+ flex: 0 0 auto;
+ place-items: center;
+ border-radius: 11px;
+ background: var(--brand-100);
+ color: var(--brand-600);
+}
+
+.approval-file-icon svg { width: 21px; }
+.approval-file strong,
+.approval-file small { display: block; }
+.approval-file strong { font-size: 12px; }
+.approval-file small { color: var(--ink-muted); font-size: 9px; }
+
+.approval-percent {
+ margin-left: auto;
+ color: var(--brand-600);
+ font-family: var(--font-mono);
+ font-size: 11px;
+ font-weight: 800;
+}
+
+.approval-actions {
+ display: grid;
+ grid-template-columns: 1fr 1.4fr;
+ gap: 10px;
+ margin-top: 22px;
+}
+
+.approval-actions button,
+.approval-refused button {
+ min-height: 47px;
+ border: 1px solid #ded4e2;
+ border-radius: 12px;
+ font-size: 12px;
+ font-weight: 750;
+ cursor: pointer;
+ transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
+}
+
+.approval-actions button:hover,
+.approval-refused button:hover { transform: translateY(-2px); }
+.approval-refuse { background: white; color: #625769; }
+.approval-accept {
+ display: inline-flex;
+ align-items: center;
+ justify-content: center;
+ gap: 8px;
+ border-color: transparent !important;
+ background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
+ box-shadow: 0 10px 24px rgba(132, 47, 238, 0.22);
+ color: white;
+}
+
+.approval-accept svg { width: 17px; }
+
+.approval-progress {
+ margin-top: 25px;
+ animation: approval-state-enter 350ms ease;
+}
+
+.approval-progress-track {
+ overflow: hidden;
+ height: 8px;
+ border-radius: 999px;
+ background: #eee8f1;
+}
+
+.approval-progress-track span {
+ display: block;
+ width: 68%;
+ height: 100%;
+ border-radius: inherit;
+ background: linear-gradient(90deg, var(--brand-500), var(--brand-700));
+ box-shadow: 0 0 15px rgba(168, 85, 247, 0.38);
+ animation: progress-fill 900ms cubic-bezier(0.25, 0.8, 0.25, 1) both;
+}
+
+.approval-progress-meta {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ margin-top: 13px;
+ color: var(--ink-muted);
+ font-size: 9px;
+}
+
+.approval-progress-meta > span {
+ display: flex;
+ align-items: center;
+ gap: 9px;
+}
+
+.approval-progress-meta button,
+.approval-refused button {
+ border: 0;
+ background: transparent;
+ color: var(--brand-600);
+ font-size: 9px;
+ font-weight: 750;
+ cursor: pointer;
+}
+
+.approval-refused {
+ display: flex;
+ align-items: center;
+ gap: 12px;
+ margin-top: 23px;
+ padding: 14px;
+ border: 1px solid #f0d5d0;
+ border-radius: 12px;
+ background: #fff8f7;
+ animation: approval-state-enter 350ms ease;
+}
+
+.approval-refused > span {
+ display: grid;
+ width: 30px;
+ height: 30px;
+ flex: 0 0 auto;
+ place-items: center;
+ border-radius: 50%;
+ background: #fde7e3;
+ color: #d85848;
+}
+
+.approval-refused svg { width: 15px; }
+.approval-refused p { margin: 0; color: #705c59; font-size: 10px; }
+.approval-refused button { margin-left: auto; }
+
+.approval-footer {
+ display: flex;
+ height: 50px;
+ align-items: center;
+ justify-content: center;
+ gap: 8px;
+ border-top: 1px solid #ded6e2;
+ background: #f2eef4;
+ color: #766b7b;
+ font-family: var(--font-mono);
+ font-size: 8px;
+ font-weight: 700;
+ letter-spacing: 0.04em;
+}
+
+.approval-footer svg { width: 15px; color: var(--brand-600); }
+
diff --git a/docs/components/brand.tsx b/docs/components/brand.tsx
new file mode 100644
index 0000000..ffcb2ad
--- /dev/null
+++ b/docs/components/brand.tsx
@@ -0,0 +1,65 @@
+import Link from "next/link";
+
+type BrandMarkProps = {
+ className?: string;
+ title?: string;
+};
+
+export function BrandMark({ className, title }: BrandMarkProps) {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
+
+export function Brand({ compact = false }: { compact?: boolean }) {
+ return (
+
+
+
+
+ {!compact && VniDrop }
+
+ );
+}
diff --git a/docs/components/hero-illustration.tsx b/docs/components/hero-illustration.tsx
new file mode 100644
index 0000000..37fbfd1
--- /dev/null
+++ b/docs/components/hero-illustration.tsx
@@ -0,0 +1,216 @@
+"use client";
+
+import type { CSSProperties, PointerEvent } from "react";
+import { useRef } from "react";
+import { Icon } from "@/components/icons";
+
+type StageStyle = CSSProperties & {
+ "--pointer-x": string;
+ "--pointer-y": string;
+};
+
+export function HeroIllustration() {
+ const stageRef = useRef(null);
+
+ const updateParallax = (event: PointerEvent) => {
+ const stage = stageRef.current;
+ if (!stage || window.matchMedia("(prefers-reduced-motion: reduce)").matches) return;
+ const bounds = stage.getBoundingClientRect();
+ const x = ((event.clientX - bounds.left) / bounds.width - 0.5) * 2;
+ const y = ((event.clientY - bounds.top) / bounds.height - 0.5) * 2;
+ stage.style.setProperty("--pointer-x", x.toFixed(3));
+ stage.style.setProperty("--pointer-y", y.toFixed(3));
+ };
+
+ const resetParallax = () => {
+ stageRef.current?.style.setProperty("--pointer-x", "0");
+ stageRef.current?.style.setProperty("--pointer-y", "0");
+ };
+
+ return (
+
+
+
+
+
+
+
+
+
+
+ End-to-end encrypted
+ Authenticated connection
+
+
+
+
+ Direct route found
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Approved
+ Maya’s phone
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Received
+ Verified safely
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ JPG
+
+ summer-photos
+ 42 files · structure preserved
+
+
+
+
+ An illustration of encrypted files moving from a laptop to a phone after receiver approval.
+
+
+ );
+}
diff --git a/docs/components/hero-scene.css b/docs/components/hero-scene.css
new file mode 100644
index 0000000..d46f06a
--- /dev/null
+++ b/docs/components/hero-scene.css
@@ -0,0 +1,247 @@
+/* Hero transfer scene */
+.hero-visual {
+ position: relative;
+ width: min(100%, 730px);
+ margin: 0;
+}
+
+.hero-stage {
+ --pointer-x: 0;
+ --pointer-y: 0;
+ position: relative;
+ width: 100%;
+ aspect-ratio: 1.13;
+ isolation: isolate;
+ perspective: 1200px;
+}
+
+.hero-grid {
+ position: absolute;
+ z-index: -3;
+ inset: 9% 2% 4% 7%;
+ border: 1px solid rgba(168, 85, 247, 0.14);
+ border-radius: 50%;
+ background-image:
+ linear-gradient(rgba(121, 82, 138, 0.07) 1px, transparent 1px),
+ linear-gradient(90deg, rgba(121, 82, 138, 0.07) 1px, transparent 1px);
+ background-size: 32px 32px;
+ transform: rotateX(64deg) rotateZ(-8deg) translateZ(-70px);
+ mask-image: radial-gradient(circle, black 10%, transparent 70%);
+}
+
+.hero-glow {
+ position: absolute;
+ z-index: -2;
+ border-radius: 50%;
+ filter: blur(60px);
+ pointer-events: none;
+}
+
+.hero-glow-one {
+ top: 22%;
+ right: 8%;
+ width: 37%;
+ aspect-ratio: 1;
+ background: rgba(168, 85, 247, 0.23);
+ transform: translate(calc(var(--pointer-x) * 12px), calc(var(--pointer-y) * 12px));
+}
+
+.hero-glow-two {
+ bottom: 8%;
+ left: 28%;
+ width: 30%;
+ aspect-ratio: 1;
+ background: rgba(126, 58, 236, 0.16);
+ transform: translate(calc(var(--pointer-x) * -9px), calc(var(--pointer-y) * -9px));
+}
+
+.hero-scene {
+ position: absolute;
+ z-index: 1;
+ inset: 1% -3% auto -1%;
+ width: 105%;
+ overflow: visible;
+ transform: rotateY(calc(var(--pointer-x) * 1.7deg)) rotateX(calc(var(--pointer-y) * -1.7deg));
+ transform-origin: center;
+ transition: transform 180ms ease-out;
+}
+
+.scene-laptop {
+ transform: translate(calc(var(--pointer-x) * -4px), calc(var(--pointer-y) * -4px));
+ transition: transform 200ms ease-out;
+}
+
+.scene-phone {
+ transform: translate(calc(var(--pointer-x) * 7px), calc(var(--pointer-y) * 5px));
+ transition: transform 200ms ease-out;
+}
+
+.scene-orbits {
+ transform-origin: 385px 325px;
+ animation: scene-orbits 30s linear infinite;
+}
+
+.laptop-files {
+ transform-origin: 190px 245px;
+ animation: laptop-files 6s ease-in-out infinite;
+}
+
+.conduit-energy {
+ animation: conduit-energy 2s linear infinite;
+}
+
+.approval-gate {
+ transform-origin: 440px 443px;
+ animation: gate-hover 5s ease-in-out infinite;
+}
+
+.received-file {
+ transform-origin: 616px 270px;
+ animation: received-file 7s cubic-bezier(0.34, 1.2, 0.55, 1) infinite;
+}
+
+.packet,
+.packet-spark {
+ opacity: 0;
+ transform-box: fill-box;
+ transform-origin: center;
+}
+
+.packet-one {
+ animation: hero-packet-one 7s cubic-bezier(0.45, 0.05, 0.35, 1) 0.6s infinite;
+}
+
+.packet-two {
+ animation: hero-packet-two 7s cubic-bezier(0.45, 0.05, 0.35, 1) 3s infinite;
+}
+
+.packet-spark-one {
+ animation: hero-spark-one 7s ease 0.6s infinite;
+}
+
+.packet-spark-two {
+ animation: hero-spark-two 7s ease 3s infinite;
+}
+
+.hero-status {
+ position: absolute;
+ z-index: 5;
+ display: flex;
+ align-items: center;
+ border: 1px solid rgba(222, 211, 228, 0.95);
+ background: rgba(255, 255, 255, 0.9);
+ box-shadow: 0 15px 45px rgba(49, 27, 61, 0.11);
+ backdrop-filter: blur(12px);
+ transition: transform 180ms ease-out;
+}
+
+.hero-status-secure {
+ top: 2%;
+ right: 5%;
+ gap: 10px;
+ padding: 10px 13px 10px 10px;
+ border-radius: 14px;
+ transform: translate(calc(var(--pointer-x) * 12px), calc(var(--pointer-y) * 8px)) rotate(2deg);
+ animation: status-hover 6s ease-in-out infinite;
+}
+
+.status-icon {
+ display: grid;
+ width: 34px;
+ height: 34px;
+ place-items: center;
+ border-radius: 10px;
+ background: var(--brand-100);
+ color: var(--brand-600);
+}
+
+.status-icon svg {
+ width: 17px;
+}
+
+.hero-status strong,
+.hero-status small {
+ display: block;
+}
+
+.hero-status strong {
+ color: #2b2530;
+ font-size: 10px;
+ line-height: 1.4;
+}
+
+.hero-status small {
+ color: #897f8e;
+ font-size: 8px;
+}
+
+.hero-status-route {
+ top: 18%;
+ left: 9%;
+ gap: 8px;
+ padding: 7px 11px;
+ border-radius: 999px;
+ color: #534b57;
+ font-family: var(--font-mono);
+ font-size: 8px;
+ font-weight: 700;
+ letter-spacing: 0.04em;
+ transform: translate(calc(var(--pointer-x) * -8px), calc(var(--pointer-y) * -6px)) rotate(-3deg);
+}
+
+.status-pulse,
+.live-dot {
+ display: inline-block;
+ width: 7px;
+ height: 7px;
+ border-radius: 50%;
+ background: #2bc477;
+ box-shadow: 0 0 0 4px rgba(43, 196, 119, 0.13);
+ animation: status-pulse 2.4s ease-in-out infinite;
+}
+
+.hero-file-label {
+ position: absolute;
+ z-index: 4;
+ bottom: 7%;
+ left: 7%;
+ display: flex;
+ align-items: center;
+ gap: 11px;
+ padding: 10px 13px;
+ border: 1px solid rgba(222, 211, 228, 0.95);
+ border-radius: 14px;
+ background: rgba(255, 255, 255, 0.9);
+ box-shadow: 0 15px 45px rgba(49, 27, 61, 0.11);
+ backdrop-filter: blur(12px);
+ transform: translate(calc(var(--pointer-x) * -10px), calc(var(--pointer-y) * -7px)) rotate(-2deg);
+ transition: transform 180ms ease-out;
+}
+
+.file-type-icon {
+ display: grid;
+ width: 37px;
+ height: 37px;
+ place-items: center;
+ border-radius: 10px;
+ background: linear-gradient(135deg, var(--brand-400), var(--brand-600));
+ color: white;
+ font-family: var(--font-mono);
+ font-size: 8px;
+ font-weight: 800;
+}
+
+.hero-file-label strong,
+.hero-file-label small {
+ display: block;
+}
+
+.hero-file-label strong {
+ font-size: 10px;
+}
+
+.hero-file-label small {
+ color: var(--ink-muted);
+ font-size: 8px;
+}
+
diff --git a/docs/components/icons.tsx b/docs/components/icons.tsx
new file mode 100644
index 0000000..905d4c1
--- /dev/null
+++ b/docs/components/icons.tsx
@@ -0,0 +1,140 @@
+import type { SVGProps } from "react";
+
+export type IconName =
+ | "arrow"
+ | "check"
+ | "chevron"
+ | "close"
+ | "code"
+ | "devices"
+ | "file"
+ | "folder"
+ | "github"
+ | "globe"
+ | "lock"
+ | "menu"
+ | "nfc"
+ | "qr"
+ | "shield"
+ | "spark"
+ | "stop"
+ | "verified"
+ | "x";
+
+type IconProps = SVGProps & {
+ name: IconName;
+};
+
+export function Icon({ name, ...props }: IconProps) {
+ const paths: Record = {
+ arrow: (
+ <>
+
+
+ >
+ ),
+ check: ,
+ chevron: ,
+ close: (
+ <>
+
+
+ >
+ ),
+ code: (
+ <>
+
+
+
+ >
+ ),
+ devices: (
+ <>
+
+
+
+ >
+ ),
+ file: (
+ <>
+
+
+ >
+ ),
+ folder: (
+
+ ),
+ github: (
+
+ ),
+ globe: (
+ <>
+
+
+ >
+ ),
+ lock: (
+ <>
+
+
+ >
+ ),
+ menu: (
+ <>
+
+ >
+ ),
+ nfc: (
+ <>
+
+
+
+ >
+ ),
+ qr: (
+ <>
+
+
+
+
+ >
+ ),
+ shield: (
+ <>
+
+
+ >
+ ),
+ spark: (
+
+ ),
+ stop: ,
+ verified: (
+ <>
+
+
+ >
+ ),
+ x: (
+ <>
+
+
+ >
+ ),
+ };
+
+ return (
+
+ {paths[name]}
+
+ );
+}
diff --git a/docs/components/illustration-motion.css b/docs/components/illustration-motion.css
new file mode 100644
index 0000000..0f80c17
--- /dev/null
+++ b/docs/components/illustration-motion.css
@@ -0,0 +1,276 @@
+@keyframes scene-orbits { to { transform: rotate(360deg); } }
+@keyframes laptop-files {
+ 0%, 100% { transform: translateY(0) rotate(0); }
+ 50% { transform: translateY(-5px) rotate(1deg); }
+}
+@keyframes conduit-energy { to { stroke-dashoffset: -38; } }
+@keyframes gate-hover {
+ 0%, 100% { transform: translateY(0); }
+ 50% { transform: translateY(-6px); }
+}
+@keyframes received-file {
+ 0%, 9% { opacity: 0.55; transform: translateY(12px) scale(0.92); }
+ 17%, 70% { opacity: 1; transform: translateY(0) scale(1); }
+ 83%, 100% { opacity: 0.55; transform: translateY(12px) scale(0.92); }
+}
+@keyframes hero-packet-one {
+ 0%, 6% { opacity: 0; transform: translate(245px, 320px) scale(0.55) rotate(-8deg); }
+ 14% { opacity: 1; }
+ 43% { opacity: 1; transform: translate(380px, 427px) scale(0.82) rotate(5deg); }
+ 54% { opacity: 1; transform: translate(415px, 430px) scale(0.82) rotate(2deg); }
+ 84% { opacity: 1; transform: translate(556px, 296px) scale(0.65) rotate(10deg); }
+ 92%, 100% { opacity: 0; transform: translate(585px, 270px) scale(0.35) rotate(14deg); }
+}
+@keyframes hero-packet-two {
+ 0%, 6% { opacity: 0; transform: translate(255px, 327px) scale(0.5) rotate(8deg); }
+ 15% { opacity: 0.85; }
+ 45% { opacity: 0.9; transform: translate(382px, 440px) scale(0.75) rotate(-4deg); }
+ 56% { opacity: 0.9; transform: translate(414px, 436px) scale(0.75) rotate(-2deg); }
+ 85% { opacity: 0.8; transform: translate(560px, 308px) scale(0.55) rotate(-10deg); }
+ 93%, 100% { opacity: 0; transform: translate(588px, 278px) scale(0.25) rotate(-15deg); }
+}
+@keyframes hero-spark-one {
+ 0%, 12% { opacity: 0; transform: translate(266px, 346px) scale(0); }
+ 19% { opacity: 1; transform: translate(285px, 360px) scale(1); }
+ 29%, 100% { opacity: 0; transform: translate(310px, 380px) scale(0); }
+}
+@keyframes hero-spark-two {
+ 0%, 77% { opacity: 0; transform: translate(545px, 307px) scale(0); }
+ 87% { opacity: 1; transform: translate(575px, 279px) scale(1); }
+ 97%, 100% { opacity: 0; transform: translate(603px, 260px) scale(0); }
+}
+@keyframes status-hover {
+ 0%, 100% { margin-top: 0; }
+ 50% { margin-top: -7px; }
+}
+@keyframes status-pulse {
+ 0%, 100% { box-shadow: 0 0 0 3px rgba(43, 196, 119, 0.1); }
+ 50% { box-shadow: 0 0 0 7px rgba(43, 196, 119, 0); }
+}
+@keyframes flow-glow {
+ 0%, 100% { transform: scale(0.8); opacity: 0.6; }
+ 50% { transform: scale(1.2); opacity: 1; }
+}
+@keyframes flow-drop {
+ 0%, 7% { offset-distance: 0%; opacity: 0; }
+ 13% { opacity: 1; }
+ 47% { offset-distance: 51%; opacity: 1; }
+ 57% { offset-distance: 51%; opacity: 1; }
+ 91% { offset-distance: 100%; opacity: 1; }
+ 97%, 100% { offset-distance: 100%; opacity: 0; }
+}
+@keyframes gate-breathe {
+ 0%, 100% { transform: scale(0.98); }
+ 50% { transform: scale(1.04); }
+}
+@keyframes complete-ring {
+ 0%, 100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.18); }
+ 50% { box-shadow: 0 0 0 13px rgba(168, 85, 247, 0); }
+}
+@keyframes invite-panel-enter {
+ from { opacity: 0; transform: translateY(10px); }
+ to { opacity: 1; transform: none; }
+}
+@keyframes qr-card-float {
+ 0%, 100% { transform: rotate(2deg) translateY(0); }
+ 50% { transform: rotate(-1deg) translateY(-8px); }
+}
+@keyframes qr-cell {
+ from { opacity: 0; transform: scale(0.2); }
+ to { opacity: 1; transform: scale(1); }
+}
+@keyframes qr-scan {
+ 0%, 100% { top: 40px; opacity: 0; }
+ 12%, 88% { opacity: 1; }
+ 50% { top: 222px; }
+}
+@keyframes nfc-dot {
+ 0%, 100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.2); }
+ 50% { box-shadow: 0 0 0 19px rgba(168, 85, 247, 0); }
+}
+@keyframes nfc-wave {
+ 0%, 100% { opacity: 0.25; transform: translateY(-50%) scale(0.88); }
+ 50% { opacity: 1; transform: translateY(-50%) scale(1.04); }
+}
+@keyframes vnd-drop {
+ 0%, 8% { transform: translateX(-50%) translateY(-16px) rotate(-5deg); }
+ 20%, 78% { transform: translateX(-50%) translateY(0) rotate(-2deg); }
+ 88%, 100% { transform: translateX(-50%) translateY(-16px) rotate(-5deg); }
+}
+@keyframes avatar-pulse {
+ 0% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.24); }
+ 75%, 100% { box-shadow: 0 0 0 14px rgba(168, 85, 247, 0); }
+}
+@keyframes approval-state-enter {
+ from { opacity: 0; transform: translateY(7px); }
+ to { opacity: 1; transform: none; }
+}
+@keyframes progress-fill {
+ from { width: 0; }
+ to { width: 68%; }
+}
+@keyframes network-dash { to { stroke-dashoffset: -44; } }
+@keyframes relay-ring {
+ 0% { opacity: 0.6; transform: translateX(-50%) scale(0.72); }
+ 85%, 100% { opacity: 0; transform: translateX(-50%) scale(1.2); }
+}
+@keyframes network-packet-top {
+ 0%, 8% { left: 15%; top: 40%; opacity: 0; transform: rotate(-7deg) scale(0.7); }
+ 15% { opacity: 1; }
+ 48% { left: 47%; top: 20%; opacity: 1; transform: rotate(3deg) scale(0.9); }
+ 85% { left: 82%; top: 40%; opacity: 1; transform: rotate(8deg) scale(0.72); }
+ 94%, 100% { left: 85%; top: 42%; opacity: 0; transform: rotate(10deg) scale(0.4); }
+}
+@keyframes network-packet-bottom {
+ 0%, 8% { left: 16%; top: 50%; opacity: 0; transform: rotate(8deg) scale(0.65); }
+ 15% { opacity: 0.8; }
+ 48% { left: 48%; top: 69%; opacity: 0.8; transform: rotate(-3deg) scale(0.8); }
+ 84% { left: 82%; top: 50%; opacity: 0.8; transform: rotate(-8deg) scale(0.7); }
+ 94%, 100% { left: 85%; top: 48%; opacity: 0; transform: rotate(-10deg) scale(0.4); }
+}
+@keyframes orbit-spin {
+ from { transform: translate(-50%, -50%) rotate(0deg); }
+ to { transform: translate(-50%, -50%) rotate(360deg); }
+}
+@keyframes platform-glow {
+ 0%, 100% { opacity: 0.45; transform: scale(0.82); }
+ 50% { opacity: 1; transform: scale(1.15); }
+}
+@keyframes platform-chip-float {
+ 0%, 100% { transform: translateY(0); }
+ 50% { transform: translateY(-8px); }
+}
+
+@media (max-width: 1120px) {
+ .flow-layout {
+ grid-template-columns: minmax(450px, 1fr) minmax(350px, 0.8fr);
+ gap: 45px;
+ }
+
+ .flow-device { transform: scale(0.88); }
+ .flow-device-sender { transform: scale(0.88) rotate(-6deg); transform-origin: top left; }
+ .flow-device-receiver { transform: scale(0.88) rotate(5deg); transform-origin: bottom right; }
+
+ .invite-panel {
+ grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
+ }
+
+ .invite-copy { padding: 45px; }
+ .network-visual { min-height: 500px; }
+}
+
+@media (max-width: 920px) {
+ .hero-visual {
+ max-width: 720px;
+ margin-inline: auto;
+ }
+
+ .flow-layout {
+ grid-template-columns: 1fr;
+ }
+
+ .flow-visual {
+ position: relative;
+ top: auto;
+ }
+
+ .invite-panel {
+ grid-template-columns: 1fr;
+ }
+
+ .invite-art {
+ min-height: 450px;
+ border-top: 1px solid var(--line);
+ border-left: 0;
+ }
+
+ .network-visual {
+ min-height: 520px;
+ }
+
+ .platform-orbit {
+ max-width: 620px;
+ }
+}
+
+@media (max-width: 680px) {
+ .hero-stage {
+ width: 112%;
+ margin-left: -6%;
+ }
+
+ .hero-status-secure {
+ top: 0;
+ right: 2%;
+ transform: scale(0.88) rotate(2deg);
+ transform-origin: top right;
+ }
+
+ .hero-status-route { left: 4%; transform: scale(0.88) rotate(-3deg); transform-origin: top left; }
+ .hero-file-label { bottom: 3%; left: 4%; transform: scale(0.88) rotate(-2deg); transform-origin: bottom left; }
+
+ .flow-visual {
+ height: 540px;
+ border-radius: 21px;
+ }
+
+ .flow-device {
+ width: 137px;
+ height: 215px;
+ }
+
+ .flow-device-sender { top: 24px; left: 16px; }
+ .flow-device-receiver { right: 14px; bottom: 20px; }
+ .flow-track { inset: 0 -2%; width: 104%; height: 100%; }
+ .flow-annotation { display: none; }
+
+ .flow-step {
+ grid-template-columns: auto 1fr;
+ padding: 20px;
+ }
+
+ .invite-tabs button {
+ min-height: 59px;
+ flex-direction: column;
+ gap: 3px;
+ font-size: 10px;
+ }
+
+ .invite-tabs svg { width: 17px; }
+ .invite-copy { padding: 42px 24px; }
+ .invite-art { min-height: 390px; }
+ .invite-qr-art { transform: scale(0.86) rotate(2deg); }
+ .invite-nfc-art { transform: scale(0.82); }
+ .invite-file-art { transform: scale(0.85); }
+
+ .approval-body { min-height: 370px; padding: 28px 20px; }
+ .approval-heading h3 { font-size: 18px; }
+ .approval-actions { grid-template-columns: 1fr 1.2fr; }
+
+ .network-visual {
+ min-height: 430px;
+ border-radius: 21px;
+ }
+
+ .network-device {
+ top: 150px;
+ width: 77px;
+ height: 112px;
+ }
+
+ .network-device-left { left: 13px; }
+ .network-device-right { right: 13px; }
+ .network-device svg { width: 24px; }
+ .network-relay-node { bottom: 29px; }
+ .network-relay-node small { max-width: 160px; text-align: center; }
+ .network-direct-label { top: 43px; }
+
+ .platform-orbit { width: 112%; margin-left: -6%; }
+ .platform-center { width: 112px; height: 112px; border-radius: 30px; }
+ .platform-center svg { width: 68px; height: 68px; }
+ .platform-chip { padding: 8px 10px; font-size: 9px; }
+ .platform-chip-1 { left: 10%; }
+ .platform-chip-2 { right: 0; }
+ .platform-chip-3 { right: -2%; }
+ .platform-chip-4 { left: 17%; }
+}
diff --git a/docs/components/invitation-scene.css b/docs/components/invitation-scene.css
new file mode 100644
index 0000000..e12aa8b
--- /dev/null
+++ b/docs/components/invitation-scene.css
@@ -0,0 +1,405 @@
+/* Invitation methods */
+.invite-showcase {
+ overflow: hidden;
+ border: 1px solid var(--line);
+ border-radius: 25px;
+ background: white;
+ box-shadow: var(--shadow-lg);
+}
+
+.invite-tabs {
+ display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ border-bottom: 1px solid var(--line);
+ background: #f7f4f8;
+}
+
+.invite-tabs button {
+ display: inline-flex;
+ min-height: 66px;
+ align-items: center;
+ justify-content: center;
+ gap: 9px;
+ border: 0;
+ border-right: 1px solid var(--line);
+ background: transparent;
+ color: var(--ink-muted);
+ font-size: 13px;
+ font-weight: 700;
+ cursor: pointer;
+ transition: color 180ms ease, background 180ms ease;
+}
+
+.invite-tabs button:last-child { border-right: 0; }
+.invite-tabs button:hover { color: var(--ink); }
+.invite-tabs button.is-active {
+ position: relative;
+ background: white;
+ color: var(--brand-600);
+}
+
+.invite-tabs button.is-active::after {
+ position: absolute;
+ right: 20%;
+ bottom: -1px;
+ left: 20%;
+ height: 2px;
+ border-radius: 999px 999px 0 0;
+ background: var(--brand-500);
+ content: "";
+}
+
+.invite-tabs svg { width: 19px; }
+
+.invite-panel {
+ display: grid;
+ min-height: 490px;
+ grid-template-columns: minmax(0, 0.83fr) minmax(480px, 1.17fr);
+ animation: invite-panel-enter 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
+}
+
+.invite-copy {
+ display: flex;
+ align-items: flex-start;
+ flex-direction: column;
+ justify-content: center;
+ padding: 60px;
+}
+
+.mono-label {
+ color: var(--brand-600);
+ font-family: var(--font-mono);
+ font-size: 9px;
+ font-weight: 800;
+ letter-spacing: 0.11em;
+}
+
+.invite-copy h3 {
+ max-width: 430px;
+ margin: 12px 0 18px;
+ font-size: clamp(2rem, 3vw, 3.15rem);
+ letter-spacing: -0.055em;
+ line-height: 1.06;
+}
+
+.invite-copy > p {
+ max-width: 440px;
+ margin-bottom: 30px;
+ color: var(--ink-soft);
+ font-size: 15px;
+ line-height: 1.7;
+}
+
+.invite-detail {
+ display: flex;
+ gap: 11px;
+ padding-top: 20px;
+ border-top: 1px solid var(--line);
+}
+
+.invite-detail > svg {
+ width: 19px;
+ flex: 0 0 auto;
+ color: var(--brand-600);
+}
+
+.invite-detail strong,
+.invite-detail small {
+ display: block;
+}
+
+.invite-detail strong {
+ margin-bottom: 3px;
+ color: #3c3440;
+ font-size: 11px;
+}
+
+.invite-detail small {
+ color: var(--ink-muted);
+ font-size: 9px;
+ line-height: 1.5;
+}
+
+.invite-art {
+ position: relative;
+ display: grid;
+ overflow: hidden;
+ place-items: center;
+ border-left: 1px solid var(--line);
+ background:
+ linear-gradient(rgba(116, 86, 130, 0.05) 1px, transparent 1px),
+ linear-gradient(90deg, rgba(116, 86, 130, 0.05) 1px, transparent 1px),
+ radial-gradient(circle at center, #fbf7fd, #f2edf5);
+ background-size: 24px 24px, 24px 24px, auto;
+}
+
+.invite-art::before {
+ position: absolute;
+ width: 330px;
+ aspect-ratio: 1;
+ border-radius: 50%;
+ background: rgba(168, 85, 247, 0.14);
+ content: "";
+ filter: blur(55px);
+}
+
+.invite-qr-art {
+ position: relative;
+ display: grid;
+ width: 265px;
+ height: 265px;
+ place-items: center;
+ border: 1px solid #e0d5e5;
+ border-radius: 25px;
+ background: rgba(255, 255, 255, 0.95);
+ box-shadow: 0 30px 80px rgba(59, 35, 70, 0.18);
+ transform: rotate(2deg);
+ animation: qr-card-float 6s ease-in-out infinite;
+}
+
+.invite-qr-grid {
+ display: grid;
+ width: 178px;
+ height: 178px;
+ grid-template-columns: repeat(9, 1fr);
+ grid-template-rows: repeat(9, 1fr);
+ gap: 4px;
+}
+
+.invite-qr-grid span {
+ border-radius: 2px;
+ background: transparent;
+}
+
+.invite-qr-grid span.is-filled {
+ background: #2b2230;
+ animation: qr-cell 600ms ease backwards;
+}
+
+.invite-qr-grid span:nth-child(3n) { animation-delay: 80ms; }
+.invite-qr-grid span:nth-child(4n) { animation-delay: 160ms; }
+.invite-qr-grid span:nth-child(7n) { animation-delay: 230ms; }
+
+.qr-scan-line {
+ position: absolute;
+ right: 34px;
+ left: 34px;
+ height: 2px;
+ background: linear-gradient(90deg, transparent, var(--brand-500), transparent);
+ box-shadow: 0 0 13px var(--brand-400);
+ animation: qr-scan 3.2s ease-in-out infinite;
+}
+
+.qr-corner {
+ position: absolute;
+ width: 25px;
+ height: 25px;
+ border-color: var(--brand-500);
+ border-style: solid;
+}
+
+.qr-corner-one { top: 21px; left: 21px; border-width: 2px 0 0 2px; border-radius: 7px 0 0; }
+.qr-corner-two { top: 21px; right: 21px; border-width: 2px 2px 0 0; border-radius: 0 7px 0 0; }
+.qr-corner-three { right: 21px; bottom: 21px; border-width: 0 2px 2px 0; border-radius: 0 0 7px; }
+.qr-corner-four { bottom: 21px; left: 21px; border-width: 0 0 2px 2px; border-radius: 0 0 0 7px; }
+
+.invite-nfc-art {
+ position: relative;
+ width: 440px;
+ height: 330px;
+}
+
+.nfc-device {
+ position: absolute;
+ top: 10px;
+ left: 10px;
+ width: 155px;
+ height: 300px;
+ border: 7px solid #d7cfdc;
+ border-radius: 30px;
+ background: #211c25;
+ box-shadow: var(--shadow-lg);
+ transform: rotate(-8deg);
+}
+
+.nfc-device::after {
+ position: absolute;
+ top: 11px;
+ left: 50%;
+ width: 50px;
+ height: 7px;
+ border-radius: 999px;
+ background: #09070a;
+ content: "";
+ transform: translateX(-50%);
+}
+
+.nfc-screen-dot {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ width: 54px;
+ height: 54px;
+ border: 1px solid rgba(192, 132, 252, 0.55);
+ border-radius: 50%;
+ background: rgba(168, 85, 247, 0.2);
+ transform: translate(-50%, -50%);
+ animation: nfc-dot 2.5s ease-in-out infinite;
+}
+
+.nfc-tag {
+ position: absolute;
+ right: 25px;
+ bottom: 30px;
+ display: grid;
+ width: 138px;
+ height: 138px;
+ place-items: center;
+ border: 1px solid #d9cfe0;
+ border-radius: 28px;
+ background: white;
+ box-shadow: 0 25px 70px rgba(52, 31, 62, 0.18);
+ color: var(--brand-600);
+ transform: rotate(8deg);
+}
+
+.nfc-tag svg { width: 46px; }
+.nfc-tag small {
+ position: absolute;
+ bottom: 18px;
+ color: var(--ink-muted);
+ font-family: var(--font-mono);
+ font-size: 8px;
+ font-weight: 700;
+ letter-spacing: 0.08em;
+}
+
+.nfc-waves {
+ position: absolute;
+ top: 75px;
+ left: 145px;
+ width: 185px;
+ height: 160px;
+}
+
+.nfc-waves span {
+ position: absolute;
+ top: 50%;
+ left: 0;
+ border: 2px solid var(--brand-500);
+ border-top-color: transparent;
+ border-bottom-color: transparent;
+ border-left-color: transparent;
+ border-radius: 50%;
+ transform: translateY(-50%);
+ animation: nfc-wave 2.4s ease-in-out infinite;
+}
+
+.nfc-waves span:nth-child(1) { width: 55px; height: 70px; }
+.nfc-waves span:nth-child(2) { width: 98px; height: 112px; animation-delay: 180ms; }
+.nfc-waves span:nth-child(3) { width: 142px; height: 154px; animation-delay: 360ms; }
+.nfc-waves i {
+ position: absolute;
+ top: 50%;
+ left: 15px;
+ width: 9px;
+ height: 9px;
+ border-radius: 50%;
+ background: var(--brand-500);
+ box-shadow: 0 0 0 8px rgba(168, 85, 247, 0.13);
+ transform: translateY(-50%);
+}
+
+.invite-file-art {
+ position: relative;
+ width: 410px;
+ height: 350px;
+}
+
+.vnd-file {
+ position: absolute;
+ z-index: 2;
+ top: 13px;
+ left: 50%;
+ display: flex;
+ width: 218px;
+ height: 270px;
+ align-items: center;
+ flex-direction: column;
+ justify-content: center;
+ border: 1px solid #d8cbe0;
+ border-radius: 23px;
+ background: linear-gradient(145deg, #fff, #f7f0fb);
+ box-shadow: 0 30px 80px rgba(59, 35, 70, 0.2);
+ transform: translateX(-50%) rotate(-2deg);
+ animation: vnd-drop 4.8s cubic-bezier(0.3, 0.75, 0.3, 1) infinite;
+}
+
+.vnd-fold {
+ position: absolute;
+ top: -1px;
+ right: -1px;
+ width: 58px;
+ height: 58px;
+ border-bottom: 1px solid #d1c1dc;
+ border-left: 1px solid #d1c1dc;
+ border-radius: 0 23px 0 16px;
+ background: #e7cdf9;
+ clip-path: polygon(0 0, 100% 100%, 0 100%);
+}
+
+.vnd-file > svg {
+ width: 58px;
+ margin-bottom: 20px;
+ color: var(--brand-600);
+}
+
+.vnd-file strong {
+ font-family: var(--font-display);
+ font-size: 16px;
+}
+
+.vnd-file small {
+ color: var(--ink-muted);
+ font-size: 10px;
+}
+
+.vnd-file code {
+ margin-top: 18px;
+ padding: 5px 10px;
+ border-radius: 7px;
+ background: var(--brand-100);
+ color: var(--brand-600);
+ font-family: var(--font-mono);
+ font-size: 10px;
+ font-weight: 800;
+}
+
+.file-tray {
+ position: absolute;
+ right: 37px;
+ bottom: 7px;
+ left: 37px;
+ height: 73px;
+ border: 2px solid #cabbd2;
+ border-radius: 19px;
+ background: rgba(237, 228, 242, 0.85);
+ transform: perspective(250px) rotateX(55deg);
+}
+
+.file-tray span {
+ position: absolute;
+ inset: 14px;
+ border: 1px dashed #aa8cbc;
+ border-radius: 10px;
+}
+
+.file-art-orbit {
+ position: absolute;
+ border: 1px solid rgba(168, 85, 247, 0.2);
+ border-radius: 50%;
+}
+
+.file-art-orbit-one { inset: 14px 32px 44px; animation: scene-orbits 24s linear infinite; }
+.file-art-orbit-two { inset: 52px 70px 80px; border-style: dashed; animation: scene-orbits 18s linear infinite reverse; }
+
diff --git a/docs/components/invitation-showcase.tsx b/docs/components/invitation-showcase.tsx
new file mode 100644
index 0000000..312b902
--- /dev/null
+++ b/docs/components/invitation-showcase.tsx
@@ -0,0 +1,153 @@
+"use client";
+
+import { useState } from "react";
+import { Icon, type IconName } from "@/components/icons";
+
+type Method = "qr" | "nfc" | "file";
+
+const methods: Array<{
+ id: Method;
+ icon: IconName;
+ label: string;
+ eyebrow: string;
+ title: string;
+ text: string;
+}> = [
+ {
+ id: "qr",
+ icon: "qr",
+ label: "QR code",
+ eyebrow: "IN THE SAME ROOM",
+ title: "Point. Scan. Connected.",
+ text: "Show the invitation on one screen and scan it from the other. No contact exchange required.",
+ },
+ {
+ id: "nfc",
+ icon: "nfc",
+ label: "NFC",
+ eyebrow: "THE QUICKEST TAP",
+ title: "Bring devices together.",
+ text: "Write or open an invitation with an NFC tag for a physical, close-range handoff.",
+ },
+ {
+ id: "file",
+ icon: "file",
+ label: ".vnd file",
+ eyebrow: "SEND IT ANYWHERE",
+ title: "An invitation that travels.",
+ text: "Save the small invitation as a .vnd file, then pass it through the channel you already use.",
+ },
+];
+
+function QrArt() {
+ const filled = new Set([
+ 0, 1, 2, 3, 4, 6, 8, 9, 10, 11, 12, 14, 16, 18, 20, 22, 24, 28, 29, 30, 31, 32,
+ 36, 38, 40, 42, 44, 48, 49, 50, 51, 52, 54, 56, 58, 60, 62, 64, 66, 67, 69,
+ 72, 73, 74, 76, 78, 79, 80,
+ ]);
+ return (
+
+
+ {Array.from({ length: 81 }, (_, index) => (
+
+ ))}
+
+
+
+
+
+
+
+ );
+}
+
+function NfcArt() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+ VniDrop
+
+
+ );
+}
+
+function FileArt() {
+ return (
+
+
+
+
+
+
+ Weekend trip
+ VniDrop invitation
+ .vnd
+
+
+
+
+
+ );
+}
+
+export function InvitationShowcase() {
+ const [active, setActive] = useState("qr");
+ const current = methods.find((method) => method.id === active) ?? methods[0];
+
+ return (
+
+
+ {methods.map((method) => (
+ setActive(method.id)}
+ >
+
+ {method.label}
+
+ ))}
+
+
+
+
{current.eyebrow}
+
{current.title}
+
{current.text}
+
+
+
+ The invitation is a private access link.
+ Only share it with people you intend to receive the transfer.
+
+
+
+
+ {active === "qr" && }
+ {active === "nfc" && }
+ {active === "file" && }
+
+
+
+ );
+}
diff --git a/docs/components/network-illustration.tsx b/docs/components/network-illustration.tsx
new file mode 100644
index 0000000..5251913
--- /dev/null
+++ b/docs/components/network-illustration.tsx
@@ -0,0 +1,51 @@
+import { Icon } from "@/components/icons";
+
+export function NetworkIllustration() {
+ return (
+
+
+
+
+
+ SENDER
+
+
+
+
+ RECEIVER
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ DIRECT WHEN POSSIBLE
+
+
+
+
+
+
+
+
Encrypted relay
+
Forwards packets · stores no transfer copy
+
+
+
+
+ );
+}
diff --git a/docs/components/network-scene.css b/docs/components/network-scene.css
new file mode 100644
index 0000000..318cca9
--- /dev/null
+++ b/docs/components/network-scene.css
@@ -0,0 +1,190 @@
+/* Direct / relay network scene */
+.network-visual {
+ position: relative;
+ width: 100%;
+ min-height: 520px;
+ overflow: hidden;
+ border: 1px solid #302737;
+ border-radius: 27px;
+ background: radial-gradient(circle at center, rgba(168, 85, 247, 0.1), transparent 47%), #151117;
+}
+
+.network-grid {
+ position: absolute;
+ inset: 0;
+ background-image:
+ linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
+ linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
+ background-size: 30px 30px;
+ mask-image: radial-gradient(circle at center, black, transparent 79%);
+}
+
+.network-device {
+ position: absolute;
+ z-index: 4;
+ top: 178px;
+ display: grid;
+ width: 105px;
+ height: 145px;
+ place-items: center;
+ border: 5px solid #3b3340;
+ border-radius: 20px;
+ background: linear-gradient(145deg, #29222d, #171419);
+ box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
+ color: #d89bff;
+}
+
+.network-device-left { left: 30px; transform: rotate(-5deg); }
+.network-device-right { right: 30px; transform: rotate(5deg); }
+.network-device svg { width: 31px; }
+.network-device small {
+ position: absolute;
+ bottom: 14px;
+ color: #756b79;
+ font-family: var(--font-mono);
+ font-size: 7px;
+ font-weight: 800;
+ letter-spacing: 0.09em;
+}
+
+.network-device-top {
+ position: absolute;
+ top: 8px;
+ left: 50%;
+ width: 35px;
+ height: 5px;
+ border-radius: 999px;
+ background: #080609;
+ transform: translateX(-50%);
+}
+
+.network-routes {
+ position: absolute;
+ z-index: 2;
+ inset: 34px 0 auto;
+ width: 100%;
+ height: calc(100% - 40px);
+ overflow: visible;
+}
+
+.network-direct-glow,
+.network-direct,
+.network-direct-pulse,
+.network-relay-base,
+.network-relay-line {
+ fill: none;
+ stroke-linecap: round;
+}
+
+.network-direct-glow {
+ stroke: rgba(168, 85, 247, 0.26);
+ stroke-width: 20;
+ filter: url(#network-route-glow);
+}
+
+.network-direct {
+ stroke: #3d3343;
+ stroke-width: 8;
+}
+
+.network-direct-pulse {
+ stroke: url(#network-route-gradient);
+ stroke-width: 3;
+ stroke-dasharray: 4 18;
+ animation: network-dash 2.2s linear infinite;
+}
+
+.network-relay-base {
+ stroke: #2e2732;
+ stroke-width: 5;
+}
+
+.network-relay-line {
+ stroke: #776681;
+ stroke-width: 2;
+ stroke-dasharray: 4 11;
+ animation: network-dash 3.4s linear infinite reverse;
+}
+
+.network-direct-label {
+ position: absolute;
+ z-index: 5;
+ top: 62px;
+ left: 50%;
+ display: flex;
+ align-items: center;
+ gap: 9px;
+ padding: 7px 10px;
+ border: 1px solid #372c3c;
+ border-radius: 999px;
+ background: rgba(25, 20, 28, 0.82);
+ color: #9a8fa0;
+ font-family: var(--font-mono);
+ font-size: 7px;
+ font-weight: 800;
+ letter-spacing: 0.08em;
+ transform: translateX(-50%);
+}
+
+.network-relay-node {
+ position: absolute;
+ z-index: 5;
+ bottom: 39px;
+ left: 50%;
+ display: flex;
+ align-items: center;
+ flex-direction: column;
+ transform: translateX(-50%);
+}
+
+.relay-core {
+ position: relative;
+ z-index: 2;
+ display: grid;
+ width: 66px;
+ height: 66px;
+ margin-bottom: 11px;
+ place-items: center;
+ border: 1px solid #5c426a;
+ border-radius: 20px;
+ background: linear-gradient(145deg, #312139, #1d1721);
+ box-shadow: 0 0 45px rgba(168, 85, 247, 0.18);
+ color: #d294fc;
+ transform: rotate(45deg);
+}
+
+.relay-core svg { width: 24px; transform: rotate(-45deg); }
+.network-relay-node strong { color: #d9d1dc; font-size: 10px; }
+.network-relay-node small { color: #756b79; font-size: 7px; }
+
+.relay-ring {
+ position: absolute;
+ top: -18px;
+ left: 50%;
+ border: 1px solid rgba(168, 85, 247, 0.3);
+ border-radius: 50%;
+ transform: translateX(-50%);
+ animation: relay-ring 3s ease-out infinite;
+}
+
+.relay-ring-one { width: 100px; height: 100px; }
+.relay-ring-two { width: 136px; height: 136px; animation-delay: 1.2s; }
+
+.network-packet {
+ position: absolute;
+ z-index: 3;
+ display: grid;
+ width: 26px;
+ height: 32px;
+ place-items: center;
+ border: 1px solid #aa65d2;
+ border-radius: 6px;
+ background: #2c2231;
+ color: #d69bfa;
+ opacity: 0;
+}
+
+.network-packet svg { width: 13px; }
+.network-packet-one { animation: network-packet-top 6s ease-in-out infinite; }
+.network-packet-two { animation: network-packet-bottom 7s ease-in-out 2.2s infinite; }
+
diff --git a/docs/components/platform-orbit.tsx b/docs/components/platform-orbit.tsx
new file mode 100644
index 0000000..bfb1c00
--- /dev/null
+++ b/docs/components/platform-orbit.tsx
@@ -0,0 +1,25 @@
+import { BrandMark } from "@/components/brand";
+
+const platforms = ["Android", "iOS", "macOS", "Windows", "Linux"];
+
+export function PlatformOrbit() {
+ return (
+
+
+
+
+
+
+
+ {platforms.map((platform, index) => (
+
+
+ {platform}
+
+ ))}
+
+ );
+}
diff --git a/docs/components/platform-scene.css b/docs/components/platform-scene.css
new file mode 100644
index 0000000..1e3d4f8
--- /dev/null
+++ b/docs/components/platform-scene.css
@@ -0,0 +1,103 @@
+/* Cross-platform orbit */
+.platform-orbit {
+ position: relative;
+ width: min(100%, 610px);
+ aspect-ratio: 1;
+ margin: 0 auto;
+}
+
+.platform-ring {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ border: 1px solid #e2d8e7;
+ border-radius: 50%;
+ transform: translate(-50%, -50%);
+}
+
+.platform-ring::before,
+.platform-ring::after {
+ position: absolute;
+ border-radius: 50%;
+ background: var(--brand-400);
+ box-shadow: 0 0 0 7px rgba(168, 85, 247, 0.08);
+ content: "";
+}
+
+.platform-ring-outer {
+ width: 88%;
+ height: 88%;
+ animation: orbit-spin 35s linear infinite;
+}
+
+.platform-ring-outer::before { top: 13%; left: 10%; width: 7px; height: 7px; }
+.platform-ring-outer::after { right: 7%; bottom: 23%; width: 5px; height: 5px; }
+
+.platform-ring-inner {
+ width: 58%;
+ height: 58%;
+ border-style: dashed;
+ animation: orbit-spin 25s linear infinite reverse;
+}
+
+.platform-ring-inner::before { top: 48%; left: -4px; width: 7px; height: 7px; }
+.platform-ring-inner::after { top: 4%; right: 23%; width: 5px; height: 5px; }
+
+.platform-center {
+ position: absolute;
+ z-index: 2;
+ top: 50%;
+ left: 50%;
+ display: grid;
+ width: 145px;
+ height: 145px;
+ place-items: center;
+ border: 1px solid #e5d8eb;
+ border-radius: 38px;
+ background: white;
+ box-shadow: 0 30px 80px rgba(55, 29, 67, 0.16);
+ transform: translate(-50%, -50%) rotate(-3deg);
+}
+
+.platform-center svg { position: relative; z-index: 2; width: 87px; height: 87px; }
+
+.platform-center-glow {
+ position: absolute;
+ inset: -45px;
+ border-radius: 50%;
+ background: rgba(168, 85, 247, 0.18);
+ filter: blur(42px);
+ animation: platform-glow 5s ease-in-out infinite;
+}
+
+.platform-chip {
+ position: absolute;
+ z-index: 4;
+ display: inline-flex;
+ align-items: center;
+ gap: 8px;
+ padding: 10px 14px;
+ border: 1px solid #e2d9e6;
+ border-radius: 999px;
+ background: rgba(255, 255, 255, 0.93);
+ box-shadow: 0 12px 35px rgba(53, 34, 61, 0.1);
+ color: #4b4350;
+ font-size: 11px;
+ font-weight: 700;
+ animation: platform-chip-float 5s ease-in-out infinite;
+}
+
+.platform-chip i {
+ width: 7px;
+ height: 7px;
+ border-radius: 50%;
+ background: var(--brand-500);
+ box-shadow: 0 0 0 4px var(--brand-100);
+}
+
+.platform-chip-1 { top: 8%; left: 17%; animation-delay: -1s; }
+.platform-chip-2 { top: 19%; right: 5%; animation-delay: -2.7s; }
+.platform-chip-3 { right: 1%; bottom: 22%; animation-delay: -4s; }
+.platform-chip-4 { bottom: 7%; left: 24%; animation-delay: -0.5s; }
+.platform-chip-5 { top: 45%; left: 0; animation-delay: -3.2s; }
+
diff --git a/docs/components/reveal.tsx b/docs/components/reveal.tsx
new file mode 100644
index 0000000..6c9c3d2
--- /dev/null
+++ b/docs/components/reveal.tsx
@@ -0,0 +1,52 @@
+"use client";
+
+import type { CSSProperties, ReactNode } from "react";
+import { useEffect, useRef } from "react";
+
+type RevealProps = {
+ children: ReactNode;
+ className?: string;
+ delay?: number;
+};
+
+export function Reveal({ children, className = "", delay = 0 }: RevealProps) {
+ const targetRef = useRef(null);
+
+ useEffect(() => {
+ const root = document.documentElement;
+ root.classList.add("motion-ready");
+ const target = targetRef.current;
+ if (!target) return;
+ const reduceMotion = window.matchMedia("(prefers-reduced-motion: reduce)").matches;
+
+ if (reduceMotion || !("IntersectionObserver" in window)) {
+ target.classList.add("is-visible");
+ return;
+ }
+
+ const observer = new IntersectionObserver(
+ (entries) => {
+ entries.forEach((entry) => {
+ if (!entry.isIntersecting) return;
+ entry.target.classList.add("is-visible");
+ observer.unobserve(entry.target);
+ });
+ },
+ { rootMargin: "0px 0px -10%", threshold: 0.08 },
+ );
+
+ observer.observe(target);
+ return () => observer.disconnect();
+ }, []);
+
+ return (
+
+ {children}
+
+ );
+}
diff --git a/docs/components/site-footer.tsx b/docs/components/site-footer.tsx
new file mode 100644
index 0000000..45ffb98
--- /dev/null
+++ b/docs/components/site-footer.tsx
@@ -0,0 +1,47 @@
+import Link from "next/link";
+import { BrandMark } from "@/components/brand";
+import { Icon } from "@/components/icons";
+
+export function SiteFooter() {
+ return (
+
+ );
+}
diff --git a/docs/components/site-header.tsx b/docs/components/site-header.tsx
new file mode 100644
index 0000000..07c743c
--- /dev/null
+++ b/docs/components/site-header.tsx
@@ -0,0 +1,71 @@
+"use client";
+
+import Link from "next/link";
+import { useState } from "react";
+import { Brand } from "@/components/brand";
+import { Icon } from "@/components/icons";
+
+const navigation = [
+ { href: "/#how-it-works", label: "How it works" },
+ { href: "/#privacy", label: "Privacy" },
+ { href: "/#platforms", label: "Platforms" },
+];
+
+export function SiteHeader() {
+ const [open, setOpen] = useState(false);
+
+ return (
+
+ );
+}
diff --git a/docs/components/transfer-flow.css b/docs/components/transfer-flow.css
new file mode 100644
index 0000000..7c5924b
--- /dev/null
+++ b/docs/components/transfer-flow.css
@@ -0,0 +1,278 @@
+/* Five-step transfer flow */
+.flow-layout {
+ display: grid;
+ grid-template-columns: minmax(520px, 1.1fr) minmax(390px, 0.9fr);
+ align-items: start;
+ gap: 80px;
+}
+
+.flow-visual {
+ position: sticky;
+ top: 115px;
+ height: 660px;
+ overflow: hidden;
+ border: 1px solid var(--line);
+ border-radius: 27px;
+ background:
+ linear-gradient(rgba(112, 85, 124, 0.06) 1px, transparent 1px),
+ linear-gradient(90deg, rgba(112, 85, 124, 0.06) 1px, transparent 1px),
+ linear-gradient(145deg, #fdfbfe, #f4eff6);
+ background-size: 28px 28px, 28px 28px, auto;
+ box-shadow: inset 0 1px white, var(--shadow-sm);
+}
+
+.flow-visual::after {
+ position: absolute;
+ inset: 0;
+ background: radial-gradient(circle at center, transparent 20%, rgba(248, 244, 250, 0.65) 78%);
+ content: "";
+ pointer-events: none;
+}
+
+.flow-visual-glow {
+ position: absolute;
+ top: 30%;
+ left: 32%;
+ width: 40%;
+ aspect-ratio: 1;
+ border-radius: 50%;
+ background: rgba(168, 85, 247, 0.18);
+ filter: blur(55px);
+ animation: flow-glow 7s ease-in-out infinite;
+}
+
+.flow-track {
+ position: absolute;
+ z-index: 2;
+ inset: 4% 5% auto;
+ width: 90%;
+ height: 92%;
+ overflow: visible;
+}
+
+.flow-track-shadow,
+.flow-track-base,
+.flow-track-energy {
+ fill: none;
+ stroke-linecap: round;
+}
+
+.flow-track-shadow {
+ stroke: rgba(168, 85, 247, 0.22);
+ stroke-width: 34;
+ filter: url(#flow-blur);
+}
+
+.flow-track-base {
+ stroke: #e4dae9;
+ stroke-width: 18;
+}
+
+.flow-track-energy {
+ stroke: url(#flow-gradient);
+ stroke-width: 6;
+ stroke-dasharray: 3 17;
+ animation: conduit-energy 2.1s linear infinite;
+}
+
+.flow-moving-drop,
+.flow-moving-halo {
+ offset-path: path("M132 141c216 14 240 88 153 159-89 73-43 157 81 160");
+ offset-rotate: 0deg;
+ animation: flow-drop 8s cubic-bezier(0.45, 0.08, 0.35, 0.98) infinite;
+}
+
+.flow-moving-halo {
+ animation-delay: -0.08s;
+}
+
+.flow-gate {
+ transform-origin: 241px 299px;
+ animation: gate-breathe 3.5s ease-in-out infinite;
+}
+
+.flow-device {
+ position: absolute;
+ z-index: 4;
+ display: grid;
+ width: 168px;
+ height: 258px;
+ place-items: center;
+ border: 7px solid #d7cfdc;
+ border-radius: 28px;
+ background: #211d24;
+ box-shadow: 0 24px 55px rgba(48, 31, 56, 0.18), inset 0 0 0 1px #ada2b3;
+}
+
+.flow-device-sender {
+ top: 46px;
+ left: 31px;
+ transform: rotate(-6deg);
+}
+
+.flow-device-receiver {
+ right: 25px;
+ bottom: 32px;
+ transform: rotate(5deg);
+}
+
+.flow-device-camera {
+ position: absolute;
+ top: 8px;
+ left: 50%;
+ width: 54px;
+ height: 7px;
+ border-radius: 999px;
+ background: #0c0a0e;
+ transform: translateX(-50%);
+}
+
+.flow-device-content {
+ display: flex;
+ width: 100%;
+ height: 100%;
+ align-items: center;
+ flex-direction: column;
+ justify-content: center;
+ padding: 25px 15px 15px;
+ color: white;
+ text-align: center;
+}
+
+.flow-mini-label {
+ margin-bottom: 20px;
+ color: #8c7e93;
+ font-family: var(--font-mono);
+ font-size: 7px;
+ font-weight: 800;
+ letter-spacing: 0.12em;
+}
+
+.flow-file-stack {
+ position: relative;
+ width: 74px;
+ height: 82px;
+ margin-bottom: 16px;
+}
+
+.flow-file-stack span {
+ position: absolute;
+ display: grid;
+ width: 50px;
+ height: 66px;
+ place-items: center;
+ border: 1px solid rgba(216, 180, 254, 0.5);
+ border-radius: 9px;
+ background: #392e40;
+ color: #d9a8fb;
+}
+
+.flow-file-stack span:nth-child(1) { left: 0; transform: rotate(-10deg); }
+.flow-file-stack span:nth-child(2) { right: 0; transform: rotate(10deg); }
+.flow-file-stack span:nth-child(3) { left: 12px; background: #f7effc; color: var(--brand-600); }
+.flow-file-stack svg { width: 22px; }
+
+.flow-device-content strong {
+ font-family: var(--font-display);
+ font-size: 13px;
+}
+
+.flow-device-content small {
+ color: #928798;
+ font-size: 9px;
+}
+
+.flow-complete-ring {
+ display: grid;
+ width: 70px;
+ height: 70px;
+ margin-bottom: 18px;
+ place-items: center;
+ border: 1px solid rgba(216, 180, 254, 0.4);
+ border-radius: 50%;
+ background: radial-gradient(circle, rgba(168, 85, 247, 0.26), rgba(168, 85, 247, 0.05));
+ color: #d59aff;
+ animation: complete-ring 3.5s ease-in-out infinite;
+}
+
+.flow-complete-ring svg {
+ width: 30px;
+ stroke-width: 2.4;
+}
+
+.flow-annotation {
+ position: absolute;
+ z-index: 5;
+ padding: 5px 8px;
+ border: 1px solid #ded4e3;
+ border-radius: 7px;
+ background: rgba(255, 255, 255, 0.85);
+ color: var(--brand-600);
+ font-family: var(--font-mono);
+ font-size: 7px;
+ font-weight: 800;
+ letter-spacing: 0.08em;
+}
+
+.flow-annotation-one { top: 35%; right: 12%; transform: rotate(4deg); }
+.flow-annotation-two { bottom: 11%; left: 25%; transform: rotate(-4deg); }
+
+.flow-steps {
+ display: grid;
+ gap: 12px;
+ margin: 0;
+ padding: 0;
+ list-style: none;
+}
+
+.flow-step {
+ display: grid;
+ grid-template-columns: auto 1fr;
+ gap: 18px;
+ padding: 24px;
+ border: 1px solid var(--line);
+ border-radius: 18px;
+ background: rgba(255, 255, 255, 0.8);
+ transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
+}
+
+.flow-step:hover {
+ transform: translateX(6px);
+ border-color: var(--brand-300);
+ box-shadow: var(--shadow-sm);
+}
+
+.flow-step-icon {
+ display: grid;
+ width: 44px;
+ height: 44px;
+ place-items: center;
+ border-radius: 12px;
+ background: var(--brand-100);
+ color: var(--brand-600);
+}
+
+.flow-step-icon svg { width: 21px; }
+
+.flow-step-number {
+ display: inline-block;
+ margin-bottom: 2px;
+ color: var(--brand-500);
+ font-family: var(--font-mono);
+ font-size: 9px;
+ font-weight: 800;
+}
+
+.flow-step h3 {
+ margin-bottom: 7px;
+ font-size: 18px;
+ letter-spacing: -0.025em;
+}
+
+.flow-step p {
+ margin-bottom: 0;
+ color: var(--ink-muted);
+ font-size: 13px;
+ line-height: 1.58;
+}
+
diff --git a/docs/components/transfer-flow.tsx b/docs/components/transfer-flow.tsx
new file mode 100644
index 0000000..42298d1
--- /dev/null
+++ b/docs/components/transfer-flow.tsx
@@ -0,0 +1,108 @@
+import { Icon, type IconName } from "@/components/icons";
+
+const steps: Array<{
+ number: string;
+ icon: IconName;
+ title: string;
+ text: string;
+}> = [
+ {
+ number: "01",
+ icon: "folder",
+ title: "Pick anything",
+ text: "Choose one file, a whole batch, or a complete folder. Its structure stays intact.",
+ },
+ {
+ number: "02",
+ icon: "qr",
+ title: "Pass a tiny invitation",
+ text: "Share a QR code, tap an NFC tag, or send a portable .vnd invitation file.",
+ },
+ {
+ number: "03",
+ icon: "shield",
+ title: "Let them knock",
+ text: "Every new receiver asks first by default. You choose approve or refuse.",
+ },
+ {
+ number: "04",
+ icon: "verified",
+ title: "Stream and verify",
+ text: "Files move over an authenticated encrypted connection and are verified as they arrive.",
+ },
+ {
+ number: "05",
+ icon: "stop",
+ title: "Close the door",
+ text: "Follow each receiver, cancel in progress, or stop sharing to revoke the invitation.",
+ },
+];
+
+export function TransferFlow() {
+ return (
+
+
+
+
+
+
+
SELECTED
+
+
+
+
+
+
Project files
+
18 items · 248 MB
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ All received
+ 18 items verified
+
+
+
E2E
+
VERIFIED
+
+
+ {steps.map((step) => (
+
+
+
+
+
+
{step.number}
+
{step.title}
+
{step.text}
+
+
+ ))}
+
+
+ );
+}
diff --git a/docs/eslint.config.mjs b/docs/eslint.config.mjs
new file mode 100644
index 0000000..cdb0027
--- /dev/null
+++ b/docs/eslint.config.mjs
@@ -0,0 +1,9 @@
+import { defineConfig, globalIgnores } from "eslint/config";
+import nextVitals from "eslint-config-next/core-web-vitals";
+import nextTypeScript from "eslint-config-next/typescript";
+
+export default defineConfig([
+ ...nextVitals,
+ ...nextTypeScript,
+ globalIgnores([".next/**", "out/**", "next-env.d.ts"]),
+]);
diff --git a/docs/next-env.d.ts b/docs/next-env.d.ts
new file mode 100644
index 0000000..c4b7818
--- /dev/null
+++ b/docs/next-env.d.ts
@@ -0,0 +1,6 @@
+///
+///
+import "./.next/dev/types/routes.d.ts";
+
+// NOTE: This file should not be edited
+// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
diff --git a/docs/next.config.ts b/docs/next.config.ts
new file mode 100644
index 0000000..a18b38e
--- /dev/null
+++ b/docs/next.config.ts
@@ -0,0 +1,8 @@
+import type { NextConfig } from "next";
+
+const nextConfig: NextConfig = {
+ output: "export",
+ trailingSlash: true,
+};
+
+export default nextConfig;
diff --git a/docs/package-lock.json b/docs/package-lock.json
new file mode 100644
index 0000000..7548bbf
--- /dev/null
+++ b/docs/package-lock.json
@@ -0,0 +1,6082 @@
+{
+ "name": "vnidrop-site",
+ "version": "0.1.0",
+ "lockfileVersion": 3,
+ "requires": true,
+ "packages": {
+ "": {
+ "name": "vnidrop-site",
+ "version": "0.1.0",
+ "dependencies": {
+ "next": "16.2.10",
+ "react": "19.2.7",
+ "react-dom": "19.2.7"
+ },
+ "devDependencies": {
+ "@types/node": "26.1.1",
+ "@types/react": "19.2.17",
+ "@types/react-dom": "19.2.3",
+ "eslint": "9.39.5",
+ "eslint-config-next": "16.2.10",
+ "typescript": "5.9.3"
+ },
+ "engines": {
+ "node": ">=22.12"
+ }
+ },
+ "node_modules/@babel/code-frame": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.7.tgz",
+ "integrity": "sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-validator-identifier": "^7.29.7",
+ "js-tokens": "^4.0.0",
+ "picocolors": "^1.1.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/compat-data": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.7.tgz",
+ "integrity": "sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/core": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.7.tgz",
+ "integrity": "sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.29.7",
+ "@babel/generator": "^7.29.7",
+ "@babel/helper-compilation-targets": "^7.29.7",
+ "@babel/helper-module-transforms": "^7.29.7",
+ "@babel/helpers": "^7.29.7",
+ "@babel/parser": "^7.29.7",
+ "@babel/template": "^7.29.7",
+ "@babel/traverse": "^7.29.7",
+ "@babel/types": "^7.29.7",
+ "@jridgewell/remapping": "^2.3.5",
+ "convert-source-map": "^2.0.0",
+ "debug": "^4.1.0",
+ "gensync": "^1.0.0-beta.2",
+ "json5": "^2.2.3",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/babel"
+ }
+ },
+ "node_modules/@babel/generator": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.7.tgz",
+ "integrity": "sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/parser": "^7.29.7",
+ "@babel/types": "^7.29.7",
+ "@jridgewell/gen-mapping": "^0.3.12",
+ "@jridgewell/trace-mapping": "^0.3.28",
+ "jsesc": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-compilation-targets": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.29.7.tgz",
+ "integrity": "sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/compat-data": "^7.29.7",
+ "@babel/helper-validator-option": "^7.29.7",
+ "browserslist": "^4.24.0",
+ "lru-cache": "^5.1.1",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-globals": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.29.7.tgz",
+ "integrity": "sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-imports": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.29.7.tgz",
+ "integrity": "sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/traverse": "^7.29.7",
+ "@babel/types": "^7.29.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-module-transforms": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.29.7.tgz",
+ "integrity": "sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-module-imports": "^7.29.7",
+ "@babel/helper-validator-identifier": "^7.29.7",
+ "@babel/traverse": "^7.29.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.0.0"
+ }
+ },
+ "node_modules/@babel/helper-string-parser": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.29.7.tgz",
+ "integrity": "sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-identifier": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.29.7.tgz",
+ "integrity": "sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helper-validator-option": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.29.7.tgz",
+ "integrity": "sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/helpers": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.7.tgz",
+ "integrity": "sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/template": "^7.29.7",
+ "@babel/types": "^7.29.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/parser": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.7.tgz",
+ "integrity": "sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/types": "^7.29.7"
+ },
+ "bin": {
+ "parser": "bin/babel-parser.js"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@babel/template": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.29.7.tgz",
+ "integrity": "sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.29.7",
+ "@babel/parser": "^7.29.7",
+ "@babel/types": "^7.29.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/traverse": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.7.tgz",
+ "integrity": "sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/code-frame": "^7.29.7",
+ "@babel/generator": "^7.29.7",
+ "@babel/helper-globals": "^7.29.7",
+ "@babel/parser": "^7.29.7",
+ "@babel/template": "^7.29.7",
+ "@babel/types": "^7.29.7",
+ "debug": "^4.3.1"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@babel/types": {
+ "version": "7.29.7",
+ "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.7.tgz",
+ "integrity": "sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/helper-string-parser": "^7.29.7",
+ "@babel/helper-validator-identifier": "^7.29.7"
+ },
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/@emnapi/core": {
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz",
+ "integrity": "sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@emnapi/wasi-threads": "1.2.1",
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@emnapi/runtime": {
+ "version": "1.11.2",
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.11.2.tgz",
+ "integrity": "sha512-kyOl3X0DuTiT1h2ft8r2fYO8JYtU9a9Xis/zBSiGArNaagCOWx90N1k2wxp18czFDH+OgcWGb5ZP/XMt3dcyPA==",
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@emnapi/wasi-threads": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz",
+ "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@eslint-community/eslint-utils": {
+ "version": "4.9.1",
+ "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz",
+ "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "eslint-visitor-keys": "^3.4.3"
+ },
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
+ }
+ },
+ "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
+ "version": "3.4.3",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
+ "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/@eslint-community/regexpp": {
+ "version": "4.12.2",
+ "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz",
+ "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
+ }
+ },
+ "node_modules/@eslint/config-array": {
+ "version": "0.21.2",
+ "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.2.tgz",
+ "integrity": "sha512-nJl2KGTlrf9GjLimgIru+V/mzgSK0ABCDQRvxw5BjURL7WfH5uoWmizbH7QB6MmnMBd8cIC9uceWnezL1VZWWw==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@eslint/object-schema": "^2.1.7",
+ "debug": "^4.3.1",
+ "minimatch": "^3.1.5"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ }
+ },
+ "node_modules/@eslint/config-helpers": {
+ "version": "0.4.2",
+ "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz",
+ "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@eslint/core": "^0.17.0"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ }
+ },
+ "node_modules/@eslint/core": {
+ "version": "0.17.0",
+ "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz",
+ "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@types/json-schema": "^7.0.15"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ }
+ },
+ "node_modules/@eslint/eslintrc": {
+ "version": "3.3.6",
+ "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.6.tgz",
+ "integrity": "sha512-l2Ul9PrHsPCKcEY/ac7VgFj9D80C7S68sOKc618SyHDPK36s1XcFebXY0iTzUVn4Yq+YbwvSnDmCz9yxjX+QrA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ajv": "^6.14.0",
+ "debug": "^4.3.2",
+ "espree": "^10.0.1",
+ "globals": "^14.0.0",
+ "ignore": "^5.2.0",
+ "import-fresh": "^3.2.1",
+ "js-yaml": "^4.3.0",
+ "minimatch": "^3.1.5",
+ "strip-json-comments": "^3.1.1"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/@eslint/eslintrc/node_modules/globals": {
+ "version": "14.0.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz",
+ "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@eslint/js": {
+ "version": "9.39.5",
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.39.5.tgz",
+ "integrity": "sha512-QywQuszQh77pIXCsq998c8hbhSTI/azTty1Z6N53dmAudKHhy573j3yvRLsX2BSp8YpLtoCEG8E9DJe+8zUh4A==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "url": "https://eslint.org/donate"
+ }
+ },
+ "node_modules/@eslint/object-schema": {
+ "version": "2.1.7",
+ "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz",
+ "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ }
+ },
+ "node_modules/@eslint/plugin-kit": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz",
+ "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@eslint/core": "^0.17.0",
+ "levn": "^0.4.1"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ }
+ },
+ "node_modules/@humanfs/core": {
+ "version": "0.19.2",
+ "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.2.tgz",
+ "integrity": "sha512-UhXNm+CFMWcbChXywFwkmhqjs3PRCmcSa/hfBgLIb7oQ5HNb1wS0icWsGtSAUNgefHeI+eBrA8I1fxmbHsGdvA==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@humanfs/types": "^0.15.0"
+ },
+ "engines": {
+ "node": ">=18.18.0"
+ }
+ },
+ "node_modules/@humanfs/node": {
+ "version": "0.16.8",
+ "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.8.tgz",
+ "integrity": "sha512-gE1eQNZ3R++kTzFUpdGlpmy8kDZD/MLyHqDwqjkVQI0JMdI1D51sy1H958PNXYkM2rAac7e5/CnIKZrHtPh3BQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "@humanfs/core": "^0.19.2",
+ "@humanfs/types": "^0.15.0",
+ "@humanwhocodes/retry": "^0.4.0"
+ },
+ "engines": {
+ "node": ">=18.18.0"
+ }
+ },
+ "node_modules/@humanfs/types": {
+ "version": "0.15.0",
+ "resolved": "https://registry.npmjs.org/@humanfs/types/-/types-0.15.0.tgz",
+ "integrity": "sha512-ZZ1w0aoQkwuUuC7Yf+7sdeaNfqQiiLcSRbfI08oAxqLtpXQr9AIVX7Ay7HLDuiLYAaFPu8oBYNq/QIi9URHJ3Q==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=18.18.0"
+ }
+ },
+ "node_modules/@humanwhocodes/module-importer": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
+ "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=12.22"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/nzakas"
+ }
+ },
+ "node_modules/@humanwhocodes/retry": {
+ "version": "0.4.3",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz",
+ "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">=18.18"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/nzakas"
+ }
+ },
+ "node_modules/@img/colour": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz",
+ "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==",
+ "license": "MIT",
+ "optional": true,
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/@img/sharp-darwin-arm64": {
+ "version": "0.34.5",
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz",
+ "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "Apache-2.0",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-darwin-arm64": "1.2.4"
+ }
+ },
+ "node_modules/@img/sharp-darwin-x64": {
+ "version": "0.34.5",
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz",
+ "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "Apache-2.0",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-darwin-x64": "1.2.4"
+ }
+ },
+ "node_modules/@img/sharp-libvips-darwin-arm64": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz",
+ "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "LGPL-3.0-or-later",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-libvips-darwin-x64": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz",
+ "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "LGPL-3.0-or-later",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-libvips-linux-arm": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz",
+ "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==",
+ "cpu": [
+ "arm"
+ ],
+ "license": "LGPL-3.0-or-later",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-libvips-linux-arm64": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz",
+ "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "LGPL-3.0-or-later",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-libvips-linux-ppc64": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz",
+ "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==",
+ "cpu": [
+ "ppc64"
+ ],
+ "license": "LGPL-3.0-or-later",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-libvips-linux-riscv64": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz",
+ "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==",
+ "cpu": [
+ "riscv64"
+ ],
+ "license": "LGPL-3.0-or-later",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-libvips-linux-s390x": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz",
+ "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==",
+ "cpu": [
+ "s390x"
+ ],
+ "license": "LGPL-3.0-or-later",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-libvips-linux-x64": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz",
+ "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "LGPL-3.0-or-later",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-libvips-linuxmusl-arm64": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz",
+ "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "LGPL-3.0-or-later",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-libvips-linuxmusl-x64": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz",
+ "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "LGPL-3.0-or-later",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-linux-arm": {
+ "version": "0.34.5",
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz",
+ "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==",
+ "cpu": [
+ "arm"
+ ],
+ "license": "Apache-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-linux-arm": "1.2.4"
+ }
+ },
+ "node_modules/@img/sharp-linux-arm64": {
+ "version": "0.34.5",
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz",
+ "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "Apache-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-linux-arm64": "1.2.4"
+ }
+ },
+ "node_modules/@img/sharp-linux-ppc64": {
+ "version": "0.34.5",
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz",
+ "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==",
+ "cpu": [
+ "ppc64"
+ ],
+ "license": "Apache-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-linux-ppc64": "1.2.4"
+ }
+ },
+ "node_modules/@img/sharp-linux-riscv64": {
+ "version": "0.34.5",
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz",
+ "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==",
+ "cpu": [
+ "riscv64"
+ ],
+ "license": "Apache-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-linux-riscv64": "1.2.4"
+ }
+ },
+ "node_modules/@img/sharp-linux-s390x": {
+ "version": "0.34.5",
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz",
+ "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==",
+ "cpu": [
+ "s390x"
+ ],
+ "license": "Apache-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-linux-s390x": "1.2.4"
+ }
+ },
+ "node_modules/@img/sharp-linux-x64": {
+ "version": "0.34.5",
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz",
+ "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "Apache-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-linux-x64": "1.2.4"
+ }
+ },
+ "node_modules/@img/sharp-linuxmusl-arm64": {
+ "version": "0.34.5",
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz",
+ "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "Apache-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-linuxmusl-arm64": "1.2.4"
+ }
+ },
+ "node_modules/@img/sharp-linuxmusl-x64": {
+ "version": "0.34.5",
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz",
+ "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "Apache-2.0",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-libvips-linuxmusl-x64": "1.2.4"
+ }
+ },
+ "node_modules/@img/sharp-wasm32": {
+ "version": "0.34.5",
+ "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz",
+ "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==",
+ "cpu": [
+ "wasm32"
+ ],
+ "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
+ "optional": true,
+ "dependencies": {
+ "@emnapi/runtime": "^1.7.0"
+ },
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-win32-arm64": {
+ "version": "0.34.5",
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz",
+ "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-win32-ia32": {
+ "version": "0.34.5",
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz",
+ "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==",
+ "cpu": [
+ "ia32"
+ ],
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@img/sharp-win32-x64": {
+ "version": "0.34.5",
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz",
+ "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ }
+ },
+ "node_modules/@jridgewell/gen-mapping": {
+ "version": "0.3.13",
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/sourcemap-codec": "^1.5.0",
+ "@jridgewell/trace-mapping": "^0.3.24"
+ }
+ },
+ "node_modules/@jridgewell/remapping": {
+ "version": "2.3.5",
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/gen-mapping": "^0.3.5",
+ "@jridgewell/trace-mapping": "^0.3.24"
+ }
+ },
+ "node_modules/@jridgewell/resolve-uri": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/@jridgewell/sourcemap-codec": {
+ "version": "1.5.5",
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@jridgewell/trace-mapping": {
+ "version": "0.3.31",
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@jridgewell/resolve-uri": "^3.1.0",
+ "@jridgewell/sourcemap-codec": "^1.4.14"
+ }
+ },
+ "node_modules/@napi-rs/wasm-runtime": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-1.1.6.tgz",
+ "integrity": "sha512-ZLv/JdUfkvOy9eCnnBaGfiO+XimbjebAeO+MRQqD/B+FR1tnRN0tpKSJHRbE8sFfS6aqsXZ67TQjfwfsxULVbg==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@tybys/wasm-util": "^0.10.3"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/Brooooooklyn"
+ },
+ "peerDependencies": {
+ "@emnapi/core": "^1.7.1",
+ "@emnapi/runtime": "^1.7.1"
+ }
+ },
+ "node_modules/@next/env": {
+ "version": "16.2.10",
+ "resolved": "https://registry.npmjs.org/@next/env/-/env-16.2.10.tgz",
+ "integrity": "sha512-zLPxg9M0MEHmygpj5OuxjQ+vHMiy/K7cSp74G8ecYolmgUWw0RwN02tF56npup/+qaI8JB97hQgS/r2Hb6QwVA==",
+ "license": "MIT"
+ },
+ "node_modules/@next/eslint-plugin-next": {
+ "version": "16.2.10",
+ "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-16.2.10.tgz",
+ "integrity": "sha512-Gs8D2m21VnJeFo9qvYIIqJH94frWerWYu41BprU1pLtRVF7PCQNLiFZZ3fG+iPuj3K83Cwv/rt+msLOy8Qgu3Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fast-glob": "3.3.1"
+ }
+ },
+ "node_modules/@next/swc-darwin-arm64": {
+ "version": "16.2.10",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.2.10.tgz",
+ "integrity": "sha512-v9IdJCa0H0mbo+8z5zwUpOk1Vj7RjkcI5uNYf5Ws1y6szf/p3Mzl9hLaST8SCt6L9h8NGnruZcd2+o0NTNwDhA==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-darwin-x64": {
+ "version": "16.2.10",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.2.10.tgz",
+ "integrity": "sha512-17IS0jJRViROGmA9uGdNR8VPJpfbnaVG7E9qhso5jDLkmyd0lSDORWxbcKINzcFqzZqGwGtMSnrFRxBpuUYjLQ==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-arm64-gnu": {
+ "version": "16.2.10",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.2.10.tgz",
+ "integrity": "sha512-GRQRsRtuciNJvB54AvvuQTiq0oZtFwa1owQqtZD8wwnGpM2L39MV22kpI72YSXLKIyY40LC66EiLFv4PiicXxg==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-arm64-musl": {
+ "version": "16.2.10",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.2.10.tgz",
+ "integrity": "sha512-zkN9MQYS7UQBro+FnISUq1itaQjXI9xqISzuQ+2bc921NcJ1x4yPCqrn77tVN6/dOOXaaWVX3k6/bR07pPwK+A==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-x64-gnu": {
+ "version": "16.2.10",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.2.10.tgz",
+ "integrity": "sha512-iCVJnwvrPYECvA6WM/7+oo+OiTvedIKLxtCLAZP4xZR3nXa1zmzZyLPbYCmWvpd4CvMYF1EMTafd0ii3DygLvA==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-x64-musl": {
+ "version": "16.2.10",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.2.10.tgz",
+ "integrity": "sha512-ov2g4H0dHY9bPoOU83m91hWT7Iq5qy13bUnyyshLU3HGR1Ownn0X9QpmDPc5iIUaahTp7f7LeGAhV4DSFtackw==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-win32-arm64-msvc": {
+ "version": "16.2.10",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.2.10.tgz",
+ "integrity": "sha512-DwAnhLX76HQiFFQNgWlcK+JzlnD1rZ+UK/WY0ZMI/deXpvgnesjNYrqcfo1JzBuz4Kf7o3brIBL0glI1junatA==",
+ "cpu": [
+ "arm64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-win32-x64-msvc": {
+ "version": "16.2.10",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.2.10.tgz",
+ "integrity": "sha512-0JXq3b85Jk9Jg4ntLUbXSPvoDw3gpZou7twuKdoFG2jOw635v7+IiXfTaa0TxVMyx78pUjnrVYwLgjKfX4e6/A==",
+ "cpu": [
+ "x64"
+ ],
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@nodelib/fs.scandir": {
+ "version": "2.1.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
+ "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@nodelib/fs.stat": "2.0.5",
+ "run-parallel": "^1.1.9"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nodelib/fs.stat": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
+ "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nodelib/fs.walk": {
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
+ "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@nodelib/fs.scandir": "2.1.5",
+ "fastq": "^1.6.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/@nolyfill/is-core-module": {
+ "version": "1.0.39",
+ "resolved": "https://registry.npmjs.org/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz",
+ "integrity": "sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12.4.0"
+ }
+ },
+ "node_modules/@rtsao/scc": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz",
+ "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@swc/helpers": {
+ "version": "0.5.15",
+ "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz",
+ "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==",
+ "license": "Apache-2.0",
+ "dependencies": {
+ "tslib": "^2.8.0"
+ }
+ },
+ "node_modules/@tybys/wasm-util": {
+ "version": "0.10.3",
+ "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.3.tgz",
+ "integrity": "sha512-F3fo1MYrRJYL3zER0OUOmkutjr1Vp23m7OsSgp7nq4SP6OqX6C/56XFIPAl5bt3zaBRjmW7SGz3u/6LwFpYcOg==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@types/estree": {
+ "version": "1.0.9",
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz",
+ "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/json-schema": {
+ "version": "7.0.15",
+ "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
+ "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/json5": {
+ "version": "0.0.29",
+ "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
+ "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/node": {
+ "version": "26.1.1",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-26.1.1.tgz",
+ "integrity": "sha512-nxAkRSVkN1Y0JC1W8ky/fTfkGsMmcrRsbx+3XoZE+rMOX71kLYTV7fLXpqud1GpbpP5TuffXFqfX7fH2GgZREw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "undici-types": "~8.3.0"
+ }
+ },
+ "node_modules/@types/react": {
+ "version": "19.2.17",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.17.tgz",
+ "integrity": "sha512-MXfmqaVPEVgkBT/aY0aGCkRWWtByiYQXo3xdQ8r5RzuFrPiRn8Gar2tQdXSUQ2GKV3bkXckek89V8wQBY2Q/Aw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "csstype": "^3.2.2"
+ }
+ },
+ "node_modules/@types/react-dom": {
+ "version": "19.2.3",
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
+ "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "@types/react": "^19.2.0"
+ }
+ },
+ "node_modules/@typescript-eslint/scope-manager": {
+ "version": "8.64.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.64.0.tgz",
+ "integrity": "sha512-CXEaFdYXjSTgKhisNkwCcJwTP8Pl+fmRrEQrri4nm3vU743bALrxzLmq7fHG/7e6a5xO0lDYeURpZmBuhHk54w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/types": "8.64.0",
+ "@typescript-eslint/visitor-keys": "8.64.0"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ }
+ },
+ "node_modules/@typescript-eslint/types": {
+ "version": "8.64.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.64.0.tgz",
+ "integrity": "sha512-qjhfuTfLXjA4IOzXvz0rTjT01BqEiIgPoUeMwiEjnaHKJMTNo8rH5pYW1a2L/0Dnux2fPC85AeyJoWaGa8WxTA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ }
+ },
+ "node_modules/@typescript-eslint/visitor-keys": {
+ "version": "8.64.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.64.0.tgz",
+ "integrity": "sha512-mrtuL8Nsn6gi2H4mo5KMTp823M+3Q19Ew/i+Zlikq20tIMm99C3Ez0dCmkWWnxut20esQvTg8aUSEhMcAOXhEw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/types": "8.64.0",
+ "eslint-visitor-keys": "^5.0.0"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ }
+ },
+ "node_modules/@unrs/resolver-binding-android-arm-eabi": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.12.2.tgz",
+ "integrity": "sha512-g5T90pqg1bo/7mytQx6F4iBNC0Wsh9cu+z9veDbFjc7HjpesJFWD7QMS0NGStXM075+7dJPPVvBbpZlnrdpi/w==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-android-arm64": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.12.2.tgz",
+ "integrity": "sha512-YGCRZv/9GLhwmz6mYDeTsm/92BAyR28l6c2ReweVW5pWgfsitWLY8upvfRlGdoyD8HjeTHSYJWyZGD4KJA/nFQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "android"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-darwin-arm64": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.12.2.tgz",
+ "integrity": "sha512-u9DiNT1auQMO20A9SyTuG3wUgQWB9Z7KjAg0uFuCDR1FsAY8A0CG2S6JpHS1xwm/w1G08bjXZDcyOCjv1WAm2w==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-darwin-x64": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.12.2.tgz",
+ "integrity": "sha512-f7rPLi/T1HVKZu/u6t87lroib16n8vrSzcyxI7lg4BGO9UF26KhQL44sd9eOUgrTYhvRXtWOIZT5PejdPyJfUA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-freebsd-x64": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.12.2.tgz",
+ "integrity": "sha512-BpcOjWCJub6nRZUS2zA20pmLvjtqAtGejETaIyRLiZiQf++cbrjltLA5NN/xaXfqeOBOSlMFbemIl5/S5tljmg==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "freebsd"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.12.2.tgz",
+ "integrity": "sha512-vZTDvdSISZjJx66OzJqtsOhzifbqRjbmI1Mnu49fQDwog5GtDI4QidRiEAYbZCRj9C8YZEW+3ZjqsyS9GR4k2A==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-linux-arm-musleabihf": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.12.2.tgz",
+ "integrity": "sha512-BiPI+IrIlwcW4nLLMM21+B1dFPzd55yAVgVGrdgDjNef+ch03GdxrcyaIz8X9SsQirh/kCQ7mviyWlMxdh2D7g==",
+ "cpu": [
+ "arm"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-linux-arm64-gnu": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.12.2.tgz",
+ "integrity": "sha512-zJc0H99FEPoFfSrNpa91HYfxzfAJCr502oxNK1cfdC9hlaFI43RT+JFCann9JUgZmLzzntChHyn13Sgn9ljHNg==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-linux-arm64-musl": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.12.2.tgz",
+ "integrity": "sha512-KQ3Lki6l+Pz1k/eBipN41ES+YUK30beLGb9YqcB1O542cyLCNE6GaxrfcY3T6EezmGGk84wb5XyO9loTM9tkcA==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-linux-loong64-gnu": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-loong64-gnu/-/resolver-binding-linux-loong64-gnu-1.12.2.tgz",
+ "integrity": "sha512-3SJGEh1DborhG6pyxvhPzCT4bbSIVihsvgJc13P1bHG7KLdNDaF9T3gsTwFc7Jw/5Y5/iWOjkEx7Zy0NvCGX3Q==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-linux-loong64-musl": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-loong64-musl/-/resolver-binding-linux-loong64-musl-1.12.2.tgz",
+ "integrity": "sha512-jiuG/Obbel7uw1PwHNFfrkiKhLAF6mnyZ6aWlOAVN9WqKm8v0OFGnciJIHu8+CMvXLQ8AD51LPzAoUfT21D5Ew==",
+ "cpu": [
+ "loong64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-linux-ppc64-gnu": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.12.2.tgz",
+ "integrity": "sha512-q7xRvVpmcfeL+LlZg8Pbbo6QaTZwDU5BaGZbwfhkEsXJn3Was8xYfE0RBH266xZt0rM6B7i8xAYIvjthuUIWHg==",
+ "cpu": [
+ "ppc64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-linux-riscv64-gnu": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.12.2.tgz",
+ "integrity": "sha512-0CVdx6lcnT3Q9inOH8tsMIOJ6ImndllMjqJHg8RLVdB7Vq4SfkEXl9mCSsVNuNA4MCYycRicCUxPCabVHJRr6A==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-linux-riscv64-musl": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.12.2.tgz",
+ "integrity": "sha512-iOwlRo9vnp6R6ohHQS11n0NnfdXx/omhkocmIfaPRpQhKZ+3BDMkkdRVh53qjkFkpPddf+FETA28NwGN7l5l+w==",
+ "cpu": [
+ "riscv64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-linux-s390x-gnu": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.12.2.tgz",
+ "integrity": "sha512-HYJtLfXq94q8iZNFT1lknx258wlkkWhZeUXJRqzKBBUJ00CvZ+N33zgbCqimLjsyw5Va6uUxhVa12mI+kaveEw==",
+ "cpu": [
+ "s390x"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-linux-x64-gnu": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.12.2.tgz",
+ "integrity": "sha512-mPsUhunKKDih5O96Y6enDQyHc1SqBPlY1E/SfMWDM3EdJ95Z9CArPeCVwCCqbP45ljvivdEk8Fxn+SIb1rDAJQ==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-linux-x64-musl": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.12.2.tgz",
+ "integrity": "sha512-azrt6+5ydLd8Vt210AAFis/lZevSfPw93EJRIJG+xPu4WCJ8K0kppCTpMyLPcKT7H15M4Jnt2tMp5bOvCkRC6A==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "linux"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-openharmony-arm64": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-openharmony-arm64/-/resolver-binding-openharmony-arm64-1.12.2.tgz",
+ "integrity": "sha512-YZ9hP4O0X9PQb8eO980qmLNGH4zT3I9+SZTdt0Pr0YyuGQhYKoOZkV02VzrzyOZJ5xIJ3UFIenKkUkGg8GjgWQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "openharmony"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-wasm32-wasi": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.12.2.tgz",
+ "integrity": "sha512-tYFDIkMxSflfEc/h92ZWNsZlHSwgimbNHSO3PL2JWQHfCuC2q316jMyYU9TIWZsFK2bQwyK5VAdYgn8ygPj69A==",
+ "cpu": [
+ "wasm32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@emnapi/core": "1.10.0",
+ "@emnapi/runtime": "1.10.0",
+ "@napi-rs/wasm-runtime": "^1.1.4"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@unrs/resolver-binding-wasm32-wasi/node_modules/@emnapi/runtime": {
+ "version": "1.10.0",
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz",
+ "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "tslib": "^2.4.0"
+ }
+ },
+ "node_modules/@unrs/resolver-binding-win32-arm64-msvc": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.12.2.tgz",
+ "integrity": "sha512-qzNyg3xL0VPQmCaUh+N5jSitce6k+uCBfMDesWRnlULOZaqUkaJ0ybdT+UqlAWJoQjuqfIU/0Ptx9bteN4D82g==",
+ "cpu": [
+ "arm64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-win32-ia32-msvc": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.12.2.tgz",
+ "integrity": "sha512-WD9sY00OfpHVGfsnHZoA8jVT+esS/Bg8z8jzxp5BnDCjjwsuKsPQrzswwpFy4J1AUJbXPRfkpcX0mXrzeXW79g==",
+ "cpu": [
+ "ia32"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/@unrs/resolver-binding-win32-x64-msvc": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.12.2.tgz",
+ "integrity": "sha512-nAB74NfSNKknqQ1RrYj6uz8FcXEomu/MATJZxh/x+BArzN2U3JbOYC0APYzUIGhVY3m5hRxA8VPNdPBoG8txlA==",
+ "cpu": [
+ "x64"
+ ],
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "win32"
+ ]
+ },
+ "node_modules/acorn": {
+ "version": "8.17.0",
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.17.0.tgz",
+ "integrity": "sha512-xRQbDb9BnwDafYNn6Vwl839DYVjqXYb1XVGtWAZ1kcDc6iwAL4hg3B1dZlRiuENFeO2H53gFG3in621AdERVAg==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "acorn": "bin/acorn"
+ },
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/acorn-jsx": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
+ }
+ },
+ "node_modules/ajv": {
+ "version": "6.15.0",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.15.0.tgz",
+ "integrity": "sha512-fgFx7Hfoq60ytK2c7DhnF8jIvzYgOMxfugjLOSMHjLIPgenqa7S7oaagATUq99mV6IYvN2tRmC0wnTYX6iPbMw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
+ }
+ },
+ "node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/argparse": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
+ "dev": true,
+ "license": "Python-2.0"
+ },
+ "node_modules/aria-query": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz",
+ "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/array-buffer-byte-length": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz",
+ "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "is-array-buffer": "^3.0.5"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array-includes": {
+ "version": "3.1.9",
+ "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.9.tgz",
+ "integrity": "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.4",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.24.0",
+ "es-object-atoms": "^1.1.1",
+ "get-intrinsic": "^1.3.0",
+ "is-string": "^1.1.1",
+ "math-intrinsics": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.findlast": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz",
+ "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "es-shim-unscopables": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.findlastindex": {
+ "version": "1.2.6",
+ "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz",
+ "integrity": "sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.4",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.9",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.1.1",
+ "es-shim-unscopables": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.flat": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz",
+ "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.5",
+ "es-shim-unscopables": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.flatmap": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz",
+ "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.5",
+ "es-shim-unscopables": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/array.prototype.tosorted": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz",
+ "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.3",
+ "es-errors": "^1.3.0",
+ "es-shim-unscopables": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/arraybuffer.prototype.slice": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz",
+ "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "array-buffer-byte-length": "^1.0.1",
+ "call-bind": "^1.0.8",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.5",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.6",
+ "is-array-buffer": "^3.0.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/ast-types-flow": {
+ "version": "0.0.8",
+ "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz",
+ "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/async-function": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz",
+ "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/available-typed-arrays": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz",
+ "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "possible-typed-array-names": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/axe-core": {
+ "version": "4.12.1",
+ "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.12.1.tgz",
+ "integrity": "sha512-s7iGf5GaVMxEG0ENN9x+xTr7GFZCb1ZP/1uATUpCEK2X78nDB3RwbtFCo9pGAf9ru+VwoQ464DkaLEeRM08wJA==",
+ "dev": true,
+ "license": "MPL-2.0",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/axobject-query": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz",
+ "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/baseline-browser-mapping": {
+ "version": "2.10.43",
+ "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.43.tgz",
+ "integrity": "sha512-AjYpR78kDWAY3Efj+cDTFH9t9SCoL7OoTp1BOb0mQV7S+6CiLwnWM3FyxhJtdPufDFKzmCSFoUncKjWgJEZTCQ==",
+ "license": "Apache-2.0",
+ "bin": {
+ "baseline-browser-mapping": "dist/cli.cjs"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/brace-expansion": {
+ "version": "1.1.16",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.16.tgz",
+ "integrity": "sha512-IDw48K2/2kRkg9LdJxurvq3lV3aBgq0REY89duEqFRthjlPdXHKMj7EnQOXVckxzgisinf3nHfrcE2FufFLXMw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "node_modules/braces": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
+ "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fill-range": "^7.1.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/browserslist": {
+ "version": "4.28.6",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.6.tgz",
+ "integrity": "sha512-FQBYNK15VMslhLHpA7+n+n1GOlF1kId2xcCg7/j95f24AOF6VDYMNH4mFxF7KuaTdv627faazpOAjFzMrfJOUw==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "baseline-browser-mapping": "^2.10.42",
+ "caniuse-lite": "^1.0.30001803",
+ "electron-to-chromium": "^1.5.389",
+ "node-releases": "^2.0.51",
+ "update-browserslist-db": "^1.2.3"
+ },
+ "bin": {
+ "browserslist": "cli.js"
+ },
+ "engines": {
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
+ }
+ },
+ "node_modules/call-bind": {
+ "version": "1.0.9",
+ "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.9.tgz",
+ "integrity": "sha512-a/hy+pNsFUTR+Iz8TCJvXudKVLAnz/DyeSUo10I5yvFDQJBFU2s9uqQpoSrJlroHUKoKqzg+epxyP9lqFdzfBQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "es-define-property": "^1.0.1",
+ "get-intrinsic": "^1.3.0",
+ "set-function-length": "^1.2.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/call-bind-apply-helpers": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/call-bound": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
+ "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "get-intrinsic": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/callsites": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
+ "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/caniuse-lite": {
+ "version": "1.0.30001806",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001806.tgz",
+ "integrity": "sha512-72Cuvd95zbSYPKq6Fhg8eDJRlzgWDf7/mtoZv6Qe/DYNCEBdNxoA3+rZAU2ZhGCpZlns3EssFavaZomckT5Uuw==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "CC-BY-4.0"
+ },
+ "node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/client-only": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
+ "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==",
+ "license": "MIT"
+ },
+ "node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/concat-map": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/convert-source-map": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
+ "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/cross-spawn": {
+ "version": "7.0.6",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/csstype": {
+ "version": "3.2.3",
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
+ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/damerau-levenshtein": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz",
+ "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==",
+ "dev": true,
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/data-view-buffer": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz",
+ "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "es-errors": "^1.3.0",
+ "is-data-view": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/data-view-byte-length": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz",
+ "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "es-errors": "^1.3.0",
+ "is-data-view": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/inspect-js"
+ }
+ },
+ "node_modules/data-view-byte-offset": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz",
+ "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "is-data-view": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/debug": {
+ "version": "4.4.3",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/deep-is": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
+ "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/define-data-property": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz",
+ "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-define-property": "^1.0.0",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/define-properties": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz",
+ "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "define-data-property": "^1.0.1",
+ "has-property-descriptors": "^1.0.0",
+ "object-keys": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/detect-libc": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
+ "license": "Apache-2.0",
+ "optional": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/doctrine": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
+ "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "esutils": "^2.0.2"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/dunder-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.2.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/electron-to-chromium": {
+ "version": "1.5.392",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.392.tgz",
+ "integrity": "sha512-1yQq3VQCZRwsnYc67Oc+1fge6Lwtn0hzi6zmEVkB61Zx21kTbwJAW4dFLadl5Rc1tKhG/kSpYXnfiAhu0f0a1g==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/emoji-regex": {
+ "version": "9.2.2",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/es-abstract": {
+ "version": "1.24.2",
+ "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.2.tgz",
+ "integrity": "sha512-2FpH9Q5i2RRwyEP1AylXe6nYLR5OhaJTZwmlcP0dL/+JCbgg7yyEo/sEK6HeGZRf3dFpWwThaRHVApXSkW3xeg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "array-buffer-byte-length": "^1.0.2",
+ "arraybuffer.prototype.slice": "^1.0.4",
+ "available-typed-arrays": "^1.0.7",
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.4",
+ "data-view-buffer": "^1.0.2",
+ "data-view-byte-length": "^1.0.2",
+ "data-view-byte-offset": "^1.0.1",
+ "es-define-property": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.1.1",
+ "es-set-tostringtag": "^2.1.0",
+ "es-to-primitive": "^1.3.0",
+ "function.prototype.name": "^1.1.8",
+ "get-intrinsic": "^1.3.0",
+ "get-proto": "^1.0.1",
+ "get-symbol-description": "^1.1.0",
+ "globalthis": "^1.0.4",
+ "gopd": "^1.2.0",
+ "has-property-descriptors": "^1.0.2",
+ "has-proto": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "internal-slot": "^1.1.0",
+ "is-array-buffer": "^3.0.5",
+ "is-callable": "^1.2.7",
+ "is-data-view": "^1.0.2",
+ "is-negative-zero": "^2.0.3",
+ "is-regex": "^1.2.1",
+ "is-set": "^2.0.3",
+ "is-shared-array-buffer": "^1.0.4",
+ "is-string": "^1.1.1",
+ "is-typed-array": "^1.1.15",
+ "is-weakref": "^1.1.1",
+ "math-intrinsics": "^1.1.0",
+ "object-inspect": "^1.13.4",
+ "object-keys": "^1.1.1",
+ "object.assign": "^4.1.7",
+ "own-keys": "^1.0.1",
+ "regexp.prototype.flags": "^1.5.4",
+ "safe-array-concat": "^1.1.3",
+ "safe-push-apply": "^1.0.0",
+ "safe-regex-test": "^1.1.0",
+ "set-proto": "^1.0.0",
+ "stop-iteration-iterator": "^1.1.0",
+ "string.prototype.trim": "^1.2.10",
+ "string.prototype.trimend": "^1.0.9",
+ "string.prototype.trimstart": "^1.0.8",
+ "typed-array-buffer": "^1.0.3",
+ "typed-array-byte-length": "^1.0.3",
+ "typed-array-byte-offset": "^1.0.4",
+ "typed-array-length": "^1.0.7",
+ "unbox-primitive": "^1.1.0",
+ "which-typed-array": "^1.1.19"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/es-abstract-get": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/es-abstract-get/-/es-abstract-get-1.0.0.tgz",
+ "integrity": "sha512-6PMWXpdhshVvFp+FoWYs1EvG1Nj0tvk0dZM+XcK0xMEM1czRVcP6ohqPWHy6qPagSpC8j4+p89WXlT+xXJs/fg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.1.2",
+ "is-callable": "^1.2.7",
+ "object-inspect": "^1.13.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/es-define-property": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-errors": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-iterator-helpers": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.4.0.tgz",
+ "integrity": "sha512-c/A0P0oxkACDc+cKWw8evLXK83oBKgn0qPOqCYT4x9uolpCIJAcYvJC9QYKNDRPsTeGyCrQ326jrvgZWdCdK5Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.9",
+ "call-bound": "^1.0.4",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.24.2",
+ "es-errors": "^1.3.0",
+ "es-set-tostringtag": "^2.1.0",
+ "function-bind": "^1.1.2",
+ "get-intrinsic": "^1.3.0",
+ "globalthis": "^1.0.4",
+ "gopd": "^1.2.0",
+ "has-property-descriptors": "^1.0.2",
+ "has-proto": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "internal-slot": "^1.1.0",
+ "iterator.prototype": "^1.1.5",
+ "math-intrinsics": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-object-atoms": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.2.tgz",
+ "integrity": "sha512-HWcBoN6NileqtSydK2FqHbS/LoDd2pqrnQHLyJzBj4kOp/ky2MWMN694xOfkK8/SnUsW2DH7EfyVlydKCsm1Zw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-set-tostringtag": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
+ "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.6",
+ "has-tostringtag": "^1.0.2",
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-shim-unscopables": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz",
+ "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-to-primitive": {
+ "version": "1.3.4",
+ "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.4.tgz",
+ "integrity": "sha512-yPDz7wqpg1/mmHLmS3tcfTfbw5f1eryXvyghYBffGdERwe+mV7ZcWzTR8LR17Kvqt3qfPurjlonmnq3MKXIOXw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-abstract-get": "^1.0.0",
+ "es-define-property": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "is-callable": "^1.2.7",
+ "is-date-object": "^1.1.0",
+ "is-symbol": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/escalade": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/escape-string-regexp": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/eslint": {
+ "version": "9.39.5",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.39.5.tgz",
+ "integrity": "sha512-DgZS62aPLXKlnxILS/AYCoRvHaZeXceIzlXPkkGGzJWSow1aEk0lbTlxUSlyjC8jcaKxAdOnTDz+o1JFSBsyjw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@eslint-community/eslint-utils": "^4.8.0",
+ "@eslint-community/regexpp": "^4.12.1",
+ "@eslint/config-array": "^0.21.2",
+ "@eslint/config-helpers": "^0.4.2",
+ "@eslint/core": "^0.17.0",
+ "@eslint/eslintrc": "^3.3.6",
+ "@eslint/js": "9.39.5",
+ "@eslint/plugin-kit": "^0.4.1",
+ "@humanfs/node": "^0.16.6",
+ "@humanwhocodes/module-importer": "^1.0.1",
+ "@humanwhocodes/retry": "^0.4.2",
+ "@types/estree": "^1.0.6",
+ "ajv": "^6.14.0",
+ "chalk": "^4.0.0",
+ "cross-spawn": "^7.0.6",
+ "debug": "^4.3.2",
+ "escape-string-regexp": "^4.0.0",
+ "eslint-scope": "^8.4.0",
+ "eslint-visitor-keys": "^4.2.1",
+ "espree": "^10.4.0",
+ "esquery": "^1.5.0",
+ "esutils": "^2.0.2",
+ "fast-deep-equal": "^3.1.3",
+ "file-entry-cache": "^8.0.0",
+ "find-up": "^5.0.0",
+ "glob-parent": "^6.0.2",
+ "ignore": "^5.2.0",
+ "imurmurhash": "^0.1.4",
+ "is-glob": "^4.0.0",
+ "json-stable-stringify-without-jsonify": "^1.0.1",
+ "lodash.merge": "^4.6.2",
+ "minimatch": "^3.1.5",
+ "natural-compare": "^1.4.0",
+ "optionator": "^0.9.3"
+ },
+ "bin": {
+ "eslint": "bin/eslint.js"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "url": "https://eslint.org/donate"
+ },
+ "peerDependencies": {
+ "jiti": "*"
+ },
+ "peerDependenciesMeta": {
+ "jiti": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/eslint-config-next": {
+ "version": "16.2.10",
+ "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-16.2.10.tgz",
+ "integrity": "sha512-HSybLOY0QKf39i4FWUqPN0xWiNDi6A6UqJmZtgDkS3zMqjXTqULvj/sueXx3cdCG0mVG+qH6k5/qdegklH1d1w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@next/eslint-plugin-next": "16.2.10",
+ "eslint-import-resolver-node": "^0.3.6",
+ "eslint-import-resolver-typescript": "^3.5.2",
+ "eslint-plugin-import": "^2.32.0",
+ "eslint-plugin-jsx-a11y": "^6.10.0",
+ "eslint-plugin-react": "^7.37.0",
+ "eslint-plugin-react-hooks": "^7.0.0",
+ "globals": "16.4.0",
+ "typescript-eslint": "^8.46.0"
+ },
+ "peerDependencies": {
+ "eslint": ">=9.0.0",
+ "typescript": ">=3.3.1"
+ },
+ "peerDependenciesMeta": {
+ "typescript": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/eslint-config-next/node_modules/eslint-import-resolver-typescript": {
+ "version": "3.10.1",
+ "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.10.1.tgz",
+ "integrity": "sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "@nolyfill/is-core-module": "1.0.39",
+ "debug": "^4.4.0",
+ "get-tsconfig": "^4.10.0",
+ "is-bun-module": "^2.0.0",
+ "stable-hash": "^0.0.5",
+ "tinyglobby": "^0.2.13",
+ "unrs-resolver": "^1.6.2"
+ },
+ "engines": {
+ "node": "^14.18.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint-import-resolver-typescript"
+ },
+ "peerDependencies": {
+ "eslint": "*",
+ "eslint-plugin-import": "*",
+ "eslint-plugin-import-x": "*"
+ },
+ "peerDependenciesMeta": {
+ "eslint-plugin-import": {
+ "optional": true
+ },
+ "eslint-plugin-import-x": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/eslint-config-next/node_modules/eslint-plugin-import": {
+ "version": "2.32.0",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz",
+ "integrity": "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@rtsao/scc": "^1.1.0",
+ "array-includes": "^3.1.9",
+ "array.prototype.findlastindex": "^1.2.6",
+ "array.prototype.flat": "^1.3.3",
+ "array.prototype.flatmap": "^1.3.3",
+ "debug": "^3.2.7",
+ "doctrine": "^2.1.0",
+ "eslint-import-resolver-node": "^0.3.9",
+ "eslint-module-utils": "^2.12.1",
+ "hasown": "^2.0.2",
+ "is-core-module": "^2.16.1",
+ "is-glob": "^4.0.3",
+ "minimatch": "^3.1.2",
+ "object.fromentries": "^2.0.8",
+ "object.groupby": "^1.0.3",
+ "object.values": "^1.2.1",
+ "semver": "^6.3.1",
+ "string.prototype.trimend": "^1.0.9",
+ "tsconfig-paths": "^3.15.0"
+ },
+ "engines": {
+ "node": ">=4"
+ },
+ "peerDependencies": {
+ "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9"
+ }
+ },
+ "node_modules/eslint-config-next/node_modules/eslint-plugin-import/node_modules/debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.1"
+ }
+ },
+ "node_modules/eslint-config-next/node_modules/eslint-plugin-jsx-a11y": {
+ "version": "6.10.2",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz",
+ "integrity": "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "aria-query": "^5.3.2",
+ "array-includes": "^3.1.8",
+ "array.prototype.flatmap": "^1.3.2",
+ "ast-types-flow": "^0.0.8",
+ "axe-core": "^4.10.0",
+ "axobject-query": "^4.1.0",
+ "damerau-levenshtein": "^1.0.8",
+ "emoji-regex": "^9.2.2",
+ "hasown": "^2.0.2",
+ "jsx-ast-utils": "^3.3.5",
+ "language-tags": "^1.0.9",
+ "minimatch": "^3.1.2",
+ "object.fromentries": "^2.0.8",
+ "safe-regex-test": "^1.0.3",
+ "string.prototype.includes": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=4.0"
+ },
+ "peerDependencies": {
+ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9"
+ }
+ },
+ "node_modules/eslint-config-next/node_modules/eslint-plugin-react": {
+ "version": "7.37.5",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz",
+ "integrity": "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "array-includes": "^3.1.8",
+ "array.prototype.findlast": "^1.2.5",
+ "array.prototype.flatmap": "^1.3.3",
+ "array.prototype.tosorted": "^1.1.4",
+ "doctrine": "^2.1.0",
+ "es-iterator-helpers": "^1.2.1",
+ "estraverse": "^5.3.0",
+ "hasown": "^2.0.2",
+ "jsx-ast-utils": "^2.4.1 || ^3.0.0",
+ "minimatch": "^3.1.2",
+ "object.entries": "^1.1.9",
+ "object.fromentries": "^2.0.8",
+ "object.values": "^1.2.1",
+ "prop-types": "^15.8.1",
+ "resolve": "^2.0.0-next.5",
+ "semver": "^6.3.1",
+ "string.prototype.matchall": "^4.0.12",
+ "string.prototype.repeat": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=4"
+ },
+ "peerDependencies": {
+ "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7"
+ }
+ },
+ "node_modules/eslint-config-next/node_modules/ignore": {
+ "version": "7.0.6",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.6.tgz",
+ "integrity": "sha512-BAg6QkE8W+TuQLrrw0Ugr7HegXduRuuj8/ti2kSOc+jz1dmx8/WNcjr6XGnq5YpDWxFwwaavqD0+jIUOKelTsw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/eslint-config-next/node_modules/typescript-eslint": {
+ "version": "8.64.0",
+ "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.64.0.tgz",
+ "integrity": "sha512-0qg+pDNMnqYzqH9AnNK+39tejHvsShUOUUoRUgtnTGE7QuMZhiFDnozq8nHJVq+Wae6NMLKNWLg5WmkcC/ndyQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/eslint-plugin": "8.64.0",
+ "@typescript-eslint/parser": "8.64.0",
+ "@typescript-eslint/typescript-estree": "8.64.0",
+ "@typescript-eslint/utils": "8.64.0"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
+ "typescript": ">=4.8.4 <6.1.0"
+ }
+ },
+ "node_modules/eslint-config-next/node_modules/typescript-eslint/node_modules/@typescript-eslint/eslint-plugin": {
+ "version": "8.64.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.64.0.tgz",
+ "integrity": "sha512-CGvQPBxN3wZLu6Rz2kFUpZeoCm78xUic92ck39KPePkO1NPOwjCqdQnm5Q87tpWw9vcBvW8XLrDXjH9PWYtJ3Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@eslint-community/regexpp": "^4.12.2",
+ "@typescript-eslint/scope-manager": "8.64.0",
+ "@typescript-eslint/type-utils": "8.64.0",
+ "@typescript-eslint/utils": "8.64.0",
+ "@typescript-eslint/visitor-keys": "8.64.0",
+ "ignore": "^7.0.5",
+ "natural-compare": "^1.4.0",
+ "ts-api-utils": "^2.5.0"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "@typescript-eslint/parser": "^8.64.0",
+ "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
+ "typescript": ">=4.8.4 <6.1.0"
+ }
+ },
+ "node_modules/eslint-config-next/node_modules/typescript-eslint/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/type-utils": {
+ "version": "8.64.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.64.0.tgz",
+ "integrity": "sha512-XWG4Fmmv/6SvyS9nH8jWrKs6terwJvE8cyRt1CzYYqzp9OrPhCT4cMc/f7C6RZCwG+qMmiffJS1/qJP8G1URtg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/types": "8.64.0",
+ "@typescript-eslint/typescript-estree": "8.64.0",
+ "@typescript-eslint/utils": "8.64.0",
+ "debug": "^4.4.3",
+ "ts-api-utils": "^2.5.0"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
+ "typescript": ">=4.8.4 <6.1.0"
+ }
+ },
+ "node_modules/eslint-config-next/node_modules/typescript-eslint/node_modules/@typescript-eslint/parser": {
+ "version": "8.64.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.64.0.tgz",
+ "integrity": "sha512-KA0OshtlcCCXmbfqyZkM5pV3/WNraJf7DkJRLpyrmwPtud57H5BDX7C3k0LPSPxpprfRL+cJDGabF10mvNCoCw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/scope-manager": "8.64.0",
+ "@typescript-eslint/types": "8.64.0",
+ "@typescript-eslint/typescript-estree": "8.64.0",
+ "@typescript-eslint/visitor-keys": "8.64.0",
+ "debug": "^4.4.3"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
+ "typescript": ">=4.8.4 <6.1.0"
+ }
+ },
+ "node_modules/eslint-config-next/node_modules/typescript-eslint/node_modules/@typescript-eslint/typescript-estree": {
+ "version": "8.64.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.64.0.tgz",
+ "integrity": "sha512-Pztpsn1aCE1oWDvDEfUk31nngvvF7vUB5SwHFEaZIFpvw7WJtqUHHL4plBZDA9HfWJJjL13BdG0YrJInTUvoVA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/project-service": "8.64.0",
+ "@typescript-eslint/tsconfig-utils": "8.64.0",
+ "@typescript-eslint/types": "8.64.0",
+ "@typescript-eslint/visitor-keys": "8.64.0",
+ "debug": "^4.4.3",
+ "minimatch": "^10.2.2",
+ "semver": "^7.7.3",
+ "tinyglobby": "^0.2.15",
+ "ts-api-utils": "^2.5.0"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "typescript": ">=4.8.4 <6.1.0"
+ }
+ },
+ "node_modules/eslint-config-next/node_modules/typescript-eslint/node_modules/@typescript-eslint/typescript-estree/node_modules/@typescript-eslint/project-service": {
+ "version": "8.64.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.64.0.tgz",
+ "integrity": "sha512-tk4WpOJ6IEbGrVHaNmM0YRrwAD3exZlIK3iadQNAxh4YKk6jvUQ4ecq18n+v7+meh+cJ3j+D8nbk8sRKhlwLQg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@typescript-eslint/tsconfig-utils": "^8.64.0",
+ "@typescript-eslint/types": "^8.64.0",
+ "debug": "^4.4.3"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "typescript": ">=4.8.4 <6.1.0"
+ }
+ },
+ "node_modules/eslint-config-next/node_modules/typescript-eslint/node_modules/@typescript-eslint/typescript-estree/node_modules/@typescript-eslint/tsconfig-utils": {
+ "version": "8.64.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.64.0.tgz",
+ "integrity": "sha512-2yo8rRNKuzbVWQp5kslhANqZ2uDAeROQHBRZNPu8JDsHmeFNj/XJJhX/FhNUWmkHHvoNsKa6+tHJiig87EzsQw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "typescript": ">=4.8.4 <6.1.0"
+ }
+ },
+ "node_modules/eslint-config-next/node_modules/typescript-eslint/node_modules/@typescript-eslint/utils": {
+ "version": "8.64.0",
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.64.0.tgz",
+ "integrity": "sha512-aJUGVB3+U0htrrCjoA8qukw8cm8fNCGAxK/tVoS70k8aeb7DETKeFozRiVFIwEeN9WJLsjaP3ph8I60tY2XZoQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@eslint-community/eslint-utils": "^4.9.1",
+ "@typescript-eslint/scope-manager": "8.64.0",
+ "@typescript-eslint/types": "8.64.0",
+ "@typescript-eslint/typescript-estree": "8.64.0"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/typescript-eslint"
+ },
+ "peerDependencies": {
+ "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
+ "typescript": ">=4.8.4 <6.1.0"
+ }
+ },
+ "node_modules/eslint-config-next/node_modules/typescript-eslint/node_modules/balanced-match": {
+ "version": "4.0.4",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
+ "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "18 || 20 || >=22"
+ }
+ },
+ "node_modules/eslint-config-next/node_modules/typescript-eslint/node_modules/brace-expansion": {
+ "version": "5.0.7",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.7.tgz",
+ "integrity": "sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^4.0.2"
+ },
+ "engines": {
+ "node": "18 || 20 || >=22"
+ }
+ },
+ "node_modules/eslint-config-next/node_modules/typescript-eslint/node_modules/minimatch": {
+ "version": "10.2.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz",
+ "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==",
+ "dev": true,
+ "license": "BlueOak-1.0.0",
+ "dependencies": {
+ "brace-expansion": "^5.0.5"
+ },
+ "engines": {
+ "node": "18 || 20 || >=22"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/eslint-config-next/node_modules/typescript-eslint/node_modules/semver": {
+ "version": "7.8.5",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz",
+ "integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/eslint-import-resolver-node": {
+ "version": "0.3.10",
+ "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.10.tgz",
+ "integrity": "sha512-tRrKqFyCaKict5hOd244sL6EQFNycnMQnBe+j8uqGNXYzsImGbGUU4ibtoaBmv5FLwJwcFJNeg1GeVjQfbMrDQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "debug": "^3.2.7",
+ "is-core-module": "^2.16.1",
+ "resolve": "^2.0.0-next.6"
+ }
+ },
+ "node_modules/eslint-import-resolver-node/node_modules/debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.1"
+ }
+ },
+ "node_modules/eslint-module-utils": {
+ "version": "2.14.0",
+ "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.14.0.tgz",
+ "integrity": "sha512-W2WCRZ9Dqntd+2u8jJcVMV2PKulc6RdLgUUoh/yQr3uB6lo/ZOeGx11sv60/8S4QFFKNslAlWhr9u0Ef7ZW6Ig==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "debug": "^3.2.7"
+ },
+ "engines": {
+ "node": ">=4"
+ },
+ "peerDependenciesMeta": {
+ "eslint": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/eslint-module-utils/node_modules/debug": {
+ "version": "3.2.7",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
+ "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.1"
+ }
+ },
+ "node_modules/eslint-plugin-react-hooks": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.1.1.tgz",
+ "integrity": "sha512-f2I7Gw6JbvCexzIInuSbZpfdQ44D7iqdWX01FKLvrPgqxoE7oMj8clOfto8U6vYiz4yd5oKu39rRSVOe1zRu0g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@babel/core": "^7.24.4",
+ "@babel/parser": "^7.24.4",
+ "hermes-parser": "^0.25.1",
+ "zod": "^3.25.0 || ^4.0.0",
+ "zod-validation-error": "^3.5.0 || ^4.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "peerDependencies": {
+ "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 || ^10.0.0"
+ }
+ },
+ "node_modules/eslint-scope": {
+ "version": "8.4.0",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz",
+ "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "esrecurse": "^4.3.0",
+ "estraverse": "^5.2.0"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/eslint-visitor-keys": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz",
+ "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "^20.19.0 || ^22.13.0 || >=24"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/eslint/node_modules/eslint-visitor-keys": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
+ "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/espree": {
+ "version": "10.4.0",
+ "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz",
+ "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "acorn": "^8.15.0",
+ "acorn-jsx": "^5.3.2",
+ "eslint-visitor-keys": "^4.2.1"
+ },
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/espree/node_modules/eslint-visitor-keys": {
+ "version": "4.2.1",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
+ "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "engines": {
+ "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/eslint"
+ }
+ },
+ "node_modules/esquery": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz",
+ "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "estraverse": "^5.1.0"
+ },
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/esrecurse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
+ "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "estraverse": "^5.2.0"
+ },
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/estraverse": {
+ "version": "5.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
+ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/esutils": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
+ "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/fast-glob": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz",
+ "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@nodelib/fs.stat": "^2.0.2",
+ "@nodelib/fs.walk": "^1.2.3",
+ "glob-parent": "^5.1.2",
+ "merge2": "^1.3.0",
+ "micromatch": "^4.0.4"
+ },
+ "engines": {
+ "node": ">=8.6.0"
+ }
+ },
+ "node_modules/fast-glob/node_modules/glob-parent": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
+ "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "is-glob": "^4.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/fast-json-stable-stringify": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/fast-levenshtein": {
+ "version": "2.0.6",
+ "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
+ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/fastq": {
+ "version": "1.20.1",
+ "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.20.1.tgz",
+ "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "reusify": "^1.0.4"
+ }
+ },
+ "node_modules/file-entry-cache": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
+ "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "flat-cache": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=16.0.0"
+ }
+ },
+ "node_modules/fill-range": {
+ "version": "7.1.1",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
+ "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "to-regex-range": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/find-up": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
+ "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^6.0.0",
+ "path-exists": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/flat-cache": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
+ "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "flatted": "^3.2.9",
+ "keyv": "^4.5.4"
+ },
+ "engines": {
+ "node": ">=16"
+ }
+ },
+ "node_modules/flatted": {
+ "version": "3.4.2",
+ "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz",
+ "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/for-each": {
+ "version": "0.3.5",
+ "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz",
+ "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-callable": "^1.2.7"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/function-bind": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/function.prototype.name": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.2.0.tgz",
+ "integrity": "sha512-jObKIik1P2QjPHP5nz5BaOtUlfgS0fWo8IUByNXkM+o+02sJOi94em77GwJKQSJ3gfPHdgzLNrHc1uokV4P/ew==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.9",
+ "call-bound": "^1.0.4",
+ "es-define-property": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "functions-have-names": "^1.2.3",
+ "has-property-descriptors": "^1.0.2",
+ "hasown": "^2.0.4",
+ "is-callable": "^1.2.7",
+ "is-document.all": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/functions-have-names": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
+ "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/generator-function": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz",
+ "integrity": "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/gensync": {
+ "version": "1.0.0-beta.2",
+ "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
+ "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6.9.0"
+ }
+ },
+ "node_modules/get-intrinsic": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "es-define-property": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.1.1",
+ "function-bind": "^1.1.2",
+ "get-proto": "^1.0.1",
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "math-intrinsics": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "dunder-proto": "^1.0.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/get-symbol-description": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz",
+ "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.6"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-tsconfig": {
+ "version": "4.14.0",
+ "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.14.0.tgz",
+ "integrity": "sha512-yTb+8DXzDREzgvYmh6s9vHsSVCHeC0G3PI5bEXNBHtmshPnO+S5O7qgLEOn0I5QvMy6kpZN8K1NKGyilLb93wA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "resolve-pkg-maps": "^1.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
+ }
+ },
+ "node_modules/glob-parent": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
+ "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "is-glob": "^4.0.3"
+ },
+ "engines": {
+ "node": ">=10.13.0"
+ }
+ },
+ "node_modules/globals": {
+ "version": "16.4.0",
+ "resolved": "https://registry.npmjs.org/globals/-/globals-16.4.0.tgz",
+ "integrity": "sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/globalthis": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz",
+ "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "define-properties": "^1.2.1",
+ "gopd": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/gopd": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-bigints": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz",
+ "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/has-property-descriptors": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
+ "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-define-property": "^1.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-proto": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz",
+ "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "dunder-proto": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-symbols": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-tostringtag": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-symbols": "^1.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/hasown": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.4.tgz",
+ "integrity": "sha512-T2UbfbBEF32wiepXIsMlTW9+dDYC6wMh/t/vYA4tuOMKqWz/n3vr1NFSxQiyP+zk2mXsoMA/i/7qV6LKut1t1A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/hermes-estree": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz",
+ "integrity": "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/hermes-parser": {
+ "version": "0.25.1",
+ "resolved": "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz",
+ "integrity": "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "hermes-estree": "0.25.1"
+ }
+ },
+ "node_modules/ignore": {
+ "version": "5.3.2",
+ "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
+ "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/import-fresh": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
+ "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "parent-module": "^1.0.0",
+ "resolve-from": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/imurmurhash": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8.19"
+ }
+ },
+ "node_modules/internal-slot": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz",
+ "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "hasown": "^2.0.2",
+ "side-channel": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/is-array-buffer": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz",
+ "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "get-intrinsic": "^1.2.6"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-async-function": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz",
+ "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "async-function": "^1.0.0",
+ "call-bound": "^1.0.3",
+ "get-proto": "^1.0.1",
+ "has-tostringtag": "^1.0.2",
+ "safe-regex-test": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-bigint": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz",
+ "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-bigints": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-boolean-object": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz",
+ "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "has-tostringtag": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-bun-module": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-bun-module/-/is-bun-module-2.0.0.tgz",
+ "integrity": "sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "semver": "^7.7.1"
+ }
+ },
+ "node_modules/is-bun-module/node_modules/semver": {
+ "version": "7.8.5",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz",
+ "integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/is-callable": {
+ "version": "1.2.7",
+ "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
+ "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-core-module": {
+ "version": "2.16.2",
+ "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.2.tgz",
+ "integrity": "sha512-evOr8xfXKxE6qSR0hSXL2r3sd7ALj8+7jQEUvPYcm5sgZFdJ+AYzT6yNmJenvIYQBgIGwfwz08sL8zoL7yq2BA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "hasown": "^2.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-data-view": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz",
+ "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "get-intrinsic": "^1.2.6",
+ "is-typed-array": "^1.1.13"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-date-object": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz",
+ "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "has-tostringtag": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-document.all": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-document.all/-/is-document.all-1.0.0.tgz",
+ "integrity": "sha512-+XSoyS05OdBbhFuELhgTCpFNHkpBOJqtsZfUFFpe5QTw+9Sjbh8zitxhQkYAo6wV7e1Vb8cAPvpCk9jGam/82g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-extglob": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
+ "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-finalizationregistry": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz",
+ "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-generator-function": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz",
+ "integrity": "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.4",
+ "generator-function": "^2.0.0",
+ "get-proto": "^1.0.1",
+ "has-tostringtag": "^1.0.2",
+ "safe-regex-test": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-glob": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
+ "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-extglob": "^2.1.1"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/is-map": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz",
+ "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-negative-zero": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz",
+ "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-number": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
+ "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.12.0"
+ }
+ },
+ "node_modules/is-number-object": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz",
+ "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "has-tostringtag": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-regex": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz",
+ "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "gopd": "^1.2.0",
+ "has-tostringtag": "^1.0.2",
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-set": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz",
+ "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-shared-array-buffer": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz",
+ "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-string": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz",
+ "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "has-tostringtag": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-symbol": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz",
+ "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "has-symbols": "^1.1.0",
+ "safe-regex-test": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-typed-array": {
+ "version": "1.1.15",
+ "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz",
+ "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "which-typed-array": "^1.1.16"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-weakmap": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz",
+ "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-weakref": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz",
+ "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/is-weakset": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz",
+ "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "get-intrinsic": "^1.2.6"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/isarray": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
+ "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/isexe": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/iterator.prototype": {
+ "version": "1.1.5",
+ "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz",
+ "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "define-data-property": "^1.1.4",
+ "es-object-atoms": "^1.0.0",
+ "get-intrinsic": "^1.2.6",
+ "get-proto": "^1.0.0",
+ "has-symbols": "^1.1.0",
+ "set-function-name": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/js-tokens": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/js-yaml": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.3.0.tgz",
+ "integrity": "sha512-1td788aAnnZ5qs7V2QIRl1owjtYpbKt749Y3xauqQgwIIGF/xXWz1wMTEBx5O3LK3lXLVuqXPdPxj2BoFHaW9Q==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/puzrin"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/nodeca"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "argparse": "^2.0.1"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
+ }
+ },
+ "node_modules/jsesc": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
+ "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "jsesc": "bin/jsesc"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/json-buffer": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/json-schema-traverse": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/json-stable-stringify-without-jsonify": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
+ "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/json5": {
+ "version": "2.2.3",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "json5": "lib/cli.js"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/jsx-ast-utils": {
+ "version": "3.3.5",
+ "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz",
+ "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "array-includes": "^3.1.6",
+ "array.prototype.flat": "^1.3.1",
+ "object.assign": "^4.1.4",
+ "object.values": "^1.1.6"
+ },
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
+ "node_modules/keyv": {
+ "version": "4.5.4",
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
+ "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "json-buffer": "3.0.1"
+ }
+ },
+ "node_modules/language-subtag-registry": {
+ "version": "0.3.23",
+ "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz",
+ "integrity": "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==",
+ "dev": true,
+ "license": "CC0-1.0"
+ },
+ "node_modules/language-tags": {
+ "version": "1.0.9",
+ "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz",
+ "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "language-subtag-registry": "^0.3.20"
+ },
+ "engines": {
+ "node": ">=0.10"
+ }
+ },
+ "node_modules/levn": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
+ "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "prelude-ls": "^1.2.1",
+ "type-check": "~0.4.0"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/locate-path": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
+ "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/lodash.merge": {
+ "version": "4.6.2",
+ "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
+ "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/loose-envify": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
+ "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "js-tokens": "^3.0.0 || ^4.0.0"
+ },
+ "bin": {
+ "loose-envify": "cli.js"
+ }
+ },
+ "node_modules/lru-cache": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
+ "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^3.0.2"
+ }
+ },
+ "node_modules/math-intrinsics": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/merge2": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
+ "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/micromatch": {
+ "version": "4.0.8",
+ "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
+ "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "braces": "^3.0.3",
+ "picomatch": "^2.3.1"
+ },
+ "engines": {
+ "node": ">=8.6"
+ }
+ },
+ "node_modules/minimatch": {
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz",
+ "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/minimist": {
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
+ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/nanoid": {
+ "version": "3.3.16",
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.16.tgz",
+ "integrity": "sha512-bzlKTyNJ7+LdGIIwy8ijFpIqEQIvafahV7eYykJ8Cvh42EdJeODoJ6gUJXpQJvej1BddH8OqTXZNE/KfbWAu8Q==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "bin": {
+ "nanoid": "bin/nanoid.cjs"
+ },
+ "engines": {
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
+ }
+ },
+ "node_modules/napi-postinstall": {
+ "version": "0.3.4",
+ "resolved": "https://registry.npmjs.org/napi-postinstall/-/napi-postinstall-0.3.4.tgz",
+ "integrity": "sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "napi-postinstall": "lib/cli.js"
+ },
+ "engines": {
+ "node": "^12.20.0 || ^14.18.0 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/napi-postinstall"
+ }
+ },
+ "node_modules/natural-compare": {
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
+ "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/next": {
+ "version": "16.2.10",
+ "resolved": "https://registry.npmjs.org/next/-/next-16.2.10.tgz",
+ "integrity": "sha512-2som5AVXb3kE6Yjine3/mNbBayYF58eguBWIVVUdr1y/L426xyVEgYxgBG+1QC34P2x5E+tcDup6XkuOAX3dCA==",
+ "license": "MIT",
+ "dependencies": {
+ "@next/env": "16.2.10",
+ "@swc/helpers": "0.5.15",
+ "baseline-browser-mapping": "^2.9.19",
+ "caniuse-lite": "^1.0.30001579",
+ "postcss": "8.4.31",
+ "styled-jsx": "5.1.6"
+ },
+ "bin": {
+ "next": "dist/bin/next"
+ },
+ "engines": {
+ "node": ">=20.9.0"
+ },
+ "optionalDependencies": {
+ "@next/swc-darwin-arm64": "16.2.10",
+ "@next/swc-darwin-x64": "16.2.10",
+ "@next/swc-linux-arm64-gnu": "16.2.10",
+ "@next/swc-linux-arm64-musl": "16.2.10",
+ "@next/swc-linux-x64-gnu": "16.2.10",
+ "@next/swc-linux-x64-musl": "16.2.10",
+ "@next/swc-win32-arm64-msvc": "16.2.10",
+ "@next/swc-win32-x64-msvc": "16.2.10",
+ "sharp": "^0.34.5"
+ },
+ "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"
+ },
+ "peerDependenciesMeta": {
+ "@opentelemetry/api": {
+ "optional": true
+ },
+ "@playwright/test": {
+ "optional": true
+ },
+ "babel-plugin-react-compiler": {
+ "optional": true
+ },
+ "sass": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/node-exports-info": {
+ "version": "1.6.2",
+ "resolved": "https://registry.npmjs.org/node-exports-info/-/node-exports-info-1.6.2.tgz",
+ "integrity": "sha512-kXs9Go0cah0qHVV2v389IXQLdLCeE1xfFtjOAF+iobu0OIoG1pje8At2vMHyaPMiPMnG/LWP50twML21eMcAag==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "array.prototype.flatmap": "^1.3.3",
+ "es-errors": "^1.3.0",
+ "object.entries": "^1.1.9",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/node-releases": {
+ "version": "2.0.51",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.51.tgz",
+ "integrity": "sha512-wRNIrw4DmVLKQlbgOMdkMx27Wrpzes2hh5Jtbi2bjPd+4wJstWIqP5A+lscnqbm0xxmT5Bpg8Lec5ItEBwx6BQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/object-assign": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
+ "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/object-inspect": {
+ "version": "1.13.4",
+ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
+ "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object-keys": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
+ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/object.assign": {
+ "version": "4.1.7",
+ "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz",
+ "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0",
+ "has-symbols": "^1.1.0",
+ "object-keys": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object.entries": {
+ "version": "1.1.9",
+ "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz",
+ "integrity": "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.4",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/object.fromentries": {
+ "version": "2.0.8",
+ "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz",
+ "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/object.groupby": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz",
+ "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/object.values": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz",
+ "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/optionator": {
+ "version": "0.9.4",
+ "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
+ "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "deep-is": "^0.1.3",
+ "fast-levenshtein": "^2.0.6",
+ "levn": "^0.4.1",
+ "prelude-ls": "^1.2.1",
+ "type-check": "^0.4.0",
+ "word-wrap": "^1.2.5"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/own-keys": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz",
+ "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "get-intrinsic": "^1.2.6",
+ "object-keys": "^1.1.1",
+ "safe-push-apply": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/p-limit": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "yocto-queue": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/p-locate": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
+ "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/parent-module": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
+ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "callsites": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/path-exists": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
+ "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/path-key": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/path-parse": {
+ "version": "1.0.7",
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
+ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/picocolors": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
+ "license": "ISC"
+ },
+ "node_modules/picomatch": {
+ "version": "2.3.2",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz",
+ "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8.6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/possible-typed-array-names": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz",
+ "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/postcss": {
+ "version": "8.5.19",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.19.tgz",
+ "integrity": "sha512-Mz8SaolMd8nB+G13WkORcxQKHZ/NE4xXevtkJHVuG+guo9/wYKlIMTKAqGdEmYOXR2ijPjTYNHssizdaVSUNdQ==",
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/postcss/"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/postcss"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "nanoid": "^3.3.12",
+ "picocolors": "^1.1.1",
+ "source-map-js": "^1.2.1"
+ },
+ "engines": {
+ "node": "^10 || ^12 || >=14"
+ }
+ },
+ "node_modules/prelude-ls": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
+ "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/prop-types": {
+ "version": "15.8.1",
+ "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
+ "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "loose-envify": "^1.4.0",
+ "object-assign": "^4.1.1",
+ "react-is": "^16.13.1"
+ }
+ },
+ "node_modules/punycode": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/queue-microtask": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
+ "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/react": {
+ "version": "19.2.7",
+ "resolved": "https://registry.npmjs.org/react/-/react-19.2.7.tgz",
+ "integrity": "sha512-HNe9WslTbXmFK8o8cmwgAeJFSBvt1bPdHCVKtaaV+WlAN36mpT4hcRpwbf3fY56ar2oIXzsBpOAiIRHAdY0OlQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/react-dom": {
+ "version": "19.2.7",
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.7.tgz",
+ "integrity": "sha512-t0BRVXvbiE/o20Hfw669rLbMCDWtYZLvmJigy2f0MxsXF+71pxhR3xOkspmsO8h3ZlNzyibAmtCa3l4lYKk6gQ==",
+ "license": "MIT",
+ "dependencies": {
+ "scheduler": "^0.27.0"
+ },
+ "peerDependencies": {
+ "react": "^19.2.7"
+ }
+ },
+ "node_modules/react-is": {
+ "version": "16.13.1",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
+ "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/reflect.getprototypeof": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz",
+ "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.9",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "get-intrinsic": "^1.2.7",
+ "get-proto": "^1.0.1",
+ "which-builtin-type": "^1.2.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/regexp.prototype.flags": {
+ "version": "1.5.4",
+ "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz",
+ "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "define-properties": "^1.2.1",
+ "es-errors": "^1.3.0",
+ "get-proto": "^1.0.1",
+ "gopd": "^1.2.0",
+ "set-function-name": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/resolve": {
+ "version": "2.0.0-next.7",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.7.tgz",
+ "integrity": "sha512-tqt+NBWwyaMgw3zDsnygx4CByWjQEJHOPMdslYhppaQSJUtL/D4JO9CcBBlhPoI8lz9oJIDXkwXfhF4aWqP8xQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "is-core-module": "^2.16.2",
+ "node-exports-info": "^1.6.0",
+ "object-keys": "^1.1.1",
+ "path-parse": "^1.0.7",
+ "supports-preserve-symlinks-flag": "^1.0.0"
+ },
+ "bin": {
+ "resolve": "bin/resolve"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/resolve-from": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+ "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/resolve-pkg-maps": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz",
+ "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
+ }
+ },
+ "node_modules/reusify": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
+ "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "iojs": ">=1.0.0",
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/run-parallel": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
+ "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "queue-microtask": "^1.2.2"
+ }
+ },
+ "node_modules/safe-array-concat": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.4.tgz",
+ "integrity": "sha512-wtZlHyOje6OZTGqAoaDKxFkgRtkF9CnHAVnCHKfuj200wAgL+bSJhdsCD2l0Qx/2ekEXjPWcyKkfGb5CPboslg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.9",
+ "call-bound": "^1.0.4",
+ "get-intrinsic": "^1.3.0",
+ "has-symbols": "^1.1.0",
+ "isarray": "^2.0.5"
+ },
+ "engines": {
+ "node": ">=0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/safe-push-apply": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz",
+ "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "isarray": "^2.0.5"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/safe-regex-test": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz",
+ "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "is-regex": "^1.2.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/scheduler": {
+ "version": "0.27.0",
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
+ "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
+ "license": "MIT"
+ },
+ "node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/set-function-length": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz",
+ "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "define-data-property": "^1.1.4",
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2",
+ "get-intrinsic": "^1.2.4",
+ "gopd": "^1.0.1",
+ "has-property-descriptors": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/set-function-name": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz",
+ "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "define-data-property": "^1.1.4",
+ "es-errors": "^1.3.0",
+ "functions-have-names": "^1.2.3",
+ "has-property-descriptors": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/set-proto": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz",
+ "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "dunder-proto": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/sharp": {
+ "version": "0.34.5",
+ "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz",
+ "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==",
+ "hasInstallScript": true,
+ "license": "Apache-2.0",
+ "optional": true,
+ "dependencies": {
+ "@img/colour": "^1.0.0",
+ "detect-libc": "^2.1.2",
+ "semver": "^7.7.3"
+ },
+ "engines": {
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
+ },
+ "funding": {
+ "url": "https://opencollective.com/libvips"
+ },
+ "optionalDependencies": {
+ "@img/sharp-darwin-arm64": "0.34.5",
+ "@img/sharp-darwin-x64": "0.34.5",
+ "@img/sharp-libvips-darwin-arm64": "1.2.4",
+ "@img/sharp-libvips-darwin-x64": "1.2.4",
+ "@img/sharp-libvips-linux-arm": "1.2.4",
+ "@img/sharp-libvips-linux-arm64": "1.2.4",
+ "@img/sharp-libvips-linux-ppc64": "1.2.4",
+ "@img/sharp-libvips-linux-riscv64": "1.2.4",
+ "@img/sharp-libvips-linux-s390x": "1.2.4",
+ "@img/sharp-libvips-linux-x64": "1.2.4",
+ "@img/sharp-libvips-linuxmusl-arm64": "1.2.4",
+ "@img/sharp-libvips-linuxmusl-x64": "1.2.4",
+ "@img/sharp-linux-arm": "0.34.5",
+ "@img/sharp-linux-arm64": "0.34.5",
+ "@img/sharp-linux-ppc64": "0.34.5",
+ "@img/sharp-linux-riscv64": "0.34.5",
+ "@img/sharp-linux-s390x": "0.34.5",
+ "@img/sharp-linux-x64": "0.34.5",
+ "@img/sharp-linuxmusl-arm64": "0.34.5",
+ "@img/sharp-linuxmusl-x64": "0.34.5",
+ "@img/sharp-wasm32": "0.34.5",
+ "@img/sharp-win32-arm64": "0.34.5",
+ "@img/sharp-win32-ia32": "0.34.5",
+ "@img/sharp-win32-x64": "0.34.5"
+ }
+ },
+ "node_modules/sharp/node_modules/semver": {
+ "version": "7.8.5",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.5.tgz",
+ "integrity": "sha512-Y7/KDsb8LjooZpwaqGyulO6DQlksgCncchHGk+sZIY4SBvUocMBEFH5Ur1fI4dV+Jvl0w6cjvucaIi40puRioA==",
+ "license": "ISC",
+ "optional": true,
+ "bin": {
+ "semver": "bin/semver.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/shebang-command": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "shebang-regex": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/shebang-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/side-channel": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.1.tgz",
+ "integrity": "sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.4",
+ "side-channel-list": "^1.0.1",
+ "side-channel-map": "^1.0.1",
+ "side-channel-weakmap": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-list": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.1.tgz",
+ "integrity": "sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "object-inspect": "^1.13.4"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-map": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
+ "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/side-channel-weakmap": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
+ "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.5",
+ "object-inspect": "^1.13.3",
+ "side-channel-map": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/source-map-js": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/stable-hash": {
+ "version": "0.0.5",
+ "resolved": "https://registry.npmjs.org/stable-hash/-/stable-hash-0.0.5.tgz",
+ "integrity": "sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/stop-iteration-iterator": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz",
+ "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "internal-slot": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/string.prototype.includes": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz",
+ "integrity": "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/string.prototype.matchall": {
+ "version": "4.0.12",
+ "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz",
+ "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "call-bound": "^1.0.3",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.23.6",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.0.0",
+ "get-intrinsic": "^1.2.6",
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "internal-slot": "^1.1.0",
+ "regexp.prototype.flags": "^1.5.3",
+ "set-function-name": "^2.0.2",
+ "side-channel": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/string.prototype.repeat": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz",
+ "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "define-properties": "^1.1.3",
+ "es-abstract": "^1.17.5"
+ }
+ },
+ "node_modules/string.prototype.trim": {
+ "version": "1.2.11",
+ "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.11.tgz",
+ "integrity": "sha512-PwvK7BU+CMTJGYQCTZb5RWXIML92lftJLhQz1tBzgKiqGxJaMlBAa48POXaNAC2s4y8jr3EFqrkF9+44neS46w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.9",
+ "call-bound": "^1.0.4",
+ "define-data-property": "^1.1.4",
+ "define-properties": "^1.2.1",
+ "es-abstract": "^1.24.2",
+ "es-object-atoms": "^1.1.2",
+ "has-property-descriptors": "^1.0.2",
+ "safe-regex-test": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/string.prototype.trimend": {
+ "version": "1.0.10",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.10.tgz",
+ "integrity": "sha512-2+3aDAOmPTmuFwjDnmJG2ctEkQKVki7vOSqaxkv42Mowj1V6PnvuwFCRrR5lChUux1TBskPjfkeTOhqczDMxTw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.9",
+ "call-bound": "^1.0.4",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/string.prototype.trimstart": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz",
+ "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.7",
+ "define-properties": "^1.2.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/strip-bom": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
+ "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/strip-json-comments": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
+ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/styled-jsx": {
+ "version": "5.1.6",
+ "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz",
+ "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==",
+ "license": "MIT",
+ "dependencies": {
+ "client-only": "0.0.1"
+ },
+ "engines": {
+ "node": ">= 12.0.0"
+ },
+ "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
+ }
+ }
+ },
+ "node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/supports-preserve-symlinks-flag": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
+ "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/tinyglobby": {
+ "version": "0.2.17",
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.17.tgz",
+ "integrity": "sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fdir": "^6.5.0",
+ "picomatch": "^4.0.4"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/SuperchupuDev"
+ }
+ },
+ "node_modules/tinyglobby/node_modules/fdir": {
+ "version": "6.5.0",
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "peerDependencies": {
+ "picomatch": "^3 || ^4"
+ },
+ "peerDependenciesMeta": {
+ "picomatch": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/tinyglobby/node_modules/picomatch": {
+ "version": "4.0.5",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.5.tgz",
+ "integrity": "sha512-RvwwcruNjI1ncT5xRakeyS9Lf8lcItv34KD+aif+VH9kduAyfYBipGh12274xtenIPZ119/R9BdTBa8gAwSh0A==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/to-regex-range": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
+ "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-number": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=8.0"
+ }
+ },
+ "node_modules/ts-api-utils": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.5.0.tgz",
+ "integrity": "sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18.12"
+ },
+ "peerDependencies": {
+ "typescript": ">=4.8.4"
+ }
+ },
+ "node_modules/tsconfig-paths": {
+ "version": "3.15.0",
+ "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz",
+ "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/json5": "^0.0.29",
+ "json5": "^1.0.2",
+ "minimist": "^1.2.6",
+ "strip-bom": "^3.0.0"
+ }
+ },
+ "node_modules/tsconfig-paths/node_modules/json5": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz",
+ "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "minimist": "^1.2.0"
+ },
+ "bin": {
+ "json5": "lib/cli.js"
+ }
+ },
+ "node_modules/tslib": {
+ "version": "2.8.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
+ "license": "0BSD"
+ },
+ "node_modules/type-check": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
+ "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "prelude-ls": "^1.2.1"
+ },
+ "engines": {
+ "node": ">= 0.8.0"
+ }
+ },
+ "node_modules/typed-array-buffer": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz",
+ "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "es-errors": "^1.3.0",
+ "is-typed-array": "^1.1.14"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/typed-array-byte-length": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz",
+ "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.8",
+ "for-each": "^0.3.3",
+ "gopd": "^1.2.0",
+ "has-proto": "^1.2.0",
+ "is-typed-array": "^1.1.14"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/typed-array-byte-offset": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz",
+ "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "available-typed-arrays": "^1.0.7",
+ "call-bind": "^1.0.8",
+ "for-each": "^0.3.3",
+ "gopd": "^1.2.0",
+ "has-proto": "^1.2.0",
+ "is-typed-array": "^1.1.15",
+ "reflect.getprototypeof": "^1.0.9"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/typed-array-length": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.8.tgz",
+ "integrity": "sha512-phPGCwqr2+Qo0fwniCE8e4pKnGu/yFb5nD5Y8bf0EEeiI5GklnACYA9GFy/DrAeRrKHXvHn+1SUsOWgJp6RO+g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind": "^1.0.9",
+ "for-each": "^0.3.5",
+ "gopd": "^1.2.0",
+ "is-typed-array": "^1.1.15",
+ "possible-typed-array-names": "^1.1.0",
+ "reflect.getprototypeof": "^1.0.10"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/typescript": {
+ "version": "5.9.3",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "bin": {
+ "tsc": "bin/tsc",
+ "tsserver": "bin/tsserver"
+ },
+ "engines": {
+ "node": ">=14.17"
+ }
+ },
+ "node_modules/unbox-primitive": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz",
+ "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.3",
+ "has-bigints": "^1.0.2",
+ "has-symbols": "^1.1.0",
+ "which-boxed-primitive": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/undici-types": {
+ "version": "8.3.0",
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-8.3.0.tgz",
+ "integrity": "sha512-j375ScV60dom+YkPFIfTLcOiPxkN/buHz5GobjLhixFuANaNs3C9l4GmrWqejgXWJ7BbJcFYpTEUkS1Ge8bpZQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/unrs-resolver": {
+ "version": "1.12.2",
+ "resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.12.2.tgz",
+ "integrity": "sha512-dmlRxBJJayXjqTwC+JtF1HhJmgf3ftQ3YejFcZrf4+KKtJv0qDsK1pjqaaVjG7wJ5NJ6UVP1OqRMQ71Z4C3rxQ==",
+ "dev": true,
+ "hasInstallScript": true,
+ "license": "MIT",
+ "dependencies": {
+ "napi-postinstall": "^0.3.4"
+ },
+ "funding": {
+ "url": "https://opencollective.com/unrs-resolver"
+ },
+ "optionalDependencies": {
+ "@unrs/resolver-binding-android-arm-eabi": "1.12.2",
+ "@unrs/resolver-binding-android-arm64": "1.12.2",
+ "@unrs/resolver-binding-darwin-arm64": "1.12.2",
+ "@unrs/resolver-binding-darwin-x64": "1.12.2",
+ "@unrs/resolver-binding-freebsd-x64": "1.12.2",
+ "@unrs/resolver-binding-linux-arm-gnueabihf": "1.12.2",
+ "@unrs/resolver-binding-linux-arm-musleabihf": "1.12.2",
+ "@unrs/resolver-binding-linux-arm64-gnu": "1.12.2",
+ "@unrs/resolver-binding-linux-arm64-musl": "1.12.2",
+ "@unrs/resolver-binding-linux-loong64-gnu": "1.12.2",
+ "@unrs/resolver-binding-linux-loong64-musl": "1.12.2",
+ "@unrs/resolver-binding-linux-ppc64-gnu": "1.12.2",
+ "@unrs/resolver-binding-linux-riscv64-gnu": "1.12.2",
+ "@unrs/resolver-binding-linux-riscv64-musl": "1.12.2",
+ "@unrs/resolver-binding-linux-s390x-gnu": "1.12.2",
+ "@unrs/resolver-binding-linux-x64-gnu": "1.12.2",
+ "@unrs/resolver-binding-linux-x64-musl": "1.12.2",
+ "@unrs/resolver-binding-openharmony-arm64": "1.12.2",
+ "@unrs/resolver-binding-wasm32-wasi": "1.12.2",
+ "@unrs/resolver-binding-win32-arm64-msvc": "1.12.2",
+ "@unrs/resolver-binding-win32-ia32-msvc": "1.12.2",
+ "@unrs/resolver-binding-win32-x64-msvc": "1.12.2"
+ }
+ },
+ "node_modules/update-browserslist-db": {
+ "version": "1.2.3",
+ "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz",
+ "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/browserslist"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
+ },
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/ai"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "escalade": "^3.2.0",
+ "picocolors": "^1.1.1"
+ },
+ "bin": {
+ "update-browserslist-db": "cli.js"
+ },
+ "peerDependencies": {
+ "browserslist": ">= 4.21.0"
+ }
+ },
+ "node_modules/uri-js": {
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "punycode": "^2.1.0"
+ }
+ },
+ "node_modules/which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "isexe": "^2.0.0"
+ },
+ "bin": {
+ "node-which": "bin/node-which"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/which-boxed-primitive": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz",
+ "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-bigint": "^1.1.0",
+ "is-boolean-object": "^1.2.1",
+ "is-number-object": "^1.1.1",
+ "is-string": "^1.1.1",
+ "is-symbol": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/which-builtin-type": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz",
+ "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bound": "^1.0.2",
+ "function.prototype.name": "^1.1.6",
+ "has-tostringtag": "^1.0.2",
+ "is-async-function": "^2.0.0",
+ "is-date-object": "^1.1.0",
+ "is-finalizationregistry": "^1.1.0",
+ "is-generator-function": "^1.0.10",
+ "is-regex": "^1.2.1",
+ "is-weakref": "^1.0.2",
+ "isarray": "^2.0.5",
+ "which-boxed-primitive": "^1.1.0",
+ "which-collection": "^1.0.2",
+ "which-typed-array": "^1.1.16"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/which-collection": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz",
+ "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "is-map": "^2.0.3",
+ "is-set": "^2.0.3",
+ "is-weakmap": "^2.0.2",
+ "is-weakset": "^2.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/which-typed-array": {
+ "version": "1.1.22",
+ "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.22.tgz",
+ "integrity": "sha512-fvO4ExWMFsqyhG3AiPAObMuY1lxaqgYcxbc49CNdWDDECOJNgQyvsOWVwbZc+qf3rzRtxojBK+CMEv0Ld5CYpw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "available-typed-arrays": "^1.0.7",
+ "call-bind": "^1.0.9",
+ "call-bound": "^1.0.4",
+ "for-each": "^0.3.5",
+ "get-proto": "^1.0.1",
+ "gopd": "^1.2.0",
+ "has-tostringtag": "^1.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/word-wrap": {
+ "version": "1.2.5",
+ "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
+ "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/yallist": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
+ "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/yocto-queue": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/zod": {
+ "version": "4.4.3",
+ "resolved": "https://registry.npmjs.org/zod/-/zod-4.4.3.tgz",
+ "integrity": "sha512-ytENFjIJFl2UwYglde2jchW2Hwm4GJFLDiSXWdTrJQBIN9Fcyp7n4DhxJEiWNAJMV1/BqWfW/kkg71UDcHJyTQ==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/colinhacks"
+ }
+ },
+ "node_modules/zod-validation-error": {
+ "version": "4.0.2",
+ "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz",
+ "integrity": "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18.0.0"
+ },
+ "peerDependencies": {
+ "zod": "^3.25.0 || ^4.0.0"
+ }
+ }
+ }
+}
diff --git a/docs/package.json b/docs/package.json
new file mode 100644
index 0000000..23a84f9
--- /dev/null
+++ b/docs/package.json
@@ -0,0 +1,30 @@
+{
+ "name": "vnidrop-site",
+ "version": "0.1.0",
+ "private": true,
+ "engines": {
+ "node": ">=22.12"
+ },
+ "scripts": {
+ "dev": "next dev",
+ "build": "next build",
+ "lint": "eslint .",
+ "typecheck": "tsc --noEmit"
+ },
+ "dependencies": {
+ "next": "16.2.10",
+ "react": "19.2.7",
+ "react-dom": "19.2.7"
+ },
+ "devDependencies": {
+ "@types/node": "26.1.1",
+ "@types/react": "19.2.17",
+ "@types/react-dom": "19.2.3",
+ "eslint": "9.39.5",
+ "eslint-config-next": "16.2.10",
+ "typescript": "5.9.3"
+ },
+ "overrides": {
+ "postcss": "8.5.19"
+ }
+}
diff --git a/docs/public/brand-mark.svg b/docs/public/brand-mark.svg
new file mode 100644
index 0000000..ed04cc6
--- /dev/null
+++ b/docs/public/brand-mark.svg
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/public/site.webmanifest b/docs/public/site.webmanifest
new file mode 100644
index 0000000..8ec7d42
--- /dev/null
+++ b/docs/public/site.webmanifest
@@ -0,0 +1,16 @@
+{
+ "name": "VniDrop",
+ "short_name": "VniDrop",
+ "description": "Direct, private file transfer across your devices.",
+ "start_url": "/",
+ "display": "standalone",
+ "background_color": "#fbfafc",
+ "theme_color": "#a855f7",
+ "icons": [
+ {
+ "src": "/brand-mark.svg",
+ "sizes": "any",
+ "type": "image/svg+xml"
+ }
+ ]
+}
diff --git a/docs/tsconfig.json b/docs/tsconfig.json
new file mode 100644
index 0000000..e585d9d
--- /dev/null
+++ b/docs/tsconfig.json
@@ -0,0 +1,41 @@
+{
+ "compilerOptions": {
+ "target": "ES2017",
+ "lib": [
+ "dom",
+ "dom.iterable",
+ "esnext"
+ ],
+ "allowJs": false,
+ "skipLibCheck": true,
+ "strict": true,
+ "noEmit": true,
+ "esModuleInterop": true,
+ "module": "esnext",
+ "moduleResolution": "bundler",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "jsx": "react-jsx",
+ "incremental": true,
+ "plugins": [
+ {
+ "name": "next"
+ }
+ ],
+ "paths": {
+ "@/*": [
+ "./*"
+ ]
+ }
+ },
+ "include": [
+ "next-env.d.ts",
+ ".next/types/**/*.ts",
+ "**/*.ts",
+ "**/*.tsx",
+ ".next/dev/types/**/*.ts"
+ ],
+ "exclude": [
+ "node_modules"
+ ]
+}