commit a0394b0c5618736f4472f43cc8c3982525e95993 Author: Ryan Malloy Date: Fri Jan 30 19:08:58 2026 -0700 NanoVNA-F V3 Starlight documentation site Astro 5 + Starlight 0.37 docs site for the NanoVNA-F V3 portable vector network analyzer. Content sourced from the extracted PDF user guide and menu structure map. - 38 MDX content pages organized in diataxis structure (getting-started, tutorials, how-to guides, reference) - Steel blue/teal theme (#2d7d9a/#5bb8d4) distinct from NanoVNA-H - 5 custom Astro components (CommandTable, MenuTree, SpecCard, ScreenRegion, CalibrationStep) - 42 renamed screenshots from the user guide PDF extraction - Docker deployment via Caddy behind caddy-docker-proxy - Full console command reference (28 commands) - Complete menu map with interactive tree component diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..1d9adf4 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,28 @@ +# Dependencies +node_modules/ + +# Build output +dist/ +.astro/ + +# Git +.git/ +.gitignore + +# Docker files (don't need to copy themselves) +Dockerfile +docker-compose.yml +.dockerignore + +# Development files +.env.local +.env.*.local +*.log + +# IDE +.vscode/ +.idea/ + +# OS +.DS_Store +Thumbs.db diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..3bb163b --- /dev/null +++ b/.env.example @@ -0,0 +1,2 @@ +COMPOSE_PROJECT_NAME=nanovna-f-docs +DOMAIN=nanovna-f.l.zmesh.systems diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aa210b1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,20 @@ +# build output +dist/ +# generated types +.astro/ + +# dependencies +node_modules/ + +# logs +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# environment variables +.env +.env.production + +# macOS-specific files +.DS_Store diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..83fbd3d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,47 @@ +# syntax=docker/dockerfile:1 + +# Build stage - using Node.js with pnpm +FROM node:22-alpine AS builder + +# Install pnpm +RUN corepack enable && corepack prepare pnpm@latest --activate + +WORKDIR /app + +# Copy package files +COPY package.json pnpm-lock.yaml ./ + +# Install dependencies with cache mount +RUN --mount=type=cache,target=/root/.local/share/pnpm/store \ + pnpm install --frozen-lockfile + +# Copy source files +COPY . . + +# Disable telemetry and build +ENV ASTRO_TELEMETRY_DISABLED=1 +RUN pnpm build + +# Production stage - lightweight static server +FROM caddy:2-alpine AS production + +# Copy built static files +COPY --from=builder /app/dist /srv + +# Simple Caddyfile for static file serving +# Note: caddy-docker-proxy handles the external routing +COPY <=22.0.0} + peerDependencies: + astro: ^5.0.0 + + '@astrojs/prism@3.3.0': + resolution: {integrity: sha512-q8VwfU/fDZNoDOf+r7jUnMC2//H2l0TuQ6FkGJL8vD8nw/q5KiL3DS1KKBI3QhI9UQhpJ5dc7AtqfbXWuOgLCQ==} + engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0} + + '@astrojs/sitemap@3.7.0': + resolution: {integrity: sha512-+qxjUrz6Jcgh+D5VE1gKUJTA3pSthuPHe6Ao5JCxok794Lewx8hBFaWHtOnN0ntb2lfOf7gvOi9TefUswQ/ZVA==} + + '@astrojs/starlight@0.37.5': + resolution: {integrity: sha512-+pC2pgy0iR9Ucl1P4CE0jyfsoNKcUSB2RIoBwm4UnyyhtlaEjoSU7MZwa5IJkzS9sBgIbLbLgYVbkC4tHN8rkQ==} + peerDependencies: + astro: ^5.5.0 + + '@astrojs/telemetry@3.3.0': + resolution: {integrity: sha512-UFBgfeldP06qu6khs/yY+q1cDAaArM2/7AEIqQ9Cuvf7B1hNLq0xDrZkct+QoIGyjq56y8IaE2I3CTvG99mlhQ==} + engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0} + + '@babel/helper-string-parser@7.27.1': + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.28.5': + resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} + engines: {node: '>=6.9.0'} + + '@babel/parser@7.28.6': + resolution: {integrity: sha512-TeR9zWR18BvbfPmGbLampPMW+uW1NZnJlRuuHso8i87QZNq2JRF9i6RgxRqtEq+wQGsS19NNTWr2duhnE49mfQ==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/runtime@7.28.6': + resolution: {integrity: sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.28.6': + resolution: {integrity: sha512-0ZrskXVEHSWIqZM/sQZ4EV3jZJXRkio/WCxaqKZP1g//CEWEPSfeZFcms4XeKBCHU0ZKnIkdJeU/kF+eRp5lBg==} + engines: {node: '>=6.9.0'} + + '@capsizecss/unpack@4.0.0': + resolution: {integrity: sha512-VERIM64vtTP1C4mxQ5thVT9fK0apjPFobqybMtA1UdUujWka24ERHbRHFGmpbbhp73MhV+KSsHQH9C6uOTdEQA==} + engines: {node: '>=18'} + + '@ctrl/tinycolor@4.2.0': + resolution: {integrity: sha512-kzyuwOAQnXJNLS9PSyrk0CWk35nWJW/zl/6KvnTBMFK65gm7U1/Z5BqjxeapjZCIhQcM/DsrEmcbRwDyXyXK4A==} + engines: {node: '>=14'} + + '@emnapi/runtime@1.8.1': + resolution: {integrity: sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==} + + '@esbuild/aix-ppc64@0.25.12': + resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.25.12': + resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.25.12': + resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==} + engines: {node: '>=18'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.25.12': + resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==} + engines: {node: '>=18'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.25.12': + resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.25.12': + resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==} + engines: {node: '>=18'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.25.12': + resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.25.12': + resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.25.12': + resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==} + engines: {node: '>=18'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.25.12': + resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==} + engines: {node: '>=18'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.25.12': + resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==} + engines: {node: '>=18'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.25.12': + resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==} + engines: {node: '>=18'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.25.12': + resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==} + engines: {node: '>=18'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.25.12': + resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==} + engines: {node: '>=18'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.25.12': + resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==} + engines: {node: '>=18'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.25.12': + resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==} + engines: {node: '>=18'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.25.12': + resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==} + engines: {node: '>=18'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-arm64@0.25.12': + resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.25.12': + resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==} + engines: {node: '>=18'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-arm64@0.25.12': + resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.25.12': + resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==} + engines: {node: '>=18'} + cpu: [x64] + os: [openbsd] + + '@esbuild/openharmony-arm64@0.25.12': + resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/sunos-x64@0.25.12': + resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==} + engines: {node: '>=18'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.25.12': + resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.25.12': + resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==} + engines: {node: '>=18'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.25.12': + resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==} + engines: {node: '>=18'} + cpu: [x64] + os: [win32] + + '@expressive-code/core@0.41.6': + resolution: {integrity: sha512-FvJQP+hG0jWi/FLBSmvHInDqWR7jNANp9PUDjdMqSshHb0y7sxx3vHuoOr6SgXjWw+MGLqorZyPQ0aAlHEok6g==} + + '@expressive-code/plugin-frames@0.41.6': + resolution: {integrity: sha512-d+hkSYXIQot6fmYnOmWAM+7TNWRv/dhfjMsNq+mIZz8Tb4mPHOcgcfZeEM5dV9TDL0ioQNvtcqQNuzA1sRPjxg==} + + '@expressive-code/plugin-shiki@0.41.6': + resolution: {integrity: sha512-Y6zmKBmsIUtWTzdefqlzm/h9Zz0Rc4gNdt2GTIH7fhHH2I9+lDYCa27BDwuBhjqcos6uK81Aca9dLUC4wzN+ng==} + + '@expressive-code/plugin-text-markers@0.41.6': + resolution: {integrity: sha512-PBFa1wGyYzRExMDzBmAWC6/kdfG1oLn4pLpBeTfIRrALPjcGA/59HP3e7q9J0Smk4pC7U+lWkA2LHR8FYV8U7Q==} + + '@iconify-json/lucide@1.2.87': + resolution: {integrity: sha512-wxYIAp0f8Uw0rJa6BMWMaRbiHk3yV4XczA38GKXFlqyZtTdmHM1QOF4NZw5xpMlRDzbh2MnB7wjteLeFnn/ciQ==} + + '@iconify/tools@4.2.0': + resolution: {integrity: sha512-WRxPva/ipxYkqZd1+CkEAQmd86dQmrwH0vwK89gmp2Kh2WyyVw57XbPng0NehP3x4V1LzLsXUneP1uMfTMZmUA==} + + '@iconify/types@2.0.0': + resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==} + + '@iconify/utils@2.3.0': + resolution: {integrity: sha512-GmQ78prtwYW6EtzXRU1rY+KwOKfz32PD7iJh6Iyqw68GiKuoZ2A6pRtzWONz5VQJbp50mEjXh/7NkumtrAgRKA==} + + '@img/colour@1.0.0': + resolution: {integrity: sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==} + engines: {node: '>=18'} + + '@img/sharp-darwin-arm64@0.34.5': + resolution: {integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [darwin] + + '@img/sharp-darwin-x64@0.34.5': + resolution: {integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-darwin-arm64@1.2.4': + resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==} + cpu: [arm64] + os: [darwin] + + '@img/sharp-libvips-darwin-x64@1.2.4': + resolution: {integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==} + cpu: [x64] + os: [darwin] + + '@img/sharp-libvips-linux-arm64@1.2.4': + resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linux-arm@1.2.4': + resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==} + cpu: [arm] + os: [linux] + + '@img/sharp-libvips-linux-ppc64@1.2.4': + resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==} + cpu: [ppc64] + os: [linux] + + '@img/sharp-libvips-linux-riscv64@1.2.4': + resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==} + cpu: [riscv64] + os: [linux] + + '@img/sharp-libvips-linux-s390x@1.2.4': + resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==} + cpu: [s390x] + os: [linux] + + '@img/sharp-libvips-linux-x64@1.2.4': + resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==} + cpu: [x64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-arm64@1.2.4': + resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==} + cpu: [arm64] + os: [linux] + + '@img/sharp-libvips-linuxmusl-x64@1.2.4': + resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==} + cpu: [x64] + os: [linux] + + '@img/sharp-linux-arm64@0.34.5': + resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + + '@img/sharp-linux-arm@0.34.5': + resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm] + os: [linux] + + '@img/sharp-linux-ppc64@0.34.5': + resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [ppc64] + os: [linux] + + '@img/sharp-linux-riscv64@0.34.5': + resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [riscv64] + os: [linux] + + '@img/sharp-linux-s390x@0.34.5': + resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [s390x] + os: [linux] + + '@img/sharp-linux-x64@0.34.5': + resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + + '@img/sharp-linuxmusl-arm64@0.34.5': + resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [linux] + + '@img/sharp-linuxmusl-x64@0.34.5': + resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [linux] + + '@img/sharp-wasm32@0.34.5': + resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [wasm32] + + '@img/sharp-win32-arm64@0.34.5': + resolution: {integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [win32] + + '@img/sharp-win32-ia32@0.34.5': + resolution: {integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [ia32] + os: [win32] + + '@img/sharp-win32-x64@0.34.5': + resolution: {integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [x64] + os: [win32] + + '@isaacs/fs-minipass@4.0.1': + resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==} + engines: {node: '>=18.0.0'} + + '@jridgewell/sourcemap-codec@1.5.5': + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} + + '@mdx-js/mdx@3.1.1': + resolution: {integrity: sha512-f6ZO2ifpwAQIpzGWaBQT2TXxPv6z3RBzQKpVftEWN78Vl/YweF1uwussDx8ECAXVtr3Rs89fKyG9YlzUs9DyGQ==} + + '@oslojs/encoding@1.1.0': + resolution: {integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==} + + '@pagefind/darwin-arm64@1.4.0': + resolution: {integrity: sha512-2vMqkbv3lbx1Awea90gTaBsvpzgRs7MuSgKDxW0m9oV1GPZCZbZBJg/qL83GIUEN2BFlY46dtUZi54pwH+/pTQ==} + cpu: [arm64] + os: [darwin] + + '@pagefind/darwin-x64@1.4.0': + resolution: {integrity: sha512-e7JPIS6L9/cJfow+/IAqknsGqEPjJnVXGjpGm25bnq+NPdoD3c/7fAwr1OXkG4Ocjx6ZGSCijXEV4ryMcH2E3A==} + cpu: [x64] + os: [darwin] + + '@pagefind/default-ui@1.4.0': + resolution: {integrity: sha512-wie82VWn3cnGEdIjh4YwNESyS1G6vRHwL6cNjy9CFgNnWW/PGRjsLq300xjVH5sfPFK3iK36UxvIBymtQIEiSQ==} + + '@pagefind/freebsd-x64@1.4.0': + resolution: {integrity: sha512-WcJVypXSZ+9HpiqZjFXMUobfFfZZ6NzIYtkhQ9eOhZrQpeY5uQFqNWLCk7w9RkMUwBv1HAMDW3YJQl/8OqsV0Q==} + cpu: [x64] + os: [freebsd] + + '@pagefind/linux-arm64@1.4.0': + resolution: {integrity: sha512-PIt8dkqt4W06KGmQjONw7EZbhDF+uXI7i0XtRLN1vjCUxM9vGPdtJc2mUyVPevjomrGz5M86M8bqTr6cgDp1Uw==} + cpu: [arm64] + os: [linux] + + '@pagefind/linux-x64@1.4.0': + resolution: {integrity: sha512-z4oddcWwQ0UHrTHR8psLnVlz6USGJ/eOlDPTDYZ4cI8TK8PgwRUPQZp9D2iJPNIPcS6Qx/E4TebjuGJOyK8Mmg==} + cpu: [x64] + os: [linux] + + '@pagefind/windows-x64@1.4.0': + resolution: {integrity: sha512-NkT+YAdgS2FPCn8mIA9bQhiBs+xmniMGq1LFPDhcFn0+2yIUEiIG06t7bsZlhdjknEQRTSdT7YitP6fC5qwP0g==} + cpu: [x64] + os: [win32] + + '@rollup/pluginutils@5.3.0': + resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + + '@rollup/rollup-android-arm-eabi@4.57.1': + resolution: {integrity: sha512-A6ehUVSiSaaliTxai040ZpZ2zTevHYbvu/lDoeAteHI8QnaosIzm4qwtezfRg1jOYaUmnzLX1AOD6Z+UJjtifg==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.57.1': + resolution: {integrity: sha512-dQaAddCY9YgkFHZcFNS/606Exo8vcLHwArFZ7vxXq4rigo2bb494/xKMMwRRQW6ug7Js6yXmBZhSBRuBvCCQ3w==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.57.1': + resolution: {integrity: sha512-crNPrwJOrRxagUYeMn/DZwqN88SDmwaJ8Cvi/TN1HnWBU7GwknckyosC2gd0IqYRsHDEnXf328o9/HC6OkPgOg==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.57.1': + resolution: {integrity: sha512-Ji8g8ChVbKrhFtig5QBV7iMaJrGtpHelkB3lsaKzadFBe58gmjfGXAOfI5FV0lYMH8wiqsxKQ1C9B0YTRXVy4w==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.57.1': + resolution: {integrity: sha512-R+/WwhsjmwodAcz65guCGFRkMb4gKWTcIeLy60JJQbXrJ97BOXHxnkPFrP+YwFlaS0m+uWJTstrUA9o+UchFug==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.57.1': + resolution: {integrity: sha512-IEQTCHeiTOnAUC3IDQdzRAGj3jOAYNr9kBguI7MQAAZK3caezRrg0GxAb6Hchg4lxdZEI5Oq3iov/w/hnFWY9Q==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.57.1': + resolution: {integrity: sha512-F8sWbhZ7tyuEfsmOxwc2giKDQzN3+kuBLPwwZGyVkLlKGdV1nvnNwYD0fKQ8+XS6hp9nY7B+ZeK01EBUE7aHaw==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.57.1': + resolution: {integrity: sha512-rGfNUfn0GIeXtBP1wL5MnzSj98+PZe/AXaGBCRmT0ts80lU5CATYGxXukeTX39XBKsxzFpEeK+Mrp9faXOlmrw==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.57.1': + resolution: {integrity: sha512-MMtej3YHWeg/0klK2Qodf3yrNzz6CGjo2UntLvk2RSPlhzgLvYEB3frRvbEF2wRKh1Z2fDIg9KRPe1fawv7C+g==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.57.1': + resolution: {integrity: sha512-1a/qhaaOXhqXGpMFMET9VqwZakkljWHLmZOX48R0I/YLbhdxr1m4gtG1Hq7++VhVUmf+L3sTAf9op4JlhQ5u1Q==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-loong64-gnu@4.57.1': + resolution: {integrity: sha512-QWO6RQTZ/cqYtJMtxhkRkidoNGXc7ERPbZN7dVW5SdURuLeVU7lwKMpo18XdcmpWYd0qsP1bwKPf7DNSUinhvA==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-loong64-musl@4.57.1': + resolution: {integrity: sha512-xpObYIf+8gprgWaPP32xiN5RVTi/s5FCR+XMXSKmhfoJjrpRAjCuuqQXyxUa/eJTdAE6eJ+KDKaoEqjZQxh3Gw==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-ppc64-gnu@4.57.1': + resolution: {integrity: sha512-4BrCgrpZo4hvzMDKRqEaW1zeecScDCR+2nZ86ATLhAoJ5FQ+lbHVD3ttKe74/c7tNT9c6F2viwB3ufwp01Oh2w==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-ppc64-musl@4.57.1': + resolution: {integrity: sha512-NOlUuzesGauESAyEYFSe3QTUguL+lvrN1HtwEEsU2rOwdUDeTMJdO5dUYl/2hKf9jWydJrO9OL/XSSf65R5+Xw==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.57.1': + resolution: {integrity: sha512-ptA88htVp0AwUUqhVghwDIKlvJMD/fmL/wrQj99PRHFRAG6Z5nbWoWG4o81Nt9FT+IuqUQi+L31ZKAFeJ5Is+A==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-riscv64-musl@4.57.1': + resolution: {integrity: sha512-S51t7aMMTNdmAMPpBg7OOsTdn4tySRQvklmL3RpDRyknk87+Sp3xaumlatU+ppQ+5raY7sSTcC2beGgvhENfuw==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.57.1': + resolution: {integrity: sha512-Bl00OFnVFkL82FHbEqy3k5CUCKH6OEJL54KCyx2oqsmZnFTR8IoNqBF+mjQVcRCT5sB6yOvK8A37LNm/kPJiZg==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.57.1': + resolution: {integrity: sha512-ABca4ceT4N+Tv/GtotnWAeXZUZuM/9AQyCyKYyKnpk4yoA7QIAuBt6Hkgpw8kActYlew2mvckXkvx0FfoInnLg==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.57.1': + resolution: {integrity: sha512-HFps0JeGtuOR2convgRRkHCekD7j+gdAuXM+/i6kGzQtFhlCtQkpwtNzkNj6QhCDp7DRJ7+qC/1Vg2jt5iSOFw==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-openbsd-x64@4.57.1': + resolution: {integrity: sha512-H+hXEv9gdVQuDTgnqD+SQffoWoc0Of59AStSzTEj/feWTBAnSfSD3+Dql1ZruJQxmykT/JVY0dE8Ka7z0DH1hw==} + cpu: [x64] + os: [openbsd] + + '@rollup/rollup-openharmony-arm64@4.57.1': + resolution: {integrity: sha512-4wYoDpNg6o/oPximyc/NG+mYUejZrCU2q+2w6YZqrAs2UcNUChIZXjtafAiiZSUc7On8v5NyNj34Kzj/Ltk6dQ==} + cpu: [arm64] + os: [openharmony] + + '@rollup/rollup-win32-arm64-msvc@4.57.1': + resolution: {integrity: sha512-O54mtsV/6LW3P8qdTcamQmuC990HDfR71lo44oZMZlXU4tzLrbvTii87Ni9opq60ds0YzuAlEr/GNwuNluZyMQ==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.57.1': + resolution: {integrity: sha512-P3dLS+IerxCT/7D2q2FYcRdWRl22dNbrbBEtxdWhXrfIMPP9lQhb5h4Du04mdl5Woq05jVCDPCMF7Ub0NAjIew==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-gnu@4.57.1': + resolution: {integrity: sha512-VMBH2eOOaKGtIJYleXsi2B8CPVADrh+TyNxJ4mWPnKfLB/DBUmzW+5m1xUrcwWoMfSLagIRpjUFeW5CO5hyciQ==} + cpu: [x64] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.57.1': + resolution: {integrity: sha512-mxRFDdHIWRxg3UfIIAwCm6NzvxG0jDX/wBN6KsQFTvKFqqg9vTrWUE68qEjHt19A5wwx5X5aUi2zuZT7YR0jrA==} + cpu: [x64] + os: [win32] + + '@shikijs/core@3.22.0': + resolution: {integrity: sha512-iAlTtSDDbJiRpvgL5ugKEATDtHdUVkqgHDm/gbD2ZS9c88mx7G1zSYjjOxp5Qa0eaW0MAQosFRmJSk354PRoQA==} + + '@shikijs/engine-javascript@3.22.0': + resolution: {integrity: sha512-jdKhfgW9CRtj3Tor0L7+yPwdG3CgP7W+ZEqSsojrMzCjD1e0IxIbwUMDDpYlVBlC08TACg4puwFGkZfLS+56Tw==} + + '@shikijs/engine-oniguruma@3.22.0': + resolution: {integrity: sha512-DyXsOG0vGtNtl7ygvabHd7Mt5EY8gCNqR9Y7Lpbbd/PbJvgWrqaKzH1JW6H6qFkuUa8aCxoiYVv8/YfFljiQxA==} + + '@shikijs/langs@3.22.0': + resolution: {integrity: sha512-x/42TfhWmp6H00T6uwVrdTJGKgNdFbrEdhaDwSR5fd5zhQ1Q46bHq9EO61SCEWJR0HY7z2HNDMaBZp8JRmKiIA==} + + '@shikijs/themes@3.22.0': + resolution: {integrity: sha512-o+tlOKqsr6FE4+mYJG08tfCFDS+3CG20HbldXeVoyP+cYSUxDhrFf3GPjE60U55iOkkjbpY2uC3It/eeja35/g==} + + '@shikijs/types@3.22.0': + resolution: {integrity: sha512-491iAekgKDBFE67z70Ok5a8KBMsQ2IJwOWw3us/7ffQkIBCyOQfm/aNwVMBUriP02QshIfgHCBSIYAl3u2eWjg==} + + '@shikijs/vscode-textmate@10.0.2': + resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==} + + '@trysound/sax@0.2.0': + resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} + engines: {node: '>=10.13.0'} + + '@types/debug@4.1.12': + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + + '@types/estree-jsx@1.0.5': + resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} + + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + + '@types/hast@3.0.4': + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} + + '@types/js-yaml@4.0.9': + resolution: {integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==} + + '@types/mdast@4.0.4': + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} + + '@types/mdx@2.0.13': + resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==} + + '@types/ms@2.1.0': + resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} + + '@types/nlcst@2.0.3': + resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==} + + '@types/node@17.0.45': + resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} + + '@types/node@25.1.0': + resolution: {integrity: sha512-t7frlewr6+cbx+9Ohpl0NOTKXZNV9xHRmNOvql47BFJKcEG1CxtxlPEEe+gR9uhVWM4DwhnvTF110mIL4yP9RA==} + + '@types/sax@1.2.7': + resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==} + + '@types/unist@2.0.11': + resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} + + '@types/unist@3.0.3': + resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} + + '@types/yauzl@2.10.3': + resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} + + '@ungap/structured-clone@1.3.0': + resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} + + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn@8.15.0: + resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} + engines: {node: '>=0.4.0'} + hasBin: true + + ansi-align@3.0.1: + resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-regex@6.2.2: + resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==} + engines: {node: '>=12'} + + ansi-styles@6.2.3: + resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==} + engines: {node: '>=12'} + + anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + + arg@5.0.2: + resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + aria-query@5.3.2: + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} + engines: {node: '>= 0.4'} + + array-iterate@2.0.1: + resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==} + + astring@1.9.0: + resolution: {integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==} + hasBin: true + + astro-expressive-code@0.41.6: + resolution: {integrity: sha512-l47tb1uhmVIebHUkw+HEPtU/av0G4O8Q34g2cbkPvC7/e9ZhANcjUUciKt9Hp6gSVDdIuXBBLwJQn2LkeGMOAw==} + peerDependencies: + astro: ^4.0.0-beta || ^5.0.0-beta || ^3.3.0 || ^6.0.0-beta + + astro-icon@1.1.5: + resolution: {integrity: sha512-CJYS5nWOw9jz4RpGWmzNQY7D0y2ZZacH7atL2K9DeJXJVaz7/5WrxeyIxO8KASk1jCM96Q4LjRx/F3R+InjJrw==} + + astro@5.17.1: + resolution: {integrity: sha512-oD3tlxTaVWGq/Wfbqk6gxzVRz98xa/rYlpe+gU2jXJMSD01k6sEDL01ZlT8mVSYB/rMgnvIOfiQQ3BbLdN237A==} + engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'} + hasBin: true + + axobject-query@4.1.0: + resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} + engines: {node: '>= 0.4'} + + bail@2.0.2: + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} + + base-64@1.0.0: + resolution: {integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==} + + bcp-47-match@2.0.3: + resolution: {integrity: sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==} + + bcp-47@2.1.0: + resolution: {integrity: sha512-9IIS3UPrvIa1Ej+lVDdDwO7zLehjqsaByECw0bu2RRGP73jALm6FYbzI5gWbgHLvNdkvfXB5YrSbocZdOS0c0w==} + + boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + + boxen@8.0.1: + resolution: {integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==} + engines: {node: '>=18'} + + buffer-crc32@0.2.13: + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + + camelcase@8.0.0: + resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==} + engines: {node: '>=16'} + + ccount@2.0.1: + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + + chalk@5.6.2: + resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + + character-entities-html4@2.1.0: + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} + + character-entities-legacy@3.0.0: + resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} + + character-entities@2.0.2: + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + + character-reference-invalid@2.0.1: + resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} + + cheerio-select@2.1.0: + resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==} + + cheerio@1.2.0: + resolution: {integrity: sha512-WDrybc/gKFpTYQutKIK6UvfcuxijIZfMfXaYm8NMsPQxSYvf+13fXUJ4rztGGbJcBQ/GF55gvrZ0Bc0bj/mqvg==} + engines: {node: '>=20.18.1'} + + chokidar@5.0.0: + resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==} + engines: {node: '>= 20.19.0'} + + chownr@3.0.0: + resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==} + engines: {node: '>=18'} + + ci-info@4.4.0: + resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==} + engines: {node: '>=8'} + + cli-boxes@3.0.0: + resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} + engines: {node: '>=10'} + + clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} + + collapse-white-space@2.1.0: + resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==} + + comma-separated-tokens@2.0.3: + resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} + + commander@11.1.0: + resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==} + engines: {node: '>=16'} + + commander@7.2.0: + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} + + common-ancestor-path@1.0.1: + resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} + + confbox@0.1.8: + resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} + + confbox@0.2.2: + resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==} + + cookie-es@1.2.2: + resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==} + + cookie@1.1.1: + resolution: {integrity: sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==} + engines: {node: '>=18'} + + crossws@0.3.5: + resolution: {integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==} + + css-select@5.2.2: + resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==} + + css-selector-parser@3.3.0: + resolution: {integrity: sha512-Y2asgMGFqJKF4fq4xHDSlFYIkeVfRsm69lQC1q9kbEsH5XtnINTMrweLkjYMeaUgiXBy/uvKeO/a1JHTNnmB2g==} + + css-tree@2.2.1: + resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + + css-tree@2.3.1: + resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + + css-tree@3.1.0: + resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + + css-what@6.2.2: + resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==} + engines: {node: '>= 6'} + + cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + + csso@5.0.5: + resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + + debug@4.4.3: + resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decode-named-character-reference@1.3.0: + resolution: {integrity: sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==} + + defu@6.1.4: + resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} + + dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + + destr@2.0.5: + resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==} + + detect-libc@2.1.2: + resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} + engines: {node: '>=8'} + + deterministic-object-hash@2.0.2: + resolution: {integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==} + engines: {node: '>=18'} + + devalue@5.6.2: + resolution: {integrity: sha512-nPRkjWzzDQlsejL1WVifk5rvcFi/y1onBRxjaFMjZeR9mFpqu2gmAZ9xUB9/IEanEP/vBtGeGganC/GO1fmufg==} + + devlop@1.1.0: + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + + diff@8.0.3: + resolution: {integrity: sha512-qejHi7bcSD4hQAZE0tNAawRK1ZtafHDmMTMkrrIGgSLl7hTnQHmKCeB45xAcbfTqK2zowkM3j3bHt/4b/ARbYQ==} + engines: {node: '>=0.3.1'} + + direction@2.0.1: + resolution: {integrity: sha512-9S6m9Sukh1cZNknO1CWAr2QAWsbKLafQiyM5gZ7VgXHeuaoUwffKN4q6NC4A/Mf9iiPlOXQEKW/Mv/mh9/3YFA==} + hasBin: true + + dlv@1.1.3: + resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} + + dom-serializer@2.0.0: + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + + domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + + domhandler@5.0.3: + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} + + domutils@3.2.2: + resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} + + dset@3.1.4: + resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==} + engines: {node: '>=4'} + + emoji-regex@10.6.0: + resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + encoding-sniffer@0.2.1: + resolution: {integrity: sha512-5gvq20T6vfpekVtqrYQsSCFZ1wEg5+wW0/QaZMWkFr6BqD3NfKs0rLCx4rrVlSWJeZb5NBJgVLswK/w2MWU+Gw==} + + end-of-stream@1.4.5: + resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + entities@6.0.1: + resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} + engines: {node: '>=0.12'} + + entities@7.0.1: + resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==} + engines: {node: '>=0.12'} + + es-module-lexer@1.7.0: + resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} + + esast-util-from-estree@2.0.0: + resolution: {integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==} + + esast-util-from-js@2.0.1: + resolution: {integrity: sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==} + + esbuild@0.25.12: + resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==} + engines: {node: '>=18'} + hasBin: true + + escape-string-regexp@5.0.0: + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} + + estree-util-attach-comments@3.0.0: + resolution: {integrity: sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==} + + estree-util-build-jsx@3.0.1: + resolution: {integrity: sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==} + + estree-util-is-identifier-name@3.0.0: + resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==} + + estree-util-scope@1.0.0: + resolution: {integrity: sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==} + + estree-util-to-js@2.0.0: + resolution: {integrity: sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==} + + estree-util-visit@2.0.0: + resolution: {integrity: sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==} + + estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + + estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + + eventemitter3@5.0.4: + resolution: {integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==} + + expressive-code@0.41.6: + resolution: {integrity: sha512-W/5+IQbrpCIM5KGLjO35wlp1NCwDOOVQb+PAvzEoGkW1xjGM807ZGfBKptNWH6UECvt6qgmLyWolCMYKh7eQmA==} + + exsolve@1.0.8: + resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==} + + extend@3.0.2: + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + + extract-zip@2.0.1: + resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} + engines: {node: '>= 10.17.0'} + hasBin: true + + fd-slicer@1.1.0: + resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + + fdir@6.5.0: + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} + engines: {node: '>=12.0.0'} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + flattie@1.1.1: + resolution: {integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==} + engines: {node: '>=8'} + + fontace@0.4.0: + resolution: {integrity: sha512-moThBCItUe2bjZip5PF/iZClpKHGLwMvR79Kp8XpGRBrvoRSnySN4VcILdv3/MJzbhvUA5WeiUXF5o538m5fvg==} + + fontkitten@1.0.2: + resolution: {integrity: sha512-piJxbLnkD9Xcyi7dWJRnqszEURixe7CrF/efBfbffe2DPyabmuIuqraruY8cXTs19QoM8VJzx47BDRVNXETM7Q==} + engines: {node: '>=20'} + + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + + get-east-asian-width@1.4.0: + resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==} + engines: {node: '>=18'} + + get-stream@5.2.0: + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} + + github-slugger@2.0.0: + resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} + + globals@15.15.0: + resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==} + engines: {node: '>=18'} + + h3@1.15.5: + resolution: {integrity: sha512-xEyq3rSl+dhGX2Lm0+eFQIAzlDN6Fs0EcC4f7BNUmzaRX/PTzeuM+Tr2lHB8FoXggsQIeXLj8EDVgs5ywxyxmg==} + + hast-util-embedded@3.0.0: + resolution: {integrity: sha512-naH8sld4Pe2ep03qqULEtvYr7EjrLK2QHY8KJR6RJkTUjPGObe1vnx585uzem2hGra+s1q08DZZpfgDVYRbaXA==} + + hast-util-format@1.1.0: + resolution: {integrity: sha512-yY1UDz6bC9rDvCWHpx12aIBGRG7krurX0p0Fm6pT547LwDIZZiNr8a+IHDogorAdreULSEzP82Nlv5SZkHZcjA==} + + hast-util-from-html@2.0.3: + resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==} + + hast-util-from-parse5@8.0.3: + resolution: {integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==} + + hast-util-has-property@3.0.0: + resolution: {integrity: sha512-MNilsvEKLFpV604hwfhVStK0usFY/QmM5zX16bo7EjnAEGofr5YyI37kzopBlZJkHD4t887i+q/C8/tr5Q94cA==} + + hast-util-is-body-ok-link@3.0.1: + resolution: {integrity: sha512-0qpnzOBLztXHbHQenVB8uNuxTnm/QBFUOmdOSsEn7GnBtyY07+ENTWVFBAnXd/zEgd9/SUG3lRY7hSIBWRgGpQ==} + + hast-util-is-element@3.0.0: + resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==} + + hast-util-minify-whitespace@1.0.1: + resolution: {integrity: sha512-L96fPOVpnclQE0xzdWb/D12VT5FabA7SnZOUMtL1DbXmYiHJMXZvFkIZfiMmTCNJHUeO2K9UYNXoVyfz+QHuOw==} + + hast-util-parse-selector@4.0.0: + resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} + + hast-util-phrasing@3.0.1: + resolution: {integrity: sha512-6h60VfI3uBQUxHqTyMymMZnEbNl1XmEGtOxxKYL7stY2o601COo62AWAYBQR9lZbYXYSBoxag8UpPRXK+9fqSQ==} + + hast-util-raw@9.1.0: + resolution: {integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==} + + hast-util-select@6.0.4: + resolution: {integrity: sha512-RqGS1ZgI0MwxLaKLDxjprynNzINEkRHY2i8ln4DDjgv9ZhcYVIHN9rlpiYsqtFwrgpYU361SyWDQcGNIBVu3lw==} + + hast-util-to-estree@3.1.3: + resolution: {integrity: sha512-48+B/rJWAp0jamNbAAf9M7Uf//UVqAoMmgXhBdxTDJLGKY+LRnZ99qcG+Qjl5HfMpYNzS5v4EAwVEF34LeAj7w==} + + hast-util-to-html@9.0.5: + resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==} + + hast-util-to-jsx-runtime@2.3.6: + resolution: {integrity: sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==} + + hast-util-to-parse5@8.0.1: + resolution: {integrity: sha512-MlWT6Pjt4CG9lFCjiz4BH7l9wmrMkfkJYCxFwKQic8+RTZgWPuWxwAfjJElsXkex7DJjfSJsQIt931ilUgmwdA==} + + hast-util-to-string@3.0.1: + resolution: {integrity: sha512-XelQVTDWvqcl3axRfI0xSeoVKzyIFPwsAGSLIsKdJKQMXDYJS4WYrBNF/8J7RdhIcFI2BOHgAifggsvsxp/3+A==} + + hast-util-to-text@4.0.2: + resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==} + + hast-util-whitespace@3.0.0: + resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} + + hastscript@9.0.1: + resolution: {integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==} + + html-escaper@3.0.3: + resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==} + + html-void-elements@3.0.0: + resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} + + html-whitespace-sensitive-tag-names@3.0.1: + resolution: {integrity: sha512-q+310vW8zmymYHALr1da4HyXUQ0zgiIwIicEfotYPWGN0OJVEN/58IJ3A4GBYcEq3LGAZqKb+ugvP0GNB9CEAA==} + + htmlparser2@10.1.0: + resolution: {integrity: sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ==} + + http-cache-semantics@4.2.0: + resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==} + + i18next@23.16.8: + resolution: {integrity: sha512-06r/TitrM88Mg5FdUXAKL96dJMzgqLE5dv3ryBAra4KCwD9mJ4ndOTS95ZuymIGoE+2hzfdaMak2X11/es7ZWg==} + + iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} + + import-meta-resolve@4.2.0: + resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==} + + inline-style-parser@0.2.7: + resolution: {integrity: sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==} + + iron-webcrypto@1.2.1: + resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==} + + is-alphabetical@2.0.1: + resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} + + is-alphanumerical@2.0.1: + resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} + + is-decimal@2.0.1: + resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} + + is-docker@3.0.0: + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + hasBin: true + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-hexadecimal@2.0.1: + resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} + + is-inside-container@1.0.0: + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} + engines: {node: '>=14.16'} + hasBin: true + + is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} + + is-wsl@3.1.0: + resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} + engines: {node: '>=16'} + + js-yaml@4.1.1: + resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==} + hasBin: true + + kleur@3.0.3: + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} + + klona@2.0.6: + resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} + engines: {node: '>= 8'} + + kolorist@1.8.0: + resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==} + + local-pkg@1.1.2: + resolution: {integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==} + engines: {node: '>=14'} + + longest-streak@3.1.0: + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + + lru-cache@11.2.5: + resolution: {integrity: sha512-vFrFJkWtJvJnD5hg+hJvVE8Lh/TcMzKnTgCWmtBipwI5yLX/iX+5UB2tfuyODF5E7k9xEzMdYgGqaSb1c0c5Yw==} + engines: {node: 20 || >=22} + + magic-string@0.30.21: + resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} + + magicast@0.5.1: + resolution: {integrity: sha512-xrHS24IxaLrvuo613F719wvOIv9xPHFWQHuvGUBmPnCA/3MQxKI3b+r7n1jAoDHmsbC5bRhTZYR77invLAxVnw==} + + markdown-extensions@2.0.0: + resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==} + engines: {node: '>=16'} + + markdown-table@3.0.4: + resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} + + mdast-util-definitions@6.0.0: + resolution: {integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==} + + mdast-util-directive@3.1.0: + resolution: {integrity: sha512-I3fNFt+DHmpWCYAT7quoM6lHf9wuqtI+oCOfvILnoicNIqjh5E3dEJWiXuYME2gNe8vl1iMQwyUHa7bgFmak6Q==} + + mdast-util-find-and-replace@3.0.2: + resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==} + + mdast-util-from-markdown@2.0.2: + resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} + + mdast-util-gfm-autolink-literal@2.0.1: + resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} + + mdast-util-gfm-footnote@2.1.0: + resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==} + + mdast-util-gfm-strikethrough@2.0.0: + resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} + + mdast-util-gfm-table@2.0.0: + resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} + + mdast-util-gfm-task-list-item@2.0.0: + resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} + + mdast-util-gfm@3.1.0: + resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==} + + mdast-util-mdx-expression@2.0.1: + resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==} + + mdast-util-mdx-jsx@3.2.0: + resolution: {integrity: sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==} + + mdast-util-mdx@3.0.0: + resolution: {integrity: sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==} + + mdast-util-mdxjs-esm@2.0.1: + resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==} + + mdast-util-phrasing@4.1.0: + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} + + mdast-util-to-hast@13.2.1: + resolution: {integrity: sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==} + + mdast-util-to-markdown@2.1.2: + resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} + + mdast-util-to-string@4.0.0: + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} + + mdn-data@2.0.28: + resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} + + mdn-data@2.0.30: + resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} + + mdn-data@2.12.2: + resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==} + + micromark-core-commonmark@2.0.3: + resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} + + micromark-extension-directive@3.0.2: + resolution: {integrity: sha512-wjcXHgk+PPdmvR58Le9d7zQYWy+vKEU9Se44p2CrCDPiLr2FMyiT4Fyb5UFKFC66wGB3kPlgD7q3TnoqPS7SZA==} + + micromark-extension-gfm-autolink-literal@2.1.0: + resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} + + micromark-extension-gfm-footnote@2.1.0: + resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} + + micromark-extension-gfm-strikethrough@2.1.0: + resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} + + micromark-extension-gfm-table@2.1.1: + resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==} + + micromark-extension-gfm-tagfilter@2.0.0: + resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} + + micromark-extension-gfm-task-list-item@2.1.0: + resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} + + micromark-extension-gfm@3.0.0: + resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} + + micromark-extension-mdx-expression@3.0.1: + resolution: {integrity: sha512-dD/ADLJ1AeMvSAKBwO22zG22N4ybhe7kFIZ3LsDI0GlsNr2A3KYxb0LdC1u5rj4Nw+CHKY0RVdnHX8vj8ejm4Q==} + + micromark-extension-mdx-jsx@3.0.2: + resolution: {integrity: sha512-e5+q1DjMh62LZAJOnDraSSbDMvGJ8x3cbjygy2qFEi7HCeUT4BDKCvMozPozcD6WmOt6sVvYDNBKhFSz3kjOVQ==} + + micromark-extension-mdx-md@2.0.0: + resolution: {integrity: sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==} + + micromark-extension-mdxjs-esm@3.0.0: + resolution: {integrity: sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==} + + micromark-extension-mdxjs@3.0.0: + resolution: {integrity: sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==} + + micromark-factory-destination@2.0.1: + resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} + + micromark-factory-label@2.0.1: + resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} + + micromark-factory-mdx-expression@2.0.3: + resolution: {integrity: sha512-kQnEtA3vzucU2BkrIa8/VaSAsP+EJ3CKOvhMuJgOEGg9KDC6OAY6nSnNDVRiVNRqj7Y4SlSzcStaH/5jge8JdQ==} + + micromark-factory-space@2.0.1: + resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} + + micromark-factory-title@2.0.1: + resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} + + micromark-factory-whitespace@2.0.1: + resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} + + micromark-util-character@2.1.1: + resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} + + micromark-util-chunked@2.0.1: + resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} + + micromark-util-classify-character@2.0.1: + resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} + + micromark-util-combine-extensions@2.0.1: + resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} + + micromark-util-decode-numeric-character-reference@2.0.2: + resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} + + micromark-util-decode-string@2.0.1: + resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} + + micromark-util-encode@2.0.1: + resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} + + micromark-util-events-to-acorn@2.0.3: + resolution: {integrity: sha512-jmsiEIiZ1n7X1Rr5k8wVExBQCg5jy4UXVADItHmNk1zkwEVhBuIUKRu3fqv+hs4nxLISi2DQGlqIOGiFxgbfHg==} + + micromark-util-html-tag-name@2.0.1: + resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} + + micromark-util-normalize-identifier@2.0.1: + resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} + + micromark-util-resolve-all@2.0.1: + resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} + + micromark-util-sanitize-uri@2.0.1: + resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} + + micromark-util-subtokenize@2.1.0: + resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==} + + micromark-util-symbol@2.0.1: + resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} + + micromark-util-types@2.0.2: + resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==} + + micromark@4.0.2: + resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==} + + minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + engines: {node: '>=16 || 14 >=14.17'} + + minizlib@3.1.0: + resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==} + engines: {node: '>= 18'} + + mlly@1.8.0: + resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==} + + mrmime@2.0.1: + resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} + engines: {node: '>=10'} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + + neotraverse@0.6.18: + resolution: {integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==} + engines: {node: '>= 10'} + + nlcst-to-string@4.0.0: + resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==} + + node-fetch-native@1.6.7: + resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==} + + node-mock-http@1.0.4: + resolution: {integrity: sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==} + + normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + + nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + + ofetch@1.5.1: + resolution: {integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==} + + ohash@2.0.11: + resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + oniguruma-parser@0.12.1: + resolution: {integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==} + + oniguruma-to-es@4.3.4: + resolution: {integrity: sha512-3VhUGN3w2eYxnTzHn+ikMI+fp/96KoRSVK9/kMTcFqj1NRDh2IhQCKvYxDnWePKRXY/AqH+Fuiyb7VHSzBjHfA==} + + p-limit@6.2.0: + resolution: {integrity: sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==} + engines: {node: '>=18'} + + p-queue@8.1.1: + resolution: {integrity: sha512-aNZ+VfjobsWryoiPnEApGGmf5WmNsCo9xu8dfaYamG5qaLP7ClhLN6NgsFe6SwJ2UbLEBK5dv9x8Mn5+RVhMWQ==} + engines: {node: '>=18'} + + p-timeout@6.1.4: + resolution: {integrity: sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==} + engines: {node: '>=14.16'} + + package-manager-detector@1.6.0: + resolution: {integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==} + + pagefind@1.4.0: + resolution: {integrity: sha512-z2kY1mQlL4J8q5EIsQkLzQjilovKzfNVhX8De6oyE6uHpfFtyBaqUpcl/XzJC/4fjD8vBDyh1zolimIcVrCn9g==} + hasBin: true + + parse-entities@4.0.2: + resolution: {integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==} + + parse-latin@7.0.0: + resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==} + + parse5-htmlparser2-tree-adapter@7.1.0: + resolution: {integrity: sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==} + + parse5-parser-stream@7.1.2: + resolution: {integrity: sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==} + + parse5@7.3.0: + resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} + + pathe@2.0.3: + resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} + + pend@1.2.0: + resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} + + piccolore@0.1.3: + resolution: {integrity: sha512-o8bTeDWjE086iwKrROaDf31K0qC/BENdm15/uH9usSC/uZjJOKb2YGiVHfLY4GhwsERiPI1jmwI2XrA7ACOxVw==} + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + picomatch@4.0.3: + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} + engines: {node: '>=12'} + + pkg-types@1.3.1: + resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==} + + pkg-types@2.3.0: + resolution: {integrity: sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==} + + postcss-nested@6.2.0: + resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==} + engines: {node: '>=12.0'} + peerDependencies: + postcss: ^8.2.14 + + postcss-selector-parser@6.1.2: + resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} + engines: {node: '>=4'} + + postcss@8.5.6: + resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} + engines: {node: ^10 || ^12 || >=14} + + prismjs@1.30.0: + resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==} + engines: {node: '>=6'} + + prompts@2.4.2: + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} + + property-information@7.1.0: + resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==} + + pump@3.0.3: + resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==} + + quansync@0.2.11: + resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==} + + radix3@1.1.2: + resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} + + readdirp@5.0.0: + resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==} + engines: {node: '>= 20.19.0'} + + recma-build-jsx@1.0.0: + resolution: {integrity: sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==} + + recma-jsx@1.0.1: + resolution: {integrity: sha512-huSIy7VU2Z5OLv6oFLosQGGDqPqdO1iq6bWNAdhzMxSJP7RAso4fCZ1cKu8j9YHCZf3TPrq4dw3okhrylgcd7w==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + recma-parse@1.0.0: + resolution: {integrity: sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==} + + recma-stringify@1.0.0: + resolution: {integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==} + + regex-recursion@6.0.2: + resolution: {integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==} + + regex-utilities@2.3.0: + resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==} + + regex@6.1.0: + resolution: {integrity: sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg==} + + rehype-expressive-code@0.41.6: + resolution: {integrity: sha512-aBMX8kxPtjmDSFUdZlAWJkMvsQ4ZMASfee90JWIAV8tweltXLzkWC3q++43ToTelI8ac5iC0B3/S/Cl4Ql1y2g==} + + rehype-format@5.0.1: + resolution: {integrity: sha512-zvmVru9uB0josBVpr946OR8ui7nJEdzZobwLOOqHb/OOD88W0Vk2SqLwoVOj0fM6IPCCO6TaV9CvQvJMWwukFQ==} + + rehype-parse@9.0.1: + resolution: {integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==} + + rehype-raw@7.0.0: + resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} + + rehype-recma@1.0.0: + resolution: {integrity: sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==} + + rehype-stringify@10.0.1: + resolution: {integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==} + + rehype@13.0.2: + resolution: {integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==} + + remark-directive@3.0.1: + resolution: {integrity: sha512-gwglrEQEZcZYgVyG1tQuA+h58EZfq5CSULw7J90AFuCTyib1thgHPoqQ+h9iFvU6R+vnZ5oNFQR5QKgGpk741A==} + + remark-gfm@4.0.1: + resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==} + + remark-mdx@3.1.1: + resolution: {integrity: sha512-Pjj2IYlUY3+D8x00UJsIOg5BEvfMyeI+2uLPn9VO9Wg4MEtN/VTIq2NEJQfde9PnX15KgtHyl9S0BcTnWrIuWg==} + + remark-parse@11.0.0: + resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} + + remark-rehype@11.1.2: + resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==} + + remark-smartypants@3.0.2: + resolution: {integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==} + engines: {node: '>=16.0.0'} + + remark-stringify@11.0.0: + resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} + + retext-latin@4.0.0: + resolution: {integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==} + + retext-smartypants@6.2.0: + resolution: {integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==} + + retext-stringify@4.0.0: + resolution: {integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==} + + retext@9.0.0: + resolution: {integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==} + + rollup@4.57.1: + resolution: {integrity: sha512-oQL6lgK3e2QZeQ7gcgIkS2YZPg5slw37hYufJ3edKlfQSGGm8ICoxswK15ntSzF/a8+h7ekRy7k7oWc3BQ7y8A==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + sax@1.4.4: + resolution: {integrity: sha512-1n3r/tGXO6b6VXMdFT54SHzT9ytu9yr7TaELowdYpMqY/Ao7EnlQGmAQ1+RatX7Tkkdm6hONI2owqNx2aZj5Sw==} + engines: {node: '>=11.0.0'} + + semver@7.7.3: + resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==} + engines: {node: '>=10'} + hasBin: true + + sharp@0.34.5: + resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + + shiki@3.22.0: + resolution: {integrity: sha512-LBnhsoYEe0Eou4e1VgJACes+O6S6QC0w71fCSp5Oya79inkwkm15gQ1UF6VtQ8j/taMDh79hAB49WUk8ALQW3g==} + + sisteransi@1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + + sitemap@8.0.2: + resolution: {integrity: sha512-LwktpJcyZDoa0IL6KT++lQ53pbSrx2c9ge41/SeLTyqy2XUNA6uR4+P9u5IVo5lPeL2arAcOKn1aZAxoYbCKlQ==} + engines: {node: '>=14.0.0', npm: '>=6.0.0'} + hasBin: true + + smol-toml@1.6.0: + resolution: {integrity: sha512-4zemZi0HvTnYwLfrpk/CF9LOd9Lt87kAt50GnqhMpyF9U3poDAP2+iukq2bZsO/ufegbYehBkqINbsWxj4l4cw==} + engines: {node: '>= 18'} + + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + + source-map@0.7.6: + resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==} + engines: {node: '>= 12'} + + space-separated-tokens@2.0.2: + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} + + stream-replace-string@2.0.0: + resolution: {integrity: sha512-TlnjJ1C0QrmxRNrON00JvaFFlNh5TTG00APw23j74ET7gkQpTASi6/L2fuiav8pzK715HXtUeClpBTw2NPSn6w==} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string-width@7.2.0: + resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} + engines: {node: '>=18'} + + stringify-entities@4.0.4: + resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-ansi@7.1.2: + resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==} + engines: {node: '>=12'} + + style-to-js@1.1.21: + resolution: {integrity: sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==} + + style-to-object@1.0.14: + resolution: {integrity: sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==} + + svgo@3.3.2: + resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==} + engines: {node: '>=14.0.0'} + hasBin: true + + svgo@4.0.0: + resolution: {integrity: sha512-VvrHQ+9uniE+Mvx3+C9IEe/lWasXCU0nXMY2kZeLrHNICuRiC8uMPyM14UEaMOFA5mhyQqEkB02VoQ16n3DLaw==} + engines: {node: '>=16'} + hasBin: true + + tar@7.5.7: + resolution: {integrity: sha512-fov56fJiRuThVFXD6o6/Q354S7pnWMJIVlDBYijsTNx6jKSE4pvrDTs6lUnmGvNyfJwFQQwWy3owKz1ucIhveQ==} + engines: {node: '>=18'} + + tiny-inflate@1.0.3: + resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==} + + tinyexec@1.0.2: + resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==} + engines: {node: '>=18'} + + tinyglobby@0.2.15: + resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} + engines: {node: '>=12.0.0'} + + trim-lines@3.0.1: + resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} + + trough@2.2.0: + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} + + tsconfck@3.1.6: + resolution: {integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==} + engines: {node: ^18 || >=20} + hasBin: true + peerDependencies: + typescript: ^5.0.0 + peerDependenciesMeta: + typescript: + optional: true + + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + + type-fest@4.41.0: + resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} + engines: {node: '>=16'} + + typescript@5.9.3: + resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} + engines: {node: '>=14.17'} + hasBin: true + + ufo@1.6.3: + resolution: {integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==} + + ultrahtml@1.6.0: + resolution: {integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==} + + uncrypto@0.1.3: + resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==} + + undici-types@7.16.0: + resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==} + + undici@7.19.2: + resolution: {integrity: sha512-4VQSpGEGsWzk0VYxyB/wVX/Q7qf9t5znLRgs0dzszr9w9Fej/8RVNQ+S20vdXSAyra/bJ7ZQfGv6ZMj7UEbzSg==} + engines: {node: '>=20.18.1'} + + unified@11.0.5: + resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} + + unifont@0.7.3: + resolution: {integrity: sha512-b0GtQzKCyuSHGsfj5vyN8st7muZ6VCI4XD4vFlr7Uy1rlWVYxC3npnfk8MyreHxJYrz1ooLDqDzFe9XqQTlAhA==} + + unist-util-find-after@5.0.0: + resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} + + unist-util-is@6.0.1: + resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==} + + unist-util-modify-children@4.0.0: + resolution: {integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==} + + unist-util-position-from-estree@2.0.0: + resolution: {integrity: sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==} + + unist-util-position@5.0.0: + resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} + + unist-util-remove-position@5.0.0: + resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} + + unist-util-stringify-position@4.0.0: + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} + + unist-util-visit-children@3.0.0: + resolution: {integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==} + + unist-util-visit-parents@6.0.2: + resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==} + + unist-util-visit@5.1.0: + resolution: {integrity: sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==} + + unstorage@1.17.4: + resolution: {integrity: sha512-fHK0yNg38tBiJKp/Vgsq4j0JEsCmgqH58HAn707S7zGkArbZsVr/CwINoi+nh3h98BRCwKvx1K3Xg9u3VV83sw==} + peerDependencies: + '@azure/app-configuration': ^1.8.0 + '@azure/cosmos': ^4.2.0 + '@azure/data-tables': ^13.3.0 + '@azure/identity': ^4.6.0 + '@azure/keyvault-secrets': ^4.9.0 + '@azure/storage-blob': ^12.26.0 + '@capacitor/preferences': ^6 || ^7 || ^8 + '@deno/kv': '>=0.9.0' + '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0 + '@planetscale/database': ^1.19.0 + '@upstash/redis': ^1.34.3 + '@vercel/blob': '>=0.27.1' + '@vercel/functions': ^2.2.12 || ^3.0.0 + '@vercel/kv': ^1 || ^2 || ^3 + aws4fetch: ^1.0.20 + db0: '>=0.2.1' + idb-keyval: ^6.2.1 + ioredis: ^5.4.2 + uploadthing: ^7.4.4 + peerDependenciesMeta: + '@azure/app-configuration': + optional: true + '@azure/cosmos': + optional: true + '@azure/data-tables': + optional: true + '@azure/identity': + optional: true + '@azure/keyvault-secrets': + optional: true + '@azure/storage-blob': + optional: true + '@capacitor/preferences': + optional: true + '@deno/kv': + optional: true + '@netlify/blobs': + optional: true + '@planetscale/database': + optional: true + '@upstash/redis': + optional: true + '@vercel/blob': + optional: true + '@vercel/functions': + optional: true + '@vercel/kv': + optional: true + aws4fetch: + optional: true + db0: + optional: true + idb-keyval: + optional: true + ioredis: + optional: true + uploadthing: + optional: true + + util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + + vfile-location@5.0.3: + resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==} + + vfile-message@4.0.3: + resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==} + + vfile@6.0.3: + resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} + + vite@6.4.1: + resolution: {integrity: sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==} + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 + jiti: '>=1.21.0' + less: '*' + lightningcss: ^1.21.0 + sass: '*' + sass-embedded: '*' + stylus: '*' + sugarss: '*' + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + peerDependenciesMeta: + '@types/node': + optional: true + jiti: + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + + vitefu@1.1.1: + resolution: {integrity: sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==} + peerDependencies: + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0 + peerDependenciesMeta: + vite: + optional: true + + web-namespaces@2.0.1: + resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} + + whatwg-encoding@3.1.1: + resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} + engines: {node: '>=18'} + deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation + + whatwg-mimetype@4.0.0: + resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} + engines: {node: '>=18'} + + which-pm-runs@1.1.0: + resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==} + engines: {node: '>=4'} + + widest-line@5.0.0: + resolution: {integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==} + engines: {node: '>=18'} + + wrap-ansi@9.0.2: + resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==} + engines: {node: '>=18'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + xxhash-wasm@1.1.0: + resolution: {integrity: sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==} + + yallist@5.0.0: + resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==} + engines: {node: '>=18'} + + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + + yauzl@2.10.0: + resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + + yocto-queue@1.2.2: + resolution: {integrity: sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==} + engines: {node: '>=12.20'} + + yocto-spinner@0.2.3: + resolution: {integrity: sha512-sqBChb33loEnkoXte1bLg45bEBsOP9N1kzQh5JZNKj/0rik4zAPTNSAVPj3uQAdc6slYJ0Ksc403G2XgxsJQFQ==} + engines: {node: '>=18.19'} + + yoctocolors@2.1.2: + resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==} + engines: {node: '>=18'} + + zod-to-json-schema@3.25.1: + resolution: {integrity: sha512-pM/SU9d3YAggzi6MtR4h7ruuQlqKtad8e9S0fmxcMi+ueAK5Korys/aWcV9LIIHTVbj01NdzxcnXSN+O74ZIVA==} + peerDependencies: + zod: ^3.25 || ^4 + + zod-to-ts@1.2.0: + resolution: {integrity: sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==} + peerDependencies: + typescript: ^4.9.4 || ^5.0.2 + zod: ^3 + + zod@3.25.76: + resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} + + zwitch@2.0.4: + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + +snapshots: + + '@antfu/install-pkg@1.1.0': + dependencies: + package-manager-detector: 1.6.0 + tinyexec: 1.0.2 + + '@antfu/utils@8.1.1': {} + + '@astrojs/compiler@2.13.0': {} + + '@astrojs/internal-helpers@0.7.5': {} + + '@astrojs/markdown-remark@6.3.10': + dependencies: + '@astrojs/internal-helpers': 0.7.5 + '@astrojs/prism': 3.3.0 + github-slugger: 2.0.0 + hast-util-from-html: 2.0.3 + hast-util-to-text: 4.0.2 + import-meta-resolve: 4.2.0 + js-yaml: 4.1.1 + mdast-util-definitions: 6.0.0 + rehype-raw: 7.0.0 + rehype-stringify: 10.0.1 + remark-gfm: 4.0.1 + remark-parse: 11.0.0 + remark-rehype: 11.1.2 + remark-smartypants: 3.0.2 + shiki: 3.22.0 + smol-toml: 1.6.0 + unified: 11.0.5 + unist-util-remove-position: 5.0.0 + unist-util-visit: 5.1.0 + unist-util-visit-parents: 6.0.2 + vfile: 6.0.3 + transitivePeerDependencies: + - supports-color + + '@astrojs/mdx@4.3.13(astro@5.17.1(@types/node@25.1.0)(rollup@4.57.1)(typescript@5.9.3))': + dependencies: + '@astrojs/markdown-remark': 6.3.10 + '@mdx-js/mdx': 3.1.1 + acorn: 8.15.0 + astro: 5.17.1(@types/node@25.1.0)(rollup@4.57.1)(typescript@5.9.3) + es-module-lexer: 1.7.0 + estree-util-visit: 2.0.0 + hast-util-to-html: 9.0.5 + piccolore: 0.1.3 + rehype-raw: 7.0.0 + remark-gfm: 4.0.1 + remark-smartypants: 3.0.2 + source-map: 0.7.6 + unist-util-visit: 5.1.0 + vfile: 6.0.3 + transitivePeerDependencies: + - supports-color + + '@astrojs/prism@3.3.0': + dependencies: + prismjs: 1.30.0 + + '@astrojs/sitemap@3.7.0': + dependencies: + sitemap: 8.0.2 + stream-replace-string: 2.0.0 + zod: 3.25.76 + + '@astrojs/starlight@0.37.5(astro@5.17.1(@types/node@25.1.0)(rollup@4.57.1)(typescript@5.9.3))': + dependencies: + '@astrojs/markdown-remark': 6.3.10 + '@astrojs/mdx': 4.3.13(astro@5.17.1(@types/node@25.1.0)(rollup@4.57.1)(typescript@5.9.3)) + '@astrojs/sitemap': 3.7.0 + '@pagefind/default-ui': 1.4.0 + '@types/hast': 3.0.4 + '@types/js-yaml': 4.0.9 + '@types/mdast': 4.0.4 + astro: 5.17.1(@types/node@25.1.0)(rollup@4.57.1)(typescript@5.9.3) + astro-expressive-code: 0.41.6(astro@5.17.1(@types/node@25.1.0)(rollup@4.57.1)(typescript@5.9.3)) + bcp-47: 2.1.0 + hast-util-from-html: 2.0.3 + hast-util-select: 6.0.4 + hast-util-to-string: 3.0.1 + hastscript: 9.0.1 + i18next: 23.16.8 + js-yaml: 4.1.1 + klona: 2.0.6 + magic-string: 0.30.21 + mdast-util-directive: 3.1.0 + mdast-util-to-markdown: 2.1.2 + mdast-util-to-string: 4.0.0 + pagefind: 1.4.0 + rehype: 13.0.2 + rehype-format: 5.0.1 + remark-directive: 3.0.1 + ultrahtml: 1.6.0 + unified: 11.0.5 + unist-util-visit: 5.1.0 + vfile: 6.0.3 + transitivePeerDependencies: + - supports-color + + '@astrojs/telemetry@3.3.0': + dependencies: + ci-info: 4.4.0 + debug: 4.4.3 + dlv: 1.1.3 + dset: 3.1.4 + is-docker: 3.0.0 + is-wsl: 3.1.0 + which-pm-runs: 1.1.0 + transitivePeerDependencies: + - supports-color + + '@babel/helper-string-parser@7.27.1': {} + + '@babel/helper-validator-identifier@7.28.5': {} + + '@babel/parser@7.28.6': + dependencies: + '@babel/types': 7.28.6 + + '@babel/runtime@7.28.6': {} + + '@babel/types@7.28.6': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 + + '@capsizecss/unpack@4.0.0': + dependencies: + fontkitten: 1.0.2 + + '@ctrl/tinycolor@4.2.0': {} + + '@emnapi/runtime@1.8.1': + dependencies: + tslib: 2.8.1 + optional: true + + '@esbuild/aix-ppc64@0.25.12': + optional: true + + '@esbuild/android-arm64@0.25.12': + optional: true + + '@esbuild/android-arm@0.25.12': + optional: true + + '@esbuild/android-x64@0.25.12': + optional: true + + '@esbuild/darwin-arm64@0.25.12': + optional: true + + '@esbuild/darwin-x64@0.25.12': + optional: true + + '@esbuild/freebsd-arm64@0.25.12': + optional: true + + '@esbuild/freebsd-x64@0.25.12': + optional: true + + '@esbuild/linux-arm64@0.25.12': + optional: true + + '@esbuild/linux-arm@0.25.12': + optional: true + + '@esbuild/linux-ia32@0.25.12': + optional: true + + '@esbuild/linux-loong64@0.25.12': + optional: true + + '@esbuild/linux-mips64el@0.25.12': + optional: true + + '@esbuild/linux-ppc64@0.25.12': + optional: true + + '@esbuild/linux-riscv64@0.25.12': + optional: true + + '@esbuild/linux-s390x@0.25.12': + optional: true + + '@esbuild/linux-x64@0.25.12': + optional: true + + '@esbuild/netbsd-arm64@0.25.12': + optional: true + + '@esbuild/netbsd-x64@0.25.12': + optional: true + + '@esbuild/openbsd-arm64@0.25.12': + optional: true + + '@esbuild/openbsd-x64@0.25.12': + optional: true + + '@esbuild/openharmony-arm64@0.25.12': + optional: true + + '@esbuild/sunos-x64@0.25.12': + optional: true + + '@esbuild/win32-arm64@0.25.12': + optional: true + + '@esbuild/win32-ia32@0.25.12': + optional: true + + '@esbuild/win32-x64@0.25.12': + optional: true + + '@expressive-code/core@0.41.6': + dependencies: + '@ctrl/tinycolor': 4.2.0 + hast-util-select: 6.0.4 + hast-util-to-html: 9.0.5 + hast-util-to-text: 4.0.2 + hastscript: 9.0.1 + postcss: 8.5.6 + postcss-nested: 6.2.0(postcss@8.5.6) + unist-util-visit: 5.1.0 + unist-util-visit-parents: 6.0.2 + + '@expressive-code/plugin-frames@0.41.6': + dependencies: + '@expressive-code/core': 0.41.6 + + '@expressive-code/plugin-shiki@0.41.6': + dependencies: + '@expressive-code/core': 0.41.6 + shiki: 3.22.0 + + '@expressive-code/plugin-text-markers@0.41.6': + dependencies: + '@expressive-code/core': 0.41.6 + + '@iconify-json/lucide@1.2.87': + dependencies: + '@iconify/types': 2.0.0 + + '@iconify/tools@4.2.0': + dependencies: + '@iconify/types': 2.0.0 + '@iconify/utils': 2.3.0 + cheerio: 1.2.0 + domhandler: 5.0.3 + extract-zip: 2.0.1 + local-pkg: 1.1.2 + pathe: 2.0.3 + svgo: 3.3.2 + tar: 7.5.7 + transitivePeerDependencies: + - supports-color + + '@iconify/types@2.0.0': {} + + '@iconify/utils@2.3.0': + dependencies: + '@antfu/install-pkg': 1.1.0 + '@antfu/utils': 8.1.1 + '@iconify/types': 2.0.0 + debug: 4.4.3 + globals: 15.15.0 + kolorist: 1.8.0 + local-pkg: 1.1.2 + mlly: 1.8.0 + transitivePeerDependencies: + - supports-color + + '@img/colour@1.0.0': {} + + '@img/sharp-darwin-arm64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-darwin-arm64': 1.2.4 + optional: true + + '@img/sharp-darwin-x64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-darwin-x64': 1.2.4 + optional: true + + '@img/sharp-libvips-darwin-arm64@1.2.4': + optional: true + + '@img/sharp-libvips-darwin-x64@1.2.4': + optional: true + + '@img/sharp-libvips-linux-arm64@1.2.4': + optional: true + + '@img/sharp-libvips-linux-arm@1.2.4': + optional: true + + '@img/sharp-libvips-linux-ppc64@1.2.4': + optional: true + + '@img/sharp-libvips-linux-riscv64@1.2.4': + optional: true + + '@img/sharp-libvips-linux-s390x@1.2.4': + optional: true + + '@img/sharp-libvips-linux-x64@1.2.4': + optional: true + + '@img/sharp-libvips-linuxmusl-arm64@1.2.4': + optional: true + + '@img/sharp-libvips-linuxmusl-x64@1.2.4': + optional: true + + '@img/sharp-linux-arm64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-arm64': 1.2.4 + optional: true + + '@img/sharp-linux-arm@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-arm': 1.2.4 + optional: true + + '@img/sharp-linux-ppc64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-ppc64': 1.2.4 + optional: true + + '@img/sharp-linux-riscv64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-riscv64': 1.2.4 + optional: true + + '@img/sharp-linux-s390x@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-s390x': 1.2.4 + optional: true + + '@img/sharp-linux-x64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-x64': 1.2.4 + optional: true + + '@img/sharp-linuxmusl-arm64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-arm64': 1.2.4 + optional: true + + '@img/sharp-linuxmusl-x64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linuxmusl-x64': 1.2.4 + optional: true + + '@img/sharp-wasm32@0.34.5': + dependencies: + '@emnapi/runtime': 1.8.1 + optional: true + + '@img/sharp-win32-arm64@0.34.5': + optional: true + + '@img/sharp-win32-ia32@0.34.5': + optional: true + + '@img/sharp-win32-x64@0.34.5': + optional: true + + '@isaacs/fs-minipass@4.0.1': + dependencies: + minipass: 7.1.2 + + '@jridgewell/sourcemap-codec@1.5.5': {} + + '@mdx-js/mdx@3.1.1': + dependencies: + '@types/estree': 1.0.8 + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdx': 2.0.13 + acorn: 8.15.0 + collapse-white-space: 2.1.0 + devlop: 1.1.0 + estree-util-is-identifier-name: 3.0.0 + estree-util-scope: 1.0.0 + estree-walker: 3.0.3 + hast-util-to-jsx-runtime: 2.3.6 + markdown-extensions: 2.0.0 + recma-build-jsx: 1.0.0 + recma-jsx: 1.0.1(acorn@8.15.0) + recma-stringify: 1.0.0 + rehype-recma: 1.0.0 + remark-mdx: 3.1.1 + remark-parse: 11.0.0 + remark-rehype: 11.1.2 + source-map: 0.7.6 + unified: 11.0.5 + unist-util-position-from-estree: 2.0.0 + unist-util-stringify-position: 4.0.0 + unist-util-visit: 5.1.0 + vfile: 6.0.3 + transitivePeerDependencies: + - supports-color + + '@oslojs/encoding@1.1.0': {} + + '@pagefind/darwin-arm64@1.4.0': + optional: true + + '@pagefind/darwin-x64@1.4.0': + optional: true + + '@pagefind/default-ui@1.4.0': {} + + '@pagefind/freebsd-x64@1.4.0': + optional: true + + '@pagefind/linux-arm64@1.4.0': + optional: true + + '@pagefind/linux-x64@1.4.0': + optional: true + + '@pagefind/windows-x64@1.4.0': + optional: true + + '@rollup/pluginutils@5.3.0(rollup@4.57.1)': + dependencies: + '@types/estree': 1.0.8 + estree-walker: 2.0.2 + picomatch: 4.0.3 + optionalDependencies: + rollup: 4.57.1 + + '@rollup/rollup-android-arm-eabi@4.57.1': + optional: true + + '@rollup/rollup-android-arm64@4.57.1': + optional: true + + '@rollup/rollup-darwin-arm64@4.57.1': + optional: true + + '@rollup/rollup-darwin-x64@4.57.1': + optional: true + + '@rollup/rollup-freebsd-arm64@4.57.1': + optional: true + + '@rollup/rollup-freebsd-x64@4.57.1': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.57.1': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.57.1': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.57.1': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.57.1': + optional: true + + '@rollup/rollup-linux-loong64-gnu@4.57.1': + optional: true + + '@rollup/rollup-linux-loong64-musl@4.57.1': + optional: true + + '@rollup/rollup-linux-ppc64-gnu@4.57.1': + optional: true + + '@rollup/rollup-linux-ppc64-musl@4.57.1': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.57.1': + optional: true + + '@rollup/rollup-linux-riscv64-musl@4.57.1': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.57.1': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.57.1': + optional: true + + '@rollup/rollup-linux-x64-musl@4.57.1': + optional: true + + '@rollup/rollup-openbsd-x64@4.57.1': + optional: true + + '@rollup/rollup-openharmony-arm64@4.57.1': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.57.1': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.57.1': + optional: true + + '@rollup/rollup-win32-x64-gnu@4.57.1': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.57.1': + optional: true + + '@shikijs/core@3.22.0': + dependencies: + '@shikijs/types': 3.22.0 + '@shikijs/vscode-textmate': 10.0.2 + '@types/hast': 3.0.4 + hast-util-to-html: 9.0.5 + + '@shikijs/engine-javascript@3.22.0': + dependencies: + '@shikijs/types': 3.22.0 + '@shikijs/vscode-textmate': 10.0.2 + oniguruma-to-es: 4.3.4 + + '@shikijs/engine-oniguruma@3.22.0': + dependencies: + '@shikijs/types': 3.22.0 + '@shikijs/vscode-textmate': 10.0.2 + + '@shikijs/langs@3.22.0': + dependencies: + '@shikijs/types': 3.22.0 + + '@shikijs/themes@3.22.0': + dependencies: + '@shikijs/types': 3.22.0 + + '@shikijs/types@3.22.0': + dependencies: + '@shikijs/vscode-textmate': 10.0.2 + '@types/hast': 3.0.4 + + '@shikijs/vscode-textmate@10.0.2': {} + + '@trysound/sax@0.2.0': {} + + '@types/debug@4.1.12': + dependencies: + '@types/ms': 2.1.0 + + '@types/estree-jsx@1.0.5': + dependencies: + '@types/estree': 1.0.8 + + '@types/estree@1.0.8': {} + + '@types/hast@3.0.4': + dependencies: + '@types/unist': 3.0.3 + + '@types/js-yaml@4.0.9': {} + + '@types/mdast@4.0.4': + dependencies: + '@types/unist': 3.0.3 + + '@types/mdx@2.0.13': {} + + '@types/ms@2.1.0': {} + + '@types/nlcst@2.0.3': + dependencies: + '@types/unist': 3.0.3 + + '@types/node@17.0.45': {} + + '@types/node@25.1.0': + dependencies: + undici-types: 7.16.0 + optional: true + + '@types/sax@1.2.7': + dependencies: + '@types/node': 17.0.45 + + '@types/unist@2.0.11': {} + + '@types/unist@3.0.3': {} + + '@types/yauzl@2.10.3': + dependencies: + '@types/node': 25.1.0 + optional: true + + '@ungap/structured-clone@1.3.0': {} + + acorn-jsx@5.3.2(acorn@8.15.0): + dependencies: + acorn: 8.15.0 + + acorn@8.15.0: {} + + ansi-align@3.0.1: + dependencies: + string-width: 4.2.3 + + ansi-regex@5.0.1: {} + + ansi-regex@6.2.2: {} + + ansi-styles@6.2.3: {} + + anymatch@3.1.3: + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + + arg@5.0.2: {} + + argparse@2.0.1: {} + + aria-query@5.3.2: {} + + array-iterate@2.0.1: {} + + astring@1.9.0: {} + + astro-expressive-code@0.41.6(astro@5.17.1(@types/node@25.1.0)(rollup@4.57.1)(typescript@5.9.3)): + dependencies: + astro: 5.17.1(@types/node@25.1.0)(rollup@4.57.1)(typescript@5.9.3) + rehype-expressive-code: 0.41.6 + + astro-icon@1.1.5: + dependencies: + '@iconify/tools': 4.2.0 + '@iconify/types': 2.0.0 + '@iconify/utils': 2.3.0 + transitivePeerDependencies: + - supports-color + + astro@5.17.1(@types/node@25.1.0)(rollup@4.57.1)(typescript@5.9.3): + dependencies: + '@astrojs/compiler': 2.13.0 + '@astrojs/internal-helpers': 0.7.5 + '@astrojs/markdown-remark': 6.3.10 + '@astrojs/telemetry': 3.3.0 + '@capsizecss/unpack': 4.0.0 + '@oslojs/encoding': 1.1.0 + '@rollup/pluginutils': 5.3.0(rollup@4.57.1) + acorn: 8.15.0 + aria-query: 5.3.2 + axobject-query: 4.1.0 + boxen: 8.0.1 + ci-info: 4.4.0 + clsx: 2.1.1 + common-ancestor-path: 1.0.1 + cookie: 1.1.1 + cssesc: 3.0.0 + debug: 4.4.3 + deterministic-object-hash: 2.0.2 + devalue: 5.6.2 + diff: 8.0.3 + dlv: 1.1.3 + dset: 3.1.4 + es-module-lexer: 1.7.0 + esbuild: 0.25.12 + estree-walker: 3.0.3 + flattie: 1.1.1 + fontace: 0.4.0 + github-slugger: 2.0.0 + html-escaper: 3.0.3 + http-cache-semantics: 4.2.0 + import-meta-resolve: 4.2.0 + js-yaml: 4.1.1 + magic-string: 0.30.21 + magicast: 0.5.1 + mrmime: 2.0.1 + neotraverse: 0.6.18 + p-limit: 6.2.0 + p-queue: 8.1.1 + package-manager-detector: 1.6.0 + piccolore: 0.1.3 + picomatch: 4.0.3 + prompts: 2.4.2 + rehype: 13.0.2 + semver: 7.7.3 + shiki: 3.22.0 + smol-toml: 1.6.0 + svgo: 4.0.0 + tinyexec: 1.0.2 + tinyglobby: 0.2.15 + tsconfck: 3.1.6(typescript@5.9.3) + ultrahtml: 1.6.0 + unifont: 0.7.3 + unist-util-visit: 5.1.0 + unstorage: 1.17.4 + vfile: 6.0.3 + vite: 6.4.1(@types/node@25.1.0) + vitefu: 1.1.1(vite@6.4.1(@types/node@25.1.0)) + xxhash-wasm: 1.1.0 + yargs-parser: 21.1.1 + yocto-spinner: 0.2.3 + zod: 3.25.76 + zod-to-json-schema: 3.25.1(zod@3.25.76) + zod-to-ts: 1.2.0(typescript@5.9.3)(zod@3.25.76) + optionalDependencies: + sharp: 0.34.5 + transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' + - '@types/node' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/functions' + - '@vercel/kv' + - aws4fetch + - db0 + - idb-keyval + - ioredis + - jiti + - less + - lightningcss + - rollup + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + - tsx + - typescript + - uploadthing + - yaml + + axobject-query@4.1.0: {} + + bail@2.0.2: {} + + base-64@1.0.0: {} + + bcp-47-match@2.0.3: {} + + bcp-47@2.1.0: + dependencies: + is-alphabetical: 2.0.1 + is-alphanumerical: 2.0.1 + is-decimal: 2.0.1 + + boolbase@1.0.0: {} + + boxen@8.0.1: + dependencies: + ansi-align: 3.0.1 + camelcase: 8.0.0 + chalk: 5.6.2 + cli-boxes: 3.0.0 + string-width: 7.2.0 + type-fest: 4.41.0 + widest-line: 5.0.0 + wrap-ansi: 9.0.2 + + buffer-crc32@0.2.13: {} + + camelcase@8.0.0: {} + + ccount@2.0.1: {} + + chalk@5.6.2: {} + + character-entities-html4@2.1.0: {} + + character-entities-legacy@3.0.0: {} + + character-entities@2.0.2: {} + + character-reference-invalid@2.0.1: {} + + cheerio-select@2.1.0: + dependencies: + boolbase: 1.0.0 + css-select: 5.2.2 + css-what: 6.2.2 + domelementtype: 2.3.0 + domhandler: 5.0.3 + domutils: 3.2.2 + + cheerio@1.2.0: + dependencies: + cheerio-select: 2.1.0 + dom-serializer: 2.0.0 + domhandler: 5.0.3 + domutils: 3.2.2 + encoding-sniffer: 0.2.1 + htmlparser2: 10.1.0 + parse5: 7.3.0 + parse5-htmlparser2-tree-adapter: 7.1.0 + parse5-parser-stream: 7.1.2 + undici: 7.19.2 + whatwg-mimetype: 4.0.0 + + chokidar@5.0.0: + dependencies: + readdirp: 5.0.0 + + chownr@3.0.0: {} + + ci-info@4.4.0: {} + + cli-boxes@3.0.0: {} + + clsx@2.1.1: {} + + collapse-white-space@2.1.0: {} + + comma-separated-tokens@2.0.3: {} + + commander@11.1.0: {} + + commander@7.2.0: {} + + common-ancestor-path@1.0.1: {} + + confbox@0.1.8: {} + + confbox@0.2.2: {} + + cookie-es@1.2.2: {} + + cookie@1.1.1: {} + + crossws@0.3.5: + dependencies: + uncrypto: 0.1.3 + + css-select@5.2.2: + dependencies: + boolbase: 1.0.0 + css-what: 6.2.2 + domhandler: 5.0.3 + domutils: 3.2.2 + nth-check: 2.1.1 + + css-selector-parser@3.3.0: {} + + css-tree@2.2.1: + dependencies: + mdn-data: 2.0.28 + source-map-js: 1.2.1 + + css-tree@2.3.1: + dependencies: + mdn-data: 2.0.30 + source-map-js: 1.2.1 + + css-tree@3.1.0: + dependencies: + mdn-data: 2.12.2 + source-map-js: 1.2.1 + + css-what@6.2.2: {} + + cssesc@3.0.0: {} + + csso@5.0.5: + dependencies: + css-tree: 2.2.1 + + debug@4.4.3: + dependencies: + ms: 2.1.3 + + decode-named-character-reference@1.3.0: + dependencies: + character-entities: 2.0.2 + + defu@6.1.4: {} + + dequal@2.0.3: {} + + destr@2.0.5: {} + + detect-libc@2.1.2: {} + + deterministic-object-hash@2.0.2: + dependencies: + base-64: 1.0.0 + + devalue@5.6.2: {} + + devlop@1.1.0: + dependencies: + dequal: 2.0.3 + + diff@8.0.3: {} + + direction@2.0.1: {} + + dlv@1.1.3: {} + + dom-serializer@2.0.0: + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + entities: 4.5.0 + + domelementtype@2.3.0: {} + + domhandler@5.0.3: + dependencies: + domelementtype: 2.3.0 + + domutils@3.2.2: + dependencies: + dom-serializer: 2.0.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 + + dset@3.1.4: {} + + emoji-regex@10.6.0: {} + + emoji-regex@8.0.0: {} + + encoding-sniffer@0.2.1: + dependencies: + iconv-lite: 0.6.3 + whatwg-encoding: 3.1.1 + + end-of-stream@1.4.5: + dependencies: + once: 1.4.0 + + entities@4.5.0: {} + + entities@6.0.1: {} + + entities@7.0.1: {} + + es-module-lexer@1.7.0: {} + + esast-util-from-estree@2.0.0: + dependencies: + '@types/estree-jsx': 1.0.5 + devlop: 1.1.0 + estree-util-visit: 2.0.0 + unist-util-position-from-estree: 2.0.0 + + esast-util-from-js@2.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + acorn: 8.15.0 + esast-util-from-estree: 2.0.0 + vfile-message: 4.0.3 + + esbuild@0.25.12: + optionalDependencies: + '@esbuild/aix-ppc64': 0.25.12 + '@esbuild/android-arm': 0.25.12 + '@esbuild/android-arm64': 0.25.12 + '@esbuild/android-x64': 0.25.12 + '@esbuild/darwin-arm64': 0.25.12 + '@esbuild/darwin-x64': 0.25.12 + '@esbuild/freebsd-arm64': 0.25.12 + '@esbuild/freebsd-x64': 0.25.12 + '@esbuild/linux-arm': 0.25.12 + '@esbuild/linux-arm64': 0.25.12 + '@esbuild/linux-ia32': 0.25.12 + '@esbuild/linux-loong64': 0.25.12 + '@esbuild/linux-mips64el': 0.25.12 + '@esbuild/linux-ppc64': 0.25.12 + '@esbuild/linux-riscv64': 0.25.12 + '@esbuild/linux-s390x': 0.25.12 + '@esbuild/linux-x64': 0.25.12 + '@esbuild/netbsd-arm64': 0.25.12 + '@esbuild/netbsd-x64': 0.25.12 + '@esbuild/openbsd-arm64': 0.25.12 + '@esbuild/openbsd-x64': 0.25.12 + '@esbuild/openharmony-arm64': 0.25.12 + '@esbuild/sunos-x64': 0.25.12 + '@esbuild/win32-arm64': 0.25.12 + '@esbuild/win32-ia32': 0.25.12 + '@esbuild/win32-x64': 0.25.12 + + escape-string-regexp@5.0.0: {} + + estree-util-attach-comments@3.0.0: + dependencies: + '@types/estree': 1.0.8 + + estree-util-build-jsx@3.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + devlop: 1.1.0 + estree-util-is-identifier-name: 3.0.0 + estree-walker: 3.0.3 + + estree-util-is-identifier-name@3.0.0: {} + + estree-util-scope@1.0.0: + dependencies: + '@types/estree': 1.0.8 + devlop: 1.1.0 + + estree-util-to-js@2.0.0: + dependencies: + '@types/estree-jsx': 1.0.5 + astring: 1.9.0 + source-map: 0.7.6 + + estree-util-visit@2.0.0: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/unist': 3.0.3 + + estree-walker@2.0.2: {} + + estree-walker@3.0.3: + dependencies: + '@types/estree': 1.0.8 + + eventemitter3@5.0.4: {} + + expressive-code@0.41.6: + dependencies: + '@expressive-code/core': 0.41.6 + '@expressive-code/plugin-frames': 0.41.6 + '@expressive-code/plugin-shiki': 0.41.6 + '@expressive-code/plugin-text-markers': 0.41.6 + + exsolve@1.0.8: {} + + extend@3.0.2: {} + + extract-zip@2.0.1: + dependencies: + debug: 4.4.3 + get-stream: 5.2.0 + yauzl: 2.10.0 + optionalDependencies: + '@types/yauzl': 2.10.3 + transitivePeerDependencies: + - supports-color + + fd-slicer@1.1.0: + dependencies: + pend: 1.2.0 + + fdir@6.5.0(picomatch@4.0.3): + optionalDependencies: + picomatch: 4.0.3 + + flattie@1.1.1: {} + + fontace@0.4.0: + dependencies: + fontkitten: 1.0.2 + + fontkitten@1.0.2: + dependencies: + tiny-inflate: 1.0.3 + + fsevents@2.3.3: + optional: true + + get-east-asian-width@1.4.0: {} + + get-stream@5.2.0: + dependencies: + pump: 3.0.3 + + github-slugger@2.0.0: {} + + globals@15.15.0: {} + + h3@1.15.5: + dependencies: + cookie-es: 1.2.2 + crossws: 0.3.5 + defu: 6.1.4 + destr: 2.0.5 + iron-webcrypto: 1.2.1 + node-mock-http: 1.0.4 + radix3: 1.1.2 + ufo: 1.6.3 + uncrypto: 0.1.3 + + hast-util-embedded@3.0.0: + dependencies: + '@types/hast': 3.0.4 + hast-util-is-element: 3.0.0 + + hast-util-format@1.1.0: + dependencies: + '@types/hast': 3.0.4 + hast-util-embedded: 3.0.0 + hast-util-minify-whitespace: 1.0.1 + hast-util-phrasing: 3.0.1 + hast-util-whitespace: 3.0.0 + html-whitespace-sensitive-tag-names: 3.0.1 + unist-util-visit-parents: 6.0.2 + + hast-util-from-html@2.0.3: + dependencies: + '@types/hast': 3.0.4 + devlop: 1.1.0 + hast-util-from-parse5: 8.0.3 + parse5: 7.3.0 + vfile: 6.0.3 + vfile-message: 4.0.3 + + hast-util-from-parse5@8.0.3: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + devlop: 1.1.0 + hastscript: 9.0.1 + property-information: 7.1.0 + vfile: 6.0.3 + vfile-location: 5.0.3 + web-namespaces: 2.0.1 + + hast-util-has-property@3.0.0: + dependencies: + '@types/hast': 3.0.4 + + hast-util-is-body-ok-link@3.0.1: + dependencies: + '@types/hast': 3.0.4 + + hast-util-is-element@3.0.0: + dependencies: + '@types/hast': 3.0.4 + + hast-util-minify-whitespace@1.0.1: + dependencies: + '@types/hast': 3.0.4 + hast-util-embedded: 3.0.0 + hast-util-is-element: 3.0.0 + hast-util-whitespace: 3.0.0 + unist-util-is: 6.0.1 + + hast-util-parse-selector@4.0.0: + dependencies: + '@types/hast': 3.0.4 + + hast-util-phrasing@3.0.1: + dependencies: + '@types/hast': 3.0.4 + hast-util-embedded: 3.0.0 + hast-util-has-property: 3.0.0 + hast-util-is-body-ok-link: 3.0.1 + hast-util-is-element: 3.0.0 + + hast-util-raw@9.1.0: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + '@ungap/structured-clone': 1.3.0 + hast-util-from-parse5: 8.0.3 + hast-util-to-parse5: 8.0.1 + html-void-elements: 3.0.0 + mdast-util-to-hast: 13.2.1 + parse5: 7.3.0 + unist-util-position: 5.0.0 + unist-util-visit: 5.1.0 + vfile: 6.0.3 + web-namespaces: 2.0.1 + zwitch: 2.0.4 + + hast-util-select@6.0.4: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + bcp-47-match: 2.0.3 + comma-separated-tokens: 2.0.3 + css-selector-parser: 3.3.0 + devlop: 1.1.0 + direction: 2.0.1 + hast-util-has-property: 3.0.0 + hast-util-to-string: 3.0.1 + hast-util-whitespace: 3.0.0 + nth-check: 2.1.1 + property-information: 7.1.0 + space-separated-tokens: 2.0.2 + unist-util-visit: 5.1.0 + zwitch: 2.0.4 + + hast-util-to-estree@3.1.3: + dependencies: + '@types/estree': 1.0.8 + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + comma-separated-tokens: 2.0.3 + devlop: 1.1.0 + estree-util-attach-comments: 3.0.0 + estree-util-is-identifier-name: 3.0.0 + hast-util-whitespace: 3.0.0 + mdast-util-mdx-expression: 2.0.1 + mdast-util-mdx-jsx: 3.2.0 + mdast-util-mdxjs-esm: 2.0.1 + property-information: 7.1.0 + space-separated-tokens: 2.0.2 + style-to-js: 1.1.21 + unist-util-position: 5.0.0 + zwitch: 2.0.4 + transitivePeerDependencies: + - supports-color + + hast-util-to-html@9.0.5: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + ccount: 2.0.1 + comma-separated-tokens: 2.0.3 + hast-util-whitespace: 3.0.0 + html-void-elements: 3.0.0 + mdast-util-to-hast: 13.2.1 + property-information: 7.1.0 + space-separated-tokens: 2.0.2 + stringify-entities: 4.0.4 + zwitch: 2.0.4 + + hast-util-to-jsx-runtime@2.3.6: + dependencies: + '@types/estree': 1.0.8 + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + comma-separated-tokens: 2.0.3 + devlop: 1.1.0 + estree-util-is-identifier-name: 3.0.0 + hast-util-whitespace: 3.0.0 + mdast-util-mdx-expression: 2.0.1 + mdast-util-mdx-jsx: 3.2.0 + mdast-util-mdxjs-esm: 2.0.1 + property-information: 7.1.0 + space-separated-tokens: 2.0.2 + style-to-js: 1.1.21 + unist-util-position: 5.0.0 + vfile-message: 4.0.3 + transitivePeerDependencies: + - supports-color + + hast-util-to-parse5@8.0.1: + dependencies: + '@types/hast': 3.0.4 + comma-separated-tokens: 2.0.3 + devlop: 1.1.0 + property-information: 7.1.0 + space-separated-tokens: 2.0.2 + web-namespaces: 2.0.1 + zwitch: 2.0.4 + + hast-util-to-string@3.0.1: + dependencies: + '@types/hast': 3.0.4 + + hast-util-to-text@4.0.2: + dependencies: + '@types/hast': 3.0.4 + '@types/unist': 3.0.3 + hast-util-is-element: 3.0.0 + unist-util-find-after: 5.0.0 + + hast-util-whitespace@3.0.0: + dependencies: + '@types/hast': 3.0.4 + + hastscript@9.0.1: + dependencies: + '@types/hast': 3.0.4 + comma-separated-tokens: 2.0.3 + hast-util-parse-selector: 4.0.0 + property-information: 7.1.0 + space-separated-tokens: 2.0.2 + + html-escaper@3.0.3: {} + + html-void-elements@3.0.0: {} + + html-whitespace-sensitive-tag-names@3.0.1: {} + + htmlparser2@10.1.0: + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + domutils: 3.2.2 + entities: 7.0.1 + + http-cache-semantics@4.2.0: {} + + i18next@23.16.8: + dependencies: + '@babel/runtime': 7.28.6 + + iconv-lite@0.6.3: + dependencies: + safer-buffer: 2.1.2 + + import-meta-resolve@4.2.0: {} + + inline-style-parser@0.2.7: {} + + iron-webcrypto@1.2.1: {} + + is-alphabetical@2.0.1: {} + + is-alphanumerical@2.0.1: + dependencies: + is-alphabetical: 2.0.1 + is-decimal: 2.0.1 + + is-decimal@2.0.1: {} + + is-docker@3.0.0: {} + + is-fullwidth-code-point@3.0.0: {} + + is-hexadecimal@2.0.1: {} + + is-inside-container@1.0.0: + dependencies: + is-docker: 3.0.0 + + is-plain-obj@4.1.0: {} + + is-wsl@3.1.0: + dependencies: + is-inside-container: 1.0.0 + + js-yaml@4.1.1: + dependencies: + argparse: 2.0.1 + + kleur@3.0.3: {} + + klona@2.0.6: {} + + kolorist@1.8.0: {} + + local-pkg@1.1.2: + dependencies: + mlly: 1.8.0 + pkg-types: 2.3.0 + quansync: 0.2.11 + + longest-streak@3.1.0: {} + + lru-cache@11.2.5: {} + + magic-string@0.30.21: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + + magicast@0.5.1: + dependencies: + '@babel/parser': 7.28.6 + '@babel/types': 7.28.6 + source-map-js: 1.2.1 + + markdown-extensions@2.0.0: {} + + markdown-table@3.0.4: {} + + mdast-util-definitions@6.0.0: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + unist-util-visit: 5.1.0 + + mdast-util-directive@3.1.0: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + ccount: 2.0.1 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + parse-entities: 4.0.2 + stringify-entities: 4.0.4 + unist-util-visit-parents: 6.0.2 + transitivePeerDependencies: + - supports-color + + mdast-util-find-and-replace@3.0.2: + dependencies: + '@types/mdast': 4.0.4 + escape-string-regexp: 5.0.0 + unist-util-is: 6.0.1 + unist-util-visit-parents: 6.0.2 + + mdast-util-from-markdown@2.0.2: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + decode-named-character-reference: 1.3.0 + devlop: 1.1.0 + mdast-util-to-string: 4.0.0 + micromark: 4.0.2 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-decode-string: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + unist-util-stringify-position: 4.0.0 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-autolink-literal@2.0.1: + dependencies: + '@types/mdast': 4.0.4 + ccount: 2.0.1 + devlop: 1.1.0 + mdast-util-find-and-replace: 3.0.2 + micromark-util-character: 2.1.1 + + mdast-util-gfm-footnote@2.1.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + micromark-util-normalize-identifier: 2.0.1 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-strikethrough@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-table@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + markdown-table: 3.0.4 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-task-list-item@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm@3.1.0: + dependencies: + mdast-util-from-markdown: 2.0.2 + mdast-util-gfm-autolink-literal: 2.0.1 + mdast-util-gfm-footnote: 2.1.0 + mdast-util-gfm-strikethrough: 2.0.0 + mdast-util-gfm-table: 2.0.0 + mdast-util-gfm-task-list-item: 2.0.0 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx-expression@2.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx-jsx@3.2.0: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + ccount: 2.0.1 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + parse-entities: 4.0.2 + stringify-entities: 4.0.4 + unist-util-stringify-position: 4.0.0 + vfile-message: 4.0.3 + transitivePeerDependencies: + - supports-color + + mdast-util-mdx@3.0.0: + dependencies: + mdast-util-from-markdown: 2.0.2 + mdast-util-mdx-expression: 2.0.1 + mdast-util-mdx-jsx: 3.2.0 + mdast-util-mdxjs-esm: 2.0.1 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-mdxjs-esm@2.0.1: + dependencies: + '@types/estree-jsx': 1.0.5 + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-phrasing@4.1.0: + dependencies: + '@types/mdast': 4.0.4 + unist-util-is: 6.0.1 + + mdast-util-to-hast@13.2.1: + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + '@ungap/structured-clone': 1.3.0 + devlop: 1.1.0 + micromark-util-sanitize-uri: 2.0.1 + trim-lines: 3.0.1 + unist-util-position: 5.0.0 + unist-util-visit: 5.1.0 + vfile: 6.0.3 + + mdast-util-to-markdown@2.1.2: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + longest-streak: 3.1.0 + mdast-util-phrasing: 4.1.0 + mdast-util-to-string: 4.0.0 + micromark-util-classify-character: 2.0.1 + micromark-util-decode-string: 2.0.1 + unist-util-visit: 5.1.0 + zwitch: 2.0.4 + + mdast-util-to-string@4.0.0: + dependencies: + '@types/mdast': 4.0.4 + + mdn-data@2.0.28: {} + + mdn-data@2.0.30: {} + + mdn-data@2.12.2: {} + + micromark-core-commonmark@2.0.3: + dependencies: + decode-named-character-reference: 1.3.0 + devlop: 1.1.0 + micromark-factory-destination: 2.0.1 + micromark-factory-label: 2.0.1 + micromark-factory-space: 2.0.1 + micromark-factory-title: 2.0.1 + micromark-factory-whitespace: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-classify-character: 2.0.1 + micromark-util-html-tag-name: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-subtokenize: 2.1.0 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-directive@3.0.2: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-factory-whitespace: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + parse-entities: 4.0.2 + + micromark-extension-gfm-autolink-literal@2.1.0: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-footnote@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-core-commonmark: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-strikethrough@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.1 + micromark-util-classify-character: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-table@2.1.1: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm-tagfilter@2.0.0: + dependencies: + micromark-util-types: 2.0.2 + + micromark-extension-gfm-task-list-item@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-gfm@3.0.0: + dependencies: + micromark-extension-gfm-autolink-literal: 2.1.0 + micromark-extension-gfm-footnote: 2.1.0 + micromark-extension-gfm-strikethrough: 2.1.0 + micromark-extension-gfm-table: 2.1.1 + micromark-extension-gfm-tagfilter: 2.0.0 + micromark-extension-gfm-task-list-item: 2.1.0 + micromark-util-combine-extensions: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-mdx-expression@3.0.1: + dependencies: + '@types/estree': 1.0.8 + devlop: 1.1.0 + micromark-factory-mdx-expression: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-events-to-acorn: 2.0.3 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-extension-mdx-jsx@3.0.2: + dependencies: + '@types/estree': 1.0.8 + devlop: 1.1.0 + estree-util-is-identifier-name: 3.0.0 + micromark-factory-mdx-expression: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-events-to-acorn: 2.0.3 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + vfile-message: 4.0.3 + + micromark-extension-mdx-md@2.0.0: + dependencies: + micromark-util-types: 2.0.2 + + micromark-extension-mdxjs-esm@3.0.0: + dependencies: + '@types/estree': 1.0.8 + devlop: 1.1.0 + micromark-core-commonmark: 2.0.3 + micromark-util-character: 2.1.1 + micromark-util-events-to-acorn: 2.0.3 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + unist-util-position-from-estree: 2.0.0 + vfile-message: 4.0.3 + + micromark-extension-mdxjs@3.0.0: + dependencies: + acorn: 8.15.0 + acorn-jsx: 5.3.2(acorn@8.15.0) + micromark-extension-mdx-expression: 3.0.1 + micromark-extension-mdx-jsx: 3.0.2 + micromark-extension-mdx-md: 2.0.0 + micromark-extension-mdxjs-esm: 3.0.0 + micromark-util-combine-extensions: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-destination@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-label@2.0.1: + dependencies: + devlop: 1.1.0 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-mdx-expression@2.0.3: + dependencies: + '@types/estree': 1.0.8 + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-events-to-acorn: 2.0.3 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + unist-util-position-from-estree: 2.0.0 + vfile-message: 4.0.3 + + micromark-factory-space@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-types: 2.0.2 + + micromark-factory-title@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-factory-whitespace@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-character@2.1.1: + dependencies: + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-chunked@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-classify-character@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-combine-extensions@2.0.1: + dependencies: + micromark-util-chunked: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-decode-numeric-character-reference@2.0.2: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-decode-string@2.0.1: + dependencies: + decode-named-character-reference: 1.3.0 + micromark-util-character: 2.1.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-symbol: 2.0.1 + + micromark-util-encode@2.0.1: {} + + micromark-util-events-to-acorn@2.0.3: + dependencies: + '@types/estree': 1.0.8 + '@types/unist': 3.0.3 + devlop: 1.1.0 + estree-util-visit: 2.0.0 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + vfile-message: 4.0.3 + + micromark-util-html-tag-name@2.0.1: {} + + micromark-util-normalize-identifier@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-resolve-all@2.0.1: + dependencies: + micromark-util-types: 2.0.2 + + micromark-util-sanitize-uri@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-encode: 2.0.1 + micromark-util-symbol: 2.0.1 + + micromark-util-subtokenize@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + + micromark-util-symbol@2.0.1: {} + + micromark-util-types@2.0.2: {} + + micromark@4.0.2: + dependencies: + '@types/debug': 4.1.12 + debug: 4.4.3 + decode-named-character-reference: 1.3.0 + devlop: 1.1.0 + micromark-core-commonmark: 2.0.3 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-combine-extensions: 2.0.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-encode: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-subtokenize: 2.1.0 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.2 + transitivePeerDependencies: + - supports-color + + minipass@7.1.2: {} + + minizlib@3.1.0: + dependencies: + minipass: 7.1.2 + + mlly@1.8.0: + dependencies: + acorn: 8.15.0 + pathe: 2.0.3 + pkg-types: 1.3.1 + ufo: 1.6.3 + + mrmime@2.0.1: {} + + ms@2.1.3: {} + + nanoid@3.3.11: {} + + neotraverse@0.6.18: {} + + nlcst-to-string@4.0.0: + dependencies: + '@types/nlcst': 2.0.3 + + node-fetch-native@1.6.7: {} + + node-mock-http@1.0.4: {} + + normalize-path@3.0.0: {} + + nth-check@2.1.1: + dependencies: + boolbase: 1.0.0 + + ofetch@1.5.1: + dependencies: + destr: 2.0.5 + node-fetch-native: 1.6.7 + ufo: 1.6.3 + + ohash@2.0.11: {} + + once@1.4.0: + dependencies: + wrappy: 1.0.2 + + oniguruma-parser@0.12.1: {} + + oniguruma-to-es@4.3.4: + dependencies: + oniguruma-parser: 0.12.1 + regex: 6.1.0 + regex-recursion: 6.0.2 + + p-limit@6.2.0: + dependencies: + yocto-queue: 1.2.2 + + p-queue@8.1.1: + dependencies: + eventemitter3: 5.0.4 + p-timeout: 6.1.4 + + p-timeout@6.1.4: {} + + package-manager-detector@1.6.0: {} + + pagefind@1.4.0: + optionalDependencies: + '@pagefind/darwin-arm64': 1.4.0 + '@pagefind/darwin-x64': 1.4.0 + '@pagefind/freebsd-x64': 1.4.0 + '@pagefind/linux-arm64': 1.4.0 + '@pagefind/linux-x64': 1.4.0 + '@pagefind/windows-x64': 1.4.0 + + parse-entities@4.0.2: + dependencies: + '@types/unist': 2.0.11 + character-entities-legacy: 3.0.0 + character-reference-invalid: 2.0.1 + decode-named-character-reference: 1.3.0 + is-alphanumerical: 2.0.1 + is-decimal: 2.0.1 + is-hexadecimal: 2.0.1 + + parse-latin@7.0.0: + dependencies: + '@types/nlcst': 2.0.3 + '@types/unist': 3.0.3 + nlcst-to-string: 4.0.0 + unist-util-modify-children: 4.0.0 + unist-util-visit-children: 3.0.0 + vfile: 6.0.3 + + parse5-htmlparser2-tree-adapter@7.1.0: + dependencies: + domhandler: 5.0.3 + parse5: 7.3.0 + + parse5-parser-stream@7.1.2: + dependencies: + parse5: 7.3.0 + + parse5@7.3.0: + dependencies: + entities: 6.0.1 + + pathe@2.0.3: {} + + pend@1.2.0: {} + + piccolore@0.1.3: {} + + picocolors@1.1.1: {} + + picomatch@2.3.1: {} + + picomatch@4.0.3: {} + + pkg-types@1.3.1: + dependencies: + confbox: 0.1.8 + mlly: 1.8.0 + pathe: 2.0.3 + + pkg-types@2.3.0: + dependencies: + confbox: 0.2.2 + exsolve: 1.0.8 + pathe: 2.0.3 + + postcss-nested@6.2.0(postcss@8.5.6): + dependencies: + postcss: 8.5.6 + postcss-selector-parser: 6.1.2 + + postcss-selector-parser@6.1.2: + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + + postcss@8.5.6: + dependencies: + nanoid: 3.3.11 + picocolors: 1.1.1 + source-map-js: 1.2.1 + + prismjs@1.30.0: {} + + prompts@2.4.2: + dependencies: + kleur: 3.0.3 + sisteransi: 1.0.5 + + property-information@7.1.0: {} + + pump@3.0.3: + dependencies: + end-of-stream: 1.4.5 + once: 1.4.0 + + quansync@0.2.11: {} + + radix3@1.1.2: {} + + readdirp@5.0.0: {} + + recma-build-jsx@1.0.0: + dependencies: + '@types/estree': 1.0.8 + estree-util-build-jsx: 3.0.1 + vfile: 6.0.3 + + recma-jsx@1.0.1(acorn@8.15.0): + dependencies: + acorn: 8.15.0 + acorn-jsx: 5.3.2(acorn@8.15.0) + estree-util-to-js: 2.0.0 + recma-parse: 1.0.0 + recma-stringify: 1.0.0 + unified: 11.0.5 + + recma-parse@1.0.0: + dependencies: + '@types/estree': 1.0.8 + esast-util-from-js: 2.0.1 + unified: 11.0.5 + vfile: 6.0.3 + + recma-stringify@1.0.0: + dependencies: + '@types/estree': 1.0.8 + estree-util-to-js: 2.0.0 + unified: 11.0.5 + vfile: 6.0.3 + + regex-recursion@6.0.2: + dependencies: + regex-utilities: 2.3.0 + + regex-utilities@2.3.0: {} + + regex@6.1.0: + dependencies: + regex-utilities: 2.3.0 + + rehype-expressive-code@0.41.6: + dependencies: + expressive-code: 0.41.6 + + rehype-format@5.0.1: + dependencies: + '@types/hast': 3.0.4 + hast-util-format: 1.1.0 + + rehype-parse@9.0.1: + dependencies: + '@types/hast': 3.0.4 + hast-util-from-html: 2.0.3 + unified: 11.0.5 + + rehype-raw@7.0.0: + dependencies: + '@types/hast': 3.0.4 + hast-util-raw: 9.1.0 + vfile: 6.0.3 + + rehype-recma@1.0.0: + dependencies: + '@types/estree': 1.0.8 + '@types/hast': 3.0.4 + hast-util-to-estree: 3.1.3 + transitivePeerDependencies: + - supports-color + + rehype-stringify@10.0.1: + dependencies: + '@types/hast': 3.0.4 + hast-util-to-html: 9.0.5 + unified: 11.0.5 + + rehype@13.0.2: + dependencies: + '@types/hast': 3.0.4 + rehype-parse: 9.0.1 + rehype-stringify: 10.0.1 + unified: 11.0.5 + + remark-directive@3.0.1: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-directive: 3.1.0 + micromark-extension-directive: 3.0.2 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + + remark-gfm@4.0.1: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-gfm: 3.1.0 + micromark-extension-gfm: 3.0.0 + remark-parse: 11.0.0 + remark-stringify: 11.0.0 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + + remark-mdx@3.1.1: + dependencies: + mdast-util-mdx: 3.0.0 + micromark-extension-mdxjs: 3.0.0 + transitivePeerDependencies: + - supports-color + + remark-parse@11.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-from-markdown: 2.0.2 + micromark-util-types: 2.0.2 + unified: 11.0.5 + transitivePeerDependencies: + - supports-color + + remark-rehype@11.1.2: + dependencies: + '@types/hast': 3.0.4 + '@types/mdast': 4.0.4 + mdast-util-to-hast: 13.2.1 + unified: 11.0.5 + vfile: 6.0.3 + + remark-smartypants@3.0.2: + dependencies: + retext: 9.0.0 + retext-smartypants: 6.2.0 + unified: 11.0.5 + unist-util-visit: 5.1.0 + + remark-stringify@11.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-to-markdown: 2.1.2 + unified: 11.0.5 + + retext-latin@4.0.0: + dependencies: + '@types/nlcst': 2.0.3 + parse-latin: 7.0.0 + unified: 11.0.5 + + retext-smartypants@6.2.0: + dependencies: + '@types/nlcst': 2.0.3 + nlcst-to-string: 4.0.0 + unist-util-visit: 5.1.0 + + retext-stringify@4.0.0: + dependencies: + '@types/nlcst': 2.0.3 + nlcst-to-string: 4.0.0 + unified: 11.0.5 + + retext@9.0.0: + dependencies: + '@types/nlcst': 2.0.3 + retext-latin: 4.0.0 + retext-stringify: 4.0.0 + unified: 11.0.5 + + rollup@4.57.1: + dependencies: + '@types/estree': 1.0.8 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.57.1 + '@rollup/rollup-android-arm64': 4.57.1 + '@rollup/rollup-darwin-arm64': 4.57.1 + '@rollup/rollup-darwin-x64': 4.57.1 + '@rollup/rollup-freebsd-arm64': 4.57.1 + '@rollup/rollup-freebsd-x64': 4.57.1 + '@rollup/rollup-linux-arm-gnueabihf': 4.57.1 + '@rollup/rollup-linux-arm-musleabihf': 4.57.1 + '@rollup/rollup-linux-arm64-gnu': 4.57.1 + '@rollup/rollup-linux-arm64-musl': 4.57.1 + '@rollup/rollup-linux-loong64-gnu': 4.57.1 + '@rollup/rollup-linux-loong64-musl': 4.57.1 + '@rollup/rollup-linux-ppc64-gnu': 4.57.1 + '@rollup/rollup-linux-ppc64-musl': 4.57.1 + '@rollup/rollup-linux-riscv64-gnu': 4.57.1 + '@rollup/rollup-linux-riscv64-musl': 4.57.1 + '@rollup/rollup-linux-s390x-gnu': 4.57.1 + '@rollup/rollup-linux-x64-gnu': 4.57.1 + '@rollup/rollup-linux-x64-musl': 4.57.1 + '@rollup/rollup-openbsd-x64': 4.57.1 + '@rollup/rollup-openharmony-arm64': 4.57.1 + '@rollup/rollup-win32-arm64-msvc': 4.57.1 + '@rollup/rollup-win32-ia32-msvc': 4.57.1 + '@rollup/rollup-win32-x64-gnu': 4.57.1 + '@rollup/rollup-win32-x64-msvc': 4.57.1 + fsevents: 2.3.3 + + safer-buffer@2.1.2: {} + + sax@1.4.4: {} + + semver@7.7.3: {} + + sharp@0.34.5: + dependencies: + '@img/colour': 1.0.0 + detect-libc: 2.1.2 + semver: 7.7.3 + 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 + + shiki@3.22.0: + dependencies: + '@shikijs/core': 3.22.0 + '@shikijs/engine-javascript': 3.22.0 + '@shikijs/engine-oniguruma': 3.22.0 + '@shikijs/langs': 3.22.0 + '@shikijs/themes': 3.22.0 + '@shikijs/types': 3.22.0 + '@shikijs/vscode-textmate': 10.0.2 + '@types/hast': 3.0.4 + + sisteransi@1.0.5: {} + + sitemap@8.0.2: + dependencies: + '@types/node': 17.0.45 + '@types/sax': 1.2.7 + arg: 5.0.2 + sax: 1.4.4 + + smol-toml@1.6.0: {} + + source-map-js@1.2.1: {} + + source-map@0.7.6: {} + + space-separated-tokens@2.0.2: {} + + stream-replace-string@2.0.0: {} + + string-width@4.2.3: + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + string-width@7.2.0: + dependencies: + emoji-regex: 10.6.0 + get-east-asian-width: 1.4.0 + strip-ansi: 7.1.2 + + stringify-entities@4.0.4: + dependencies: + character-entities-html4: 2.1.0 + character-entities-legacy: 3.0.0 + + strip-ansi@6.0.1: + dependencies: + ansi-regex: 5.0.1 + + strip-ansi@7.1.2: + dependencies: + ansi-regex: 6.2.2 + + style-to-js@1.1.21: + dependencies: + style-to-object: 1.0.14 + + style-to-object@1.0.14: + dependencies: + inline-style-parser: 0.2.7 + + svgo@3.3.2: + dependencies: + '@trysound/sax': 0.2.0 + commander: 7.2.0 + css-select: 5.2.2 + css-tree: 2.3.1 + css-what: 6.2.2 + csso: 5.0.5 + picocolors: 1.1.1 + + svgo@4.0.0: + dependencies: + commander: 11.1.0 + css-select: 5.2.2 + css-tree: 3.1.0 + css-what: 6.2.2 + csso: 5.0.5 + picocolors: 1.1.1 + sax: 1.4.4 + + tar@7.5.7: + dependencies: + '@isaacs/fs-minipass': 4.0.1 + chownr: 3.0.0 + minipass: 7.1.2 + minizlib: 3.1.0 + yallist: 5.0.0 + + tiny-inflate@1.0.3: {} + + tinyexec@1.0.2: {} + + tinyglobby@0.2.15: + dependencies: + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + + trim-lines@3.0.1: {} + + trough@2.2.0: {} + + tsconfck@3.1.6(typescript@5.9.3): + optionalDependencies: + typescript: 5.9.3 + + tslib@2.8.1: + optional: true + + type-fest@4.41.0: {} + + typescript@5.9.3: {} + + ufo@1.6.3: {} + + ultrahtml@1.6.0: {} + + uncrypto@0.1.3: {} + + undici-types@7.16.0: + optional: true + + undici@7.19.2: {} + + unified@11.0.5: + dependencies: + '@types/unist': 3.0.3 + bail: 2.0.2 + devlop: 1.1.0 + extend: 3.0.2 + is-plain-obj: 4.1.0 + trough: 2.2.0 + vfile: 6.0.3 + + unifont@0.7.3: + dependencies: + css-tree: 3.1.0 + ofetch: 1.5.1 + ohash: 2.0.11 + + unist-util-find-after@5.0.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.1 + + unist-util-is@6.0.1: + dependencies: + '@types/unist': 3.0.3 + + unist-util-modify-children@4.0.0: + dependencies: + '@types/unist': 3.0.3 + array-iterate: 2.0.1 + + unist-util-position-from-estree@2.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-position@5.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-remove-position@5.0.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-visit: 5.1.0 + + unist-util-stringify-position@4.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-visit-children@3.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-visit-parents@6.0.2: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.1 + + unist-util-visit@5.1.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.1 + unist-util-visit-parents: 6.0.2 + + unstorage@1.17.4: + dependencies: + anymatch: 3.1.3 + chokidar: 5.0.0 + destr: 2.0.5 + h3: 1.15.5 + lru-cache: 11.2.5 + node-fetch-native: 1.6.7 + ofetch: 1.5.1 + ufo: 1.6.3 + + util-deprecate@1.0.2: {} + + vfile-location@5.0.3: + dependencies: + '@types/unist': 3.0.3 + vfile: 6.0.3 + + vfile-message@4.0.3: + dependencies: + '@types/unist': 3.0.3 + unist-util-stringify-position: 4.0.0 + + vfile@6.0.3: + dependencies: + '@types/unist': 3.0.3 + vfile-message: 4.0.3 + + vite@6.4.1(@types/node@25.1.0): + dependencies: + esbuild: 0.25.12 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + postcss: 8.5.6 + rollup: 4.57.1 + tinyglobby: 0.2.15 + optionalDependencies: + '@types/node': 25.1.0 + fsevents: 2.3.3 + + vitefu@1.1.1(vite@6.4.1(@types/node@25.1.0)): + optionalDependencies: + vite: 6.4.1(@types/node@25.1.0) + + web-namespaces@2.0.1: {} + + whatwg-encoding@3.1.1: + dependencies: + iconv-lite: 0.6.3 + + whatwg-mimetype@4.0.0: {} + + which-pm-runs@1.1.0: {} + + widest-line@5.0.0: + dependencies: + string-width: 7.2.0 + + wrap-ansi@9.0.2: + dependencies: + ansi-styles: 6.2.3 + string-width: 7.2.0 + strip-ansi: 7.1.2 + + wrappy@1.0.2: {} + + xxhash-wasm@1.1.0: {} + + yallist@5.0.0: {} + + yargs-parser@21.1.1: {} + + yauzl@2.10.0: + dependencies: + buffer-crc32: 0.2.13 + fd-slicer: 1.1.0 + + yocto-queue@1.2.2: {} + + yocto-spinner@0.2.3: + dependencies: + yoctocolors: 2.1.2 + + yoctocolors@2.1.2: {} + + zod-to-json-schema@3.25.1(zod@3.25.76): + dependencies: + zod: 3.25.76 + + zod-to-ts@1.2.0(typescript@5.9.3)(zod@3.25.76): + dependencies: + typescript: 5.9.3 + zod: 3.25.76 + + zod@3.25.76: {} + + zwitch@2.0.4: {} diff --git a/src/assets/logo.svg b/src/assets/logo.svg new file mode 100644 index 0000000..c760b0c --- /dev/null +++ b/src/assets/logo.svg @@ -0,0 +1,7 @@ + + + + + + diff --git a/src/assets/screenshots/about-screen.png b/src/assets/screenshots/about-screen.png new file mode 100644 index 0000000..1e85182 Binary files /dev/null and b/src/assets/screenshots/about-screen.png differ diff --git a/src/assets/screenshots/calibration-steps.png b/src/assets/screenshots/calibration-steps.png new file mode 100644 index 0000000..9268d1c Binary files /dev/null and b/src/assets/screenshots/calibration-steps.png differ diff --git a/src/assets/screenshots/channel-select.png b/src/assets/screenshots/channel-select.png new file mode 100644 index 0000000..53f7ed6 Binary files /dev/null and b/src/assets/screenshots/channel-select.png differ diff --git a/src/assets/screenshots/config-menu.png b/src/assets/screenshots/config-menu.png new file mode 100644 index 0000000..bef83cd Binary files /dev/null and b/src/assets/screenshots/config-menu.png differ diff --git a/src/assets/screenshots/console-commands.png b/src/assets/screenshots/console-commands.png new file mode 100644 index 0000000..2832d5e Binary files /dev/null and b/src/assets/screenshots/console-commands.png differ diff --git a/src/assets/screenshots/cw-pulse.png b/src/assets/screenshots/cw-pulse.png new file mode 100644 index 0000000..5d238b9 Binary files /dev/null and b/src/assets/screenshots/cw-pulse.png differ diff --git a/src/assets/screenshots/dark-mode.png b/src/assets/screenshots/dark-mode.png new file mode 100644 index 0000000..f1bef49 Binary files /dev/null and b/src/assets/screenshots/dark-mode.png differ diff --git a/src/assets/screenshots/firmware-upgrade-1.png b/src/assets/screenshots/firmware-upgrade-1.png new file mode 100644 index 0000000..7ce0fbc Binary files /dev/null and b/src/assets/screenshots/firmware-upgrade-1.png differ diff --git a/src/assets/screenshots/firmware-upgrade-2.png b/src/assets/screenshots/firmware-upgrade-2.png new file mode 100644 index 0000000..32eb1d6 Binary files /dev/null and b/src/assets/screenshots/firmware-upgrade-2.png differ diff --git a/src/assets/screenshots/firmware-upgrade-3.png b/src/assets/screenshots/firmware-upgrade-3.png new file mode 100644 index 0000000..bbccb52 Binary files /dev/null and b/src/assets/screenshots/firmware-upgrade-3.png differ diff --git a/src/assets/screenshots/firmware-upgrade-4.png b/src/assets/screenshots/firmware-upgrade-4.png new file mode 100644 index 0000000..65c4330 Binary files /dev/null and b/src/assets/screenshots/firmware-upgrade-4.png differ diff --git a/src/assets/screenshots/firmware-upgrade-5.png b/src/assets/screenshots/firmware-upgrade-5.png new file mode 100644 index 0000000..b4e1db9 Binary files /dev/null and b/src/assets/screenshots/firmware-upgrade-5.png differ diff --git a/src/assets/screenshots/firmware-upgrade-6.png b/src/assets/screenshots/firmware-upgrade-6.png new file mode 100644 index 0000000..cf44841 Binary files /dev/null and b/src/assets/screenshots/firmware-upgrade-6.png differ diff --git a/src/assets/screenshots/format-logmag.png b/src/assets/screenshots/format-logmag.png new file mode 100644 index 0000000..ae0dfb6 Binary files /dev/null and b/src/assets/screenshots/format-logmag.png differ diff --git a/src/assets/screenshots/format-smith.png b/src/assets/screenshots/format-smith.png new file mode 100644 index 0000000..d35fb61 Binary files /dev/null and b/src/assets/screenshots/format-smith.png differ diff --git a/src/assets/screenshots/front-view.png b/src/assets/screenshots/front-view.png new file mode 100644 index 0000000..1bcf278 Binary files /dev/null and b/src/assets/screenshots/front-view.png differ diff --git a/src/assets/screenshots/keyboard-screen.png b/src/assets/screenshots/keyboard-screen.png new file mode 100644 index 0000000..7a7bbc7 Binary files /dev/null and b/src/assets/screenshots/keyboard-screen.png differ diff --git a/src/assets/screenshots/main-screen-labeled.png b/src/assets/screenshots/main-screen-labeled.png new file mode 100644 index 0000000..0f497e4 Binary files /dev/null and b/src/assets/screenshots/main-screen-labeled.png differ diff --git a/src/assets/screenshots/marker-operations.png b/src/assets/screenshots/marker-operations.png new file mode 100644 index 0000000..091869c Binary files /dev/null and b/src/assets/screenshots/marker-operations.png differ diff --git a/src/assets/screenshots/marker-search.png b/src/assets/screenshots/marker-search.png new file mode 100644 index 0000000..5896b2c Binary files /dev/null and b/src/assets/screenshots/marker-search.png differ diff --git a/src/assets/screenshots/marker-set-freq.png b/src/assets/screenshots/marker-set-freq.png new file mode 100644 index 0000000..84d297c Binary files /dev/null and b/src/assets/screenshots/marker-set-freq.png differ diff --git a/src/assets/screenshots/menu-example.png b/src/assets/screenshots/menu-example.png new file mode 100644 index 0000000..ed92872 Binary files /dev/null and b/src/assets/screenshots/menu-example.png differ diff --git a/src/assets/screenshots/menu-map-full.png b/src/assets/screenshots/menu-map-full.png new file mode 100644 index 0000000..515daf0 Binary files /dev/null and b/src/assets/screenshots/menu-map-full.png differ diff --git a/src/assets/screenshots/menu-touch-area.png b/src/assets/screenshots/menu-touch-area.png new file mode 100644 index 0000000..4146f9c Binary files /dev/null and b/src/assets/screenshots/menu-touch-area.png differ diff --git a/src/assets/screenshots/pause-sweep.png b/src/assets/screenshots/pause-sweep.png new file mode 100644 index 0000000..c4d6a0b Binary files /dev/null and b/src/assets/screenshots/pause-sweep.png differ diff --git a/src/assets/screenshots/pc-software-1.png b/src/assets/screenshots/pc-software-1.png new file mode 100644 index 0000000..964a6a8 Binary files /dev/null and b/src/assets/screenshots/pc-software-1.png differ diff --git a/src/assets/screenshots/pc-software-2.png b/src/assets/screenshots/pc-software-2.png new file mode 100644 index 0000000..35af700 Binary files /dev/null and b/src/assets/screenshots/pc-software-2.png differ diff --git a/src/assets/screenshots/pc-software-3.png b/src/assets/screenshots/pc-software-3.png new file mode 100644 index 0000000..a112f2d Binary files /dev/null and b/src/assets/screenshots/pc-software-3.png differ diff --git a/src/assets/screenshots/port-extension.png b/src/assets/screenshots/port-extension.png new file mode 100644 index 0000000..29c6217 Binary files /dev/null and b/src/assets/screenshots/port-extension.png differ diff --git a/src/assets/screenshots/ports-connectors.png b/src/assets/screenshots/ports-connectors.png new file mode 100644 index 0000000..fd5bfa2 Binary files /dev/null and b/src/assets/screenshots/ports-connectors.png differ diff --git a/src/assets/screenshots/recall-save.png b/src/assets/screenshots/recall-save.png new file mode 100644 index 0000000..1bb2dd1 Binary files /dev/null and b/src/assets/screenshots/recall-save.png differ diff --git a/src/assets/screenshots/scale-setting.png b/src/assets/screenshots/scale-setting.png new file mode 100644 index 0000000..4a66b6a Binary files /dev/null and b/src/assets/screenshots/scale-setting.png differ diff --git a/src/assets/screenshots/signal-generator.png b/src/assets/screenshots/signal-generator.png new file mode 100644 index 0000000..56d7be0 Binary files /dev/null and b/src/assets/screenshots/signal-generator.png differ diff --git a/src/assets/screenshots/stimulus-menu.png b/src/assets/screenshots/stimulus-menu.png new file mode 100644 index 0000000..93b280c Binary files /dev/null and b/src/assets/screenshots/stimulus-menu.png differ diff --git a/src/assets/screenshots/storage-menu.png b/src/assets/screenshots/storage-menu.png new file mode 100644 index 0000000..f2c3262 Binary files /dev/null and b/src/assets/screenshots/storage-menu.png differ diff --git a/src/assets/screenshots/tdr-bandpass.png b/src/assets/screenshots/tdr-bandpass.png new file mode 100644 index 0000000..604cf8d Binary files /dev/null and b/src/assets/screenshots/tdr-bandpass.png differ diff --git a/src/assets/screenshots/tdr-lowpass.png b/src/assets/screenshots/tdr-lowpass.png new file mode 100644 index 0000000..0e26223 Binary files /dev/null and b/src/assets/screenshots/tdr-lowpass.png differ diff --git a/src/assets/screenshots/tdr-menu.png b/src/assets/screenshots/tdr-menu.png new file mode 100644 index 0000000..84dc52b Binary files /dev/null and b/src/assets/screenshots/tdr-menu.png differ diff --git a/src/assets/screenshots/trace-activated.png b/src/assets/screenshots/trace-activated.png new file mode 100644 index 0000000..2ed2901 Binary files /dev/null and b/src/assets/screenshots/trace-activated.png differ diff --git a/src/assets/screenshots/trace-selection.png b/src/assets/screenshots/trace-selection.png new file mode 100644 index 0000000..43850dd Binary files /dev/null and b/src/assets/screenshots/trace-selection.png differ diff --git a/src/assets/screenshots/user-defined-info.png b/src/assets/screenshots/user-defined-info.png new file mode 100644 index 0000000..e3f6d0a Binary files /dev/null and b/src/assets/screenshots/user-defined-info.png differ diff --git a/src/assets/screenshots/vna-network-diagram.png b/src/assets/screenshots/vna-network-diagram.png new file mode 100644 index 0000000..3277bd1 Binary files /dev/null and b/src/assets/screenshots/vna-network-diagram.png differ diff --git a/src/components/CalibrationStep.astro b/src/components/CalibrationStep.astro new file mode 100644 index 0000000..e1e5758 --- /dev/null +++ b/src/components/CalibrationStep.astro @@ -0,0 +1,93 @@ +--- +interface Step { + number: number; + title: string; + description: string; + note?: string; +} + +interface Props { + steps: Step[]; +} + +const { steps } = Astro.props; +--- + +
+ {steps.map((step) => ( +
+
+ Step {step.number} + {step.title} +
+

{step.description}

+ {step.note && ( +
+ Note: {step.note} +
+ )} +
+ ))} +
+ + diff --git a/src/components/CommandTable.astro b/src/components/CommandTable.astro new file mode 100644 index 0000000..759dfb3 --- /dev/null +++ b/src/components/CommandTable.astro @@ -0,0 +1,73 @@ +--- +interface Command { + name: string; + syntax: string; + description: string; +} + +interface Props { + commands: Command[]; +} + +const { commands } = Astro.props; +--- + +
+ + + + + + + + + + {commands.map((cmd) => ( + + + + + + ))} + +
CommandSyntaxDescription
{cmd.name}{cmd.syntax}{cmd.description}
+
+ + diff --git a/src/components/MenuTree.astro b/src/components/MenuTree.astro new file mode 100644 index 0000000..23fb350 --- /dev/null +++ b/src/components/MenuTree.astro @@ -0,0 +1,96 @@ +--- +interface MenuItem { + label: string; + children?: MenuItem[]; + description?: string; +} + +interface Props { + items: MenuItem[]; + title?: string; +} + +const { items, title } = Astro.props; +--- + +{title && } + + + diff --git a/src/components/ScreenRegion.astro b/src/components/ScreenRegion.astro new file mode 100644 index 0000000..c06c69b --- /dev/null +++ b/src/components/ScreenRegion.astro @@ -0,0 +1,74 @@ +--- +interface Region { + number: number; + name: string; + description: string; +} + +interface Props { + regions: Region[]; +} + +const { regions } = Astro.props; +--- + +
+ {regions.map((region) => ( +
+ {region.number} +
+ {region.name} +

{region.description}

+
+
+ ))} +
+ + diff --git a/src/components/SpecCard.astro b/src/components/SpecCard.astro new file mode 100644 index 0000000..35af882 --- /dev/null +++ b/src/components/SpecCard.astro @@ -0,0 +1,33 @@ +--- +interface Spec { + value: string; + unit?: string; + label: string; +} + +interface Props { + specs: Spec[]; +} + +const { specs } = Astro.props; +--- + +
+ {specs.map((spec) => ( +
+ + {spec.value} + {spec.unit && {spec.unit}} + + {spec.label} +
+ ))} +
+ + diff --git a/src/content.config.ts b/src/content.config.ts new file mode 100644 index 0000000..d9ee8c9 --- /dev/null +++ b/src/content.config.ts @@ -0,0 +1,7 @@ +import { defineCollection } from 'astro:content'; +import { docsLoader } from '@astrojs/starlight/loaders'; +import { docsSchema } from '@astrojs/starlight/schema'; + +export const collections = { + docs: defineCollection({ loader: docsLoader(), schema: docsSchema() }), +}; diff --git a/src/content/docs/getting-started/hardware.mdx b/src/content/docs/getting-started/hardware.mdx new file mode 100644 index 0000000..1851734 --- /dev/null +++ b/src/content/docs/getting-started/hardware.mdx @@ -0,0 +1,118 @@ +--- +title: Hardware Overview +description: Physical layout, ports, connectors, and controls of the NanoVNA-F V3 +--- + +import { Aside, Tabs, TabItem } from '@astrojs/starlight/components'; +import frontView from '../../../assets/screenshots/front-view.png'; +import portsConnectors from '../../../assets/screenshots/ports-connectors.png'; + +This page covers the physical design of the NanoVNA-F V3 -- what each port does, how the buttons work, and what the LEDs are telling you. + +## Front panel + +NanoVNA-F V3 front panel showing the display and physical buttons + +The front panel is dominated by the **4.3-inch IPS display** (800 x 480 pixels). The screen uses a resistive touch panel, which means it responds to pressure rather than capacitance -- you can operate it with a fingertip, a stylus, or while wearing gloves. + +Below the display sit three physical buttons. These provide an alternative to touch navigation and are particularly useful when precision tapping is difficult, such as in cold weather or when wearing gloves. + +### Physical buttons + +| Button | Location | Function | +|--------|----------|----------| +| **Left** | Leftmost | Power on (long press) / Power off (long press). Also acts as a navigation shortcut. | +| **Center** | Middle | Push lever: rotary-style navigation. Push to confirm/select. Short press to enter the menu or confirm a selection. | +| **Right** | Rightmost | Back / Cancel. Returns to the previous menu level or dismisses the current dialog. | + +The center button behaves like a push-lever with left/right/up/down directional input, giving you full menu navigation without ever touching the screen. This is the same interaction model used by many bench instruments. + + + +## Ports and connectors + +NanoVNA-F V3 connector layout showing all ports + +### RF ports + +The two SMA female connectors on the top edge of the device carry the RF signals. + +| Port | Label | Function | +|------|-------|----------| +| **PORT1** | CH0 | Stimulus output. Also measures reflected signals (S11). Connect your DUT or the calibration standard here for reflection measurements. | +| **PORT2** | CH1 | Receives transmitted signals (S21). Connect the output side of a two-port DUT here. | + + + +**RF output power** is -10 dBm maximum. This is low enough to be safe for most passive components but should not be connected directly to the input of sensitive low-noise amplifiers without appropriate protection. + +### Data and power ports + +| Port | Type | Function | +|------|------|----------| +| **USB Type-C** | Data + Charging | Connects to a PC for remote control, data transfer, and firmware upgrades. Also charges the internal battery (4.7 -- 5.5 V input). | +| **USB-A** | Power output | Provides 5 V / 1 A power output. Useful for powering small accessories, preamps, or a USB light. | + +The USB Type-C port supports a virtual COM port for PC software (NanoVNA-Saver, NanoVNA-QT, etc.) and a virtual U-disk interface for firmware upgrades. + +### Power button + +The power button is the leftmost of the three physical buttons on the front panel. Long-press (about 2 seconds) to power on or off. A short press during operation functions as a navigation shortcut. + +## LED indicators + +Two LEDs on the device body indicate charging and operating state. The exact behavior depends on whether the device is powered on and whether USB power is connected. + +| State | Red LED | Blue LED | +|-------|---------|----------| +| **Fully charged** (USB connected, device off) | OFF | ON (solid) | +| **Working** (no USB, device on) | OFF | OFF | +| **Low battery** (no USB, device on) | OFF | ON (solid) | +| **Charging** (USB connected, device off) | ON (solid) | FLASH | +| **Charging + Working** (USB connected, device on) | FLASH | OFF | + + + +## Case and build + +The NanoVNA-F V3 uses an **aluminum alloy case** that serves double duty as structural protection and RF shielding. The metal construction keeps the internals isolated from external interference and provides a solid, confidence-inspiring feel in the hand. + +**Dimensions:** 130 x 75 x 22 mm -- roughly the size of a large smartphone, and easy to slip into a tool bag or jacket pocket. + +**Operating temperature:** 0 C to 45 C. Avoid leaving the device in direct sunlight or in a hot vehicle for extended periods -- the battery and display are the limiting factors. + +**Weight:** Light enough for one-handed operation but substantial enough to sit stable on a bench. + +## SMA connectors and cable care + +SMA connectors are precision RF interfaces rated to at least 18 GHz. The NanoVNA-F V3 uses standard SMA female (jack) connectors on both ports. + +A few practices will keep your connectors in good condition: + +- **Align before tightening.** Push the connector straight on and start threading by hand. If it resists, back off and realign rather than forcing. +- **Finger-tight on the device.** Only apply torque to the cable-side nut, never the device-side connector body. +- **Keep connectors clean.** Dust, skin oils, and corrosion degrade the contact surfaces. A lint-free wipe with isopropyl alcohol works well for routine cleaning. +- **Use connector savers** for bench setups where you frequently connect and disconnect. A short SMA barrel adapter on each port takes the wear instead of the device connectors. +- **Store with caps.** When not in use, put the SMA dust caps back on the ports to protect the center pins and mating surfaces. + +## Included accessories + +| Item | Quantity | Notes | +|------|----------|-------| +| SMA calibration kit | 1 set | Open, Short, and 50-ohm Load standards | +| SMA-JJ RG405 cable | 2 | 20 cm semi-rigid, excellent phase stability | +| USB Type-C cable | 1 | Data and charging | + + + +--- + +Next: learn the fundamentals of vector network analysis in [VNA Basics](/getting-started/vna-basics/). diff --git a/src/content/docs/getting-started/overview.mdx b/src/content/docs/getting-started/overview.mdx new file mode 100644 index 0000000..e79751f --- /dev/null +++ b/src/content/docs/getting-started/overview.mdx @@ -0,0 +1,89 @@ +--- +title: What is NanoVNA-F V3? +description: Overview of the NanoVNA-F V3 portable vector network analyzer +--- + +import { Aside, Badge } from '@astrojs/starlight/components'; +import SpecCard from '../../../components/SpecCard.astro'; +import frontView from '../../../assets/screenshots/front-view.png'; +import portsConnectors from '../../../assets/screenshots/ports-connectors.png'; + +The **NanoVNA-F V3** is a portable, dual-port vector network analyzer (VNA) covering **1 MHz to 6 GHz**. It measures how RF signals reflect from and transmit through electrical components -- antennas, filters, cables, amplifiers, and anything else with an RF connector. + +If you have ever needed to verify that an antenna is resonant on frequency, check the passband of a filter, or find a fault in a coaxial cable, this is the instrument for the job. + +NanoVNA-F V3 front panel showing the 4.3-inch IPS display and three physical buttons + +## At a glance + + + +## Key features + +**Broad frequency coverage.** The 1 MHz -- 6 GHz range spans MF through SHF, covering HF, VHF, UHF, and the lower microwave bands. That means one device handles everything from 160-meter dipoles to 5 GHz Wi-Fi antennas. + +**Dual-port measurement.** PORT1 measures reflected signals (S11) and PORT2 measures transmitted signals (S21). Swap the DUT connections to get S22 and S12 when needed. + +**Solid dynamic range.** S21 dynamic range reaches 65 dB below 3 GHz and 60 dB above it. S11 dynamic range is 50 dB below 3 GHz and 40 dB above. These figures are more than adequate for most amateur radio and general RF bench work. + +**Metal construction.** The aluminum alloy case provides shielding and durability. SMA connectors give reliable, repeatable connections across the full frequency range. + +**Readable display.** The 4.3-inch IPS panel (800 x 480) shows up to four simultaneous traces with enough resolution to actually read the data. A resistive touch panel and three physical buttons handle navigation. + +**All-day battery.** The 4500 mAh battery delivers roughly five hours of continuous use. Charging is via USB Type-C (4.7 -- 5.5 V). A USB-A port on the side provides 5 V / 1 A power output for accessories. + +**Advanced features.** Up to 801 configurable sweep points, TDR mode for cable fault location, four markers with search functions, and 12 calibration save slots. + +## What's in the box + +- NanoVNA-F V3 device +- SMA calibration kit (Open, Short, Load standards) +- 2x 20 cm SMA-JJ RG405 semi-rigid cables +- USB Type-C data/charging cable + + + +## Ports and connectors + +NanoVNA-F V3 ports and connectors showing PORT1, PORT2, USB Type-C, and USB-A + +| Port | Purpose | +|------|---------| +| **PORT1** (SMA) | Stimulus output and S11 reflection measurement | +| **PORT2** (SMA) | S21 transmission measurement | +| **USB Type-C** | Charging, PC data connection, firmware upgrade | +| **USB-A** | 5 V / 1 A power output for accessories | + +## Who is this for? + +The NanoVNA-F V3 fits into several workflows: + +- **Ham radio operators** tuning and verifying antennas across HF, VHF, and UHF bands +- **RF engineers and technicians** doing bench work on filters, amplifiers, and matching networks +- **Electronics hobbyists** learning about RF, impedance matching, and transmission line theory +- **Field service technicians** who need a portable instrument for cable testing and site surveys + +## Typical use cases + +**Antenna work.** Measure SWR, return loss, and impedance across the operating band. Adjust antenna length, matching, and feed arrangements while watching the results in real time. + +**Filter characterization.** Measure insertion loss, passband shape, and rejection across frequency. Verify filter performance against specifications or tune homebrew designs. + +**Cable testing.** Check cable loss, locate faults with TDR mode, and verify connector integrity. Measure cable length using velocity factor and time-domain analysis. + +**Amplifier and attenuator testing.** Measure gain or loss (S21) and input/output match (S11, S22) across the operating frequency range. + +**Component matching.** Use the Smith chart to visualize impedance and design matching networks for power amplifier inputs, antenna feeds, and other impedance-critical circuits. + +--- + +Ready to get started? Head to the [Quick Start Guide](/getting-started/quick-start/) to power on and take your first measurement. diff --git a/src/content/docs/getting-started/quick-start.mdx b/src/content/docs/getting-started/quick-start.mdx new file mode 100644 index 0000000..c623b0f --- /dev/null +++ b/src/content/docs/getting-started/quick-start.mdx @@ -0,0 +1,112 @@ +--- +title: Quick Start Guide +description: Get up and running with your NanoVNA-F V3 in minutes +--- + +import { Aside, Steps } from '@astrojs/starlight/components'; +import ScreenRegion from '../../../components/ScreenRegion.astro'; +import mainScreen from '../../../assets/screenshots/main-screen-labeled.png'; + +This guide walks you from unboxing to your first measurement. The whole process takes about ten minutes, most of which is calibration. + +## Charge the battery + + + +1. **Connect USB Type-C.** Plug the included cable into the USB-C port on the top edge of the device. Use a standard 5 V USB charger (4.7 -- 5.5 V). + +2. **Watch the LED.** The red LED illuminates and the blue LED flashes during charging. When the battery is full, the red LED turns off and the blue LED stays on solid. + +3. **Wait for a full charge.** A depleted battery takes a few hours to reach full capacity. The 4500 mAh cell provides roughly five hours of continuous use. + + + + + +## Power on + + + +1. **Long-press the power button.** Hold the leftmost physical button for about two seconds. The display shows a boot splash, then the main sweep screen appears. + +2. **Check the battery icon.** The battery indicator in the top-right area of the screen shows remaining charge. If it is very low, charge before calibrating. + + + +## Understand the main screen + +The main display is divided into distinct regions. Getting familiar with these helps you read measurements quickly. + +NanoVNA-F V3 main screen with labeled regions + + + +## Connect the calibration standards + +Before any measurement is meaningful, you need to calibrate. Calibration removes systematic errors from the cables, connectors, and instrument internals. + + + +1. **Attach cables to both ports.** Connect the included SMA-JJ RG405 cables to PORT1 and PORT2. Finger-tighten the SMA connectors -- do not use a wrench on the device ports. + +2. **Set the frequency range.** Tap the menu area, navigate to **STIMULUS**, and set the start and stop frequencies for your measurement. For a first test, try 1 MHz to 900 MHz. + +3. **Open the calibration menu.** Navigate to **CAL** > **CALIBRATE** in the menu system. + +4. **Perform OPEN calibration.** Leave the free end of the PORT1 cable disconnected (or attach the Open standard from the cal kit). Select **OPEN** in the calibration menu and wait for the sweep to complete. + +5. **Perform SHORT calibration.** Attach the Short standard to the PORT1 cable. Select **SHORT** and wait for the sweep. + +6. **Perform LOAD calibration.** Attach the 50-ohm Load standard to the PORT1 cable. Select **LOAD** and wait for the sweep. + +7. **Perform THRU calibration.** Connect the free ends of the PORT1 and PORT2 cables directly together. Select **THRU** and wait for the sweep. + +8. **Perform ISOLATION calibration (optional).** With the Load standard on PORT1 and nothing on PORT2 (or a second Load if available), select **ISOLN**. This step is optional but improves S21 accuracy at low signal levels. + +9. **Apply and save.** Select **DONE** to apply the calibration. Then save it to one of the 12 storage slots via **CAL** > **SAVE** so you can recall it later. + + + + + +## Make your first measurement + +With calibration done, you are ready to measure a device. + + + +1. **Connect the DUT.** For a reflection measurement (S11), connect your device under test -- an antenna, for example -- to the free end of the PORT1 cable. For a transmission measurement (S21), connect the DUT between the PORT1 and PORT2 cables. + +2. **Read the traces.** The default traces typically show return loss (S11 in LogMag) and phase. Look for the frequency where return loss is deepest -- that is the resonant point of an antenna, or the center frequency of a filter. + +3. **Place a marker.** Tap on the trace to drop a marker, or use **MARKER** > **SELECT MARKER** to activate one and set its frequency. The marker readout area at the top of the screen displays the exact frequency and measured value. + +4. **Adjust the view.** Use **DISPLAY** > **SCALE** to zoom in on regions of interest. Change the display format (LogMag, SWR, Smith chart, etc.) via **DISPLAY** > **FORMAT** to see the data in different ways. + + + + + +## Next steps + +- **[Hardware Overview](/getting-started/hardware/)** -- Learn about the physical controls, ports, and LED indicators in detail. +- **[VNA Basics](/getting-started/vna-basics/)** -- Understand S-parameters, calibration theory, and what the numbers actually mean. +- **[Full Calibration Tutorial](/tutorials/calibration/full-calibration/)** -- A thorough walkthrough of all calibration methods and best practices. diff --git a/src/content/docs/getting-started/vna-basics.mdx b/src/content/docs/getting-started/vna-basics.mdx new file mode 100644 index 0000000..07fb407 --- /dev/null +++ b/src/content/docs/getting-started/vna-basics.mdx @@ -0,0 +1,175 @@ +--- +title: VNA Basics +description: Fundamental concepts of vector network analysis +--- + +import { Aside, Tabs, TabItem } from '@astrojs/starlight/components'; +import vnaNetworkDiagram from '../../../assets/screenshots/vna-network-diagram.png'; + +Before diving into measurements, it helps to understand what a VNA actually does and what the numbers on screen mean. This page covers the core concepts without assuming prior RF knowledge. + +## What is a vector network analyzer? + +A VNA is a test instrument that measures how an electrical component or circuit responds to RF signals across a range of frequencies. The "vector" part means it captures both **magnitude** (how much signal) and **phase** (the timing relationship of the signal) -- not just one or the other. + +This is what distinguishes a VNA from simpler instruments: + +- A **scalar network analyzer** or **SWR meter** measures only magnitude. It can tell you how much signal is reflected, but not the phase. +- A **spectrum analyzer** measures signal power at each frequency, but it does not inject a known stimulus. +- A **VNA** does both: it sends a known signal into the device under test and measures what comes back (or passes through), capturing the full complex response. + +That complex response -- magnitude and phase together -- is what lets you compute impedance, plot on a Smith chart, and design matching networks. Without phase information, you know *how much* signal is reflected but not *why*, which severely limits what you can do with the data. + +## The word "network" + +In RF engineering, "network" means an electrical circuit or component -- not a computer network. A filter is a network. An antenna is a network. A length of coaxial cable is a network. The name "network analyzer" simply means "circuit analyzer." + +## S-parameters + +S-parameters (scattering parameters) are the standard way to describe how an RF network behaves. They quantify how much signal is reflected and how much passes through at each frequency. + +For a two-port network (a device with an input and an output), there are four S-parameters: + +Two-port network diagram showing S11, S21, S12, and S22 signal paths + +| Parameter | Direction | What it measures | +|-----------|-----------|-----------------| +| **S11** | Port 1 to Port 1 | Input reflection coefficient. How much of the signal sent into Port 1 bounces back. | +| **S21** | Port 1 to Port 2 | Forward transmission coefficient. How much of the signal sent into Port 1 passes through to Port 2. | +| **S12** | Port 2 to Port 1 | Reverse transmission coefficient. How much signal passes from Port 2 back to Port 1. | +| **S22** | Port 2 to Port 2 | Output reflection coefficient. How much signal sent into Port 2 bounces back. | + +The NanoVNA-F V3 directly measures **S11** and **S21**. To measure S22 and S12, swap the DUT connections between the two ports and measure again. + +### Reading S-parameter notation + +The two digits in "S21" tell you the signal path: the first digit is the *receiving* port, the second is the *sending* port. So S21 means "signal received at port 2, sent from port 1" -- in other words, forward transmission. + +## S11: Reflection + +S11 tells you what fraction of the signal bounces back from the device under test. It is the primary measurement for: + +- **Antenna tuning.** A well-matched antenna at its resonant frequency absorbs most of the transmitted power and reflects very little. S11 shows you where that resonance occurs and how well-matched it is. +- **Impedance matching.** Any point where impedance changes -- a connector, a junction, a mismatch in a transmission line -- creates a reflection. S11 quantifies that reflection. +- **Return loss.** When expressed in decibels (dB), S11 is called return loss. A return loss of -20 dB means only 1% of the power is reflected -- a very good match. + +### S11 display formats + +The same S11 data can be displayed in several formats, each useful for different purposes: + + + + Plots the reflection magnitude in decibels versus frequency. This is the most common view for antenna work. The deeper the dip, the better the match at that frequency. + + **Typical values:** + - -6 dB: acceptable for many applications (SWR ~3:1) + - -10 dB: good match (SWR ~2:1) + - -20 dB: excellent match (SWR ~1.2:1) + - -30 dB or better: nearly perfect match + + + Standing Wave Ratio -- a dimensionless ratio derived from S11. Older ham radio convention, but still widely used. + + **Typical values:** + - 1.0:1 -- perfect match, no reflected power + - 1.5:1 -- good match, ~4% reflected power + - 2.0:1 -- acceptable for most transmitters, ~11% reflected power + - 3.0:1 -- marginal, ~25% reflected power + + + A specialized circular plot that shows impedance (resistance + reactance) at every frequency on a single diagram. Indispensable for matching network design. + + The center of the Smith chart represents 50 ohms (the reference impedance). Points above center are inductive; points below are capacitive. Points to the left have less resistance than 50 ohms; points to the right have more. + + + +## S21: Transmission + +S21 tells you how much signal passes through the device under test from Port 1 to Port 2. It is the primary measurement for: + +- **Filter characterization.** S21 shows the passband shape, insertion loss, and out-of-band rejection of a filter. +- **Amplifier gain.** A positive S21 (in dB) means the device adds gain. A negative S21 means it attenuates. +- **Cable loss.** Connect one end of a cable to each port. S21 shows the attenuation at each frequency. + +### S21 display formats + + + + The most common view for transmission measurements. Displays gain or loss in decibels versus frequency. + + - **0 dB** means the signal passes through unchanged. + - **Positive values** indicate gain (amplifier). + - **Negative values** indicate loss (cable, filter, attenuator). + + + Shows the phase shift introduced by the DUT at each frequency. Important for amplifier stability analysis and delay measurements. + + + +## Single-port vs. two-port measurements + +Some devices have only one RF port -- an antenna, for example. These are **single-port** measurements. You connect the DUT to PORT1 and measure S11 only. + +Devices with an input and an output -- filters, amplifiers, cables -- are **two-port** devices. You connect one side to PORT1 and the other to PORT2, then measure both S11 (input match) and S21 (transmission). + +| Measurement type | What to connect | S-parameters measured | +|-----------------|----------------|----------------------| +| Single-port (antenna, load) | DUT on PORT1 only | S11 | +| Two-port (filter, cable, amp) | DUT between PORT1 and PORT2 | S11 and S21 | +| Reverse two-port | DUT swapped (output on PORT1, input on PORT2) | S22 and S12 | + +## Why calibration matters + +Every measurement system introduces errors. The cables have loss. The connectors have small reflections. The instrument's internal circuits are not perfectly flat across the entire frequency range. These errors shift and distort your measurements. + +**Calibration** characterizes those errors by measuring known standards -- devices whose electrical behavior is precisely defined: + +- **Open** -- an unterminated connector (nearly total reflection, 0-degree phase) +- **Short** -- a shorted connector (nearly total reflection, 180-degree phase) +- **Load** -- a precision 50-ohm termination (minimal reflection) +- **Thru** -- a direct connection between Port 1 and Port 2 (minimal loss, known delay) + +By comparing the measured response of these standards against their known ideal values, the VNA builds a mathematical error model. That model is then subtracted from every subsequent measurement, leaving you with the response of the DUT alone. + + + +### The calibration reference plane + +Calibration defines the *reference plane* -- the physical point at which the measurement begins. When you calibrate at the ends of your cables, the reference plane is at those cable ends. Everything between the VNA ports and the reference plane is "calibrated out" and will not appear in the measurement. + +This is why it is important to calibrate with the exact cables you will use for the measurement. If you calibrate with short cables and then add an extension, that extension becomes part of the measured network. + +## Common devices under test + +| DUT | Primary measurement | What to look for | +|-----|-------------------|-----------------| +| **Antenna** | S11 (return loss, SWR, impedance) | Resonant frequency, bandwidth, impedance at center frequency | +| **Bandpass filter** | S21 (insertion loss, shape) and S11 (input match) | Center frequency, 3 dB bandwidth, passband ripple, stopband rejection | +| **Low-pass / high-pass filter** | S21 and S11 | Cutoff frequency, rolloff rate, passband flatness | +| **Coaxial cable** | S21 (loss) and S11 (reflections) | Loss per length at frequency, connector quality, fault location (TDR) | +| **Amplifier** | S21 (gain) and S11 (input match) | Gain flatness, gain at specific frequencies, input return loss | +| **Attenuator** | S21 (attenuation) and S11 (match) | Attenuation accuracy, flatness, match quality | +| **Crystal / ceramic filter** | S21 (passband) | Center frequency, bandwidth, insertion loss, shape factor | + +## Decibels: a quick reference + +S-parameters are almost always expressed in decibels (dB). Decibels are a logarithmic ratio, which compresses large ranges into manageable numbers. + +| Power ratio | dB value | What it means | +|------------|----------|---------------| +| 1 (no change) | 0 dB | Signal is unchanged | +| 2 (doubled) | +3 dB | Signal doubled in power | +| 10 | +10 dB | 10x power increase | +| 100 | +20 dB | 100x power increase | +| 0.5 (halved) | -3 dB | Signal halved in power | +| 0.1 | -10 dB | 10x power reduction | +| 0.01 | -20 dB | 100x power reduction | +| 0.001 | -30 dB | 1000x power reduction | + +For S11 (reflection), more negative is better -- it means less signal is bouncing back. For S21 (transmission through a passive device), values closer to 0 dB mean less loss. + +--- + +With these fundamentals in place, you are ready to start making measurements. Head to [Your First S11 Measurement](/tutorials/first-measurements/first-s11/) for a hands-on walkthrough. diff --git a/src/content/docs/how-to/configuration/datetime-average.mdx b/src/content/docs/how-to/configuration/datetime-average.mdx new file mode 100644 index 0000000..55d0dcd --- /dev/null +++ b/src/content/docs/how-to/configuration/datetime-average.mdx @@ -0,0 +1,45 @@ +--- +title: Date/Time & Average +description: Set the real-time clock and averaging +--- + +import { Aside, Steps } from '@astrojs/starlight/components'; +import configMenu from '../../../../assets/screenshots/config-menu.png'; + +Configuration menu showing available settings + +## Set the date and time + +The NanoVNA-F V3 has a real-time clock used for timestamping saved files. + + + 1. Tap CONFIG → DATE/TIME. + 2. Enter the current date using the on-screen keypad. + 3. Tap **Ok** to confirm. + 4. Enter the current time. + 5. Tap **Ok** to confirm. + + + + +## Configure sweep averaging + +Averaging reduces measurement noise by combining multiple sweeps. Higher averaging values produce smoother traces at the cost of slower update rates. + + + 1. Tap CONFIG → AVERAGE. + 2. Enter the number of sweeps to average. + 3. Tap **Ok** to confirm. + + +Setting average to **1** disables averaging (each sweep displays independently). Higher values like **4** or **8** are useful when measuring low-level signals or when you need clean trace data for export. + + + + diff --git a/src/content/docs/how-to/configuration/firmware-update.mdx b/src/content/docs/how-to/configuration/firmware-update.mdx new file mode 100644 index 0000000..034c691 --- /dev/null +++ b/src/content/docs/how-to/configuration/firmware-update.mdx @@ -0,0 +1,87 @@ +--- +title: Firmware Update +description: Upgrade firmware via USB virtual U-disk +--- + +import { Aside, Steps } from '@astrojs/starlight/components'; +import firmwareUpgrade1 from '../../../../assets/screenshots/firmware-upgrade-1.png'; +import firmwareUpgrade2 from '../../../../assets/screenshots/firmware-upgrade-2.png'; +import firmwareUpgrade3 from '../../../../assets/screenshots/firmware-upgrade-3.png'; +import firmwareUpgrade4 from '../../../../assets/screenshots/firmware-upgrade-4.png'; +import firmwareUpgrade5 from '../../../../assets/screenshots/firmware-upgrade-5.png'; +import firmwareUpgrade6 from '../../../../assets/screenshots/firmware-upgrade-6.png'; + +Firmware updates add features, fix bugs, and improve measurement accuracy. The NanoVNA-F V3 uses a simple USB file-copy method -- no special flashing software is required. + +## Download the firmware + + + 1. Visit the official firmware page at [sysjoint.com](https://www.sysjoint.com). + 2. Locate the latest firmware file for the NanoVNA-F V3. + 3. Download the file. It will be named **`update.bin`**. + + +Firmware download page on sysjoint.com + + + +## Enter U-disk mode + + + 1. Connect the NanoVNA-F V3 to your computer via the **USB-C** cable. + 2. **Power off** the device if it is currently running. + 3. Hold the **middle button** and power on the device simultaneously. + 4. The device enters U-disk mode and appears as a removable USB drive on your computer. + + +NanoVNA-F V3 connected via USB-C for U-disk mode + +Device appearing as USB drive on computer + +## Copy the firmware file + + + 1. Open the USB drive on your computer. + 2. Copy the **`update.bin`** file to the root of the USB drive. + 3. Wait for the file copy to complete fully. + 4. **Safely eject** the USB drive from your operating system. + + +Copying update.bin to the USB drive + +File copy in progress + + + +## Apply the update + + + 1. Disconnect the USB cable. + 2. Power off the NanoVNA-F V3. + 3. Power it back on normally (without holding any buttons). + 4. The device detects `update.bin` and applies the firmware update automatically. + 5. The update process takes a few seconds. The device restarts when finished. + + +Firmware update complete + +## Verify the update + +After the device restarts: + + + 1. Tap CONFIG → ABOUT. + 2. Check that the firmware version matches the version you downloaded. + + + + + diff --git a/src/content/docs/how-to/configuration/language-brightness.mdx b/src/content/docs/how-to/configuration/language-brightness.mdx new file mode 100644 index 0000000..bc555c2 --- /dev/null +++ b/src/content/docs/how-to/configuration/language-brightness.mdx @@ -0,0 +1,43 @@ +--- +title: Language & Brightness +description: Change display language and backlight brightness +--- + +import { Aside, Steps } from '@astrojs/starlight/components'; + +## Change the display language + +The NanoVNA-F V3 supports English and Chinese interface languages. + + + 1. Tap CONFIG → LANGSET. + 2. Select **English** or **Chinese**. + 3. The interface updates immediately. + + + + +## Adjust backlight brightness + +Reducing brightness extends battery life when operating in the field. + + + 1. Tap CONFIG → BRIGHTNESS. + 2. Select one of five levels: + - **100%** -- full brightness (default) + - **80%** + - **60%** + - **40%** + - **20%** -- dimmest setting + 3. The display adjusts immediately. + + + + + diff --git a/src/content/docs/how-to/configuration/user-defined-info.mdx b/src/content/docs/how-to/configuration/user-defined-info.mdx new file mode 100644 index 0000000..29c33c5 --- /dev/null +++ b/src/content/docs/how-to/configuration/user-defined-info.mdx @@ -0,0 +1,41 @@ +--- +title: User Defined Info +description: Display your callsign on the boot screen +--- + +import { Aside, Steps } from '@astrojs/starlight/components'; +import userDefinedInfo from '../../../../assets/screenshots/user-defined-info.png'; + +You can configure the NanoVNA-F V3 to display a custom message -- typically your amateur radio callsign -- on the boot screen each time the device powers on. + +Boot screen showing user-defined callsign + +## Set your callsign or custom text + + + 1. On your PC, create a plain text file named **`callsign.txt`**. + 2. Type your callsign or message inside the file (maximum **50 ASCII characters**). + 3. Save the file. + 4. Power off the NanoVNA-F V3. + 5. Enter **U-disk mode**: hold the **middle button** while powering on. + 6. The device appears as a USB drive on your computer. + 7. Copy **`callsign.txt`** to the root of the USB drive. + 8. Safely eject the USB drive. + 9. Restart the NanoVNA-F V3. + + +Your text now appears on the boot screen during startup. + +## Update or remove the callsign + +**To change the text:** Edit `callsign.txt` with the new content, enter U-disk mode again, and copy the updated file to the device. + +**To remove it:** Delete `callsign.txt` from the USB drive while in U-disk mode, then restart. + + + + diff --git a/src/content/docs/how-to/display-traces/configure-traces.mdx b/src/content/docs/how-to/display-traces/configure-traces.mdx new file mode 100644 index 0000000..815e522 --- /dev/null +++ b/src/content/docs/how-to/display-traces/configure-traces.mdx @@ -0,0 +1,68 @@ +--- +title: Configure Traces +description: Add, remove, and switch between measurement traces +--- + +import { Aside, Steps, Tabs, TabItem } from '@astrojs/starlight/components'; +import traceSelection from '../../../../assets/screenshots/trace-selection.png'; +import traceActivated from '../../../../assets/screenshots/trace-activated.png'; +import channelSelect from '../../../../assets/screenshots/channel-select.png'; + +The NanoVNA-F V3 supports four independent traces (0 through 3), each capable of displaying a different measurement format on the same sweep. This guide covers activating, switching, and deactivating traces. + +## Activate a trace + + + + + 1. Tap DISPLAY → TRACE → TRACE n where **n** is 0, 1, 2, or 3. + 2. The selected trace becomes active and appears on screen. + + + + Tap the **trace status box** at the top of the screen for the trace you want to activate. The status box shows the trace number, channel, and current format. + + + Tap a **marker** whose color matches the trace you want to activate. This selects both the marker and its associated trace. + + + +Trace selection menu showing four available traces + +## Switch the channel (S11 / S21) + +Each trace can display either the S11 (reflection) or S21 (transmission) channel. + + + 1. Activate the trace you want to change. + 2. Tap DISPLAY → CHANNEL. + 3. Select **S11** or **S21**. + + +Channel selection showing S11 and S21 options + + + +## Deactivate a trace + +To remove a trace from the display, activate it first, then tap DISPLAY → TRACE → TRACE n again for the same trace number. The trace toggles off. + + + +## Identify the active trace + +The currently active trace has its status box **highlighted** at the top of the screen. All marker readings and scale adjustments apply to the active trace. + +Display showing an activated trace with highlighted status box + +## Common multi-trace setups + +| Setup | Trace 0 | Trace 1 | Trace 2 | Trace 3 | +|---|---|---|---|---| +| Antenna check | S11 LOGMAG | S11 SWR | S11 SMITH | -- | +| Filter response | S21 LOGMAG | S21 PHASE | S11 LOGMAG | -- | +| Full two-port | S11 LOGMAG | S21 LOGMAG | S11 SMITH | S21 PHASE | diff --git a/src/content/docs/how-to/display-traces/dark-mode.mdx b/src/content/docs/how-to/display-traces/dark-mode.mdx new file mode 100644 index 0000000..2e36056 --- /dev/null +++ b/src/content/docs/how-to/display-traces/dark-mode.mdx @@ -0,0 +1,39 @@ +--- +title: Dark Mode +description: Enable dark display mode on the NanoVNA-F V3 +--- + +import { Aside, Steps } from '@astrojs/starlight/components'; +import darkMode from '../../../../assets/screenshots/dark-mode.png'; + +The NanoVNA-F V3 supports a dark display mode that swaps the bright background for a dark one. This is easier on the eyes in dim environments and reduces battery drain. + +NanoVNA-F V3 display in dark mode + +## Enable dark mode + + + 1. On your PC, create a plain text file named **`dark_mode.txt`**. + 2. Inside the file, write a single character: **`1`** (the digit one). Save the file. + 3. Put the NanoVNA-F V3 into **U-disk mode**: hold the **middle button** while powering on the device. + 4. The device appears as a USB drive on your computer. + 5. Copy **`dark_mode.txt`** to the root of the USB drive. + 6. Safely eject the USB drive. + 7. Restart the NanoVNA-F V3. + + +The device will boot with the dark color scheme. + +## Disable dark mode + +Follow the same procedure, but change the content of `dark_mode.txt` to **`0`** (zero) and copy it to the device again. + +Alternatively, delete the `dark_mode.txt` file from the USB drive entirely. + + + + diff --git a/src/content/docs/how-to/display-traces/display-formats.mdx b/src/content/docs/how-to/display-traces/display-formats.mdx new file mode 100644 index 0000000..32978ac --- /dev/null +++ b/src/content/docs/how-to/display-traces/display-formats.mdx @@ -0,0 +1,70 @@ +--- +title: Display Formats +description: Choose the right measurement format for your needs +--- + +import { Aside, Steps, Tabs, TabItem } from '@astrojs/starlight/components'; +import formatLogmag from '../../../../assets/screenshots/format-logmag.png'; +import formatSmith from '../../../../assets/screenshots/format-smith.png'; + +The NanoVNA-F V3 offers 13 display formats. Each format presents the same underlying measurement data in a different way, suited to different analysis tasks. + +## Change the display format + + + 1. Activate the trace you want to change. + 2. Tap DISPLAY → FORMAT. + 3. Select the desired format from the list. + + +## Format reference + +### Magnitude and loss + +| Format | What it shows | When to use it | +|---|---|---| +| **LOGMAG** | Magnitude in dB (logarithmic) | Return loss, insertion loss, filter response -- the most common general-purpose format | +| **LINEAR** | Magnitude as a linear ratio (0 to 1) | Comparing voltage ratios directly | +| **SWR** | Standing wave ratio (1:1 and up) | Antenna matching -- quickly see how close to 50 ohm you are | + +LOGMAG display format showing return loss in dB + +### Phase and delay + +| Format | What it shows | When to use it | +|---|---|---| +| **PHASE** | Phase angle in degrees (-180 to +180) | Phase response of filters, transmission lines | +| **DELAY** | Group delay in seconds | Evaluating signal delay through a device or cable | + +### Impedance + +| Format | What it shows | When to use it | +|---|---|---| +| **SMITH R+jX** | Smith chart with resistance and reactance readout | Impedance matching, tuning networks | +| **SMITH R+L/C** | Smith chart with resistance and equivalent inductance or capacitance | Identifying reactive components at a given frequency | +| **RESISTANCE** | Real part of impedance (ohms) vs. frequency | Seeing resistive component on a Cartesian plot | +| **REACTANCE** | Imaginary part of impedance (ohms) vs. frequency | Seeing reactive component on a Cartesian plot | + +Smith chart display format showing impedance + +### Complex representation + +| Format | What it shows | When to use it | +|---|---|---| +| **POLAR** | Magnitude and phase on a polar plot | Visualizing reflection coefficient as a vector | +| **REAL** | Real part of the complex S-parameter | Advanced analysis of in-phase component | +| **IMAG** | Imaginary part of the complex S-parameter | Advanced analysis of quadrature component | + +### Quality + +| Format | What it shows | When to use it | +|---|---|---| +| **Q FACTOR** | Quality factor vs. frequency | Evaluating resonator or inductor quality | + + + + diff --git a/src/content/docs/how-to/display-traces/scale-reference.mdx b/src/content/docs/how-to/display-traces/scale-reference.mdx new file mode 100644 index 0000000..320c35a --- /dev/null +++ b/src/content/docs/how-to/display-traces/scale-reference.mdx @@ -0,0 +1,54 @@ +--- +title: Scale & Reference +description: Adjust scale and reference position for trace display +--- + +import { Aside, Steps } from '@astrojs/starlight/components'; +import scaleSetting from '../../../../assets/screenshots/scale-setting.png'; + +Adjusting the scale and reference position controls how zoomed-in your trace appears and where the reference line sits on screen. This lets you focus on the range of values that matters for your measurement. + +## Adjust the scale + + + 1. Activate the trace you want to adjust. + 2. Tap DISPLAY → SCALE. + 3. Enter the desired scale value (units per division). + 4. Tap **Ok** to confirm. + + +The scale value sets the vertical range per grid division. For example, in LOGMAG format a scale of 10 dB/div gives you 10 dB per horizontal grid line, while 5 dB/div zooms in for more detail. + +Scale setting screen with value entry + + + +## Set the reference position + +The reference position (REF POS) determines which grid line represents the reference value (typically 0 dB for LOGMAG, or 1.0 for SWR). + + + 1. Activate the trace you want to adjust. + 2. Tap DISPLAY → SCALE. + 3. Select **REF POS**. + 4. Enter the grid line number (0 = bottom, 9 = top). + 5. Tap **Ok** to confirm. + + +The default REF POS is **7** (the 7th line from the bottom), which places the reference value near the top of the screen. This works well for return loss measurements where most values are negative. + +## Common scale configurations + +| Measurement | Suggested scale | Suggested REF POS | +|---|---|---| +| Return loss (S11 LOGMAG) | 10 dB/div | 7 (reference at top) | +| Fine return loss detail | 5 dB/div | 7 | +| Insertion loss (S21 LOGMAG) | 10 dB/div | 7 | +| Bandpass filter detail | 1 dB/div | 5 (reference at center) | +| SWR overview | 1 SWR/div | 0 (reference at bottom) | + + diff --git a/src/content/docs/how-to/markers/marker-operations.mdx b/src/content/docs/how-to/markers/marker-operations.mdx new file mode 100644 index 0000000..3928541 --- /dev/null +++ b/src/content/docs/how-to/markers/marker-operations.mdx @@ -0,0 +1,73 @@ +--- +title: Marker Operations +description: Use markers to set frequency range boundaries +--- + +import { Aside, Steps } from '@astrojs/starlight/components'; +import markerSetFreq from '../../../../assets/screenshots/marker-set-freq.png'; + +Marker operations transfer the active marker's frequency into the sweep settings. This lets you quickly zoom in on a feature by using marker positions to define start, stop, center, or span values. + +## Set sweep start from a marker + + + 1. Move the marker to the desired lower frequency boundary. + 2. Tap MARKER → OPERATIONS → >START. + 3. The sweep start frequency updates to match the marker position. + + +## Set sweep stop from a marker + + + 1. Move the marker to the desired upper frequency boundary. + 2. Tap MARKER → OPERATIONS → >STOP. + 3. The sweep stop frequency updates to match the marker position. + + +## Set center frequency from a marker + + + 1. Position the marker on the feature you want to center on (e.g., a resonance dip). + 2. Tap MARKER → OPERATIONS → >CENTER. + 3. The sweep center frequency shifts to the marker position, keeping the current span. + + +## Set span from a marker + + + 1. Position the marker at the frequency that defines half the desired span. + 2. Tap MARKER → OPERATIONS → >SPAN. + 3. The sweep span adjusts based on the marker position. + + +## Set a marker to an exact frequency + + + 1. Select the marker. + 2. Tap MARKER → SET FREQ. + 3. Enter the frequency using the on-screen keypad. + 4. Tap **Ok** to confirm. + + +Frequency entry keypad for setting marker position + + + +## Typical workflow: zoom in on a feature + +A common use of marker operations is quickly zooming in on an area of interest: + + + 1. Run a wide sweep to identify the feature. + 2. Place **Marker 1** at the left edge of the region you want to examine. + 3. Tap MARKER → OPERATIONS → >START. + 4. Place **Marker 2** at the right edge. + 5. Tap MARKER → OPERATIONS → >STOP. + 6. The sweep now covers only the region between the two markers. + + + diff --git a/src/content/docs/how-to/markers/marker-search.mdx b/src/content/docs/how-to/markers/marker-search.mdx new file mode 100644 index 0000000..985044c --- /dev/null +++ b/src/content/docs/how-to/markers/marker-search.mdx @@ -0,0 +1,58 @@ +--- +title: Marker Search +description: Find peaks, valleys, and track measurements automatically +--- + +import { Aside, Steps } from '@astrojs/starlight/components'; +import markerSearch from '../../../../assets/screenshots/marker-search.png'; + +Marker search functions move the active marker to points of interest on the trace -- peaks, valleys, or adjacent features -- without manual positioning. + +Marker search menu showing search options + +## Find the maximum value + + + 1. Select the marker you want to use. + 2. Tap MARKER → SEARCH → MAXIMUM. + 3. The marker jumps to the highest point on the active trace. + + +This is useful for finding the peak response of a bandpass filter or the resonant frequency of an antenna. + +## Find the minimum value + + + 1. Select the marker you want to use. + 2. Tap MARKER → SEARCH → MINIMUM. + 3. The marker jumps to the lowest point on the active trace. + + +This works well for locating the deepest return loss notch or the stopband null of a filter. + +## Search left or right + +To find the next peak or valley relative to the current marker position: + +- **SEARCH <LEFT** -- searches toward lower frequencies from the marker +- **SEARCH >RIGHT** -- searches toward higher frequencies from the marker + +These are useful for stepping through multiple resonances or ripple peaks across a frequency span. + +## Enable tracking mode + + + 1. Select the marker. + 2. Tap MARKER → SEARCH → TRACKING. + 3. The marker now automatically follows the peak (or valley) on every sweep. + + +With tracking enabled, the marker continuously updates its position as the trace changes. This is particularly helpful when adjusting an antenna or tuning circuit in real time -- the marker stays locked to the feature you care about. + + + + diff --git a/src/content/docs/how-to/markers/using-markers.mdx b/src/content/docs/how-to/markers/using-markers.mdx new file mode 100644 index 0000000..cb148f8 --- /dev/null +++ b/src/content/docs/how-to/markers/using-markers.mdx @@ -0,0 +1,73 @@ +--- +title: Using Markers +description: Add, move, and read measurement markers +--- + +import { Aside, Steps, Tabs, TabItem } from '@astrojs/starlight/components'; +import markerOperations from '../../../../assets/screenshots/marker-operations.png'; + +Markers let you read exact measurement values at specific frequencies. The NanoVNA-F V3 supports four markers (1 through 4), each displayed as a numbered indicator on the active trace. + +Display with active markers showing measurement values + +## Activate a marker + + + + + 1. Tap MARKER → SELECT → MARKER n where **n** is 1, 2, 3, or 4. + 2. The marker appears on the trace at a default position. + + + + Tap the **marker number** in the marker table at the top of the screen to activate and select that marker. + + + Tap a **frequency value** in the marker information table to quickly select that marker for editing. + + + +## Move a marker + + + + After selecting a marker, tap anywhere on the trace area to jump the marker to that frequency. + + + Use the marker position controls under MARKER → POSITION: + + - **MOVE UP** -- shift the marker toward higher frequencies + - **CENTER** -- move the marker to the center frequency + - **MOVE DOWN** -- shift the marker toward lower frequencies + + + + 1. Select the marker. + 2. Tap MARKER → SET FREQ. + 3. Enter the desired frequency on the keypad. + 4. Tap **Ok** to confirm. + + + + + + +## Read marker values + +The **marker table** at the top of the screen shows each active marker's frequency and measured value. The value displayed depends on the format of the active trace (dB for LOGMAG, ohms for RESISTANCE, etc.). + +## Rearrange the marker table + +If the marker table overlaps important parts of the trace: + + + 1. Tap and hold on the **measured value area** of the marker table for about 0.5 seconds. + 2. Drag the table to a new position on screen. + + +## Turn off markers + +- To turn off a single marker: select it, then tap MARKER → SELECT → MARKER n again to toggle it off. +- To turn off all markers at once: tap MARKER → ALL OFF. diff --git a/src/content/docs/how-to/measurement-tools/cw-pulse.mdx b/src/content/docs/how-to/measurement-tools/cw-pulse.mdx new file mode 100644 index 0000000..4a16352 --- /dev/null +++ b/src/content/docs/how-to/measurement-tools/cw-pulse.mdx @@ -0,0 +1,33 @@ +--- +title: CW Pulse Mode +description: Configure pulsed signal output +--- + +import { Aside, Steps } from '@astrojs/starlight/components'; +import cwPulse from '../../../../assets/screenshots/cw-pulse.png'; + +CW Pulse mode configures the NanoVNA-F V3 to output a pulsed signal rather than a continuous wave. This is useful for testing pulse-sensitive circuits or generating a known pulse-modulated RF signal. + +CW Pulse configuration screen + +## Enable CW Pulse mode + + + 1. Tap STIMULUS → CW PULSE. + 2. Set the desired pulse frequency using the on-screen keypad. + 3. Tap **Ok** to confirm. + + +The output signal is a **pulse signal**, not a pure continuous wave. The pulse frequency you enter determines the repetition rate of the pulsed output. + + + +## Return to normal sweep + +Exit the CW Pulse screen to return to normal sweep operation. You can also tap STIMULUS → PAUSE SWEEP to toggle between paused and active sweep states. + + diff --git a/src/content/docs/how-to/measurement-tools/s-parameter-export.mdx b/src/content/docs/how-to/measurement-tools/s-parameter-export.mdx new file mode 100644 index 0000000..5ff8daf --- /dev/null +++ b/src/content/docs/how-to/measurement-tools/s-parameter-export.mdx @@ -0,0 +1,65 @@ +--- +title: S-Parameter Export +description: Save S1P and S2P files for use in other tools +--- + +import { Aside, Steps, Tabs, TabItem } from '@astrojs/starlight/components'; +import storageMenu from '../../../../assets/screenshots/storage-menu.png'; + +The NanoVNA-F V3 can export measurement data as standard Touchstone files (S1P and S2P) for use in simulation software, spreadsheets, or further analysis on a PC. + +Storage menu showing S1P, S2P, and LIST options + +## Save an S1P file (S11 only) + +S1P files contain single-port reflection data (S11). + + + 1. Complete your S11 measurement. + 2. Tap STORAGE → S1P. + 3. The file is saved to the device's internal storage. + + +## Save an S2P file (S11 + S21) + +S2P files contain both reflection (S11) and transmission (S21) data. + + + 1. Complete a measurement that includes both S11 and S21 data. + 2. Tap STORAGE → S2P. + 3. The file is saved to the device's internal storage. + + + + +## View stored files + +Tap STORAGE → LIST to see all saved files on the device. + +## Transfer files to a PC + + + 1. Connect the NanoVNA-F V3 to your computer via **USB-C**. + 2. Enter **U-disk mode**: power off the device, then hold the **middle button** while powering on. + 3. The device appears as a USB mass storage drive. + 4. Copy the `.s1p` or `.s2p` files from the drive to your computer. + 5. Safely eject the drive and restart the device. + + +## Using exported files + +Touchstone files are a widely supported standard. Common tools that accept S1P/S2P files: + +| Tool | Platform | Use case | +|---|---|---| +| NanoVNA-Saver | Windows, Linux, macOS | Re-plot and analyze VNA data | +| SimSmith | Windows, macOS | Smith chart impedance matching | +| QUCS / QucsStudio | Windows, Linux | Circuit simulation with measured data | +| MATLAB / Octave | Cross-platform | Custom data analysis and scripting | +| Spreadsheet (CSV import) | Any | Manual data inspection | + + diff --git a/src/content/docs/how-to/measurement-tools/signal-generator.mdx b/src/content/docs/how-to/measurement-tools/signal-generator.mdx new file mode 100644 index 0000000..42842bf --- /dev/null +++ b/src/content/docs/how-to/measurement-tools/signal-generator.mdx @@ -0,0 +1,52 @@ +--- +title: Signal Generator +description: Use the built-in signal generator for CW output +--- + +import { Aside, Steps } from '@astrojs/starlight/components'; +import signalGenerator from '../../../../assets/screenshots/signal-generator.png'; + +The NanoVNA-F V3 includes a built-in signal generator that outputs a continuous-wave (CW) signal from 1 MHz to 6000 MHz. This is useful for testing receivers, driving mixers, or verifying external measurement equipment. + +Signal generator menu showing frequency and power settings + +## Enable the signal generator + + + 1. Tap STIMULUS → SIGNAL GENERATOR. + 2. Tap **RF OUT** to toggle the output on. + 3. The signal is now present on the **RF OUT** SMA connector. + + +## Set the output frequency + + + 1. From the signal generator screen, tap **FREQ**. + 2. Enter the desired frequency using the on-screen keypad. + 3. Tap **Ok** to confirm. + + +The frequency range is **1 MHz to 6000 MHz**. + +## Adjust output power + + + 1. From the signal generator screen, select the power level. + 2. Available levels: **0 dB**, **-3 dB**, **-6 dB**, **-9 dB**. + + + + +## Turn off the signal generator + +Tap **RF OUT** again to toggle the output off. The signal generator screen remains visible but no signal is emitted. + + + + diff --git a/src/content/docs/how-to/measurement-tools/tdr-mode.mdx b/src/content/docs/how-to/measurement-tools/tdr-mode.mdx new file mode 100644 index 0000000..cbcbd13 --- /dev/null +++ b/src/content/docs/how-to/measurement-tools/tdr-mode.mdx @@ -0,0 +1,94 @@ +--- +title: TDR Mode +description: Measure cable length and find faults with Time Domain Reflectometry +--- + +import { Aside, Steps, Tabs, TabItem } from '@astrojs/starlight/components'; +import tdrMenu from '../../../../assets/screenshots/tdr-menu.png'; +import tdrLowpass from '../../../../assets/screenshots/tdr-lowpass.png'; +import tdrBandpass from '../../../../assets/screenshots/tdr-bandpass.png'; + +Time Domain Reflectometry (TDR) transforms frequency-domain S11 data into a time-domain view, letting you see reflections along a cable or transmission line as a function of distance. Use it to measure cable length, locate faults, or identify impedance discontinuities. + +TDR menu showing processing mode options + + + +## Enable TDR mode + + + 1. Connect the cable or device under test to **Port 1 (CH0)**. + 2. Ensure the active trace is on the **S11** channel. + 3. Tap DISPLAY → TDR. + 4. Select a processing mode (see below). + + +## Processing modes + + + + Shows reflections as sharp impulse spikes. Each discontinuity along the cable produces a distinct peak. Best for: + + - Locating connectors, splices, or damage + - Measuring distance to a specific fault + + TDR low pass impulse mode showing reflection spikes + + + Shows the impedance profile as a step function along the cable. The vertical axis represents impedance. Best for: + + - Identifying impedance changes along a transmission line + - Seeing the characteristic impedance of different cable sections + + + Uses only the measured frequency data without extrapolation. Produces a symmetric response. Best for: + + - Measurements where the low-frequency assumption is not valid + - Situations where you need the raw bandpass response + + TDR bandpass mode display + + + +## Set the window function + +The window function controls the trade-off between resolution and sidelobe suppression: + + + 1. From the TDR menu, tap **WINDOW**. + 2. Select one of three options: + - **MINIMUM** -- sharpest resolution, highest sidelobes + - **NORMAL** -- balanced (recommended for most use) + - **MAXIMUM** -- lowest sidelobes, reduced resolution + + +## Set the velocity factor + +The velocity factor accounts for the signal propagation speed in your cable, which is slower than the speed of light. Without the correct velocity factor, distance readings will be inaccurate. + + + 1. From the TDR menu, tap **VELOCITY FACTOR**. + 2. Enter the value as a **percentage** (e.g., enter **70** for a velocity factor of 0.70). + 3. Tap **Ok** to confirm. + + +### Common velocity factors + +| Cable type | Velocity factor | Enter as | +|---|---|---| +| RG-405 / Semi-rigid | 0.70 | 70 | +| RG-58 | 0.66 | 66 | +| RG-213 | 0.66 | 66 | +| RG-174 | 0.66 | 66 | +| LMR-400 | 0.85 | 85 | +| Air dielectric | 0.95--1.00 | 95--100 | + + + + diff --git a/src/content/docs/how-to/pc-software/console-commands.mdx b/src/content/docs/how-to/pc-software/console-commands.mdx new file mode 100644 index 0000000..55af371 --- /dev/null +++ b/src/content/docs/how-to/pc-software/console-commands.mdx @@ -0,0 +1,161 @@ +--- +title: Console Commands +description: Control the NanoVNA-F V3 via serial terminal +--- + +import { Aside, Steps } from '@astrojs/starlight/components'; +import consoleCommands from '../../../../assets/screenshots/console-commands.png'; + +Beyond the NanoVNA-Saver graphical interface, you can control the NanoVNA-F V3 directly through its serial console. This is useful for scripting automated measurements, debugging, or accessing low-level device functions. + +NanoVNA-F V3 console command session in PuTTY + +--- + +## Setting Up a Serial Connection + + + +1. **Connect the NanoVNA-F V3** to your PC via USB Type-C and power it on. + +2. **Open a serial terminal.** Common options: + - **Windows:** [PuTTY](https://www.chiark.greenend.org.uk/~sgtatham/putty/), [Tera Term](https://teratermproject.github.io/index-en.html) + - **Linux:** `minicom`, `screen`, `picocom` + - **macOS:** `screen`, `minicom` + +3. **Configure the connection:** + - **Port:** The COM port or device path for the NanoVNA-F V3 (e.g., `COM3` on Windows, `/dev/ttyACM0` on Linux) + - **Baud rate:** `115200` (the device is adaptive, but 115200 is the standard setting) + - **Data bits:** 8 + - **Stop bits:** 1 + - **Parity:** None + - **Flow control:** None + +4. **Press Enter** to get a command prompt. Type `help` to verify the connection is working. + + + +**Linux quick-connect example:** + +```bash +screen /dev/ttyACM0 115200 +``` + +```bash +picocom /dev/ttyACM0 -b 115200 +``` + + + +--- + +## Command Syntax + +Commands are plain ASCII text, terminated by a carriage return (`CR`, ASCII 013). Most terminals send CR when you press Enter. + +``` +command {required_parameter} [optional_parameter] +``` + +- Curly braces `{ }` indicate required parameters +- Square brackets `[ ]` indicate optional parameters +- Space characters between tokens are ignored +- Commands are case-sensitive (most are lowercase, but `SN`, `LCD_ID` are uppercase) + +--- + +## Most Useful Commands + +Here are the commands you will reach for most often. For the full list of all 28 commands with detailed parameter tables, see the [Console Command Reference](/reference/command-reference/). + +### Device Information + +| Command | What It Returns | +|---|---| +| `version` | Firmware version string | +| `info` | Hardware revision, firmware, build info | +| `SN` | Unique 16-bit serial number | + +### Sweep Control + +| Command | Example | Description | +|---|---|---| +| `sweep` | `sweep 100000000 500000000 201` | Set sweep: 100 MHz to 500 MHz, 201 points | +| `sweep start 50000000` | | Change only the start frequency to 50 MHz | +| `pause` | | Freeze the sweep | +| `resume` | | Continue sweeping | + +### Data Retrieval + +| Command | Example | Description | +|---|---|---| +| `frequencies` | | List all sweep point frequencies | +| `data 0` | | Get S11 complex data (real + imaginary) | +| `data 1` | | Get S21 complex data | +| `scan 1000000 6000000000 101 7` | | Sweep 1 MHz to 6 GHz, 101 points, output all data | + +### Calibration + +| Command | Description | +|---|---| +| `cal` | Show current calibration status | +| `cal open` | Perform open calibration step | +| `cal short` | Perform short calibration step | +| `cal load` | Perform load calibration step | +| `cal thru` | Perform through calibration step | +| `cal done` | Compute calibration coefficients | +| `save 0` | Save to slot 0 | +| `recall 0` | Recall from slot 0 | + +### Trace and Marker Control + +``` +trace 0 logmag # Set trace 0 to log magnitude +trace 0 scale 10 # Set 10 dB per division +marker 1 on # Enable marker 1 +marker 1 200 # Move marker 1 to sweep point 200 +``` + +--- + +## Scripting Example + +You can pipe commands to the device from a shell script for automated measurements. Here is a minimal Python example: + +```python +import serial +import time + +ser = serial.Serial('/dev/ttyACM0', 115200, timeout=2) +time.sleep(0.5) + +# Set sweep range +ser.write(b'sweep 430000000 440000000 201\r') +time.sleep(0.1) + +# Wait for sweep to complete +time.sleep(3) + +# Read S11 data +ser.write(b'data 0\r') +time.sleep(0.5) +response = ser.read(ser.in_waiting).decode('ascii') +print(response) + +ser.close() +``` + + + +--- + +## Tips + +- **One connection at a time.** If NanoVNA-Saver is connected, close it before opening a serial terminal, and vice versa. +- **The `reset` command drops USB.** After sending `reset`, you must reconnect your terminal session. +- **Use `cal reset` before recalibrating via console.** This clears the previous calibration state. +- **Save your work.** Console-issued calibrations are volatile until you run `save [slot]`. diff --git a/src/content/docs/how-to/pc-software/usb-connection.mdx b/src/content/docs/how-to/pc-software/usb-connection.mdx new file mode 100644 index 0000000..2dfd38d --- /dev/null +++ b/src/content/docs/how-to/pc-software/usb-connection.mdx @@ -0,0 +1,114 @@ +--- +title: USB Connection +description: Connect the NanoVNA-F V3 to PC software +--- + +import { Aside, Steps } from '@astrojs/starlight/components'; +import pcSoftware1 from '../../../../assets/screenshots/pc-software-1.png'; +import pcSoftware2 from '../../../../assets/screenshots/pc-software-2.png'; +import pcSoftware3 from '../../../../assets/screenshots/pc-software-3.png'; + +The NanoVNA-F V3 connects to a PC over USB Type-C, appearing as a virtual COM port. The recommended PC software is **NanoVNA-Saver**, which provides a full graphical interface for remote control, data logging, and screenshot capture. + +--- + +## Download NanoVNA-Saver + +| Platform | Source | +|---|---| +| **Windows** (SYSJOINT build) | [Nanovna-Saver-0.3.12-by-SYSJOINT.exe](http://www.sysjoint.com/file/Nanovna-Saver-0.3.12-by-SYSJOINT.exe) | +| **Windows / Linux / macOS** (community) | [NanoVNA-Saver GitHub Releases](https://github.com/NanoVNA-Saver/nanovna-saver/releases) | + + + +--- + +## Driver Requirements + +| Operating System | Driver Needed | +|---|---| +| **Windows 10 / 11** | No driver required -- plug and play | +| **Windows 8 and earlier** | Install the STM32 Virtual COM Port driver from [ST STSW-STM32102](https://www.st.com/en/development-tools/stsw-stm32102.html) | +| **Linux** | No driver required -- the `cdc_acm` kernel module handles it automatically | +| **macOS** | No driver required on modern macOS versions | + + + +--- + +## Connecting to NanoVNA-Saver + + + +1. **Power on the NanoVNA-F V3** and connect it to your PC with a USB Type-C cable. + +2. **Launch NanoVNA-Saver.** On Windows, double-click `nanovna-saver.exe`. On Linux/macOS, run the application from the extracted release or installed package. + +3. **Select the COM port.** The NanoVNA-F V3 appears as a serial device. On Windows this is typically `COM3` or similar; on Linux it appears as `/dev/ttyACM0`. + +4. **Click "Connect to Device."** NanoVNA-Saver reads the device information and begins displaying live sweep data. + + + +NanoVNA-Saver main window connected to NanoVNA-F V3 + +Once connected, NanoVNA-Saver provides: + +- Live S11 and S21 traces with multiple display formats +- Marker placement and readout +- Sweep frequency range control +- Calibration management +- Data export (Touchstone S1P/S2P, CSV, screenshots) + +NanoVNA-Saver sweep display + +--- + +## Taking Screenshots via PC Software + +NanoVNA-Saver can capture the NanoVNA-F V3's screen display as an image. + + + +1. With the device connected, click **Manage** to open the Device Settings dialog. + +2. Click the **Screenshot** button. The capture takes approximately 5 seconds as pixel data transfers over USB. + +3. Once the screenshot appears, right-click the image area and select **Save Image** to export it as a PNG file. + + + +NanoVNA-Saver screenshot capture dialog + + + +--- + +## Troubleshooting + +**Device not detected:** +- Try a different USB cable -- some cables are charge-only and lack data lines +- On Windows 8 or earlier, install the STM32 Virtual COM Port driver +- Disconnect and reconnect the USB cable +- Restart the NanoVNA-F V3 + +**COM port appears but connection fails:** +- Close any other program that may be using the same COM port (serial terminals, other VNA software) +- Only one application can use the serial port at a time + +**Connection drops intermittently:** +- Use a shorter, higher-quality USB cable +- Avoid USB hubs -- connect directly to a port on the PC +- Check that the USB Type-C connector is fully seated diff --git a/src/content/docs/index.mdx b/src/content/docs/index.mdx new file mode 100644 index 0000000..f5c6665 --- /dev/null +++ b/src/content/docs/index.mdx @@ -0,0 +1,120 @@ +--- +title: NanoVNA-F V3 Documentation +description: Portable vector network analyzer — 1 MHz to 6 GHz +template: splash +hero: + tagline: Measure antennas, filters, cables, and impedance from 1 MHz to 6 GHz — with a rugged, pocket-sized analyzer. + image: + file: ../../assets/logo.svg + actions: + - text: Quick Start Guide + link: /getting-started/quick-start/ + icon: right-arrow + - text: What is NanoVNA-F V3? + link: /getting-started/overview/ + variant: minimal +--- + +import { Card, CardGrid, LinkCard } from '@astrojs/starlight/components'; +import frontView from '../../assets/screenshots/front-view.png'; + +
+ NanoVNA-F V3 portable vector network analyzer +
NanoVNA-F V3 — 1 MHz to 6 GHz portable VNA with 4.3-inch IPS display
+
+ +
+
+ 1 MHz - 6 GHz + Frequency Range +
+
+ 65 dB + Dynamic Range +
+
+ 4.3" IPS + Display +
+
+ 4500 mAh + Battery +
+
+ 801 pts + Sweep Points +
+
+ 200 pts/s + Sweep Speed +
+
+ +## Who Is This For? + +
+
+ Ham Radio Operators +

Antenna Testing and Tuning

+

Check SWR, impedance, and resonant frequency of your antennas from HF through SHF. Tune matching networks in the field with real-time Smith chart display.

+ +
+
+ RF Engineers and Hobbyists +

Component and Cable Characterization

+

Measure filters, amplifiers, attenuators, cables, and passive networks. Export S-parameter data for simulation, use TDR for cable fault location, and automate measurements via console commands.

+ +
+
+ +## Documentation Sections + + + +## Popular Pages + + + + + + + + + diff --git a/src/content/docs/reference/calibration-codes.mdx b/src/content/docs/reference/calibration-codes.mdx new file mode 100644 index 0000000..03dd0b2 --- /dev/null +++ b/src/content/docs/reference/calibration-codes.mdx @@ -0,0 +1,92 @@ +--- +title: Calibration Status Codes +description: Understanding the calibration indicators on the main screen +--- + +import { Aside } from '@astrojs/starlight/components'; + +The calibration status indicator appears at the bottom of the NanoVNA-F V3 main screen (region 4). It uses a compact string of letters and symbols to communicate the current calibration state at a glance. + +--- + +## Status Code Reference + +| Code | Meaning | Description | +|---|---|---| +| **O** | OPEN done | The open calibration standard has been measured | +| **S** | SHORT done | The short calibration standard has been measured | +| **L** | LOAD done | The 50-ohm load calibration standard has been measured | +| **T** | THRU done | The through calibration between PORT1 and PORT2 has been measured | +| **C** | Calibrated | Calibration coefficients have been computed (you tapped DONE) | +| **\*** | Not saved | Calibration data exists in memory but has not been saved to a storage slot -- it will be lost on power-off | +| **c** | Interpolated | The current sweep range differs from the calibrated range, so the device is using interpolated calibration data | +| **Cn** | Slot number | Calibration data is loaded from storage slot _n_ (where _n_ is 0 through 12) | + +--- + +## Reading the Status String + +The codes appear together as a combined string. Here are common examples and how to interpret them: + +### During Calibration + +| Display | Meaning | +|---|---| +| `O` | Only the open standard has been measured so far | +| `OS` | Open and short standards measured | +| `OSL` | Open, short, and load measured -- ready for THRU if S21 calibration is needed | +| `OSLT` | All four standards measured -- tap DONE to compute coefficients | + +### After Calibration + +| Display | Meaning | +|---|---| +| `OSLT C*` | Calibration is complete but not saved. Power-off will discard it. | +| `C0` | Device is using calibration data from slot 0 | +| `C5` | Device is using calibration data from slot 5 | +| `c0` | Calibration from slot 0 is being interpolated to the current frequency range | +| `c3` | Calibration from slot 3 is being interpolated | + + + +--- + +## When Interpolation Occurs + +The lowercase `c` appears when the current sweep start/stop frequencies or point count differ from the settings that were active when the calibration was performed. The device interpolates the stored calibration data to estimate correction values at the new frequencies. + +Interpolated calibration is less accurate than a native calibration at the exact sweep settings. For best results: + +1. Set your desired frequency range **before** calibrating +2. Avoid changing the sweep range after calibration +3. If you must change the range, recalibrate at the new settings + + + +--- + +## No Calibration Status + +If no calibration status string is visible at the bottom of the screen, it means: + +- No calibration data is loaded, **or** +- Calibration has been explicitly disabled via **CAL > APPLY** (toggled off) + +In either case, measurements are uncorrected and should be treated as approximate. + +--- + +## Checking Calibration via Console + +You can also query the calibration status from a serial terminal: + +``` +cal +``` + +This returns the same status string shown on the display, along with additional calibration details. diff --git a/src/content/docs/reference/charging-leds.mdx b/src/content/docs/reference/charging-leds.mdx new file mode 100644 index 0000000..4d3088e --- /dev/null +++ b/src/content/docs/reference/charging-leds.mdx @@ -0,0 +1,83 @@ +--- +title: Charging & LED Indicators +description: LED behavior during charging and operation +--- + +import { Aside } from '@astrojs/starlight/components'; + +The NanoVNA-F V3 has two indicator LEDs -- one red and one blue -- located on the top edge of the device. Their behavior communicates the current charging and power state without needing to check the on-screen battery voltage. + +--- + +## LED State Reference + +| Device State | RED LED | BLUE LED | +|---|---|---| +| Fully charged (USB connected) | OFF | ON (steady) | +| Normal operation (no USB) | OFF | OFF | +| Low battery warning | OFF | ON (steady) | +| Charging (device off) | ON (steady) | FLASH | +| Charging while operating | FLASH | OFF | + +--- + +## Understanding Each State + +### Fully Charged + +When the battery is fully charged and the USB cable is still connected, the blue LED remains on steadily and the red LED is off. You can safely disconnect the USB cable or continue operating. + +### Normal Operation + +During normal battery-powered operation (no USB connected), both LEDs are off. Check the on-screen battery voltage display (region 8) for remaining charge. + +### Low Battery + +When the battery voltage drops to a low level, the blue LED turns on steadily as a warning. The red LED remains off. Charge the device soon to avoid data loss from unexpected shutdown. + + + +### Charging (Device Off) + +When the device is powered off and connected to USB for charging, the red LED is on steadily and the blue LED flashes. This is the normal charging indication. + +### Charging While Operating + +When you continue using the device while it charges over USB, the red LED flashes and the blue LED is off. The device is simultaneously drawing power for operation and charging the battery. + +--- + +## Charging Guidelines + +| Parameter | Value | +|---|---| +| Charging interface | USB Type-C | +| Charging voltage | 4.7 V to 5.5 V | +| Battery capacity | 4500 mAh (3.7 V lithium-ion) | +| Typical battery life | Up to 5 hours | +| Full charge voltage | Approximately 4.2 V | +| Low battery threshold | Below 3.3 V | + + + +--- + +## Troubleshooting + +**LEDs do not light up at all during charging:** +- Verify the USB cable is properly seated in the Type-C port +- Try a different USB cable or power source +- Ensure the power source provides at least 4.7 V + +**Device will not power on:** +- If the battery is deeply discharged, connect USB power and wait several minutes before attempting to power on +- The device can operate while charging if the battery is too low to start on its own + +**Battery life is shorter than expected:** +- Higher brightness settings consume more power -- reduce to 60% or 40% for field work +- Continuous sweeping with maximum points (801) uses more power than lower point counts +- Cold temperatures reduce effective battery capacity diff --git a/src/content/docs/reference/command-reference.mdx b/src/content/docs/reference/command-reference.mdx new file mode 100644 index 0000000..58400d1 --- /dev/null +++ b/src/content/docs/reference/command-reference.mdx @@ -0,0 +1,539 @@ +--- +title: Console Command Reference +description: Complete reference for all 28 serial console commands +--- + +import { Aside } from '@astrojs/starlight/components'; +import CommandTable from '../../../components/CommandTable.astro'; +import consoleCommands from '../../../assets/screenshots/console-commands.png'; + +The NanoVNA-F V3 accepts 28 ASCII commands over its USB serial interface. Commands can be sent from any serial terminal (PuTTY, screen, minicom) or programmatically from scripts. + +For connection setup, see the [Console Commands how-to guide](/how-to/pc-software/console-commands/). + +Console command output on the NanoVNA-F V3 + +--- + +## Command Summary + + + +--- + +## Detailed Command Reference + +### help + +Lists all registered commands. + +``` +help +``` + +No parameters. Returns the full command list with brief descriptions. + +--- + +### reset + +Resets the device. The USB connection will drop, so you must reconnect your serial terminal afterward. + +``` +reset +``` + + + +--- + +### cwfreq + +Sets the CW pulse frequency. In this mode PORT1 outputs a pulsed signal, not a continuous wave. + +``` +cwfreq {frequency_hz} +``` + +**Parameters:** + +| Parameter | Required | Description | +|---|---|---| +| `frequency_hz` | Yes | Frequency in Hz | + +**Example:** +``` +cwfreq 450000000 +``` +Sets the CW pulse frequency to 450 MHz. + +--- + +### saveconfig + +Saves language setting and touchscreen calibration data to persistent storage. + +``` +saveconfig +``` + + + +--- + +### clearconfig + +Restores the device to factory settings. Requires the safety parameter `1234`. + +``` +clearconfig 1234 +``` + + + +--- + +### data + +Returns complex measurement data (real and imaginary parts) for each sweep point. + +``` +data [0|1] +``` + +**Parameters:** + +| Parameter | Required | Default | Description | +|---|---|---|---| +| `0` or `1` | No | `0` | `0` = S11 data, `1` = S21 data | + +Output is one line per sweep point, each containing a real and imaginary floating-point value separated by a space. + +--- + +### frequencies + +Returns the frequency of each sweep point, one per line, in Hz. + +``` +frequencies +``` + +Useful for correlating `data` output with specific frequencies. + +--- + +### scan + +Performs a sweep with the given parameters and outputs measurement data according to the output mask. + +``` +scan {start_hz} {stop_hz} [points] [outmask] +``` + +**Parameters:** + +| Parameter | Required | Default | Description | +|---|---|---|---| +| `start_hz` | Yes | -- | Start frequency in Hz | +| `stop_hz` | Yes | -- | Stop frequency in Hz | +| `points` | No | Current | Number of sweep points | +| `outmask` | No | `0` | Bitmask controlling output (see table) | + +**Output mask values:** + +| Mask | Output Fields | +|---|---| +| `0` | No data output (sweep only) | +| `1` | Frequency | +| `2` | S11 data | +| `3` | Frequency + S11 | +| `4` | S21 data | +| `5` | Frequency + S21 | +| `6` | S11 + S21 | +| `7` | Frequency + S11 + S21 | + +**Example:** +``` +scan 200000000 500000000 11 7 +``` +Sweeps 200 MHz to 500 MHz with 11 points, outputting frequency, S11, and S21 data. + +--- + +### sweep + +Sets sweep parameters without triggering an immediate data output. Two usage forms are available. + +**Form 1: Set start, stop, and points directly** +``` +sweep [start_hz] [stop_hz] [points] +``` + +**Form 2: Set a single parameter by name** +``` +sweep [start|stop|span|center|cw|points] [value] +``` + +**Examples:** +``` +sweep 200000000 500000000 78 +sweep start 200000000 +sweep center 350000000 +sweep points 201 +``` + +When called with no arguments, `sweep` returns the current sweep configuration. + +--- + +### touchcal + +Initiates touchscreen calibration. A crosshair appears that you must tap accurately (use a stylus). + +``` +touchcal +``` + + + +--- + +### touchtest + +Enters touchscreen test mode. Touch anywhere to verify coordinates are reported correctly. Press any physical button to exit. + +``` +touchtest +``` + +--- + +### pause + +Pauses the sweep. The display freezes at the last completed sweep. + +``` +pause +``` + +--- + +### resume + +Resumes the sweep after a `pause` command. + +``` +resume +``` + +--- + +### cal + +Manages calibration via the console. When called without parameters, returns the current calibration status string. + +``` +cal [load|open|short|thru|done|reset|on|off] +``` + +**Parameters:** + +| Parameter | Description | +|---|---| +| *(none)* | Print current calibration status | +| `open` | Perform open calibration | +| `short` | Perform short calibration | +| `load` | Perform load calibration | +| `thru` | Perform through calibration | +| `done` | Finalize calibration (compute coefficients) | +| `reset` | Clear calibration data from memory | +| `on` | Apply calibration correction | +| `off` | Remove calibration correction | + +**Calibration sequence:** +``` +cal reset +cal open +cal short +cal load +cal thru +cal done +save 0 +``` + + + +--- + +### save + +Saves calibration data, trace settings, and marker table position to a storage slot. + +``` +save [id] +``` + +**Parameters:** + +| Parameter | Required | Description | +|---|---|---| +| `id` | No | Slot number, 0 through 6 | + +--- + +### recall + +Recalls a previously saved state from a storage slot. + +``` +recall [id] +``` + +**Parameters:** + +| Parameter | Required | Description | +|---|---|---| +| `id` | No | Slot number, 0 through 6 | + +--- + +### trace + +Views or modifies trace attributes. When called with no arguments, returns the attributes of all active traces. + +``` +trace [0|1|2|3|all] [{format}|scale|refpos|channel|off] [value] +``` + +**Format values:** `logmag`, `phase`, `delay`, `smith`, `smithrlc`, `swr`, `polar`, `linear`, `real`, `imag`, `resistance`, `reactance`, `qfactor` + +**Examples:** +``` +trace # Show all trace attributes +trace 0 # Show trace 0 attributes +trace 0 swr # Set trace 0 format to SWR +trace all off # Turn off all traces +trace 0 scale 15 # Set trace 0 scale to 15 dB/div +trace 1 refpos 5 # Set trace 1 reference position to 5 +trace 0 channel 1 # Set trace 0 to S21 (0=S11, 1=S21) +``` + +--- + +### marker + +Views or modifies marker attributes. When called with no arguments, returns the attributes of all active markers. + +``` +marker [1|2|3|4] [on|off|{index}] +``` + +**Parameters:** + +| Parameter | Description | +|---|---| +| `1-4` | Marker number | +| `on` | Enable the marker | +| `off` | Disable the marker | +| `{index}` | Move marker to the given sweep point index | + +**Examples:** +``` +marker # Show all marker attributes +marker 1 # Show marker 1 attributes +marker 1 off # Turn off marker 1 +marker 1 56 # Move marker 1 to sweep point 56 +``` + +--- + +### edelay + +Sets the electrical delay compensation in nanoseconds. Used to de-embed cable or connector delay from phase measurements. + +``` +edelay [value] +``` + +**Example:** +``` +edelay -0.1 +``` +Sets the delay to -0.1 ns (-100 ps). + +--- + +### pwm + +Adjusts the LCD backlight brightness. + +``` +pwm {0.0-1.0} +``` + +**Parameters:** + +| Parameter | Required | Description | +|---|---|---| +| brightness | Yes | 0.0 (off) to 1.0 (full brightness) | + +**Example:** +``` +pwm 0.85 +``` +Sets brightness to 85%. + +--- + +### beep + +Tests the buzzer. + +``` +beep on/off +``` + +--- + +### lcd + +Draws a filled rectangle on the LCD screen. Useful for testing or custom display overlays. + +``` +lcd {X} {Y} {WIDTH} {HEIGHT} {color} +``` + +**Parameters:** + +| Parameter | Description | +|---|---| +| X | Horizontal position (pixels from left) | +| Y | Vertical position (pixels from top) | +| WIDTH | Rectangle width in pixels | +| HEIGHT | Rectangle height in pixels | +| color | 16-bit RGB color in hexadecimal (RGB565 format) | + +**Example:** +``` +lcd 100 100 50 50 F800 +``` +Draws a red 50x50 square at position (100, 100). `F800` is pure red in RGB565. + +**Common RGB565 colors:** + +| Color | Hex Value | +|---|---| +| Red | `F800` | +| Green | `07E0` | +| Blue | `001F` | +| White | `FFFF` | +| Black | `0000` | +| Yellow | `FFE0` | + +--- + +### capture + +Transmits a full screenshot as raw pixel data. Data is hexadecimal, little-endian, 16 bits per pixel, at 800 x 480 resolution. + +``` +capture +``` + + + +--- + +### version + +Returns the firmware version string. + +``` +version +``` + +--- + +### info + +Returns device information including hardware revision, firmware version, and build details. + +``` +info +``` + +--- + +### SN + +Returns the unique 16-bit serial number assigned to the device. + +``` +SN +``` + + + +--- + +### resolution + +Returns the LCD resolution (800 x 480 for the NanoVNA-F V3). + +``` +resolution +``` + +--- + +### LCD_ID + +Returns the LCD controller identification string. + +``` +LCD_ID +``` diff --git a/src/content/docs/reference/specifications.mdx b/src/content/docs/reference/specifications.mdx new file mode 100644 index 0000000..8512865 --- /dev/null +++ b/src/content/docs/reference/specifications.mdx @@ -0,0 +1,107 @@ +--- +title: Specifications +description: Complete technical specifications for the NanoVNA-F V3 +--- + +import { Aside } from '@astrojs/starlight/components'; +import SpecCard from '../../../components/SpecCard.astro'; +import frontView from '../../../assets/screenshots/front-view.png'; + + + +--- + +## Full Specifications + +### RF Performance + +| Parameter | Specification | Conditions | +|---|---|---| +| Frequency range | 1 MHz to 6 GHz | | +| RF output power | -10 dBm (max) | | +| Frequency accuracy | < +/-1 ppm | | +| S21 dynamic range | 65 dB | Below 3 GHz | +| | 60 dB | Above 3 GHz | +| S11 dynamic range | 50 dB | Below 3 GHz | +| | 40 dB | Above 3 GHz | +| Sweep points | 11 to 801 | Configurable | +| Sweep speed | 200 points/s | | + +### Measurement Capabilities + +| Parameter | Specification | +|---|---| +| S-parameters | S11 (reflection), S21 (transmission) | +| Traces | 4 simultaneous | +| Markers | 4 simultaneous | +| Calibration slots | 13 (slots 0 through 12) | +| Display formats | LOGMAG, PHASE, DELAY, SMITH R+jX, SMITH R+L/C, SWR, Q FACTOR, POLAR, LINEAR, REAL, IMAG, RESISTANCE, REACTANCE | +| TDR modes | Low-pass impulse, Low-pass step, Bandpass | +| Signal generator | 1 MHz to 6 GHz CW, 0/-3/-6/-9 dB attenuation | + +### Display + +| Parameter | Specification | +|---|---| +| Screen size | 4.3 inches (diagonal) | +| Display type | High-brightness IPS LCD | +| Resolution | 800 x 480 pixels | +| Touch panel | Resistive (RTP) | +| Brightness | 5 levels (100%, 80%, 60%, 40%, 20%) | + +### Power + +| Parameter | Specification | +|---|---| +| Battery type | Lithium-ion | +| Battery voltage | 3.7 V nominal | +| Battery capacity | 4500 mAh | +| Battery life | Up to 5 hours | +| Charging interface | USB Type-C | +| Charging voltage | 4.7 V to 5.5 V | +| USB power output | USB-A, 5 V / 1 A | + + + +### Physical + +| Parameter | Specification | +|---|---| +| Dimensions | 130 mm x 75 mm x 22 mm | +| Shell material | Aluminum alloy | +| RF connectors | SMA (2 ports: PORT1 and PORT2) | +| Operating temperature | 0 C to 45 C | + +### Connectivity + +| Parameter | Specification | +|---|---| +| Data / charging port | USB Type-C | +| Serial console | Via USB CDC, adaptive baud rate (typically 115200) | +| Virtual U-disk mode | USB mass storage for firmware update and file transfer | +| PC software | NanoVNA-Saver (Windows, Linux, macOS) | +| Export formats | Touchstone S1P, S2P | + +--- + +## Included Accessories + +The NanoVNA-F V3 ships with: + +- SMA calibration kit (Open, Short, Load standards) +- 2 x 20 cm SMA-JJ RG405 coaxial cables +- USB Type-C cable +- Protective carrying case + + diff --git a/src/content/docs/reference/user-interface/keyboard.mdx b/src/content/docs/reference/user-interface/keyboard.mdx new file mode 100644 index 0000000..20b421e --- /dev/null +++ b/src/content/docs/reference/user-interface/keyboard.mdx @@ -0,0 +1,88 @@ +--- +title: Virtual Keyboard +description: Using the on-screen keyboard for frequency and value entry +--- + +import { Aside, Steps } from '@astrojs/starlight/components'; +import keyboardScreen from '../../../../assets/screenshots/keyboard-screen.png'; + +Whenever the NanoVNA-F V3 needs a numeric value -- frequency, scale, reference position, velocity factor -- the virtual keyboard appears. Understanding its layout and unit keys lets you enter values quickly without counting zeros. + +NanoVNA-F V3 virtual keyboard screen + +--- + +## Keyboard Layout + +The keyboard is a 4-by-4 grid with numeric keys, a decimal point, a backspace arrow, and four terminator keys: + +| | Col 1 | Col 2 | Col 3 | Col 4 | +|---|---|---|---|---| +| **Row 1** | `7` | `8` | `9` | `G` | +| **Row 2** | `4` | `5` | `6` | `M` | +| **Row 3** | `1` | `2` | `3` | `k` | +| **Row 4** | `0` | `.` | Backspace | `Ok` | + +--- + +## Key Functions + +### Numeric Keys (0-9) and Decimal Point + +Standard digit entry. The decimal point (`.`) inserts a fractional separator. Only one decimal point is accepted per entry. + +### Backspace + +Deletes the last character from the input field. When the input field is empty, pressing backspace closes the keyboard and cancels the entry. + +### Unit / Terminator Keys + +These keys serve a dual purpose: they multiply the entered value by a unit factor **and** immediately submit the result. You do not need to press `Ok` after a unit key. + +| Key | Multiplier | Typical Use | +|---|---|---| +| **G** | x 1,000,000,000 | GHz (gigahertz) | +| **M** | x 1,000,000 | MHz (megahertz) | +| **k** | x 1,000 | kHz (kilohertz) | +| **Ok** | x 1 | Enter value as-is (Hz, dB, %, etc.) | + + + +--- + +## Entry Examples + +### Frequency Entry + +| Target Frequency | Keystrokes | What Happens | +|---|---|---| +| 100 kHz | `1` `0` `0` `k` | 100 x 1,000 = 100,000 Hz | +| 433.92 MHz | `4` `3` `3` `.` `9` `2` `M` | 433.92 x 1,000,000 = 433,920,000 Hz | +| 2.4 GHz | `2` `.` `4` `G` | 2.4 x 1,000,000,000 = 2,400,000,000 Hz | +| 1 MHz | `1` `M` | 1 x 1,000,000 = 1,000,000 Hz | +| 50 MHz (long form) | `5` `0` `0` `0` `0` `0` `0` `0` `Ok` | 50,000,000 Hz entered directly | + +### Non-Frequency Entry + +| Target Value | Context | Keystrokes | +|---|---|---| +| Scale 15 dB/div | DISPLAY > SCALE | `1` `5` `Ok` | +| Ref pos 5 | DISPLAY > REF POS | `5` `Ok` | +| Velocity factor 70% | TDR > VELOCITY FACTOR | `7` `0` `Ok` | +| E-delay -0.1 ns | CONFIG > E-DELAY | `-` `0` `.` `1` `Ok` | + + + +--- + +## Tips + +- **Leading zeros are optional.** Entering `.5G` is equivalent to `0.5G` and sets 500 MHz. +- **Cancel entry** by pressing backspace until the input field is empty, then pressing backspace once more. +- **The keyboard closes automatically** after any terminator key (`G`, `M`, `k`, `Ok`) is pressed. +- **Negative values** are supported for some parameters (e.g., electrical delay). A minus sign (`-`) may appear as a separate key when the context requires it. +- **No confirmation dialog** -- the value is applied immediately when you press a terminator key. Double-check the display after entry. diff --git a/src/content/docs/reference/user-interface/menu-map.mdx b/src/content/docs/reference/user-interface/menu-map.mdx new file mode 100644 index 0000000..89e8db2 --- /dev/null +++ b/src/content/docs/reference/user-interface/menu-map.mdx @@ -0,0 +1,318 @@ +--- +title: Menu Map +description: Complete menu hierarchy of the NanoVNA-F V3 +--- + +import { Aside } from '@astrojs/starlight/components'; +import MenuTree from '../../../../components/MenuTree.astro'; +import menuMapFull from '../../../../assets/screenshots/menu-map-full.png'; + +The NanoVNA-F V3 organizes all functions into eight top-level menus, accessed by tapping the right-hand touch area or pressing the middle button. Each menu branches into submenus up to three levels deep. + +NanoVNA-F V3 complete menu structure map + +