[READ-ONLY] a fast, modern browser for the npm registry

docs: init docs site (#190)

authored by

Devon Wells and committed by
GitHub
b6cbebc7 94b35c2c

+4968 -37
+2
.oxfmtignore
··· 1 + # Docus MDC content - formatter breaks component syntax 2 + docs/content/**/*.md
+5
docs/.gitignore
··· 1 + node_modules 2 + .nuxt 3 + .output 4 + .data 5 + dist
+14
docs/app/app.config.ts
··· 1 + export default defineAppConfig({ 2 + docus: { 3 + name: 'npmx.dev', 4 + description: 'A fast, modern browser for the npm registry', 5 + url: 'https://docs.npmx.dev', 6 + socials: { 7 + github: 'npmx-dev/npmx.dev', 8 + x: '@npmx_dev', 9 + }, 10 + }, 11 + llms: { 12 + domain: 'https://docs.npmx.dev', 13 + }, 14 + })
+2
docs/content/1.getting-started/.navigation.yml
··· 1 + title: Getting Started 2 + icon: i-lucide-rocket
+33
docs/content/1.getting-started/1.introduction.md
··· 1 + --- 2 + title: Introduction 3 + description: Learn what npmx.dev is and why you should use it 4 + navigation: 5 + icon: i-lucide-house 6 + --- 7 + 8 + npmx.dev provides a better way to browse the npm registry. 9 + 10 + ## What is npmx.dev? 11 + 12 + npmx.dev is a fast, modern browser for the npm registry. It doesn't aim to replace [npmjs.com](https://www.npmjs.com/), but provides a better UI and developer experience for browsing packages, viewing documentation, and exploring code. 13 + 14 + ## What you can do 15 + 16 + - **Search packages** - Quick package search with instant results and infinite scroll 17 + - **Browse source code** - View package source code with syntax highlighting 18 + - **Check security** - See vulnerability warnings and provenance indicators 19 + - **Use familiar URLs** - Replace npmjs.com with npmx.dev in any URL 20 + 21 + ## When to use npmx.dev 22 + 23 + Use npmx.dev when you want to: 24 + 25 + - Quickly find and evaluate npm packages 26 + - Browse package source code without downloading 27 + - Check package security and provenance 28 + - View package metadata in a clean, dark-mode interface 29 + - Navigate with keyboard shortcuts 30 + 31 + ::note 32 + This documentation includes AI integration with MCP server (`/mcp`) and automatic `llms.txt` generation. 33 + ::
+48
docs/content/1.getting-started/2.quick-start.md
··· 1 + --- 2 + title: Quick Start 3 + description: Start using npmx.dev in seconds 4 + navigation: 5 + icon: i-lucide-zap 6 + --- 7 + 8 + npmx.dev works in your browser with no installation required. 9 + 10 + ## Open npmx.dev 11 + 12 + Visit [npmx.dev](https://npmx.dev) to start browsing packages. 13 + 14 + ## Search for a package 15 + 16 + 1. Press `/` to focus the search bar (or click it) 17 + 2. Type a package name 18 + 3. Use arrow keys to navigate results 19 + 4. Press `Enter` to view the package 20 + 21 + ## View package details 22 + 23 + Each package page shows: 24 + 25 + - **README** - Package documentation 26 + - **Versions** - All published versions with release dates 27 + - **Dependencies** - Required packages with version ranges 28 + - **Metadata** - License, repository, maintainers, and more 29 + 30 + ## Browse source code 31 + 32 + 1. Click the **Code** tab or press `.` 33 + 2. Navigate the file tree 34 + 3. Click any file to view its contents with syntax highlighting 35 + 36 + ## Use npm URLs 37 + 38 + Replace `npmjs.com` with `npmx.dev` in any npm URL: 39 + 40 + | npm URL | npmx.dev equivalent | 41 + | ----------------------------- | ---------------------------- | 42 + | `npmjs.com/package/nuxt` | `npmx.dev/package/nuxt` | 43 + | `npmjs.com/package/@nuxt/kit` | `npmx.dev/package/@nuxt/kit` | 44 + | `npmjs.com/~sindresorhus` | `npmx.dev/~sindresorhus` | 45 + 46 + ::tip 47 + Install the [npmx-replace browser extension](https://github.com/tylersayshi/npmx-replace-extension) for automatic redirects from npmjs.com. 48 + ::
+2
docs/content/2.guide/.navigation.yml
··· 1 + title: Guide 2 + icon: i-lucide-book-open
+60
docs/content/2.guide/1.features.md
··· 1 + --- 2 + title: Features 3 + description: Explore all the features npmx.dev offers 4 + navigation: 5 + icon: i-lucide-sparkles 6 + --- 7 + 8 + npmx.dev provides a comprehensive set of features for browsing npm packages. 9 + 10 + ## Browse packages 11 + 12 + ### View package details 13 + 14 + Each package page displays: 15 + 16 + - **README** - Rendered markdown documentation 17 + - **Versions** - Complete version history with release dates 18 + - **Dependencies** - Required packages with version ranges that resolve to actual versions 19 + - **Dependents** - Packages that depend on this one (coming soon) 20 + 21 + ### Check package badges 22 + 23 + Packages display helpful badges: 24 + 25 + | Badge | Meaning | 26 + | ---------------- | ----------------------------------------------------------- | 27 + | ESM / CJS / Dual | Module format support | 28 + | TypeScript | Includes type definitions (links to `@types/*` if separate) | 29 + | Provenance | Verified build from a known source | 30 + 31 + ### View security information 32 + 33 + - **Vulnerability warnings** - Security advisories from the OSV database 34 + - **Deprecation notices** - Clear warnings for deprecated packages and versions 35 + - **Provenance indicators** - Verified build badges for packages with npm provenance 36 + 37 + ## Browse source code 38 + 39 + Press `.` or click the **Code** tab to open the code viewer: 40 + 41 + - **File tree** - Navigate the package structure 42 + - **Syntax highlighting** - Language-aware code display 43 + - **Permalinks** - Link to specific lines in files 44 + 45 + ## View statistics 46 + 47 + - **Download counts** - Weekly downloads with sparkline charts 48 + - **Install size** - Total size including transitive dependencies 49 + - **Repository stats** - Stars and forks from GitHub, GitLab, Bitbucket, Codeberg, Gitee, and Sourcehut 50 + 51 + ## Explore users and organizations 52 + 53 + - **User profiles** - View any npm user's public packages at `/~username` 54 + - **Organization pages** - Browse org packages at `/@orgname` 55 + - **Search and filter** - Find packages within user/org lists 56 + 57 + ## Access related resources 58 + 59 + - **JSR availability** - See if scoped packages are also available on JSR 60 + - **Playground links** - Quick access to StackBlitz, CodeSandbox, and other demo environments from READMEs
+36
docs/content/2.guide/2.keyboard-shortcuts.md
··· 1 + --- 2 + title: Keyboard Shortcuts 3 + description: Navigate npmx.dev efficiently with keyboard shortcuts 4 + navigation: 5 + icon: i-lucide-keyboard 6 + --- 7 + 8 + npmx.dev supports keyboard navigation for faster browsing. 9 + 10 + ## Use global shortcuts 11 + 12 + | Key | Action | 13 + | --- | ---------------- | 14 + | `/` | Focus search bar | 15 + | `.` | Open code viewer | 16 + 17 + ## Navigate search results 18 + 19 + | Key | Action | 20 + | ------------------------- | --------------------- | 21 + | `Arrow Up` / `Arrow Down` | Move through results | 22 + | `Enter` | Open selected package | 23 + 24 + ## Browse code 25 + 26 + When in the code viewer: 27 + 28 + | Key | Action | 29 + | ------------------------- | ------------------ | 30 + | `Arrow Up` / `Arrow Down` | Navigate file tree | 31 + | `Enter` | Open selected file | 32 + | `Escape` | Close code viewer | 33 + 34 + ::tip 35 + These shortcuts work anywhere on the site. Press `/` from any page to quickly search for a package. 36 + ::
+47
docs/content/2.guide/3.url-structure.md
··· 1 + --- 2 + title: URL Structure 3 + description: Understand how URLs work in npmx.dev 4 + navigation: 5 + icon: i-lucide-link 6 + --- 7 + 8 + npmx.dev supports npm-compatible URLs and simpler alternatives. 9 + 10 + ## Use npm-compatible URLs 11 + 12 + Replace `npmjs.com` with `npmx.dev` (or `xnpmjs.com`) in any npm URL: 13 + 14 + | npm URL | npmx.dev equivalent | 15 + | ------------------------------- | ---------------------------------------------------------------------- | 16 + | `npmjs.com/package/nuxt` | [`npmx.dev/package/nuxt`](https://npmx.dev/package/nuxt) | 17 + | `npmjs.com/package/@nuxt/kit` | [`npmx.dev/package/@nuxt/kit`](https://npmx.dev/package/@nuxt/kit) | 18 + | `npmjs.com/package/vue/v/3.4.0` | [`npmx.dev/package/vue/v/3.4.0`](https://npmx.dev/package/vue/v/3.4.0) | 19 + | `npmjs.com/search?q=vue` | [`npmx.dev/search?q=vue`](https://npmx.dev/search?q=vue) | 20 + | `npmjs.com/~sindresorhus` | [`npmx.dev/~sindresorhus`](https://npmx.dev/~sindresorhus) | 21 + | `npmjs.com/org/nuxt` | [`npmx.dev/org/nuxt`](https://npmx.dev/org/nuxt) | 22 + 23 + ::tip 24 + Install the [npmx-replace browser extension](https://github.com/tylersayshi/npmx-replace-extension) for automatic redirects. 25 + :: 26 + 27 + ## Use simpler URLs 28 + 29 + npmx.dev also supports shorter, cleaner URLs: 30 + 31 + | Pattern | Example | 32 + | ---------------------- | -------------------------------------------------- | 33 + | `/<package>` | [`/nuxt`](https://npmx.dev/nuxt) | 34 + | `/<package>@<version>` | [`/vue@3.4.0`](https://npmx.dev/vue@3.4.0) | 35 + | `/@scope/name` | [`/@nuxt/kit`](https://npmx.dev/@nuxt/kit) | 36 + | `/@org` | [`/@nuxt`](https://npmx.dev/@nuxt) | 37 + | `/~username` | [`/~sindresorhus`](https://npmx.dev/~sindresorhus) | 38 + 39 + ## Understand URL limitations 40 + 41 + Some npm URLs are not yet supported: 42 + 43 + | URL Pattern | Status | 44 + | ---------------------------- | -------------------------------- | 45 + | `/package/<name>/access` | Not yet supported | 46 + | `/package/<name>/dependents` | Coming soon | 47 + | `/settings/*` | Not supported (account settings) |
+2
docs/content/3.faq/.navigation.yml
··· 1 + title: FAQ 2 + icon: i-lucide-circle-help
+43
docs/content/3.faq/1.troubleshooting.md
··· 1 + --- 2 + title: Troubleshooting 3 + description: Common issues and how to resolve them 4 + navigation: 5 + icon: i-lucide-wrench 6 + --- 7 + 8 + Solutions to common issues when using npmx.dev. 9 + 10 + ## Package not found 11 + 12 + If a package doesn't appear in search results or shows a 404 error: 13 + 14 + 1. **Check the package name** - Ensure the name is spelled correctly 15 + 2. **Verify it exists on npm** - Check [npmjs.com](https://www.npmjs.com/) directly 16 + 3. **Wait for sync** - Newly published packages may take a few minutes to appear 17 + 18 + ## Code viewer not loading 19 + 20 + If the code viewer shows an error or doesn't load: 21 + 22 + 1. **Check package size** - Very large packages may take longer to load 23 + 2. **Try a specific version** - Use a versioned URL like `/package-name@1.0.0` 24 + 3. **Refresh the page** - Clear cache and reload 25 + 26 + ## Missing features compared to npmjs.com 27 + 28 + Some features are not yet available: 29 + 30 + | Feature | Status | 31 + | ----------------------------- | ----------- | 32 + | Dependents list | Coming soon | 33 + | Package admin (access/owners) | Coming soon | 34 + | Org/team management | Coming soon | 35 + | 2FA/account settings | Not planned | 36 + 37 + ## Report an issue 38 + 39 + If you encounter a bug or have a feature request: 40 + 41 + 1. Check [existing issues](https://github.com/npmx-dev/npmx.dev/issues) 42 + 2. [Open a new issue](https://issues.npmx.dev) with details 43 + 3. Join the [Discord community](https://chat.npmx.dev) for discussion
+48
docs/content/3.faq/2.comparison.md
··· 1 + --- 2 + title: Comparison 3 + description: How npmx.dev compares to npmjs.com 4 + navigation: 5 + icon: i-lucide-git-compare 6 + --- 7 + 8 + A feature comparison between npmx.dev and npmjs.com. 9 + 10 + ## Feature comparison 11 + 12 + | Feature | npmjs.com | npmx.dev | 13 + | ------------------------------ | :-------: | :---------: | 14 + | Package search | Yes | Yes | 15 + | Package details & README | Yes | Yes | 16 + | Version history | Yes | Yes | 17 + | Dependencies list | Yes | Yes | 18 + | User profiles | Yes | Yes | 19 + | Organization pages | Yes | Yes | 20 + | Provenance indicators | Yes | Yes | 21 + | Code browser | Yes | Yes | 22 + | Dark mode | No | Yes | 23 + | Outdated dependency warnings | No | Yes | 24 + | Module format badges (ESM/CJS) | No | Yes | 25 + | TypeScript types indicator | Yes | Yes | 26 + | Install size calculation | No | Yes | 27 + | JSR cross-reference | No | Yes | 28 + | Vulnerability warnings | Yes | Yes | 29 + | Deprecation notices | Yes | Yes | 30 + | Download charts | Yes | Yes | 31 + | Playground links | No | Yes | 32 + | Keyboard navigation | No | Yes | 33 + | Multi-provider repo support | No | Yes | 34 + | Version range resolution | No | Yes | 35 + | Dependents list | Yes | Coming soon | 36 + | Package admin (access/owners) | Yes | Coming soon | 37 + | Org/team management | Yes | Coming soon | 38 + | 2FA/account settings | Yes | No | 39 + | Claim new package names | Yes | Yes | 40 + 41 + ## Why use npmx.dev? 42 + 43 + npmx.dev focuses on: 44 + 45 + - **Speed** - Fast page loads with no layout shift 46 + - **Developer experience** - Dark mode, keyboard navigation, cleaner UI 47 + - **Insights** - Module format badges, install size, outdated dependencies 48 + - **Compatibility** - Works with existing npm URLs
+37
docs/content/index.md
··· 1 + --- 2 + seo: 3 + title: npmx.dev Documentation 4 + description: A fast, modern browser for the npm registry 5 + --- 6 + 7 + ::u-page-hero{title="npmx.dev" description="A fast, modern browser for the npm registry. Speed first, URL compatible, and simple."} 8 + #links 9 + :::u-button{color="neutral" size="xl" to="/getting-started/introduction" trailing-icon="i-lucide-arrow-right"} 10 + Get Started 11 + ::: 12 + 13 + :::u-button{color="neutral" icon="i-simple-icons-github" size="xl" to="https://github.com/npmx-dev/npmx.dev" target="\_blank" variant="outline"} 14 + View on GitHub 15 + ::: 16 + :: 17 + 18 + ::u-page-section{title="What you can do"} 19 + #features 20 + :::u-page-feature{icon="i-lucide-search" to="/guide/features" title="Search packages" description="Fast package search with instant results, infinite scroll, and keyboard navigation."} 21 + ::: 22 + 23 + :::u-page-feature{icon="i-lucide-code" to="/guide/features" title="Browse source code" description="View package source code with syntax highlighting and permalink to specific lines."} 24 + ::: 25 + 26 + :::u-page-feature{icon="i-lucide-link" to="/guide/url-structure" title="Use familiar URLs" description="Replace npmjs.com with npmx.dev in any URL and it just works."} 27 + ::: 28 + 29 + :::u-page-feature{icon="i-lucide-keyboard" to="/guide/keyboard-shortcuts" title="Navigate with keyboard" description="Press / to search, . for code viewer, arrow keys to navigate results."} 30 + ::: 31 + 32 + :::u-page-feature{icon="i-lucide-shield-check" to="/guide/features" title="Check security" description="Vulnerability warnings from OSV database and provenance indicators for verified builds."} 33 + ::: 34 + 35 + :::u-page-feature{icon="i-lucide-moon" to="/guide/features" title="Enjoy dark mode" description="Dark mode by default for a better viewing experience."} 36 + ::: 37 + ::
+25
docs/package.json
··· 1 + { 2 + "name": "npmx-docs", 3 + "private": true, 4 + "description": "npmx public docs site", 5 + "license": "MIT", 6 + "repository": { 7 + "type": "git", 8 + "url": "git+https://github.com/npmx-dev/npmx.dev.git", 9 + "directory": "docs" 10 + }, 11 + "bugs": { 12 + "url": "https://github.com/npmx-dev/npmx.dev/issues" 13 + }, 14 + "scripts": { 15 + "dev": "nuxt dev --extends docus", 16 + "build": "nuxt build --extends docus", 17 + "generate": "nuxt generate --extends docus", 18 + "preview": "nuxt preview --extends docus" 19 + }, 20 + "dependencies": { 21 + "docus": "latest", 22 + "better-sqlite3": "12.5.0", 23 + "nuxt": "^4.2.2" 24 + } 25 + }
+1
package.json
··· 11 11 "scripts": { 12 12 "build": "nuxt build", 13 13 "dev": "nuxt dev", 14 + "dev:docs": "pnpm run --filter npmx-docs dev --port=3001", 14 15 "lint": "vite lint && vite fmt --check", 15 16 "lint:fix": "vite lint --fix && vite fmt", 16 17 "generate": "nuxt generate",
+4561 -37
pnpm-lock.yaml
··· 26 26 version: 1.0.0-alpha.1(magicast@0.5.1)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) 27 27 '@nuxt/fonts': 28 28 specifier: ^0.13.0 29 - version: 0.13.0(db0@0.3.4)(ioredis@5.9.2)(magicast@0.5.1)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) 29 + version: 0.13.0(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2)(magicast@0.5.1)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) 30 30 '@nuxt/scripts': 31 31 specifier: ^0.13.2 32 - version: 0.13.2(@unhead/vue@2.1.2(vue@3.5.27(typescript@5.9.3)))(db0@0.3.4)(ioredis@5.9.2)(magicast@0.5.1)(typescript@5.9.3)(vue@3.5.27(typescript@5.9.3)) 32 + version: 0.13.2(@unhead/vue@2.1.2(vue@3.5.27(typescript@5.9.3)))(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2)(magicast@0.5.1)(typescript@5.9.3)(vue@3.5.27(typescript@5.9.3)) 33 33 '@nuxtjs/html-validator': 34 34 specifier: ^2.1.0 35 35 version: 2.1.0(@voidzero-dev/vite-plus-test@0.0.0-ffb4d08a8edafe855c59736c0a38ee85a2373ebb(@types/node@25.0.10)(esbuild@0.27.2)(happy-dom@20.3.5)(jiti@2.6.1)(jsdom@27.4.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(magicast@0.5.1) 36 36 '@nuxtjs/i18n': 37 37 specifier: 10.2.1 38 - version: 10.2.1(@vue/compiler-dom@3.5.27)(db0@0.3.4)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(rollup@4.56.0)(vue@3.5.27(typescript@5.9.3)) 38 + version: 10.2.1(@vue/compiler-dom@3.5.27)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(rollup@4.56.0)(vue@3.5.27(typescript@5.9.3)) 39 39 '@shikijs/langs': 40 40 specifier: ^3.21.0 41 41 version: 3.21.0 ··· 47 47 version: 14.1.0(vue@3.5.27(typescript@5.9.3)) 48 48 '@vueuse/nuxt': 49 49 specifier: 14.1.0 50 - version: 14.1.0(magicast@0.5.1)(nuxt@4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2))(vue@3.5.27(typescript@5.9.3)) 50 + version: 14.1.0(magicast@0.5.1)(nuxt@4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2))(vue@3.5.27(typescript@5.9.3)) 51 51 nuxt: 52 52 specifier: ^4.3.0 53 - version: 4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2) 53 + version: 4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2) 54 54 nuxt-og-image: 55 55 specifier: ^5.1.13 56 - version: 5.1.13(@unhead/vue@2.1.2(vue@3.5.27(typescript@5.9.3)))(magicast@0.5.1)(unstorage@1.17.4(db0@0.3.4)(ioredis@5.9.2))(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.27(typescript@5.9.3)) 56 + version: 5.1.13(@unhead/vue@2.1.2(vue@3.5.27(typescript@5.9.3)))(magicast@0.5.1)(unstorage@1.17.4(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2))(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.27(typescript@5.9.3)) 57 57 ohash: 58 58 specifier: ^2.0.11 59 59 version: 2.0.11 ··· 219 219 specifier: 5.9.3 220 220 version: 5.9.3 221 221 222 + docs: 223 + dependencies: 224 + better-sqlite3: 225 + specifier: 12.5.0 226 + version: 12.5.0 227 + docus: 228 + specifier: latest 229 + version: 5.4.4(f8ca6697922b425ef942e9ca7dfe6d62) 230 + nuxt: 231 + specifier: ^4.2.2 232 + version: 4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(better-sqlite3@12.5.0)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.5.0))(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2) 233 + 222 234 packages: 223 235 224 236 '@acemir/cssom@0.9.31': 225 237 resolution: {integrity: sha512-ZnR3GSaH+/vJ0YlHau21FjfLYjMpYVIzTD8M8vIEQvIGxeOXyXdzCI140rrCY862p/C/BbzWsjc1dgnM9mkoTA==} 226 238 239 + '@alloc/quick-lru@5.2.0': 240 + resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} 241 + engines: {node: '>=10'} 242 + 227 243 '@antfu/install-pkg@1.1.0': 228 244 resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==} 229 245 ··· 232 248 engines: {node: '>=10'} 233 249 peerDependencies: 234 250 ajv: '>=8' 251 + 252 + '@apidevtools/json-schema-ref-parser@11.9.3': 253 + resolution: {integrity: sha512-60vepv88RwcJtSHrD6MjIL6Ta3SOYbgfnkHb+ppAVK+o9mXprRtulx7VlRl3lN3bbvysAfCS7WMVfhUYemB0IQ==} 254 + engines: {node: '>= 16'} 235 255 236 256 '@asamuzakjp/css-color@4.1.1': 237 257 resolution: {integrity: sha512-B0Hv6G3gWGMn0xKJ0txEi/jM5iFpT3MfDxmhZFb4W047GvytCf1DHQ1D69W3zHI4yWe2aTZAA0JnbMZ7Xc8DuQ==} ··· 815 835 resolution: {integrity: sha512-VERIM64vtTP1C4mxQ5thVT9fK0apjPFobqybMtA1UdUujWka24ERHbRHFGmpbbhp73MhV+KSsHQH9C6uOTdEQA==} 816 836 engines: {node: '>=18'} 817 837 838 + '@clack/core@0.5.0': 839 + resolution: {integrity: sha512-p3y0FIOwaYRUPRcMO7+dlmLh8PSRcrjuTndsiA0WAFbWES0mLZlrjVoBRZ9DzkPFJZG6KGkJmoEAY0ZcVWTkow==} 840 + 818 841 '@clack/core@1.0.0-alpha.7': 819 842 resolution: {integrity: sha512-3vdh6Ar09D14rVxJZIm3VQJkU+ZOKKT5I5cC0cOVazy70CNyYYjiwRj9unwalhESndgxx6bGc/m6Hhs4EKF5XQ==} 820 843 844 + '@clack/prompts@0.11.0': 845 + resolution: {integrity: sha512-pMN5FcrEw9hUkZA4f+zLlzivQSeQf5dRGJjSUbvVYDLvpKCdQx5OaknvKzgbtXOizhP+SJJJjqEbOe55uKKfAw==} 846 + 821 847 '@clack/prompts@1.0.0-alpha.9': 822 848 resolution: {integrity: sha512-sKs0UjiHFWvry4SiRfBi5Qnj0C/6AYx8aKkFPZQSuUZXgAram25ZDmhQmP7vj1aFyLpfHWtLQjWvOvcat0TOLg==} 823 849 ··· 1231 1257 '@noble/hashes': 1232 1258 optional: true 1233 1259 1260 + '@fastify/accept-negotiator@2.0.1': 1261 + resolution: {integrity: sha512-/c/TW2bO/v9JeEgoD/g1G5GxGeCF1Hafdf79WPmUlgYiBXummY0oX3VVq4yFkKKVBKDNlaDUYoab7g38RpPqCQ==} 1262 + 1263 + '@fingerprintjs/botd@2.0.0': 1264 + resolution: {integrity: sha512-yhuz23NKEcBDTHmGz/ULrXlGnbHenO+xZmVwuBkuqHUkqvaZ5TAA0kAgcRy4Wyo5dIBdkIf57UXX8/c9UlMLJg==} 1265 + 1266 + '@floating-ui/core@1.7.4': 1267 + resolution: {integrity: sha512-C3HlIdsBxszvm5McXlB8PeOEWfBhcGBTZGkGlWc2U0KFY5IwG5OQEuQ8rq52DZmcHDlPLd+YFBK+cZcytwIFWg==} 1268 + 1269 + '@floating-ui/dom@1.7.5': 1270 + resolution: {integrity: sha512-N0bD2kIPInNHUHehXhMke1rBGs1dwqvC9O9KYMyyjK7iXt7GAhnro7UlcuYcGdS/yYOlq0MAVgrow8IbWJwyqg==} 1271 + 1272 + '@floating-ui/utils@0.2.10': 1273 + resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==} 1274 + 1275 + '@floating-ui/vue@1.1.10': 1276 + resolution: {integrity: sha512-vdf8f6rHnFPPLRsmL4p12wYl+Ux4mOJOkjzKEMYVnwdf7UFdvBtHlLvQyx8iKG5vhPRbDRgZxdtpmyigDPjzYg==} 1277 + 1278 + '@hono/node-server@1.19.9': 1279 + resolution: {integrity: sha512-vHL6w3ecZsky+8P5MD+eFfaGTyCeOHUIFYMGpQGbrBTSmNNoxv0if69rEZ5giu36weC5saFuznL411gRX7bJDw==} 1280 + engines: {node: '>=18.14.1'} 1281 + peerDependencies: 1282 + hono: ^4 1283 + 1234 1284 '@html-validate/stylish@4.3.0': 1235 1285 resolution: {integrity: sha512-eUfvKpRJg5TvzSfTf2EovrQoTKjkRnPUOUnXVJ2cQ4GbC/bQw98oxN+DdSf+HxOBK00YOhsP52xWdJPV1o4n5w==} 1236 1286 engines: {node: '>= 18'} ··· 1254 1304 '@iconify-json/carbon@1.2.18': 1255 1305 resolution: {integrity: sha512-Grb13E6r/RqTEV4Sqd/BQR2FUt57U2WLuticJ5H8JbTdHLop1LmdePu3EJJA3Xi8DcWRbD6OnC133hKfOwlgtg==} 1256 1306 1307 + '@iconify-json/lucide@1.2.87': 1308 + resolution: {integrity: sha512-wxYIAp0f8Uw0rJa6BMWMaRbiHk3yV4XczA38GKXFlqyZtTdmHM1QOF4NZw5xpMlRDzbh2MnB7wjteLeFnn/ciQ==} 1309 + 1257 1310 '@iconify-json/simple-icons@1.2.67': 1258 1311 resolution: {integrity: sha512-RGJRwlxyup54L1UDAjCshy3ckX5zcvYIU74YLSnUgHGvqh6B4mvksbGNHAIEp7dZQ6cM13RZVT5KC07CmnFNew==} 1259 1312 ··· 1262 1315 1263 1316 '@iconify-json/vscode-icons@1.2.40': 1264 1317 resolution: {integrity: sha512-Q7JIWAxENwmcRg4EGRY+u16gBwrAj6mWeuSmuyuPvNvoTJHh8Ss8qoeDhrFYNgtWqNkzH5hSf4b2T9XLK5MsrA==} 1318 + 1319 + '@iconify/collections@1.0.643': 1320 + resolution: {integrity: sha512-mtXKNYlunC/HaEB+IwnJOw+dZ6Z7QwrUr4484qm/MiIk+7f8TyqDM9qYeJENEEDCWznyqR7ML/FNJ3F02nXF0g==} 1265 1321 1266 1322 '@iconify/types@2.0.0': 1267 1323 resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==} ··· 1269 1325 '@iconify/utils@3.1.0': 1270 1326 resolution: {integrity: sha512-Zlzem1ZXhI1iHeeERabLNzBHdOa4VhQbqAcOQaMKuTuyZCpwKbC2R4Dd0Zo3g9EAc+Y4fiarO8HIHRAth7+skw==} 1271 1327 1328 + '@iconify/vue@5.0.0': 1329 + resolution: {integrity: sha512-C+KuEWIF5nSBrobFJhT//JS87OZ++QDORB6f2q2Wm6fl2mueSTpFBeBsveK0KW9hWiZ4mNiPjsh6Zs4jjdROSg==} 1330 + peerDependencies: 1331 + vue: '>=3' 1332 + 1272 1333 '@img/colour@1.0.0': 1273 1334 resolution: {integrity: sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==} 1274 1335 engines: {node: '>=18'} ··· 1406 1467 cpu: [x64] 1407 1468 os: [win32] 1408 1469 1470 + '@internationalized/date@3.10.1': 1471 + resolution: {integrity: sha512-oJrXtQiAXLvT9clCf1K4kxp3eKsQhIaZqxEyowkBcsvZDdZkbWrVmnGknxs5flTD0VGsxrxKgBCZty1EzoiMzA==} 1472 + 1473 + '@internationalized/number@3.6.5': 1474 + resolution: {integrity: sha512-6hY4Kl4HPBvtfS62asS/R22JzNNy8vi/Ssev7x6EobfCp+9QIB2hKvI2EtbdJ0VSQacxVNtqhE/NmF/NZ0gm6g==} 1475 + 1409 1476 '@intlify/bundle-utils@11.0.3': 1410 1477 resolution: {integrity: sha512-dURCDz1rQXwAb1+Hv4NDit6aZSRaAt4zUYBPEeaDCe3FSs8dMtdF6kEvgd9JwsYFSTAHcvbTs2CqwBjjt9Ltsw==} 1411 1478 engines: {node: '>= 20'} ··· 1511 1578 '@jridgewell/trace-mapping@0.3.31': 1512 1579 resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} 1513 1580 1581 + '@jsdevtools/ono@7.1.3': 1582 + resolution: {integrity: sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg==} 1583 + 1514 1584 '@kwsites/file-exists@1.1.1': 1515 1585 resolution: {integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==} 1516 1586 ··· 1527 1597 peerDependencies: 1528 1598 rollup: ^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0 1529 1599 1600 + '@modelcontextprotocol/sdk@1.25.3': 1601 + resolution: {integrity: sha512-vsAMBMERybvYgKbg/l4L1rhS7VXV1c0CtyJg72vwxONVX0l4ZfKVAnZEWTQixJGTzKnELjQ59e4NbdFDALRiAQ==} 1602 + engines: {node: '>=18'} 1603 + peerDependencies: 1604 + '@cfworker/json-schema': ^4.1.1 1605 + zod: ^3.25 || ^4.0 1606 + peerDependenciesMeta: 1607 + '@cfworker/json-schema': 1608 + optional: true 1609 + 1530 1610 '@napi-rs/wasm-runtime@1.1.1': 1531 1611 resolution: {integrity: sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==} 1532 1612 ··· 1554 1634 engines: {node: ^16.10.0 || >=18.0.0} 1555 1635 hasBin: true 1556 1636 1637 + '@nuxt/content@3.11.0': 1638 + resolution: {integrity: sha512-sC2AyuQAZpw+iSxwekh75AsLc7Ja9aEY+l4r1DxGBEMkq+YGj8+6AqQSRqFjOH0Hu9yDUhRgpIUnlGVq43WqOA==} 1639 + engines: {node: '>= 20.19.0'} 1640 + peerDependencies: 1641 + '@electric-sql/pglite': '*' 1642 + '@libsql/client': '*' 1643 + '@valibot/to-json-schema': ^1.5.0 1644 + better-sqlite3: ^12.5.0 1645 + sqlite3: '*' 1646 + valibot: ^1.2.0 1647 + peerDependenciesMeta: 1648 + '@electric-sql/pglite': 1649 + optional: true 1650 + '@libsql/client': 1651 + optional: true 1652 + '@valibot/to-json-schema': 1653 + optional: true 1654 + better-sqlite3: 1655 + optional: true 1656 + sqlite3: 1657 + optional: true 1658 + valibot: 1659 + optional: true 1660 + 1557 1661 '@nuxt/devalue@2.0.2': 1558 1662 resolution: {integrity: sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==} 1559 1663 ··· 1576 1680 '@vitejs/devtools': 1577 1681 optional: true 1578 1682 1683 + '@nuxt/fonts@0.12.1': 1684 + resolution: {integrity: sha512-ALajI/HE+uqqL/PWkWwaSUm1IdpyGPbP3mYGy2U1l26/o4lUZBxjFaduMxaZ85jS5yQeJfCu2eEHANYFjAoujQ==} 1685 + 1579 1686 '@nuxt/fonts@0.13.0': 1580 1687 resolution: {integrity: sha512-70t42uWyk1ugILdgdP7VG2B0Q+52hKrR8IODSABU6qYSMsd+PtT2pW4Fj+hVEhQVOW+cZe0dvSeKi0p6v5gCIw==} 1688 + 1689 + '@nuxt/icon@2.2.1': 1690 + resolution: {integrity: sha512-GI840yYGuvHI0BGDQ63d6rAxGzG96jQcWrnaWIQKlyQo/7sx9PjXkSHckXUXyX1MCr9zY6U25Td6OatfY6Hklw==} 1691 + 1692 + '@nuxt/image@2.0.0': 1693 + resolution: {integrity: sha512-otHi6gAoYXKLrp8m27ZjX1PjxOPaltQ4OiUs/BhkW995mF/vXf8SWQTw68fww+Uric0v+XgoVrP9icDi+yT6zw==} 1694 + engines: {node: '>=18.20.6'} 1581 1695 1582 1696 '@nuxt/kit@3.20.2': 1583 1697 resolution: {integrity: sha512-laqfmMcWWNV1FsVmm1+RQUoGY8NIJvCRl0z0K8ikqPukoEry0LXMqlQ+xaf8xJRvoH2/78OhZmsEEsUBTXipcw==} ··· 1699 1813 vitest: 1700 1814 optional: true 1701 1815 1816 + '@nuxt/ui@4.4.0': 1817 + resolution: {integrity: sha512-c9n8PgYSpFpC3GSz0LtAzceo/jjNyaI1yFJbDPJop5OoeeWqKOC3filsQFNPxo+i3v81EiGkZq+bJ7pnHxAGkA==} 1818 + engines: {node: ^20.19.0 || >=22.12.0} 1819 + hasBin: true 1820 + peerDependencies: 1821 + '@inertiajs/vue3': ^2.0.7 1822 + '@nuxt/content': ^3.0.0 1823 + joi: ^18.0.0 1824 + superstruct: ^2.0.0 1825 + tailwindcss: ^4.0.0 1826 + typescript: ^5.6.3 1827 + valibot: ^1.0.0 1828 + vue-router: ^4.5.0 1829 + yup: ^1.7.0 1830 + zod: ^3.24.0 || ^4.0.0 1831 + peerDependenciesMeta: 1832 + '@inertiajs/vue3': 1833 + optional: true 1834 + '@nuxt/content': 1835 + optional: true 1836 + joi: 1837 + optional: true 1838 + superstruct: 1839 + optional: true 1840 + valibot: 1841 + optional: true 1842 + vue-router: 1843 + optional: true 1844 + yup: 1845 + optional: true 1846 + zod: 1847 + optional: true 1848 + 1702 1849 '@nuxt/vite-builder@4.3.0': 1703 1850 resolution: {integrity: sha512-qOVevlukWUztfJ9p/OtujRxwaXIsnoTo2ZW4pPY1zQcuR1DtBtBsiePLzftoDz1VGx9JF5GAx9YyrgTn/EmcWQ==} 1704 1851 engines: {node: ^20.19.0 || >=22.12.0} ··· 1710 1857 rolldown: 1711 1858 optional: true 1712 1859 1860 + '@nuxtjs/color-mode@3.5.2': 1861 + resolution: {integrity: sha512-cC6RfgZh3guHBMLLjrBB2Uti5eUoGM9KyauOaYS9ETmxNWBMTvpgjvSiSJp1OFljIXPIqVTJ3xtJpSNZiO3ZaA==} 1862 + 1713 1863 '@nuxtjs/html-validator@2.1.0': 1714 1864 resolution: {integrity: sha512-ldo8ioSsH3OEumtgwDMokTxlhjgO9FxjJWViAxisq5l/wjvaVX8SYTQ02wjtQcQQPSvS6BwgypAp400RlyFHng==} 1715 1865 1716 1866 '@nuxtjs/i18n@10.2.1': 1717 1867 resolution: {integrity: sha512-/CHAIpYbFgobxeMsnKcD8xBUHxBpqipRMjaI3ol9MVZKscJM+IetYdNL9lGNFdEtlxzkV8COxnoa60rE4sPjuQ==} 1718 1868 engines: {node: '>=20.11.1'} 1869 + 1870 + '@nuxtjs/mcp-toolkit@0.6.2': 1871 + resolution: {integrity: sha512-diULFXRAuG6TyEre9vFpG1b+9PJL2s5rSxXX31bSKl480UUxmdlgTs7j+FStKh+pFwqoJ7tgKiL66xBXEvVmPQ==} 1872 + peerDependencies: 1873 + agents: '>=0.3.3' 1874 + zod: ^4.1.13 1875 + peerDependenciesMeta: 1876 + agents: 1877 + optional: true 1878 + 1879 + '@nuxtjs/mdc@0.20.0': 1880 + resolution: {integrity: sha512-CV1FuCZppBpNjtWT+OaV+t7qbm/dD+2bbf7Or0h1gxperlf1bB3VZnDoBkOTRjgPWyYvzzRS7FUOQJLQG28MEA==} 1881 + 1882 + '@nuxtjs/robots@5.6.7': 1883 + resolution: {integrity: sha512-0Ex0Y38z9s5I5w3AkdlrpLPACE+cd38KH9dYjZE+flP5RSGMvKzbTc8/jyNeY7numIuFt9BQGXEzkEAmxe04Cg==} 1884 + peerDependencies: 1885 + zod: '>=3' 1886 + peerDependenciesMeta: 1887 + zod: 1888 + optional: true 1719 1889 1720 1890 '@one-ini/wasm@0.1.1': 1721 1891 resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} ··· 2487 2657 '@quansync/fs@1.0.0': 2488 2658 resolution: {integrity: sha512-4TJ3DFtlf1L5LDMaM6CanJ/0lckGNtJcMjQ1NAV6zDmA0tEHKZtxNKin8EgPaVX1YzljbxckyT2tJrpQKAtngQ==} 2489 2659 2660 + '@remirror/core-constants@3.0.0': 2661 + resolution: {integrity: sha512-42aWfPrimMfDKDi4YegyS7x+/0tlzaqwPQCULLanv3DMIlu96KTJR0fM5isWX2UViOqlGnX6YFgqWepcX+XMNg==} 2662 + 2490 2663 '@resvg/resvg-js-android-arm-eabi@2.6.2': 2491 2664 resolution: {integrity: sha512-FrJibrAk6v29eabIPgcTUMPXiEz8ssrAk7TXxsiZzww9UTQ1Z5KAbFJs+Z0Ez+VZTYgnE5IQJqBcoSiMebtPHA==} 2492 2665 engines: {node: '>= 10'} ··· 2905 3078 '@shikijs/themes@3.21.0': 2906 3079 resolution: {integrity: sha512-BAE4cr9EDiZyYzwIHEk7JTBJ9CzlPuM4PchfcA5ao1dWXb25nv6hYsoDiBq2aZK9E3dlt3WB78uI96UESD+8Mw==} 2907 3080 3081 + '@shikijs/transformers@3.21.0': 3082 + resolution: {integrity: sha512-CZwvCWWIiRRiFk9/JKzdEooakAP8mQDtBOQ1TKiCaS2E1bYtyBCOkUzS8akO34/7ufICQ29oeSfkb3tT5KtrhA==} 3083 + 2908 3084 '@shikijs/types@3.21.0': 2909 3085 resolution: {integrity: sha512-zGrWOxZ0/+0ovPY7PvBU2gIS9tmhSUUt30jAcNV0Bq0gb2S98gwfjIs1vxlmH5zM7/4YxLamT6ChlqqAJmPPjA==} 2910 3086 ··· 2921 3097 engines: {node: '>= 16.14'} 2922 3098 peerDependencies: 2923 3099 ajv: ^6.12.3 || ^7.0.0 || ^8.0.0 3100 + 3101 + '@sindresorhus/is@4.6.0': 3102 + resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==} 3103 + engines: {node: '>=10'} 2924 3104 2925 3105 '@sindresorhus/is@7.2.0': 2926 3106 resolution: {integrity: sha512-P1Cz1dWaFfR4IR+U13mqqiGsLFf1KbayybWwdd2vfctdV6hDpUkgCY0nKOLLTMSoRd/jJNjtbqzf13K8DCCXQw==} ··· 2930 3110 resolution: {integrity: sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==} 2931 3111 engines: {node: '>=18'} 2932 3112 3113 + '@socket.io/component-emitter@3.1.2': 3114 + resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==} 3115 + 2933 3116 '@speed-highlight/core@1.2.14': 2934 3117 resolution: {integrity: sha512-G4ewlBNhUtlLvrJTb88d2mdy2KRijzs4UhnlrOSRT4bmjh/IqNElZa3zkrZ+TC47TwtlDWzVLFADljF1Ijp5hA==} 2935 3118 3119 + '@sqlite.org/sqlite-wasm@3.50.4-build1': 3120 + resolution: {integrity: sha512-Qig2Wso7gPkU1PtXwFzndh+CTRzrIFxVGqv6eCetjU7YqxlHItj+GvQYwYTppCRgAPawtRN/4AJcEgB9xDHGug==} 3121 + hasBin: true 3122 + 2936 3123 '@standard-schema/spec@1.1.0': 2937 3124 resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==} 2938 3125 ··· 2942 3129 '@swc/helpers@0.5.18': 2943 3130 resolution: {integrity: sha512-TXTnIcNJQEKwThMMqBXsZ4VGAza6bvN4pa41Rkqoio6QBKMvo+5lexeTMScGCIxtzgQJzElcvIltani+adC5PQ==} 2944 3131 3132 + '@tailwindcss/node@4.1.18': 3133 + resolution: {integrity: sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==} 3134 + 3135 + '@tailwindcss/oxide-android-arm64@4.1.18': 3136 + resolution: {integrity: sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==} 3137 + engines: {node: '>= 10'} 3138 + cpu: [arm64] 3139 + os: [android] 3140 + 3141 + '@tailwindcss/oxide-darwin-arm64@4.1.18': 3142 + resolution: {integrity: sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A==} 3143 + engines: {node: '>= 10'} 3144 + cpu: [arm64] 3145 + os: [darwin] 3146 + 3147 + '@tailwindcss/oxide-darwin-x64@4.1.18': 3148 + resolution: {integrity: sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw==} 3149 + engines: {node: '>= 10'} 3150 + cpu: [x64] 3151 + os: [darwin] 3152 + 3153 + '@tailwindcss/oxide-freebsd-x64@4.1.18': 3154 + resolution: {integrity: sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA==} 3155 + engines: {node: '>= 10'} 3156 + cpu: [x64] 3157 + os: [freebsd] 3158 + 3159 + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.18': 3160 + resolution: {integrity: sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA==} 3161 + engines: {node: '>= 10'} 3162 + cpu: [arm] 3163 + os: [linux] 3164 + 3165 + '@tailwindcss/oxide-linux-arm64-gnu@4.1.18': 3166 + resolution: {integrity: sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw==} 3167 + engines: {node: '>= 10'} 3168 + cpu: [arm64] 3169 + os: [linux] 3170 + 3171 + '@tailwindcss/oxide-linux-arm64-musl@4.1.18': 3172 + resolution: {integrity: sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==} 3173 + engines: {node: '>= 10'} 3174 + cpu: [arm64] 3175 + os: [linux] 3176 + 3177 + '@tailwindcss/oxide-linux-x64-gnu@4.1.18': 3178 + resolution: {integrity: sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==} 3179 + engines: {node: '>= 10'} 3180 + cpu: [x64] 3181 + os: [linux] 3182 + 3183 + '@tailwindcss/oxide-linux-x64-musl@4.1.18': 3184 + resolution: {integrity: sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==} 3185 + engines: {node: '>= 10'} 3186 + cpu: [x64] 3187 + os: [linux] 3188 + 3189 + '@tailwindcss/oxide-wasm32-wasi@4.1.18': 3190 + resolution: {integrity: sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==} 3191 + engines: {node: '>=14.0.0'} 3192 + cpu: [wasm32] 3193 + bundledDependencies: 3194 + - '@napi-rs/wasm-runtime' 3195 + - '@emnapi/core' 3196 + - '@emnapi/runtime' 3197 + - '@tybys/wasm-util' 3198 + - '@emnapi/wasi-threads' 3199 + - tslib 3200 + 3201 + '@tailwindcss/oxide-win32-arm64-msvc@4.1.18': 3202 + resolution: {integrity: sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA==} 3203 + engines: {node: '>= 10'} 3204 + cpu: [arm64] 3205 + os: [win32] 3206 + 3207 + '@tailwindcss/oxide-win32-x64-msvc@4.1.18': 3208 + resolution: {integrity: sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q==} 3209 + engines: {node: '>= 10'} 3210 + cpu: [x64] 3211 + os: [win32] 3212 + 3213 + '@tailwindcss/oxide@4.1.18': 3214 + resolution: {integrity: sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A==} 3215 + engines: {node: '>= 10'} 3216 + 3217 + '@tailwindcss/postcss@4.1.18': 3218 + resolution: {integrity: sha512-Ce0GFnzAOuPyfV5SxjXGn0CubwGcuDB0zcdaPuCSzAa/2vII24JTkH+I6jcbXLb1ctjZMZZI6OjDaLPJQL1S0g==} 3219 + 3220 + '@tailwindcss/vite@4.1.18': 3221 + resolution: {integrity: sha512-jVA+/UpKL1vRLg6Hkao5jldawNmRo7mQYrZtNHMIVpLfLhDml5nMRUo/8MwoX2vNXvnaXNNMedrMfMugAVX1nA==} 3222 + peerDependencies: 3223 + vite: ^5.2.0 || ^6 || ^7 3224 + 3225 + '@tanstack/table-core@8.21.3': 3226 + resolution: {integrity: sha512-ldZXEhOBb8Is7xLs01fR3YEc3DERiz5silj8tnGkFZytt1abEvl/GhUmCE0PMLaMPTa3Jk4HbKmRlHmu+gCftg==} 3227 + engines: {node: '>=12'} 3228 + 3229 + '@tanstack/virtual-core@3.13.18': 3230 + resolution: {integrity: sha512-Mx86Hqu1k39icq2Zusq+Ey2J6dDWTjDvEv43PJtRCoEYTLyfaPnxIQ6iy7YAOK0NV/qOEmZQ/uCufrppZxTgcg==} 3231 + 3232 + '@tanstack/vue-table@8.21.3': 3233 + resolution: {integrity: sha512-rusRyd77c5tDPloPskctMyPLFEQUeBzxdQ+2Eow4F7gDPlPOB1UnnhzfpdvqZ8ZyX2rRNGmqNnQWm87OI2OQPw==} 3234 + engines: {node: '>=12'} 3235 + peerDependencies: 3236 + vue: '>=3.2' 3237 + 3238 + '@tanstack/vue-virtual@3.13.18': 3239 + resolution: {integrity: sha512-6pT8HdHtTU5Z+t906cGdCroUNA5wHjFXsNss9gwk7QAr1VNZtz9IQCs2Nhx0gABK48c+OocHl2As+TMg8+Hy4A==} 3240 + peerDependencies: 3241 + vue: ^2.7.0 || ^3.0.0 3242 + 3243 + '@tiptap/core@3.17.1': 3244 + resolution: {integrity: sha512-f8hB9MzXqsuXoF9qXEDEH5Fb3VgwhEFMBMfk9EKN88l5adri6oM8mt2XOWVxVVssjpEW0177zXSLPKWzoS/vrw==} 3245 + peerDependencies: 3246 + '@tiptap/pm': ^3.17.1 3247 + 3248 + '@tiptap/extension-blockquote@3.17.1': 3249 + resolution: {integrity: sha512-X4jU/fllJQ8QbjCHUafU4QIHBobyXP3yGBoOcXxUaKlWbLvUs0SQTREM3n6/86m2YyAxwTPG1cn3Xypf42DMAQ==} 3250 + peerDependencies: 3251 + '@tiptap/core': ^3.17.1 3252 + 3253 + '@tiptap/extension-bold@3.17.1': 3254 + resolution: {integrity: sha512-PZmrljcVBziJkQDXT/QJv4ESxVVQ0iRH+ruTzPda56Kk4h2310cSXGjI33W7rlCikGPoBAAjY/inujm46YB4bw==} 3255 + peerDependencies: 3256 + '@tiptap/core': ^3.17.1 3257 + 3258 + '@tiptap/extension-bubble-menu@3.17.1': 3259 + resolution: {integrity: sha512-z3E8biLiWlzZJwNHnB6j/ZyBdFrJmpl1lqKHc72JqahUHZvidZHdCOYssvR3fc6IaI7MXV13XY1DXUdFbatnaw==} 3260 + peerDependencies: 3261 + '@tiptap/core': ^3.17.1 3262 + '@tiptap/pm': ^3.17.1 3263 + 3264 + '@tiptap/extension-bullet-list@3.17.1': 3265 + resolution: {integrity: sha512-2zw17XHruOJQK7ntLVq0PmOLajFhvQ+U4/qTfJnV3VOsHkm+2GPAksFe7I7+X0XmSmDru0pcT339Yywx/6Aykw==} 3266 + peerDependencies: 3267 + '@tiptap/extension-list': ^3.17.1 3268 + 3269 + '@tiptap/extension-code-block@3.17.1': 3270 + resolution: {integrity: sha512-h4i+Y/cN7nMi0Tmlp6V1w4dI7NTqrUFSr1W/vMqnq4vn+c6jvm35KubKU5ry/1qQp8KfndDA02BtVQiMx6DmpA==} 3271 + peerDependencies: 3272 + '@tiptap/core': ^3.17.1 3273 + '@tiptap/pm': ^3.17.1 3274 + 3275 + '@tiptap/extension-code@3.17.1': 3276 + resolution: {integrity: sha512-4W0x1ZZqSnIVzQV0/b5VR0bktef2HykH5I/Czzir9yqoZ5zV2cLrMVuLvdFNgRIckU60tQLmHrfKWLF50OY0ew==} 3277 + peerDependencies: 3278 + '@tiptap/core': ^3.17.1 3279 + 3280 + '@tiptap/extension-collaboration@3.17.1': 3281 + resolution: {integrity: sha512-4ehZ5LL7M3nFfcogCG7bWRHIR/8366i1vz5i0PaaoArJga2N5sXnWcuBGXG7ykC8owbgrfL3agFxjHlhTl4sNw==} 3282 + peerDependencies: 3283 + '@tiptap/core': ^3.17.1 3284 + '@tiptap/pm': ^3.17.1 3285 + '@tiptap/y-tiptap': ^3.0.2 3286 + yjs: ^13 3287 + 3288 + '@tiptap/extension-document@3.17.1': 3289 + resolution: {integrity: sha512-F7Q5HoAU383HWFa6AXZQ5N6t6lTJzVjYM8z93XrtH/2GzDFwy1UmDSrsXqvgznedBLAOgCNVTNh9PjXpLoOUbg==} 3290 + peerDependencies: 3291 + '@tiptap/core': ^3.17.1 3292 + 3293 + '@tiptap/extension-drag-handle-vue-3@3.17.1': 3294 + resolution: {integrity: sha512-y5p0CYoTwvnqdf5FXJm1GZscEmSPdv2iKk4Pui/dhsnNIIkhMhB71bDpFBYez/von2NSReW4N9T/Oyju1XQ/rQ==} 3295 + peerDependencies: 3296 + '@tiptap/extension-drag-handle': ^3.17.1 3297 + '@tiptap/pm': ^3.17.1 3298 + '@tiptap/vue-3': ^3.17.1 3299 + vue: ^3.0.0 3300 + 3301 + '@tiptap/extension-drag-handle@3.17.1': 3302 + resolution: {integrity: sha512-RKrhs+z5ki4/WPKA8P+G9bRWoWAGXI3NjwrJtIA27PO19tZAwTZs6oKFcyTtp6FtMKgny3n0qm+UZxxRppDRUQ==} 3303 + peerDependencies: 3304 + '@tiptap/core': ^3.17.1 3305 + '@tiptap/extension-collaboration': ^3.17.1 3306 + '@tiptap/extension-node-range': ^3.17.1 3307 + '@tiptap/pm': ^3.17.1 3308 + '@tiptap/y-tiptap': ^3.0.2 3309 + 3310 + '@tiptap/extension-dropcursor@3.17.1': 3311 + resolution: {integrity: sha512-EKJYPb7OSk3p9mX1SmHt4ccw89w1P1d55hC8aPtZJ6jxAUd5MSuVwvEEVz7LGldUZD9HZz9WFQ0Sv9U73Bpkmw==} 3312 + peerDependencies: 3313 + '@tiptap/extensions': ^3.17.1 3314 + 3315 + '@tiptap/extension-floating-menu@3.17.1': 3316 + resolution: {integrity: sha512-zYkoYsxp+cZ8tBDODm4E8hnSaMTdDWKJuCQWY2Ep14oMPkAkSJr8sCLL1tOnNSAnhGwLJQtRLkZ41nvUEP6xKA==} 3317 + peerDependencies: 3318 + '@floating-ui/dom': ^1.0.0 3319 + '@tiptap/core': ^3.17.1 3320 + '@tiptap/pm': ^3.17.1 3321 + 3322 + '@tiptap/extension-gapcursor@3.17.1': 3323 + resolution: {integrity: sha512-xItmJZTi+Z6UbLBhpBBL9RZDNbDXf+ntWVgblAmxtpyEyNh5k5tkM6IP9SJRhk92uVfnFpH9qkGo66a537I8QA==} 3324 + peerDependencies: 3325 + '@tiptap/extensions': ^3.17.1 3326 + 3327 + '@tiptap/extension-hard-break@3.17.1': 3328 + resolution: {integrity: sha512-28FZPUho1Q2AB3ka5SVEVib5f9dMKbE1kewLZeRIOQ5FuFNholGIPL5X1tKcwGW7G3A7Y0fGxeNmIZJ3hrqhzA==} 3329 + peerDependencies: 3330 + '@tiptap/core': ^3.17.1 3331 + 3332 + '@tiptap/extension-heading@3.17.1': 3333 + resolution: {integrity: sha512-rT+Su/YnHdlikg8f78t6RXlc1sVSfp7B0fdJdtFgS2e6BBYJQoDMp5L9nt54RR9Yy953aDW2sko7NArUCb8log==} 3334 + peerDependencies: 3335 + '@tiptap/core': ^3.17.1 3336 + 3337 + '@tiptap/extension-horizontal-rule@3.17.1': 3338 + resolution: {integrity: sha512-CHG6LBtxV+3qj5EcCRVlpvSW5udKD6KbnXIGhP+Tvy+OabLGzO4HNxz3+duDE0pMR4eKX1libsnqffj0vq7mnQ==} 3339 + peerDependencies: 3340 + '@tiptap/core': ^3.17.1 3341 + '@tiptap/pm': ^3.17.1 3342 + 3343 + '@tiptap/extension-image@3.17.1': 3344 + resolution: {integrity: sha512-VbSSZ//5qijm8F0lQQ6K+DGnZgjLKYQY2c+O56QNEoN8BaCFrJlsVgF1ttrSRUmoG4XBNIMlAS07kZXvMZQr0g==} 3345 + peerDependencies: 3346 + '@tiptap/core': ^3.17.1 3347 + 3348 + '@tiptap/extension-italic@3.17.1': 3349 + resolution: {integrity: sha512-unfRLmvf680Y0UkBToUcrDkSEKO/wAjd3nQ7CNPMfAc8m+ZMReXkcgLpeVvnDEiHNsJ0PlYSW7a45tnQD9HQdg==} 3350 + peerDependencies: 3351 + '@tiptap/core': ^3.17.1 3352 + 3353 + '@tiptap/extension-link@3.17.1': 3354 + resolution: {integrity: sha512-5kdN7vms5hMXtjiophUkgvzy8dNGvGSmol1Sawh30TEPrgXc93Ayj7YyGZlbimInKZcD8q+Od/FFc+wkrof3nA==} 3355 + peerDependencies: 3356 + '@tiptap/core': ^3.17.1 3357 + '@tiptap/pm': ^3.17.1 3358 + 3359 + '@tiptap/extension-list-item@3.17.1': 3360 + resolution: {integrity: sha512-Qjj4oIa44cTX0E6aw/4+wleqX21t5jMDxeSqP5uQ8Q3IdD1GoR5+yo+41XAHELaeZOXLHLkAIbzIxik3pOqO8w==} 3361 + peerDependencies: 3362 + '@tiptap/extension-list': ^3.17.1 3363 + 3364 + '@tiptap/extension-list-keymap@3.17.1': 3365 + resolution: {integrity: sha512-zRidxbkJNe/j3nZpOGLnPeVdyciUM8MM+NHhxcjVKoNDA+/zEBfjXJ1dKC4UBsnSr4AS/3SCWBYHGXOoSqdUaA==} 3366 + peerDependencies: 3367 + '@tiptap/extension-list': ^3.17.1 3368 + 3369 + '@tiptap/extension-list@3.17.1': 3370 + resolution: {integrity: sha512-LHKIxmXe5Me+vJZKhiwMBGHlApaBIAduNMRUpm5mkY7ER/m96zKR0VqrJd4LjVVH2iDvck5h1Ka4396MHWlKNg==} 3371 + peerDependencies: 3372 + '@tiptap/core': ^3.17.1 3373 + '@tiptap/pm': ^3.17.1 3374 + 3375 + '@tiptap/extension-mention@3.17.1': 3376 + resolution: {integrity: sha512-rggEOD7cnuglVtc7zvVYx/2u7w7XpkdR6BTSXNWohsCJDwpKx5MBfuQMXULlRKY9/N49FgwHzP8ipkSvgOtiEw==} 3377 + peerDependencies: 3378 + '@tiptap/core': ^3.17.1 3379 + '@tiptap/pm': ^3.17.1 3380 + '@tiptap/suggestion': ^3.17.1 3381 + 3382 + '@tiptap/extension-node-range@3.17.1': 3383 + resolution: {integrity: sha512-tGt/Yr7aALKsrerAldQG5iBUFmml2i25nrjLIU+SR1Bzm+OWxTSXxOWunkowdquh2f/Lft5GnnSIs3e3Jr20Bg==} 3384 + peerDependencies: 3385 + '@tiptap/core': ^3.17.1 3386 + '@tiptap/pm': ^3.17.1 3387 + 3388 + '@tiptap/extension-ordered-list@3.17.1': 3389 + resolution: {integrity: sha512-pahAXbVajqX0Y51Zge9jKZlCtPV1oiq5Fbzs7gHF80KICIKf44i/AsUvfdJyT2N5/8kZrAMQHEiU/UgTMrhM3w==} 3390 + peerDependencies: 3391 + '@tiptap/extension-list': ^3.17.1 3392 + 3393 + '@tiptap/extension-paragraph@3.17.1': 3394 + resolution: {integrity: sha512-Vl+xAlINaPtX8XTPvPmeveYMEIMLs8gA7ItcKpyyo4cCzAfVCY3DKuWzOkQGUf7DKrhyJQZhpgLNMaq+h5sTSw==} 3395 + peerDependencies: 3396 + '@tiptap/core': ^3.17.1 3397 + 3398 + '@tiptap/extension-placeholder@3.17.1': 3399 + resolution: {integrity: sha512-cE8Rij5/1t4KnWE7GaDewhBek9DKNB+97yrxyggMegILg6v195hOmOkRZkyfnFMYZoBDlrfSAtX9wBvbZBqIsg==} 3400 + peerDependencies: 3401 + '@tiptap/extensions': ^3.17.1 3402 + 3403 + '@tiptap/extension-strike@3.17.1': 3404 + resolution: {integrity: sha512-c6fS6YIhxoU55etlJgM0Xqker+jn7I1KC7GVu6ljmda8I00K3/lOLZgvFUNPmgp8EJWtyTctj+3D3D+PaZaFAA==} 3405 + peerDependencies: 3406 + '@tiptap/core': ^3.17.1 3407 + 3408 + '@tiptap/extension-text@3.17.1': 3409 + resolution: {integrity: sha512-rGml96vokQbvPB+w6L3+WKyYJWwqELaLdFUr1WMgg+py5uNYGJYAExYNAbDb5biWJBrX9GgMlCaNeiJj849L1w==} 3410 + peerDependencies: 3411 + '@tiptap/core': ^3.17.1 3412 + 3413 + '@tiptap/extension-underline@3.17.1': 3414 + resolution: {integrity: sha512-6RdBzmkg6DYs0EqPyoqLGkISXzCnPqM/q3A6nh3EmFmORcIDfuNmcidvA6EImebK8KQGmtZKsRhQSnK4CNQ39g==} 3415 + peerDependencies: 3416 + '@tiptap/core': ^3.17.1 3417 + 3418 + '@tiptap/extensions@3.17.1': 3419 + resolution: {integrity: sha512-aQ4WA5bdRpv9yPQ6rRdiqwlMZ1eJw1HyEaNPQhOr2HVhQ0EqSDIOEXF4ymCveGAHxXbxNvtQ+4t1ymQEikGfXA==} 3420 + peerDependencies: 3421 + '@tiptap/core': ^3.17.1 3422 + '@tiptap/pm': ^3.17.1 3423 + 3424 + '@tiptap/markdown@3.17.1': 3425 + resolution: {integrity: sha512-GyjSTF0TabmlVryf2o98QNYCtqbfPn2CpKdGeNONF6npvT7+aHRE1j7LR8jK34nkQmHYUVuSfoYRzKfIsJ/vBA==} 3426 + peerDependencies: 3427 + '@tiptap/core': ^3.17.1 3428 + '@tiptap/pm': ^3.17.1 3429 + 3430 + '@tiptap/pm@3.17.1': 3431 + resolution: {integrity: sha512-UyVLkN8axV/zop6Se2DCBJRu5DM21X0XEQvwEC5P/vk8eC9OcQZ3FLtxeYy2ZjpAZUzBGLw0/BGsmEip/n7olw==} 3432 + 3433 + '@tiptap/starter-kit@3.17.1': 3434 + resolution: {integrity: sha512-3vBGqag9mwuQoWTrfQlULtHeoFs7k/2Q8CREf3Y79hv2fqAXTvTOKlWYPSgZhiGVMp6Dti7BDiE9Y1QpvAat2g==} 3435 + 3436 + '@tiptap/suggestion@3.17.1': 3437 + resolution: {integrity: sha512-a188uVYjlLsUiwK3Ki7KsaWVWC0u28KsqGEAqCk9ECYmtVY99Hrb+rcAwGpMjA7tn8WAwThOxiLISoMdpuqXwg==} 3438 + peerDependencies: 3439 + '@tiptap/core': ^3.17.1 3440 + '@tiptap/pm': ^3.17.1 3441 + 3442 + '@tiptap/vue-3@3.17.1': 3443 + resolution: {integrity: sha512-0NaAY3+S1KZuSY9Sl6e0zvgcX8JvKKwDamY+YOl/ZO4GRaA1VnVkS/OJtofuTAODJmoXWL8wS9NwOgAzKeAvkw==} 3444 + peerDependencies: 3445 + '@floating-ui/dom': ^1.0.0 3446 + '@tiptap/core': ^3.17.1 3447 + '@tiptap/pm': ^3.17.1 3448 + vue: ^3.0.0 3449 + 3450 + '@tiptap/y-tiptap@3.0.2': 3451 + resolution: {integrity: sha512-flMn/YW6zTbc6cvDaUPh/NfLRTXDIqgpBUkYzM74KA1snqQwhOMjnRcnpu4hDFrTnPO6QGzr99vRyXEA7M44WA==} 3452 + engines: {node: '>=16.0.0', npm: '>=8.0.0'} 3453 + peerDependencies: 3454 + prosemirror-model: ^1.7.1 3455 + prosemirror-state: ^1.2.3 3456 + prosemirror-view: ^1.9.10 3457 + y-protocols: ^1.0.1 3458 + yjs: ^13.5.38 3459 + 2945 3460 '@tybys/wasm-util@0.10.1': 2946 3461 resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==} 2947 3462 2948 3463 '@types/chai@5.2.3': 2949 3464 resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==} 3465 + 3466 + '@types/debug@4.1.12': 3467 + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} 2950 3468 2951 3469 '@types/deep-eql@4.0.2': 2952 3470 resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==} ··· 2972 3490 '@types/json-schema@7.0.15': 2973 3491 resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 2974 3492 3493 + '@types/linkify-it@5.0.0': 3494 + resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==} 3495 + 3496 + '@types/lodash@4.17.23': 3497 + resolution: {integrity: sha512-RDvF6wTulMPjrNdCoYRC8gNR880JNGT8uB+REUpC2Ns4pRqQJhGz90wh7rgdXDPpCczF3VGktDuFGVnz8zP7HA==} 3498 + 3499 + '@types/markdown-it@14.1.2': 3500 + resolution: {integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==} 3501 + 2975 3502 '@types/mdast@4.0.4': 2976 3503 resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} 3504 + 3505 + '@types/mdurl@2.0.0': 3506 + resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==} 3507 + 3508 + '@types/ms@2.1.0': 3509 + resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} 2977 3510 2978 3511 '@types/node@24.10.9': 2979 3512 resolution: {integrity: sha512-ne4A0IpG3+2ETuREInjPNhUGis1SFjv1d5asp8MzEAGtOZeTeHVDOYqOgqfhvseqg/iXty2hjBf1zAOb7RNiNw==} ··· 2997 3530 '@types/trusted-types@2.0.7': 2998 3531 resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==} 2999 3532 3533 + '@types/unist@2.0.11': 3534 + resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} 3535 + 3000 3536 '@types/unist@3.0.3': 3001 3537 resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} 3002 3538 3003 3539 '@types/validate-npm-package-name@4.0.2': 3004 3540 resolution: {integrity: sha512-lrpDziQipxCEeK5kWxvljWYhUvOiB2A9izZd9B2AFarYAkqZshb4lPbRs7zKEic6eGtH8V/2qJW+dPp9OtF6bw==} 3541 + 3542 + '@types/web-bluetooth@0.0.20': 3543 + resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==} 3005 3544 3006 3545 '@types/web-bluetooth@0.0.21': 3007 3546 resolution: {integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==} ··· 3384 3923 '@vue/language-core@3.2.2': 3385 3924 resolution: {integrity: sha512-5DAuhxsxBN9kbriklh3Q5AMaJhyOCNiQJvCskN9/30XOpdLiqZU9Q+WvjArP17ubdGEyZtBzlIeG5nIjEbNOrQ==} 3386 3925 3926 + '@vue/language-core@3.2.4': 3927 + resolution: {integrity: sha512-bqBGuSG4KZM45KKTXzGtoCl9cWju5jsaBKaJJe3h5hRAAWpZUuj5G+L+eI01sPIkm4H6setKRlw7E85wLdDNew==} 3928 + 3387 3929 '@vue/reactivity@3.5.27': 3388 3930 resolution: {integrity: sha512-vvorxn2KXfJ0nBEnj4GYshSgsyMNFnIQah/wczXlsNXt+ijhugmW+PpJ2cNPe4V6jpnBcs0MhCODKllWG+nvoQ==} 3389 3931 ··· 3404 3946 '@vue/test-utils@2.4.6': 3405 3947 resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==} 3406 3948 3949 + '@vueuse/core@10.11.1': 3950 + resolution: {integrity: sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==} 3951 + 3952 + '@vueuse/core@12.8.2': 3953 + resolution: {integrity: sha512-HbvCmZdzAu3VGi/pWYm5Ut+Kd9mn1ZHnn4L5G8kOQTPs/IwIAmJoBrmYk2ckLArgMXZj0AW3n5CAejLUO+PhdQ==} 3954 + 3407 3955 '@vueuse/core@14.1.0': 3408 3956 resolution: {integrity: sha512-rgBinKs07hAYyPF834mDTigH7BtPqvZ3Pryuzt1SD/lg5wEcWqvwzXXYGEDb2/cP0Sj5zSvHl3WkmMELr5kfWw==} 3409 3957 peerDependencies: 3410 3958 vue: ^3.5.0 3411 3959 3960 + '@vueuse/integrations@14.1.0': 3961 + resolution: {integrity: sha512-eNQPdisnO9SvdydTIXnTE7c29yOsJBD/xkwEyQLdhDC/LKbqrFpXHb3uS//7NcIrQO3fWVuvMGp8dbK6mNEMCA==} 3962 + peerDependencies: 3963 + async-validator: ^4 3964 + axios: ^1 3965 + change-case: ^5 3966 + drauu: ^0.4 3967 + focus-trap: ^7 3968 + fuse.js: ^7 3969 + idb-keyval: ^6 3970 + jwt-decode: ^4 3971 + nprogress: ^0.2 3972 + qrcode: ^1.5 3973 + sortablejs: ^1 3974 + universal-cookie: ^7 || ^8 3975 + vue: ^3.5.0 3976 + peerDependenciesMeta: 3977 + async-validator: 3978 + optional: true 3979 + axios: 3980 + optional: true 3981 + change-case: 3982 + optional: true 3983 + drauu: 3984 + optional: true 3985 + focus-trap: 3986 + optional: true 3987 + fuse.js: 3988 + optional: true 3989 + idb-keyval: 3990 + optional: true 3991 + jwt-decode: 3992 + optional: true 3993 + nprogress: 3994 + optional: true 3995 + qrcode: 3996 + optional: true 3997 + sortablejs: 3998 + optional: true 3999 + universal-cookie: 4000 + optional: true 4001 + 4002 + '@vueuse/metadata@10.11.1': 4003 + resolution: {integrity: sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==} 4004 + 4005 + '@vueuse/metadata@12.8.2': 4006 + resolution: {integrity: sha512-rAyLGEuoBJ/Il5AmFHiziCPdQzRt88VxR+Y/A/QhJ1EWtWqPBBAxTAFaSkviwEuOEZNtW8pvkPgoCZQ+HxqW1A==} 4007 + 3412 4008 '@vueuse/metadata@14.1.0': 3413 4009 resolution: {integrity: sha512-7hK4g015rWn2PhKcZ99NyT+ZD9sbwm7SGvp7k+k+rKGWnLjS/oQozoIZzWfCewSUeBmnJkIb+CNr7Zc/EyRnnA==} 3414 4010 ··· 3418 4014 nuxt: ^3.0.0 || ^4.0.0-0 3419 4015 vue: ^3.5.0 3420 4016 4017 + '@vueuse/shared@10.11.1': 4018 + resolution: {integrity: sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==} 4019 + 4020 + '@vueuse/shared@12.8.2': 4021 + resolution: {integrity: sha512-dznP38YzxZoNloI0qpEfpkms8knDtaoQ6Y/sfS0L7Yki4zh40LFHEhur0odJC6xTHG5dxWVPiUWBXn+wCG2s5w==} 4022 + 3421 4023 '@vueuse/shared@14.1.0': 3422 4024 resolution: {integrity: sha512-EcKxtYvn6gx1F8z9J5/rsg3+lTQnvOruQd8fUecW99DCK04BkWD7z5KQ/wTAx+DazyoEE9dJt/zV8OIEQbM6kw==} 3423 4025 peerDependencies: ··· 3468 4070 '@webassemblyjs/wast-printer@1.14.1': 3469 4071 resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==} 3470 4072 4073 + '@webcontainer/env@1.1.1': 4074 + resolution: {integrity: sha512-6aN99yL695Hi9SuIk1oC88l9o0gmxL1nGWWQ/kNy81HigJ0FoaoTXpytCj6ItzgyCEwA9kF1wixsTuv5cjsgng==} 4075 + 3471 4076 '@xtuc/ieee754@1.2.0': 3472 4077 resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} 3473 4078 ··· 3486 4091 resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} 3487 4092 engines: {node: '>=6.5'} 3488 4093 4094 + accepts@2.0.0: 4095 + resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==} 4096 + engines: {node: '>= 0.6'} 4097 + 3489 4098 acorn-import-attributes@1.9.5: 3490 4099 resolution: {integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==} 3491 4100 peerDependencies: ··· 3513 4122 3514 4123 ajv-formats@2.1.1: 3515 4124 resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==} 4125 + peerDependencies: 4126 + ajv: ^8.0.0 4127 + peerDependenciesMeta: 4128 + ajv: 4129 + optional: true 4130 + 4131 + ajv-formats@3.0.1: 4132 + resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==} 3516 4133 peerDependencies: 3517 4134 ajv: ^8.0.0 3518 4135 peerDependenciesMeta: ··· 3572 4189 argparse@2.0.1: 3573 4190 resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 3574 4191 4192 + aria-hidden@1.2.6: 4193 + resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==} 4194 + engines: {node: '>=10'} 4195 + 3575 4196 array-buffer-byte-length@1.0.2: 3576 4197 resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} 3577 4198 engines: {node: '>= 0.4'} ··· 3603 4224 resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} 3604 4225 engines: {node: '>= 0.4'} 3605 4226 4227 + async-lock@1.4.1: 4228 + resolution: {integrity: sha512-Az2ZTpuytrtqENulXwO3GGv1Bztugx6TT37NIo7imr/Qo0gsYiGtSdBa2B6fsXhTpVZDNfu1Qn3pk531e3q+nQ==} 4229 + 3606 4230 async-sema@3.1.1: 3607 4231 resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==} 3608 4232 ··· 3613 4237 resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} 3614 4238 engines: {node: '>= 4.0.0'} 3615 4239 4240 + automd@0.4.2: 4241 + resolution: {integrity: sha512-9Gey0OG4gu2IzoLbwRj2fqyntJPbEFox/5KdOgg0zflkzq5lyOapWE324xYOvVdk9hgyjiMvDcT6XUPAIJhmag==} 4242 + hasBin: true 4243 + 3616 4244 autoprefixer@10.4.23: 3617 4245 resolution: {integrity: sha512-YYTXSFulfwytnjAPlw8QHncHJmlvFKtczb8InXaAx9Q0LbfDnfEYDE55omerIJKihhmU61Ft+cAOSzQVaBUmeA==} 3618 4246 engines: {node: ^10 || ^12 || >=14} ··· 3651 4279 peerDependencies: 3652 4280 '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 3653 4281 4282 + bail@2.0.2: 4283 + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} 4284 + 3654 4285 balanced-match@1.0.2: 3655 4286 resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 3656 4287 ··· 3673 4304 resolution: {integrity: sha512-agD0MgJFUP/4nvjqzIB29zRPUuCF7Ge6mEv9s8dHrtYD7QWXRcx75rOADE/d5ah1NI+0vkDl0yorDd5U852IQQ==} 3674 4305 hasBin: true 3675 4306 4307 + better-sqlite3@12.5.0: 4308 + resolution: {integrity: sha512-WwCZ/5Diz7rsF29o27o0Gcc1Du+l7Zsv7SYtVPG0X3G/uUI1LqdxrQI7c9Hs2FWpqXXERjW9hp6g3/tH7DlVKg==} 4309 + engines: {node: 20.x || 22.x || 23.x || 24.x || 25.x} 4310 + 4311 + better-sqlite3@12.6.2: 4312 + resolution: {integrity: sha512-8VYKM3MjCa9WcaSAI3hzwhmyHVlH8tiGFwf0RlTsZPWJ1I5MkzjiudCo4KC4DxOaL/53A5B1sI/IbldNFDbsKA==} 4313 + engines: {node: 20.x || 22.x || 23.x || 24.x || 25.x} 4314 + 3676 4315 bidi-js@1.0.3: 3677 4316 resolution: {integrity: sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==} 3678 4317 ··· 3685 4324 birpc@4.0.0: 3686 4325 resolution: {integrity: sha512-LShSxJP0KTmd101b6DRyGBj57LZxSDYWKitQNW/mi8GRMvZb078Uf9+pveax1DrVL89vm7mWe+TovdI/UDOuPw==} 3687 4326 4327 + bl@4.1.0: 4328 + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} 4329 + 4330 + body-parser@2.2.2: 4331 + resolution: {integrity: sha512-oP5VkATKlNwcgvxi0vM0p/D3n2C3EReYVX+DNYs5TjZFn/oQt2j+4sVJtSMr18pdRr8wjTcBl6LoV+FUwzPmNA==} 4332 + engines: {node: '>=18'} 4333 + 3688 4334 boolbase@1.0.0: 3689 4335 resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} 3690 4336 ··· 3713 4359 buffer-from@1.1.2: 3714 4360 resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} 3715 4361 4362 + buffer@5.7.1: 4363 + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} 4364 + 3716 4365 buffer@6.0.3: 3717 4366 resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} 3718 4367 3719 4368 bundle-name@4.1.0: 3720 4369 resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==} 3721 4370 engines: {node: '>=18'} 4371 + 4372 + bytes@3.1.2: 4373 + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} 4374 + engines: {node: '>= 0.8'} 3722 4375 3723 4376 c12@3.3.3: 3724 4377 resolution: {integrity: sha512-750hTRvgBy5kcMNPdh95Qo+XUBeGo8C7nsKSmedDmaQI+E0r82DwHeM6vBewDe4rGFbnxoa4V9pw+sPh5+Iz8Q==} ··· 3764 4417 resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 3765 4418 engines: {node: '>=10'} 3766 4419 4420 + char-regex@1.0.2: 4421 + resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} 4422 + engines: {node: '>=10'} 4423 + 3767 4424 character-entities-html4@2.1.0: 3768 4425 resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} 3769 4426 3770 4427 character-entities-legacy@3.0.0: 3771 4428 resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} 3772 4429 4430 + character-entities@2.0.2: 4431 + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} 4432 + 4433 + character-reference-invalid@2.0.1: 4434 + resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} 4435 + 3773 4436 chokidar@4.0.3: 3774 4437 resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} 3775 4438 engines: {node: '>= 14.16.0'} ··· 3777 4440 chokidar@5.0.0: 3778 4441 resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==} 3779 4442 engines: {node: '>= 20.19.0'} 4443 + 4444 + chownr@1.1.4: 4445 + resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} 3780 4446 3781 4447 chownr@3.0.0: 3782 4448 resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==} ··· 3796 4462 3797 4463 citty@0.2.0: 3798 4464 resolution: {integrity: sha512-8csy5IBFI2ex2hTVpaHN2j+LNE199AgiI7y4dMintrr8i0lQiFn+0AWMZrWdHKIgMOer65f8IThysYhoReqjWA==} 4465 + 4466 + clean-git-ref@2.0.1: 4467 + resolution: {integrity: sha512-bLSptAy2P0s6hU4PzuIMKmMJJSE6gLXGH1cntDu7bWJUksvuM+7ReOK61mozULErYvP6a15rnYl0zFDef+pyPw==} 3799 4468 3800 4469 cli-cursor@5.0.0: 3801 4470 resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} ··· 3834 4503 colorette@2.0.20: 3835 4504 resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} 3836 4505 4506 + colortranslator@5.0.0: 4507 + resolution: {integrity: sha512-Z3UPUKasUVDFCDYAjP2fmlVRf1jFHJv1izAmPjiOa0OCIw1W7iC8PZ2GsoDa8uZv+mKyWopxxStT9q05+27h7w==} 4508 + 3837 4509 comma-separated-tokens@2.0.3: 3838 4510 resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} 3839 4511 ··· 3882 4554 resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==} 3883 4555 engines: {node: ^14.18.0 || >=16.10.0} 3884 4556 4557 + content-disposition@1.0.1: 4558 + resolution: {integrity: sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==} 4559 + engines: {node: '>=18'} 4560 + 4561 + content-type@1.0.5: 4562 + resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} 4563 + engines: {node: '>= 0.6'} 4564 + 3885 4565 convert-source-map@2.0.0: 3886 4566 resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 3887 4567 ··· 3891 4571 cookie-es@2.0.0: 3892 4572 resolution: {integrity: sha512-RAj4E421UYRgqokKUmotqAwuplYw15qtdXfY+hGzgCJ/MBjCVZcSoHK/kH9kocfjRjcDME7IiDWR/1WX1TM2Pg==} 3893 4573 4574 + cookie-signature@1.2.2: 4575 + resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==} 4576 + engines: {node: '>=6.6.0'} 4577 + 4578 + cookie@0.7.2: 4579 + resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==} 4580 + engines: {node: '>= 0.6'} 4581 + 3894 4582 copy-anything@4.0.5: 3895 4583 resolution: {integrity: sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==} 3896 4584 engines: {node: '>=18'} ··· 3904 4592 core-util-is@1.0.3: 3905 4593 resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} 3906 4594 4595 + cors@2.8.6: 4596 + resolution: {integrity: sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==} 4597 + engines: {node: '>= 0.10'} 4598 + 3907 4599 crc-32@1.2.2: 3908 4600 resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==} 3909 4601 engines: {node: '>=0.8'} ··· 3912 4604 crc32-stream@6.0.0: 3913 4605 resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==} 3914 4606 engines: {node: '>= 14'} 4607 + 4608 + crelt@1.0.6: 4609 + resolution: {integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==} 3915 4610 3916 4611 croner@9.1.0: 3917 4612 resolution: {integrity: sha512-p9nwwR4qyT5W996vBZhdvBCnMhicY5ytZkR4D1Xj0wuTDEiMnjwR57Q3RXYY/s0EpX6Ay3vgIcfaR+ewGHsi+g==} ··· 3970 4665 resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 3971 4666 engines: {node: '>=4'} 3972 4667 hasBin: true 4668 + 4669 + cssfilter@0.0.10: 4670 + resolution: {integrity: sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==} 3973 4671 3974 4672 cssnano-preset-default@7.0.10: 3975 4673 resolution: {integrity: sha512-6ZBjW0Lf1K1Z+0OKUAUpEN62tSXmYChXWi2NAA0afxEVsj9a+MbcB1l5qel6BHJHmULai2fCGRthCeKSFbScpA==} ··· 4059 4757 resolution: {integrity: sha512-69NZfbKIzux1vBOd31al3XnMnH+2mqDhEgLdpygErm4d60N+UwA5Sq5WFjmEDQzumgB9fElojGwWG0vybVfFmA==} 4060 4758 engines: {node: '>=8.6'} 4061 4759 4760 + decode-named-character-reference@1.3.0: 4761 + resolution: {integrity: sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==} 4762 + 4763 + decompress-response@6.0.0: 4764 + resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} 4765 + engines: {node: '>=10'} 4766 + 4767 + deep-extend@0.6.0: 4768 + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} 4769 + engines: {node: '>=4.0.0'} 4770 + 4062 4771 deep-is@0.1.4: 4063 4772 resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 4064 4773 ··· 4108 4817 destr@2.0.5: 4109 4818 resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==} 4110 4819 4820 + detab@3.0.2: 4821 + resolution: {integrity: sha512-7Bp16Bk8sk0Y6gdXiCtnpGbghn8atnTJdd/82aWvS5ESnlcNvgUc10U2NYS0PAiDSGjWiI8qs/Cv1b2uSGdQ8w==} 4822 + 4111 4823 detect-libc@2.1.2: 4112 4824 resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} 4113 4825 engines: {node: '>=8'} ··· 4121 4833 dfa@1.2.0: 4122 4834 resolution: {integrity: sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==} 4123 4835 4836 + didyoumean2@7.0.4: 4837 + resolution: {integrity: sha512-+yW4SNY7W2DOWe2Jx5H4c2qMTFbLGM6wIyoDPkAPy66X+sD1KfYjBPAIWPVsYqMxelflaMQCloZDudELIPhLqA==} 4838 + engines: {node: ^18.12.0 || >=20.9.0} 4839 + 4840 + diff3@0.0.3: 4841 + resolution: {integrity: sha512-iSq8ngPOt0K53A6eVr4d5Kn6GNrM2nQZtC740pzIriHtn4pOQ2lyzEXQMBeVcWERN0ye7fhBsk9PbLLQOnUx/g==} 4842 + 4124 4843 diff@8.0.3: 4125 4844 resolution: {integrity: sha512-qejHi7bcSD4hQAZE0tNAawRK1ZtafHDmMTMkrrIGgSLl7hTnQHmKCeB45xAcbfTqK2zowkM3j3bHt/4b/ARbYQ==} 4126 4845 engines: {node: '>=0.3.1'} 4846 + 4847 + docus@5.4.4: 4848 + resolution: {integrity: sha512-OkWHn85YjbcivLWhl1YAGX1fE04yd8R5l0aaB1oAmeYfdmKlgkDwD54352pRmZ8P3X1be6PNujLrU9yc0Bbr9w==} 4849 + peerDependencies: 4850 + better-sqlite3: 12.x 4851 + nuxt: 4.x 4127 4852 4128 4853 dom-serializer@2.0.0: 4129 4854 resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} ··· 4185 4910 electron-to-chromium@1.5.267: 4186 4911 resolution: {integrity: sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==} 4187 4912 4913 + embla-carousel-auto-height@8.6.0: 4914 + resolution: {integrity: sha512-/HrJQOEM6aol/oF33gd2QlINcXy3e19fJWvHDuHWp2bpyTa+2dm9tVVJak30m2Qy6QyQ6Fc8DkImtv7pxWOJUQ==} 4915 + peerDependencies: 4916 + embla-carousel: 8.6.0 4917 + 4918 + embla-carousel-auto-scroll@8.6.0: 4919 + resolution: {integrity: sha512-WT9fWhNXFpbQ6kP+aS07oF5IHYLZ1Dx4DkwgCY8Hv2ZyYd2KMCPfMV1q/cA3wFGuLO7GMgKiySLX90/pQkcOdQ==} 4920 + peerDependencies: 4921 + embla-carousel: 8.6.0 4922 + 4923 + embla-carousel-autoplay@8.6.0: 4924 + resolution: {integrity: sha512-OBu5G3nwaSXkZCo1A6LTaFMZ8EpkYbwIaH+bPqdBnDGQ2fh4+NbzjXjs2SktoPNKCtflfVMc75njaDHOYXcrsA==} 4925 + peerDependencies: 4926 + embla-carousel: 8.6.0 4927 + 4928 + embla-carousel-class-names@8.6.0: 4929 + resolution: {integrity: sha512-l1hm1+7GxQ+zwdU2sea/LhD946on7XO2qk3Xq2XWSwBaWfdgchXdK567yzLtYSHn4sWYdiX+x4nnaj+saKnJkw==} 4930 + peerDependencies: 4931 + embla-carousel: 8.6.0 4932 + 4933 + embla-carousel-fade@8.6.0: 4934 + resolution: {integrity: sha512-qaYsx5mwCz72ZrjlsXgs1nKejSrW+UhkbOMwLgfRT7w2LtdEB03nPRI06GHuHv5ac2USvbEiX2/nAHctcDwvpg==} 4935 + peerDependencies: 4936 + embla-carousel: 8.6.0 4937 + 4938 + embla-carousel-reactive-utils@8.6.0: 4939 + resolution: {integrity: sha512-fMVUDUEx0/uIEDM0Mz3dHznDhfX+znCCDCeIophYb1QGVM7YThSWX+wz11zlYwWFOr74b4QLGg0hrGPJeG2s4A==} 4940 + peerDependencies: 4941 + embla-carousel: 8.6.0 4942 + 4943 + embla-carousel-vue@8.6.0: 4944 + resolution: {integrity: sha512-v8UO5UsyLocZnu/LbfQA7Dn2QHuZKurJY93VUmZYP//QRWoCWOsionmvLLAlibkET3pGPs7++03VhJKbWD7vhQ==} 4945 + peerDependencies: 4946 + vue: ^3.2.37 4947 + 4948 + embla-carousel-wheel-gestures@8.1.0: 4949 + resolution: {integrity: sha512-J68jkYrxbWDmXOm2n2YHl+uMEXzkGSKjWmjaEgL9xVvPb3HqVmg6rJSKfI3sqIDVvm7mkeTy87wtG/5263XqHQ==} 4950 + engines: {node: '>=10'} 4951 + peerDependencies: 4952 + embla-carousel: ^8.0.0 || ~8.0.0-rc03 4953 + 4954 + embla-carousel@8.6.0: 4955 + resolution: {integrity: sha512-SjWyZBHJPbqxHOzckOfo8lHisEaJWmwd23XppYFYVh10bU66/Pn5tkVkbkCMZVdbUE5eTCI2nD8OyIP4Z+uwkA==} 4956 + 4188 4957 emoji-regex-xs@2.0.1: 4189 4958 resolution: {integrity: sha512-1QFuh8l7LqUcKe24LsPUNzjrzJQ7pgRwp1QMcZ5MX6mFplk2zQ08NVCM84++1cveaUUYtcCYHmeFEuNg16sU4g==} 4190 4959 engines: {node: '>=10.0.0'} ··· 4198 4967 emoji-regex@9.2.2: 4199 4968 resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 4200 4969 4970 + emojilib@2.4.0: 4971 + resolution: {integrity: sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==} 4972 + 4973 + emoticon@4.1.0: 4974 + resolution: {integrity: sha512-VWZfnxqwNcc51hIy/sbOdEem6D+cVtpPzEEtVAFdaas30+1dgkyaOQ4sQ6Bp0tOMqWO1v+HQfYaoodOkdhK6SQ==} 4975 + 4201 4976 empathic@2.0.0: 4202 4977 resolution: {integrity: sha512-i6UzDscO/XfAcNYD75CfICkmfLedpyPDdozrLMmQc5ORaQcdMoc21OnlEylMIqI7U8eniKrPMxxtj8k0vhmJhA==} 4203 4978 engines: {node: '>=14'} ··· 4209 4984 encoding@0.1.13: 4210 4985 resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==} 4211 4986 4987 + end-of-stream@1.4.5: 4988 + resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==} 4989 + 4990 + engine.io-client@6.6.4: 4991 + resolution: {integrity: sha512-+kjUJnZGwzewFDw951CDWcwj35vMNf2fcj7xQWOctq1F2i1jkDdVvdFG9kM/BEChymCH36KgjnW0NsL58JYRxw==} 4992 + 4993 + engine.io-parser@5.2.3: 4994 + resolution: {integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==} 4995 + engines: {node: '>=10.0.0'} 4996 + 4212 4997 enhanced-resolve@5.18.4: 4213 4998 resolution: {integrity: sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==} 4214 4999 engines: {node: '>=10.13.0'} ··· 4381 5166 resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} 4382 5167 engines: {node: '>=0.8.x'} 4383 5168 5169 + eventsource-parser@3.0.6: 5170 + resolution: {integrity: sha512-Vo1ab+QXPzZ4tCa8SwIHJFaSzy4R6SHf7BY79rFBDf0idraZWAkYrDjDj8uWaSm3S2TK+hJ7/t1CEmZ7jXw+pg==} 5171 + engines: {node: '>=18.0.0'} 5172 + 5173 + eventsource@3.0.7: 5174 + resolution: {integrity: sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==} 5175 + engines: {node: '>=18.0.0'} 5176 + 4384 5177 execa@8.0.1: 4385 5178 resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} 4386 5179 engines: {node: '>=16.17'} ··· 4389 5182 resolution: {integrity: sha512-9Be3ZoN4LmYR90tUoVu2te2BsbzHfhJyfEiAVfz7N5/zv+jduIfLrV2xdQXOHbaD6KgpGdO9PRPM1Y4Q9QkPkA==} 4390 5183 engines: {node: ^18.19.0 || >=20.5.0} 4391 5184 5185 + expand-template@2.0.3: 5186 + resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} 5187 + engines: {node: '>=6'} 5188 + 5189 + express-rate-limit@7.5.1: 5190 + resolution: {integrity: sha512-7iN8iPMDzOMHPUYllBEsQdWVB6fPDMPqwjBaFrgr4Jgr/+okjvzAy+UHlYYL/Vs0OsOrMkwS6PJDkFlJwoxUnw==} 5191 + engines: {node: '>= 16'} 5192 + peerDependencies: 5193 + express: '>= 4.11' 5194 + 5195 + express@5.2.1: 5196 + resolution: {integrity: sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==} 5197 + engines: {node: '>= 18'} 5198 + 4392 5199 exsolve@1.0.8: 4393 5200 resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==} 4394 5201 5202 + extend@3.0.2: 5203 + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} 5204 + 4395 5205 fake-indexeddb@6.2.5: 4396 5206 resolution: {integrity: sha512-CGnyrvbhPlWYMngksqrSSUT1BAVP49dZocrHuK0SvtR0D5TMs5wP0o3j7jexDJW01KSadjBp1M/71o/KR3nD1w==} 4397 5207 engines: {node: '>=18'} ··· 4417 5227 4418 5228 fast-uri@3.1.0: 4419 5229 resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==} 5230 + 5231 + fastest-levenshtein@1.0.16: 5232 + resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} 5233 + engines: {node: '>= 4.9.1'} 4420 5234 4421 5235 fastq@1.20.1: 4422 5236 resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==} ··· 4451 5265 resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 4452 5266 engines: {node: '>=8'} 4453 5267 5268 + finalhandler@2.1.1: 5269 + resolution: {integrity: sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==} 5270 + engines: {node: '>= 18.0.0'} 5271 + 4454 5272 find-up@5.0.0: 4455 5273 resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 4456 5274 engines: {node: '>=10'} ··· 4458 5276 flat-cache@4.0.1: 4459 5277 resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} 4460 5278 engines: {node: '>=16'} 5279 + 5280 + flat@6.0.1: 5281 + resolution: {integrity: sha512-/3FfIa8mbrg3xE7+wAhWeV+bd7L2Mof+xtZb5dRDKZ+wDvYJK4WDYeIOuOhre5Yv5aQObZrlbRmk3RTSiuQBtw==} 5282 + engines: {node: '>=18'} 5283 + hasBin: true 4461 5284 4462 5285 flatted@3.3.3: 4463 5286 resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} ··· 4494 5317 resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} 4495 5318 engines: {node: '>=14'} 4496 5319 5320 + forwarded@0.2.0: 5321 + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} 5322 + engines: {node: '>= 0.6'} 5323 + 4497 5324 fraction.js@5.3.4: 4498 5325 resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==} 4499 5326 5327 + framer-motion@12.29.2: 5328 + resolution: {integrity: sha512-lSNRzBJk4wuIy0emYQ/nfZ7eWhqud2umPKw2QAQki6uKhZPKm2hRQHeQoHTG9MIvfobb+A/LbEWPJU794ZUKrg==} 5329 + peerDependencies: 5330 + '@emotion/is-prop-valid': '*' 5331 + react: ^18.0.0 || ^19.0.0 5332 + react-dom: ^18.0.0 || ^19.0.0 5333 + peerDependenciesMeta: 5334 + '@emotion/is-prop-valid': 5335 + optional: true 5336 + react: 5337 + optional: true 5338 + react-dom: 5339 + optional: true 5340 + 4500 5341 fresh@2.0.0: 4501 5342 resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==} 4502 5343 engines: {node: '>= 0.8'} 4503 5344 5345 + fs-constants@1.0.0: 5346 + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} 5347 + 4504 5348 fs-extra@9.1.0: 4505 5349 resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} 4506 5350 engines: {node: '>=10'} ··· 4583 5427 4584 5428 git-url-parse@16.1.0: 4585 5429 resolution: {integrity: sha512-cPLz4HuK86wClEW7iDdeAKcCVlWXmrLpb2L+G9goW0Z1dtpNS6BXXSOckUTlJT/LDQViE1QZKstNORzHsLnobw==} 5430 + 5431 + github-from-package@0.0.0: 5432 + resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} 5433 + 5434 + github-slugger@2.0.0: 5435 + resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} 4586 5436 4587 5437 glob-parent@5.1.2: 4588 5438 resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} ··· 4686 5536 resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 4687 5537 engines: {node: '>= 0.4'} 4688 5538 5539 + hast-util-embedded@3.0.0: 5540 + resolution: {integrity: sha512-naH8sld4Pe2ep03qqULEtvYr7EjrLK2QHY8KJR6RJkTUjPGObe1vnx585uzem2hGra+s1q08DZZpfgDVYRbaXA==} 5541 + 5542 + hast-util-format@1.1.0: 5543 + resolution: {integrity: sha512-yY1UDz6bC9rDvCWHpx12aIBGRG7krurX0p0Fm6pT547LwDIZZiNr8a+IHDogorAdreULSEzP82Nlv5SZkHZcjA==} 5544 + 5545 + hast-util-from-parse5@8.0.3: 5546 + resolution: {integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==} 5547 + 5548 + hast-util-has-property@3.0.0: 5549 + resolution: {integrity: sha512-MNilsvEKLFpV604hwfhVStK0usFY/QmM5zX16bo7EjnAEGofr5YyI37kzopBlZJkHD4t887i+q/C8/tr5Q94cA==} 5550 + 5551 + hast-util-heading-rank@3.0.0: 5552 + resolution: {integrity: sha512-EJKb8oMUXVHcWZTDepnr+WNbfnXKFNf9duMesmr4S8SXTJBJ9M4Yok08pu9vxdJwdlGRhVumk9mEhkEvKGifwA==} 5553 + 5554 + hast-util-is-body-ok-link@3.0.1: 5555 + resolution: {integrity: sha512-0qpnzOBLztXHbHQenVB8uNuxTnm/QBFUOmdOSsEn7GnBtyY07+ENTWVFBAnXd/zEgd9/SUG3lRY7hSIBWRgGpQ==} 5556 + 5557 + hast-util-is-element@3.0.0: 5558 + resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==} 5559 + 5560 + hast-util-minify-whitespace@1.0.1: 5561 + resolution: {integrity: sha512-L96fPOVpnclQE0xzdWb/D12VT5FabA7SnZOUMtL1DbXmYiHJMXZvFkIZfiMmTCNJHUeO2K9UYNXoVyfz+QHuOw==} 5562 + 5563 + hast-util-parse-selector@4.0.0: 5564 + resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} 5565 + 5566 + hast-util-phrasing@3.0.1: 5567 + resolution: {integrity: sha512-6h60VfI3uBQUxHqTyMymMZnEbNl1XmEGtOxxKYL7stY2o601COo62AWAYBQR9lZbYXYSBoxag8UpPRXK+9fqSQ==} 5568 + 5569 + hast-util-raw@9.1.0: 5570 + resolution: {integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==} 5571 + 4689 5572 hast-util-to-html@9.0.5: 4690 5573 resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==} 4691 5574 5575 + hast-util-to-mdast@10.1.2: 5576 + resolution: {integrity: sha512-FiCRI7NmOvM4y+f5w32jPRzcxDIz+PUqDwEqn1A+1q2cdp3B8Gx7aVrXORdOKjMNDQsD1ogOr896+0jJHW1EFQ==} 5577 + 5578 + hast-util-to-parse5@8.0.1: 5579 + resolution: {integrity: sha512-MlWT6Pjt4CG9lFCjiz4BH7l9wmrMkfkJYCxFwKQic8+RTZgWPuWxwAfjJElsXkex7DJjfSJsQIt931ilUgmwdA==} 5580 + 5581 + hast-util-to-string@3.0.1: 5582 + resolution: {integrity: sha512-XelQVTDWvqcl3axRfI0xSeoVKzyIFPwsAGSLIsKdJKQMXDYJS4WYrBNF/8J7RdhIcFI2BOHgAifggsvsxp/3+A==} 5583 + 5584 + hast-util-to-text@4.0.2: 5585 + resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==} 5586 + 4692 5587 hast-util-whitespace@3.0.0: 4693 5588 resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} 4694 5589 5590 + hastscript@9.0.1: 5591 + resolution: {integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==} 5592 + 4695 5593 hex-rgb@4.3.0: 4696 5594 resolution: {integrity: sha512-Ox1pJVrDCyGHMG9CFg1tmrRUMRPRsAWYc/PinY0XzJU4K7y7vjNoLKIQ7BR5UJMCxNN8EM1MNDmHWA/B3aZUuw==} 4697 5595 engines: {node: '>=6'} 5596 + 5597 + hey-listen@1.0.8: 5598 + resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==} 5599 + 5600 + hono@4.11.7: 5601 + resolution: {integrity: sha512-l7qMiNee7t82bH3SeyUCt9UF15EVmaBvsppY2zQtrbIhl/yzBTny+YUxsVjSjQ6gaqaeVtZmGocom8TzBlA4Yw==} 5602 + engines: {node: '>=16.9.0'} 4698 5603 4699 5604 hookable@5.5.3: 4700 5605 resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} ··· 4731 5636 html-void-elements@3.0.0: 4732 5637 resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} 4733 5638 5639 + html-whitespace-sensitive-tag-names@3.0.1: 5640 + resolution: {integrity: sha512-q+310vW8zmymYHALr1da4HyXUQ0zgiIwIicEfotYPWGN0OJVEN/58IJ3A4GBYcEq3LGAZqKb+ugvP0GNB9CEAA==} 5641 + 4734 5642 htmlparser2@8.0.2: 4735 5643 resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==} 4736 5644 ··· 4770 5678 4771 5679 iconv-lite@0.6.3: 4772 5680 resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} 5681 + engines: {node: '>=0.10.0'} 5682 + 5683 + iconv-lite@0.7.2: 5684 + resolution: {integrity: sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==} 4773 5685 engines: {node: '>=0.10.0'} 4774 5686 4775 5687 idb@7.1.1: ··· 4827 5739 resolution: {integrity: sha512-tAAg/72/VxOUW7RQSX1pIxJVucYKcjFjfvj60L57jrZpYCHC3XN0WCQ3sNYL4Gmvv+7GPvTAjc+KSdeNuE8oWQ==} 4828 5740 engines: {node: '>=12.22.0'} 4829 5741 5742 + ipaddr.js@1.9.1: 5743 + resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} 5744 + engines: {node: '>= 0.10'} 5745 + 5746 + ipx@3.1.1: 5747 + resolution: {integrity: sha512-7Xnt54Dco7uYkfdAw0r2vCly3z0rSaVhEXMzPvl3FndsTVm5p26j+PO+gyinkYmcsEUvX2Rh7OGK7KzYWRu6BA==} 5748 + hasBin: true 5749 + 4830 5750 iron-webcrypto@1.2.1: 4831 5751 resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==} 4832 5752 5753 + is-absolute-url@4.0.1: 5754 + resolution: {integrity: sha512-/51/TKE88Lmm7Gc4/8btclNXWS+g50wXhYJq8HWIBAGUBnoAdRu1aXeh364t/O7wXDAcTJDP8PNuNKWUDWie+A==} 5755 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 5756 + 5757 + is-alphabetical@2.0.1: 5758 + resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} 5759 + 5760 + is-alphanumerical@2.0.1: 5761 + resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==} 5762 + 4833 5763 is-array-buffer@3.0.5: 4834 5764 resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} 4835 5765 engines: {node: '>= 0.4'} ··· 4862 5792 resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} 4863 5793 engines: {node: '>= 0.4'} 4864 5794 5795 + is-decimal@2.0.1: 5796 + resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==} 5797 + 4865 5798 is-docker@2.2.1: 4866 5799 resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} 4867 5800 engines: {node: '>=8'} ··· 4895 5828 is-glob@4.0.3: 4896 5829 resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 4897 5830 engines: {node: '>=0.10.0'} 5831 + 5832 + is-hexadecimal@2.0.1: 5833 + resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==} 4898 5834 4899 5835 is-inside-container@1.0.0: 4900 5836 resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} ··· 4942 5878 4943 5879 is-potential-custom-element-name@1.0.1: 4944 5880 resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} 5881 + 5882 + is-promise@4.0.0: 5883 + resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==} 4945 5884 4946 5885 is-reference@1.2.1: 4947 5886 resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} ··· 5034 5973 resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==} 5035 5974 engines: {node: '>=16'} 5036 5975 5976 + isomorphic-git@1.36.3: 5977 + resolution: {integrity: sha512-bHF1nQTjL0IfSo13BHDO8oQ6SvYNQduTAdPJdSmrJ5JwZY2fsyjLujEXav5hqPCegSCAnc75ZsBUHqT/NqR7QA==} 5978 + engines: {node: '>=14.17'} 5979 + hasBin: true 5980 + 5981 + isomorphic.js@0.2.5: 5982 + resolution: {integrity: sha512-PIeMbHqMt4DnUP3MA/Flc0HElYjMXArsw1qwJZcm9sqR8mq3l8NYizFMty0pWwE/tzIGH3EKK5+jes5mAr85yw==} 5983 + 5037 5984 istanbul-lib-coverage@3.2.2: 5038 5985 resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} 5039 5986 engines: {node: '>=8'} ··· 5065 6012 jiti@2.6.1: 5066 6013 resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==} 5067 6014 hasBin: true 6015 + 6016 + jose@6.1.3: 6017 + resolution: {integrity: sha512-0TpaTfihd4QMNwrz/ob2Bp7X04yuxJkjRGi4aKmOqwhov54i6u79oCv7T+C7lo70MKH6BesI3vscD1yb/yzKXQ==} 5068 6018 5069 6019 js-beautify@1.15.4: 5070 6020 resolution: {integrity: sha512-9/KXeZUKKJwqCXUdBxFJ3vPh467OCckSBmYDwSK/EtV090K+iMJ7zx2S3HLVDIWFQdqMIsZWbnaGiba18aWhaA==} ··· 5105 6055 json-parse-even-better-errors@2.3.1: 5106 6056 resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} 5107 6057 6058 + json-schema-to-typescript@15.0.4: 6059 + resolution: {integrity: sha512-Su9oK8DR4xCmDsLlyvadkXzX6+GGXJpbhwoLtOGArAG61dvbW4YQmSEno2y66ahpIdmLMg6YUf/QHLgiwvkrHQ==} 6060 + engines: {node: '>=16.0.0'} 6061 + hasBin: true 6062 + 5108 6063 json-schema-traverse@0.4.1: 5109 6064 resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 5110 6065 5111 6066 json-schema-traverse@1.0.0: 5112 6067 resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} 6068 + 6069 + json-schema-typed@8.0.2: 6070 + resolution: {integrity: sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==} 5113 6071 5114 6072 json-schema@0.4.0: 5115 6073 resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} ··· 5166 6124 resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 5167 6125 engines: {node: '>= 0.8.0'} 5168 6126 6127 + lib0@0.2.117: 6128 + resolution: {integrity: sha512-DeXj9X5xDCjgKLU/7RR+/HQEVzuuEUiwldwOGsHK/sfAfELGWEyTcf0x+uOvCvK3O2zPmZePXWL85vtia6GyZw==} 6129 + engines: {node: '>=16'} 6130 + hasBin: true 6131 + 5169 6132 lighthouse-logger@2.0.2: 5170 6133 resolution: {integrity: sha512-vWl2+u5jgOQuZR55Z1WM0XDdrJT6mzMP8zHUct7xTlWhuQs+eV0g+QL0RQdFjT54zVmbhLCP8vIVpy1wGn/gCg==} 5171 6134 6135 + lightningcss-android-arm64@1.30.2: 6136 + resolution: {integrity: sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==} 6137 + engines: {node: '>= 12.0.0'} 6138 + cpu: [arm64] 6139 + os: [android] 6140 + 5172 6141 lightningcss-android-arm64@1.31.1: 5173 6142 resolution: {integrity: sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==} 5174 6143 engines: {node: '>= 12.0.0'} 5175 6144 cpu: [arm64] 5176 6145 os: [android] 5177 6146 6147 + lightningcss-darwin-arm64@1.30.2: 6148 + resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==} 6149 + engines: {node: '>= 12.0.0'} 6150 + cpu: [arm64] 6151 + os: [darwin] 6152 + 5178 6153 lightningcss-darwin-arm64@1.31.1: 5179 6154 resolution: {integrity: sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==} 5180 6155 engines: {node: '>= 12.0.0'} 5181 6156 cpu: [arm64] 5182 6157 os: [darwin] 5183 6158 6159 + lightningcss-darwin-x64@1.30.2: 6160 + resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==} 6161 + engines: {node: '>= 12.0.0'} 6162 + cpu: [x64] 6163 + os: [darwin] 6164 + 5184 6165 lightningcss-darwin-x64@1.31.1: 5185 6166 resolution: {integrity: sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==} 5186 6167 engines: {node: '>= 12.0.0'} 5187 6168 cpu: [x64] 5188 6169 os: [darwin] 5189 6170 6171 + lightningcss-freebsd-x64@1.30.2: 6172 + resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==} 6173 + engines: {node: '>= 12.0.0'} 6174 + cpu: [x64] 6175 + os: [freebsd] 6176 + 5190 6177 lightningcss-freebsd-x64@1.31.1: 5191 6178 resolution: {integrity: sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==} 5192 6179 engines: {node: '>= 12.0.0'} 5193 6180 cpu: [x64] 5194 6181 os: [freebsd] 5195 6182 6183 + lightningcss-linux-arm-gnueabihf@1.30.2: 6184 + resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==} 6185 + engines: {node: '>= 12.0.0'} 6186 + cpu: [arm] 6187 + os: [linux] 6188 + 5196 6189 lightningcss-linux-arm-gnueabihf@1.31.1: 5197 6190 resolution: {integrity: sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==} 5198 6191 engines: {node: '>= 12.0.0'} 5199 6192 cpu: [arm] 5200 6193 os: [linux] 5201 6194 6195 + lightningcss-linux-arm64-gnu@1.30.2: 6196 + resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==} 6197 + engines: {node: '>= 12.0.0'} 6198 + cpu: [arm64] 6199 + os: [linux] 6200 + 5202 6201 lightningcss-linux-arm64-gnu@1.31.1: 5203 6202 resolution: {integrity: sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==} 5204 6203 engines: {node: '>= 12.0.0'} 5205 6204 cpu: [arm64] 5206 6205 os: [linux] 5207 6206 6207 + lightningcss-linux-arm64-musl@1.30.2: 6208 + resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==} 6209 + engines: {node: '>= 12.0.0'} 6210 + cpu: [arm64] 6211 + os: [linux] 6212 + 5208 6213 lightningcss-linux-arm64-musl@1.31.1: 5209 6214 resolution: {integrity: sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==} 5210 6215 engines: {node: '>= 12.0.0'} 5211 6216 cpu: [arm64] 5212 6217 os: [linux] 5213 6218 6219 + lightningcss-linux-x64-gnu@1.30.2: 6220 + resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==} 6221 + engines: {node: '>= 12.0.0'} 6222 + cpu: [x64] 6223 + os: [linux] 6224 + 5214 6225 lightningcss-linux-x64-gnu@1.31.1: 5215 6226 resolution: {integrity: sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==} 5216 6227 engines: {node: '>= 12.0.0'} 5217 6228 cpu: [x64] 5218 6229 os: [linux] 5219 6230 6231 + lightningcss-linux-x64-musl@1.30.2: 6232 + resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==} 6233 + engines: {node: '>= 12.0.0'} 6234 + cpu: [x64] 6235 + os: [linux] 6236 + 5220 6237 lightningcss-linux-x64-musl@1.31.1: 5221 6238 resolution: {integrity: sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==} 5222 6239 engines: {node: '>= 12.0.0'} 5223 6240 cpu: [x64] 5224 6241 os: [linux] 5225 6242 6243 + lightningcss-win32-arm64-msvc@1.30.2: 6244 + resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==} 6245 + engines: {node: '>= 12.0.0'} 6246 + cpu: [arm64] 6247 + os: [win32] 6248 + 5226 6249 lightningcss-win32-arm64-msvc@1.31.1: 5227 6250 resolution: {integrity: sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==} 5228 6251 engines: {node: '>= 12.0.0'} 5229 6252 cpu: [arm64] 5230 6253 os: [win32] 5231 6254 6255 + lightningcss-win32-x64-msvc@1.30.2: 6256 + resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==} 6257 + engines: {node: '>= 12.0.0'} 6258 + cpu: [x64] 6259 + os: [win32] 6260 + 5232 6261 lightningcss-win32-x64-msvc@1.31.1: 5233 6262 resolution: {integrity: sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==} 5234 6263 engines: {node: '>= 12.0.0'} 5235 6264 cpu: [x64] 5236 6265 os: [win32] 5237 6266 6267 + lightningcss@1.30.2: 6268 + resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==} 6269 + engines: {node: '>= 12.0.0'} 6270 + 5238 6271 lightningcss@1.31.1: 5239 6272 resolution: {integrity: sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==} 5240 6273 engines: {node: '>= 12.0.0'} ··· 5245 6278 5246 6279 linebreak@1.1.0: 5247 6280 resolution: {integrity: sha512-MHp03UImeVhB7XZtjd0E4n6+3xr5Dq/9xI/5FptGk5FrbDR3zagPa2DS6U8ks/3HjbKWG9Q1M2ufOzxV2qLYSQ==} 6281 + 6282 + linkify-it@5.0.0: 6283 + resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==} 6284 + 6285 + linkifyjs@4.3.2: 6286 + resolution: {integrity: sha512-NT1CJtq3hHIreOianA8aSXn6Cw0JzYOuDQbOrSPe7gqFnCpKP++MQe3ODgO3oh2GJFORkAAdqredOa60z63GbA==} 5248 6287 5249 6288 lint-staged@16.2.7: 5250 6289 resolution: {integrity: sha512-lDIj4RnYmK7/kXMya+qJsmkRFkGolciXjrsZ6PC25GdTfWOAWetR0ZbsNXRAj1EHHImRSalc+whZFg56F5DVow==} ··· 5274 6313 lodash.debounce@4.0.8: 5275 6314 resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} 5276 6315 6316 + lodash.deburr@4.1.0: 6317 + resolution: {integrity: sha512-m/M1U1f3ddMCs6Hq2tAsYThTBDaAKFDX3dwDo97GEYzamXi9SqUpjWi/Rrj/gf3X2n8ktwgZrlP1z6E3v/IExQ==} 6318 + 5277 6319 lodash.defaults@4.2.0: 5278 6320 resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==} 5279 6321 ··· 5298 6340 log-update@6.1.0: 5299 6341 resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==} 5300 6342 engines: {node: '>=18'} 6343 + 6344 + longest-streak@3.1.0: 6345 + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} 5301 6346 5302 6347 lru-cache@10.4.3: 5303 6348 resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} ··· 5329 6374 resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} 5330 6375 engines: {node: '>=10'} 5331 6376 6377 + markdown-it@14.1.0: 6378 + resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==} 6379 + hasBin: true 6380 + 6381 + markdown-table@3.0.4: 6382 + resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} 6383 + 6384 + marked@15.0.12: 6385 + resolution: {integrity: sha512-8dD6FusOQSrpv9Z1rdNMdlSgQOIP880DHqnohobOmYLElGEqAL/JvxvuxZO16r4HtjTlfPRDC1hbvxC9dPN2nA==} 6386 + engines: {node: '>= 18'} 6387 + hasBin: true 6388 + 5332 6389 marked@17.0.1: 5333 6390 resolution: {integrity: sha512-boeBdiS0ghpWcSwoNm/jJBwdpFaMnZWRzjA6SkUMYb40SVaN1x7mmfGKp0jvexGcx+7y2La5zRZsYFZI6Qpypg==} 5334 6391 engines: {node: '>= 20'} ··· 5341 6398 resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} 5342 6399 engines: {node: '>= 0.4'} 5343 6400 6401 + md4w@0.2.7: 6402 + resolution: {integrity: sha512-lFM7vwk3d4MzkV2mija7aPkK6OjKXZDQsH2beX+e2cvccBoqc6RraheMtAO0Wcr/gjj5L+WS5zhb+06AmuGZrg==} 6403 + 6404 + mdast-util-find-and-replace@3.0.2: 6405 + resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==} 6406 + 6407 + mdast-util-from-markdown@2.0.2: 6408 + resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} 6409 + 6410 + mdast-util-gfm-autolink-literal@2.0.1: 6411 + resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} 6412 + 6413 + mdast-util-gfm-footnote@2.1.0: 6414 + resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==} 6415 + 6416 + mdast-util-gfm-strikethrough@2.0.0: 6417 + resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} 6418 + 6419 + mdast-util-gfm-table@2.0.0: 6420 + resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} 6421 + 6422 + mdast-util-gfm-task-list-item@2.0.0: 6423 + resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} 6424 + 6425 + mdast-util-gfm@3.1.0: 6426 + resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==} 6427 + 6428 + mdast-util-phrasing@4.1.0: 6429 + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} 6430 + 5344 6431 mdast-util-to-hast@13.2.1: 5345 6432 resolution: {integrity: sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==} 5346 6433 6434 + mdast-util-to-markdown@2.1.2: 6435 + resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} 6436 + 6437 + mdast-util-to-string@4.0.0: 6438 + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} 6439 + 6440 + mdbox@0.1.1: 6441 + resolution: {integrity: sha512-jvLISenzbLRPWWamTG3THlhTcMbKWzJQNyTi61AVXhCBOC+gsldNTUfUNH8d3Vay83zGehFw3wZpF3xChzkTIQ==} 6442 + 5347 6443 mdn-data@2.0.28: 5348 6444 resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} 5349 6445 5350 6446 mdn-data@2.12.2: 5351 6447 resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==} 5352 6448 6449 + mdurl@2.0.0: 6450 + resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} 6451 + 6452 + media-typer@1.1.0: 6453 + resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==} 6454 + engines: {node: '>= 0.8'} 6455 + 6456 + merge-descriptors@2.0.0: 6457 + resolution: {integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==} 6458 + engines: {node: '>=18'} 6459 + 5353 6460 merge-stream@2.0.0: 5354 6461 resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 5355 6462 ··· 5357 6464 resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 5358 6465 engines: {node: '>= 8'} 5359 6466 6467 + micromark-core-commonmark@2.0.3: 6468 + resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} 6469 + 6470 + micromark-extension-gfm-autolink-literal@2.1.0: 6471 + resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} 6472 + 6473 + micromark-extension-gfm-footnote@2.1.0: 6474 + resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} 6475 + 6476 + micromark-extension-gfm-strikethrough@2.1.0: 6477 + resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} 6478 + 6479 + micromark-extension-gfm-table@2.1.1: 6480 + resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==} 6481 + 6482 + micromark-extension-gfm-tagfilter@2.0.0: 6483 + resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} 6484 + 6485 + micromark-extension-gfm-task-list-item@2.1.0: 6486 + resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} 6487 + 6488 + micromark-extension-gfm@3.0.0: 6489 + resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} 6490 + 6491 + micromark-factory-destination@2.0.1: 6492 + resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} 6493 + 6494 + micromark-factory-label@2.0.1: 6495 + resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} 6496 + 6497 + micromark-factory-space@2.0.1: 6498 + resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} 6499 + 6500 + micromark-factory-title@2.0.1: 6501 + resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} 6502 + 6503 + micromark-factory-whitespace@2.0.1: 6504 + resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} 6505 + 5360 6506 micromark-util-character@2.1.1: 5361 6507 resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} 5362 6508 6509 + micromark-util-chunked@2.0.1: 6510 + resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} 6511 + 6512 + micromark-util-classify-character@2.0.1: 6513 + resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} 6514 + 6515 + micromark-util-combine-extensions@2.0.1: 6516 + resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} 6517 + 6518 + micromark-util-decode-numeric-character-reference@2.0.2: 6519 + resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} 6520 + 6521 + micromark-util-decode-string@2.0.1: 6522 + resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} 6523 + 5363 6524 micromark-util-encode@2.0.1: 5364 6525 resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} 5365 6526 6527 + micromark-util-html-tag-name@2.0.1: 6528 + resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} 6529 + 6530 + micromark-util-normalize-identifier@2.0.1: 6531 + resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} 6532 + 6533 + micromark-util-resolve-all@2.0.1: 6534 + resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} 6535 + 5366 6536 micromark-util-sanitize-uri@2.0.1: 5367 6537 resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} 5368 6538 6539 + micromark-util-subtokenize@2.1.0: 6540 + resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==} 6541 + 5369 6542 micromark-util-symbol@2.0.1: 5370 6543 resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} 5371 6544 5372 6545 micromark-util-types@2.0.2: 5373 6546 resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==} 5374 6547 6548 + micromark@4.0.2: 6549 + resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==} 6550 + 5375 6551 micromatch@4.0.8: 5376 6552 resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 5377 6553 engines: {node: '>=8.6'} ··· 5404 6580 mimic-function@5.0.1: 5405 6581 resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} 5406 6582 engines: {node: '>=18'} 6583 + 6584 + mimic-response@3.1.0: 6585 + resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} 6586 + engines: {node: '>=10'} 6587 + 6588 + minimark@0.2.0: 6589 + resolution: {integrity: sha512-AmtWU9pO0C2/3AM2pikaVhJ//8E5rOpJ7+ioFQfjIq+wCsBeuZoxPd97hBFZ9qrI7DMHZudwGH3r8A7BMnsIew==} 5407 6590 5408 6591 minimatch@10.1.1: 5409 6592 resolution: {integrity: sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==} ··· 5427 6610 minimist@1.2.8: 5428 6611 resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 5429 6612 6613 + minimisted@2.0.1: 6614 + resolution: {integrity: sha512-1oPjfuLQa2caorJUM8HV8lGgWCc0qqAO1MNv/k05G4qslmsndV/5WdNZrqCiyqiz3wohia2Ij2B7w2Dr7/IyrA==} 6615 + 5430 6616 minipass@7.1.2: 5431 6617 resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 5432 6618 engines: {node: '>=16 || 14 >=14.17'} ··· 5438 6624 mitt@3.0.1: 5439 6625 resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==} 5440 6626 6627 + mkdirp-classic@0.5.3: 6628 + resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} 6629 + 5441 6630 mlly@1.8.0: 5442 6631 resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==} 5443 6632 5444 6633 mocked-exports@0.1.1: 5445 6634 resolution: {integrity: sha512-aF7yRQr/Q0O2/4pIXm6PZ5G+jAd7QS4Yu8m+WEeEHGnbo+7mE36CbLSDQiXYV8bVL3NfmdeqPJct0tUlnjVSnA==} 5446 6635 6636 + motion-dom@12.29.2: 6637 + resolution: {integrity: sha512-/k+NuycVV8pykxyiTCoFzIVLA95Nb1BFIVvfSu9L50/6K6qNeAYtkxXILy/LRutt7AzaYDc2myj0wkCVVYAPPA==} 6638 + 6639 + motion-utils@12.29.2: 6640 + resolution: {integrity: sha512-G3kc34H2cX2gI63RqU+cZq+zWRRPSsNIOjpdl9TN4AQwC4sgwYPl/Q/Obf/d53nOm569T0fYK+tcoSV50BWx8A==} 6641 + 6642 + motion-v@1.10.2: 6643 + resolution: {integrity: sha512-K+Zus21KKgZP4CBY7CvU/B7UZCV9sZTHG0FgsAfGHlbZi+u8EolmZ2kvJe5zOG0RzCgdiVCobHBt54qch9rweg==} 6644 + peerDependencies: 6645 + '@vueuse/core': '>=10.0.0' 6646 + vue: '>=3.0.0' 6647 + 5447 6648 mrmime@2.0.1: 5448 6649 resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} 5449 6650 engines: {node: '>=10'} ··· 5471 6672 nanotar@0.2.0: 5472 6673 resolution: {integrity: sha512-9ca1h0Xjvo9bEkE4UOxgAzLV0jHKe6LMaxo37ND2DAhhAtd0j8pR1Wxz+/goMrZO8AEZTWCmyaOsFI/W5AdpCQ==} 5473 6674 6675 + napi-build-utils@2.0.0: 6676 + resolution: {integrity: sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==} 6677 + 5474 6678 natural-compare@1.4.0: 5475 6679 resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 6680 + 6681 + negotiator@1.0.0: 6682 + resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==} 6683 + engines: {node: '>= 0.6'} 5476 6684 5477 6685 neo-async@2.6.2: 5478 6686 resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} ··· 5487 6695 xml2js: 5488 6696 optional: true 5489 6697 6698 + node-abi@3.87.0: 6699 + resolution: {integrity: sha512-+CGM1L1CgmtheLcBuleyYOn7NWPVu0s0EJH2C4puxgEZb9h8QpR9G2dBfZJOAUhi7VQxuBPMd0hiISWcTyiYyQ==} 6700 + engines: {node: '>=10'} 6701 + 5490 6702 node-addon-api@7.1.1: 5491 6703 resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==} 6704 + 6705 + node-emoji@2.2.0: 6706 + resolution: {integrity: sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==} 6707 + engines: {node: '>=18'} 5492 6708 5493 6709 node-fetch-native@1.6.7: 5494 6710 resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==} ··· 5541 6757 nth-check@2.1.1: 5542 6758 resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} 5543 6759 6760 + nuxt-component-meta@0.17.1: 6761 + resolution: {integrity: sha512-5pVCzWXqg9HP159JDhdfQJtFvgmS/KouEVpyYLPEBXWMrQoJBwujsczmLeIKXKI2BTy4RqfXy8N1GfGTZNb57g==} 6762 + hasBin: true 6763 + 5544 6764 nuxt-define@1.0.0: 5545 6765 resolution: {integrity: sha512-CYZ2WjU+KCyCDVzjYUM4eEpMF0rkPmkpiFrybTqqQCRpUbPt2h3snswWIpFPXTi+osRCY6Og0W/XLAQgDL4FfQ==} 6766 + 6767 + nuxt-llms@0.2.0: 6768 + resolution: {integrity: sha512-GoEW00x8zaZ1wS0R0aOYptt3b54JEaRwlyVtuAiQoH51BwYdjN5/3+00/+4wi39M5cT4j5XcnGwOxJ7v4WVb9A==} 5546 6769 5547 6770 nuxt-og-image@5.1.13: 5548 6771 resolution: {integrity: sha512-H9kqGlmcEb9agWURwT5iFQjbr7Ec7tcQHZZaYSpC/JXKq2/dFyRyAoo6oXTk6ob20dK9aNjkJDcX2XmgZy67+w==} ··· 5575 6798 engines: {node: '>=18'} 5576 6799 hasBin: true 5577 6800 6801 + object-assign@4.1.1: 6802 + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 6803 + engines: {node: '>=0.10.0'} 6804 + 5578 6805 object-inspect@1.13.4: 5579 6806 resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} 5580 6807 engines: {node: '>= 0.4'} ··· 5604 6831 resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} 5605 6832 engines: {node: '>= 0.8'} 5606 6833 6834 + once@1.4.0: 6835 + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 6836 + 5607 6837 onetime@6.0.0: 5608 6838 resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} 5609 6839 engines: {node: '>=12'} ··· 5629 6859 optionator@0.9.4: 5630 6860 resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 5631 6861 engines: {node: '>= 0.8.0'} 6862 + 6863 + orderedmap@2.1.1: 6864 + resolution: {integrity: sha512-TvAWxi0nDe1j/rtMcWcIj94+Ffe6n7zhow33h40SKxmsmozs6dz/e+EajymfoFcHd7sxNn8yHM8839uixMOV6g==} 5632 6865 5633 6866 own-keys@1.0.1: 5634 6867 resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} ··· 5700 6933 pako@0.2.9: 5701 6934 resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} 5702 6935 6936 + pako@1.0.11: 6937 + resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} 6938 + 5703 6939 parent-module@1.0.1: 5704 6940 resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 5705 6941 engines: {node: '>=6'} ··· 5707 6943 parse-css-color@0.2.1: 5708 6944 resolution: {integrity: sha512-bwS/GGIFV3b6KS4uwpzCFj4w297Yl3uqnSgIPsoQkx7GMLROXfMnWvxfNkL0oh8HVhZA4hvJoEoEIqonfJ3BWg==} 5709 6945 6946 + parse-entities@4.0.2: 6947 + resolution: {integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==} 6948 + 5710 6949 parse-ms@4.0.0: 5711 6950 resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==} 5712 6951 engines: {node: '>=18'} ··· 5720 6959 parse-url@9.2.0: 5721 6960 resolution: {integrity: sha512-bCgsFI+GeGWPAvAiUv63ZorMeif3/U0zaXABGJbOWt5OH2KCaPHF6S+0ok4aqM9RuIPGyZdx9tR9l13PsW4AYQ==} 5722 6961 engines: {node: '>=14.13.0'} 6962 + 6963 + parse5@7.3.0: 6964 + resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} 5723 6965 5724 6966 parse5@8.0.0: 5725 6967 resolution: {integrity: sha512-9m4m5GSgXjL4AjumKzq1Fgfp3Z8rsvjRNbnkVwfu2ImRqE5D0LnY2QfDen18FSY9C573YU5XxSapdHZTZ2WolA==} ··· 5754 6996 resolution: {integrity: sha512-oWyT4gICAu+kaA7QWk/jvCHWarMKNs6pXOGWKDTr7cw4IGcUbW+PeTfbaQiLGheFRpjo6O9J0PmyMfQPjH71oA==} 5755 6997 engines: {node: 20 || >=22} 5756 6998 6999 + path-to-regexp@8.3.0: 7000 + resolution: {integrity: sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==} 7001 + 5757 7002 pathe@1.1.2: 5758 7003 resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} 5759 7004 ··· 5779 7024 engines: {node: '>=0.10'} 5780 7025 hasBin: true 5781 7026 7027 + pify@4.0.1: 7028 + resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} 7029 + engines: {node: '>=6'} 7030 + 5782 7031 pixelmatch@7.1.0: 5783 7032 resolution: {integrity: sha512-1wrVzJ2STrpmONHKBy228LM1b84msXDUoAzVEl0R8Mz4Ce6EPr+IVtxm8+yvrqLYMHswREkjYFaMxnyGnaY3Ng==} 5784 7033 hasBin: true 7034 + 7035 + pkce-challenge@5.0.1: 7036 + resolution: {integrity: sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==} 7037 + engines: {node: '>=16.20.0'} 5785 7038 5786 7039 pkg-types@1.3.1: 5787 7040 resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==} ··· 5980 7233 resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} 5981 7234 engines: {node: ^10 || ^12 || >=14} 5982 7235 7236 + prebuild-install@7.1.3: 7237 + resolution: {integrity: sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==} 7238 + engines: {node: '>=10'} 7239 + hasBin: true 7240 + 5983 7241 prelude-ls@1.2.1: 5984 7242 resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 5985 7243 engines: {node: '>= 0.8.0'} ··· 6019 7277 property-information@7.1.0: 6020 7278 resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==} 6021 7279 7280 + prosemirror-changeset@2.3.1: 7281 + resolution: {integrity: sha512-j0kORIBm8ayJNl3zQvD1TTPHJX3g042et6y/KQhZhnPrruO8exkTgG8X+NRpj7kIyMMEx74Xb3DyMIBtO0IKkQ==} 7282 + 7283 + prosemirror-collab@1.3.1: 7284 + resolution: {integrity: sha512-4SnynYR9TTYaQVXd/ieUvsVV4PDMBzrq2xPUWutHivDuOshZXqQ5rGbZM84HEaXKbLdItse7weMGOUdDVcLKEQ==} 7285 + 7286 + prosemirror-commands@1.7.1: 7287 + resolution: {integrity: sha512-rT7qZnQtx5c0/y/KlYaGvtG411S97UaL6gdp6RIZ23DLHanMYLyfGBV5DtSnZdthQql7W+lEVbpSfwtO8T+L2w==} 7288 + 7289 + prosemirror-dropcursor@1.8.2: 7290 + resolution: {integrity: sha512-CCk6Gyx9+Tt2sbYk5NK0nB1ukHi2ryaRgadV/LvyNuO3ena1payM2z6Cg0vO1ebK8cxbzo41ku2DE5Axj1Zuiw==} 7291 + 7292 + prosemirror-gapcursor@1.4.0: 7293 + resolution: {integrity: sha512-z00qvurSdCEWUIulij/isHaqu4uLS8r/Fi61IbjdIPJEonQgggbJsLnstW7Lgdk4zQ68/yr6B6bf7sJXowIgdQ==} 7294 + 7295 + prosemirror-history@1.5.0: 7296 + resolution: {integrity: sha512-zlzTiH01eKA55UAf1MEjtssJeHnGxO0j4K4Dpx+gnmX9n+SHNlDqI2oO1Kv1iPN5B1dm5fsljCfqKF9nFL6HRg==} 7297 + 7298 + prosemirror-inputrules@1.5.1: 7299 + resolution: {integrity: sha512-7wj4uMjKaXWAQ1CDgxNzNtR9AlsuwzHfdFH1ygEHA2KHF2DOEaXl1CJfNPAKCg9qNEh4rum975QLaCiQPyY6Fw==} 7300 + 7301 + prosemirror-keymap@1.2.3: 7302 + resolution: {integrity: sha512-4HucRlpiLd1IPQQXNqeo81BGtkY8Ai5smHhKW9jjPKRc2wQIxksg7Hl1tTI2IfT2B/LgX6bfYvXxEpJl7aKYKw==} 7303 + 7304 + prosemirror-markdown@1.13.3: 7305 + resolution: {integrity: sha512-3E+Et6cdXIH0EgN2tGYQ+EBT7N4kMiZFsW+hzx+aPtOmADDHWCdd2uUQb7yklJrfUYUOjEEu22BiN6UFgPe4cQ==} 7306 + 7307 + prosemirror-menu@1.2.5: 7308 + resolution: {integrity: sha512-qwXzynnpBIeg1D7BAtjOusR+81xCp53j7iWu/IargiRZqRjGIlQuu1f3jFi+ehrHhWMLoyOQTSRx/IWZJqOYtQ==} 7309 + 7310 + prosemirror-model@1.25.4: 7311 + resolution: {integrity: sha512-PIM7E43PBxKce8OQeezAs9j4TP+5yDpZVbuurd1h5phUxEKIu+G2a+EUZzIC5nS1mJktDJWzbqS23n1tsAf5QA==} 7312 + 7313 + prosemirror-schema-basic@1.2.4: 7314 + resolution: {integrity: sha512-ELxP4TlX3yr2v5rM7Sb70SqStq5NvI15c0j9j/gjsrO5vaw+fnnpovCLEGIcpeGfifkuqJwl4fon6b+KdrODYQ==} 7315 + 7316 + prosemirror-schema-list@1.5.1: 7317 + resolution: {integrity: sha512-927lFx/uwyQaGwJxLWCZRkjXG0p48KpMj6ueoYiu4JX05GGuGcgzAy62dfiV8eFZftgyBUvLx76RsMe20fJl+Q==} 7318 + 7319 + prosemirror-state@1.4.4: 7320 + resolution: {integrity: sha512-6jiYHH2CIGbCfnxdHbXZ12gySFY/fz/ulZE333G6bPqIZ4F+TXo9ifiR86nAHpWnfoNjOb3o5ESi7J8Uz1jXHw==} 7321 + 7322 + prosemirror-tables@1.8.5: 7323 + resolution: {integrity: sha512-V/0cDCsHKHe/tfWkeCmthNUcEp1IVO3p6vwN8XtwE9PZQLAZJigbw3QoraAdfJPir4NKJtNvOB8oYGKRl+t0Dw==} 7324 + 7325 + prosemirror-trailing-node@3.0.0: 7326 + resolution: {integrity: sha512-xiun5/3q0w5eRnGYfNlW1uU9W6x5MoFKWwq/0TIRgt09lv7Hcser2QYV8t4muXbEr+Fwo0geYn79Xs4GKywrRQ==} 7327 + peerDependencies: 7328 + prosemirror-model: ^1.22.1 7329 + prosemirror-state: ^1.4.2 7330 + prosemirror-view: ^1.33.8 7331 + 7332 + prosemirror-transform@1.11.0: 7333 + resolution: {integrity: sha512-4I7Ce4KpygXb9bkiPS3hTEk4dSHorfRw8uI0pE8IhxlK2GXsqv5tIA7JUSxtSu7u8APVOTtbUBxTmnHIxVkIJw==} 7334 + 7335 + prosemirror-view@1.41.5: 7336 + resolution: {integrity: sha512-UDQbIPnDrjE8tqUBbPmCOZgtd75htE6W3r0JCmY9bL6W1iemDM37MZEKC49d+tdQ0v/CKx4gjxLoLsfkD2NiZA==} 7337 + 6022 7338 proto-list@1.2.4: 6023 7339 resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} 6024 7340 6025 7341 protocols@2.0.2: 6026 7342 resolution: {integrity: sha512-hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ==} 6027 7343 7344 + proxy-addr@2.0.7: 7345 + resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} 7346 + engines: {node: '>= 0.10'} 7347 + 7348 + pump@3.0.3: 7349 + resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==} 7350 + 7351 + punycode.js@2.3.1: 7352 + resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} 7353 + engines: {node: '>=6'} 7354 + 6028 7355 punycode@2.3.1: 6029 7356 resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 6030 7357 engines: {node: '>=6'} 6031 7358 7359 + qs@6.14.1: 7360 + resolution: {integrity: sha512-4EK3+xJl8Ts67nLYNwqw/dsFVnCf+qR7RgXSK9jEEm9unao3njwMDdmsdvoKBKHzxd7tCYz5e5M+SnMjdtXGQQ==} 7361 + engines: {node: '>=0.6'} 7362 + 6032 7363 quansync@0.2.11: 6033 7364 resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==} 6034 7365 ··· 6048 7379 resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} 6049 7380 engines: {node: '>= 0.6'} 6050 7381 7382 + raw-body@3.0.2: 7383 + resolution: {integrity: sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==} 7384 + engines: {node: '>= 0.10'} 7385 + 6051 7386 rc9@2.1.2: 6052 7387 resolution: {integrity: sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==} 6053 7388 7389 + rc@1.2.8: 7390 + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} 7391 + hasBin: true 7392 + 6054 7393 readable-stream@2.3.8: 6055 7394 resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} 7395 + 7396 + readable-stream@3.6.2: 7397 + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} 7398 + engines: {node: '>= 6'} 6056 7399 6057 7400 readable-stream@4.7.0: 6058 7401 resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==} ··· 6116 7459 resolution: {integrity: sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==} 6117 7460 hasBin: true 6118 7461 7462 + rehype-external-links@3.0.0: 7463 + resolution: {integrity: sha512-yp+e5N9V3C6bwBeAC4n796kc86M4gJCdlVhiMTxIrJG5UHDMh+PJANf9heqORJbt1nrCbDwIlAZKjANIaVBbvw==} 7464 + 7465 + rehype-minify-whitespace@6.0.2: 7466 + resolution: {integrity: sha512-Zk0pyQ06A3Lyxhe9vGtOtzz3Z0+qZ5+7icZ/PL/2x1SHPbKao5oB/g/rlc6BCTajqBb33JcOe71Ye1oFsuYbnw==} 7467 + 7468 + rehype-raw@7.0.0: 7469 + resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} 7470 + 7471 + rehype-remark@10.0.1: 7472 + resolution: {integrity: sha512-EmDndlb5NVwXGfUa4c9GPK+lXeItTilLhE6ADSaQuHr4JUlKw9MidzGzx4HpqZrNCt6vnHmEifXQiiA+CEnjYQ==} 7473 + 7474 + rehype-slug@6.0.0: 7475 + resolution: {integrity: sha512-lWyvf/jwu+oS5+hL5eClVd3hNdmwM1kAC0BUvEGD19pajQMIzcNUd/k9GsfQ+FfECvX+JE+e9/btsKH0EjJT6A==} 7476 + 7477 + rehype-sort-attribute-values@5.0.1: 7478 + resolution: {integrity: sha512-lU3ABJO5frbUgV132YS6SL7EISf//irIm9KFMaeu5ixHfgWf6jhe+09Uf/Ef8pOYUJWKOaQJDRJGCXs6cNsdsQ==} 7479 + 7480 + rehype-sort-attributes@5.0.1: 7481 + resolution: {integrity: sha512-Bxo+AKUIELcnnAZwJDt5zUDDRpt4uzhfz9d0PVGhcxYWsbFj5Cv35xuWxu5r1LeYNFNhgGqsr9Q2QiIOM/Qctg==} 7482 + 7483 + reka-ui@2.7.0: 7484 + resolution: {integrity: sha512-m+XmxQN2xtFzBP3OAdIafKq7C8OETo2fqfxcIIxYmNN2Ch3r5oAf6yEYCIJg5tL/yJU2mHqF70dCCekUkrAnXA==} 7485 + peerDependencies: 7486 + vue: '>= 3.2.0' 7487 + 7488 + remark-emoji@5.0.2: 7489 + resolution: {integrity: sha512-IyIqGELcyK5AVdLFafoiNww+Eaw/F+rGrNSXoKucjo95uL267zrddgxGM83GN1wFIb68pyDuAsY3m5t2Cav1pQ==} 7490 + engines: {node: '>=18'} 7491 + 7492 + remark-gfm@4.0.1: 7493 + resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==} 7494 + 7495 + remark-mdc@3.10.0: 7496 + resolution: {integrity: sha512-gJhrSs4bGyqr7eSuLoaLlpmiDZrJ9fP/8gTA/w1CnKnW/mfxc9VKM+ndzpOxHQnpAU4tjD8QqF6SMLiOvIVTYA==} 7497 + 7498 + remark-parse@11.0.0: 7499 + resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} 7500 + 7501 + remark-rehype@11.1.2: 7502 + resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==} 7503 + 7504 + remark-stringify@11.0.0: 7505 + resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} 7506 + 6119 7507 require-directory@2.1.1: 6120 7508 resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 6121 7509 engines: {node: '>=0.10.0'} ··· 6201 7589 engines: {node: '>=18.0.0', npm: '>=8.0.0'} 6202 7590 hasBin: true 6203 7591 7592 + rope-sequence@1.3.4: 7593 + resolution: {integrity: sha512-UT5EDe2cu2E/6O4igUr5PSFs23nvvukicWHx6GnOPlHAiiYbzNuCRQCuiUdHJQcqKalLKlrYJnjY0ySGsXNQXQ==} 7594 + 6204 7595 rou3@0.7.12: 6205 7596 resolution: {integrity: sha512-iFE4hLDuloSWcD7mjdCDhx2bKcIsYbtOTpfH5MHHLSKMOUyjqQXTeZVa289uuwEGEKFoE/BAPbhaU4B774nceg==} 7597 + 7598 + router@2.2.0: 7599 + resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==} 7600 + engines: {node: '>= 18'} 6206 7601 6207 7602 run-applescript@7.1.0: 6208 7603 resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==} ··· 6299 7694 setprototypeof@1.2.0: 6300 7695 resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} 6301 7696 7697 + sha.js@2.4.12: 7698 + resolution: {integrity: sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w==} 7699 + engines: {node: '>= 0.10'} 7700 + hasBin: true 7701 + 6302 7702 sharp-ico@0.1.5: 6303 7703 resolution: {integrity: sha512-a3jODQl82NPp1d5OYb0wY+oFaPk7AvyxipIowCHk7pBsZCWgbe0yAkU2OOXdoH0ENyANhyOQbs9xkAiRHcF02Q==} 6304 7704 ··· 6341 7741 resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 6342 7742 engines: {node: '>=14'} 6343 7743 7744 + simple-concat@1.0.1: 7745 + resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} 7746 + 7747 + simple-get@4.0.1: 7748 + resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==} 7749 + 6344 7750 simple-git-hooks@2.13.1: 6345 7751 resolution: {integrity: sha512-WszCLXwT4h2k1ufIXAgsbiTOazqqevFCIncOuUBZJ91DdvWcC5+OFkluWRQPrcuSYd8fjq+o2y1QfWqYMoAToQ==} 6346 7752 hasBin: true ··· 6360 7766 peerDependencies: 6361 7767 vue: ^3 6362 7768 7769 + skin-tone@2.0.0: 7770 + resolution: {integrity: sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==} 7771 + engines: {node: '>=8'} 7772 + 6363 7773 slash@5.1.0: 6364 7774 resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} 6365 7775 engines: {node: '>=14.16'} ··· 6368 7778 resolution: {integrity: sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==} 6369 7779 engines: {node: '>=18'} 6370 7780 7781 + slugify@1.6.6: 7782 + resolution: {integrity: sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==} 7783 + engines: {node: '>=8.0.0'} 7784 + 6371 7785 smob@1.5.0: 6372 7786 resolution: {integrity: sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==} 7787 + 7788 + socket.io-client@4.8.3: 7789 + resolution: {integrity: sha512-uP0bpjWrjQmUt5DTHq9RuoCBdFJF10cdX9X+a368j/Ft0wmaVgxlrjvK3kjvgCODOMMOz9lcaRzxmso0bTWZ/g==} 7790 + engines: {node: '>=10.0.0'} 7791 + 7792 + socket.io-parser@4.2.5: 7793 + resolution: {integrity: sha512-bPMmpy/5WWKHea5Y/jYAP6k74A+hvmRCQaJuJB6I/ML5JZq/KfNieUVo/3Mh7SAqn7TyFdIo6wqYHInG1MU1bQ==} 7794 + engines: {node: '>=10.0.0'} 6373 7795 6374 7796 source-map-js@1.2.1: 6375 7797 resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} ··· 6499 7921 strip-final-newline@4.0.0: 6500 7922 resolution: {integrity: sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==} 6501 7923 engines: {node: '>=18'} 7924 + 7925 + strip-json-comments@2.0.1: 7926 + resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} 7927 + engines: {node: '>=0.10.0'} 6502 7928 6503 7929 strip-json-comments@3.1.1: 6504 7930 resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} ··· 6552 7978 resolution: {integrity: sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng==} 6553 7979 engines: {node: '>=20'} 6554 7980 7981 + tailwind-merge@3.4.0: 7982 + resolution: {integrity: sha512-uSaO4gnW+b3Y2aWoWfFpX62vn2sR3skfhbjsEnaBI81WD1wBLlHZe5sWf0AqjksNdYTbGBEd0UasQMT3SNV15g==} 7983 + 7984 + tailwind-variants@3.2.2: 7985 + resolution: {integrity: sha512-Mi4kHeMTLvKlM98XPnK+7HoBPmf4gygdFmqQPaDivc3DpYS6aIY6KiG/PgThrGvii5YZJqRsPz0aPyhoFzmZgg==} 7986 + engines: {node: '>=16.x', pnpm: '>=7.x'} 7987 + peerDependencies: 7988 + tailwind-merge: '>=3.0.0' 7989 + tailwindcss: '*' 7990 + peerDependenciesMeta: 7991 + tailwind-merge: 7992 + optional: true 7993 + 7994 + tailwindcss@4.1.18: 7995 + resolution: {integrity: sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==} 7996 + 6555 7997 tapable@2.3.0: 6556 7998 resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==} 6557 7999 engines: {node: '>=6'} 6558 8000 8001 + tar-fs@2.1.4: 8002 + resolution: {integrity: sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==} 8003 + 8004 + tar-stream@2.2.0: 8005 + resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} 8006 + engines: {node: '>=6'} 8007 + 6559 8008 tar-stream@3.1.7: 6560 8009 resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} 6561 8010 ··· 6626 8075 tldts@7.0.19: 6627 8076 resolution: {integrity: sha512-8PWx8tvC4jDB39BQw1m4x8y5MH1BcQ5xHeL2n7UVFulMPH/3Q0uiamahFJ3lXA0zO2SUyRXuVVbWSDmstlt9YA==} 6628 8077 hasBin: true 8078 + 8079 + to-buffer@1.2.2: 8080 + resolution: {integrity: sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw==} 8081 + engines: {node: '>= 0.4'} 6629 8082 6630 8083 to-data-view@1.1.0: 6631 8084 resolution: {integrity: sha512-1eAdufMg6mwgmlojAx3QeMnzB/BTVp7Tbndi3U7ftcT2zCZadjxkkmLmd97zmaxWi+sgGcgWrokmpEoy0Dn0vQ==} ··· 6667 8120 trim-lines@3.0.1: 6668 8121 resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} 6669 8122 8123 + trim-trailing-lines@2.1.0: 8124 + resolution: {integrity: sha512-5UR5Biq4VlVOtzqkm2AZlgvSlDJtME46uV0br0gENbwN4l5+mMKT4b9gJKqWtuL2zAIqajGJGuvbCbcAJUZqBg==} 8125 + 8126 + trough@2.2.0: 8127 + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} 8128 + 6670 8129 ts-api-utils@2.4.0: 6671 8130 resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==} 6672 8131 engines: {node: '>=18.12'} ··· 6705 8164 resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==} 6706 8165 engines: {node: '>=18.0.0'} 6707 8166 hasBin: true 8167 + 8168 + tunnel-agent@0.6.0: 8169 + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} 6708 8170 6709 8171 type-check@0.4.0: 6710 8172 resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} ··· 6718 8180 resolution: {integrity: sha512-xygQcmneDyzsEuKZrFbRMne5HDqMs++aFzefrJTgEIKjQ3rekM+RPfFCVq2Gp1VIDqddoYeppCj4Pcb+RZW0GQ==} 6719 8181 engines: {node: '>=20'} 6720 8182 8183 + type-is@2.0.1: 8184 + resolution: {integrity: sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==} 8185 + engines: {node: '>= 0.6'} 8186 + 6721 8187 type-level-regexp@0.1.17: 6722 8188 resolution: {integrity: sha512-wTk4DH3cxwk196uGLK/E9pE45aLfeKJacKmcEgEOA/q5dnPGNxXt0cfYdFxb57L+sEpf1oJH4Dnx/pnRcku9jg==} 6723 8189 ··· 6741 8207 resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} 6742 8208 engines: {node: '>=14.17'} 6743 8209 hasBin: true 8210 + 8211 + uc.micro@2.1.0: 8212 + resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} 6744 8213 6745 8214 ufo@1.6.3: 6746 8215 resolution: {integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==} ··· 6777 8246 resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} 6778 8247 engines: {node: '>=4'} 6779 8248 8249 + unicode-emoji-modifier-base@1.0.0: 8250 + resolution: {integrity: sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==} 8251 + engines: {node: '>=4'} 8252 + 6780 8253 unicode-match-property-ecmascript@2.0.0: 6781 8254 resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==} 6782 8255 engines: {node: '>=4'} ··· 6803 8276 resolution: {integrity: sha512-wH590V9VNgYH9g3lH9wWjTrUoKsjLF6sGLjhR4sH1LWpLmCOH0Zf7PukhDA8BiS7KHe4oPNkcTHqYkj7SOGUOw==} 6804 8277 engines: {node: '>=20'} 6805 8278 8279 + unified@11.0.5: 8280 + resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} 8281 + 6806 8282 unifont@0.6.0: 6807 8283 resolution: {integrity: sha512-5Fx50fFQMQL5aeHyWnZX9122sSLckcDvcfFiBf3QYeHa7a1MKJooUy52b67moi2MJYkrfo/TWY+CoLdr/w0tTA==} 6808 8284 ··· 6814 8290 resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==} 6815 8291 engines: {node: '>=8'} 6816 8292 8293 + unist-builder@4.0.0: 8294 + resolution: {integrity: sha512-wmRFnH+BLpZnTKpc5L7O67Kac89s9HMrtELpnNaE6TAobq5DTZZs5YaTQfAZBA9bFPECx2uVAPO31c+GVug8mg==} 8295 + 8296 + unist-util-find-after@5.0.0: 8297 + resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} 8298 + 6817 8299 unist-util-is@6.0.1: 6818 8300 resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==} 6819 8301 ··· 6843 8325 '@unocss/webpack': 6844 8326 optional: true 6845 8327 vite: 8328 + optional: true 8329 + 8330 + unpipe@1.0.0: 8331 + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} 8332 + engines: {node: '>= 0.8'} 8333 + 8334 + unplugin-auto-import@21.0.0: 8335 + resolution: {integrity: sha512-vWuC8SwqJmxZFYwPojhOhOXDb5xFhNNcEVb9K/RFkyk/3VnfaOjzitWN7v+8DEKpMjSsY2AEGXNgt6I0yQrhRQ==} 8336 + engines: {node: '>=20.19.0'} 8337 + peerDependencies: 8338 + '@nuxt/kit': ^4.0.0 8339 + '@vueuse/core': '*' 8340 + peerDependenciesMeta: 8341 + '@nuxt/kit': 8342 + optional: true 8343 + '@vueuse/core': 6846 8344 optional: true 6847 8345 6848 8346 unplugin-utils@0.2.5: ··· 6853 8351 resolution: {integrity: sha512-5lWVjgi6vuHhJ526bI4nlCOmkCIF3nnfXkCMDeMJrtdvxTs6ZFCM8oNufGTsDbKv/tJ/xj8RpvXjRuPBZJuJog==} 6854 8352 engines: {node: '>=20.19.0'} 6855 8353 8354 + unplugin-vue-components@31.0.0: 8355 + resolution: {integrity: sha512-4ULwfTZTLuWJ7+S9P7TrcStYLsSRkk6vy2jt/WTfgUEUb0nW9//xxmrfhyHUEVpZ2UKRRwfRb8Yy15PDbVZf+Q==} 8356 + engines: {node: '>=20.19.0'} 8357 + peerDependencies: 8358 + '@nuxt/kit': ^3.2.2 || ^4.0.0 8359 + vue: ^3.0.0 8360 + peerDependenciesMeta: 8361 + '@nuxt/kit': 8362 + optional: true 8363 + 6856 8364 unplugin-vue-router@0.16.2: 6857 8365 resolution: {integrity: sha512-lE6ZjnHaXfS2vFI/PSEwdKcdOo5RwAbCKUnPBIN9YwLgSWas3x+qivzQvJa/uxhKzJldE6WK43aDKjGj9Rij9w==} 6858 8366 peerDependencies: ··· 6989 8497 resolution: {integrity: sha512-hVDIBwsRruT73PbK7uP5ebUt+ezEtCmzZz3F59BSr2F6OVFnJ/6h8liuvdLrQ88Xmnk6/+xGGuq+pG9WwTuy3A==} 6990 8498 engines: {node: ^20.17.0 || >=22.9.0} 6991 8499 8500 + vary@1.1.2: 8501 + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} 8502 + engines: {node: '>= 0.8'} 8503 + 8504 + vaul-vue@0.4.1: 8505 + resolution: {integrity: sha512-A6jOWOZX5yvyo1qMn7IveoWN91mJI5L3BUKsIwkg6qrTGgHs1Sb1JF/vyLJgnbN1rH4OOOxFbtqL9A46bOyGUQ==} 8506 + peerDependencies: 8507 + reka-ui: ^2.0.0 8508 + vue: ^3.3.0 8509 + 8510 + vfile-location@5.0.3: 8511 + resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==} 8512 + 6992 8513 vfile-message@4.0.3: 6993 8514 resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==} 6994 8515 ··· 7149 8670 vue-bundle-renderer@2.2.0: 7150 8671 resolution: {integrity: sha512-sz/0WEdYH1KfaOm0XaBmRZOWgYTEvUDt6yPYaUzl4E52qzgWLlknaPPTTZmp6benaPTlQAI/hN1x3tAzZygycg==} 7151 8672 8673 + vue-component-meta@3.2.4: 8674 + resolution: {integrity: sha512-FHUxalhR36Kfmrd5B4yfw7kmnCsZL3SGc2vTgzeEGAcLyuhhB0d1j2VmfXvx5pnHLI+kvCb+bxGsRcNgrUJ0Ww==} 8675 + peerDependencies: 8676 + typescript: '*' 8677 + peerDependenciesMeta: 8678 + typescript: 8679 + optional: true 8680 + 7152 8681 vue-component-type-helpers@2.2.12: 7153 8682 resolution: {integrity: sha512-YbGqHZ5/eW4SnkPNR44mKVc6ZKQoRs/Rux1sxC6rdwXb4qpbOSYfDr9DsTHolOTGmIKgM9j141mZbBeg05R1pw==} 8683 + 8684 + vue-component-type-helpers@3.2.4: 8685 + resolution: {integrity: sha512-05lR16HeZDcDpB23ku5b5f1fBOoHqFnMiKRr2CiEvbG5Ux4Yi0McmQBOET0dR0nxDXosxyVqv67q6CzS3AK8rw==} 7154 8686 7155 8687 vue-data-ui@3.13.2: 7156 8688 resolution: {integrity: sha512-7ChfXBjPNNiv7I9u9K+P3de3eu5BHnZdiJqK1XHWsBex17tr9wtm+RxIvgsn5Z3RQ/rFksWMImIb4XKkTeuxvw==} ··· 7161 8693 jspdf: 7162 8694 optional: true 7163 8695 8696 + vue-demi@0.14.10: 8697 + resolution: {integrity: sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==} 8698 + engines: {node: '>=12'} 8699 + hasBin: true 8700 + peerDependencies: 8701 + '@vue/composition-api': ^1.0.0-rc.1 8702 + vue: ^3.0.0-0 || ^2.6.0 8703 + peerDependenciesMeta: 8704 + '@vue/composition-api': 8705 + optional: true 8706 + 7164 8707 vue-devtools-stub@0.1.0: 7165 8708 resolution: {integrity: sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==} 7166 8709 ··· 7192 8735 typescript: 7193 8736 optional: true 7194 8737 8738 + w3c-keyname@2.2.8: 8739 + resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==} 8740 + 7195 8741 w3c-xmlserializer@5.0.0: 7196 8742 resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} 7197 8743 engines: {node: '>=18'} ··· 7199 8745 watchpack@2.5.1: 7200 8746 resolution: {integrity: sha512-Zn5uXdcFNIA1+1Ei5McRd+iRzfhENPCe7LeABkJtNulSxjma+l7ltNx55BWZkRlwRnpOgHqxnjyaDgJnNXnqzg==} 7201 8747 engines: {node: '>=10.13.0'} 8748 + 8749 + web-namespaces@2.0.1: 8750 + resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} 7202 8751 7203 8752 webidl-conversions@3.0.1: 7204 8753 resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} ··· 7249 8798 whatwg-url@7.1.0: 7250 8799 resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} 7251 8800 8801 + wheel-gestures@2.2.48: 8802 + resolution: {integrity: sha512-f+Gy33Oa5Z14XY9679Zze+7VFhbsQfBFXodnU2x589l4kxGM9L5Y8zETTmcMR5pWOPQyRv4Z0lNax6xCO0NSlA==} 8803 + engines: {node: '>=18'} 8804 + 7252 8805 which-boxed-primitive@1.1.1: 7253 8806 resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} 7254 8807 engines: {node: '>= 0.4'} ··· 7340 8893 resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==} 7341 8894 engines: {node: '>=18'} 7342 8895 8896 + wrappy@1.0.2: 8897 + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 8898 + 8899 + ws@8.18.3: 8900 + resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==} 8901 + engines: {node: '>=10.0.0'} 8902 + peerDependencies: 8903 + bufferutil: ^4.0.1 8904 + utf-8-validate: '>=5.0.2' 8905 + peerDependenciesMeta: 8906 + bufferutil: 8907 + optional: true 8908 + utf-8-validate: 8909 + optional: true 8910 + 7343 8911 ws@8.19.0: 7344 8912 resolution: {integrity: sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==} 7345 8913 engines: {node: '>=10.0.0'} ··· 7363 8931 xmlchars@2.2.0: 7364 8932 resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} 7365 8933 8934 + xmlhttprequest-ssl@2.1.2: 8935 + resolution: {integrity: sha512-TEU+nJVUUnA4CYJFLvK5X9AOeH4KvDvhIfm0vV1GaQRtchnG0hgK5p8hw/xjv8cunWYCsiPCSDzObPyhEwq3KQ==} 8936 + engines: {node: '>=0.4.0'} 8937 + 8938 + xss@1.0.15: 8939 + resolution: {integrity: sha512-FVdlVVC67WOIPvfOwhoMETV72f6GbW7aOabBC3WxN/oUdoEMDyLz4OgRv5/gck2ZeNqEQu+Tb0kloovXOfpYVg==} 8940 + engines: {node: '>= 0.10.0'} 8941 + hasBin: true 8942 + 8943 + y-protocols@1.0.7: 8944 + resolution: {integrity: sha512-YSVsLoXxO67J6eE/nV4AtFtT3QEotZf5sK5BHxFBXso7VDUT3Tx07IfA6hsu5Q5OmBdMkQVmFZ9QOA7fikWvnw==} 8945 + engines: {node: '>=16.0.0', npm: '>=8.0.0'} 8946 + peerDependencies: 8947 + yjs: ^13.0.0 8948 + 7366 8949 y18n@5.0.8: 7367 8950 resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 7368 8951 engines: {node: '>=10'} ··· 7391 8974 resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} 7392 8975 engines: {node: '>=12'} 7393 8976 8977 + yjs@13.6.29: 8978 + resolution: {integrity: sha512-kHqDPdltoXH+X4w1lVmMtddE3Oeqq48nM40FD5ojTd8xYhQpzIDcfE2keMSU5bAgRPJBe225WTUdyUgj1DtbiQ==} 8979 + engines: {node: '>=16.0.0', npm: '>=8.0.0'} 8980 + 7394 8981 yocto-queue@0.1.0: 7395 8982 resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 7396 8983 engines: {node: '>=10'} ··· 7415 9002 resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==} 7416 9003 engines: {node: '>= 14'} 7417 9004 9005 + zod-to-json-schema@3.25.1: 9006 + resolution: {integrity: sha512-pM/SU9d3YAggzi6MtR4h7ruuQlqKtad8e9S0fmxcMi+ueAK5Korys/aWcV9LIIHTVbj01NdzxcnXSN+O74ZIVA==} 9007 + peerDependencies: 9008 + zod: ^3.25 || ^4 9009 + 9010 + zod@3.25.76: 9011 + resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} 9012 + 9013 + zod@4.3.6: 9014 + resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==} 9015 + 7418 9016 zwitch@2.0.4: 7419 9017 resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} 7420 9018 ··· 7422 9020 7423 9021 '@acemir/cssom@0.9.31': 7424 9022 optional: true 9023 + 9024 + '@alloc/quick-lru@5.2.0': {} 7425 9025 7426 9026 '@antfu/install-pkg@1.1.0': 7427 9027 dependencies: ··· 7434 9034 json-schema: 0.4.0 7435 9035 jsonpointer: 5.0.1 7436 9036 leven: 3.1.0 9037 + 9038 + '@apidevtools/json-schema-ref-parser@11.9.3': 9039 + dependencies: 9040 + '@jsdevtools/ono': 7.1.3 9041 + '@types/json-schema': 7.0.15 9042 + js-yaml: 4.1.1 7437 9043 7438 9044 '@asamuzakjp/css-color@4.1.1': 7439 9045 dependencies: ··· 8186 9792 dependencies: 8187 9793 fontkitten: 1.0.2 8188 9794 9795 + '@clack/core@0.5.0': 9796 + dependencies: 9797 + picocolors: 1.1.1 9798 + sisteransi: 1.0.5 9799 + 8189 9800 '@clack/core@1.0.0-alpha.7': 8190 9801 dependencies: 9802 + picocolors: 1.1.1 9803 + sisteransi: 1.0.5 9804 + 9805 + '@clack/prompts@0.11.0': 9806 + dependencies: 9807 + '@clack/core': 0.5.0 8191 9808 picocolors: 1.1.1 8192 9809 sisteransi: 1.0.5 8193 9810 ··· 8460 10077 '@exodus/bytes@1.9.0': 8461 10078 optional: true 8462 10079 10080 + '@fastify/accept-negotiator@2.0.1': 10081 + optional: true 10082 + 10083 + '@fingerprintjs/botd@2.0.0': {} 10084 + 10085 + '@floating-ui/core@1.7.4': 10086 + dependencies: 10087 + '@floating-ui/utils': 0.2.10 10088 + 10089 + '@floating-ui/dom@1.7.5': 10090 + dependencies: 10091 + '@floating-ui/core': 1.7.4 10092 + '@floating-ui/utils': 0.2.10 10093 + 10094 + '@floating-ui/utils@0.2.10': {} 10095 + 10096 + '@floating-ui/vue@1.1.10(vue@3.5.27(typescript@5.9.3))': 10097 + dependencies: 10098 + '@floating-ui/dom': 1.7.5 10099 + '@floating-ui/utils': 0.2.10 10100 + vue-demi: 0.14.10(vue@3.5.27(typescript@5.9.3)) 10101 + transitivePeerDependencies: 10102 + - '@vue/composition-api' 10103 + - vue 10104 + 10105 + '@hono/node-server@1.19.9(hono@4.11.7)': 10106 + dependencies: 10107 + hono: 4.11.7 10108 + 8463 10109 '@html-validate/stylish@4.3.0': 8464 10110 dependencies: 8465 10111 kleur: 4.1.5 ··· 8479 10125 dependencies: 8480 10126 '@iconify/types': 2.0.0 8481 10127 10128 + '@iconify-json/lucide@1.2.87': 10129 + dependencies: 10130 + '@iconify/types': 2.0.0 10131 + 8482 10132 '@iconify-json/simple-icons@1.2.67': 8483 10133 dependencies: 8484 10134 '@iconify/types': 2.0.0 ··· 8491 10141 dependencies: 8492 10142 '@iconify/types': 2.0.0 8493 10143 10144 + '@iconify/collections@1.0.643': 10145 + dependencies: 10146 + '@iconify/types': 2.0.0 10147 + 8494 10148 '@iconify/types@2.0.0': {} 8495 10149 8496 10150 '@iconify/utils@3.1.0': ··· 8498 10152 '@antfu/install-pkg': 1.1.0 8499 10153 '@iconify/types': 2.0.0 8500 10154 mlly: 1.8.0 10155 + 10156 + '@iconify/vue@5.0.0(vue@3.5.27(typescript@5.9.3))': 10157 + dependencies: 10158 + '@iconify/types': 2.0.0 10159 + vue: 3.5.27(typescript@5.9.3) 8501 10160 8502 10161 '@img/colour@1.0.0': {} 8503 10162 ··· 8595 10254 '@img/sharp-win32-x64@0.34.5': 8596 10255 optional: true 8597 10256 10257 + '@internationalized/date@3.10.1': 10258 + dependencies: 10259 + '@swc/helpers': 0.5.18 10260 + 10261 + '@internationalized/number@3.6.5': 10262 + dependencies: 10263 + '@swc/helpers': 0.5.18 10264 + 8598 10265 '@intlify/bundle-utils@11.0.3(vue-i18n@11.2.8(vue@3.5.27(typescript@5.9.3)))': 8599 10266 dependencies: 8600 10267 '@intlify/message-compiler': 11.2.8 ··· 8711 10378 '@jridgewell/resolve-uri': 3.1.2 8712 10379 '@jridgewell/sourcemap-codec': 1.5.5 8713 10380 10381 + '@jsdevtools/ono@7.1.3': {} 10382 + 8714 10383 '@kwsites/file-exists@1.1.1': 8715 10384 dependencies: 8716 10385 debug: 4.4.3 ··· 8738 10407 json5: 2.2.3 8739 10408 rollup: 4.56.0 8740 10409 10410 + '@modelcontextprotocol/sdk@1.25.3(hono@4.11.7)(zod@4.3.6)': 10411 + dependencies: 10412 + '@hono/node-server': 1.19.9(hono@4.11.7) 10413 + ajv: 8.17.1 10414 + ajv-formats: 3.0.1(ajv@8.17.1) 10415 + content-type: 1.0.5 10416 + cors: 2.8.6 10417 + cross-spawn: 7.0.6 10418 + eventsource: 3.0.7 10419 + eventsource-parser: 3.0.6 10420 + express: 5.2.1 10421 + express-rate-limit: 7.5.1(express@5.2.1) 10422 + jose: 6.1.3 10423 + json-schema-typed: 8.0.2 10424 + pkce-challenge: 5.0.1 10425 + raw-body: 3.0.2 10426 + zod: 4.3.6 10427 + zod-to-json-schema: 3.25.1(zod@4.3.6) 10428 + transitivePeerDependencies: 10429 + - hono 10430 + - supports-color 10431 + 8741 10432 '@napi-rs/wasm-runtime@1.1.1': 8742 10433 dependencies: 8743 10434 '@emnapi/core': 1.8.1 ··· 8804 10495 - magicast 8805 10496 - supports-color 8806 10497 10498 + '@nuxt/content@3.11.0(better-sqlite3@12.5.0)(magicast@0.5.1)(valibot@1.2.0(typescript@5.9.3))': 10499 + dependencies: 10500 + '@nuxt/kit': 4.3.0(magicast@0.5.1) 10501 + '@nuxtjs/mdc': 0.20.0(magicast@0.5.1) 10502 + '@shikijs/langs': 3.21.0 10503 + '@sqlite.org/sqlite-wasm': 3.50.4-build1 10504 + '@standard-schema/spec': 1.1.0 10505 + '@webcontainer/env': 1.1.1 10506 + c12: 3.3.3(magicast@0.5.1) 10507 + chokidar: 5.0.0 10508 + consola: 3.4.2 10509 + db0: 0.3.4(better-sqlite3@12.5.0) 10510 + defu: 6.1.4 10511 + destr: 2.0.5 10512 + git-url-parse: 16.1.0 10513 + hookable: 5.5.3 10514 + isomorphic-git: 1.36.3 10515 + jiti: 2.6.1 10516 + json-schema-to-typescript: 15.0.4 10517 + knitwork: 1.3.0 10518 + mdast-util-to-hast: 13.2.1 10519 + mdast-util-to-string: 4.0.0 10520 + micromark: 4.0.2 10521 + micromark-util-character: 2.1.1 10522 + micromark-util-chunked: 2.0.1 10523 + micromark-util-resolve-all: 2.0.1 10524 + micromark-util-sanitize-uri: 2.0.1 10525 + micromatch: 4.0.8 10526 + minimark: 0.2.0 10527 + minimatch: 10.1.1 10528 + nuxt-component-meta: 0.17.1(magicast@0.5.1) 10529 + nypm: 0.6.4 10530 + ohash: 2.0.11 10531 + pathe: 2.0.3 10532 + pkg-types: 2.3.0 10533 + remark-mdc: 3.10.0 10534 + scule: 1.3.0 10535 + shiki: 3.21.0 10536 + slugify: 1.6.6 10537 + socket.io-client: 4.8.3 10538 + std-env: 3.10.0 10539 + tinyglobby: 0.2.15 10540 + ufo: 1.6.3 10541 + unctx: 2.5.0 10542 + unified: 11.0.5 10543 + unist-util-stringify-position: 4.0.0 10544 + unist-util-visit: 5.0.0 10545 + unplugin: 2.3.11 10546 + zod: 3.25.76 10547 + zod-to-json-schema: 3.25.1(zod@3.25.76) 10548 + optionalDependencies: 10549 + better-sqlite3: 12.5.0 10550 + valibot: 1.2.0(typescript@5.9.3) 10551 + transitivePeerDependencies: 10552 + - bufferutil 10553 + - drizzle-orm 10554 + - magicast 10555 + - mysql2 10556 + - supports-color 10557 + - utf-8-validate 10558 + 8807 10559 '@nuxt/devalue@2.0.2': {} 8808 10560 8809 10561 '@nuxt/devtools-kit@3.1.1(magicast@0.5.1)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))': ··· 8866 10618 - utf-8-validate 8867 10619 - vue 8868 10620 8869 - '@nuxt/fonts@0.13.0(db0@0.3.4)(ioredis@5.9.2)(magicast@0.5.1)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))': 10621 + '@nuxt/fonts@0.12.1(db0@0.3.4(better-sqlite3@12.5.0))(ioredis@5.9.2)(magicast@0.5.1)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))': 10622 + dependencies: 10623 + '@nuxt/devtools-kit': 3.1.1(magicast@0.5.1)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) 10624 + '@nuxt/kit': 4.3.0(magicast@0.5.1) 10625 + consola: 3.4.2 10626 + css-tree: 3.1.0 10627 + defu: 6.1.4 10628 + esbuild: 0.25.12 10629 + fontaine: 0.7.0 10630 + fontless: 0.1.0(db0@0.3.4(better-sqlite3@12.5.0))(ioredis@5.9.2)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) 10631 + h3: 1.15.5 10632 + jiti: 2.6.1 10633 + magic-regexp: 0.10.0 10634 + magic-string: 0.30.21 10635 + node-fetch-native: 1.6.7 10636 + ohash: 2.0.11 10637 + pathe: 2.0.3 10638 + sirv: 3.0.2 10639 + tinyglobby: 0.2.15 10640 + ufo: 1.6.3 10641 + unifont: 0.6.0 10642 + unplugin: 2.3.11 10643 + unstorage: 1.17.4(db0@0.3.4(better-sqlite3@12.5.0))(ioredis@5.9.2) 10644 + transitivePeerDependencies: 10645 + - '@azure/app-configuration' 10646 + - '@azure/cosmos' 10647 + - '@azure/data-tables' 10648 + - '@azure/identity' 10649 + - '@azure/keyvault-secrets' 10650 + - '@azure/storage-blob' 10651 + - '@capacitor/preferences' 10652 + - '@deno/kv' 10653 + - '@netlify/blobs' 10654 + - '@planetscale/database' 10655 + - '@upstash/redis' 10656 + - '@vercel/blob' 10657 + - '@vercel/functions' 10658 + - '@vercel/kv' 10659 + - aws4fetch 10660 + - db0 10661 + - idb-keyval 10662 + - ioredis 10663 + - magicast 10664 + - uploadthing 10665 + - vite 10666 + 10667 + '@nuxt/fonts@0.13.0(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2)(magicast@0.5.1)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))': 8870 10668 dependencies: 8871 10669 '@nuxt/devtools-kit': 3.1.1(magicast@0.5.1)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) 8872 10670 '@nuxt/kit': 4.3.0(magicast@0.5.1) ··· 8875 10673 defu: 6.1.4 8876 10674 esbuild: 0.27.2 8877 10675 fontaine: 0.8.0 8878 - fontless: 0.1.0(db0@0.3.4)(ioredis@5.9.2)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) 10676 + fontless: 0.1.0(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) 8879 10677 h3: 1.15.5 8880 10678 jiti: 2.6.1 8881 10679 magic-regexp: 0.10.0 ··· 8888 10686 ufo: 1.6.3 8889 10687 unifont: 0.6.0 8890 10688 unplugin: 2.3.11 8891 - unstorage: 1.17.4(db0@0.3.4)(ioredis@5.9.2) 10689 + unstorage: 1.17.4(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2) 8892 10690 transitivePeerDependencies: 8893 10691 - '@azure/app-configuration' 8894 10692 - '@azure/cosmos' ··· 8912 10710 - uploadthing 8913 10711 - vite 8914 10712 10713 + '@nuxt/icon@2.2.1(magicast@0.5.1)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.27(typescript@5.9.3))': 10714 + dependencies: 10715 + '@iconify/collections': 1.0.643 10716 + '@iconify/types': 2.0.0 10717 + '@iconify/utils': 3.1.0 10718 + '@iconify/vue': 5.0.0(vue@3.5.27(typescript@5.9.3)) 10719 + '@nuxt/devtools-kit': 3.1.1(magicast@0.5.1)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) 10720 + '@nuxt/kit': 4.3.0(magicast@0.5.1) 10721 + consola: 3.4.2 10722 + local-pkg: 1.1.2 10723 + mlly: 1.8.0 10724 + ohash: 2.0.11 10725 + pathe: 2.0.3 10726 + picomatch: 4.0.3 10727 + std-env: 3.10.0 10728 + tinyglobby: 0.2.15 10729 + transitivePeerDependencies: 10730 + - magicast 10731 + - vite 10732 + - vue 10733 + 10734 + '@nuxt/image@2.0.0(db0@0.3.4(better-sqlite3@12.5.0))(ioredis@5.9.2)(magicast@0.5.1)': 10735 + dependencies: 10736 + '@nuxt/kit': 4.3.0(magicast@0.5.1) 10737 + consola: 3.4.2 10738 + defu: 6.1.4 10739 + h3: 1.15.5 10740 + image-meta: 0.2.2 10741 + knitwork: 1.3.0 10742 + ohash: 2.0.11 10743 + pathe: 2.0.3 10744 + std-env: 3.10.0 10745 + ufo: 1.6.3 10746 + optionalDependencies: 10747 + ipx: 3.1.1(db0@0.3.4(better-sqlite3@12.5.0))(ioredis@5.9.2) 10748 + transitivePeerDependencies: 10749 + - '@azure/app-configuration' 10750 + - '@azure/cosmos' 10751 + - '@azure/data-tables' 10752 + - '@azure/identity' 10753 + - '@azure/keyvault-secrets' 10754 + - '@azure/storage-blob' 10755 + - '@capacitor/preferences' 10756 + - '@deno/kv' 10757 + - '@netlify/blobs' 10758 + - '@planetscale/database' 10759 + - '@upstash/redis' 10760 + - '@vercel/blob' 10761 + - '@vercel/functions' 10762 + - '@vercel/kv' 10763 + - aws4fetch 10764 + - db0 10765 + - idb-keyval 10766 + - ioredis 10767 + - magicast 10768 + - uploadthing 10769 + 8915 10770 '@nuxt/kit@3.20.2(magicast@0.5.1)': 8916 10771 dependencies: 8917 10772 c12: 3.3.3(magicast@0.5.1) ··· 8963 10818 transitivePeerDependencies: 8964 10819 - magicast 8965 10820 8966 - '@nuxt/nitro-server@4.3.0(db0@0.3.4)(encoding@0.1.13)(ioredis@5.9.2)(magicast@0.5.1)(nuxt@4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2))(rolldown@1.0.0-rc.1)(typescript@5.9.3)': 10821 + '@nuxt/nitro-server@4.3.0(better-sqlite3@12.5.0)(db0@0.3.4(better-sqlite3@12.5.0))(encoding@0.1.13)(ioredis@5.9.2)(magicast@0.5.1)(nuxt@4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(better-sqlite3@12.5.0)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.5.0))(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2))(rolldown@1.0.0-rc.1)(typescript@5.9.3)': 8967 10822 dependencies: 8968 10823 '@nuxt/devalue': 2.0.2 8969 10824 '@nuxt/kit': 4.3.0(magicast@0.5.1) ··· 8980 10835 impound: 1.0.0 8981 10836 klona: 2.0.6 8982 10837 mocked-exports: 0.1.1 8983 - nitropack: 2.13.1(encoding@0.1.13)(rolldown@1.0.0-rc.1) 8984 - nuxt: 4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2) 10838 + nitropack: 2.13.1(better-sqlite3@12.5.0)(encoding@0.1.13)(rolldown@1.0.0-rc.1) 10839 + nuxt: 4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(better-sqlite3@12.5.0)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.5.0))(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2) 10840 + ohash: 2.0.11 10841 + pathe: 2.0.3 10842 + pkg-types: 2.3.0 10843 + rou3: 0.7.12 10844 + std-env: 3.10.0 10845 + ufo: 1.6.3 10846 + unctx: 2.5.0 10847 + unstorage: 1.17.4(db0@0.3.4(better-sqlite3@12.5.0))(ioredis@5.9.2) 10848 + vue: 3.5.27(typescript@5.9.3) 10849 + vue-bundle-renderer: 2.2.0 10850 + vue-devtools-stub: 0.1.0 10851 + transitivePeerDependencies: 10852 + - '@azure/app-configuration' 10853 + - '@azure/cosmos' 10854 + - '@azure/data-tables' 10855 + - '@azure/identity' 10856 + - '@azure/keyvault-secrets' 10857 + - '@azure/storage-blob' 10858 + - '@capacitor/preferences' 10859 + - '@deno/kv' 10860 + - '@electric-sql/pglite' 10861 + - '@libsql/client' 10862 + - '@netlify/blobs' 10863 + - '@planetscale/database' 10864 + - '@upstash/redis' 10865 + - '@vercel/blob' 10866 + - '@vercel/functions' 10867 + - '@vercel/kv' 10868 + - aws4fetch 10869 + - bare-abort-controller 10870 + - better-sqlite3 10871 + - db0 10872 + - drizzle-orm 10873 + - encoding 10874 + - idb-keyval 10875 + - ioredis 10876 + - magicast 10877 + - mysql2 10878 + - react-native-b4a 10879 + - rolldown 10880 + - sqlite3 10881 + - supports-color 10882 + - typescript 10883 + - uploadthing 10884 + - xml2js 10885 + 10886 + '@nuxt/nitro-server@4.3.0(better-sqlite3@12.6.2)(db0@0.3.4(better-sqlite3@12.6.2))(encoding@0.1.13)(ioredis@5.9.2)(magicast@0.5.1)(nuxt@4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2))(rolldown@1.0.0-rc.1)(typescript@5.9.3)': 10887 + dependencies: 10888 + '@nuxt/devalue': 2.0.2 10889 + '@nuxt/kit': 4.3.0(magicast@0.5.1) 10890 + '@unhead/vue': 2.1.2(vue@3.5.27(typescript@5.9.3)) 10891 + '@vue/shared': 3.5.27 10892 + consola: 3.4.2 10893 + defu: 6.1.4 10894 + destr: 2.0.5 10895 + devalue: 5.6.2 10896 + errx: 0.1.0 10897 + escape-string-regexp: 5.0.0 10898 + exsolve: 1.0.8 10899 + h3: 1.15.5 10900 + impound: 1.0.0 10901 + klona: 2.0.6 10902 + mocked-exports: 0.1.1 10903 + nitropack: 2.13.1(better-sqlite3@12.6.2)(encoding@0.1.13)(rolldown@1.0.0-rc.1) 10904 + nuxt: 4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2) 8985 10905 ohash: 2.0.11 8986 10906 pathe: 2.0.3 8987 10907 pkg-types: 2.3.0 ··· 8989 10909 std-env: 3.10.0 8990 10910 ufo: 1.6.3 8991 10911 unctx: 2.5.0 8992 - unstorage: 1.17.4(db0@0.3.4)(ioredis@5.9.2) 10912 + unstorage: 1.17.4(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2) 8993 10913 vue: 3.5.27(typescript@5.9.3) 8994 10914 vue-bundle-renderer: 2.2.0 8995 10915 vue-devtools-stub: 0.1.0 ··· 9036 10956 pkg-types: 2.3.0 9037 10957 std-env: 3.10.0 9038 10958 9039 - '@nuxt/scripts@0.13.2(@unhead/vue@2.1.2(vue@3.5.27(typescript@5.9.3)))(db0@0.3.4)(ioredis@5.9.2)(magicast@0.5.1)(typescript@5.9.3)(vue@3.5.27(typescript@5.9.3))': 10959 + '@nuxt/scripts@0.13.2(@unhead/vue@2.1.2(vue@3.5.27(typescript@5.9.3)))(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2)(magicast@0.5.1)(typescript@5.9.3)(vue@3.5.27(typescript@5.9.3))': 9040 10960 dependencies: 9041 10961 '@nuxt/kit': 4.3.0(magicast@0.5.1) 9042 10962 '@unhead/vue': 2.1.2(vue@3.5.27(typescript@5.9.3)) ··· 9054 10974 std-env: 3.10.0 9055 10975 ufo: 1.6.3 9056 10976 unplugin: 2.3.11 9057 - unstorage: 1.17.4(db0@0.3.4)(ioredis@5.9.2) 10977 + unstorage: 1.17.4(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2) 9058 10978 valibot: 1.2.0(typescript@5.9.3) 9059 10979 transitivePeerDependencies: 9060 10980 - '@azure/app-configuration' ··· 9181 11101 - magicast 9182 11102 - typescript 9183 11103 9184 - '@nuxt/vite-builder@4.3.0(@types/node@25.0.10)(eslint@9.39.2(jiti@2.6.1))(magicast@0.5.1)(nuxt@4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2))(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vue-tsc@3.2.2(typescript@5.9.3))(vue@3.5.27(typescript@5.9.3))(yaml@2.8.2)': 11104 + '@nuxt/ui@4.4.0(@nuxt/content@3.11.0(better-sqlite3@12.5.0)(magicast@0.5.1)(valibot@1.2.0(typescript@5.9.3)))(@tiptap/extensions@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1))(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29))(db0@0.3.4(better-sqlite3@12.5.0))(embla-carousel@8.6.0)(ioredis@5.9.2)(magicast@0.5.1)(tailwindcss@4.1.18)(typescript@5.9.3)(valibot@1.2.0(typescript@5.9.3))(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-router@4.6.4(vue@3.5.27(typescript@5.9.3)))(vue@3.5.27(typescript@5.9.3))(yjs@13.6.29)(zod@4.3.6)': 11105 + dependencies: 11106 + '@floating-ui/dom': 1.7.5 11107 + '@iconify/vue': 5.0.0(vue@3.5.27(typescript@5.9.3)) 11108 + '@internationalized/date': 3.10.1 11109 + '@internationalized/number': 3.6.5 11110 + '@nuxt/fonts': 0.12.1(db0@0.3.4(better-sqlite3@12.5.0))(ioredis@5.9.2)(magicast@0.5.1)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) 11111 + '@nuxt/icon': 2.2.1(magicast@0.5.1)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.27(typescript@5.9.3)) 11112 + '@nuxt/kit': 4.3.0(magicast@0.5.1) 11113 + '@nuxt/schema': 4.3.0 11114 + '@nuxtjs/color-mode': 3.5.2(magicast@0.5.1) 11115 + '@standard-schema/spec': 1.1.0 11116 + '@tailwindcss/postcss': 4.1.18 11117 + '@tailwindcss/vite': 4.1.18(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) 11118 + '@tanstack/vue-table': 8.21.3(vue@3.5.27(typescript@5.9.3)) 11119 + '@tanstack/vue-virtual': 3.13.18(vue@3.5.27(typescript@5.9.3)) 11120 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 11121 + '@tiptap/extension-bubble-menu': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 11122 + '@tiptap/extension-code': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1)) 11123 + '@tiptap/extension-collaboration': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29))(yjs@13.6.29) 11124 + '@tiptap/extension-drag-handle': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/extension-collaboration@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29))(yjs@13.6.29))(@tiptap/extension-node-range@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29)) 11125 + '@tiptap/extension-drag-handle-vue-3': 3.17.1(@tiptap/extension-drag-handle@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/extension-collaboration@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29))(yjs@13.6.29))(@tiptap/extension-node-range@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29)))(@tiptap/pm@3.17.1)(@tiptap/vue-3@3.17.1(@floating-ui/dom@1.7.5)(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)(vue@3.5.27(typescript@5.9.3)))(vue@3.5.27(typescript@5.9.3)) 11126 + '@tiptap/extension-floating-menu': 3.17.1(@floating-ui/dom@1.7.5)(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 11127 + '@tiptap/extension-horizontal-rule': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 11128 + '@tiptap/extension-image': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1)) 11129 + '@tiptap/extension-mention': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)(@tiptap/suggestion@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)) 11130 + '@tiptap/extension-node-range': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 11131 + '@tiptap/extension-placeholder': 3.17.1(@tiptap/extensions@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)) 11132 + '@tiptap/markdown': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 11133 + '@tiptap/pm': 3.17.1 11134 + '@tiptap/starter-kit': 3.17.1 11135 + '@tiptap/suggestion': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 11136 + '@tiptap/vue-3': 3.17.1(@floating-ui/dom@1.7.5)(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)(vue@3.5.27(typescript@5.9.3)) 11137 + '@unhead/vue': 2.1.2(vue@3.5.27(typescript@5.9.3)) 11138 + '@vueuse/core': 14.1.0(vue@3.5.27(typescript@5.9.3)) 11139 + '@vueuse/integrations': 14.1.0(fuse.js@7.1.0)(vue@3.5.27(typescript@5.9.3)) 11140 + '@vueuse/shared': 14.1.0(vue@3.5.27(typescript@5.9.3)) 11141 + colortranslator: 5.0.0 11142 + consola: 3.4.2 11143 + defu: 6.1.4 11144 + embla-carousel-auto-height: 8.6.0(embla-carousel@8.6.0) 11145 + embla-carousel-auto-scroll: 8.6.0(embla-carousel@8.6.0) 11146 + embla-carousel-autoplay: 8.6.0(embla-carousel@8.6.0) 11147 + embla-carousel-class-names: 8.6.0(embla-carousel@8.6.0) 11148 + embla-carousel-fade: 8.6.0(embla-carousel@8.6.0) 11149 + embla-carousel-vue: 8.6.0(vue@3.5.27(typescript@5.9.3)) 11150 + embla-carousel-wheel-gestures: 8.1.0(embla-carousel@8.6.0) 11151 + fuse.js: 7.1.0 11152 + hookable: 5.5.3 11153 + knitwork: 1.3.0 11154 + magic-string: 0.30.21 11155 + mlly: 1.8.0 11156 + motion-v: 1.10.2(@vueuse/core@14.1.0(vue@3.5.27(typescript@5.9.3)))(vue@3.5.27(typescript@5.9.3)) 11157 + ohash: 2.0.11 11158 + pathe: 2.0.3 11159 + reka-ui: 2.7.0(typescript@5.9.3)(vue@3.5.27(typescript@5.9.3)) 11160 + scule: 1.3.0 11161 + tailwind-merge: 3.4.0 11162 + tailwind-variants: 3.2.2(tailwind-merge@3.4.0)(tailwindcss@4.1.18) 11163 + tailwindcss: 4.1.18 11164 + tinyglobby: 0.2.15 11165 + typescript: 5.9.3 11166 + ufo: 1.6.3 11167 + unplugin: 2.3.11 11168 + unplugin-auto-import: 21.0.0(@nuxt/kit@4.3.0(magicast@0.5.1))(@vueuse/core@14.1.0(vue@3.5.27(typescript@5.9.3))) 11169 + unplugin-vue-components: 31.0.0(@nuxt/kit@4.3.0(magicast@0.5.1))(vue@3.5.27(typescript@5.9.3)) 11170 + vaul-vue: 0.4.1(reka-ui@2.7.0(typescript@5.9.3)(vue@3.5.27(typescript@5.9.3)))(vue@3.5.27(typescript@5.9.3)) 11171 + vue-component-type-helpers: 3.2.4 11172 + optionalDependencies: 11173 + '@nuxt/content': 3.11.0(better-sqlite3@12.5.0)(magicast@0.5.1)(valibot@1.2.0(typescript@5.9.3)) 11174 + valibot: 1.2.0(typescript@5.9.3) 11175 + vue-router: 4.6.4(vue@3.5.27(typescript@5.9.3)) 11176 + zod: 4.3.6 11177 + transitivePeerDependencies: 11178 + - '@azure/app-configuration' 11179 + - '@azure/cosmos' 11180 + - '@azure/data-tables' 11181 + - '@azure/identity' 11182 + - '@azure/keyvault-secrets' 11183 + - '@azure/storage-blob' 11184 + - '@capacitor/preferences' 11185 + - '@deno/kv' 11186 + - '@emotion/is-prop-valid' 11187 + - '@netlify/blobs' 11188 + - '@planetscale/database' 11189 + - '@tiptap/extensions' 11190 + - '@tiptap/y-tiptap' 11191 + - '@upstash/redis' 11192 + - '@vercel/blob' 11193 + - '@vercel/functions' 11194 + - '@vercel/kv' 11195 + - '@vue/composition-api' 11196 + - async-validator 11197 + - aws4fetch 11198 + - axios 11199 + - change-case 11200 + - db0 11201 + - drauu 11202 + - embla-carousel 11203 + - focus-trap 11204 + - idb-keyval 11205 + - ioredis 11206 + - jwt-decode 11207 + - magicast 11208 + - nprogress 11209 + - qrcode 11210 + - react 11211 + - react-dom 11212 + - sortablejs 11213 + - universal-cookie 11214 + - uploadthing 11215 + - vite 11216 + - vue 11217 + - yjs 11218 + 11219 + '@nuxt/vite-builder@4.3.0(@types/node@25.0.10)(eslint@9.39.2(jiti@2.6.1))(magicast@0.5.1)(nuxt@4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(better-sqlite3@12.5.0)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.5.0))(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2))(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vue-tsc@3.2.2(typescript@5.9.3))(vue@3.5.27(typescript@5.9.3))(yaml@2.8.2)': 9185 11220 dependencies: 9186 11221 '@nuxt/kit': 4.3.0(magicast@0.5.1) 9187 11222 '@rollup/plugin-replace': 6.0.3(rollup@4.56.0) ··· 9200 11235 magic-string: 0.30.21 9201 11236 mlly: 1.8.0 9202 11237 mocked-exports: 0.1.1 9203 - nuxt: 4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2) 11238 + nuxt: 4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(better-sqlite3@12.5.0)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.5.0))(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2) 9204 11239 pathe: 2.0.3 9205 11240 pkg-types: 2.3.0 9206 11241 postcss: 8.5.6 ··· 9245 11280 - vue-tsc 9246 11281 - yaml 9247 11282 11283 + '@nuxt/vite-builder@4.3.0(@types/node@25.0.10)(eslint@9.39.2(jiti@2.6.1))(magicast@0.5.1)(nuxt@4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2))(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vue-tsc@3.2.2(typescript@5.9.3))(vue@3.5.27(typescript@5.9.3))(yaml@2.8.2)': 11284 + dependencies: 11285 + '@nuxt/kit': 4.3.0(magicast@0.5.1) 11286 + '@rollup/plugin-replace': 6.0.3(rollup@4.56.0) 11287 + '@vitejs/plugin-vue': 6.0.3(@voidzero-dev/vite-plus-core@0.0.0-ffb4d08a8edafe855c59736c0a38ee85a2373ebb(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(vue@3.5.27(typescript@5.9.3)) 11288 + '@vitejs/plugin-vue-jsx': 5.1.3(@voidzero-dev/vite-plus-core@0.0.0-ffb4d08a8edafe855c59736c0a38ee85a2373ebb(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(vue@3.5.27(typescript@5.9.3)) 11289 + autoprefixer: 10.4.23(postcss@8.5.6) 11290 + consola: 3.4.2 11291 + cssnano: 7.1.2(postcss@8.5.6) 11292 + defu: 6.1.4 11293 + esbuild: 0.27.2 11294 + escape-string-regexp: 5.0.0 11295 + exsolve: 1.0.8 11296 + get-port-please: 3.2.0 11297 + jiti: 2.6.1 11298 + knitwork: 1.3.0 11299 + magic-string: 0.30.21 11300 + mlly: 1.8.0 11301 + mocked-exports: 0.1.1 11302 + nuxt: 4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2) 11303 + pathe: 2.0.3 11304 + pkg-types: 2.3.0 11305 + postcss: 8.5.6 11306 + rollup-plugin-visualizer: 6.0.5(rolldown@1.0.0-rc.1)(rollup@4.56.0) 11307 + seroval: 1.4.2 11308 + std-env: 3.10.0 11309 + ufo: 1.6.3 11310 + unenv: 2.0.0-rc.24 11311 + vite: '@voidzero-dev/vite-plus-core@0.0.0-ffb4d08a8edafe855c59736c0a38ee85a2373ebb(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)' 11312 + vite-node: 5.3.0(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2) 11313 + vite-plugin-checker: 0.12.0(@voidzero-dev/vite-plus-core@0.0.0-ffb4d08a8edafe855c59736c0a38ee85a2373ebb(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(eslint@9.39.2(jiti@2.6.1))(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(typescript@5.9.3)(vue-tsc@3.2.2(typescript@5.9.3)) 11314 + vue: 3.5.27(typescript@5.9.3) 11315 + vue-bundle-renderer: 2.2.0 11316 + optionalDependencies: 11317 + rolldown: 1.0.0-rc.1 11318 + transitivePeerDependencies: 11319 + - '@arethetypeswrong/core' 11320 + - '@biomejs/biome' 11321 + - '@types/node' 11322 + - '@vitejs/devtools' 11323 + - eslint 11324 + - less 11325 + - magicast 11326 + - meow 11327 + - optionator 11328 + - oxlint 11329 + - publint 11330 + - rollup 11331 + - sass 11332 + - sass-embedded 11333 + - stylelint 11334 + - stylus 11335 + - sugarss 11336 + - supports-color 11337 + - terser 11338 + - tsx 11339 + - typescript 11340 + - unplugin-lightningcss 11341 + - unplugin-unused 11342 + - vls 11343 + - vti 11344 + - vue-tsc 11345 + - yaml 11346 + 11347 + '@nuxtjs/color-mode@3.5.2(magicast@0.5.1)': 11348 + dependencies: 11349 + '@nuxt/kit': 3.20.2(magicast@0.5.1) 11350 + pathe: 1.1.2 11351 + pkg-types: 1.3.1 11352 + semver: 7.7.3 11353 + transitivePeerDependencies: 11354 + - magicast 11355 + 9248 11356 '@nuxtjs/html-validator@2.1.0(@voidzero-dev/vite-plus-test@0.0.0-ffb4d08a8edafe855c59736c0a38ee85a2373ebb(@types/node@25.0.10)(esbuild@0.27.2)(happy-dom@20.3.5)(jiti@2.6.1)(jsdom@27.4.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2))(magicast@0.5.1)': 9249 11357 dependencies: 9250 11358 '@nuxt/kit': 3.20.2(magicast@0.5.1) ··· 9261 11369 - magicast 9262 11370 - vitest 9263 11371 9264 - '@nuxtjs/i18n@10.2.1(@vue/compiler-dom@3.5.27)(db0@0.3.4)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(rollup@4.56.0)(vue@3.5.27(typescript@5.9.3))': 11372 + '@nuxtjs/i18n@10.2.1(@vue/compiler-dom@3.5.27)(db0@0.3.4(better-sqlite3@12.5.0))(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(rollup@4.56.0)(vue@3.5.27(typescript@5.9.3))': 11373 + dependencies: 11374 + '@intlify/core': 11.2.8 11375 + '@intlify/h3': 0.7.4 11376 + '@intlify/shared': 11.2.8 11377 + '@intlify/unplugin-vue-i18n': 11.0.3(@vue/compiler-dom@3.5.27)(eslint@9.39.2(jiti@2.6.1))(rollup@4.56.0)(typescript@5.9.3)(vue-i18n@11.2.8(vue@3.5.27(typescript@5.9.3)))(vue@3.5.27(typescript@5.9.3)) 11378 + '@intlify/utils': 0.13.0 11379 + '@miyaneee/rollup-plugin-json5': 1.2.0(rollup@4.56.0) 11380 + '@nuxt/kit': 4.3.0(magicast@0.5.1) 11381 + '@rollup/plugin-yaml': 4.1.2(rollup@4.56.0) 11382 + '@vue/compiler-sfc': 3.5.27 11383 + defu: 6.1.4 11384 + devalue: 5.6.2 11385 + h3: 1.15.5 11386 + knitwork: 1.3.0 11387 + magic-string: 0.30.21 11388 + mlly: 1.8.0 11389 + nuxt-define: 1.0.0 11390 + ohash: 2.0.11 11391 + oxc-parser: 0.95.0 11392 + oxc-transform: 0.95.0 11393 + oxc-walker: 0.5.2(oxc-parser@0.95.0) 11394 + pathe: 2.0.3 11395 + typescript: 5.9.3 11396 + ufo: 1.6.3 11397 + unplugin: 2.3.11 11398 + unplugin-vue-router: 0.16.2(@vue/compiler-sfc@3.5.27)(vue-router@4.6.4(vue@3.5.27(typescript@5.9.3)))(vue@3.5.27(typescript@5.9.3)) 11399 + unstorage: 1.17.4(db0@0.3.4(better-sqlite3@12.5.0))(ioredis@5.9.2) 11400 + vue-i18n: 11.2.8(vue@3.5.27(typescript@5.9.3)) 11401 + vue-router: 4.6.4(vue@3.5.27(typescript@5.9.3)) 11402 + transitivePeerDependencies: 11403 + - '@azure/app-configuration' 11404 + - '@azure/cosmos' 11405 + - '@azure/data-tables' 11406 + - '@azure/identity' 11407 + - '@azure/keyvault-secrets' 11408 + - '@azure/storage-blob' 11409 + - '@capacitor/preferences' 11410 + - '@deno/kv' 11411 + - '@netlify/blobs' 11412 + - '@planetscale/database' 11413 + - '@upstash/redis' 11414 + - '@vercel/blob' 11415 + - '@vercel/functions' 11416 + - '@vercel/kv' 11417 + - '@vue/compiler-dom' 11418 + - aws4fetch 11419 + - db0 11420 + - eslint 11421 + - idb-keyval 11422 + - ioredis 11423 + - magicast 11424 + - petite-vue-i18n 11425 + - rollup 11426 + - supports-color 11427 + - uploadthing 11428 + - vue 11429 + 11430 + '@nuxtjs/i18n@10.2.1(@vue/compiler-dom@3.5.27)(db0@0.3.4(better-sqlite3@12.6.2))(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(rollup@4.56.0)(vue@3.5.27(typescript@5.9.3))': 9265 11431 dependencies: 9266 11432 '@intlify/core': 11.2.8 9267 11433 '@intlify/h3': 0.7.4 ··· 9288 11454 ufo: 1.6.3 9289 11455 unplugin: 2.3.11 9290 11456 unplugin-vue-router: 0.16.2(@vue/compiler-sfc@3.5.27)(vue-router@4.6.4(vue@3.5.27(typescript@5.9.3)))(vue@3.5.27(typescript@5.9.3)) 9291 - unstorage: 1.17.4(db0@0.3.4)(ioredis@5.9.2) 11457 + unstorage: 1.17.4(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2) 9292 11458 vue-i18n: 11.2.8(vue@3.5.27(typescript@5.9.3)) 9293 11459 vue-router: 4.6.4(vue@3.5.27(typescript@5.9.3)) 9294 11460 transitivePeerDependencies: ··· 9319 11485 - uploadthing 9320 11486 - vue 9321 11487 11488 + '@nuxtjs/mcp-toolkit@0.6.2(hono@4.11.7)(magicast@0.5.1)(zod@4.3.6)': 11489 + dependencies: 11490 + '@clack/prompts': 0.11.0 11491 + '@modelcontextprotocol/sdk': 1.25.3(hono@4.11.7)(zod@4.3.6) 11492 + '@nuxt/kit': 4.3.0(magicast@0.5.1) 11493 + automd: 0.4.2(magicast@0.5.1) 11494 + chokidar: 5.0.0 11495 + defu: 6.1.4 11496 + ms: 2.1.3 11497 + pathe: 2.0.3 11498 + satori: 0.18.4 11499 + scule: 1.3.0 11500 + tinyglobby: 0.2.15 11501 + zod: 4.3.6 11502 + transitivePeerDependencies: 11503 + - '@cfworker/json-schema' 11504 + - hono 11505 + - magicast 11506 + - supports-color 11507 + 11508 + '@nuxtjs/mdc@0.20.0(magicast@0.5.1)': 11509 + dependencies: 11510 + '@nuxt/kit': 4.3.0(magicast@0.5.1) 11511 + '@shikijs/core': 3.21.0 11512 + '@shikijs/langs': 3.21.0 11513 + '@shikijs/themes': 3.21.0 11514 + '@shikijs/transformers': 3.21.0 11515 + '@types/hast': 3.0.4 11516 + '@types/mdast': 4.0.4 11517 + '@vue/compiler-core': 3.5.27 11518 + consola: 3.4.2 11519 + debug: 4.4.3 11520 + defu: 6.1.4 11521 + destr: 2.0.5 11522 + detab: 3.0.2 11523 + github-slugger: 2.0.0 11524 + hast-util-format: 1.1.0 11525 + hast-util-to-mdast: 10.1.2 11526 + hast-util-to-string: 3.0.1 11527 + mdast-util-to-hast: 13.2.1 11528 + micromark-util-sanitize-uri: 2.0.1 11529 + parse5: 8.0.0 11530 + pathe: 2.0.3 11531 + property-information: 7.1.0 11532 + rehype-external-links: 3.0.0 11533 + rehype-minify-whitespace: 6.0.2 11534 + rehype-raw: 7.0.0 11535 + rehype-remark: 10.0.1 11536 + rehype-slug: 6.0.0 11537 + rehype-sort-attribute-values: 5.0.1 11538 + rehype-sort-attributes: 5.0.1 11539 + remark-emoji: 5.0.2 11540 + remark-gfm: 4.0.1 11541 + remark-mdc: 3.10.0 11542 + remark-parse: 11.0.0 11543 + remark-rehype: 11.1.2 11544 + remark-stringify: 11.0.0 11545 + scule: 1.3.0 11546 + shiki: 3.21.0 11547 + ufo: 1.6.3 11548 + unified: 11.0.5 11549 + unist-builder: 4.0.0 11550 + unist-util-visit: 5.0.0 11551 + unwasm: 0.5.3 11552 + vfile: 6.0.3 11553 + transitivePeerDependencies: 11554 + - magicast 11555 + - supports-color 11556 + 11557 + '@nuxtjs/robots@5.6.7(magicast@0.5.1)(vue@3.5.27(typescript@5.9.3))(zod@4.3.6)': 11558 + dependencies: 11559 + '@fingerprintjs/botd': 2.0.0 11560 + '@nuxt/kit': 4.3.0(magicast@0.5.1) 11561 + consola: 3.4.2 11562 + defu: 6.1.4 11563 + nuxt-site-config: 3.2.18(magicast@0.5.1)(vue@3.5.27(typescript@5.9.3)) 11564 + pathe: 2.0.3 11565 + pkg-types: 2.3.0 11566 + sirv: 3.0.2 11567 + std-env: 3.10.0 11568 + ufo: 1.6.3 11569 + optionalDependencies: 11570 + zod: 4.3.6 11571 + transitivePeerDependencies: 11572 + - magicast 11573 + - vue 11574 + 9322 11575 '@one-ini/wasm@0.1.1': {} 9323 11576 9324 11577 '@oxc-minify/binding-android-arm-eabi@0.110.0': ··· 9763 12016 dependencies: 9764 12017 quansync: 1.0.0 9765 12018 12019 + '@remirror/core-constants@3.0.0': {} 12020 + 9766 12021 '@resvg/resvg-js-android-arm-eabi@2.6.2': 9767 12022 optional: true 9768 12023 ··· 10083 12338 dependencies: 10084 12339 '@shikijs/types': 3.21.0 10085 12340 12341 + '@shikijs/transformers@3.21.0': 12342 + dependencies: 12343 + '@shikijs/core': 3.21.0 12344 + '@shikijs/types': 3.21.0 12345 + 10086 12346 '@shikijs/types@3.21.0': 10087 12347 dependencies: 10088 12348 '@shikijs/vscode-textmate': 10.0.2 ··· 10100 12360 ajv: 8.17.1 10101 12361 kleur: 4.1.5 10102 12362 12363 + '@sindresorhus/is@4.6.0': {} 12364 + 10103 12365 '@sindresorhus/is@7.2.0': {} 10104 12366 10105 12367 '@sindresorhus/merge-streams@4.0.0': {} 12368 + 12369 + '@socket.io/component-emitter@3.1.2': {} 10106 12370 10107 12371 '@speed-highlight/core@1.2.14': {} 12372 + 12373 + '@sqlite.org/sqlite-wasm@3.50.4-build1': {} 10108 12374 10109 12375 '@standard-schema/spec@1.1.0': {} 10110 12376 ··· 10119 12385 dependencies: 10120 12386 tslib: 2.8.1 10121 12387 12388 + '@tailwindcss/node@4.1.18': 12389 + dependencies: 12390 + '@jridgewell/remapping': 2.3.5 12391 + enhanced-resolve: 5.18.4 12392 + jiti: 2.6.1 12393 + lightningcss: 1.30.2 12394 + magic-string: 0.30.21 12395 + source-map-js: 1.2.1 12396 + tailwindcss: 4.1.18 12397 + 12398 + '@tailwindcss/oxide-android-arm64@4.1.18': 12399 + optional: true 12400 + 12401 + '@tailwindcss/oxide-darwin-arm64@4.1.18': 12402 + optional: true 12403 + 12404 + '@tailwindcss/oxide-darwin-x64@4.1.18': 12405 + optional: true 12406 + 12407 + '@tailwindcss/oxide-freebsd-x64@4.1.18': 12408 + optional: true 12409 + 12410 + '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.18': 12411 + optional: true 12412 + 12413 + '@tailwindcss/oxide-linux-arm64-gnu@4.1.18': 12414 + optional: true 12415 + 12416 + '@tailwindcss/oxide-linux-arm64-musl@4.1.18': 12417 + optional: true 12418 + 12419 + '@tailwindcss/oxide-linux-x64-gnu@4.1.18': 12420 + optional: true 12421 + 12422 + '@tailwindcss/oxide-linux-x64-musl@4.1.18': 12423 + optional: true 12424 + 12425 + '@tailwindcss/oxide-wasm32-wasi@4.1.18': 12426 + optional: true 12427 + 12428 + '@tailwindcss/oxide-win32-arm64-msvc@4.1.18': 12429 + optional: true 12430 + 12431 + '@tailwindcss/oxide-win32-x64-msvc@4.1.18': 12432 + optional: true 12433 + 12434 + '@tailwindcss/oxide@4.1.18': 12435 + optionalDependencies: 12436 + '@tailwindcss/oxide-android-arm64': 4.1.18 12437 + '@tailwindcss/oxide-darwin-arm64': 4.1.18 12438 + '@tailwindcss/oxide-darwin-x64': 4.1.18 12439 + '@tailwindcss/oxide-freebsd-x64': 4.1.18 12440 + '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.18 12441 + '@tailwindcss/oxide-linux-arm64-gnu': 4.1.18 12442 + '@tailwindcss/oxide-linux-arm64-musl': 4.1.18 12443 + '@tailwindcss/oxide-linux-x64-gnu': 4.1.18 12444 + '@tailwindcss/oxide-linux-x64-musl': 4.1.18 12445 + '@tailwindcss/oxide-wasm32-wasi': 4.1.18 12446 + '@tailwindcss/oxide-win32-arm64-msvc': 4.1.18 12447 + '@tailwindcss/oxide-win32-x64-msvc': 4.1.18 12448 + 12449 + '@tailwindcss/postcss@4.1.18': 12450 + dependencies: 12451 + '@alloc/quick-lru': 5.2.0 12452 + '@tailwindcss/node': 4.1.18 12453 + '@tailwindcss/oxide': 4.1.18 12454 + postcss: 8.5.6 12455 + tailwindcss: 4.1.18 12456 + 12457 + '@tailwindcss/vite@4.1.18(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))': 12458 + dependencies: 12459 + '@tailwindcss/node': 4.1.18 12460 + '@tailwindcss/oxide': 4.1.18 12461 + tailwindcss: 4.1.18 12462 + vite: 8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) 12463 + 12464 + '@tanstack/table-core@8.21.3': {} 12465 + 12466 + '@tanstack/virtual-core@3.13.18': {} 12467 + 12468 + '@tanstack/vue-table@8.21.3(vue@3.5.27(typescript@5.9.3))': 12469 + dependencies: 12470 + '@tanstack/table-core': 8.21.3 12471 + vue: 3.5.27(typescript@5.9.3) 12472 + 12473 + '@tanstack/vue-virtual@3.13.18(vue@3.5.27(typescript@5.9.3))': 12474 + dependencies: 12475 + '@tanstack/virtual-core': 3.13.18 12476 + vue: 3.5.27(typescript@5.9.3) 12477 + 12478 + '@tiptap/core@3.17.1(@tiptap/pm@3.17.1)': 12479 + dependencies: 12480 + '@tiptap/pm': 3.17.1 12481 + 12482 + '@tiptap/extension-blockquote@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))': 12483 + dependencies: 12484 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12485 + 12486 + '@tiptap/extension-bold@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))': 12487 + dependencies: 12488 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12489 + 12490 + '@tiptap/extension-bubble-menu@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)': 12491 + dependencies: 12492 + '@floating-ui/dom': 1.7.5 12493 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12494 + '@tiptap/pm': 3.17.1 12495 + 12496 + '@tiptap/extension-bullet-list@3.17.1(@tiptap/extension-list@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1))': 12497 + dependencies: 12498 + '@tiptap/extension-list': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 12499 + 12500 + '@tiptap/extension-code-block@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)': 12501 + dependencies: 12502 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12503 + '@tiptap/pm': 3.17.1 12504 + 12505 + '@tiptap/extension-code@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))': 12506 + dependencies: 12507 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12508 + 12509 + '@tiptap/extension-collaboration@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29))(yjs@13.6.29)': 12510 + dependencies: 12511 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12512 + '@tiptap/pm': 3.17.1 12513 + '@tiptap/y-tiptap': 3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29) 12514 + yjs: 13.6.29 12515 + 12516 + '@tiptap/extension-document@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))': 12517 + dependencies: 12518 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12519 + 12520 + '@tiptap/extension-drag-handle-vue-3@3.17.1(@tiptap/extension-drag-handle@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/extension-collaboration@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29))(yjs@13.6.29))(@tiptap/extension-node-range@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29)))(@tiptap/pm@3.17.1)(@tiptap/vue-3@3.17.1(@floating-ui/dom@1.7.5)(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)(vue@3.5.27(typescript@5.9.3)))(vue@3.5.27(typescript@5.9.3))': 12521 + dependencies: 12522 + '@tiptap/extension-drag-handle': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/extension-collaboration@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29))(yjs@13.6.29))(@tiptap/extension-node-range@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29)) 12523 + '@tiptap/pm': 3.17.1 12524 + '@tiptap/vue-3': 3.17.1(@floating-ui/dom@1.7.5)(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)(vue@3.5.27(typescript@5.9.3)) 12525 + vue: 3.5.27(typescript@5.9.3) 12526 + 12527 + '@tiptap/extension-drag-handle@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/extension-collaboration@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29))(yjs@13.6.29))(@tiptap/extension-node-range@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29))': 12528 + dependencies: 12529 + '@floating-ui/dom': 1.7.5 12530 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12531 + '@tiptap/extension-collaboration': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29))(yjs@13.6.29) 12532 + '@tiptap/extension-node-range': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 12533 + '@tiptap/pm': 3.17.1 12534 + '@tiptap/y-tiptap': 3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29) 12535 + 12536 + '@tiptap/extension-dropcursor@3.17.1(@tiptap/extensions@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1))': 12537 + dependencies: 12538 + '@tiptap/extensions': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 12539 + 12540 + '@tiptap/extension-floating-menu@3.17.1(@floating-ui/dom@1.7.5)(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)': 12541 + dependencies: 12542 + '@floating-ui/dom': 1.7.5 12543 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12544 + '@tiptap/pm': 3.17.1 12545 + 12546 + '@tiptap/extension-gapcursor@3.17.1(@tiptap/extensions@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1))': 12547 + dependencies: 12548 + '@tiptap/extensions': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 12549 + 12550 + '@tiptap/extension-hard-break@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))': 12551 + dependencies: 12552 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12553 + 12554 + '@tiptap/extension-heading@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))': 12555 + dependencies: 12556 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12557 + 12558 + '@tiptap/extension-horizontal-rule@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)': 12559 + dependencies: 12560 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12561 + '@tiptap/pm': 3.17.1 12562 + 12563 + '@tiptap/extension-image@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))': 12564 + dependencies: 12565 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12566 + 12567 + '@tiptap/extension-italic@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))': 12568 + dependencies: 12569 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12570 + 12571 + '@tiptap/extension-link@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)': 12572 + dependencies: 12573 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12574 + '@tiptap/pm': 3.17.1 12575 + linkifyjs: 4.3.2 12576 + 12577 + '@tiptap/extension-list-item@3.17.1(@tiptap/extension-list@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1))': 12578 + dependencies: 12579 + '@tiptap/extension-list': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 12580 + 12581 + '@tiptap/extension-list-keymap@3.17.1(@tiptap/extension-list@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1))': 12582 + dependencies: 12583 + '@tiptap/extension-list': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 12584 + 12585 + '@tiptap/extension-list@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)': 12586 + dependencies: 12587 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12588 + '@tiptap/pm': 3.17.1 12589 + 12590 + '@tiptap/extension-mention@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)(@tiptap/suggestion@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1))': 12591 + dependencies: 12592 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12593 + '@tiptap/pm': 3.17.1 12594 + '@tiptap/suggestion': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 12595 + 12596 + '@tiptap/extension-node-range@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)': 12597 + dependencies: 12598 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12599 + '@tiptap/pm': 3.17.1 12600 + 12601 + '@tiptap/extension-ordered-list@3.17.1(@tiptap/extension-list@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1))': 12602 + dependencies: 12603 + '@tiptap/extension-list': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 12604 + 12605 + '@tiptap/extension-paragraph@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))': 12606 + dependencies: 12607 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12608 + 12609 + '@tiptap/extension-placeholder@3.17.1(@tiptap/extensions@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1))': 12610 + dependencies: 12611 + '@tiptap/extensions': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 12612 + 12613 + '@tiptap/extension-strike@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))': 12614 + dependencies: 12615 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12616 + 12617 + '@tiptap/extension-text@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))': 12618 + dependencies: 12619 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12620 + 12621 + '@tiptap/extension-underline@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))': 12622 + dependencies: 12623 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12624 + 12625 + '@tiptap/extensions@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)': 12626 + dependencies: 12627 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12628 + '@tiptap/pm': 3.17.1 12629 + 12630 + '@tiptap/markdown@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)': 12631 + dependencies: 12632 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12633 + '@tiptap/pm': 3.17.1 12634 + marked: 15.0.12 12635 + 12636 + '@tiptap/pm@3.17.1': 12637 + dependencies: 12638 + prosemirror-changeset: 2.3.1 12639 + prosemirror-collab: 1.3.1 12640 + prosemirror-commands: 1.7.1 12641 + prosemirror-dropcursor: 1.8.2 12642 + prosemirror-gapcursor: 1.4.0 12643 + prosemirror-history: 1.5.0 12644 + prosemirror-inputrules: 1.5.1 12645 + prosemirror-keymap: 1.2.3 12646 + prosemirror-markdown: 1.13.3 12647 + prosemirror-menu: 1.2.5 12648 + prosemirror-model: 1.25.4 12649 + prosemirror-schema-basic: 1.2.4 12650 + prosemirror-schema-list: 1.5.1 12651 + prosemirror-state: 1.4.4 12652 + prosemirror-tables: 1.8.5 12653 + prosemirror-trailing-node: 3.0.0(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5) 12654 + prosemirror-transform: 1.11.0 12655 + prosemirror-view: 1.41.5 12656 + 12657 + '@tiptap/starter-kit@3.17.1': 12658 + dependencies: 12659 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12660 + '@tiptap/extension-blockquote': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1)) 12661 + '@tiptap/extension-bold': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1)) 12662 + '@tiptap/extension-bullet-list': 3.17.1(@tiptap/extension-list@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)) 12663 + '@tiptap/extension-code': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1)) 12664 + '@tiptap/extension-code-block': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 12665 + '@tiptap/extension-document': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1)) 12666 + '@tiptap/extension-dropcursor': 3.17.1(@tiptap/extensions@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)) 12667 + '@tiptap/extension-gapcursor': 3.17.1(@tiptap/extensions@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)) 12668 + '@tiptap/extension-hard-break': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1)) 12669 + '@tiptap/extension-heading': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1)) 12670 + '@tiptap/extension-horizontal-rule': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 12671 + '@tiptap/extension-italic': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1)) 12672 + '@tiptap/extension-link': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 12673 + '@tiptap/extension-list': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 12674 + '@tiptap/extension-list-item': 3.17.1(@tiptap/extension-list@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)) 12675 + '@tiptap/extension-list-keymap': 3.17.1(@tiptap/extension-list@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)) 12676 + '@tiptap/extension-ordered-list': 3.17.1(@tiptap/extension-list@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)) 12677 + '@tiptap/extension-paragraph': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1)) 12678 + '@tiptap/extension-strike': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1)) 12679 + '@tiptap/extension-text': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1)) 12680 + '@tiptap/extension-underline': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1)) 12681 + '@tiptap/extensions': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 12682 + '@tiptap/pm': 3.17.1 12683 + 12684 + '@tiptap/suggestion@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)': 12685 + dependencies: 12686 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12687 + '@tiptap/pm': 3.17.1 12688 + 12689 + '@tiptap/vue-3@3.17.1(@floating-ui/dom@1.7.5)(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1)(vue@3.5.27(typescript@5.9.3))': 12690 + dependencies: 12691 + '@floating-ui/dom': 1.7.5 12692 + '@tiptap/core': 3.17.1(@tiptap/pm@3.17.1) 12693 + '@tiptap/pm': 3.17.1 12694 + vue: 3.5.27(typescript@5.9.3) 12695 + optionalDependencies: 12696 + '@tiptap/extension-bubble-menu': 3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 12697 + '@tiptap/extension-floating-menu': 3.17.1(@floating-ui/dom@1.7.5)(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1) 12698 + 12699 + '@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29)': 12700 + dependencies: 12701 + lib0: 0.2.117 12702 + prosemirror-model: 1.25.4 12703 + prosemirror-state: 1.4.4 12704 + prosemirror-view: 1.41.5 12705 + y-protocols: 1.0.7(yjs@13.6.29) 12706 + yjs: 13.6.29 12707 + 10122 12708 '@tybys/wasm-util@0.10.1': 10123 12709 dependencies: 10124 12710 tslib: 2.8.1 ··· 10128 12714 dependencies: 10129 12715 '@types/deep-eql': 4.0.2 10130 12716 assertion-error: 2.0.1 12717 + 12718 + '@types/debug@4.1.12': 12719 + dependencies: 12720 + '@types/ms': 2.1.0 10131 12721 10132 12722 '@types/deep-eql@4.0.2': {} 10133 12723 ··· 10153 12743 10154 12744 '@types/json-schema@7.0.15': {} 10155 12745 12746 + '@types/linkify-it@5.0.0': {} 12747 + 12748 + '@types/lodash@4.17.23': {} 12749 + 12750 + '@types/markdown-it@14.1.2': 12751 + dependencies: 12752 + '@types/linkify-it': 5.0.0 12753 + '@types/mdurl': 2.0.0 12754 + 10156 12755 '@types/mdast@4.0.4': 10157 12756 dependencies: 10158 12757 '@types/unist': 3.0.3 12758 + 12759 + '@types/mdurl@2.0.0': {} 12760 + 12761 + '@types/ms@2.1.0': {} 10159 12762 10160 12763 '@types/node@24.10.9': 10161 12764 dependencies: ··· 10180 12783 10181 12784 '@types/trusted-types@2.0.7': {} 10182 12785 12786 + '@types/unist@2.0.11': {} 12787 + 10183 12788 '@types/unist@3.0.3': {} 10184 12789 10185 12790 '@types/validate-npm-package-name@4.0.2': {} 12791 + 12792 + '@types/web-bluetooth@0.0.20': {} 10186 12793 10187 12794 '@types/web-bluetooth@0.0.21': {} 10188 12795 ··· 10738 13345 path-browserify: 1.0.1 10739 13346 picomatch: 4.0.3 10740 13347 13348 + '@vue/language-core@3.2.4': 13349 + dependencies: 13350 + '@volar/language-core': 2.4.27 13351 + '@vue/compiler-dom': 3.5.27 13352 + '@vue/shared': 3.5.27 13353 + alien-signals: 3.1.2 13354 + muggle-string: 0.4.1 13355 + path-browserify: 1.0.1 13356 + picomatch: 4.0.3 13357 + 10741 13358 '@vue/reactivity@3.5.27': 10742 13359 dependencies: 10743 13360 '@vue/shared': 3.5.27 ··· 10767 13384 js-beautify: 1.15.4 10768 13385 vue-component-type-helpers: 2.2.12 10769 13386 13387 + '@vueuse/core@10.11.1(vue@3.5.27(typescript@5.9.3))': 13388 + dependencies: 13389 + '@types/web-bluetooth': 0.0.20 13390 + '@vueuse/metadata': 10.11.1 13391 + '@vueuse/shared': 10.11.1(vue@3.5.27(typescript@5.9.3)) 13392 + vue-demi: 0.14.10(vue@3.5.27(typescript@5.9.3)) 13393 + transitivePeerDependencies: 13394 + - '@vue/composition-api' 13395 + - vue 13396 + 13397 + '@vueuse/core@12.8.2(typescript@5.9.3)': 13398 + dependencies: 13399 + '@types/web-bluetooth': 0.0.21 13400 + '@vueuse/metadata': 12.8.2 13401 + '@vueuse/shared': 12.8.2(typescript@5.9.3) 13402 + vue: 3.5.27(typescript@5.9.3) 13403 + transitivePeerDependencies: 13404 + - typescript 13405 + 10770 13406 '@vueuse/core@14.1.0(vue@3.5.27(typescript@5.9.3))': 10771 13407 dependencies: 10772 13408 '@types/web-bluetooth': 0.0.21 ··· 10774 13410 '@vueuse/shared': 14.1.0(vue@3.5.27(typescript@5.9.3)) 10775 13411 vue: 3.5.27(typescript@5.9.3) 10776 13412 13413 + '@vueuse/integrations@14.1.0(fuse.js@7.1.0)(vue@3.5.27(typescript@5.9.3))': 13414 + dependencies: 13415 + '@vueuse/core': 14.1.0(vue@3.5.27(typescript@5.9.3)) 13416 + '@vueuse/shared': 14.1.0(vue@3.5.27(typescript@5.9.3)) 13417 + vue: 3.5.27(typescript@5.9.3) 13418 + optionalDependencies: 13419 + fuse.js: 7.1.0 13420 + 13421 + '@vueuse/metadata@10.11.1': {} 13422 + 13423 + '@vueuse/metadata@12.8.2': {} 13424 + 10777 13425 '@vueuse/metadata@14.1.0': {} 10778 13426 10779 - '@vueuse/nuxt@14.1.0(magicast@0.5.1)(nuxt@4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2))(vue@3.5.27(typescript@5.9.3))': 13427 + '@vueuse/nuxt@14.1.0(magicast@0.5.1)(nuxt@4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2))(vue@3.5.27(typescript@5.9.3))': 10780 13428 dependencies: 10781 13429 '@nuxt/kit': 4.3.0(magicast@0.5.1) 10782 13430 '@vueuse/core': 14.1.0(vue@3.5.27(typescript@5.9.3)) 10783 13431 '@vueuse/metadata': 14.1.0 10784 13432 local-pkg: 1.1.2 10785 - nuxt: 4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2) 13433 + nuxt: 4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2) 10786 13434 vue: 3.5.27(typescript@5.9.3) 10787 13435 transitivePeerDependencies: 10788 13436 - magicast 13437 + 13438 + '@vueuse/shared@10.11.1(vue@3.5.27(typescript@5.9.3))': 13439 + dependencies: 13440 + vue-demi: 0.14.10(vue@3.5.27(typescript@5.9.3)) 13441 + transitivePeerDependencies: 13442 + - '@vue/composition-api' 13443 + - vue 13444 + 13445 + '@vueuse/shared@12.8.2(typescript@5.9.3)': 13446 + dependencies: 13447 + vue: 3.5.27(typescript@5.9.3) 13448 + transitivePeerDependencies: 13449 + - typescript 10789 13450 10790 13451 '@vueuse/shared@14.1.0(vue@3.5.27(typescript@5.9.3))': 10791 13452 dependencies: ··· 10867 13528 '@webassemblyjs/ast': 1.14.1 10868 13529 '@xtuc/long': 4.2.2 10869 13530 13531 + '@webcontainer/env@1.1.1': {} 13532 + 10870 13533 '@xtuc/ieee754@1.2.0': {} 10871 13534 10872 13535 '@xtuc/long@4.2.2': {} ··· 10878 13541 abort-controller@3.0.0: 10879 13542 dependencies: 10880 13543 event-target-shim: 5.0.1 13544 + 13545 + accepts@2.0.0: 13546 + dependencies: 13547 + mime-types: 3.0.2 13548 + negotiator: 1.0.0 10881 13549 10882 13550 acorn-import-attributes@1.9.5(acorn@8.15.0): 10883 13551 dependencies: ··· 10899 13567 optionalDependencies: 10900 13568 ajv: 8.17.1 10901 13569 13570 + ajv-formats@3.0.1(ajv@8.17.1): 13571 + optionalDependencies: 13572 + ajv: 8.17.1 13573 + 10902 13574 ajv-keywords@5.1.0(ajv@8.17.1): 10903 13575 dependencies: 10904 13576 ajv: 8.17.1 ··· 10966 13638 10967 13639 argparse@2.0.1: {} 10968 13640 13641 + aria-hidden@1.2.6: 13642 + dependencies: 13643 + tslib: 2.8.1 13644 + 10969 13645 array-buffer-byte-length@1.0.2: 10970 13646 dependencies: 10971 13647 call-bound: 1.0.4 ··· 11007 13683 11008 13684 async-function@1.0.0: {} 11009 13685 13686 + async-lock@1.4.1: {} 13687 + 11010 13688 async-sema@3.1.1: {} 11011 13689 11012 13690 async@3.2.6: {} 11013 13691 11014 13692 at-least-node@1.0.0: {} 11015 13693 13694 + automd@0.4.2(magicast@0.5.1): 13695 + dependencies: 13696 + '@parcel/watcher': 2.5.4 13697 + c12: 3.3.3(magicast@0.5.1) 13698 + citty: 0.1.6 13699 + consola: 3.4.2 13700 + defu: 6.1.4 13701 + destr: 2.0.5 13702 + didyoumean2: 7.0.4 13703 + magic-string: 0.30.21 13704 + mdbox: 0.1.1 13705 + mlly: 1.8.0 13706 + ofetch: 1.5.1 13707 + pathe: 2.0.3 13708 + perfect-debounce: 2.1.0 13709 + pkg-types: 2.3.0 13710 + scule: 1.3.0 13711 + tinyglobby: 0.2.15 13712 + untyped: 2.0.0 13713 + transitivePeerDependencies: 13714 + - magicast 13715 + 11016 13716 autoprefixer@10.4.23(postcss@8.5.6): 11017 13717 dependencies: 11018 13718 browserslist: 4.28.1 ··· 11054 13754 transitivePeerDependencies: 11055 13755 - supports-color 11056 13756 13757 + bail@2.0.2: {} 13758 + 11057 13759 balanced-match@1.0.2: {} 11058 13760 11059 13761 bare-events@2.8.2: {} ··· 11064 13766 11065 13767 baseline-browser-mapping@2.9.17: {} 11066 13768 13769 + better-sqlite3@12.5.0: 13770 + dependencies: 13771 + bindings: 1.5.0 13772 + prebuild-install: 7.1.3 13773 + 13774 + better-sqlite3@12.6.2: 13775 + dependencies: 13776 + bindings: 1.5.0 13777 + prebuild-install: 7.1.3 13778 + optional: true 13779 + 11067 13780 bidi-js@1.0.3: 11068 13781 dependencies: 11069 13782 require-from-string: 2.0.2 ··· 11077 13790 11078 13791 birpc@4.0.0: {} 11079 13792 13793 + bl@4.1.0: 13794 + dependencies: 13795 + buffer: 5.7.1 13796 + inherits: 2.0.4 13797 + readable-stream: 3.6.2 13798 + 13799 + body-parser@2.2.2: 13800 + dependencies: 13801 + bytes: 3.1.2 13802 + content-type: 1.0.5 13803 + debug: 4.4.3 13804 + http-errors: 2.0.1 13805 + iconv-lite: 0.7.2 13806 + on-finished: 2.4.1 13807 + qs: 6.14.1 13808 + raw-body: 3.0.2 13809 + type-is: 2.0.1 13810 + transitivePeerDependencies: 13811 + - supports-color 13812 + 11080 13813 boolbase@1.0.0: {} 11081 13814 11082 13815 brace-expansion@1.1.12: ··· 11108 13841 11109 13842 buffer-from@1.1.2: {} 11110 13843 13844 + buffer@5.7.1: 13845 + dependencies: 13846 + base64-js: 1.5.1 13847 + ieee754: 1.2.1 13848 + 11111 13849 buffer@6.0.3: 11112 13850 dependencies: 11113 13851 base64-js: 1.5.1 ··· 11116 13854 bundle-name@4.1.0: 11117 13855 dependencies: 11118 13856 run-applescript: 7.1.0 13857 + 13858 + bytes@3.1.2: {} 11119 13859 11120 13860 c12@3.3.3(magicast@0.5.1): 11121 13861 dependencies: ··· 11173 13913 ansi-styles: 4.3.0 11174 13914 supports-color: 7.2.0 11175 13915 13916 + char-regex@1.0.2: {} 13917 + 11176 13918 character-entities-html4@2.1.0: {} 11177 13919 11178 13920 character-entities-legacy@3.0.0: {} 11179 13921 13922 + character-entities@2.0.2: {} 13923 + 13924 + character-reference-invalid@2.0.1: {} 13925 + 11180 13926 chokidar@4.0.3: 11181 13927 dependencies: 11182 13928 readdirp: 4.1.2 ··· 11184 13930 chokidar@5.0.0: 11185 13931 dependencies: 11186 13932 readdirp: 5.0.0 13933 + 13934 + chownr@1.1.4: {} 11187 13935 11188 13936 chownr@3.0.0: {} 11189 13937 ··· 11203 13951 consola: 3.4.2 11204 13952 11205 13953 citty@0.2.0: {} 13954 + 13955 + clean-git-ref@2.0.1: {} 11206 13956 11207 13957 cli-cursor@5.0.0: 11208 13958 dependencies: ··· 11238 13988 colord@2.9.3: {} 11239 13989 11240 13990 colorette@2.0.20: {} 13991 + 13992 + colortranslator@5.0.0: {} 11241 13993 11242 13994 comma-separated-tokens@2.0.3: {} 11243 13995 ··· 11276 14028 11277 14029 consola@3.4.2: {} 11278 14030 14031 + content-disposition@1.0.1: {} 14032 + 14033 + content-type@1.0.5: {} 14034 + 11279 14035 convert-source-map@2.0.0: {} 11280 14036 11281 14037 cookie-es@1.2.2: {} 11282 14038 11283 14039 cookie-es@2.0.0: {} 14040 + 14041 + cookie-signature@1.2.2: {} 14042 + 14043 + cookie@0.7.2: {} 11284 14044 11285 14045 copy-anything@4.0.5: 11286 14046 dependencies: ··· 11296 14056 11297 14057 core-util-is@1.0.3: {} 11298 14058 14059 + cors@2.8.6: 14060 + dependencies: 14061 + object-assign: 4.1.1 14062 + vary: 1.1.2 14063 + 11299 14064 crc-32@1.2.2: {} 11300 14065 11301 14066 crc32-stream@6.0.0: 11302 14067 dependencies: 11303 14068 crc-32: 1.2.2 11304 14069 readable-stream: 4.7.0 14070 + 14071 + crelt@1.0.6: {} 11305 14072 11306 14073 croner@9.1.0: {} 11307 14074 ··· 11356 14123 css-what@6.2.2: {} 11357 14124 11358 14125 cssesc@3.0.0: {} 14126 + 14127 + cssfilter@0.0.10: 14128 + optional: true 11359 14129 11360 14130 cssnano-preset-default@7.0.10(postcss@8.5.6): 11361 14131 dependencies: ··· 11439 14209 es-errors: 1.3.0 11440 14210 is-data-view: 1.0.2 11441 14211 11442 - db0@0.3.4: {} 14212 + db0@0.3.4(better-sqlite3@12.5.0): 14213 + optionalDependencies: 14214 + better-sqlite3: 12.5.0 14215 + 14216 + db0@0.3.4(better-sqlite3@12.6.2): 14217 + optionalDependencies: 14218 + better-sqlite3: 12.6.2 11443 14219 11444 14220 debug@4.4.3: 11445 14221 dependencies: ··· 11459 14235 decode-bmp: 0.2.1 11460 14236 to-data-view: 1.1.0 11461 14237 14238 + decode-named-character-reference@1.3.0: 14239 + dependencies: 14240 + character-entities: 2.0.2 14241 + 14242 + decompress-response@6.0.0: 14243 + dependencies: 14244 + mimic-response: 3.1.0 14245 + 14246 + deep-extend@0.6.0: {} 14247 + 11462 14248 deep-is@0.1.4: {} 11463 14249 11464 14250 deepmerge@4.3.1: {} ··· 11496 14282 11497 14283 destr@2.0.5: {} 11498 14284 14285 + detab@3.0.2: {} 14286 + 11499 14287 detect-libc@2.1.2: {} 11500 14288 11501 14289 devalue@5.6.2: {} ··· 11506 14294 11507 14295 dfa@1.2.0: {} 11508 14296 14297 + didyoumean2@7.0.4: 14298 + dependencies: 14299 + '@babel/runtime': 7.28.6 14300 + fastest-levenshtein: 1.0.16 14301 + lodash.deburr: 4.1.0 14302 + 14303 + diff3@0.0.3: {} 14304 + 11509 14305 diff@8.0.3: {} 11510 14306 14307 + docus@5.4.4(f8ca6697922b425ef942e9ca7dfe6d62): 14308 + dependencies: 14309 + '@iconify-json/lucide': 1.2.87 14310 + '@iconify-json/simple-icons': 1.2.67 14311 + '@iconify-json/vscode-icons': 1.2.40 14312 + '@nuxt/content': 3.11.0(better-sqlite3@12.5.0)(magicast@0.5.1)(valibot@1.2.0(typescript@5.9.3)) 14313 + '@nuxt/image': 2.0.0(db0@0.3.4(better-sqlite3@12.5.0))(ioredis@5.9.2)(magicast@0.5.1) 14314 + '@nuxt/kit': 4.3.0(magicast@0.5.1) 14315 + '@nuxt/ui': 4.4.0(@nuxt/content@3.11.0(better-sqlite3@12.5.0)(magicast@0.5.1)(valibot@1.2.0(typescript@5.9.3)))(@tiptap/extensions@3.17.1(@tiptap/core@3.17.1(@tiptap/pm@3.17.1))(@tiptap/pm@3.17.1))(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29))(db0@0.3.4(better-sqlite3@12.5.0))(embla-carousel@8.6.0)(ioredis@5.9.2)(magicast@0.5.1)(tailwindcss@4.1.18)(typescript@5.9.3)(valibot@1.2.0(typescript@5.9.3))(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-router@4.6.4(vue@3.5.27(typescript@5.9.3)))(vue@3.5.27(typescript@5.9.3))(yjs@13.6.29)(zod@4.3.6) 14316 + '@nuxtjs/i18n': 10.2.1(@vue/compiler-dom@3.5.27)(db0@0.3.4(better-sqlite3@12.5.0))(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(rollup@4.56.0)(vue@3.5.27(typescript@5.9.3)) 14317 + '@nuxtjs/mcp-toolkit': 0.6.2(hono@4.11.7)(magicast@0.5.1)(zod@4.3.6) 14318 + '@nuxtjs/mdc': 0.20.0(magicast@0.5.1) 14319 + '@nuxtjs/robots': 5.6.7(magicast@0.5.1)(vue@3.5.27(typescript@5.9.3))(zod@4.3.6) 14320 + '@vueuse/core': 14.1.0(vue@3.5.27(typescript@5.9.3)) 14321 + better-sqlite3: 12.5.0 14322 + defu: 6.1.4 14323 + exsolve: 1.0.8 14324 + git-url-parse: 16.1.0 14325 + minimark: 0.2.0 14326 + motion-v: 1.10.2(@vueuse/core@14.1.0(vue@3.5.27(typescript@5.9.3)))(vue@3.5.27(typescript@5.9.3)) 14327 + nuxt: 4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(better-sqlite3@12.5.0)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.5.0))(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2) 14328 + nuxt-llms: 0.2.0(magicast@0.5.1) 14329 + nuxt-og-image: 5.1.13(@unhead/vue@2.1.2(vue@3.5.27(typescript@5.9.3)))(magicast@0.5.1)(unstorage@1.17.4(db0@0.3.4(better-sqlite3@12.5.0))(ioredis@5.9.2))(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.27(typescript@5.9.3)) 14330 + pkg-types: 2.3.0 14331 + scule: 1.3.0 14332 + tailwindcss: 4.1.18 14333 + ufo: 1.6.3 14334 + zod: 4.3.6 14335 + zod-to-json-schema: 3.25.1(zod@4.3.6) 14336 + transitivePeerDependencies: 14337 + - '@azure/app-configuration' 14338 + - '@azure/cosmos' 14339 + - '@azure/data-tables' 14340 + - '@azure/identity' 14341 + - '@azure/keyvault-secrets' 14342 + - '@azure/storage-blob' 14343 + - '@capacitor/preferences' 14344 + - '@cfworker/json-schema' 14345 + - '@deno/kv' 14346 + - '@electric-sql/pglite' 14347 + - '@emotion/is-prop-valid' 14348 + - '@inertiajs/vue3' 14349 + - '@libsql/client' 14350 + - '@netlify/blobs' 14351 + - '@planetscale/database' 14352 + - '@tiptap/extensions' 14353 + - '@tiptap/y-tiptap' 14354 + - '@unhead/vue' 14355 + - '@upstash/redis' 14356 + - '@valibot/to-json-schema' 14357 + - '@vercel/blob' 14358 + - '@vercel/functions' 14359 + - '@vercel/kv' 14360 + - '@vue/compiler-dom' 14361 + - '@vue/composition-api' 14362 + - agents 14363 + - async-validator 14364 + - aws4fetch 14365 + - axios 14366 + - bufferutil 14367 + - change-case 14368 + - db0 14369 + - drauu 14370 + - drizzle-orm 14371 + - embla-carousel 14372 + - eslint 14373 + - focus-trap 14374 + - hono 14375 + - idb-keyval 14376 + - ioredis 14377 + - joi 14378 + - jwt-decode 14379 + - magicast 14380 + - mysql2 14381 + - nprogress 14382 + - petite-vue-i18n 14383 + - qrcode 14384 + - react 14385 + - react-dom 14386 + - rollup 14387 + - sortablejs 14388 + - sqlite3 14389 + - superstruct 14390 + - supports-color 14391 + - typescript 14392 + - universal-cookie 14393 + - unstorage 14394 + - uploadthing 14395 + - utf-8-validate 14396 + - valibot 14397 + - vite 14398 + - vue 14399 + - vue-router 14400 + - yjs 14401 + - yup 14402 + 11511 14403 dom-serializer@2.0.0: 11512 14404 dependencies: 11513 14405 domelementtype: 2.3.0 ··· 11561 14453 11562 14454 electron-to-chromium@1.5.267: {} 11563 14455 14456 + embla-carousel-auto-height@8.6.0(embla-carousel@8.6.0): 14457 + dependencies: 14458 + embla-carousel: 8.6.0 14459 + 14460 + embla-carousel-auto-scroll@8.6.0(embla-carousel@8.6.0): 14461 + dependencies: 14462 + embla-carousel: 8.6.0 14463 + 14464 + embla-carousel-autoplay@8.6.0(embla-carousel@8.6.0): 14465 + dependencies: 14466 + embla-carousel: 8.6.0 14467 + 14468 + embla-carousel-class-names@8.6.0(embla-carousel@8.6.0): 14469 + dependencies: 14470 + embla-carousel: 8.6.0 14471 + 14472 + embla-carousel-fade@8.6.0(embla-carousel@8.6.0): 14473 + dependencies: 14474 + embla-carousel: 8.6.0 14475 + 14476 + embla-carousel-reactive-utils@8.6.0(embla-carousel@8.6.0): 14477 + dependencies: 14478 + embla-carousel: 8.6.0 14479 + 14480 + embla-carousel-vue@8.6.0(vue@3.5.27(typescript@5.9.3)): 14481 + dependencies: 14482 + embla-carousel: 8.6.0 14483 + embla-carousel-reactive-utils: 8.6.0(embla-carousel@8.6.0) 14484 + vue: 3.5.27(typescript@5.9.3) 14485 + 14486 + embla-carousel-wheel-gestures@8.1.0(embla-carousel@8.6.0): 14487 + dependencies: 14488 + embla-carousel: 8.6.0 14489 + wheel-gestures: 2.2.48 14490 + 14491 + embla-carousel@8.6.0: {} 14492 + 11564 14493 emoji-regex-xs@2.0.1: {} 11565 14494 11566 14495 emoji-regex@10.6.0: {} ··· 11569 14498 11570 14499 emoji-regex@9.2.2: {} 11571 14500 14501 + emojilib@2.4.0: {} 14502 + 14503 + emoticon@4.1.0: {} 14504 + 11572 14505 empathic@2.0.0: {} 11573 14506 11574 14507 encodeurl@2.0.0: {} ··· 11578 14511 iconv-lite: 0.6.3 11579 14512 optional: true 11580 14513 14514 + end-of-stream@1.4.5: 14515 + dependencies: 14516 + once: 1.4.0 14517 + 14518 + engine.io-client@6.6.4: 14519 + dependencies: 14520 + '@socket.io/component-emitter': 3.1.2 14521 + debug: 4.4.3 14522 + engine.io-parser: 5.2.3 14523 + ws: 8.18.3 14524 + xmlhttprequest-ssl: 2.1.2 14525 + transitivePeerDependencies: 14526 + - bufferutil 14527 + - supports-color 14528 + - utf-8-validate 14529 + 14530 + engine.io-parser@5.2.3: {} 14531 + 11581 14532 enhanced-resolve@5.18.4: 11582 14533 dependencies: 11583 14534 graceful-fs: 4.2.11 ··· 11585 14536 11586 14537 entities@4.5.0: {} 11587 14538 11588 - entities@6.0.1: 11589 - optional: true 14539 + entities@6.0.1: {} 11590 14540 11591 14541 entities@7.0.1: {} 11592 14542 ··· 11857 14807 11858 14808 events@3.3.0: {} 11859 14809 14810 + eventsource-parser@3.0.6: {} 14811 + 14812 + eventsource@3.0.7: 14813 + dependencies: 14814 + eventsource-parser: 3.0.6 14815 + 11860 14816 execa@8.0.1: 11861 14817 dependencies: 11862 14818 cross-spawn: 7.0.6 ··· 11884 14840 strip-final-newline: 4.0.0 11885 14841 yoctocolors: 2.1.2 11886 14842 14843 + expand-template@2.0.3: {} 14844 + 14845 + express-rate-limit@7.5.1(express@5.2.1): 14846 + dependencies: 14847 + express: 5.2.1 14848 + 14849 + express@5.2.1: 14850 + dependencies: 14851 + accepts: 2.0.0 14852 + body-parser: 2.2.2 14853 + content-disposition: 1.0.1 14854 + content-type: 1.0.5 14855 + cookie: 0.7.2 14856 + cookie-signature: 1.2.2 14857 + debug: 4.4.3 14858 + depd: 2.0.0 14859 + encodeurl: 2.0.0 14860 + escape-html: 1.0.3 14861 + etag: 1.8.1 14862 + finalhandler: 2.1.1 14863 + fresh: 2.0.0 14864 + http-errors: 2.0.1 14865 + merge-descriptors: 2.0.0 14866 + mime-types: 3.0.2 14867 + on-finished: 2.4.1 14868 + once: 1.4.0 14869 + parseurl: 1.3.3 14870 + proxy-addr: 2.0.7 14871 + qs: 6.14.1 14872 + range-parser: 1.2.1 14873 + router: 2.2.0 14874 + send: 1.2.1 14875 + serve-static: 2.2.1 14876 + statuses: 2.0.2 14877 + type-is: 2.0.1 14878 + vary: 1.1.2 14879 + transitivePeerDependencies: 14880 + - supports-color 14881 + 11887 14882 exsolve@1.0.8: {} 14883 + 14884 + extend@3.0.2: {} 11888 14885 11889 14886 fake-indexeddb@6.2.5: {} 11890 14887 ··· 11908 14905 11909 14906 fast-uri@3.1.0: {} 11910 14907 14908 + fastest-levenshtein@1.0.16: {} 14909 + 11911 14910 fastq@1.20.1: 11912 14911 dependencies: 11913 14912 reusify: 1.1.0 ··· 11936 14935 dependencies: 11937 14936 to-regex-range: 5.0.1 11938 14937 14938 + finalhandler@2.1.1: 14939 + dependencies: 14940 + debug: 4.4.3 14941 + encodeurl: 2.0.0 14942 + escape-html: 1.0.3 14943 + on-finished: 2.4.1 14944 + parseurl: 1.3.3 14945 + statuses: 2.0.2 14946 + transitivePeerDependencies: 14947 + - supports-color 14948 + 11939 14949 find-up@5.0.0: 11940 14950 dependencies: 11941 14951 locate-path: 6.0.0 ··· 11945 14955 dependencies: 11946 14956 flatted: 3.3.3 11947 14957 keyv: 4.5.4 14958 + 14959 + flat@6.0.1: {} 11948 14960 11949 14961 flatted@3.3.3: {} 11950 14962 ··· 11984 14996 dependencies: 11985 14997 tiny-inflate: 1.0.3 11986 14998 11987 - fontless@0.1.0(db0@0.3.4)(ioredis@5.9.2)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)): 14999 + fontless@0.1.0(db0@0.3.4(better-sqlite3@12.5.0))(ioredis@5.9.2)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)): 11988 15000 dependencies: 11989 15001 consola: 3.4.2 11990 15002 css-tree: 3.1.0 ··· 11998 15010 pathe: 2.0.3 11999 15011 ufo: 1.6.3 12000 15012 unifont: 0.6.0 12001 - unstorage: 1.17.4(db0@0.3.4)(ioredis@5.9.2) 15013 + unstorage: 1.17.4(db0@0.3.4(better-sqlite3@12.5.0))(ioredis@5.9.2) 15014 + optionalDependencies: 15015 + vite: 8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) 15016 + transitivePeerDependencies: 15017 + - '@azure/app-configuration' 15018 + - '@azure/cosmos' 15019 + - '@azure/data-tables' 15020 + - '@azure/identity' 15021 + - '@azure/keyvault-secrets' 15022 + - '@azure/storage-blob' 15023 + - '@capacitor/preferences' 15024 + - '@deno/kv' 15025 + - '@netlify/blobs' 15026 + - '@planetscale/database' 15027 + - '@upstash/redis' 15028 + - '@vercel/blob' 15029 + - '@vercel/functions' 15030 + - '@vercel/kv' 15031 + - aws4fetch 15032 + - db0 15033 + - idb-keyval 15034 + - ioredis 15035 + - uploadthing 15036 + 15037 + fontless@0.1.0(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)): 15038 + dependencies: 15039 + consola: 3.4.2 15040 + css-tree: 3.1.0 15041 + defu: 6.1.4 15042 + esbuild: 0.25.12 15043 + fontaine: 0.7.0 15044 + jiti: 2.6.1 15045 + lightningcss: 1.31.1 15046 + magic-string: 0.30.21 15047 + ohash: 2.0.11 15048 + pathe: 2.0.3 15049 + ufo: 1.6.3 15050 + unifont: 0.6.0 15051 + unstorage: 1.17.4(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2) 12002 15052 optionalDependencies: 12003 15053 vite: 8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2) 12004 15054 transitivePeerDependencies: ··· 12030 15080 dependencies: 12031 15081 cross-spawn: 7.0.6 12032 15082 signal-exit: 4.1.0 15083 + 15084 + forwarded@0.2.0: {} 12033 15085 12034 15086 fraction.js@5.3.4: {} 12035 15087 15088 + framer-motion@12.29.2: 15089 + dependencies: 15090 + motion-dom: 12.29.2 15091 + motion-utils: 12.29.2 15092 + tslib: 2.8.1 15093 + 12036 15094 fresh@2.0.0: {} 15095 + 15096 + fs-constants@1.0.0: {} 12037 15097 12038 15098 fs-extra@9.1.0: 12039 15099 dependencies: ··· 12127 15187 git-url-parse@16.1.0: 12128 15188 dependencies: 12129 15189 git-up: 8.1.1 15190 + 15191 + github-from-package@0.0.0: {} 15192 + 15193 + github-slugger@2.0.0: {} 12130 15194 12131 15195 glob-parent@5.1.2: 12132 15196 dependencies: ··· 12247 15311 dependencies: 12248 15312 function-bind: 1.1.2 12249 15313 15314 + hast-util-embedded@3.0.0: 15315 + dependencies: 15316 + '@types/hast': 3.0.4 15317 + hast-util-is-element: 3.0.0 15318 + 15319 + hast-util-format@1.1.0: 15320 + dependencies: 15321 + '@types/hast': 3.0.4 15322 + hast-util-embedded: 3.0.0 15323 + hast-util-minify-whitespace: 1.0.1 15324 + hast-util-phrasing: 3.0.1 15325 + hast-util-whitespace: 3.0.0 15326 + html-whitespace-sensitive-tag-names: 3.0.1 15327 + unist-util-visit-parents: 6.0.2 15328 + 15329 + hast-util-from-parse5@8.0.3: 15330 + dependencies: 15331 + '@types/hast': 3.0.4 15332 + '@types/unist': 3.0.3 15333 + devlop: 1.1.0 15334 + hastscript: 9.0.1 15335 + property-information: 7.1.0 15336 + vfile: 6.0.3 15337 + vfile-location: 5.0.3 15338 + web-namespaces: 2.0.1 15339 + 15340 + hast-util-has-property@3.0.0: 15341 + dependencies: 15342 + '@types/hast': 3.0.4 15343 + 15344 + hast-util-heading-rank@3.0.0: 15345 + dependencies: 15346 + '@types/hast': 3.0.4 15347 + 15348 + hast-util-is-body-ok-link@3.0.1: 15349 + dependencies: 15350 + '@types/hast': 3.0.4 15351 + 15352 + hast-util-is-element@3.0.0: 15353 + dependencies: 15354 + '@types/hast': 3.0.4 15355 + 15356 + hast-util-minify-whitespace@1.0.1: 15357 + dependencies: 15358 + '@types/hast': 3.0.4 15359 + hast-util-embedded: 3.0.0 15360 + hast-util-is-element: 3.0.0 15361 + hast-util-whitespace: 3.0.0 15362 + unist-util-is: 6.0.1 15363 + 15364 + hast-util-parse-selector@4.0.0: 15365 + dependencies: 15366 + '@types/hast': 3.0.4 15367 + 15368 + hast-util-phrasing@3.0.1: 15369 + dependencies: 15370 + '@types/hast': 3.0.4 15371 + hast-util-embedded: 3.0.0 15372 + hast-util-has-property: 3.0.0 15373 + hast-util-is-body-ok-link: 3.0.1 15374 + hast-util-is-element: 3.0.0 15375 + 15376 + hast-util-raw@9.1.0: 15377 + dependencies: 15378 + '@types/hast': 3.0.4 15379 + '@types/unist': 3.0.3 15380 + '@ungap/structured-clone': 1.3.0 15381 + hast-util-from-parse5: 8.0.3 15382 + hast-util-to-parse5: 8.0.1 15383 + html-void-elements: 3.0.0 15384 + mdast-util-to-hast: 13.2.1 15385 + parse5: 7.3.0 15386 + unist-util-position: 5.0.0 15387 + unist-util-visit: 5.0.0 15388 + vfile: 6.0.3 15389 + web-namespaces: 2.0.1 15390 + zwitch: 2.0.4 15391 + 12250 15392 hast-util-to-html@9.0.5: 12251 15393 dependencies: 12252 15394 '@types/hast': 3.0.4 ··· 12261 15403 stringify-entities: 4.0.4 12262 15404 zwitch: 2.0.4 12263 15405 15406 + hast-util-to-mdast@10.1.2: 15407 + dependencies: 15408 + '@types/hast': 3.0.4 15409 + '@types/mdast': 4.0.4 15410 + '@ungap/structured-clone': 1.3.0 15411 + hast-util-phrasing: 3.0.1 15412 + hast-util-to-html: 9.0.5 15413 + hast-util-to-text: 4.0.2 15414 + hast-util-whitespace: 3.0.0 15415 + mdast-util-phrasing: 4.1.0 15416 + mdast-util-to-hast: 13.2.1 15417 + mdast-util-to-string: 4.0.0 15418 + rehype-minify-whitespace: 6.0.2 15419 + trim-trailing-lines: 2.1.0 15420 + unist-util-position: 5.0.0 15421 + unist-util-visit: 5.0.0 15422 + 15423 + hast-util-to-parse5@8.0.1: 15424 + dependencies: 15425 + '@types/hast': 3.0.4 15426 + comma-separated-tokens: 2.0.3 15427 + devlop: 1.1.0 15428 + property-information: 7.1.0 15429 + space-separated-tokens: 2.0.2 15430 + web-namespaces: 2.0.1 15431 + zwitch: 2.0.4 15432 + 15433 + hast-util-to-string@3.0.1: 15434 + dependencies: 15435 + '@types/hast': 3.0.4 15436 + 15437 + hast-util-to-text@4.0.2: 15438 + dependencies: 15439 + '@types/hast': 3.0.4 15440 + '@types/unist': 3.0.3 15441 + hast-util-is-element: 3.0.0 15442 + unist-util-find-after: 5.0.0 15443 + 12264 15444 hast-util-whitespace@3.0.0: 12265 15445 dependencies: 12266 15446 '@types/hast': 3.0.4 12267 15447 15448 + hastscript@9.0.1: 15449 + dependencies: 15450 + '@types/hast': 3.0.4 15451 + comma-separated-tokens: 2.0.3 15452 + hast-util-parse-selector: 4.0.0 15453 + property-information: 7.1.0 15454 + space-separated-tokens: 2.0.2 15455 + 12268 15456 hex-rgb@4.3.0: {} 12269 15457 15458 + hey-listen@1.0.8: {} 15459 + 15460 + hono@4.11.7: {} 15461 + 12270 15462 hookable@5.5.3: {} 12271 15463 12272 15464 hookable@6.0.1: {} ··· 12294 15486 vitest: '@voidzero-dev/vite-plus-test@0.0.0-ffb4d08a8edafe855c59736c0a38ee85a2373ebb(@types/node@25.0.10)(esbuild@0.27.2)(happy-dom@20.3.5)(jiti@2.6.1)(jsdom@27.4.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(yaml@2.8.2)' 12295 15487 12296 15488 html-void-elements@3.0.0: {} 15489 + 15490 + html-whitespace-sensitive-tag-names@3.0.1: {} 12297 15491 12298 15492 htmlparser2@8.0.2: 12299 15493 dependencies: ··· 12344 15538 safer-buffer: 2.1.2 12345 15539 optional: true 12346 15540 15541 + iconv-lite@0.7.2: 15542 + dependencies: 15543 + safer-buffer: 2.1.2 15544 + 12347 15545 idb@7.1.1: {} 12348 15546 12349 15547 ieee754@1.2.1: {} ··· 12399 15597 transitivePeerDependencies: 12400 15598 - supports-color 12401 15599 15600 + ipaddr.js@1.9.1: {} 15601 + 15602 + ipx@3.1.1(db0@0.3.4(better-sqlite3@12.5.0))(ioredis@5.9.2): 15603 + dependencies: 15604 + '@fastify/accept-negotiator': 2.0.1 15605 + citty: 0.1.6 15606 + consola: 3.4.2 15607 + defu: 6.1.4 15608 + destr: 2.0.5 15609 + etag: 1.8.1 15610 + h3: 1.15.5 15611 + image-meta: 0.2.2 15612 + listhen: 1.9.0 15613 + ofetch: 1.5.1 15614 + pathe: 2.0.3 15615 + sharp: 0.34.5 15616 + svgo: 4.0.0 15617 + ufo: 1.6.3 15618 + unstorage: 1.17.4(db0@0.3.4(better-sqlite3@12.5.0))(ioredis@5.9.2) 15619 + xss: 1.0.15 15620 + transitivePeerDependencies: 15621 + - '@azure/app-configuration' 15622 + - '@azure/cosmos' 15623 + - '@azure/data-tables' 15624 + - '@azure/identity' 15625 + - '@azure/keyvault-secrets' 15626 + - '@azure/storage-blob' 15627 + - '@capacitor/preferences' 15628 + - '@deno/kv' 15629 + - '@netlify/blobs' 15630 + - '@planetscale/database' 15631 + - '@upstash/redis' 15632 + - '@vercel/blob' 15633 + - '@vercel/functions' 15634 + - '@vercel/kv' 15635 + - aws4fetch 15636 + - db0 15637 + - idb-keyval 15638 + - ioredis 15639 + - uploadthing 15640 + optional: true 15641 + 12402 15642 iron-webcrypto@1.2.1: {} 12403 15643 15644 + is-absolute-url@4.0.1: {} 15645 + 15646 + is-alphabetical@2.0.1: {} 15647 + 15648 + is-alphanumerical@2.0.1: 15649 + dependencies: 15650 + is-alphabetical: 2.0.1 15651 + is-decimal: 2.0.1 15652 + 12404 15653 is-array-buffer@3.0.5: 12405 15654 dependencies: 12406 15655 call-bind: 1.0.8 ··· 12441 15690 call-bound: 1.0.4 12442 15691 has-tostringtag: 1.0.2 12443 15692 15693 + is-decimal@2.0.1: {} 15694 + 12444 15695 is-docker@2.2.1: {} 12445 15696 12446 15697 is-docker@3.0.0: {} ··· 12468 15719 is-glob@4.0.3: 12469 15720 dependencies: 12470 15721 is-extglob: 2.1.1 15722 + 15723 + is-hexadecimal@2.0.1: {} 12471 15724 12472 15725 is-inside-container@1.0.0: 12473 15726 dependencies: ··· 12502 15755 is-potential-custom-element-name@1.0.1: 12503 15756 optional: true 12504 15757 15758 + is-promise@4.0.0: {} 15759 + 12505 15760 is-reference@1.2.1: 12506 15761 dependencies: 12507 15762 '@types/estree': 1.0.8 ··· 12581 15836 12582 15837 isexe@3.1.1: {} 12583 15838 15839 + isomorphic-git@1.36.3: 15840 + dependencies: 15841 + async-lock: 1.4.1 15842 + clean-git-ref: 2.0.1 15843 + crc-32: 1.2.2 15844 + diff3: 0.0.3 15845 + ignore: 5.3.2 15846 + minimisted: 2.0.1 15847 + pako: 1.0.11 15848 + pify: 4.0.1 15849 + readable-stream: 4.7.0 15850 + sha.js: 2.4.12 15851 + simple-get: 4.0.1 15852 + 15853 + isomorphic.js@0.2.5: {} 15854 + 12584 15855 istanbul-lib-coverage@3.2.2: {} 12585 15856 12586 15857 istanbul-lib-report@3.0.1: ··· 12618 15889 12619 15890 jiti@2.6.1: {} 12620 15891 15892 + jose@6.1.3: {} 15893 + 12621 15894 js-beautify@1.15.4: 12622 15895 dependencies: 12623 15896 config-chain: 1.1.13 ··· 12671 15944 12672 15945 json-parse-even-better-errors@2.3.1: {} 12673 15946 15947 + json-schema-to-typescript@15.0.4: 15948 + dependencies: 15949 + '@apidevtools/json-schema-ref-parser': 11.9.3 15950 + '@types/json-schema': 7.0.15 15951 + '@types/lodash': 4.17.23 15952 + is-glob: 4.0.3 15953 + js-yaml: 4.1.1 15954 + lodash: 4.17.23 15955 + minimist: 1.2.8 15956 + prettier: 3.8.1 15957 + tinyglobby: 0.2.15 15958 + 12674 15959 json-schema-traverse@0.4.1: {} 12675 15960 12676 15961 json-schema-traverse@1.0.0: {} 15962 + 15963 + json-schema-typed@8.0.2: {} 12677 15964 12678 15965 json-schema@0.4.0: {} 12679 15966 ··· 12724 16011 prelude-ls: 1.2.1 12725 16012 type-check: 0.4.0 12726 16013 16014 + lib0@0.2.117: 16015 + dependencies: 16016 + isomorphic.js: 0.2.5 16017 + 12727 16018 lighthouse-logger@2.0.2: 12728 16019 dependencies: 12729 16020 debug: 4.4.3 ··· 12731 16022 transitivePeerDependencies: 12732 16023 - supports-color 12733 16024 16025 + lightningcss-android-arm64@1.30.2: 16026 + optional: true 16027 + 12734 16028 lightningcss-android-arm64@1.31.1: 12735 16029 optional: true 12736 16030 16031 + lightningcss-darwin-arm64@1.30.2: 16032 + optional: true 16033 + 12737 16034 lightningcss-darwin-arm64@1.31.1: 12738 16035 optional: true 12739 16036 16037 + lightningcss-darwin-x64@1.30.2: 16038 + optional: true 16039 + 12740 16040 lightningcss-darwin-x64@1.31.1: 12741 16041 optional: true 12742 16042 16043 + lightningcss-freebsd-x64@1.30.2: 16044 + optional: true 16045 + 12743 16046 lightningcss-freebsd-x64@1.31.1: 12744 16047 optional: true 12745 16048 16049 + lightningcss-linux-arm-gnueabihf@1.30.2: 16050 + optional: true 16051 + 12746 16052 lightningcss-linux-arm-gnueabihf@1.31.1: 12747 16053 optional: true 12748 16054 16055 + lightningcss-linux-arm64-gnu@1.30.2: 16056 + optional: true 16057 + 12749 16058 lightningcss-linux-arm64-gnu@1.31.1: 12750 16059 optional: true 12751 16060 16061 + lightningcss-linux-arm64-musl@1.30.2: 16062 + optional: true 16063 + 12752 16064 lightningcss-linux-arm64-musl@1.31.1: 12753 16065 optional: true 12754 16066 16067 + lightningcss-linux-x64-gnu@1.30.2: 16068 + optional: true 16069 + 12755 16070 lightningcss-linux-x64-gnu@1.31.1: 12756 16071 optional: true 12757 16072 16073 + lightningcss-linux-x64-musl@1.30.2: 16074 + optional: true 16075 + 12758 16076 lightningcss-linux-x64-musl@1.31.1: 12759 16077 optional: true 12760 16078 16079 + lightningcss-win32-arm64-msvc@1.30.2: 16080 + optional: true 16081 + 12761 16082 lightningcss-win32-arm64-msvc@1.31.1: 12762 16083 optional: true 12763 16084 16085 + lightningcss-win32-x64-msvc@1.30.2: 16086 + optional: true 16087 + 12764 16088 lightningcss-win32-x64-msvc@1.31.1: 12765 16089 optional: true 12766 16090 16091 + lightningcss@1.30.2: 16092 + dependencies: 16093 + detect-libc: 2.1.2 16094 + optionalDependencies: 16095 + lightningcss-android-arm64: 1.30.2 16096 + lightningcss-darwin-arm64: 1.30.2 16097 + lightningcss-darwin-x64: 1.30.2 16098 + lightningcss-freebsd-x64: 1.30.2 16099 + lightningcss-linux-arm-gnueabihf: 1.30.2 16100 + lightningcss-linux-arm64-gnu: 1.30.2 16101 + lightningcss-linux-arm64-musl: 1.30.2 16102 + lightningcss-linux-x64-gnu: 1.30.2 16103 + lightningcss-linux-x64-musl: 1.30.2 16104 + lightningcss-win32-arm64-msvc: 1.30.2 16105 + lightningcss-win32-x64-msvc: 1.30.2 16106 + 12767 16107 lightningcss@1.31.1: 12768 16108 dependencies: 12769 16109 detect-libc: 2.1.2 ··· 12787 16127 base64-js: 0.0.8 12788 16128 unicode-trie: 2.0.0 12789 16129 16130 + linkify-it@5.0.0: 16131 + dependencies: 16132 + uc.micro: 2.1.0 16133 + 16134 + linkifyjs@4.3.2: {} 16135 + 12790 16136 lint-staged@16.2.7: 12791 16137 dependencies: 12792 16138 commander: 14.0.2 ··· 12841 16187 12842 16188 lodash.debounce@4.0.8: {} 12843 16189 16190 + lodash.deburr@4.1.0: {} 16191 + 12844 16192 lodash.defaults@4.2.0: {} 12845 16193 12846 16194 lodash.isarguments@3.1.0: {} ··· 12863 16211 strip-ansi: 7.1.2 12864 16212 wrap-ansi: 9.0.2 12865 16213 16214 + longest-streak@3.1.0: {} 16215 + 12866 16216 lru-cache@10.4.3: {} 12867 16217 12868 16218 lru-cache@11.2.4: {} ··· 12903 16253 dependencies: 12904 16254 semver: 7.7.3 12905 16255 16256 + markdown-it@14.1.0: 16257 + dependencies: 16258 + argparse: 2.0.1 16259 + entities: 4.5.0 16260 + linkify-it: 5.0.0 16261 + mdurl: 2.0.0 16262 + punycode.js: 2.3.1 16263 + uc.micro: 2.1.0 16264 + 16265 + markdown-table@3.0.4: {} 16266 + 16267 + marked@15.0.12: {} 16268 + 12906 16269 marked@17.0.1: {} 12907 16270 12908 16271 marky@1.3.0: {} 12909 16272 12910 16273 math-intrinsics@1.1.0: {} 12911 16274 16275 + md4w@0.2.7: {} 16276 + 16277 + mdast-util-find-and-replace@3.0.2: 16278 + dependencies: 16279 + '@types/mdast': 4.0.4 16280 + escape-string-regexp: 5.0.0 16281 + unist-util-is: 6.0.1 16282 + unist-util-visit-parents: 6.0.2 16283 + 16284 + mdast-util-from-markdown@2.0.2: 16285 + dependencies: 16286 + '@types/mdast': 4.0.4 16287 + '@types/unist': 3.0.3 16288 + decode-named-character-reference: 1.3.0 16289 + devlop: 1.1.0 16290 + mdast-util-to-string: 4.0.0 16291 + micromark: 4.0.2 16292 + micromark-util-decode-numeric-character-reference: 2.0.2 16293 + micromark-util-decode-string: 2.0.1 16294 + micromark-util-normalize-identifier: 2.0.1 16295 + micromark-util-symbol: 2.0.1 16296 + micromark-util-types: 2.0.2 16297 + unist-util-stringify-position: 4.0.0 16298 + transitivePeerDependencies: 16299 + - supports-color 16300 + 16301 + mdast-util-gfm-autolink-literal@2.0.1: 16302 + dependencies: 16303 + '@types/mdast': 4.0.4 16304 + ccount: 2.0.1 16305 + devlop: 1.1.0 16306 + mdast-util-find-and-replace: 3.0.2 16307 + micromark-util-character: 2.1.1 16308 + 16309 + mdast-util-gfm-footnote@2.1.0: 16310 + dependencies: 16311 + '@types/mdast': 4.0.4 16312 + devlop: 1.1.0 16313 + mdast-util-from-markdown: 2.0.2 16314 + mdast-util-to-markdown: 2.1.2 16315 + micromark-util-normalize-identifier: 2.0.1 16316 + transitivePeerDependencies: 16317 + - supports-color 16318 + 16319 + mdast-util-gfm-strikethrough@2.0.0: 16320 + dependencies: 16321 + '@types/mdast': 4.0.4 16322 + mdast-util-from-markdown: 2.0.2 16323 + mdast-util-to-markdown: 2.1.2 16324 + transitivePeerDependencies: 16325 + - supports-color 16326 + 16327 + mdast-util-gfm-table@2.0.0: 16328 + dependencies: 16329 + '@types/mdast': 4.0.4 16330 + devlop: 1.1.0 16331 + markdown-table: 3.0.4 16332 + mdast-util-from-markdown: 2.0.2 16333 + mdast-util-to-markdown: 2.1.2 16334 + transitivePeerDependencies: 16335 + - supports-color 16336 + 16337 + mdast-util-gfm-task-list-item@2.0.0: 16338 + dependencies: 16339 + '@types/mdast': 4.0.4 16340 + devlop: 1.1.0 16341 + mdast-util-from-markdown: 2.0.2 16342 + mdast-util-to-markdown: 2.1.2 16343 + transitivePeerDependencies: 16344 + - supports-color 16345 + 16346 + mdast-util-gfm@3.1.0: 16347 + dependencies: 16348 + mdast-util-from-markdown: 2.0.2 16349 + mdast-util-gfm-autolink-literal: 2.0.1 16350 + mdast-util-gfm-footnote: 2.1.0 16351 + mdast-util-gfm-strikethrough: 2.0.0 16352 + mdast-util-gfm-table: 2.0.0 16353 + mdast-util-gfm-task-list-item: 2.0.0 16354 + mdast-util-to-markdown: 2.1.2 16355 + transitivePeerDependencies: 16356 + - supports-color 16357 + 16358 + mdast-util-phrasing@4.1.0: 16359 + dependencies: 16360 + '@types/mdast': 4.0.4 16361 + unist-util-is: 6.0.1 16362 + 12912 16363 mdast-util-to-hast@13.2.1: 12913 16364 dependencies: 12914 16365 '@types/hast': 3.0.4 ··· 12921 16372 unist-util-visit: 5.0.0 12922 16373 vfile: 6.0.3 12923 16374 16375 + mdast-util-to-markdown@2.1.2: 16376 + dependencies: 16377 + '@types/mdast': 4.0.4 16378 + '@types/unist': 3.0.3 16379 + longest-streak: 3.1.0 16380 + mdast-util-phrasing: 4.1.0 16381 + mdast-util-to-string: 4.0.0 16382 + micromark-util-classify-character: 2.0.1 16383 + micromark-util-decode-string: 2.0.1 16384 + unist-util-visit: 5.0.0 16385 + zwitch: 2.0.4 16386 + 16387 + mdast-util-to-string@4.0.0: 16388 + dependencies: 16389 + '@types/mdast': 4.0.4 16390 + 16391 + mdbox@0.1.1: 16392 + dependencies: 16393 + md4w: 0.2.7 16394 + 12924 16395 mdn-data@2.0.28: {} 12925 16396 12926 16397 mdn-data@2.12.2: {} 12927 16398 16399 + mdurl@2.0.0: {} 16400 + 16401 + media-typer@1.1.0: {} 16402 + 16403 + merge-descriptors@2.0.0: {} 16404 + 12928 16405 merge-stream@2.0.0: {} 12929 16406 12930 16407 merge2@1.4.1: {} 12931 16408 16409 + micromark-core-commonmark@2.0.3: 16410 + dependencies: 16411 + decode-named-character-reference: 1.3.0 16412 + devlop: 1.1.0 16413 + micromark-factory-destination: 2.0.1 16414 + micromark-factory-label: 2.0.1 16415 + micromark-factory-space: 2.0.1 16416 + micromark-factory-title: 2.0.1 16417 + micromark-factory-whitespace: 2.0.1 16418 + micromark-util-character: 2.1.1 16419 + micromark-util-chunked: 2.0.1 16420 + micromark-util-classify-character: 2.0.1 16421 + micromark-util-html-tag-name: 2.0.1 16422 + micromark-util-normalize-identifier: 2.0.1 16423 + micromark-util-resolve-all: 2.0.1 16424 + micromark-util-subtokenize: 2.1.0 16425 + micromark-util-symbol: 2.0.1 16426 + micromark-util-types: 2.0.2 16427 + 16428 + micromark-extension-gfm-autolink-literal@2.1.0: 16429 + dependencies: 16430 + micromark-util-character: 2.1.1 16431 + micromark-util-sanitize-uri: 2.0.1 16432 + micromark-util-symbol: 2.0.1 16433 + micromark-util-types: 2.0.2 16434 + 16435 + micromark-extension-gfm-footnote@2.1.0: 16436 + dependencies: 16437 + devlop: 1.1.0 16438 + micromark-core-commonmark: 2.0.3 16439 + micromark-factory-space: 2.0.1 16440 + micromark-util-character: 2.1.1 16441 + micromark-util-normalize-identifier: 2.0.1 16442 + micromark-util-sanitize-uri: 2.0.1 16443 + micromark-util-symbol: 2.0.1 16444 + micromark-util-types: 2.0.2 16445 + 16446 + micromark-extension-gfm-strikethrough@2.1.0: 16447 + dependencies: 16448 + devlop: 1.1.0 16449 + micromark-util-chunked: 2.0.1 16450 + micromark-util-classify-character: 2.0.1 16451 + micromark-util-resolve-all: 2.0.1 16452 + micromark-util-symbol: 2.0.1 16453 + micromark-util-types: 2.0.2 16454 + 16455 + micromark-extension-gfm-table@2.1.1: 16456 + dependencies: 16457 + devlop: 1.1.0 16458 + micromark-factory-space: 2.0.1 16459 + micromark-util-character: 2.1.1 16460 + micromark-util-symbol: 2.0.1 16461 + micromark-util-types: 2.0.2 16462 + 16463 + micromark-extension-gfm-tagfilter@2.0.0: 16464 + dependencies: 16465 + micromark-util-types: 2.0.2 16466 + 16467 + micromark-extension-gfm-task-list-item@2.1.0: 16468 + dependencies: 16469 + devlop: 1.1.0 16470 + micromark-factory-space: 2.0.1 16471 + micromark-util-character: 2.1.1 16472 + micromark-util-symbol: 2.0.1 16473 + micromark-util-types: 2.0.2 16474 + 16475 + micromark-extension-gfm@3.0.0: 16476 + dependencies: 16477 + micromark-extension-gfm-autolink-literal: 2.1.0 16478 + micromark-extension-gfm-footnote: 2.1.0 16479 + micromark-extension-gfm-strikethrough: 2.1.0 16480 + micromark-extension-gfm-table: 2.1.1 16481 + micromark-extension-gfm-tagfilter: 2.0.0 16482 + micromark-extension-gfm-task-list-item: 2.1.0 16483 + micromark-util-combine-extensions: 2.0.1 16484 + micromark-util-types: 2.0.2 16485 + 16486 + micromark-factory-destination@2.0.1: 16487 + dependencies: 16488 + micromark-util-character: 2.1.1 16489 + micromark-util-symbol: 2.0.1 16490 + micromark-util-types: 2.0.2 16491 + 16492 + micromark-factory-label@2.0.1: 16493 + dependencies: 16494 + devlop: 1.1.0 16495 + micromark-util-character: 2.1.1 16496 + micromark-util-symbol: 2.0.1 16497 + micromark-util-types: 2.0.2 16498 + 16499 + micromark-factory-space@2.0.1: 16500 + dependencies: 16501 + micromark-util-character: 2.1.1 16502 + micromark-util-types: 2.0.2 16503 + 16504 + micromark-factory-title@2.0.1: 16505 + dependencies: 16506 + micromark-factory-space: 2.0.1 16507 + micromark-util-character: 2.1.1 16508 + micromark-util-symbol: 2.0.1 16509 + micromark-util-types: 2.0.2 16510 + 16511 + micromark-factory-whitespace@2.0.1: 16512 + dependencies: 16513 + micromark-factory-space: 2.0.1 16514 + micromark-util-character: 2.1.1 16515 + micromark-util-symbol: 2.0.1 16516 + micromark-util-types: 2.0.2 16517 + 12932 16518 micromark-util-character@2.1.1: 12933 16519 dependencies: 12934 16520 micromark-util-symbol: 2.0.1 12935 16521 micromark-util-types: 2.0.2 12936 16522 16523 + micromark-util-chunked@2.0.1: 16524 + dependencies: 16525 + micromark-util-symbol: 2.0.1 16526 + 16527 + micromark-util-classify-character@2.0.1: 16528 + dependencies: 16529 + micromark-util-character: 2.1.1 16530 + micromark-util-symbol: 2.0.1 16531 + micromark-util-types: 2.0.2 16532 + 16533 + micromark-util-combine-extensions@2.0.1: 16534 + dependencies: 16535 + micromark-util-chunked: 2.0.1 16536 + micromark-util-types: 2.0.2 16537 + 16538 + micromark-util-decode-numeric-character-reference@2.0.2: 16539 + dependencies: 16540 + micromark-util-symbol: 2.0.1 16541 + 16542 + micromark-util-decode-string@2.0.1: 16543 + dependencies: 16544 + decode-named-character-reference: 1.3.0 16545 + micromark-util-character: 2.1.1 16546 + micromark-util-decode-numeric-character-reference: 2.0.2 16547 + micromark-util-symbol: 2.0.1 16548 + 12937 16549 micromark-util-encode@2.0.1: {} 12938 16550 16551 + micromark-util-html-tag-name@2.0.1: {} 16552 + 16553 + micromark-util-normalize-identifier@2.0.1: 16554 + dependencies: 16555 + micromark-util-symbol: 2.0.1 16556 + 16557 + micromark-util-resolve-all@2.0.1: 16558 + dependencies: 16559 + micromark-util-types: 2.0.2 16560 + 12939 16561 micromark-util-sanitize-uri@2.0.1: 12940 16562 dependencies: 12941 16563 micromark-util-character: 2.1.1 12942 16564 micromark-util-encode: 2.0.1 12943 16565 micromark-util-symbol: 2.0.1 12944 16566 16567 + micromark-util-subtokenize@2.1.0: 16568 + dependencies: 16569 + devlop: 1.1.0 16570 + micromark-util-chunked: 2.0.1 16571 + micromark-util-symbol: 2.0.1 16572 + micromark-util-types: 2.0.2 16573 + 12945 16574 micromark-util-symbol@2.0.1: {} 12946 16575 12947 16576 micromark-util-types@2.0.2: {} 12948 16577 16578 + micromark@4.0.2: 16579 + dependencies: 16580 + '@types/debug': 4.1.12 16581 + debug: 4.4.3 16582 + decode-named-character-reference: 1.3.0 16583 + devlop: 1.1.0 16584 + micromark-core-commonmark: 2.0.3 16585 + micromark-factory-space: 2.0.1 16586 + micromark-util-character: 2.1.1 16587 + micromark-util-chunked: 2.0.1 16588 + micromark-util-combine-extensions: 2.0.1 16589 + micromark-util-decode-numeric-character-reference: 2.0.2 16590 + micromark-util-encode: 2.0.1 16591 + micromark-util-normalize-identifier: 2.0.1 16592 + micromark-util-resolve-all: 2.0.1 16593 + micromark-util-sanitize-uri: 2.0.1 16594 + micromark-util-subtokenize: 2.1.0 16595 + micromark-util-symbol: 2.0.1 16596 + micromark-util-types: 2.0.2 16597 + transitivePeerDependencies: 16598 + - supports-color 16599 + 12949 16600 micromatch@4.0.8: 12950 16601 dependencies: 12951 16602 braces: 3.0.3 ··· 12969 16620 12970 16621 mimic-function@5.0.1: {} 12971 16622 16623 + mimic-response@3.1.0: {} 16624 + 16625 + minimark@0.2.0: {} 16626 + 12972 16627 minimatch@10.1.1: 12973 16628 dependencies: 12974 16629 '@isaacs/brace-expansion': 5.0.0 ··· 12991 16646 12992 16647 minimist@1.2.8: {} 12993 16648 16649 + minimisted@2.0.1: 16650 + dependencies: 16651 + minimist: 1.2.8 16652 + 12994 16653 minipass@7.1.2: {} 12995 16654 12996 16655 minizlib@3.1.0: ··· 12998 16657 minipass: 7.1.2 12999 16658 13000 16659 mitt@3.0.1: {} 16660 + 16661 + mkdirp-classic@0.5.3: {} 13001 16662 13002 16663 mlly@1.8.0: 13003 16664 dependencies: ··· 13008 16669 13009 16670 mocked-exports@0.1.1: {} 13010 16671 16672 + motion-dom@12.29.2: 16673 + dependencies: 16674 + motion-utils: 12.29.2 16675 + 16676 + motion-utils@12.29.2: {} 16677 + 16678 + motion-v@1.10.2(@vueuse/core@14.1.0(vue@3.5.27(typescript@5.9.3)))(vue@3.5.27(typescript@5.9.3)): 16679 + dependencies: 16680 + '@vueuse/core': 14.1.0(vue@3.5.27(typescript@5.9.3)) 16681 + framer-motion: 12.29.2 16682 + hey-listen: 1.0.8 16683 + motion-dom: 12.29.2 16684 + vue: 3.5.27(typescript@5.9.3) 16685 + transitivePeerDependencies: 16686 + - '@emotion/is-prop-valid' 16687 + - react 16688 + - react-dom 16689 + 13011 16690 mrmime@2.0.1: {} 13012 16691 13013 16692 ms@2.1.3: {} ··· 13022 16701 13023 16702 nanotar@0.2.0: {} 13024 16703 16704 + napi-build-utils@2.0.0: {} 16705 + 13025 16706 natural-compare@1.4.0: {} 13026 16707 16708 + negotiator@1.0.0: {} 16709 + 13027 16710 neo-async@2.6.2: {} 13028 16711 13029 - nitropack@2.13.1(encoding@0.1.13)(rolldown@1.0.0-rc.1): 16712 + nitropack@2.13.1(better-sqlite3@12.5.0)(encoding@0.1.13)(rolldown@1.0.0-rc.1): 16713 + dependencies: 16714 + '@cloudflare/kv-asset-handler': 0.4.2 16715 + '@rollup/plugin-alias': 6.0.0(rollup@4.56.0) 16716 + '@rollup/plugin-commonjs': 29.0.0(rollup@4.56.0) 16717 + '@rollup/plugin-inject': 5.0.5(rollup@4.56.0) 16718 + '@rollup/plugin-json': 6.1.0(rollup@4.56.0) 16719 + '@rollup/plugin-node-resolve': 16.0.3(rollup@4.56.0) 16720 + '@rollup/plugin-replace': 6.0.3(rollup@4.56.0) 16721 + '@rollup/plugin-terser': 0.4.4(rollup@4.56.0) 16722 + '@vercel/nft': 1.3.0(encoding@0.1.13)(rollup@4.56.0) 16723 + archiver: 7.0.1 16724 + c12: 3.3.3(magicast@0.5.1) 16725 + chokidar: 5.0.0 16726 + citty: 0.1.6 16727 + compatx: 0.2.0 16728 + confbox: 0.2.2 16729 + consola: 3.4.2 16730 + cookie-es: 2.0.0 16731 + croner: 9.1.0 16732 + crossws: 0.3.5 16733 + db0: 0.3.4(better-sqlite3@12.5.0) 16734 + defu: 6.1.4 16735 + destr: 2.0.5 16736 + dot-prop: 10.1.0 16737 + esbuild: 0.27.2 16738 + escape-string-regexp: 5.0.0 16739 + etag: 1.8.1 16740 + exsolve: 1.0.8 16741 + globby: 16.1.0 16742 + gzip-size: 7.0.0 16743 + h3: 1.15.5 16744 + hookable: 5.5.3 16745 + httpxy: 0.1.7 16746 + ioredis: 5.9.2 16747 + jiti: 2.6.1 16748 + klona: 2.0.6 16749 + knitwork: 1.3.0 16750 + listhen: 1.9.0 16751 + magic-string: 0.30.21 16752 + magicast: 0.5.1 16753 + mime: 4.1.0 16754 + mlly: 1.8.0 16755 + node-fetch-native: 1.6.7 16756 + node-mock-http: 1.0.4 16757 + ofetch: 1.5.1 16758 + ohash: 2.0.11 16759 + pathe: 2.0.3 16760 + perfect-debounce: 2.1.0 16761 + pkg-types: 2.3.0 16762 + pretty-bytes: 7.1.0 16763 + radix3: 1.1.2 16764 + rollup: 4.56.0 16765 + rollup-plugin-visualizer: 6.0.5(rolldown@1.0.0-rc.1)(rollup@4.56.0) 16766 + scule: 1.3.0 16767 + semver: 7.7.3 16768 + serve-placeholder: 2.0.2 16769 + serve-static: 2.2.1 16770 + source-map: 0.7.6 16771 + std-env: 3.10.0 16772 + ufo: 1.6.3 16773 + ultrahtml: 1.6.0 16774 + uncrypto: 0.1.3 16775 + unctx: 2.5.0 16776 + unenv: 2.0.0-rc.24 16777 + unimport: 5.6.0 16778 + unplugin-utils: 0.3.1 16779 + unstorage: 1.17.4(db0@0.3.4(better-sqlite3@12.5.0))(ioredis@5.9.2) 16780 + untyped: 2.0.0 16781 + unwasm: 0.5.3 16782 + youch: 4.1.0-beta.13 16783 + youch-core: 0.3.3 16784 + transitivePeerDependencies: 16785 + - '@azure/app-configuration' 16786 + - '@azure/cosmos' 16787 + - '@azure/data-tables' 16788 + - '@azure/identity' 16789 + - '@azure/keyvault-secrets' 16790 + - '@azure/storage-blob' 16791 + - '@capacitor/preferences' 16792 + - '@deno/kv' 16793 + - '@electric-sql/pglite' 16794 + - '@libsql/client' 16795 + - '@netlify/blobs' 16796 + - '@planetscale/database' 16797 + - '@upstash/redis' 16798 + - '@vercel/blob' 16799 + - '@vercel/functions' 16800 + - '@vercel/kv' 16801 + - aws4fetch 16802 + - bare-abort-controller 16803 + - better-sqlite3 16804 + - drizzle-orm 16805 + - encoding 16806 + - idb-keyval 16807 + - mysql2 16808 + - react-native-b4a 16809 + - rolldown 16810 + - sqlite3 16811 + - supports-color 16812 + - uploadthing 16813 + 16814 + nitropack@2.13.1(better-sqlite3@12.6.2)(encoding@0.1.13)(rolldown@1.0.0-rc.1): 13030 16815 dependencies: 13031 16816 '@cloudflare/kv-asset-handler': 0.4.2 13032 16817 '@rollup/plugin-alias': 6.0.0(rollup@4.56.0) ··· 13047 16832 cookie-es: 2.0.0 13048 16833 croner: 9.1.0 13049 16834 crossws: 0.3.5 13050 - db0: 0.3.4 16835 + db0: 0.3.4(better-sqlite3@12.6.2) 13051 16836 defu: 6.1.4 13052 16837 destr: 2.0.5 13053 16838 dot-prop: 10.1.0 ··· 13093 16878 unenv: 2.0.0-rc.24 13094 16879 unimport: 5.6.0 13095 16880 unplugin-utils: 0.3.1 13096 - unstorage: 1.17.4(db0@0.3.4)(ioredis@5.9.2) 16881 + unstorage: 1.17.4(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2) 13097 16882 untyped: 2.0.0 13098 16883 unwasm: 0.5.3 13099 16884 youch: 4.1.0-beta.13 ··· 13128 16913 - supports-color 13129 16914 - uploadthing 13130 16915 16916 + node-abi@3.87.0: 16917 + dependencies: 16918 + semver: 7.7.3 16919 + 13131 16920 node-addon-api@7.1.1: {} 16921 + 16922 + node-emoji@2.2.0: 16923 + dependencies: 16924 + '@sindresorhus/is': 4.6.0 16925 + char-regex: 1.0.2 16926 + emojilib: 2.4.0 16927 + skin-tone: 2.0.0 13132 16928 13133 16929 node-fetch-native@1.6.7: {} 13134 16930 ··· 13169 16965 dependencies: 13170 16966 boolbase: 1.0.0 13171 16967 16968 + nuxt-component-meta@0.17.1(magicast@0.5.1): 16969 + dependencies: 16970 + '@nuxt/kit': 4.3.0(magicast@0.5.1) 16971 + citty: 0.1.6 16972 + mlly: 1.8.0 16973 + ohash: 2.0.11 16974 + scule: 1.3.0 16975 + typescript: 5.9.3 16976 + ufo: 1.6.3 16977 + vue-component-meta: 3.2.4(typescript@5.9.3) 16978 + transitivePeerDependencies: 16979 + - magicast 16980 + 13172 16981 nuxt-define@1.0.0: {} 13173 16982 13174 - nuxt-og-image@5.1.13(@unhead/vue@2.1.2(vue@3.5.27(typescript@5.9.3)))(magicast@0.5.1)(unstorage@1.17.4(db0@0.3.4)(ioredis@5.9.2))(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.27(typescript@5.9.3)): 16983 + nuxt-llms@0.2.0(magicast@0.5.1): 16984 + dependencies: 16985 + '@nuxt/kit': 4.3.0(magicast@0.5.1) 16986 + transitivePeerDependencies: 16987 + - magicast 16988 + 16989 + nuxt-og-image@5.1.13(@unhead/vue@2.1.2(vue@3.5.27(typescript@5.9.3)))(magicast@0.5.1)(unstorage@1.17.4(db0@0.3.4(better-sqlite3@12.5.0))(ioredis@5.9.2))(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.27(typescript@5.9.3)): 16990 + dependencies: 16991 + '@nuxt/devtools-kit': 3.1.1(magicast@0.5.1)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) 16992 + '@nuxt/kit': 4.3.0(magicast@0.5.1) 16993 + '@resvg/resvg-js': 2.6.2 16994 + '@resvg/resvg-wasm': 2.6.2 16995 + '@unhead/vue': 2.1.2(vue@3.5.27(typescript@5.9.3)) 16996 + '@unocss/core': 66.6.0 16997 + '@unocss/preset-wind3': 66.6.0 16998 + chrome-launcher: 1.2.1 16999 + consola: 3.4.2 17000 + defu: 6.1.4 17001 + execa: 9.6.1 17002 + image-size: 2.0.2 17003 + magic-string: 0.30.21 17004 + mocked-exports: 0.1.1 17005 + nuxt-site-config: 3.2.18(magicast@0.5.1)(vue@3.5.27(typescript@5.9.3)) 17006 + nypm: 0.6.4 17007 + ofetch: 1.5.1 17008 + ohash: 2.0.11 17009 + pathe: 2.0.3 17010 + pkg-types: 2.3.0 17011 + playwright-core: 1.57.0 17012 + radix3: 1.1.2 17013 + satori: 0.18.4 17014 + satori-html: 0.3.2 17015 + sirv: 3.0.2 17016 + std-env: 3.10.0 17017 + strip-literal: 3.1.0 17018 + ufo: 1.6.3 17019 + unplugin: 2.3.11 17020 + unstorage: 1.17.4(db0@0.3.4(better-sqlite3@12.5.0))(ioredis@5.9.2) 17021 + unwasm: 0.5.3 17022 + yoga-wasm-web: 0.3.3 17023 + transitivePeerDependencies: 17024 + - magicast 17025 + - supports-color 17026 + - vite 17027 + - vue 17028 + 17029 + nuxt-og-image@5.1.13(@unhead/vue@2.1.2(vue@3.5.27(typescript@5.9.3)))(magicast@0.5.1)(unstorage@1.17.4(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2))(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.27(typescript@5.9.3)): 13175 17030 dependencies: 13176 17031 '@nuxt/devtools-kit': 3.1.1(magicast@0.5.1)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2)) 13177 17032 '@nuxt/kit': 4.3.0(magicast@0.5.1) ··· 13202 17057 strip-literal: 3.1.0 13203 17058 ufo: 1.6.3 13204 17059 unplugin: 2.3.11 13205 - unstorage: 1.17.4(db0@0.3.4)(ioredis@5.9.2) 17060 + unstorage: 1.17.4(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2) 13206 17061 unwasm: 0.5.3 13207 17062 yoga-wasm-web: 0.3.3 13208 17063 transitivePeerDependencies: ··· 13236 17091 - magicast 13237 17092 - vue 13238 17093 13239 - nuxt@4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2): 17094 + nuxt@4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(better-sqlite3@12.5.0)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.5.0))(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2): 17095 + dependencies: 17096 + '@dxup/nuxt': 0.3.2(magicast@0.5.1) 17097 + '@nuxt/cli': 3.32.0(cac@6.7.14)(magicast@0.5.1) 17098 + '@nuxt/devtools': 3.1.1(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.27(typescript@5.9.3)) 17099 + '@nuxt/kit': 4.3.0(magicast@0.5.1) 17100 + '@nuxt/nitro-server': 4.3.0(better-sqlite3@12.5.0)(db0@0.3.4(better-sqlite3@12.5.0))(encoding@0.1.13)(ioredis@5.9.2)(magicast@0.5.1)(nuxt@4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(better-sqlite3@12.5.0)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.5.0))(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2))(rolldown@1.0.0-rc.1)(typescript@5.9.3) 17101 + '@nuxt/schema': 4.3.0 17102 + '@nuxt/telemetry': 2.6.6(magicast@0.5.1) 17103 + '@nuxt/vite-builder': 4.3.0(@types/node@25.0.10)(eslint@9.39.2(jiti@2.6.1))(magicast@0.5.1)(nuxt@4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(better-sqlite3@12.5.0)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.5.0))(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2))(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vue-tsc@3.2.2(typescript@5.9.3))(vue@3.5.27(typescript@5.9.3))(yaml@2.8.2) 17104 + '@unhead/vue': 2.1.2(vue@3.5.27(typescript@5.9.3)) 17105 + '@vue/shared': 3.5.27 17106 + c12: 3.3.3(magicast@0.5.1) 17107 + chokidar: 5.0.0 17108 + compatx: 0.2.0 17109 + consola: 3.4.2 17110 + cookie-es: 2.0.0 17111 + defu: 6.1.4 17112 + destr: 2.0.5 17113 + devalue: 5.6.2 17114 + errx: 0.1.0 17115 + escape-string-regexp: 5.0.0 17116 + exsolve: 1.0.8 17117 + h3: 1.15.5 17118 + hookable: 5.5.3 17119 + ignore: 7.0.5 17120 + impound: 1.0.0 17121 + jiti: 2.6.1 17122 + klona: 2.0.6 17123 + knitwork: 1.3.0 17124 + magic-string: 0.30.21 17125 + mlly: 1.8.0 17126 + nanotar: 0.2.0 17127 + nypm: 0.6.4 17128 + ofetch: 1.5.1 17129 + ohash: 2.0.11 17130 + on-change: 6.0.1 17131 + oxc-minify: 0.110.0 17132 + oxc-parser: 0.110.0 17133 + oxc-transform: 0.110.0 17134 + oxc-walker: 0.7.0(oxc-parser@0.110.0) 17135 + pathe: 2.0.3 17136 + perfect-debounce: 2.1.0 17137 + pkg-types: 2.3.0 17138 + rou3: 0.7.12 17139 + scule: 1.3.0 17140 + semver: 7.7.3 17141 + std-env: 3.10.0 17142 + tinyglobby: 0.2.15 17143 + ufo: 1.6.3 17144 + ultrahtml: 1.6.0 17145 + uncrypto: 0.1.3 17146 + unctx: 2.5.0 17147 + unimport: 5.6.0 17148 + unplugin: 2.3.11 17149 + unplugin-vue-router: 0.19.2(@vue/compiler-sfc@3.5.27)(vue-router@4.6.4(vue@3.5.27(typescript@5.9.3)))(vue@3.5.27(typescript@5.9.3)) 17150 + untyped: 2.0.0 17151 + vue: 3.5.27(typescript@5.9.3) 17152 + vue-router: 4.6.4(vue@3.5.27(typescript@5.9.3)) 17153 + optionalDependencies: 17154 + '@parcel/watcher': 2.5.4 17155 + '@types/node': 25.0.10 17156 + transitivePeerDependencies: 17157 + - '@arethetypeswrong/core' 17158 + - '@azure/app-configuration' 17159 + - '@azure/cosmos' 17160 + - '@azure/data-tables' 17161 + - '@azure/identity' 17162 + - '@azure/keyvault-secrets' 17163 + - '@azure/storage-blob' 17164 + - '@biomejs/biome' 17165 + - '@capacitor/preferences' 17166 + - '@deno/kv' 17167 + - '@electric-sql/pglite' 17168 + - '@libsql/client' 17169 + - '@netlify/blobs' 17170 + - '@planetscale/database' 17171 + - '@upstash/redis' 17172 + - '@vercel/blob' 17173 + - '@vercel/functions' 17174 + - '@vercel/kv' 17175 + - '@vitejs/devtools' 17176 + - '@vue/compiler-sfc' 17177 + - aws4fetch 17178 + - bare-abort-controller 17179 + - better-sqlite3 17180 + - bufferutil 17181 + - cac 17182 + - commander 17183 + - db0 17184 + - drizzle-orm 17185 + - encoding 17186 + - eslint 17187 + - idb-keyval 17188 + - ioredis 17189 + - less 17190 + - magicast 17191 + - meow 17192 + - mysql2 17193 + - optionator 17194 + - oxlint 17195 + - publint 17196 + - react-native-b4a 17197 + - rolldown 17198 + - rollup 17199 + - sass 17200 + - sass-embedded 17201 + - sqlite3 17202 + - stylelint 17203 + - stylus 17204 + - sugarss 17205 + - supports-color 17206 + - terser 17207 + - tsx 17208 + - typescript 17209 + - unplugin-lightningcss 17210 + - unplugin-unused 17211 + - uploadthing 17212 + - utf-8-validate 17213 + - vite 17214 + - vls 17215 + - vti 17216 + - vue-tsc 17217 + - xml2js 17218 + - yaml 17219 + 17220 + nuxt@4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2): 13240 17221 dependencies: 13241 17222 '@dxup/nuxt': 0.3.2(magicast@0.5.1) 13242 17223 '@nuxt/cli': 3.32.0(cac@6.7.14)(magicast@0.5.1) 13243 17224 '@nuxt/devtools': 3.1.1(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue@3.5.27(typescript@5.9.3)) 13244 17225 '@nuxt/kit': 4.3.0(magicast@0.5.1) 13245 - '@nuxt/nitro-server': 4.3.0(db0@0.3.4)(encoding@0.1.13)(ioredis@5.9.2)(magicast@0.5.1)(nuxt@4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2))(rolldown@1.0.0-rc.1)(typescript@5.9.3) 17226 + '@nuxt/nitro-server': 4.3.0(better-sqlite3@12.6.2)(db0@0.3.4(better-sqlite3@12.6.2))(encoding@0.1.13)(ioredis@5.9.2)(magicast@0.5.1)(nuxt@4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2))(rolldown@1.0.0-rc.1)(typescript@5.9.3) 13246 17227 '@nuxt/schema': 4.3.0 13247 17228 '@nuxt/telemetry': 2.6.6(magicast@0.5.1) 13248 - '@nuxt/vite-builder': 4.3.0(@types/node@25.0.10)(eslint@9.39.2(jiti@2.6.1))(magicast@0.5.1)(nuxt@4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2))(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vue-tsc@3.2.2(typescript@5.9.3))(vue@3.5.27(typescript@5.9.3))(yaml@2.8.2) 17229 + '@nuxt/vite-builder': 4.3.0(@types/node@25.0.10)(eslint@9.39.2(jiti@2.6.1))(magicast@0.5.1)(nuxt@4.3.0(@parcel/watcher@2.5.4)(@types/node@25.0.10)(@vue/compiler-sfc@3.5.27)(better-sqlite3@12.6.2)(cac@6.7.14)(db0@0.3.4(better-sqlite3@12.6.2))(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(magicast@0.5.1)(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vite@8.0.0-beta.10(@types/node@25.0.10)(esbuild@0.27.2)(jiti@2.6.1)(terser@5.46.0)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.2(typescript@5.9.3))(yaml@2.8.2))(optionator@0.9.4)(oxlint@1.41.0(oxlint-tsgolint@0.11.2))(rolldown@1.0.0-rc.1)(rollup@4.56.0)(terser@5.46.0)(tsx@4.21.0)(typescript@5.9.3)(vue-tsc@3.2.2(typescript@5.9.3))(vue@3.5.27(typescript@5.9.3))(yaml@2.8.2) 13249 17230 '@unhead/vue': 2.1.2(vue@3.5.27(typescript@5.9.3)) 13250 17231 '@vue/shared': 3.5.27 13251 17232 c12: 3.3.3(magicast@0.5.1) ··· 13367 17348 citty: 0.2.0 13368 17349 pathe: 2.0.3 13369 17350 tinyexec: 1.0.2 17351 + 17352 + object-assign@4.1.1: {} 13370 17353 13371 17354 object-inspect@1.13.4: {} 13372 17355 ··· 13397 17380 dependencies: 13398 17381 ee-first: 1.1.1 13399 17382 17383 + once@1.4.0: 17384 + dependencies: 17385 + wrappy: 1.0.2 17386 + 13400 17387 onetime@6.0.0: 13401 17388 dependencies: 13402 17389 mimic-fn: 4.0.0 ··· 13434 17421 prelude-ls: 1.2.1 13435 17422 type-check: 0.4.0 13436 17423 word-wrap: 1.2.5 17424 + 17425 + orderedmap@2.1.1: {} 13437 17426 13438 17427 own-keys@1.0.1: 13439 17428 dependencies: ··· 13608 17597 13609 17598 pako@0.2.9: {} 13610 17599 17600 + pako@1.0.11: {} 17601 + 13611 17602 parent-module@1.0.1: 13612 17603 dependencies: 13613 17604 callsites: 3.1.0 ··· 13617 17608 color-name: 1.1.4 13618 17609 hex-rgb: 4.3.0 13619 17610 17611 + parse-entities@4.0.2: 17612 + dependencies: 17613 + '@types/unist': 2.0.11 17614 + character-entities-legacy: 3.0.0 17615 + character-reference-invalid: 2.0.1 17616 + decode-named-character-reference: 1.3.0 17617 + is-alphanumerical: 2.0.1 17618 + is-decimal: 2.0.1 17619 + is-hexadecimal: 2.0.1 17620 + 13620 17621 parse-ms@4.0.0: {} 13621 17622 13622 17623 parse-path@7.1.0: ··· 13630 17631 '@types/parse-path': 7.1.0 13631 17632 parse-path: 7.1.0 13632 17633 17634 + parse5@7.3.0: 17635 + dependencies: 17636 + entities: 6.0.1 17637 + 13633 17638 parse5@8.0.0: 13634 17639 dependencies: 13635 17640 entities: 6.0.1 13636 - optional: true 13637 17641 13638 17642 parseurl@1.3.3: {} 13639 17643 ··· 13657 17661 lru-cache: 11.2.4 13658 17662 minipass: 7.1.2 13659 17663 17664 + path-to-regexp@8.3.0: {} 17665 + 13660 17666 pathe@1.1.2: {} 13661 17667 13662 17668 pathe@2.0.3: {} ··· 13671 17677 13672 17678 pidtree@0.6.0: {} 13673 17679 17680 + pify@4.0.1: {} 17681 + 13674 17682 pixelmatch@7.1.0: 13675 17683 dependencies: 13676 17684 pngjs: 7.0.0 17685 + 17686 + pkce-challenge@5.0.1: {} 13677 17687 13678 17688 pkg-types@1.3.1: 13679 17689 dependencies: ··· 13861 17871 picocolors: 1.1.1 13862 17872 source-map-js: 1.2.1 13863 17873 17874 + prebuild-install@7.1.3: 17875 + dependencies: 17876 + detect-libc: 2.1.2 17877 + expand-template: 2.0.3 17878 + github-from-package: 0.0.0 17879 + minimist: 1.2.8 17880 + mkdirp-classic: 0.5.3 17881 + napi-build-utils: 2.0.0 17882 + node-abi: 3.87.0 17883 + pump: 3.0.3 17884 + rc: 1.2.8 17885 + simple-get: 4.0.1 17886 + tar-fs: 2.1.4 17887 + tunnel-agent: 0.6.0 17888 + 13864 17889 prelude-ls@1.2.1: {} 13865 17890 13866 17891 prettier@3.8.1: {} ··· 13886 17911 13887 17912 property-information@7.1.0: {} 13888 17913 17914 + prosemirror-changeset@2.3.1: 17915 + dependencies: 17916 + prosemirror-transform: 1.11.0 17917 + 17918 + prosemirror-collab@1.3.1: 17919 + dependencies: 17920 + prosemirror-state: 1.4.4 17921 + 17922 + prosemirror-commands@1.7.1: 17923 + dependencies: 17924 + prosemirror-model: 1.25.4 17925 + prosemirror-state: 1.4.4 17926 + prosemirror-transform: 1.11.0 17927 + 17928 + prosemirror-dropcursor@1.8.2: 17929 + dependencies: 17930 + prosemirror-state: 1.4.4 17931 + prosemirror-transform: 1.11.0 17932 + prosemirror-view: 1.41.5 17933 + 17934 + prosemirror-gapcursor@1.4.0: 17935 + dependencies: 17936 + prosemirror-keymap: 1.2.3 17937 + prosemirror-model: 1.25.4 17938 + prosemirror-state: 1.4.4 17939 + prosemirror-view: 1.41.5 17940 + 17941 + prosemirror-history@1.5.0: 17942 + dependencies: 17943 + prosemirror-state: 1.4.4 17944 + prosemirror-transform: 1.11.0 17945 + prosemirror-view: 1.41.5 17946 + rope-sequence: 1.3.4 17947 + 17948 + prosemirror-inputrules@1.5.1: 17949 + dependencies: 17950 + prosemirror-state: 1.4.4 17951 + prosemirror-transform: 1.11.0 17952 + 17953 + prosemirror-keymap@1.2.3: 17954 + dependencies: 17955 + prosemirror-state: 1.4.4 17956 + w3c-keyname: 2.2.8 17957 + 17958 + prosemirror-markdown@1.13.3: 17959 + dependencies: 17960 + '@types/markdown-it': 14.1.2 17961 + markdown-it: 14.1.0 17962 + prosemirror-model: 1.25.4 17963 + 17964 + prosemirror-menu@1.2.5: 17965 + dependencies: 17966 + crelt: 1.0.6 17967 + prosemirror-commands: 1.7.1 17968 + prosemirror-history: 1.5.0 17969 + prosemirror-state: 1.4.4 17970 + 17971 + prosemirror-model@1.25.4: 17972 + dependencies: 17973 + orderedmap: 2.1.1 17974 + 17975 + prosemirror-schema-basic@1.2.4: 17976 + dependencies: 17977 + prosemirror-model: 1.25.4 17978 + 17979 + prosemirror-schema-list@1.5.1: 17980 + dependencies: 17981 + prosemirror-model: 1.25.4 17982 + prosemirror-state: 1.4.4 17983 + prosemirror-transform: 1.11.0 17984 + 17985 + prosemirror-state@1.4.4: 17986 + dependencies: 17987 + prosemirror-model: 1.25.4 17988 + prosemirror-transform: 1.11.0 17989 + prosemirror-view: 1.41.5 17990 + 17991 + prosemirror-tables@1.8.5: 17992 + dependencies: 17993 + prosemirror-keymap: 1.2.3 17994 + prosemirror-model: 1.25.4 17995 + prosemirror-state: 1.4.4 17996 + prosemirror-transform: 1.11.0 17997 + prosemirror-view: 1.41.5 17998 + 17999 + prosemirror-trailing-node@3.0.0(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.5): 18000 + dependencies: 18001 + '@remirror/core-constants': 3.0.0 18002 + escape-string-regexp: 4.0.0 18003 + prosemirror-model: 1.25.4 18004 + prosemirror-state: 1.4.4 18005 + prosemirror-view: 1.41.5 18006 + 18007 + prosemirror-transform@1.11.0: 18008 + dependencies: 18009 + prosemirror-model: 1.25.4 18010 + 18011 + prosemirror-view@1.41.5: 18012 + dependencies: 18013 + prosemirror-model: 1.25.4 18014 + prosemirror-state: 1.4.4 18015 + prosemirror-transform: 1.11.0 18016 + 13889 18017 proto-list@1.2.4: {} 13890 18018 13891 18019 protocols@2.0.2: {} 13892 18020 18021 + proxy-addr@2.0.7: 18022 + dependencies: 18023 + forwarded: 0.2.0 18024 + ipaddr.js: 1.9.1 18025 + 18026 + pump@3.0.3: 18027 + dependencies: 18028 + end-of-stream: 1.4.5 18029 + once: 1.4.0 18030 + 18031 + punycode.js@2.3.1: {} 18032 + 13893 18033 punycode@2.3.1: {} 13894 18034 18035 + qs@6.14.1: 18036 + dependencies: 18037 + side-channel: 1.1.0 18038 + 13895 18039 quansync@0.2.11: {} 13896 18040 13897 18041 quansync@1.0.0: {} ··· 13906 18050 13907 18051 range-parser@1.2.1: {} 13908 18052 18053 + raw-body@3.0.2: 18054 + dependencies: 18055 + bytes: 3.1.2 18056 + http-errors: 2.0.1 18057 + iconv-lite: 0.7.2 18058 + unpipe: 1.0.0 18059 + 13909 18060 rc9@2.1.2: 13910 18061 dependencies: 13911 18062 defu: 6.1.4 13912 18063 destr: 2.0.5 13913 18064 18065 + rc@1.2.8: 18066 + dependencies: 18067 + deep-extend: 0.6.0 18068 + ini: 1.3.8 18069 + minimist: 1.2.8 18070 + strip-json-comments: 2.0.1 18071 + 13914 18072 readable-stream@2.3.8: 13915 18073 dependencies: 13916 18074 core-util-is: 1.0.3 ··· 13919 18077 process-nextick-args: 2.0.1 13920 18078 safe-buffer: 5.1.2 13921 18079 string_decoder: 1.1.1 18080 + util-deprecate: 1.0.2 18081 + 18082 + readable-stream@3.6.2: 18083 + dependencies: 18084 + inherits: 2.0.4 18085 + string_decoder: 1.3.0 13922 18086 util-deprecate: 1.0.2 13923 18087 13924 18088 readable-stream@4.7.0: ··· 13996 18160 dependencies: 13997 18161 jsesc: 3.1.0 13998 18162 18163 + rehype-external-links@3.0.0: 18164 + dependencies: 18165 + '@types/hast': 3.0.4 18166 + '@ungap/structured-clone': 1.3.0 18167 + hast-util-is-element: 3.0.0 18168 + is-absolute-url: 4.0.1 18169 + space-separated-tokens: 2.0.2 18170 + unist-util-visit: 5.0.0 18171 + 18172 + rehype-minify-whitespace@6.0.2: 18173 + dependencies: 18174 + '@types/hast': 3.0.4 18175 + hast-util-minify-whitespace: 1.0.1 18176 + 18177 + rehype-raw@7.0.0: 18178 + dependencies: 18179 + '@types/hast': 3.0.4 18180 + hast-util-raw: 9.1.0 18181 + vfile: 6.0.3 18182 + 18183 + rehype-remark@10.0.1: 18184 + dependencies: 18185 + '@types/hast': 3.0.4 18186 + '@types/mdast': 4.0.4 18187 + hast-util-to-mdast: 10.1.2 18188 + unified: 11.0.5 18189 + vfile: 6.0.3 18190 + 18191 + rehype-slug@6.0.0: 18192 + dependencies: 18193 + '@types/hast': 3.0.4 18194 + github-slugger: 2.0.0 18195 + hast-util-heading-rank: 3.0.0 18196 + hast-util-to-string: 3.0.1 18197 + unist-util-visit: 5.0.0 18198 + 18199 + rehype-sort-attribute-values@5.0.1: 18200 + dependencies: 18201 + '@types/hast': 3.0.4 18202 + hast-util-is-element: 3.0.0 18203 + unist-util-visit: 5.0.0 18204 + 18205 + rehype-sort-attributes@5.0.1: 18206 + dependencies: 18207 + '@types/hast': 3.0.4 18208 + unist-util-visit: 5.0.0 18209 + 18210 + reka-ui@2.7.0(typescript@5.9.3)(vue@3.5.27(typescript@5.9.3)): 18211 + dependencies: 18212 + '@floating-ui/dom': 1.7.5 18213 + '@floating-ui/vue': 1.1.10(vue@3.5.27(typescript@5.9.3)) 18214 + '@internationalized/date': 3.10.1 18215 + '@internationalized/number': 3.6.5 18216 + '@tanstack/vue-virtual': 3.13.18(vue@3.5.27(typescript@5.9.3)) 18217 + '@vueuse/core': 12.8.2(typescript@5.9.3) 18218 + '@vueuse/shared': 12.8.2(typescript@5.9.3) 18219 + aria-hidden: 1.2.6 18220 + defu: 6.1.4 18221 + ohash: 2.0.11 18222 + vue: 3.5.27(typescript@5.9.3) 18223 + transitivePeerDependencies: 18224 + - '@vue/composition-api' 18225 + - typescript 18226 + 18227 + remark-emoji@5.0.2: 18228 + dependencies: 18229 + '@types/mdast': 4.0.4 18230 + emoticon: 4.1.0 18231 + mdast-util-find-and-replace: 3.0.2 18232 + node-emoji: 2.2.0 18233 + unified: 11.0.5 18234 + 18235 + remark-gfm@4.0.1: 18236 + dependencies: 18237 + '@types/mdast': 4.0.4 18238 + mdast-util-gfm: 3.1.0 18239 + micromark-extension-gfm: 3.0.0 18240 + remark-parse: 11.0.0 18241 + remark-stringify: 11.0.0 18242 + unified: 11.0.5 18243 + transitivePeerDependencies: 18244 + - supports-color 18245 + 18246 + remark-mdc@3.10.0: 18247 + dependencies: 18248 + '@types/mdast': 4.0.4 18249 + '@types/unist': 3.0.3 18250 + flat: 6.0.1 18251 + mdast-util-from-markdown: 2.0.2 18252 + mdast-util-to-markdown: 2.1.2 18253 + micromark: 4.0.2 18254 + micromark-core-commonmark: 2.0.3 18255 + micromark-factory-space: 2.0.1 18256 + micromark-factory-whitespace: 2.0.1 18257 + micromark-util-character: 2.1.1 18258 + micromark-util-types: 2.0.2 18259 + parse-entities: 4.0.2 18260 + scule: 1.3.0 18261 + stringify-entities: 4.0.4 18262 + unified: 11.0.5 18263 + unist-util-visit: 5.0.0 18264 + unist-util-visit-parents: 6.0.2 18265 + yaml: 2.8.2 18266 + transitivePeerDependencies: 18267 + - supports-color 18268 + 18269 + remark-parse@11.0.0: 18270 + dependencies: 18271 + '@types/mdast': 4.0.4 18272 + mdast-util-from-markdown: 2.0.2 18273 + micromark-util-types: 2.0.2 18274 + unified: 11.0.5 18275 + transitivePeerDependencies: 18276 + - supports-color 18277 + 18278 + remark-rehype@11.1.2: 18279 + dependencies: 18280 + '@types/hast': 3.0.4 18281 + '@types/mdast': 4.0.4 18282 + mdast-util-to-hast: 13.2.1 18283 + unified: 11.0.5 18284 + vfile: 6.0.3 18285 + 18286 + remark-stringify@11.0.0: 18287 + dependencies: 18288 + '@types/mdast': 4.0.4 18289 + mdast-util-to-markdown: 2.1.2 18290 + unified: 11.0.5 18291 + 13999 18292 require-directory@2.1.1: {} 14000 18293 14001 18294 require-from-string@2.0.2: {} ··· 14103 18396 '@rollup/rollup-win32-x64-gnu': 4.56.0 14104 18397 '@rollup/rollup-win32-x64-msvc': 4.56.0 14105 18398 fsevents: 2.3.3 18399 + 18400 + rope-sequence@1.3.4: {} 14106 18401 14107 18402 rou3@0.7.12: {} 14108 18403 18404 + router@2.2.0: 18405 + dependencies: 18406 + debug: 4.4.3 18407 + depd: 2.0.0 18408 + is-promise: 4.0.0 18409 + parseurl: 1.3.3 18410 + path-to-regexp: 8.3.0 18411 + transitivePeerDependencies: 18412 + - supports-color 18413 + 14109 18414 run-applescript@7.1.0: {} 14110 18415 14111 18416 run-parallel@1.2.0: ··· 14243 18548 14244 18549 setprototypeof@1.2.0: {} 14245 18550 18551 + sha.js@2.4.12: 18552 + dependencies: 18553 + inherits: 2.0.4 18554 + safe-buffer: 5.2.1 18555 + to-buffer: 1.2.2 18556 + 14246 18557 sharp-ico@0.1.5: 14247 18558 dependencies: 14248 18559 decode-ico: 0.4.1 ··· 14329 18640 14330 18641 signal-exit@4.1.0: {} 14331 18642 18643 + simple-concat@1.0.1: {} 18644 + 18645 + simple-get@4.0.1: 18646 + dependencies: 18647 + decompress-response: 6.0.0 18648 + once: 1.4.0 18649 + simple-concat: 1.0.1 18650 + 14332 18651 simple-git-hooks@2.13.1: {} 14333 18652 14334 18653 simple-git@3.30.0: ··· 14352 18671 ufo: 1.6.3 14353 18672 vue: 3.5.27(typescript@5.9.3) 14354 18673 18674 + skin-tone@2.0.0: 18675 + dependencies: 18676 + unicode-emoji-modifier-base: 1.0.0 18677 + 14355 18678 slash@5.1.0: {} 14356 18679 14357 18680 slice-ansi@7.1.2: ··· 14359 18682 ansi-styles: 6.2.3 14360 18683 is-fullwidth-code-point: 5.1.0 14361 18684 18685 + slugify@1.6.6: {} 18686 + 14362 18687 smob@1.5.0: {} 18688 + 18689 + socket.io-client@4.8.3: 18690 + dependencies: 18691 + '@socket.io/component-emitter': 3.1.2 18692 + debug: 4.4.3 18693 + engine.io-client: 6.6.4 18694 + socket.io-parser: 4.2.5 18695 + transitivePeerDependencies: 18696 + - bufferutil 18697 + - supports-color 18698 + - utf-8-validate 18699 + 18700 + socket.io-parser@4.2.5: 18701 + dependencies: 18702 + '@socket.io/component-emitter': 3.1.2 18703 + debug: 4.4.3 18704 + transitivePeerDependencies: 18705 + - supports-color 14363 18706 14364 18707 source-map-js@1.2.1: {} 14365 18708 ··· 14505 18848 14506 18849 strip-final-newline@4.0.0: {} 14507 18850 18851 + strip-json-comments@2.0.1: {} 18852 + 14508 18853 strip-json-comments@3.1.1: {} 14509 18854 14510 18855 strip-literal@3.1.0: ··· 14552 18897 14553 18898 tagged-tag@1.0.0: {} 14554 18899 18900 + tailwind-merge@3.4.0: {} 18901 + 18902 + tailwind-variants@3.2.2(tailwind-merge@3.4.0)(tailwindcss@4.1.18): 18903 + dependencies: 18904 + tailwindcss: 4.1.18 18905 + optionalDependencies: 18906 + tailwind-merge: 3.4.0 18907 + 18908 + tailwindcss@4.1.18: {} 18909 + 14555 18910 tapable@2.3.0: {} 14556 18911 18912 + tar-fs@2.1.4: 18913 + dependencies: 18914 + chownr: 1.1.4 18915 + mkdirp-classic: 0.5.3 18916 + pump: 3.0.3 18917 + tar-stream: 2.2.0 18918 + 18919 + tar-stream@2.2.0: 18920 + dependencies: 18921 + bl: 4.1.0 18922 + end-of-stream: 1.4.5 18923 + fs-constants: 1.0.0 18924 + inherits: 2.0.4 18925 + readable-stream: 3.6.2 18926 + 14557 18927 tar-stream@3.1.7: 14558 18928 dependencies: 14559 18929 b4a: 1.7.3 ··· 14628 18998 dependencies: 14629 18999 tldts-core: 7.0.19 14630 19000 optional: true 19001 + 19002 + to-buffer@1.2.2: 19003 + dependencies: 19004 + isarray: 2.0.5 19005 + safe-buffer: 5.2.1 19006 + typed-array-buffer: 1.0.3 14631 19007 14632 19008 to-data-view@1.1.0: {} 14633 19009 ··· 14661 19037 14662 19038 trim-lines@3.0.1: {} 14663 19039 19040 + trim-trailing-lines@2.1.0: {} 19041 + 19042 + trough@2.2.0: {} 19043 + 14664 19044 ts-api-utils@2.4.0(typescript@5.9.3): 14665 19045 dependencies: 14666 19046 typescript: 5.9.3 ··· 14702 19082 fsevents: 2.3.3 14703 19083 optional: true 14704 19084 19085 + tunnel-agent@0.6.0: 19086 + dependencies: 19087 + safe-buffer: 5.2.1 19088 + 14705 19089 type-check@0.4.0: 14706 19090 dependencies: 14707 19091 prelude-ls: 1.2.1 ··· 14712 19096 dependencies: 14713 19097 tagged-tag: 1.0.0 14714 19098 19099 + type-is@2.0.1: 19100 + dependencies: 19101 + content-type: 1.0.5 19102 + media-typer: 1.1.0 19103 + mime-types: 3.0.2 19104 + 14715 19105 type-level-regexp@0.1.17: {} 14716 19106 14717 19107 typed-array-buffer@1.0.3: ··· 14748 19138 reflect.getprototypeof: 1.0.10 14749 19139 14750 19140 typescript@5.9.3: {} 19141 + 19142 + uc.micro@2.1.0: {} 14751 19143 14752 19144 ufo@1.6.3: {} 14753 19145 ··· 14793 19185 hookable: 6.0.1 14794 19186 14795 19187 unicode-canonical-property-names-ecmascript@2.0.1: {} 19188 + 19189 + unicode-emoji-modifier-base@1.0.0: {} 14796 19190 14797 19191 unicode-match-property-ecmascript@2.0.0: 14798 19192 dependencies: ··· 14817 19211 14818 19212 unicorn-magic@0.4.0: {} 14819 19213 19214 + unified@11.0.5: 19215 + dependencies: 19216 + '@types/unist': 3.0.3 19217 + bail: 2.0.2 19218 + devlop: 1.1.0 19219 + extend: 3.0.2 19220 + is-plain-obj: 4.1.0 19221 + trough: 2.2.0 19222 + vfile: 6.0.3 19223 + 14820 19224 unifont@0.6.0: 14821 19225 dependencies: 14822 19226 css-tree: 3.1.0 ··· 14843 19247 unique-string@2.0.0: 14844 19248 dependencies: 14845 19249 crypto-random-string: 2.0.0 19250 + 19251 + unist-builder@4.0.0: 19252 + dependencies: 19253 + '@types/unist': 3.0.3 19254 + 19255 + unist-util-find-after@5.0.0: 19256 + dependencies: 19257 + '@types/unist': 3.0.3 19258 + unist-util-is: 6.0.1 14846 19259 14847 19260 unist-util-is@6.0.1: 14848 19261 dependencies: ··· 14897 19310 - postcss 14898 19311 - supports-color 14899 19312 19313 + unpipe@1.0.0: {} 19314 + 19315 + unplugin-auto-import@21.0.0(@nuxt/kit@4.3.0(magicast@0.5.1))(@vueuse/core@14.1.0(vue@3.5.27(typescript@5.9.3))): 19316 + dependencies: 19317 + local-pkg: 1.1.2 19318 + magic-string: 0.30.21 19319 + picomatch: 4.0.3 19320 + unimport: 5.6.0 19321 + unplugin: 2.3.11 19322 + unplugin-utils: 0.3.1 19323 + optionalDependencies: 19324 + '@nuxt/kit': 4.3.0(magicast@0.5.1) 19325 + '@vueuse/core': 14.1.0(vue@3.5.27(typescript@5.9.3)) 19326 + 14900 19327 unplugin-utils@0.2.5: 14901 19328 dependencies: 14902 19329 pathe: 2.0.3 ··· 14906 19333 dependencies: 14907 19334 pathe: 2.0.3 14908 19335 picomatch: 4.0.3 19336 + 19337 + unplugin-vue-components@31.0.0(@nuxt/kit@4.3.0(magicast@0.5.1))(vue@3.5.27(typescript@5.9.3)): 19338 + dependencies: 19339 + chokidar: 5.0.0 19340 + local-pkg: 1.1.2 19341 + magic-string: 0.30.21 19342 + mlly: 1.8.0 19343 + obug: 2.1.1 19344 + picomatch: 4.0.3 19345 + tinyglobby: 0.2.15 19346 + unplugin: 2.3.11 19347 + unplugin-utils: 0.3.1 19348 + vue: 3.5.27(typescript@5.9.3) 19349 + optionalDependencies: 19350 + '@nuxt/kit': 4.3.0(magicast@0.5.1) 14909 19351 14910 19352 unplugin-vue-router@0.16.2(@vue/compiler-sfc@3.5.27)(vue-router@4.6.4(vue@3.5.27(typescript@5.9.3)))(vue@3.5.27(typescript@5.9.3)): 14911 19353 dependencies: ··· 14968 19410 dependencies: 14969 19411 rolldown: 1.0.0-rc.1 14970 19412 14971 - unstorage@1.17.4(db0@0.3.4)(ioredis@5.9.2): 19413 + unstorage@1.17.4(db0@0.3.4(better-sqlite3@12.5.0))(ioredis@5.9.2): 19414 + dependencies: 19415 + anymatch: 3.1.3 19416 + chokidar: 5.0.0 19417 + destr: 2.0.5 19418 + h3: 1.15.5 19419 + lru-cache: 11.2.4 19420 + node-fetch-native: 1.6.7 19421 + ofetch: 1.5.1 19422 + ufo: 1.6.3 19423 + optionalDependencies: 19424 + db0: 0.3.4(better-sqlite3@12.5.0) 19425 + ioredis: 5.9.2 19426 + 19427 + unstorage@1.17.4(db0@0.3.4(better-sqlite3@12.6.2))(ioredis@5.9.2): 14972 19428 dependencies: 14973 19429 anymatch: 3.1.3 14974 19430 chokidar: 5.0.0 ··· 14979 19435 ofetch: 1.5.1 14980 19436 ufo: 1.6.3 14981 19437 optionalDependencies: 14982 - db0: 0.3.4 19438 + db0: 0.3.4(better-sqlite3@12.6.2) 14983 19439 ioredis: 5.9.2 14984 19440 14985 19441 untun@0.1.3: ··· 15026 19482 typescript: 5.9.3 15027 19483 15028 19484 validate-npm-package-name@7.0.2: {} 19485 + 19486 + vary@1.1.2: {} 19487 + 19488 + vaul-vue@0.4.1(reka-ui@2.7.0(typescript@5.9.3)(vue@3.5.27(typescript@5.9.3)))(vue@3.5.27(typescript@5.9.3)): 19489 + dependencies: 19490 + '@vueuse/core': 10.11.1(vue@3.5.27(typescript@5.9.3)) 19491 + reka-ui: 2.7.0(typescript@5.9.3)(vue@3.5.27(typescript@5.9.3)) 19492 + vue: 3.5.27(typescript@5.9.3) 19493 + transitivePeerDependencies: 19494 + - '@vue/composition-api' 19495 + 19496 + vfile-location@5.0.3: 19497 + dependencies: 19498 + '@types/unist': 3.0.3 19499 + vfile: 6.0.3 15029 19500 15030 19501 vfile-message@4.0.3: 15031 19502 dependencies: ··· 15217 19688 dependencies: 15218 19689 ufo: 1.6.3 15219 19690 19691 + vue-component-meta@3.2.4(typescript@5.9.3): 19692 + dependencies: 19693 + '@volar/typescript': 2.4.27 19694 + '@vue/language-core': 3.2.4 19695 + path-browserify: 1.0.1 19696 + optionalDependencies: 19697 + typescript: 5.9.3 19698 + 15220 19699 vue-component-type-helpers@2.2.12: {} 15221 19700 19701 + vue-component-type-helpers@3.2.4: {} 19702 + 15222 19703 vue-data-ui@3.13.2(vue@3.5.27(typescript@5.9.3)): 19704 + dependencies: 19705 + vue: 3.5.27(typescript@5.9.3) 19706 + 19707 + vue-demi@0.14.10(vue@3.5.27(typescript@5.9.3)): 15223 19708 dependencies: 15224 19709 vue: 3.5.27(typescript@5.9.3) 15225 19710 ··· 15255 19740 optionalDependencies: 15256 19741 typescript: 5.9.3 15257 19742 19743 + w3c-keyname@2.2.8: {} 19744 + 15258 19745 w3c-xmlserializer@5.0.0: 15259 19746 dependencies: 15260 19747 xml-name-validator: 5.0.0 ··· 15264 19751 dependencies: 15265 19752 glob-to-regexp: 0.4.1 15266 19753 graceful-fs: 4.2.11 19754 + 19755 + web-namespaces@2.0.1: {} 15267 19756 15268 19757 webidl-conversions@3.0.1: {} 15269 19758 ··· 15333 19822 tr46: 1.0.1 15334 19823 webidl-conversions: 4.0.2 15335 19824 19825 + wheel-gestures@2.2.48: {} 19826 + 15336 19827 which-boxed-primitive@1.1.1: 15337 19828 dependencies: 15338 19829 is-bigint: 1.1.0 ··· 15515 20006 string-width: 7.2.0 15516 20007 strip-ansi: 7.1.2 15517 20008 20009 + wrappy@1.0.2: {} 20010 + 20011 + ws@8.18.3: {} 20012 + 15518 20013 ws@8.19.0: {} 15519 20014 15520 20015 wsl-utils@0.1.0: ··· 15526 20021 15527 20022 xmlchars@2.2.0: 15528 20023 optional: true 20024 + 20025 + xmlhttprequest-ssl@2.1.2: {} 20026 + 20027 + xss@1.0.15: 20028 + dependencies: 20029 + commander: 2.20.3 20030 + cssfilter: 0.0.10 20031 + optional: true 20032 + 20033 + y-protocols@1.0.7(yjs@13.6.29): 20034 + dependencies: 20035 + lib0: 0.2.117 20036 + yjs: 13.6.29 15529 20037 15530 20038 y18n@5.0.8: {} 15531 20039 ··· 15552 20060 y18n: 5.0.8 15553 20061 yargs-parser: 21.1.1 15554 20062 20063 + yjs@13.6.29: 20064 + dependencies: 20065 + lib0: 0.2.117 20066 + 15555 20067 yocto-queue@0.1.0: {} 15556 20068 15557 20069 yoctocolors@2.1.2: {} ··· 15578 20090 archiver-utils: 5.0.2 15579 20091 compress-commons: 6.0.2 15580 20092 readable-stream: 4.7.0 20093 + 20094 + zod-to-json-schema@3.25.1(zod@3.25.76): 20095 + dependencies: 20096 + zod: 3.25.76 20097 + 20098 + zod-to-json-schema@3.25.1(zod@4.3.6): 20099 + dependencies: 20100 + zod: 4.3.6 20101 + 20102 + zod@3.25.76: {} 20103 + 20104 + zod@4.3.6: {} 15581 20105 15582 20106 zwitch@2.0.4: {}
+2
pnpm-workspace.yaml
··· 1 1 packages: 2 2 - '.' 3 3 - 'cli' 4 + - 'docs' 4 5 5 6 overrides: 6 7 sharp: 0.34.5 ··· 18 19 - unrs-resolver 19 20 20 21 onlyBuiltDependencies: 22 + - better-sqlite3@12.5.0 21 23 - sharp@0.34.5 22 24 - simple-git-hooks@2.13.1 23 25