+
+
+
+ {/* Desktop Navigation */}
+
+
+ {/* Mobile Download Button and Hamburger */}
+
+
+
+ {/* Mobile Menu - Modal Card */}
+ {isMobileMenuOpen && (
+ <>
+ {/* Backdrop */}
+
setIsMobileMenuOpen(false)}
+ />
+
+ {/* Modal Card */}
+
+
+ {/* Header with close button */}
+
+
Jan
+
+
+
+ {/* Menu Items */}
+
+
+ {/* Social Icons */}
+
+
+ {/* Action Buttons */}
+
+
+
+ >
+ )}
+
+ )
+}
+
+export default Navbar
diff --git a/docs/src/components/TweetSection.tsx b/docs/src/components/TweetSection.tsx
new file mode 100644
index 000000000..ef39f5ad7
--- /dev/null
+++ b/docs/src/components/TweetSection.tsx
@@ -0,0 +1,135 @@
+import { ClientTweetCard } from '@/components/ui/tweet-card'
+import { useEffect } from 'react'
+
+const Tweets = [
+ { id: '1959360209970700621' },
+ { id: '1959018716219277654' },
+ { id: '1959410685093523580' },
+ { id: '1959003819196785143' },
+ { id: '1956547833999560863' },
+ { id: '1956616098885079434' },
+ { id: '1955283174340128809' },
+ { id: '1955680680261652896' },
+ { id: '1955624616560566446' },
+ { id: '1955633387038966112' },
+ { id: '1955326315160043918' },
+ { id: '1952305678497747137' },
+]
+
+export default function TweetSection() {
+ useEffect(() => {
+ const buttons = document.querySelectorAll('.tweet-nav-btn')
+
+ const handleClick = (event: Event) => {
+ const button = event.currentTarget as HTMLButtonElement
+ const direction = button.dataset.direction
+ const container = document.querySelector('.tweet-marquee-container')
+
+ if (direction === 'left') {
+ container?.scrollBy({ left: -300, behavior: 'smooth' })
+ } else {
+ container?.scrollBy({ left: 300, behavior: 'smooth' })
+ }
+ }
+
+ buttons.forEach((button) => {
+ button.addEventListener('click', handleClick)
+ })
+
+ return () => {
+ buttons.forEach((button) => {
+ button.removeEventListener('click', handleClick)
+ })
+ }
+ }, [])
+
+ return (
+
+ {/* Scrollable marquee container */}
+
+
+ {/* Multiple copies for infinite scroll */}
+ {[...Tweets, ...Tweets, ...Tweets].map((tweet, index) => (
+
+
+
+ ))}
+
+
+
+ {/* Navigation arrows at bottom - will need client-side JS */}
+
+
+
+
+ )
+}
diff --git a/docs/src/components/ui/button.tsx b/docs/src/components/ui/button.tsx
new file mode 100644
index 000000000..ae58a6332
--- /dev/null
+++ b/docs/src/components/ui/button.tsx
@@ -0,0 +1,67 @@
+import * as React from "react";
+import { Slot } from "@radix-ui/react-slot";
+import { cva, type VariantProps } from "class-variance-authority";
+
+import { cn } from "@/lib/utils";
+
+const buttonVariants = cva(
+ "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive cursor-pointer",
+ {
+ variants: {
+ variant: {
+ "playful-green":
+ "bg-[#7EF19D] hover:bg-[#6BD689] hover:shadow-[0px_0px_0px_0px_rgba(0,0,0,1)] hover:translate-y-[2px] active:shadow-[0px_2px_0px_0px_rgba(0,0,0,1)] active:translate-y-[2px] text-black shadow-[0px_4px_0px_0px_rgba(0,0,0,1)] border border-black !rounded-2xl",
+ "playful-white":
+ "bg-white text-black hover:bg-gray-200 hover:shadow-[0px_0px_0px_0px_rgba(0,0,0,1)] hover:translate-y-[2px] active:shadow-[0px_2px_0px_0px_rgba(0,0,0,1)] active:translate-y-[2px] shadow-[0px_4px_0px_0px_rgba(0,0,0,1)] border border-black !rounded-2xl",
+ playful:
+ "text-black hover:shadow-[0px_0px_0px_0px_rgba(0,0,0,1)] hover:translate-y-[2px] active:shadow-[0px_2px_0px_0px_rgba(0,0,0,1)] active:translate-y-[2px] shadow-[0px_4px_0px_0px_rgba(0,0,0,1)] border border-black !rounded-2xl",
+ default:
+ "bg-primary text-primary-foreground shadow-xs hover:bg-primary/90",
+ destructive:
+ "bg-destructive text-white shadow-xs hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60",
+ outline:
+ "border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50",
+ secondary:
+ "bg-secondary text-secondary-foreground shadow-xs hover:bg-secondary/80",
+ ghost:
+ "hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50",
+ link: "text-primary underline-offset-4 hover:underline",
+ },
+ size: {
+ default: "h-9 px-4 py-2 has-[>svg]:px-3",
+ sm: "h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5",
+ lg: "h-10 rounded-md px-6 has-[>svg]:px-4",
+ xl: "h-12 rounded-md px-6 has-[>svg]:px-4 text-lg",
+ xxl: "h-16 !rounded-[20px] px-6 has-[>svg]:px-4 text-xl -tracking-[0.2px]",
+ icon: "size-9",
+ },
+ },
+ defaultVariants: {
+ variant: "default",
+ size: "default",
+ },
+ }
+);
+
+function Button({
+ className,
+ variant,
+ size,
+ asChild = false,
+ ...props
+}: React.ComponentProps<"button"> &
+ VariantProps
& {
+ asChild?: boolean;
+ }) {
+ const Comp = asChild ? Slot : "button";
+
+ return (
+
+ );
+}
+
+export { Button, buttonVariants };
diff --git a/docs/src/components/ui/dropdown-button.tsx b/docs/src/components/ui/dropdown-button.tsx
new file mode 100644
index 000000000..2b200284d
--- /dev/null
+++ b/docs/src/components/ui/dropdown-button.tsx
@@ -0,0 +1,255 @@
+import * as React from 'react'
+import { Button } from './button'
+import { cn } from '@/lib/utils'
+import { FaApple, FaWindows, FaLinux } from 'react-icons/fa'
+import { formatFileSize } from '@/utils/format'
+
+interface DownloadOption {
+ id: string
+ name: string
+ icon: React.ReactNode
+ size: string
+ href: string
+ isActive?: boolean
+}
+
+const downloadOptionsTemplate: DownloadOption[] = [
+ {
+ id: 'mac',
+ name: 'Download for Mac',
+ icon: ,
+ size: '',
+ href: '#',
+ isActive: true,
+ },
+ {
+ id: 'windows',
+ name: 'Download for Windows',
+ icon: ,
+ size: '',
+ href: '#',
+ },
+ {
+ id: 'linux-appimage',
+ name: 'Download for Linux (AppImage)',
+ icon: ,
+ size: '',
+ href: '#',
+ },
+ {
+ id: 'linux-deb',
+ name: 'Download for Linux (Deb)',
+ icon: ,
+ size: '',
+ href: '#',
+ },
+]
+
+const fileFormatMap: { [key: string]: string } = {
+ 'mac': 'Jan_{tag}_universal.dmg',
+ 'windows': 'Jan_{tag}_x64-setup.exe',
+ 'linux-appimage': 'Jan_{tag}_amd64.AppImage',
+ 'linux-deb': 'Jan_{tag}_amd64.deb',
+}
+
+interface DropdownButtonProps {
+ size?: 'default' | 'sm' | 'lg' | 'xl' | 'icon' | 'xxl'
+ className?: string
+ classNameButton?: string
+ lastRelease?: any
+}
+
+export function DropdownButton({
+ size = 'xl',
+ className,
+ classNameButton,
+ lastRelease,
+}: DropdownButtonProps) {
+ const [isOpen, setIsOpen] = React.useState(false)
+ const [downloadOptions, setDownloadOptions] = React.useState(
+ downloadOptionsTemplate
+ )
+ const [currentOption, setCurrentOption] = React.useState(
+ downloadOptions.find((opt) => opt.isActive) || downloadOptions[0]
+ )
+ const dropdownRef = React.useRef(null)
+
+ const toggleDropdown = () => setIsOpen(!isOpen)
+
+ const selectOption = (option: DownloadOption) => {
+ setCurrentOption(option)
+ setIsOpen(false)
+ }
+
+ const changeDefaultSystem = React.useCallback((systems: DownloadOption[]) => {
+ const userAgent = navigator.userAgent
+ if (userAgent.includes('Windows')) {
+ // windows user
+ const windowsOption = systems.find((opt) => opt.id === 'windows')
+ if (windowsOption) setCurrentOption(windowsOption)
+ } else if (userAgent.includes('Linux')) {
+ // linux user - prefer deb package
+ const linuxOption = systems.find((opt) => opt.id === 'linux-deb')
+ if (linuxOption) setCurrentOption(linuxOption)
+ } else if (userAgent.includes('Mac OS')) {
+ // mac user - always use universal build
+ const macOption = systems.find((opt) => opt.id === 'mac')
+ if (macOption) setCurrentOption(macOption)
+ } else {
+ // fallback to windows
+ const windowsOption = systems.find((opt) => opt.id === 'windows')
+ if (windowsOption) setCurrentOption(windowsOption)
+ }
+ }, [])
+
+ React.useEffect(() => {
+ if (lastRelease) {
+ try {
+ const tag = lastRelease.tag_name.startsWith('v')
+ ? lastRelease.tag_name.substring(1)
+ : lastRelease.tag_name
+
+ const updatedOptions = downloadOptionsTemplate.map((option) => {
+ const fileFormat = fileFormatMap[option.id]
+ const fileName = fileFormat.replace('{tag}', tag)
+
+ // Find the corresponding asset to get the file size
+ const asset = lastRelease.assets.find(
+ (asset: any) => asset.name === fileName
+ )
+
+ return {
+ ...option,
+ href: `https://github.com/menloresearch/jan/releases/download/${lastRelease.tag_name}/${fileName}`,
+ size: asset ? formatFileSize(asset.size) : 'N/A',
+ }
+ })
+
+ setDownloadOptions(updatedOptions)
+ changeDefaultSystem(updatedOptions)
+ } catch (error) {
+ console.error('Failed to update download links:', error)
+ }
+ }
+ }, [lastRelease, changeDefaultSystem])
+
+ React.useEffect(() => {
+ const handleEscapeKey = (event: KeyboardEvent) => {
+ if (event.key === 'Escape' && isOpen) {
+ setIsOpen(false)
+ }
+ }
+
+ const handleClickOutside = (event: MouseEvent) => {
+ if (
+ dropdownRef.current &&
+ !dropdownRef.current.contains(event.target as Node)
+ ) {
+ setIsOpen(false)
+ }
+ }
+
+ if (isOpen) {
+ document.addEventListener('keydown', handleEscapeKey)
+ document.addEventListener('mousedown', handleClickOutside)
+ }
+
+ return () => {
+ document.removeEventListener('keydown', handleEscapeKey)
+ document.removeEventListener('mousedown', handleClickOutside)
+ }
+ }, [isOpen])
+
+ return (
+
+
+
+ {/* Dropdown Menu */}
+ {isOpen && (
+
+ )}
+
+ )
+}
diff --git a/docs/src/components/ui/tweet-card.tsx b/docs/src/components/ui/tweet-card.tsx
new file mode 100644
index 000000000..358a787e4
--- /dev/null
+++ b/docs/src/components/ui/tweet-card.tsx
@@ -0,0 +1,293 @@
+/* eslint-disable @next/next/no-img-element */
+import { Suspense } from 'react'
+import { FaXTwitter } from 'react-icons/fa6'
+
+import {
+ enrichTweet,
+ useTweet,
+ type EnrichedTweet,
+ type TweetProps,
+ type TwitterComponents,
+} from 'react-tweet'
+import { getTweet, type Tweet } from 'react-tweet/api'
+
+import { cn } from '@/lib/utils'
+
+interface TwitterIconProps {
+ className?: string
+ [key: string]: unknown
+}
+const Twitter = ({ className, ...props }: TwitterIconProps) => (
+
+)
+
+const Verified = ({ className, ...props }: TwitterIconProps) => (
+
+)
+
+export const truncate = (str: string | null, length: number) => {
+ if (!str || str.length <= length) return str
+ return `${str.slice(0, length - 3)}...`
+}
+
+const Skeleton = ({
+ className,
+ ...props
+}: React.HTMLAttributes) => {
+ return (
+
+ )
+}
+
+export const TweetSkeleton = ({
+ className,
+ ...props
+}: {
+ className?: string
+ [key: string]: unknown
+}) => (
+
+)
+
+export const TweetNotFound = ({
+ className,
+ ...props
+}: {
+ className?: string
+ [key: string]: unknown
+}) => (
+
+
Tweet not found
+
+)
+
+export const TweetHeader = ({ tweet }: { tweet: EnrichedTweet }) => (
+
+)
+
+export const TweetBody = ({ tweet }: { tweet: EnrichedTweet }) => (
+
+ {tweet.entities.map((entity, idx) => {
+ switch (entity.type) {
+ case 'url':
+ case 'symbol':
+ case 'hashtag':
+ case 'mention':
+ return (
+
+ {entity.text}
+
+ )
+ case 'text':
+ return (
+
+ )
+ }
+ })}
+
+)
+
+export const TweetMedia = ({ tweet }: { tweet: EnrichedTweet }) => {
+ if (!tweet.video && !tweet.photos) return null
+ return (
+
+ {tweet.video && (
+
+ )}
+ {tweet.photos && (
+
+
+ {tweet.photos.map((photo) => (
+

+ ))}
+
+
+ )}
+ {!tweet.video &&
+ !tweet.photos &&
+ // @ts-ignore
+ tweet?.card?.binding_values?.thumbnail_image_large?.image_value.url && (
+

+ )}
+
+ )
+}
+
+export const MagicTweet = ({
+ tweet,
+ components,
+ className,
+ ...props
+}: {
+ tweet: Tweet
+ components?: TwitterComponents
+ className?: string
+}) => {
+ const enrichedTweet = enrichTweet(tweet)
+ return (
+
+
+
+ {/* */}
+
+ )
+}
+
+/**
+ * TweetCard (Server Side Only)
+ */
+export const TweetCard = async ({
+ id,
+ components,
+ fallback = ,
+ onError,
+ ...props
+}: TweetProps & {
+ className?: string
+}) => {
+ const tweet = id
+ ? await getTweet(id).catch((err) => {
+ if (onError) {
+ onError(err)
+ } else {
+ console.error(err)
+ }
+ })
+ : undefined
+
+ if (!tweet) {
+ const NotFound = components?.TweetNotFound || TweetNotFound
+ return
+ }
+
+ return (
+
+
+
+ )
+}
+
+export const ClientTweetCard = ({
+ id,
+ apiUrl,
+ fallback = ,
+ components,
+ fetchOptions,
+ onError,
+ ...props
+}: TweetProps & { className?: string }) => {
+ const { data, error, isLoading } = useTweet(id, apiUrl, fetchOptions)
+ if (isLoading) return fallback
+ if (error || !data) {
+ const NotFound = components?.TweetNotFound || TweetNotFound
+ return
+ }
+ return
+}
diff --git a/docs/src/lib/utils.ts b/docs/src/lib/utils.ts
new file mode 100644
index 000000000..fed2fe91e
--- /dev/null
+++ b/docs/src/lib/utils.ts
@@ -0,0 +1,6 @@
+import { clsx, type ClassValue } from 'clsx'
+import { twMerge } from 'tailwind-merge'
+
+export function cn(...inputs: ClassValue[]) {
+ return twMerge(clsx(inputs))
+}
diff --git a/docs/src/pages/_meta.json b/docs/src/pages/_meta.json
index d095500f4..5d0a283c8 100644
--- a/docs/src/pages/_meta.json
+++ b/docs/src/pages/_meta.json
@@ -21,6 +21,16 @@
"title": "Integrations",
"display": "hidden"
},
+ "api-reference": {
+ "type": "page",
+ "title": "API reference",
+ "display": "hidden"
+ },
+ "handbook": {
+ "type": "page",
+ "title": "Handbook",
+ "display": "hidden"
+ },
"changelog": {
"type": "page",
"title": "Changelog",
@@ -40,7 +50,6 @@
"title": "Post Categories",
"display": "hidden"
},
-
"download": {
"type": "page",
"theme": {
diff --git a/docs/src/pages/api-reference/_meta.json b/docs/src/pages/api-reference/_meta.json
new file mode 100644
index 000000000..b1ea1c4c5
--- /dev/null
+++ b/docs/src/pages/api-reference/_meta.json
@@ -0,0 +1,20 @@
+{
+ "get-started-separator": {
+ "title": "Get started",
+ "type": "separator"
+ },
+ "index": "Overview",
+ "installation": "Installation",
+ "configuration": "Configuration",
+ "core-concepts-separator": {
+ "title": "Core concepts",
+ "type": "separator"
+ },
+ "api-reference": "API Reference",
+ "resource-separator": {
+ "title": "Resources",
+ "type": "separator"
+ },
+ "architecture": "Architecture",
+ "development": "Development"
+}
diff --git a/docs/src/pages/api-reference/api-reference.mdx b/docs/src/pages/api-reference/api-reference.mdx
new file mode 100644
index 000000000..662127638
--- /dev/null
+++ b/docs/src/pages/api-reference/api-reference.mdx
@@ -0,0 +1,378 @@
+---
+title: API Reference
+description: Complete API documentation for Jan Server endpoints and OpenAI compatibility.
+---
+
+## Base URL
+
+All API endpoints are available at the API gateway base URL:
+
+```
+http://localhost:8080/api/v1
+```
+
+The API gateway automatically forwards port 8080 when using the standard deployment scripts.
+
+## Authentication
+
+Jan Server supports multiple authentication methods:
+
+### JWT Token Authentication
+
+Include JWT token in the Authorization header:
+
+```bash
+curl -H "Authorization: Bearer " \
+ http://localhost:8080/api/v1/protected-endpoint
+```
+
+### API Key Authentication
+
+Include API key in the Authorization header:
+
+```bash
+curl -H "Authorization: Bearer " \
+ http://localhost:8080/api/v1/protected-endpoint
+```
+
+## OpenAI-Compatible Endpoints
+
+Jan Server implements OpenAI-compatible endpoints for seamless integration with existing tools.
+
+### Chat Completions
+
+**Endpoint**: `POST /api/v1/chat/completions`
+
+Standard OpenAI chat completions API for conversational AI.
+
+```bash
+curl -X POST http://localhost:8080/api/v1/chat/completions \
+ -H "Content-Type: application/json" \
+ -H "Authorization: Bearer " \
+ -d '{
+ "model": "jan-v1-4b",
+ "messages": [
+ {"role": "user", "content": "Hello, how are you?"}
+ ],
+ "max_tokens": 100,
+ "temperature": 0.7
+ }'
+```
+
+**Parameters:**
+- `model` (string): Model identifier (`jan-v1-4b`)
+- `messages` (array): Conversation history
+- `max_tokens` (integer): Maximum response tokens
+- `temperature` (float): Response randomness (0.0 to 2.0)
+- `stream` (boolean): Enable streaming responses
+
+### Model Information
+
+**Endpoint**: `GET /api/v1/models`
+
+List available models:
+
+```bash
+curl http://localhost:8080/api/v1/models
+```
+
+**Response:**
+```json
+{
+ "object": "list",
+ "data": [
+ {
+ "id": "jan-v1-4b",
+ "object": "model",
+ "created": 1234567890,
+ "owned_by": "jan"
+ }
+ ]
+}
+```
+
+### Completions (Text Generation)
+
+**Endpoint**: `POST /api/v1/completions`
+
+Text completion endpoint:
+
+```bash
+curl -X POST http://localhost:8080/api/v1/completions \
+ -H "Content-Type: application/json" \
+ -H "Authorization: Bearer " \
+ -d '{
+ "model": "jan-v1-4b",
+ "prompt": "The meaning of life is",
+ "max_tokens": 50
+ }'
+```
+
+## Authentication Endpoints
+
+### OAuth2 Google Login
+
+**Endpoint**: `GET /auth/google`
+
+Redirects to Google OAuth2 authorization:
+
+```bash
+curl http://localhost:8080/auth/google
+```
+
+### OAuth2 Callback
+
+**Endpoint**: `GET /auth/google/callback`
+
+Handles OAuth2 callback and issues JWT token:
+
+```
+http://localhost:8080/auth/google/callback?code=&state=
+```
+
+### Token Refresh
+
+**Endpoint**: `POST /api/v1/auth/refresh`
+
+Refresh expired JWT tokens:
+
+```bash
+curl -X POST http://localhost:8080/api/v1/auth/refresh \
+ -H "Authorization: Bearer "
+```
+
+## User Management
+
+### User Profile
+
+**Endpoint**: `GET /api/v1/user/profile`
+
+Get current user profile:
+
+```bash
+curl -H "Authorization: Bearer " \
+ http://localhost:8080/api/v1/user/profile
+```
+
+### API Keys
+
+**Endpoint**: `POST /api/v1/user/api-keys`
+
+Generate new API key:
+
+```bash
+curl -X POST http://localhost:8080/api/v1/user/api-keys \
+ -H "Authorization: Bearer " \
+ -H "Content-Type: application/json" \
+ -d '{
+ "name": "Development Key",
+ "permissions": ["read", "write"]
+ }'
+```
+
+## Conversation Management
+
+### Create Conversation
+
+**Endpoint**: `POST /api/v1/conversations`
+
+Create new conversation:
+
+```bash
+curl -X POST http://localhost:8080/api/v1/conversations \
+ -H "Authorization: Bearer " \
+ -H "Content-Type: application/json" \
+ -d '{
+ "title": "My Conversation",
+ "model": "jan-v1-4b"
+ }'
+```
+
+### List Conversations
+
+**Endpoint**: `GET /api/v1/conversations`
+
+Get user's conversations:
+
+```bash
+curl -H "Authorization: Bearer " \
+ http://localhost:8080/api/v1/conversations
+```
+
+### Get Conversation
+
+**Endpoint**: `GET /api/v1/conversations/{id}`
+
+Get specific conversation with message history:
+
+```bash
+curl -H "Authorization: Bearer " \
+ http://localhost:8080/api/v1/conversations/123
+```
+
+## Health and Status
+
+### Health Check
+
+**Endpoint**: `GET /health`
+
+Basic health check:
+
+```bash
+curl http://localhost:8080/health
+```
+
+**Response:**
+```json
+{
+ "status": "ok",
+ "timestamp": "2024-01-01T12:00:00Z"
+}
+```
+
+### System Status
+
+**Endpoint**: `GET /api/v1/status`
+
+Detailed system status:
+
+```bash
+curl -H "Authorization: Bearer " \
+ http://localhost:8080/api/v1/status
+```
+
+**Response:**
+```json
+{
+ "api_gateway": "healthy",
+ "inference_model": "healthy",
+ "database": "healthy",
+ "external_apis": {
+ "serper": "healthy"
+ }
+}
+```
+
+## Error Responses
+
+Jan Server returns standard HTTP status codes and JSON error responses:
+
+```json
+{
+ "error": {
+ "message": "Invalid request format",
+ "type": "invalid_request_error",
+ "code": "invalid_json"
+ }
+}
+```
+
+### Common Error Codes
+
+| Status Code | Description |
+|-------------|-------------|
+| `400` | Bad Request - Invalid request format |
+| `401` | Unauthorized - Invalid or missing authentication |
+| `403` | Forbidden - Insufficient permissions |
+| `404` | Not Found - Resource not found |
+| `429` | Too Many Requests - Rate limit exceeded |
+| `500` | Internal Server Error - Server error |
+| `503` | Service Unavailable - Service temporarily unavailable |
+
+## Interactive Documentation
+
+Jan Server provides interactive Swagger documentation at:
+
+```
+http://localhost:8080/api/swagger/index.html#/
+```
+
+This interface allows you to:
+- Browse all available endpoints
+- Test API calls directly from the browser
+- View request/response schemas
+- Generate code samples
+
+The Swagger documentation is auto-generated from Go code annotations and provides the most up-to-date API reference.
+
+## Rate Limiting
+
+API endpoints implement rate limiting to prevent abuse:
+
+- **Authenticated requests**: 1000 requests per hour per user
+- **Unauthenticated requests**: 100 requests per hour per IP
+- **Model inference**: 60 requests per minute per user
+
+Rate limit headers are included in responses:
+```
+X-RateLimit-Limit: 1000
+X-RateLimit-Remaining: 999
+X-RateLimit-Reset: 1609459200
+```
+
+## SDK and Client Libraries
+
+### JavaScript/Node.js
+
+Use the OpenAI JavaScript SDK with Jan Server:
+
+```javascript
+import OpenAI from 'openai';
+
+const openai = new OpenAI({
+ baseURL: 'http://localhost:8080/api/v1',
+ apiKey: 'your-jwt-token'
+});
+
+const completion = await openai.chat.completions.create({
+ model: 'jan-v1-4b',
+ messages: [
+ { role: 'user', content: 'Hello!' }
+ ]
+});
+```
+
+### Python
+
+Use the OpenAI Python SDK:
+
+```python
+import openai
+
+openai.api_base = "http://localhost:8080/api/v1"
+openai.api_key = "your-jwt-token"
+
+response = openai.ChatCompletion.create(
+ model="jan-v1-4b",
+ messages=[
+ {"role": "user", "content": "Hello!"}
+ ]
+)
+```
+
+### cURL Examples
+
+Complete cURL examples for common operations:
+
+```bash
+# Get models
+curl http://localhost:8080/api/v1/models
+
+# Chat completion
+curl -X POST http://localhost:8080/api/v1/chat/completions \
+ -H "Content-Type: application/json" \
+ -d '{
+ "model": "jan-v1-4b",
+ "messages": [{"role": "user", "content": "Hello"}]
+ }'
+
+# Streaming chat completion
+curl -X POST http://localhost:8080/api/v1/chat/completions \
+ -H "Content-Type: application/json" \
+ -d '{
+ "model": "jan-v1-4b",
+ "messages": [{"role": "user", "content": "Tell me a story"}],
+ "stream": true
+ }' \
+ --no-buffer
+```
diff --git a/docs/src/pages/api-reference/architecture.mdx b/docs/src/pages/api-reference/architecture.mdx
new file mode 100644
index 000000000..03dc1b363
--- /dev/null
+++ b/docs/src/pages/api-reference/architecture.mdx
@@ -0,0 +1,191 @@
+---
+title: Architecture
+description: Technical architecture and system design of Jan Server components.
+---
+
+## System Overview
+
+Jan Server implements a microservices architecture on Kubernetes with three core components communicating over HTTP and managed by Helm charts.
+
+```mermaid
+graph TD
+ Client[Client/Browser] --> Gateway[jan-api-gateway:8080]
+ Gateway --> Model[jan-inference-model:8101]
+ Gateway --> DB[(PostgreSQL:5432)]
+ Gateway --> Serper[Serper API]
+ Gateway --> OAuth[Google OAuth2]
+```
+
+## Components
+
+### API Gateway (`jan-api-gateway`)
+
+**Technology Stack:**
+- **Language**: Go 1.24.6
+- **Framework**: Gin web framework
+- **ORM**: GORM with PostgreSQL driver
+- **DI**: Google Wire for dependency injection
+- **Documentation**: Swagger/OpenAPI auto-generated
+
+**Responsibilities:**
+- HTTP request routing and middleware
+- User authentication via JWT and OAuth2
+- Database operations and data persistence
+- External API integration (Serper, Google OAuth)
+- OpenAI-compatible API endpoints
+- Request forwarding to inference service
+
+**Key Directories:**
+```
+application/
+├── cmd/server/ # Main entry point and DI wiring
+├── app/ # Core business logic
+├── config/ # Environment variables and settings
+└── docs/ # Auto-generated Swagger docs
+```
+
+### Inference Model (`jan-inference-model`)
+
+**Technology Stack:**
+- **Base Image**: VLLM OpenAI v0.10.0
+- **Model**: Jan-v1-4B (downloaded from Hugging Face)
+- **Protocol**: OpenAI-compatible HTTP API
+- **Features**: Tool calling, reasoning parsing
+
+**Configuration:**
+- **Model Path**: `/models/Jan-v1-4B`
+- **Served Name**: `jan-v1-4b`
+- **Port**: 8101
+- **Batch Tokens**: 1024 max
+- **Tool Parser**: Hermes
+- **Reasoning Parser**: Qwen3
+
+**Capabilities:**
+- Text generation and completion
+- Tool calling and function execution
+- Multi-turn conversations
+- Reasoning and chain-of-thought
+
+### Database (PostgreSQL)
+
+**Configuration:**
+- **Database**: `jan`
+- **User**: `jan-user`
+- **Password**: `jan-password`
+- **Port**: 5432
+
+**Schema:**
+- User accounts and authentication
+- Conversation history
+- Project and organization management
+- API keys and access control
+
+## Data Flow
+
+### Request Processing
+
+1. **Client Request**: HTTP request to API gateway on port 8080
+2. **Authentication**: JWT token validation or OAuth2 flow
+3. **Request Routing**: Gateway routes to appropriate handler
+4. **Database Operations**: GORM queries for user data/state
+5. **Inference Call**: HTTP request to model service on port 8101
+6. **Response Assembly**: Gateway combines results and returns to client
+
+### Authentication Flow
+
+**JWT Authentication:**
+1. User provides credentials
+2. Gateway validates against database
+3. JWT token issued with HMAC-SHA256 signing
+4. Subsequent requests include JWT in Authorization header
+
+**OAuth2 Flow:**
+1. Client redirected to Google OAuth2
+2. Authorization code returned to redirect URL
+3. Gateway exchanges code for access token
+4. User profile retrieved from Google
+5. Local JWT token issued
+
+## Deployment Architecture
+
+### Kubernetes Resources
+
+**Deployments:**
+- `jan-api-gateway`: Single replica Go application
+- `jan-inference-model`: Single replica VLLM server
+- `postgresql`: StatefulSet with persistent storage
+
+**Services:**
+- `jan-api-gateway`: ClusterIP exposing port 8080
+- `jan-inference-model`: ClusterIP exposing port 8101
+- `postgresql`: ClusterIP exposing port 5432
+
+**Configuration:**
+- Environment variables via Helm values
+- Secrets for sensitive data (JWT keys, OAuth credentials)
+- ConfigMaps for application settings
+
+### Helm Chart Structure
+
+```
+charts/
+├── umbrella-chart/ # Main deployment chart
+│ ├── Chart.yaml
+│ ├── values.yaml # Configuration values
+│ └── Chart.lock
+└── apps-charts/ # Individual service charts
+ ├── jan-api-gateway/
+ └── jan-inference-model/
+```
+
+## Security Architecture
+
+### Authentication Methods
+- **JWT Tokens**: HMAC-SHA256 signed tokens for API access
+- **OAuth2**: Google OAuth2 integration for user login
+- **API Keys**: HMAC-SHA256 signed keys for service access
+
+### Network Security
+- **Internal Communication**: Services communicate over Kubernetes cluster network
+- **External Access**: Only API gateway exposed via port forwarding or ingress
+- **Database Access**: PostgreSQL accessible only within cluster
+
+### Data Security
+- **Secrets Management**: Kubernetes secrets for sensitive configuration
+- **Environment Variables**: Non-sensitive config via environment variables
+- **Database Encryption**: Standard PostgreSQL encryption at rest
+
+Production deployments should implement additional security measures including TLS termination, network policies, and secret rotation.
+
+## Scalability Considerations
+
+**Current Limitations:**
+- Single replica deployments
+- No horizontal pod autoscaling
+- Local storage for database
+
+**Future Enhancements:**
+- Multi-replica API gateway with load balancing
+- Horizontal pod autoscaling based on CPU/memory
+- External database with clustering
+- Redis caching layer
+- Message queue for async processing
+
+## Development Architecture
+
+### Code Generation
+- **Swagger**: API documentation generated from Go annotations
+- **Wire**: Dependency injection code generated from providers
+- **GORM Gen**: Database model generation from schema
+
+### Build Process
+1. **API Gateway**: Multi-stage Docker build with Go compilation
+2. **Inference Model**: Base VLLM image with model download
+3. **Helm Charts**: Dependency management and templating
+4. **Documentation**: Auto-generation during development
+
+### Local Development
+- **Hot Reload**: Source code changes reflected without full rebuild
+- **Database Migrations**: Automated schema updates
+- **API Testing**: Swagger UI for interactive testing
+- **Logging**: Structured logging with configurable levels
diff --git a/docs/src/pages/api-reference/configuration.mdx b/docs/src/pages/api-reference/configuration.mdx
new file mode 100644
index 000000000..cbcba57fd
--- /dev/null
+++ b/docs/src/pages/api-reference/configuration.mdx
@@ -0,0 +1,263 @@
+---
+title: Configuration
+description: Configure Jan Server environment variables, authentication, and external integrations.
+---
+
+## Environment Variables
+
+Jan Server configuration is managed through environment variables defined in the Helm values file at `charts/umbrella-chart/values.yaml`.
+
+### API Gateway Configuration
+
+#### Core Settings
+
+| Variable | Default | Description |
+|----------|---------|-------------|
+| `JAN_INFERENCE_MODEL_URL` | `http://jan-server-jan-inference-model:8101` | Internal URL for inference service |
+
+#### Authentication
+
+| Variable | Purpose | Format |
+|----------|---------|--------|
+| `JWT_SECRET` | JWT token signing | Base64 encoded HMAC-SHA256 key |
+| `APIKEY_SECRET` | API key signing | Base64 encoded HMAC-SHA256 key |
+
+The default JWT and API key secrets are for development only. Generate new secrets for production deployments.
+
+#### OAuth2 Integration
+
+| Variable | Description |
+|----------|-------------|
+| `OAUTH2_GOOGLE_CLIENT_ID` | Google OAuth2 application client ID |
+| `OAUTH2_GOOGLE_CLIENT_SECRET` | Google OAuth2 application secret |
+| `OAUTH2_GOOGLE_REDIRECT_URL` | Callback URL for OAuth2 flow |
+
+#### External APIs
+
+| Variable | Provider | Purpose |
+|----------|----------|---------|
+| `SERPER_API_KEY` | Serper | Web search integration |
+
+#### Database Connection
+
+| Variable | Default | Description |
+|----------|---------|-------------|
+| `DB_POSTGRESQL_WRITE_DSN` | `host=jan-server-postgresql user=jan-user password=jan-password dbname=jan port=5432 sslmode=disable` | Write database connection |
+| `DB_POSTGRESQL_READ1_DSN` | `host=jan-server-postgresql user=jan-user password=jan-password dbname=jan port=5432 sslmode=disable` | Read database connection |
+
+## Helm Configuration
+
+### Updating Values
+
+Edit the configuration in `charts/umbrella-chart/values.yaml`:
+
+```yaml
+jan-api-gateway:
+ env:
+ - name: SERPER_API_KEY
+ value: your_serper_api_key
+ - name: OAUTH2_GOOGLE_CLIENT_ID
+ value: your_google_client_id
+ - name: OAUTH2_GOOGLE_CLIENT_SECRET
+ value: your_google_client_secret
+```
+
+### Applying Changes
+
+After modifying values, redeploy the application:
+
+```bash
+helm upgrade jan-server ./charts/umbrella-chart
+```
+
+## Authentication Setup
+
+### JWT Tokens
+
+Generate a secure JWT signing key:
+
+```bash
+# Generate 256-bit key for HMAC-SHA256
+openssl rand -base64 32
+```
+
+Update the `JWT_SECRET` value in your Helm configuration.
+
+### API Keys
+
+Generate a secure API key signing secret:
+
+```bash
+# Generate 256-bit key for HMAC-SHA256
+openssl rand -base64 32
+```
+
+Update the `APIKEY_SECRET` value in your Helm configuration.
+
+### Google OAuth2
+
+1. **Create Google Cloud Project**
+ - Go to [Google Cloud Console](https://console.cloud.google.com)
+ - Create a new project or select existing
+
+2. **Enable OAuth2**
+ - Navigate to "APIs & Services" > "Credentials"
+ - Create OAuth2 client ID credentials
+ - Set application type to "Web application"
+
+3. **Configure Redirect URI**
+ ```
+ http://localhost:8080/auth/google/callback
+ ```
+
+4. **Update Configuration**
+ - Set `OAUTH2_GOOGLE_CLIENT_ID` to your client ID
+ - Set `OAUTH2_GOOGLE_CLIENT_SECRET` to your client secret
+ - Set `OAUTH2_GOOGLE_REDIRECT_URL` to your callback URL
+
+## External Integrations
+
+### Serper API
+
+Jan Server integrates with Serper for web search capabilities.
+
+1. **Get API Key**
+ - Register at [serper.dev](https://serper.dev)
+ - Generate API key from dashboard
+
+2. **Configure**
+ - Set `SERPER_API_KEY` in Helm values
+ - Redeploy the application
+
+### Adding New Integrations
+
+To add new external API integrations:
+
+1. **Update Helm Values**
+ ```yaml
+ jan-api-gateway:
+ env:
+ - name: YOUR_API_KEY
+ value: your_api_key_value
+ ```
+
+2. **Update Go Configuration**
+
+ Add to `config/environment_variables/env.go`:
+ ```go
+ YourAPIKey string `env:"YOUR_API_KEY"`
+ ```
+
+3. **Redeploy**
+ ```bash
+ helm upgrade jan-server ./charts/umbrella-chart
+ ```
+
+## Database Configuration
+
+### Connection Settings
+
+The default PostgreSQL configuration uses:
+- **Host**: `jan-server-postgresql` (Kubernetes service name)
+- **Database**: `jan`
+- **User**: `jan-user`
+- **Password**: `jan-password`
+- **Port**: `5432`
+- **SSL**: Disabled (development only)
+
+### Production Database
+
+For production deployments:
+
+1. **External Database**
+ - Use managed PostgreSQL service (AWS RDS, Google Cloud SQL)
+ - Update DSN variables with external connection details
+
+2. **SSL/TLS**
+ - Enable `sslmode=require` in connection strings
+ - Configure certificate validation
+
+3. **Connection Pooling**
+ - Consider using connection pooler (PgBouncer, pgpool-II)
+ - Configure appropriate pool sizes
+
+## Model Configuration
+
+The inference model service is configured via Docker CMD parameters:
+
+```dockerfile
+CMD ["--model", "/models/Jan-v1-4B", \
+ "--served-model-name", "jan-v1-4b", \
+ "--host", "0.0.0.0", \
+ "--port", "8101", \
+ "--max-num-batched-tokens", "1024", \
+ "--enable-auto-tool-choice", \
+ "--tool-call-parser", "hermes", \
+ "--reasoning-parser", "qwen3"]
+```
+
+### Model Parameters
+
+| Parameter | Value | Description |
+|-----------|-------|-------------|
+| `--model` | `/models/Jan-v1-4B` | Path to model files |
+| `--served-model-name` | `jan-v1-4b` | API model identifier |
+| `--max-num-batched-tokens` | `1024` | Maximum tokens per batch |
+| `--tool-call-parser` | `hermes` | Tool calling format |
+| `--reasoning-parser` | `qwen3` | Reasoning output format |
+
+Model configuration changes require rebuilding the inference Docker image. This will be configurable via environment variables in future releases.
+
+## Resource Configuration
+
+### Kubernetes Resources
+
+Current deployments use default resource limits. For production:
+
+```yaml
+jan-api-gateway:
+ resources:
+ requests:
+ cpu: 100m
+ memory: 128Mi
+ limits:
+ cpu: 500m
+ memory: 512Mi
+
+jan-inference-model:
+ resources:
+ requests:
+ cpu: 1000m
+ memory: 4Gi
+ limits:
+ cpu: 4000m
+ memory: 8Gi
+```
+
+### Storage
+
+PostgreSQL uses default Kubernetes storage. For production:
+
+```yaml
+postgresql:
+ persistence:
+ enabled: true
+ size: 20Gi
+ storageClass: fast-ssd
+```
+
+## Logging Configuration
+
+Configure logging levels via environment variables:
+
+```yaml
+jan-api-gateway:
+ env:
+ - name: LOG_LEVEL
+ value: info
+ - name: LOG_FORMAT
+ value: json
+```
+
+Available log levels: `debug`, `info`, `warn`, `error`
+Available formats: `text`, `json`
diff --git a/docs/src/pages/api-reference/development.mdx b/docs/src/pages/api-reference/development.mdx
new file mode 100644
index 000000000..c773a2891
--- /dev/null
+++ b/docs/src/pages/api-reference/development.mdx
@@ -0,0 +1,445 @@
+---
+title: Development
+description: Development setup, workflow, and contribution guidelines for Jan Server.
+---
+
+## Development Setup
+
+### Prerequisites
+
+- **Go**: 1.24.6 or later
+- **Docker**: For containerization
+- **minikube**: Local Kubernetes development
+- **Helm**: Package management
+- **Make**: Build automation
+
+### Initial Setup
+
+
+1. **Clone Repository**
+ ```bash
+ git clone https://github.com/menloresearch/jan-server
+ cd jan-server
+ ```
+
+2. **Install Development Tools**
+ ```bash
+ cd apps/jan-api-gateway/application
+ make install
+ ```
+
+3. **Generate Code**
+ ```bash
+ make setup
+ ```
+
+4. **Start Development Environment**
+ ```bash
+ # From project root
+ ./scripts/run.sh
+ ```
+
+## API Gateway Development
+
+### Project Structure
+
+```
+apps/jan-api-gateway/application/
+├── cmd/server/ # Entry point and dependency injection
+│ ├── server.go # Main server setup
+│ ├── wire.go # DI configuration
+│ └── wire_gen.go # Generated DI code
+├── app/ # Core application logic
+│ ├── domain/ # Business entities
+│ ├── repository/ # Data access layer
+│ ├── service/ # Business logic
+│ └── handler/ # HTTP handlers
+├── config/ # Configuration management
+└── docs/ # Generated API documentation
+```
+
+### Build Commands
+
+```bash
+# Install development dependencies
+make install
+
+# Generate API documentation
+make doc
+
+# Generate dependency injection code
+make wire
+
+# Complete setup (doc + wire)
+make setup
+
+# Build application
+go build -o jan-api-gateway ./cmd/server
+```
+
+### Code Generation
+
+Jan Server uses code generation for several components:
+
+**Swagger Documentation:**
+```bash
+# Generates docs/swagger.json and docs/swagger.yaml
+swag init --parseDependency -g cmd/server/server.go -o docs
+```
+
+**Dependency Injection:**
+```bash
+# Generates wire_gen.go from wire.go providers
+wire ./cmd/server
+```
+
+**Database Models:**
+```bash
+# Generate GORM models (when schema changes)
+go run cmd/codegen/gorm/gorm.go
+```
+
+### Local Development
+
+#### Running API Gateway Locally
+
+```bash
+cd apps/jan-api-gateway/application
+
+# Set environment variables
+export JAN_INFERENCE_MODEL_URL=http://localhost:8101
+export JWT_SECRET=your-jwt-secret
+export DB_POSTGRESQL_WRITE_DSN="host=localhost user=jan-user password=jan-password dbname=jan port=5432 sslmode=disable"
+
+# Run the server
+go run ./cmd/server
+```
+
+#### Database Setup
+
+For local development, you can run PostgreSQL directly:
+
+```bash
+# Using Docker
+docker run -d \
+ --name jan-postgres \
+ -e POSTGRES_DB=jan \
+ -e POSTGRES_USER=jan-user \
+ -e POSTGRES_PASSWORD=jan-password \
+ -p 5432:5432 \
+ postgres:14
+```
+
+## Testing
+
+### Running Tests
+
+```bash
+# Run all tests
+go test ./...
+
+# Run tests with coverage
+go test -cover ./...
+
+# Run specific test package
+go test ./app/service/...
+```
+
+### Test Structure
+
+```
+app/
+├── service/
+│ ├── auth_service.go
+│ ├── auth_service_test.go
+│ ├── conversation_service.go
+│ └── conversation_service_test.go
+└── handler/
+ ├── auth_handler.go
+ ├── auth_handler_test.go
+ ├── chat_handler.go
+ └── chat_handler_test.go
+```
+
+### Writing Tests
+
+Example service test:
+
+```go
+func TestAuthService_ValidateToken(t *testing.T) {
+ // Setup
+ service := NewAuthService(mockRepo, mockConfig)
+
+ // Test cases
+ tests := []struct {
+ name string
+ token string
+ expectValid bool
+ expectError bool
+ }{
+ {"valid token", "valid.jwt.token", true, false},
+ {"invalid token", "invalid.token", false, true},
+ }
+
+ for _, tt := range tests {
+ t.Run(tt.name, func(t *testing.T) {
+ valid, err := service.ValidateToken(tt.token)
+ assert.Equal(t, tt.expectValid, valid)
+ assert.Equal(t, tt.expectError, err != nil)
+ })
+ }
+}
+```
+
+## Docker Development
+
+### Building Images
+
+```bash
+# Build API gateway
+docker build -t jan-api-gateway:dev ./apps/jan-api-gateway
+
+# Build inference model
+docker build -t jan-inference-model:dev ./apps/jan-inference-model
+```
+
+### Development Compose
+
+For local development without Kubernetes:
+
+```yaml
+# docker-compose.dev.yml
+version: '3.8'
+services:
+ postgres:
+ image: postgres:14
+ environment:
+ POSTGRES_DB: jan
+ POSTGRES_USER: jan-user
+ POSTGRES_PASSWORD: jan-password
+ ports:
+ - "5432:5432"
+
+ api-gateway:
+ build: ./apps/jan-api-gateway
+ ports:
+ - "8080:8080"
+ environment:
+ - JAN_INFERENCE_MODEL_URL=http://inference-model:8101
+ - DB_POSTGRESQL_WRITE_DSN=host=postgres user=jan-user password=jan-password dbname=jan port=5432 sslmode=disable
+ depends_on:
+ - postgres
+
+ inference-model:
+ build: ./apps/jan-inference-model
+ ports:
+ - "8101:8101"
+```
+
+## Debugging
+
+### Go Debugging
+
+For VS Code debugging, add to `.vscode/launch.json`:
+
+```json
+{
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "Launch Jan API Gateway",
+ "type": "go",
+ "request": "launch",
+ "mode": "auto",
+ "program": "${workspaceFolder}/apps/jan-api-gateway/application/cmd/server",
+ "env": {
+ "JAN_INFERENCE_MODEL_URL": "http://localhost:8101",
+ "JWT_SECRET": "development-secret"
+ }
+ }
+ ]
+}
+```
+
+### Application Logs
+
+```bash
+# View API gateway logs
+kubectl logs deployment/jan-server-jan-api-gateway -f
+
+# View inference model logs
+kubectl logs deployment/jan-server-jan-inference-model -f
+
+# View PostgreSQL logs
+kubectl logs statefulset/jan-server-postgresql -f
+```
+
+### Log Levels
+
+Set log level via environment variable:
+
+```bash
+export LOG_LEVEL=debug # debug, info, warn, error
+```
+
+## Code Style and Standards
+
+### Go Standards
+
+- Follow [Go Code Review Comments](https://go.dev/wiki/CodeReviewComments)
+- Use `gofmt` for formatting
+- Run `go vet` for static analysis
+- Use meaningful variable and function names
+
+### API Standards
+
+- RESTful endpoint design
+- OpenAPI/Swagger annotations for all endpoints
+- Consistent error response format
+- Proper HTTP status codes
+
+### Git Workflow
+
+```bash
+# Create feature branch
+git checkout -b feature/your-feature-name
+
+# Make changes and commit
+git add .
+git commit -m "feat: add new authentication endpoint"
+
+# Push and create PR
+git push origin feature/your-feature-name
+```
+
+### Commit Message Format
+
+Follow conventional commits:
+
+```
+feat: add new feature
+fix: resolve bug in authentication
+docs: update API documentation
+test: add unit tests for service layer
+refactor: improve error handling
+```
+
+## Performance Testing
+
+### Load Testing
+
+Use [k6](https://k6.io) for API load testing:
+
+```javascript
+// load-test.js
+import http from 'k6/http';
+
+export default function () {
+ const response = http.post('http://localhost:8080/api/v1/chat/completions', {
+ model: 'jan-v1-4b',
+ messages: [
+ { role: 'user', content: 'Hello!' }
+ ]
+ }, {
+ headers: {
+ 'Content-Type': 'application/json',
+ 'Authorization': 'Bearer your-token'
+ }
+ });
+
+ check(response, {
+ 'status is 200': (r) => r.status === 200,
+ 'response time < 5000ms': (r) => r.timings.duration < 5000,
+ });
+}
+```
+
+Run load test:
+```bash
+k6 run --vus 10 --duration 30s load-test.js
+```
+
+### Memory Profiling
+
+Enable Go profiling endpoints:
+
+```go
+import _ "net/http/pprof"
+
+// In main.go
+go func() {
+ log.Println(http.ListenAndServe("localhost:6060", nil))
+}()
+```
+
+Profile memory usage:
+```bash
+go tool pprof http://localhost:6060/debug/pprof/heap
+```
+
+## Contributing
+
+### Pull Request Process
+
+1. **Fork the repository**
+2. **Create feature branch** from `main`
+3. **Make changes** following code standards
+4. **Add tests** for new functionality
+5. **Update documentation** if needed
+6. **Submit pull request** with clear description
+
+### Code Review Checklist
+
+- [ ] Code follows Go standards
+- [ ] Tests added for new features
+- [ ] Documentation updated
+- [ ] API endpoints have Swagger annotations
+- [ ] No breaking changes without version bump
+- [ ] Security considerations addressed
+
+### Issues and Bug Reports
+
+When reporting bugs, include:
+
+- **Environment**: OS, Go version, minikube version
+- **Steps to reproduce**: Clear, minimal reproduction steps
+- **Expected behavior**: What should happen
+- **Actual behavior**: What actually happens
+- **Logs**: Relevant error messages or logs
+
+For security issues, please report privately to the maintainers instead of creating public issues.
+
+## Release Process
+
+### Version Management
+
+Jan Server uses semantic versioning (semver):
+
+- **Major**: Breaking changes
+- **Minor**: New features, backward compatible
+- **Patch**: Bug fixes, backward compatible
+
+### Building Releases
+
+```bash
+# Tag release
+git tag -a v1.2.3 -m "Release v1.2.3"
+
+# Build release images
+docker build -t jan-api-gateway:v1.2.3 ./apps/jan-api-gateway
+docker build -t jan-inference-model:v1.2.3 ./apps/jan-inference-model
+
+# Push tags
+git push origin v1.2.3
+```
+
+### Deployment
+
+Production deployments follow the same Helm chart structure:
+
+```bash
+# Deploy specific version
+helm install jan-server ./charts/umbrella-chart \
+ --set jan-api-gateway.image.tag=v1.2.3 \
+ --set jan-inference-model.image.tag=v1.2.3
+```
diff --git a/docs/src/pages/api-reference/index.mdx b/docs/src/pages/api-reference/index.mdx
new file mode 100644
index 000000000..de595e5dc
--- /dev/null
+++ b/docs/src/pages/api-reference/index.mdx
@@ -0,0 +1,39 @@
+---
+title: Jan Server
+description: Self-hosted AI infrastructure running the Jan platform on Kubernetes.
+keywords:
+ [
+ Jan Server,
+ self-hosted AI,
+ Kubernetes deployment,
+ Docker containers,
+ AI inference,
+ local LLM server,
+ VLLM,
+ Go API gateway,
+ Jan-v1 model
+ ]
+---
+
+## Self-Hosted Jan Platform
+
+Jan Server deploys the Jan AI platform on your own infrastructure using Kubernetes. It provides a complete AI inference stack with API gateway, model serving, and data persistence.
+
+Jan Server is in early development. APIs and deployment methods may change.
+
+## Architecture Overview
+
+Jan Server consists of two main components:
+
+- **API Gateway**: Go application handling authentication, web requests, and external integrations
+- **Inference Model**: VLLM server running the Jan-v1-4B model for AI inference
+- **PostgreSQL**: Database for user data, conversations, and system state
+
+## Key Features
+
+- **Kubernetes Native**: Deploys via Helm charts with minikube support
+- **Jan-v1 Model**: 4B parameter model optimized for reasoning and tool use
+- **OpenAI Compatible API**: Standard endpoints for integration
+- **Authentication**: JWT tokens and OAuth2 Google integration
+- **External Integrations**: Serper API for web search capabilities
+- **Development Ready**: Local development environment with hot reload
diff --git a/docs/src/pages/api-reference/installation.mdx b/docs/src/pages/api-reference/installation.mdx
new file mode 100644
index 000000000..de0609a08
--- /dev/null
+++ b/docs/src/pages/api-reference/installation.mdx
@@ -0,0 +1,151 @@
+---
+title: Installation
+description: Install and deploy Jan Server on Kubernetes using minikube and Helm.
+---
+
+## Prerequisites
+
+Jan Server requires the following tools installed on your system:
+
+- **Docker**: For building container images
+- **minikube**: Local Kubernetes cluster for development
+- **Helm**: Package manager for Kubernetes applications
+- **kubectl**: Kubernetes command-line tool (installed with minikube)
+
+Jan Server currently supports minikube for local development. Production Kubernetes deployments are planned for future releases.
+
+## Quick Start
+
+
+1. **Clone the repository**
+ ```bash
+ git clone https://github.com/menloresearch/jan-server
+ cd jan-server
+ ```
+
+2. **Start minikube**
+ ```bash
+ minikube start
+ ```
+
+3. **Configure Docker environment**
+ ```bash
+ eval $(minikube docker-env)
+ alias kubectl="minikube kubectl --"
+ ```
+
+4. **Deploy Jan Server**
+ ```bash
+ ./scripts/run.sh
+ ```
+
+5. **Access the API**
+
+ The script automatically forwards port 8080. Access the Swagger UI at:
+ ```
+ http://localhost:8080/api/swagger/index.html#/
+ ```
+
+
+## Manual Installation
+
+### Build Docker Images
+
+Build both required Docker images:
+
+```bash
+# Build API Gateway
+docker build -t jan-api-gateway:latest ./apps/jan-api-gateway
+
+# Build Inference Model
+docker build -t jan-inference-model:latest ./apps/jan-inference-model
+```
+
+The inference model image downloads the Jan-v1-4B model from Hugging Face during build. This requires an internet connection and several GB of download.
+
+### Deploy with Helm
+
+Install the Helm chart:
+
+```bash
+# Update Helm dependencies
+helm dependency update ./charts/umbrella-chart
+
+# Install Jan Server
+helm install jan-server ./charts/umbrella-chart
+```
+
+### Port Forwarding
+
+Forward the API gateway port to access from your local machine:
+
+```bash
+kubectl port-forward svc/jan-server-jan-api-gateway 8080:8080
+```
+
+## Verify Installation
+
+Check that all pods are running:
+
+```bash
+kubectl get pods
+```
+
+Expected output:
+```
+NAME READY STATUS RESTARTS
+jan-server-jan-api-gateway-xxx 1/1 Running 0
+jan-server-jan-inference-model-xxx 1/1 Running 0
+jan-server-postgresql-0 1/1 Running 0
+```
+
+Test the API gateway:
+```bash
+curl http://localhost:8080/health
+```
+
+## Uninstalling
+
+To remove Jan Server:
+
+```bash
+helm uninstall jan-server
+```
+
+To stop minikube:
+
+```bash
+minikube stop
+```
+
+## Troubleshooting
+
+### Common Issues
+
+**Pods in `ImagePullBackOff` state**
+- Ensure Docker images were built in the minikube environment
+- Run `eval $(minikube docker-env)` before building images
+
+**Port forwarding connection refused**
+- Verify the service is running: `kubectl get svc`
+- Check pod status: `kubectl get pods`
+- Review logs: `kubectl logs deployment/jan-server-jan-api-gateway`
+
+**Inference model download fails**
+- Ensure internet connectivity during Docker build
+- The Jan-v1-4B model is approximately 2.4GB
+
+### Resource Requirements
+
+**Minimum System Requirements:**
+- 8GB RAM
+- 20GB free disk space
+- 4 CPU cores
+
+**Recommended System Requirements:**
+- 16GB RAM
+- 50GB free disk space
+- 8 CPU cores
+- GPU support (for faster inference)
+
+The inference model requires significant memory. Ensure your minikube cluster has adequate resources allocated.
diff --git a/docs/src/pages/docs/_meta.json b/docs/src/pages/docs/_meta.json
index 614c01e30..5b6962032 100644
--- a/docs/src/pages/docs/_meta.json
+++ b/docs/src/pages/docs/_meta.json
@@ -3,53 +3,16 @@
"type": "separator",
"title": "Switcher"
},
- "index": "Overview",
- "getting-started-separator": {
- "title": "GETTING STARTED",
- "type": "separator"
- },
- "quickstart": "QuickStart",
- "desktop": "Install 👋 Jan",
- "jan-models": "Models",
- "assistants": "Create Assistants",
- "remote-models": "Cloud Providers",
- "mcp-examples": "Tutorials",
-
- "explanation-separator": {
- "title": "EXPLANATION",
- "type": "separator"
- },
- "llama-cpp": "Local AI Engine",
- "model-parameters": "Model Parameters",
-
- "privacy-policy": {
+ "index": {
"type": "page",
- "display": "hidden",
- "title": "Privacy Policy"
+ "title": "Jan Overview"
},
-
- "advanced-separator": {
- "title": "ADVANCED",
- "type": "separator"
+ "desktop": {
+ "type": "page",
+ "title": "Jan Desktop & Mobile"
},
- "manage-models": "Manage Models",
- "mcp": "Model Context Protocol",
-
- "localserver": {
- "title": "LOCAL SERVER",
- "type": "separator"
- },
- "api-server": "Server Setup",
- "llama-cpp-server": "LlamaCpp Server",
- "server-settings": "Server Settings",
- "server-troubleshooting": "Server Troubleshooting",
- "server-examples": "Integrations",
- "reference-separator": {
- "title": "REFERENCE",
- "type": "separator"
- },
- "settings": "Settings",
- "data-folder": "Jan Data Folder",
- "troubleshooting": "Troubleshooting",
- "privacy": "Privacy"
+ "server": {
+ "type": "page",
+ "title": "Jan Server"
+ }
}
diff --git a/docs/src/pages/docs/_assets/add_assistant.png b/docs/src/pages/docs/desktop/_assets/add_assistant.png
similarity index 100%
rename from docs/src/pages/docs/_assets/add_assistant.png
rename to docs/src/pages/docs/desktop/_assets/add_assistant.png
diff --git a/docs/src/pages/docs/_assets/anthropic.png b/docs/src/pages/docs/desktop/_assets/anthropic.png
similarity index 100%
rename from docs/src/pages/docs/_assets/anthropic.png
rename to docs/src/pages/docs/desktop/_assets/anthropic.png
diff --git a/docs/src/pages/docs/_assets/api-server-logs.png b/docs/src/pages/docs/desktop/_assets/api-server-logs.png
similarity index 100%
rename from docs/src/pages/docs/_assets/api-server-logs.png
rename to docs/src/pages/docs/desktop/_assets/api-server-logs.png
diff --git a/docs/src/pages/docs/_assets/api-server-ui.png b/docs/src/pages/docs/desktop/_assets/api-server-ui.png
similarity index 100%
rename from docs/src/pages/docs/_assets/api-server-ui.png
rename to docs/src/pages/docs/desktop/_assets/api-server-ui.png
diff --git a/docs/src/pages/docs/_assets/api-server.png b/docs/src/pages/docs/desktop/_assets/api-server.png
similarity index 100%
rename from docs/src/pages/docs/_assets/api-server.png
rename to docs/src/pages/docs/desktop/_assets/api-server.png
diff --git a/docs/src/pages/docs/_assets/api-server2.png b/docs/src/pages/docs/desktop/_assets/api-server2.png
similarity index 100%
rename from docs/src/pages/docs/_assets/api-server2.png
rename to docs/src/pages/docs/desktop/_assets/api-server2.png
diff --git a/docs/src/pages/docs/_assets/assistant-add-dialog.png b/docs/src/pages/docs/desktop/_assets/assistant-add-dialog.png
similarity index 100%
rename from docs/src/pages/docs/_assets/assistant-add-dialog.png
rename to docs/src/pages/docs/desktop/_assets/assistant-add-dialog.png
diff --git a/docs/src/pages/docs/_assets/assistant-dropdown-updated.png b/docs/src/pages/docs/desktop/_assets/assistant-dropdown-updated.png
similarity index 100%
rename from docs/src/pages/docs/_assets/assistant-dropdown-updated.png
rename to docs/src/pages/docs/desktop/_assets/assistant-dropdown-updated.png
diff --git a/docs/src/pages/docs/_assets/assistant-dropdown.png b/docs/src/pages/docs/desktop/_assets/assistant-dropdown.png
similarity index 100%
rename from docs/src/pages/docs/_assets/assistant-dropdown.png
rename to docs/src/pages/docs/desktop/_assets/assistant-dropdown.png
diff --git a/docs/src/pages/docs/_assets/assistant-edit-dialog.png b/docs/src/pages/docs/desktop/_assets/assistant-edit-dialog.png
similarity index 100%
rename from docs/src/pages/docs/_assets/assistant-edit-dialog.png
rename to docs/src/pages/docs/desktop/_assets/assistant-edit-dialog.png
diff --git a/docs/src/pages/docs/_assets/assistants-ui-overview.png b/docs/src/pages/docs/desktop/_assets/assistants-ui-overview.png
similarity index 100%
rename from docs/src/pages/docs/_assets/assistants-ui-overview.png
rename to docs/src/pages/docs/desktop/_assets/assistants-ui-overview.png
diff --git a/docs/src/pages/docs/_assets/browserbase.png b/docs/src/pages/docs/desktop/_assets/browserbase.png
similarity index 100%
rename from docs/src/pages/docs/_assets/browserbase.png
rename to docs/src/pages/docs/desktop/_assets/browserbase.png
diff --git a/docs/src/pages/docs/_assets/browserbase2.png b/docs/src/pages/docs/desktop/_assets/browserbase2.png
similarity index 100%
rename from docs/src/pages/docs/_assets/browserbase2.png
rename to docs/src/pages/docs/desktop/_assets/browserbase2.png
diff --git a/docs/src/pages/docs/_assets/browserbase3.png b/docs/src/pages/docs/desktop/_assets/browserbase3.png
similarity index 100%
rename from docs/src/pages/docs/_assets/browserbase3.png
rename to docs/src/pages/docs/desktop/_assets/browserbase3.png
diff --git a/docs/src/pages/docs/_assets/browserbase4.png b/docs/src/pages/docs/desktop/_assets/browserbase4.png
similarity index 100%
rename from docs/src/pages/docs/_assets/browserbase4.png
rename to docs/src/pages/docs/desktop/_assets/browserbase4.png
diff --git a/docs/src/pages/docs/_assets/browserbase5.png b/docs/src/pages/docs/desktop/_assets/browserbase5.png
similarity index 100%
rename from docs/src/pages/docs/_assets/browserbase5.png
rename to docs/src/pages/docs/desktop/_assets/browserbase5.png
diff --git a/docs/src/pages/docs/_assets/browserbase6.png b/docs/src/pages/docs/desktop/_assets/browserbase6.png
similarity index 100%
rename from docs/src/pages/docs/_assets/browserbase6.png
rename to docs/src/pages/docs/desktop/_assets/browserbase6.png
diff --git a/docs/src/pages/docs/_assets/browserbase7.png b/docs/src/pages/docs/desktop/_assets/browserbase7.png
similarity index 100%
rename from docs/src/pages/docs/_assets/browserbase7.png
rename to docs/src/pages/docs/desktop/_assets/browserbase7.png
diff --git a/docs/src/pages/docs/_assets/canva.png b/docs/src/pages/docs/desktop/_assets/canva.png
similarity index 100%
rename from docs/src/pages/docs/_assets/canva.png
rename to docs/src/pages/docs/desktop/_assets/canva.png
diff --git a/docs/src/pages/docs/_assets/canva3.png b/docs/src/pages/docs/desktop/_assets/canva3.png
similarity index 100%
rename from docs/src/pages/docs/_assets/canva3.png
rename to docs/src/pages/docs/desktop/_assets/canva3.png
diff --git a/docs/src/pages/docs/_assets/canva4.png b/docs/src/pages/docs/desktop/_assets/canva4.png
similarity index 100%
rename from docs/src/pages/docs/_assets/canva4.png
rename to docs/src/pages/docs/desktop/_assets/canva4.png
diff --git a/docs/src/pages/docs/_assets/canva5.png b/docs/src/pages/docs/desktop/_assets/canva5.png
similarity index 100%
rename from docs/src/pages/docs/_assets/canva5.png
rename to docs/src/pages/docs/desktop/_assets/canva5.png
diff --git a/docs/src/pages/docs/_assets/canva6.png b/docs/src/pages/docs/desktop/_assets/canva6.png
similarity index 100%
rename from docs/src/pages/docs/_assets/canva6.png
rename to docs/src/pages/docs/desktop/_assets/canva6.png
diff --git a/docs/src/pages/docs/_assets/canva7.png b/docs/src/pages/docs/desktop/_assets/canva7.png
similarity index 100%
rename from docs/src/pages/docs/_assets/canva7.png
rename to docs/src/pages/docs/desktop/_assets/canva7.png
diff --git a/docs/src/pages/docs/_assets/canva8.png b/docs/src/pages/docs/desktop/_assets/canva8.png
similarity index 100%
rename from docs/src/pages/docs/_assets/canva8.png
rename to docs/src/pages/docs/desktop/_assets/canva8.png
diff --git a/docs/src/pages/docs/_assets/canva9.png b/docs/src/pages/docs/desktop/_assets/canva9.png
similarity index 100%
rename from docs/src/pages/docs/_assets/canva9.png
rename to docs/src/pages/docs/desktop/_assets/canva9.png
diff --git a/docs/src/pages/docs/_assets/chat_jan_v1.png b/docs/src/pages/docs/desktop/_assets/chat_jan_v1.png
similarity index 100%
rename from docs/src/pages/docs/_assets/chat_jan_v1.png
rename to docs/src/pages/docs/desktop/_assets/chat_jan_v1.png
diff --git a/docs/src/pages/docs/_assets/cohere.png b/docs/src/pages/docs/desktop/_assets/cohere.png
similarity index 100%
rename from docs/src/pages/docs/_assets/cohere.png
rename to docs/src/pages/docs/desktop/_assets/cohere.png
diff --git a/docs/src/pages/docs/_assets/creative_bench_jan_v1.png b/docs/src/pages/docs/desktop/_assets/creative_bench_jan_v1.png
similarity index 100%
rename from docs/src/pages/docs/_assets/creative_bench_jan_v1.png
rename to docs/src/pages/docs/desktop/_assets/creative_bench_jan_v1.png
diff --git a/docs/src/pages/docs/_assets/deepseek.png b/docs/src/pages/docs/desktop/_assets/deepseek.png
similarity index 100%
rename from docs/src/pages/docs/_assets/deepseek.png
rename to docs/src/pages/docs/desktop/_assets/deepseek.png
diff --git a/docs/src/pages/docs/_assets/download_janv1.png b/docs/src/pages/docs/desktop/_assets/download_janv1.png
similarity index 100%
rename from docs/src/pages/docs/_assets/download_janv1.png
rename to docs/src/pages/docs/desktop/_assets/download_janv1.png
diff --git a/docs/src/pages/docs/_assets/e2b-key.png b/docs/src/pages/docs/desktop/_assets/e2b-key.png
similarity index 100%
rename from docs/src/pages/docs/_assets/e2b-key.png
rename to docs/src/pages/docs/desktop/_assets/e2b-key.png
diff --git a/docs/src/pages/docs/_assets/e2b-key1.png b/docs/src/pages/docs/desktop/_assets/e2b-key1.png
similarity index 100%
rename from docs/src/pages/docs/_assets/e2b-key1.png
rename to docs/src/pages/docs/desktop/_assets/e2b-key1.png
diff --git a/docs/src/pages/docs/_assets/e2b-key2.png b/docs/src/pages/docs/desktop/_assets/e2b-key2.png
similarity index 100%
rename from docs/src/pages/docs/_assets/e2b-key2.png
rename to docs/src/pages/docs/desktop/_assets/e2b-key2.png
diff --git a/docs/src/pages/docs/_assets/e2b-key3.png b/docs/src/pages/docs/desktop/_assets/e2b-key3.png
similarity index 100%
rename from docs/src/pages/docs/_assets/e2b-key3.png
rename to docs/src/pages/docs/desktop/_assets/e2b-key3.png
diff --git a/docs/src/pages/docs/_assets/e2b-key4.png b/docs/src/pages/docs/desktop/_assets/e2b-key4.png
similarity index 100%
rename from docs/src/pages/docs/_assets/e2b-key4.png
rename to docs/src/pages/docs/desktop/_assets/e2b-key4.png
diff --git a/docs/src/pages/docs/_assets/e2b-key5.png b/docs/src/pages/docs/desktop/_assets/e2b-key5.png
similarity index 100%
rename from docs/src/pages/docs/_assets/e2b-key5.png
rename to docs/src/pages/docs/desktop/_assets/e2b-key5.png
diff --git a/docs/src/pages/docs/_assets/e2b-key6.png b/docs/src/pages/docs/desktop/_assets/e2b-key6.png
similarity index 100%
rename from docs/src/pages/docs/_assets/e2b-key6.png
rename to docs/src/pages/docs/desktop/_assets/e2b-key6.png
diff --git a/docs/src/pages/docs/_assets/e2b-key7.png b/docs/src/pages/docs/desktop/_assets/e2b-key7.png
similarity index 100%
rename from docs/src/pages/docs/_assets/e2b-key7.png
rename to docs/src/pages/docs/desktop/_assets/e2b-key7.png
diff --git a/docs/src/pages/docs/_assets/enable_mcp.png b/docs/src/pages/docs/desktop/_assets/enable_mcp.png
similarity index 100%
rename from docs/src/pages/docs/_assets/enable_mcp.png
rename to docs/src/pages/docs/desktop/_assets/enable_mcp.png
diff --git a/docs/src/pages/docs/_assets/exa.png b/docs/src/pages/docs/desktop/_assets/exa.png
similarity index 100%
rename from docs/src/pages/docs/_assets/exa.png
rename to docs/src/pages/docs/desktop/_assets/exa.png
diff --git a/docs/src/pages/docs/_assets/exa1.png b/docs/src/pages/docs/desktop/_assets/exa1.png
similarity index 100%
rename from docs/src/pages/docs/_assets/exa1.png
rename to docs/src/pages/docs/desktop/_assets/exa1.png
diff --git a/docs/src/pages/docs/_assets/exa2.png b/docs/src/pages/docs/desktop/_assets/exa2.png
similarity index 100%
rename from docs/src/pages/docs/_assets/exa2.png
rename to docs/src/pages/docs/desktop/_assets/exa2.png
diff --git a/docs/src/pages/docs/_assets/exa3.png b/docs/src/pages/docs/desktop/_assets/exa3.png
similarity index 100%
rename from docs/src/pages/docs/_assets/exa3.png
rename to docs/src/pages/docs/desktop/_assets/exa3.png
diff --git a/docs/src/pages/docs/_assets/exa4.png b/docs/src/pages/docs/desktop/_assets/exa4.png
similarity index 100%
rename from docs/src/pages/docs/_assets/exa4.png
rename to docs/src/pages/docs/desktop/_assets/exa4.png
diff --git a/docs/src/pages/docs/_assets/extensions-01.png b/docs/src/pages/docs/desktop/_assets/extensions-01.png
similarity index 100%
rename from docs/src/pages/docs/_assets/extensions-01.png
rename to docs/src/pages/docs/desktop/_assets/extensions-01.png
diff --git a/docs/src/pages/docs/_assets/extensions-02.png b/docs/src/pages/docs/desktop/_assets/extensions-02.png
similarity index 100%
rename from docs/src/pages/docs/_assets/extensions-02.png
rename to docs/src/pages/docs/desktop/_assets/extensions-02.png
diff --git a/docs/src/pages/docs/_assets/extensions-03.png b/docs/src/pages/docs/desktop/_assets/extensions-03.png
similarity index 100%
rename from docs/src/pages/docs/_assets/extensions-03.png
rename to docs/src/pages/docs/desktop/_assets/extensions-03.png
diff --git a/docs/src/pages/docs/_assets/extensions-04.png b/docs/src/pages/docs/desktop/_assets/extensions-04.png
similarity index 100%
rename from docs/src/pages/docs/_assets/extensions-04.png
rename to docs/src/pages/docs/desktop/_assets/extensions-04.png
diff --git a/docs/src/pages/docs/_assets/extensions-05.png b/docs/src/pages/docs/desktop/_assets/extensions-05.png
similarity index 100%
rename from docs/src/pages/docs/_assets/extensions-05.png
rename to docs/src/pages/docs/desktop/_assets/extensions-05.png
diff --git a/docs/src/pages/docs/_assets/extensions-06.png b/docs/src/pages/docs/desktop/_assets/extensions-06.png
similarity index 100%
rename from docs/src/pages/docs/_assets/extensions-06.png
rename to docs/src/pages/docs/desktop/_assets/extensions-06.png
diff --git a/docs/src/pages/docs/_assets/extensions-07.png b/docs/src/pages/docs/desktop/_assets/extensions-07.png
similarity index 100%
rename from docs/src/pages/docs/_assets/extensions-07.png
rename to docs/src/pages/docs/desktop/_assets/extensions-07.png
diff --git a/docs/src/pages/docs/_assets/extensions-08.png b/docs/src/pages/docs/desktop/_assets/extensions-08.png
similarity index 100%
rename from docs/src/pages/docs/_assets/extensions-08.png
rename to docs/src/pages/docs/desktop/_assets/extensions-08.png
diff --git a/docs/src/pages/docs/_assets/extensions-09.png b/docs/src/pages/docs/desktop/_assets/extensions-09.png
similarity index 100%
rename from docs/src/pages/docs/_assets/extensions-09.png
rename to docs/src/pages/docs/desktop/_assets/extensions-09.png
diff --git a/docs/src/pages/docs/_assets/extensions-10.png b/docs/src/pages/docs/desktop/_assets/extensions-10.png
similarity index 100%
rename from docs/src/pages/docs/_assets/extensions-10.png
rename to docs/src/pages/docs/desktop/_assets/extensions-10.png
diff --git a/docs/src/pages/docs/_assets/google.png b/docs/src/pages/docs/desktop/_assets/google.png
similarity index 100%
rename from docs/src/pages/docs/_assets/google.png
rename to docs/src/pages/docs/desktop/_assets/google.png
diff --git a/docs/src/pages/docs/_assets/gpt-oss-tools.png b/docs/src/pages/docs/desktop/_assets/gpt-oss-tools.png
similarity index 100%
rename from docs/src/pages/docs/_assets/gpt-oss-tools.png
rename to docs/src/pages/docs/desktop/_assets/gpt-oss-tools.png
diff --git a/docs/src/pages/docs/_assets/gpt-oss.png b/docs/src/pages/docs/desktop/_assets/gpt-oss.png
similarity index 100%
rename from docs/src/pages/docs/_assets/gpt-oss.png
rename to docs/src/pages/docs/desktop/_assets/gpt-oss.png
diff --git a/docs/src/pages/docs/_assets/gpt5-add.png b/docs/src/pages/docs/desktop/_assets/gpt5-add.png
similarity index 100%
rename from docs/src/pages/docs/_assets/gpt5-add.png
rename to docs/src/pages/docs/desktop/_assets/gpt5-add.png
diff --git a/docs/src/pages/docs/_assets/gpt5-chat.png b/docs/src/pages/docs/desktop/_assets/gpt5-chat.png
similarity index 100%
rename from docs/src/pages/docs/_assets/gpt5-chat.png
rename to docs/src/pages/docs/desktop/_assets/gpt5-chat.png
diff --git a/docs/src/pages/docs/_assets/gpt5-msg.png b/docs/src/pages/docs/desktop/_assets/gpt5-msg.png
similarity index 100%
rename from docs/src/pages/docs/_assets/gpt5-msg.png
rename to docs/src/pages/docs/desktop/_assets/gpt5-msg.png
diff --git a/docs/src/pages/docs/_assets/gpt5-msg2.png b/docs/src/pages/docs/desktop/_assets/gpt5-msg2.png
similarity index 100%
rename from docs/src/pages/docs/_assets/gpt5-msg2.png
rename to docs/src/pages/docs/desktop/_assets/gpt5-msg2.png
diff --git a/docs/src/pages/docs/_assets/gpt5-msg3.png b/docs/src/pages/docs/desktop/_assets/gpt5-msg3.png
similarity index 100%
rename from docs/src/pages/docs/_assets/gpt5-msg3.png
rename to docs/src/pages/docs/desktop/_assets/gpt5-msg3.png
diff --git a/docs/src/pages/docs/_assets/gpt5-tools.png b/docs/src/pages/docs/desktop/_assets/gpt5-tools.png
similarity index 100%
rename from docs/src/pages/docs/_assets/gpt5-tools.png
rename to docs/src/pages/docs/desktop/_assets/gpt5-tools.png
diff --git a/docs/src/pages/docs/_assets/gpu_accl.png b/docs/src/pages/docs/desktop/_assets/gpu_accl.png
similarity index 100%
rename from docs/src/pages/docs/_assets/gpu_accl.png
rename to docs/src/pages/docs/desktop/_assets/gpu_accl.png
diff --git a/docs/src/pages/docs/_assets/groq.png b/docs/src/pages/docs/desktop/_assets/groq.png
similarity index 100%
rename from docs/src/pages/docs/_assets/groq.png
rename to docs/src/pages/docs/desktop/_assets/groq.png
diff --git a/docs/src/pages/docs/_assets/hardware.png b/docs/src/pages/docs/desktop/_assets/hardware.png
similarity index 100%
rename from docs/src/pages/docs/_assets/hardware.png
rename to docs/src/pages/docs/desktop/_assets/hardware.png
diff --git a/docs/src/pages/docs/_assets/hf-unsloth.png b/docs/src/pages/docs/desktop/_assets/hf-unsloth.png
similarity index 100%
rename from docs/src/pages/docs/_assets/hf-unsloth.png
rename to docs/src/pages/docs/desktop/_assets/hf-unsloth.png
diff --git a/docs/src/pages/docs/_assets/hf_and_jan.png b/docs/src/pages/docs/desktop/_assets/hf_and_jan.png
similarity index 100%
rename from docs/src/pages/docs/_assets/hf_and_jan.png
rename to docs/src/pages/docs/desktop/_assets/hf_and_jan.png
diff --git a/docs/src/pages/docs/_assets/hf_hub.png b/docs/src/pages/docs/desktop/_assets/hf_hub.png
similarity index 100%
rename from docs/src/pages/docs/_assets/hf_hub.png
rename to docs/src/pages/docs/desktop/_assets/hf_hub.png
diff --git a/docs/src/pages/docs/_assets/hf_jan_nano.png b/docs/src/pages/docs/desktop/_assets/hf_jan_nano.png
similarity index 100%
rename from docs/src/pages/docs/_assets/hf_jan_nano.png
rename to docs/src/pages/docs/desktop/_assets/hf_jan_nano.png
diff --git a/docs/src/pages/docs/_assets/hf_jan_nano_2.png b/docs/src/pages/docs/desktop/_assets/hf_jan_nano_2.png
similarity index 100%
rename from docs/src/pages/docs/_assets/hf_jan_nano_2.png
rename to docs/src/pages/docs/desktop/_assets/hf_jan_nano_2.png
diff --git a/docs/src/pages/docs/_assets/hf_jan_nano_3.png b/docs/src/pages/docs/desktop/_assets/hf_jan_nano_3.png
similarity index 100%
rename from docs/src/pages/docs/_assets/hf_jan_nano_3.png
rename to docs/src/pages/docs/desktop/_assets/hf_jan_nano_3.png
diff --git a/docs/src/pages/docs/_assets/hf_jan_nano_4.png b/docs/src/pages/docs/desktop/_assets/hf_jan_nano_4.png
similarity index 100%
rename from docs/src/pages/docs/_assets/hf_jan_nano_4.png
rename to docs/src/pages/docs/desktop/_assets/hf_jan_nano_4.png
diff --git a/docs/src/pages/docs/_assets/hf_jan_nano_5.png b/docs/src/pages/docs/desktop/_assets/hf_jan_nano_5.png
similarity index 100%
rename from docs/src/pages/docs/_assets/hf_jan_nano_5.png
rename to docs/src/pages/docs/desktop/_assets/hf_jan_nano_5.png
diff --git a/docs/src/pages/docs/_assets/hf_jan_nano_6.png b/docs/src/pages/docs/desktop/_assets/hf_jan_nano_6.png
similarity index 100%
rename from docs/src/pages/docs/_assets/hf_jan_nano_6.png
rename to docs/src/pages/docs/desktop/_assets/hf_jan_nano_6.png
diff --git a/docs/src/pages/docs/_assets/hf_jan_nano_7.png b/docs/src/pages/docs/desktop/_assets/hf_jan_nano_7.png
similarity index 100%
rename from docs/src/pages/docs/_assets/hf_jan_nano_7.png
rename to docs/src/pages/docs/desktop/_assets/hf_jan_nano_7.png
diff --git a/docs/src/pages/docs/_assets/hf_jan_nano_8.png b/docs/src/pages/docs/desktop/_assets/hf_jan_nano_8.png
similarity index 100%
rename from docs/src/pages/docs/_assets/hf_jan_nano_8.png
rename to docs/src/pages/docs/desktop/_assets/hf_jan_nano_8.png
diff --git a/docs/src/pages/docs/_assets/hf_jan_nano_9.png b/docs/src/pages/docs/desktop/_assets/hf_jan_nano_9.png
similarity index 100%
rename from docs/src/pages/docs/_assets/hf_jan_nano_9.png
rename to docs/src/pages/docs/desktop/_assets/hf_jan_nano_9.png
diff --git a/docs/src/pages/docs/_assets/hf_jan_setup.png b/docs/src/pages/docs/desktop/_assets/hf_jan_setup.png
similarity index 100%
rename from docs/src/pages/docs/_assets/hf_jan_setup.png
rename to docs/src/pages/docs/desktop/_assets/hf_jan_setup.png
diff --git a/docs/src/pages/docs/_assets/hf_providers.png b/docs/src/pages/docs/desktop/_assets/hf_providers.png
similarity index 100%
rename from docs/src/pages/docs/_assets/hf_providers.png
rename to docs/src/pages/docs/desktop/_assets/hf_providers.png
diff --git a/docs/src/pages/docs/_assets/hf_token.png b/docs/src/pages/docs/desktop/_assets/hf_token.png
similarity index 100%
rename from docs/src/pages/docs/_assets/hf_token.png
rename to docs/src/pages/docs/desktop/_assets/hf_token.png
diff --git a/docs/src/pages/docs/_assets/install-engines-01.png b/docs/src/pages/docs/desktop/_assets/install-engines-01.png
similarity index 100%
rename from docs/src/pages/docs/_assets/install-engines-01.png
rename to docs/src/pages/docs/desktop/_assets/install-engines-01.png
diff --git a/docs/src/pages/docs/_assets/install-engines-02.png b/docs/src/pages/docs/desktop/_assets/install-engines-02.png
similarity index 100%
rename from docs/src/pages/docs/_assets/install-engines-02.png
rename to docs/src/pages/docs/desktop/_assets/install-engines-02.png
diff --git a/docs/src/pages/docs/_assets/install-engines-03.png b/docs/src/pages/docs/desktop/_assets/install-engines-03.png
similarity index 100%
rename from docs/src/pages/docs/_assets/install-engines-03.png
rename to docs/src/pages/docs/desktop/_assets/install-engines-03.png
diff --git a/docs/src/pages/docs/_assets/jan-app-new.png b/docs/src/pages/docs/desktop/_assets/jan-app-new.png
similarity index 100%
rename from docs/src/pages/docs/_assets/jan-app-new.png
rename to docs/src/pages/docs/desktop/_assets/jan-app-new.png
diff --git a/docs/src/pages/docs/_assets/jan-app.png b/docs/src/pages/docs/desktop/_assets/jan-app.png
similarity index 100%
rename from docs/src/pages/docs/_assets/jan-app.png
rename to docs/src/pages/docs/desktop/_assets/jan-app.png
diff --git a/docs/src/pages/docs/_assets/jan-nano-bench.png b/docs/src/pages/docs/desktop/_assets/jan-nano-bench.png
similarity index 100%
rename from docs/src/pages/docs/_assets/jan-nano-bench.png
rename to docs/src/pages/docs/desktop/_assets/jan-nano-bench.png
diff --git a/docs/src/pages/docs/_assets/jan-nano1.png b/docs/src/pages/docs/desktop/_assets/jan-nano1.png
similarity index 100%
rename from docs/src/pages/docs/_assets/jan-nano1.png
rename to docs/src/pages/docs/desktop/_assets/jan-nano1.png
diff --git a/docs/src/pages/docs/_assets/jan_loaded.png b/docs/src/pages/docs/desktop/_assets/jan_loaded.png
similarity index 100%
rename from docs/src/pages/docs/_assets/jan_loaded.png
rename to docs/src/pages/docs/desktop/_assets/jan_loaded.png
diff --git a/docs/src/pages/docs/_assets/jan_ui.png b/docs/src/pages/docs/desktop/_assets/jan_ui.png
similarity index 100%
rename from docs/src/pages/docs/_assets/jan_ui.png
rename to docs/src/pages/docs/desktop/_assets/jan_ui.png
diff --git a/docs/src/pages/docs/_assets/jan_v1_serper.png b/docs/src/pages/docs/desktop/_assets/jan_v1_serper.png
similarity index 100%
rename from docs/src/pages/docs/_assets/jan_v1_serper.png
rename to docs/src/pages/docs/desktop/_assets/jan_v1_serper.png
diff --git a/docs/src/pages/docs/_assets/jan_v1_serper1.png b/docs/src/pages/docs/desktop/_assets/jan_v1_serper1.png
similarity index 100%
rename from docs/src/pages/docs/_assets/jan_v1_serper1.png
rename to docs/src/pages/docs/desktop/_assets/jan_v1_serper1.png
diff --git a/docs/src/pages/docs/_assets/jupyter.png b/docs/src/pages/docs/desktop/_assets/jupyter.png
similarity index 100%
rename from docs/src/pages/docs/_assets/jupyter.png
rename to docs/src/pages/docs/desktop/_assets/jupyter.png
diff --git a/docs/src/pages/docs/_assets/jupyter1.png b/docs/src/pages/docs/desktop/_assets/jupyter1.png
similarity index 100%
rename from docs/src/pages/docs/_assets/jupyter1.png
rename to docs/src/pages/docs/desktop/_assets/jupyter1.png
diff --git a/docs/src/pages/docs/_assets/jupyter2.png b/docs/src/pages/docs/desktop/_assets/jupyter2.png
similarity index 100%
rename from docs/src/pages/docs/_assets/jupyter2.png
rename to docs/src/pages/docs/desktop/_assets/jupyter2.png
diff --git a/docs/src/pages/docs/_assets/jupyter3.png b/docs/src/pages/docs/desktop/_assets/jupyter3.png
similarity index 100%
rename from docs/src/pages/docs/_assets/jupyter3.png
rename to docs/src/pages/docs/desktop/_assets/jupyter3.png
diff --git a/docs/src/pages/docs/_assets/jupyter4.png b/docs/src/pages/docs/desktop/_assets/jupyter4.png
similarity index 100%
rename from docs/src/pages/docs/_assets/jupyter4.png
rename to docs/src/pages/docs/desktop/_assets/jupyter4.png
diff --git a/docs/src/pages/docs/_assets/jupyter5.png b/docs/src/pages/docs/desktop/_assets/jupyter5.png
similarity index 100%
rename from docs/src/pages/docs/_assets/jupyter5.png
rename to docs/src/pages/docs/desktop/_assets/jupyter5.png
diff --git a/docs/src/pages/docs/_assets/linear1.png b/docs/src/pages/docs/desktop/_assets/linear1.png
similarity index 100%
rename from docs/src/pages/docs/_assets/linear1.png
rename to docs/src/pages/docs/desktop/_assets/linear1.png
diff --git a/docs/src/pages/docs/_assets/linear2.png b/docs/src/pages/docs/desktop/_assets/linear2.png
similarity index 100%
rename from docs/src/pages/docs/_assets/linear2.png
rename to docs/src/pages/docs/desktop/_assets/linear2.png
diff --git a/docs/src/pages/docs/_assets/linear3.png b/docs/src/pages/docs/desktop/_assets/linear3.png
similarity index 100%
rename from docs/src/pages/docs/_assets/linear3.png
rename to docs/src/pages/docs/desktop/_assets/linear3.png
diff --git a/docs/src/pages/docs/_assets/linear4.png b/docs/src/pages/docs/desktop/_assets/linear4.png
similarity index 100%
rename from docs/src/pages/docs/_assets/linear4.png
rename to docs/src/pages/docs/desktop/_assets/linear4.png
diff --git a/docs/src/pages/docs/_assets/linear5.png b/docs/src/pages/docs/desktop/_assets/linear5.png
similarity index 100%
rename from docs/src/pages/docs/_assets/linear5.png
rename to docs/src/pages/docs/desktop/_assets/linear5.png
diff --git a/docs/src/pages/docs/_assets/linear6.png b/docs/src/pages/docs/desktop/_assets/linear6.png
similarity index 100%
rename from docs/src/pages/docs/_assets/linear6.png
rename to docs/src/pages/docs/desktop/_assets/linear6.png
diff --git a/docs/src/pages/docs/_assets/linear7.png b/docs/src/pages/docs/desktop/_assets/linear7.png
similarity index 100%
rename from docs/src/pages/docs/_assets/linear7.png
rename to docs/src/pages/docs/desktop/_assets/linear7.png
diff --git a/docs/src/pages/docs/_assets/linear8.png b/docs/src/pages/docs/desktop/_assets/linear8.png
similarity index 100%
rename from docs/src/pages/docs/_assets/linear8.png
rename to docs/src/pages/docs/desktop/_assets/linear8.png
diff --git a/docs/src/pages/docs/_assets/llama.cpp-01-updated.png b/docs/src/pages/docs/desktop/_assets/llama.cpp-01-updated.png
similarity index 100%
rename from docs/src/pages/docs/_assets/llama.cpp-01-updated.png
rename to docs/src/pages/docs/desktop/_assets/llama.cpp-01-updated.png
diff --git a/docs/src/pages/docs/_assets/llama.cpp-01.png b/docs/src/pages/docs/desktop/_assets/llama.cpp-01.png
similarity index 100%
rename from docs/src/pages/docs/_assets/llama.cpp-01.png
rename to docs/src/pages/docs/desktop/_assets/llama.cpp-01.png
diff --git a/docs/src/pages/docs/_assets/ls.png b/docs/src/pages/docs/desktop/_assets/ls.png
similarity index 100%
rename from docs/src/pages/docs/_assets/ls.png
rename to docs/src/pages/docs/desktop/_assets/ls.png
diff --git a/docs/src/pages/docs/_assets/martian.png b/docs/src/pages/docs/desktop/_assets/martian.png
similarity index 100%
rename from docs/src/pages/docs/_assets/martian.png
rename to docs/src/pages/docs/desktop/_assets/martian.png
diff --git a/docs/src/pages/docs/_assets/mcp-on.png b/docs/src/pages/docs/desktop/_assets/mcp-on.png
similarity index 100%
rename from docs/src/pages/docs/_assets/mcp-on.png
rename to docs/src/pages/docs/desktop/_assets/mcp-on.png
diff --git a/docs/src/pages/docs/_assets/mcp-server.png b/docs/src/pages/docs/desktop/_assets/mcp-server.png
similarity index 100%
rename from docs/src/pages/docs/_assets/mcp-server.png
rename to docs/src/pages/docs/desktop/_assets/mcp-server.png
diff --git a/docs/src/pages/docs/_assets/mcp-setup-1.png b/docs/src/pages/docs/desktop/_assets/mcp-setup-1.png
similarity index 100%
rename from docs/src/pages/docs/_assets/mcp-setup-1.png
rename to docs/src/pages/docs/desktop/_assets/mcp-setup-1.png
diff --git a/docs/src/pages/docs/_assets/mcp-setup-10.png b/docs/src/pages/docs/desktop/_assets/mcp-setup-10.png
similarity index 100%
rename from docs/src/pages/docs/_assets/mcp-setup-10.png
rename to docs/src/pages/docs/desktop/_assets/mcp-setup-10.png
diff --git a/docs/src/pages/docs/_assets/mcp-setup-2.png b/docs/src/pages/docs/desktop/_assets/mcp-setup-2.png
similarity index 100%
rename from docs/src/pages/docs/_assets/mcp-setup-2.png
rename to docs/src/pages/docs/desktop/_assets/mcp-setup-2.png
diff --git a/docs/src/pages/docs/_assets/mcp-setup-3.png b/docs/src/pages/docs/desktop/_assets/mcp-setup-3.png
similarity index 100%
rename from docs/src/pages/docs/_assets/mcp-setup-3.png
rename to docs/src/pages/docs/desktop/_assets/mcp-setup-3.png
diff --git a/docs/src/pages/docs/_assets/mcp-setup-4.png b/docs/src/pages/docs/desktop/_assets/mcp-setup-4.png
similarity index 100%
rename from docs/src/pages/docs/_assets/mcp-setup-4.png
rename to docs/src/pages/docs/desktop/_assets/mcp-setup-4.png
diff --git a/docs/src/pages/docs/_assets/mcp-setup-5.png b/docs/src/pages/docs/desktop/_assets/mcp-setup-5.png
similarity index 100%
rename from docs/src/pages/docs/_assets/mcp-setup-5.png
rename to docs/src/pages/docs/desktop/_assets/mcp-setup-5.png
diff --git a/docs/src/pages/docs/_assets/mcp-setup-6.png b/docs/src/pages/docs/desktop/_assets/mcp-setup-6.png
similarity index 100%
rename from docs/src/pages/docs/_assets/mcp-setup-6.png
rename to docs/src/pages/docs/desktop/_assets/mcp-setup-6.png
diff --git a/docs/src/pages/docs/_assets/mcp-setup-7.png b/docs/src/pages/docs/desktop/_assets/mcp-setup-7.png
similarity index 100%
rename from docs/src/pages/docs/_assets/mcp-setup-7.png
rename to docs/src/pages/docs/desktop/_assets/mcp-setup-7.png
diff --git a/docs/src/pages/docs/_assets/mcp-setup-8.png b/docs/src/pages/docs/desktop/_assets/mcp-setup-8.png
similarity index 100%
rename from docs/src/pages/docs/_assets/mcp-setup-8.png
rename to docs/src/pages/docs/desktop/_assets/mcp-setup-8.png
diff --git a/docs/src/pages/docs/_assets/mcp-setup-9.png b/docs/src/pages/docs/desktop/_assets/mcp-setup-9.png
similarity index 100%
rename from docs/src/pages/docs/_assets/mcp-setup-9.png
rename to docs/src/pages/docs/desktop/_assets/mcp-setup-9.png
diff --git a/docs/src/pages/docs/_assets/mistralai.png b/docs/src/pages/docs/desktop/_assets/mistralai.png
similarity index 100%
rename from docs/src/pages/docs/_assets/mistralai.png
rename to docs/src/pages/docs/desktop/_assets/mistralai.png
diff --git a/docs/src/pages/docs/_assets/model-capabilities-edit-01.png b/docs/src/pages/docs/desktop/_assets/model-capabilities-edit-01.png
similarity index 100%
rename from docs/src/pages/docs/_assets/model-capabilities-edit-01.png
rename to docs/src/pages/docs/desktop/_assets/model-capabilities-edit-01.png
diff --git a/docs/src/pages/docs/_assets/model-capabilities-edit-02.png b/docs/src/pages/docs/desktop/_assets/model-capabilities-edit-02.png
similarity index 100%
rename from docs/src/pages/docs/_assets/model-capabilities-edit-02.png
rename to docs/src/pages/docs/desktop/_assets/model-capabilities-edit-02.png
diff --git a/docs/src/pages/docs/_assets/model-import-04.png b/docs/src/pages/docs/desktop/_assets/model-import-04.png
similarity index 100%
rename from docs/src/pages/docs/_assets/model-import-04.png
rename to docs/src/pages/docs/desktop/_assets/model-import-04.png
diff --git a/docs/src/pages/docs/_assets/model-import-05.png b/docs/src/pages/docs/desktop/_assets/model-import-05.png
similarity index 100%
rename from docs/src/pages/docs/_assets/model-import-05.png
rename to docs/src/pages/docs/desktop/_assets/model-import-05.png
diff --git a/docs/src/pages/docs/_assets/model-management-01.png b/docs/src/pages/docs/desktop/_assets/model-management-01.png
similarity index 100%
rename from docs/src/pages/docs/_assets/model-management-01.png
rename to docs/src/pages/docs/desktop/_assets/model-management-01.png
diff --git a/docs/src/pages/docs/_assets/model-management-02.png b/docs/src/pages/docs/desktop/_assets/model-management-02.png
similarity index 100%
rename from docs/src/pages/docs/_assets/model-management-02.png
rename to docs/src/pages/docs/desktop/_assets/model-management-02.png
diff --git a/docs/src/pages/docs/_assets/model-management-03.png b/docs/src/pages/docs/desktop/_assets/model-management-03.png
similarity index 100%
rename from docs/src/pages/docs/_assets/model-management-03.png
rename to docs/src/pages/docs/desktop/_assets/model-management-03.png
diff --git a/docs/src/pages/docs/_assets/model-management-04.png b/docs/src/pages/docs/desktop/_assets/model-management-04.png
similarity index 100%
rename from docs/src/pages/docs/_assets/model-management-04.png
rename to docs/src/pages/docs/desktop/_assets/model-management-04.png
diff --git a/docs/src/pages/docs/_assets/model-management-05.png b/docs/src/pages/docs/desktop/_assets/model-management-05.png
similarity index 100%
rename from docs/src/pages/docs/_assets/model-management-05.png
rename to docs/src/pages/docs/desktop/_assets/model-management-05.png
diff --git a/docs/src/pages/docs/_assets/model-management-06.png b/docs/src/pages/docs/desktop/_assets/model-management-06.png
similarity index 100%
rename from docs/src/pages/docs/_assets/model-management-06.png
rename to docs/src/pages/docs/desktop/_assets/model-management-06.png
diff --git a/docs/src/pages/docs/_assets/model-management-07.png b/docs/src/pages/docs/desktop/_assets/model-management-07.png
similarity index 100%
rename from docs/src/pages/docs/_assets/model-management-07.png
rename to docs/src/pages/docs/desktop/_assets/model-management-07.png
diff --git a/docs/src/pages/docs/_assets/model-management-08.png b/docs/src/pages/docs/desktop/_assets/model-management-08.png
similarity index 100%
rename from docs/src/pages/docs/_assets/model-management-08.png
rename to docs/src/pages/docs/desktop/_assets/model-management-08.png
diff --git a/docs/src/pages/docs/_assets/model-management-09.png b/docs/src/pages/docs/desktop/_assets/model-management-09.png
similarity index 100%
rename from docs/src/pages/docs/_assets/model-management-09.png
rename to docs/src/pages/docs/desktop/_assets/model-management-09.png
diff --git a/docs/src/pages/docs/_assets/model-parameters.png b/docs/src/pages/docs/desktop/_assets/model-parameters.png
similarity index 100%
rename from docs/src/pages/docs/_assets/model-parameters.png
rename to docs/src/pages/docs/desktop/_assets/model-parameters.png
diff --git a/docs/src/pages/docs/_assets/nvidia-nim.png b/docs/src/pages/docs/desktop/_assets/nvidia-nim.png
similarity index 100%
rename from docs/src/pages/docs/_assets/nvidia-nim.png
rename to docs/src/pages/docs/desktop/_assets/nvidia-nim.png
diff --git a/docs/src/pages/docs/_assets/octagon.png b/docs/src/pages/docs/desktop/_assets/octagon.png
similarity index 100%
rename from docs/src/pages/docs/_assets/octagon.png
rename to docs/src/pages/docs/desktop/_assets/octagon.png
diff --git a/docs/src/pages/docs/_assets/octagon2.png b/docs/src/pages/docs/desktop/_assets/octagon2.png
similarity index 100%
rename from docs/src/pages/docs/_assets/octagon2.png
rename to docs/src/pages/docs/desktop/_assets/octagon2.png
diff --git a/docs/src/pages/docs/_assets/octagon3.png b/docs/src/pages/docs/desktop/_assets/octagon3.png
similarity index 100%
rename from docs/src/pages/docs/_assets/octagon3.png
rename to docs/src/pages/docs/desktop/_assets/octagon3.png
diff --git a/docs/src/pages/docs/_assets/octagon4.png b/docs/src/pages/docs/desktop/_assets/octagon4.png
similarity index 100%
rename from docs/src/pages/docs/_assets/octagon4.png
rename to docs/src/pages/docs/desktop/_assets/octagon4.png
diff --git a/docs/src/pages/docs/_assets/octagon5.png b/docs/src/pages/docs/desktop/_assets/octagon5.png
similarity index 100%
rename from docs/src/pages/docs/_assets/octagon5.png
rename to docs/src/pages/docs/desktop/_assets/octagon5.png
diff --git a/docs/src/pages/docs/_assets/octagon6.png b/docs/src/pages/docs/desktop/_assets/octagon6.png
similarity index 100%
rename from docs/src/pages/docs/_assets/octagon6.png
rename to docs/src/pages/docs/desktop/_assets/octagon6.png
diff --git a/docs/src/pages/docs/_assets/octagon7.png b/docs/src/pages/docs/desktop/_assets/octagon7.png
similarity index 100%
rename from docs/src/pages/docs/_assets/octagon7.png
rename to docs/src/pages/docs/desktop/_assets/octagon7.png
diff --git a/docs/src/pages/docs/_assets/octagon8.png b/docs/src/pages/docs/desktop/_assets/octagon8.png
similarity index 100%
rename from docs/src/pages/docs/_assets/octagon8.png
rename to docs/src/pages/docs/desktop/_assets/octagon8.png
diff --git a/docs/src/pages/docs/_assets/octagon9.png b/docs/src/pages/docs/desktop/_assets/octagon9.png
similarity index 100%
rename from docs/src/pages/docs/_assets/octagon9.png
rename to docs/src/pages/docs/desktop/_assets/octagon9.png
diff --git a/docs/src/pages/docs/_assets/openai-settings.png b/docs/src/pages/docs/desktop/_assets/openai-settings.png
similarity index 100%
rename from docs/src/pages/docs/_assets/openai-settings.png
rename to docs/src/pages/docs/desktop/_assets/openai-settings.png
diff --git a/docs/src/pages/docs/_assets/openai.png b/docs/src/pages/docs/desktop/_assets/openai.png
similarity index 100%
rename from docs/src/pages/docs/_assets/openai.png
rename to docs/src/pages/docs/desktop/_assets/openai.png
diff --git a/docs/src/pages/docs/_assets/openrouter.png b/docs/src/pages/docs/desktop/_assets/openrouter.png
similarity index 100%
rename from docs/src/pages/docs/_assets/openrouter.png
rename to docs/src/pages/docs/desktop/_assets/openrouter.png
diff --git a/docs/src/pages/docs/_assets/quick-start-01.png b/docs/src/pages/docs/desktop/_assets/quick-start-01.png
similarity index 100%
rename from docs/src/pages/docs/_assets/quick-start-01.png
rename to docs/src/pages/docs/desktop/_assets/quick-start-01.png
diff --git a/docs/src/pages/docs/_assets/quick-start-02.png b/docs/src/pages/docs/desktop/_assets/quick-start-02.png
similarity index 100%
rename from docs/src/pages/docs/_assets/quick-start-02.png
rename to docs/src/pages/docs/desktop/_assets/quick-start-02.png
diff --git a/docs/src/pages/docs/_assets/quick-start-03.png b/docs/src/pages/docs/desktop/_assets/quick-start-03.png
similarity index 100%
rename from docs/src/pages/docs/_assets/quick-start-03.png
rename to docs/src/pages/docs/desktop/_assets/quick-start-03.png
diff --git a/docs/src/pages/docs/_assets/retrieval-01.png b/docs/src/pages/docs/desktop/_assets/retrieval-01.png
similarity index 100%
rename from docs/src/pages/docs/_assets/retrieval-01.png
rename to docs/src/pages/docs/desktop/_assets/retrieval-01.png
diff --git a/docs/src/pages/docs/_assets/retrieval-02.png b/docs/src/pages/docs/desktop/_assets/retrieval-02.png
similarity index 100%
rename from docs/src/pages/docs/_assets/retrieval-02.png
rename to docs/src/pages/docs/desktop/_assets/retrieval-02.png
diff --git a/docs/src/pages/docs/_assets/serper-mcp.png b/docs/src/pages/docs/desktop/_assets/serper-mcp.png
similarity index 100%
rename from docs/src/pages/docs/_assets/serper-mcp.png
rename to docs/src/pages/docs/desktop/_assets/serper-mcp.png
diff --git a/docs/src/pages/docs/_assets/serper_janparams.png b/docs/src/pages/docs/desktop/_assets/serper_janparams.png
similarity index 100%
rename from docs/src/pages/docs/_assets/serper_janparams.png
rename to docs/src/pages/docs/desktop/_assets/serper_janparams.png
diff --git a/docs/src/pages/docs/_assets/serper_page.png b/docs/src/pages/docs/desktop/_assets/serper_page.png
similarity index 100%
rename from docs/src/pages/docs/_assets/serper_page.png
rename to docs/src/pages/docs/desktop/_assets/serper_page.png
diff --git a/docs/src/pages/docs/_assets/serper_playground.png b/docs/src/pages/docs/desktop/_assets/serper_playground.png
similarity index 100%
rename from docs/src/pages/docs/_assets/serper_playground.png
rename to docs/src/pages/docs/desktop/_assets/serper_playground.png
diff --git a/docs/src/pages/docs/_assets/settings-01.png b/docs/src/pages/docs/desktop/_assets/settings-01.png
similarity index 100%
rename from docs/src/pages/docs/_assets/settings-01.png
rename to docs/src/pages/docs/desktop/_assets/settings-01.png
diff --git a/docs/src/pages/docs/_assets/settings-02.png b/docs/src/pages/docs/desktop/_assets/settings-02.png
similarity index 100%
rename from docs/src/pages/docs/_assets/settings-02.png
rename to docs/src/pages/docs/desktop/_assets/settings-02.png
diff --git a/docs/src/pages/docs/_assets/settings-03.png b/docs/src/pages/docs/desktop/_assets/settings-03.png
similarity index 100%
rename from docs/src/pages/docs/_assets/settings-03.png
rename to docs/src/pages/docs/desktop/_assets/settings-03.png
diff --git a/docs/src/pages/docs/_assets/settings-04.png b/docs/src/pages/docs/desktop/_assets/settings-04.png
similarity index 100%
rename from docs/src/pages/docs/_assets/settings-04.png
rename to docs/src/pages/docs/desktop/_assets/settings-04.png
diff --git a/docs/src/pages/docs/_assets/settings-05.png b/docs/src/pages/docs/desktop/_assets/settings-05.png
similarity index 100%
rename from docs/src/pages/docs/_assets/settings-05.png
rename to docs/src/pages/docs/desktop/_assets/settings-05.png
diff --git a/docs/src/pages/docs/_assets/settings-06.png b/docs/src/pages/docs/desktop/_assets/settings-06.png
similarity index 100%
rename from docs/src/pages/docs/_assets/settings-06.png
rename to docs/src/pages/docs/desktop/_assets/settings-06.png
diff --git a/docs/src/pages/docs/_assets/settings-07.png b/docs/src/pages/docs/desktop/_assets/settings-07.png
similarity index 100%
rename from docs/src/pages/docs/_assets/settings-07.png
rename to docs/src/pages/docs/desktop/_assets/settings-07.png
diff --git a/docs/src/pages/docs/_assets/settings-08.png b/docs/src/pages/docs/desktop/_assets/settings-08.png
similarity index 100%
rename from docs/src/pages/docs/_assets/settings-08.png
rename to docs/src/pages/docs/desktop/_assets/settings-08.png
diff --git a/docs/src/pages/docs/_assets/settings-09.png b/docs/src/pages/docs/desktop/_assets/settings-09.png
similarity index 100%
rename from docs/src/pages/docs/_assets/settings-09.png
rename to docs/src/pages/docs/desktop/_assets/settings-09.png
diff --git a/docs/src/pages/docs/_assets/settings-10.png b/docs/src/pages/docs/desktop/_assets/settings-10.png
similarity index 100%
rename from docs/src/pages/docs/_assets/settings-10.png
rename to docs/src/pages/docs/desktop/_assets/settings-10.png
diff --git a/docs/src/pages/docs/_assets/settings-11.png b/docs/src/pages/docs/desktop/_assets/settings-11.png
similarity index 100%
rename from docs/src/pages/docs/_assets/settings-11.png
rename to docs/src/pages/docs/desktop/_assets/settings-11.png
diff --git a/docs/src/pages/docs/_assets/settings-12.png b/docs/src/pages/docs/desktop/_assets/settings-12.png
similarity index 100%
rename from docs/src/pages/docs/_assets/settings-12.png
rename to docs/src/pages/docs/desktop/_assets/settings-12.png
diff --git a/docs/src/pages/docs/_assets/settings-13.png b/docs/src/pages/docs/desktop/_assets/settings-13.png
similarity index 100%
rename from docs/src/pages/docs/_assets/settings-13.png
rename to docs/src/pages/docs/desktop/_assets/settings-13.png
diff --git a/docs/src/pages/docs/_assets/settings-14.png b/docs/src/pages/docs/desktop/_assets/settings-14.png
similarity index 100%
rename from docs/src/pages/docs/_assets/settings-14.png
rename to docs/src/pages/docs/desktop/_assets/settings-14.png
diff --git a/docs/src/pages/docs/_assets/settings-15.png b/docs/src/pages/docs/desktop/_assets/settings-15.png
similarity index 100%
rename from docs/src/pages/docs/_assets/settings-15.png
rename to docs/src/pages/docs/desktop/_assets/settings-15.png
diff --git a/docs/src/pages/docs/_assets/settings-16.png b/docs/src/pages/docs/desktop/_assets/settings-16.png
similarity index 100%
rename from docs/src/pages/docs/_assets/settings-16.png
rename to docs/src/pages/docs/desktop/_assets/settings-16.png
diff --git a/docs/src/pages/docs/_assets/settings-17.png b/docs/src/pages/docs/desktop/_assets/settings-17.png
similarity index 100%
rename from docs/src/pages/docs/_assets/settings-17.png
rename to docs/src/pages/docs/desktop/_assets/settings-17.png
diff --git a/docs/src/pages/docs/_assets/settings-18.png b/docs/src/pages/docs/desktop/_assets/settings-18.png
similarity index 100%
rename from docs/src/pages/docs/_assets/settings-18.png
rename to docs/src/pages/docs/desktop/_assets/settings-18.png
diff --git a/docs/src/pages/docs/_assets/settings-19.png b/docs/src/pages/docs/desktop/_assets/settings-19.png
similarity index 100%
rename from docs/src/pages/docs/_assets/settings-19.png
rename to docs/src/pages/docs/desktop/_assets/settings-19.png
diff --git a/docs/src/pages/docs/_assets/simpleqa_jan_v1.png b/docs/src/pages/docs/desktop/_assets/simpleqa_jan_v1.png
similarity index 100%
rename from docs/src/pages/docs/_assets/simpleqa_jan_v1.png
rename to docs/src/pages/docs/desktop/_assets/simpleqa_jan_v1.png
diff --git a/docs/src/pages/docs/_assets/simpleqa_lucy.png b/docs/src/pages/docs/desktop/_assets/simpleqa_lucy.png
similarity index 100%
rename from docs/src/pages/docs/_assets/simpleqa_lucy.png
rename to docs/src/pages/docs/desktop/_assets/simpleqa_lucy.png
diff --git a/docs/src/pages/docs/_assets/sys_monitor.png b/docs/src/pages/docs/desktop/_assets/sys_monitor.png
similarity index 100%
rename from docs/src/pages/docs/_assets/sys_monitor.png
rename to docs/src/pages/docs/desktop/_assets/sys_monitor.png
diff --git a/docs/src/pages/docs/_assets/tensorrt-llm-01.png b/docs/src/pages/docs/desktop/_assets/tensorrt-llm-01.png
similarity index 100%
rename from docs/src/pages/docs/_assets/tensorrt-llm-01.png
rename to docs/src/pages/docs/desktop/_assets/tensorrt-llm-01.png
diff --git a/docs/src/pages/docs/_assets/tensorrt-llm-02.png b/docs/src/pages/docs/desktop/_assets/tensorrt-llm-02.png
similarity index 100%
rename from docs/src/pages/docs/_assets/tensorrt-llm-02.png
rename to docs/src/pages/docs/desktop/_assets/tensorrt-llm-02.png
diff --git a/docs/src/pages/docs/_assets/threads-context-menu-updated.png b/docs/src/pages/docs/desktop/_assets/threads-context-menu-updated.png
similarity index 100%
rename from docs/src/pages/docs/_assets/threads-context-menu-updated.png
rename to docs/src/pages/docs/desktop/_assets/threads-context-menu-updated.png
diff --git a/docs/src/pages/docs/_assets/threads-context-menu.png b/docs/src/pages/docs/desktop/_assets/threads-context-menu.png
similarity index 100%
rename from docs/src/pages/docs/_assets/threads-context-menu.png
rename to docs/src/pages/docs/desktop/_assets/threads-context-menu.png
diff --git a/docs/src/pages/docs/_assets/threads-favorites-and-recents-updated.png b/docs/src/pages/docs/desktop/_assets/threads-favorites-and-recents-updated.png
similarity index 100%
rename from docs/src/pages/docs/_assets/threads-favorites-and-recents-updated.png
rename to docs/src/pages/docs/desktop/_assets/threads-favorites-and-recents-updated.png
diff --git a/docs/src/pages/docs/_assets/threads-favorites-and-recents.png b/docs/src/pages/docs/desktop/_assets/threads-favorites-and-recents.png
similarity index 100%
rename from docs/src/pages/docs/_assets/threads-favorites-and-recents.png
rename to docs/src/pages/docs/desktop/_assets/threads-favorites-and-recents.png
diff --git a/docs/src/pages/docs/_assets/threads-new-chat-updated.png b/docs/src/pages/docs/desktop/_assets/threads-new-chat-updated.png
similarity index 100%
rename from docs/src/pages/docs/_assets/threads-new-chat-updated.png
rename to docs/src/pages/docs/desktop/_assets/threads-new-chat-updated.png
diff --git a/docs/src/pages/docs/_assets/threads-new-chat.png b/docs/src/pages/docs/desktop/_assets/threads-new-chat.png
similarity index 100%
rename from docs/src/pages/docs/_assets/threads-new-chat.png
rename to docs/src/pages/docs/desktop/_assets/threads-new-chat.png
diff --git a/docs/src/pages/docs/_assets/todoist1.png b/docs/src/pages/docs/desktop/_assets/todoist1.png
similarity index 100%
rename from docs/src/pages/docs/_assets/todoist1.png
rename to docs/src/pages/docs/desktop/_assets/todoist1.png
diff --git a/docs/src/pages/docs/_assets/todoist2.png b/docs/src/pages/docs/desktop/_assets/todoist2.png
similarity index 100%
rename from docs/src/pages/docs/_assets/todoist2.png
rename to docs/src/pages/docs/desktop/_assets/todoist2.png
diff --git a/docs/src/pages/docs/_assets/todoist3.png b/docs/src/pages/docs/desktop/_assets/todoist3.png
similarity index 100%
rename from docs/src/pages/docs/_assets/todoist3.png
rename to docs/src/pages/docs/desktop/_assets/todoist3.png
diff --git a/docs/src/pages/docs/_assets/todoist4.png b/docs/src/pages/docs/desktop/_assets/todoist4.png
similarity index 100%
rename from docs/src/pages/docs/_assets/todoist4.png
rename to docs/src/pages/docs/desktop/_assets/todoist4.png
diff --git a/docs/src/pages/docs/_assets/todoist5.png b/docs/src/pages/docs/desktop/_assets/todoist5.png
similarity index 100%
rename from docs/src/pages/docs/_assets/todoist5.png
rename to docs/src/pages/docs/desktop/_assets/todoist5.png
diff --git a/docs/src/pages/docs/_assets/together.png b/docs/src/pages/docs/desktop/_assets/together.png
similarity index 100%
rename from docs/src/pages/docs/_assets/together.png
rename to docs/src/pages/docs/desktop/_assets/together.png
diff --git a/docs/src/pages/docs/_assets/toggle_tools.png b/docs/src/pages/docs/desktop/_assets/toggle_tools.png
similarity index 100%
rename from docs/src/pages/docs/_assets/toggle_tools.png
rename to docs/src/pages/docs/desktop/_assets/toggle_tools.png
diff --git a/docs/src/pages/docs/_assets/trouble-shooting-01.png b/docs/src/pages/docs/desktop/_assets/trouble-shooting-01.png
similarity index 100%
rename from docs/src/pages/docs/_assets/trouble-shooting-01.png
rename to docs/src/pages/docs/desktop/_assets/trouble-shooting-01.png
diff --git a/docs/src/pages/docs/_assets/trouble-shooting-02.png b/docs/src/pages/docs/desktop/_assets/trouble-shooting-02.png
similarity index 100%
rename from docs/src/pages/docs/_assets/trouble-shooting-02.png
rename to docs/src/pages/docs/desktop/_assets/trouble-shooting-02.png
diff --git a/docs/src/pages/docs/_assets/trouble-shooting-03.png b/docs/src/pages/docs/desktop/_assets/trouble-shooting-03.png
similarity index 100%
rename from docs/src/pages/docs/_assets/trouble-shooting-03.png
rename to docs/src/pages/docs/desktop/_assets/trouble-shooting-03.png
diff --git a/docs/src/pages/docs/_assets/trouble-shooting-04.png b/docs/src/pages/docs/desktop/_assets/trouble-shooting-04.png
similarity index 100%
rename from docs/src/pages/docs/_assets/trouble-shooting-04.png
rename to docs/src/pages/docs/desktop/_assets/trouble-shooting-04.png
diff --git a/docs/src/pages/docs/_assets/turn_on_mcp.png b/docs/src/pages/docs/desktop/_assets/turn_on_mcp.png
similarity index 100%
rename from docs/src/pages/docs/_assets/turn_on_mcp.png
rename to docs/src/pages/docs/desktop/_assets/turn_on_mcp.png
diff --git a/docs/src/pages/docs/desktop/_meta.json b/docs/src/pages/docs/desktop/_meta.json
index 5cc930af7..36c70cf27 100644
--- a/docs/src/pages/docs/desktop/_meta.json
+++ b/docs/src/pages/docs/desktop/_meta.json
@@ -1,14 +1,47 @@
{
- "mac": {
- "title": "Mac",
- "href": "/docs/desktop/mac"
+ "get-started-separator": {
+ "title": "Get started",
+ "type": "separator"
},
- "windows": {
- "title": "Windows",
- "href": "/docs/desktop/windows"
+ "index": "Overview",
+ "quickstart": "Quickstart",
+ "install": "Install 👋 Jan",
+ "jan-models": "Models",
+ "remote-models": "Cloud Providers",
+ "mcp-examples": "Tutorials",
+ "coreconcepts-separator": {
+ "title": "Core concepts",
+ "type": "separator"
},
- "linux": {
- "title": "Linux",
- "href": "/docs/desktop/linux"
- }
+ "assistants": "Assistants",
+ "llama-cpp": "Local AI Engine",
+ "model-parameters": "Model Parameters",
+ "privacy-policy": {
+ "type": "page",
+ "display": "hidden",
+ "title": "Privacy Policy"
+ },
+ "advanced-separator": {
+ "title": "ADVANCED",
+ "type": "separator"
+ },
+ "manage-models": "Manage Models",
+ "mcp": "Model Context Protocol",
+ "localserver": {
+ "title": "LOCAL SERVER",
+ "type": "separator"
+ },
+ "api-server": "Server Setup",
+ "llama-cpp-server": "LlamaCpp Server",
+ "server-settings": "Server Settings",
+ "server-troubleshooting": "Server Troubleshooting",
+ "server-examples": "Integrations",
+ "reference-separator": {
+ "title": "REFERENCE",
+ "type": "separator"
+ },
+ "settings": "Settings",
+ "data-folder": "Jan Data Folder",
+ "troubleshooting": "Troubleshooting",
+ "privacy": "Privacy"
}
diff --git a/docs/src/pages/docs/api-server.mdx b/docs/src/pages/docs/desktop/api-server.mdx
similarity index 100%
rename from docs/src/pages/docs/api-server.mdx
rename to docs/src/pages/docs/desktop/api-server.mdx
diff --git a/docs/src/pages/docs/assistants.mdx b/docs/src/pages/docs/desktop/assistants.mdx
similarity index 100%
rename from docs/src/pages/docs/assistants.mdx
rename to docs/src/pages/docs/desktop/assistants.mdx
diff --git a/docs/src/pages/docs/data-folder.mdx b/docs/src/pages/docs/desktop/data-folder.mdx
similarity index 100%
rename from docs/src/pages/docs/data-folder.mdx
rename to docs/src/pages/docs/desktop/data-folder.mdx
diff --git a/docs/src/pages/docs/desktop/index.mdx b/docs/src/pages/docs/desktop/index.mdx
new file mode 100644
index 000000000..5e37e76b3
--- /dev/null
+++ b/docs/src/pages/docs/desktop/index.mdx
@@ -0,0 +1,249 @@
+---
+title: Overview
+description: Working towards open superintelligence through community-driven AI
+keywords:
+ [
+ Jan,
+ Jan AI,
+ open superintelligence,
+ AI ecosystem,
+ local AI,
+ private AI,
+ self-hosted AI,
+ llama.cpp,
+ Model Context Protocol,
+ MCP,
+ GGUF models,
+ large language model,
+ LLM,
+ ]
+---
+
+import { Callout } from 'nextra/components'
+import FAQBox from '@/components/FaqBox'
+
+# Jan
+
+
+
+## Jan's Goal
+
+> We're working towards open superintelligence to make a viable open-source alternative to platforms like ChatGPT
+and Claude that anyone can own and run.
+
+## What is Jan Today
+
+Jan is an open-source AI platform that runs on your hardware. We believe AI should be in the hands of many, not
+controlled by a few tech giants.
+
+Today, Jan is:
+- **A desktop app** that runs AI models locally or connects to cloud providers
+- **A model hub** making the latest open-source models accessible
+- **A connector system** that lets AI interact with real-world tools via MCP
+
+Tomorrow, Jan aims to be a complete ecosystem where open models rival or exceed closed alternatives.
+
+
+We're building this with the open-source AI community, using the best available tools, and sharing everything
+we learn along the way.
+
+
+## The Jan Ecosystem
+
+### Jan Apps
+**Available Now:**
+- **Desktop**: Full-featured AI workstation for Windows, Mac, and Linux
+
+**Coming Late 2025:**
+- **Mobile**: Jan on your phone
+- **Web**: Browser-based access at jan.ai
+- **Server**: Self-hosted for teams
+- **Extensions**: Browser extension for Chrome-based browsers
+
+### Jan Model Hub
+Making open-source AI accessible to everyone:
+- **Easy Downloads**: One-click model installation
+- **Jan Models**: Our own models optimized for local use
+ - **Jan-v1**: 4B reasoning model specialized in web search
+ - **Research Models**
+ - **Jan-Nano (32k/128k)**: 4B model for web search with MCP tools
+ - **Lucy**: 1.7B mobile-optimized for web search
+- **Community Models**: Any GGUF from Hugging Face works in Jan
+- **Cloud Models**: Connect your API keys for OpenAI, Anthropic, Gemini, and more
+
+
+### Jan Connectors Hub
+Connect AI to the tools you use daily via [Model Context Protocol](./mcp):
+
+**Creative & Design:**
+- **Canva**: Generate and edit designs
+
+**Data & Analysis:**
+- **Jupyter**: Run Python notebooks
+- **E2B**: Execute code in sandboxes
+
+**Web & Search:**
+- **Browserbase & Browser Use**: Browser automation
+- **Exa, Serper, Perplexity**: Advanced web search
+- **Octagon**: Deep research capabilities
+
+**Productivity:**
+- **Linear**: Project management
+- **Todoist**: Task management
+
+## Core Features
+
+- **Run Models Locally**: Download any GGUF model from Hugging Face, use OpenAI's gpt-oss models,
+or connect to cloud providers
+- **OpenAI-Compatible API**: Local server at `localhost:1337` works with tools like
+[Continue](./server-examples/continue-dev) and [Cline](https://cline.bot/)
+- **Extend with MCP Tools**: Browser automation, web search, data analysis, and design tools, all
+through natural language
+- **Your Choice of Infrastructure**: Run on your laptop, self-host on your servers (soon), or use
+cloud when you need it
+
+## Philosophy
+
+Jan is built to be user-owned:
+- **Open Source**: Apache 2.0 license
+- **Local First**: Your data stays on your device. Internet is optional
+- **Privacy Focused**: We don't collect or sell user data. See our [Privacy Policy](./privacy)
+- **No Lock-in**: Export your data anytime. Use any model. Switch between local and cloud
+
+
+The best AI is the one you control. Not the one that others control for you.
+
+
+## The Path Forward
+
+### What Works Today
+- Run powerful models locally on consumer hardware
+- Connect to any cloud provider with your API keys
+- Use MCP tools for real-world tasks
+- Access transparent model evaluations
+
+### What We're Building
+- More specialized models that excel at specific tasks
+- Expanded app ecosystem (mobile, web, extensions)
+- Richer connector ecosystem
+- An evaluation framework to build better models
+
+### The Long-Term Vision
+We're working towards open superintelligence where:
+- Open models match or exceed closed alternatives
+- Anyone can run powerful AI on their own hardware
+- The community drives innovation, not corporations
+- AI capabilities are owned by users, not rented
+
+
+This is an ambitious goal without a guaranteed path. We're betting on the open-source community, improved
+hardware, and better techniques, but we're honest that this is a journey, not a destination we've reached.
+
+
+## Quick Start
+
+1. [Download Jan](./quickstart) for your operating system
+2. Choose a model - download locally or add cloud API keys
+3. Start chatting or connect tools via MCP
+4. Build with our [local API](./api-server)
+
+## Acknowledgements
+
+Jan is built on the shoulders of giants:
+- [Llama.cpp](https://github.com/ggerganov/llama.cpp) for inference
+- [Model Context Protocol](https://modelcontextprotocol.io) for tool integration
+- The open-source community that makes this possible
+
+## FAQs
+
+
+ Jan is an open-source AI platform working towards a viable alternative to Big Tech AI. Today it's a desktop app that runs models locally or connects to cloud providers. Tomorrow it aims to be a complete ecosystem rivaling platforms like ChatGPT and Claude.
+
+
+
+ Other platforms are models behind APIs you rent. Jan is a complete AI ecosystem you own. Run any model, use real tools through MCP, keep your data private, and never pay subscriptions for local use.
+
+
+
+ **Jan Models:**
+ - Jan-Nano (32k/128k) - Research and analysis with MCP integration
+ - Lucy - Mobile-optimized search (1.7B)
+ - Jan-v1 - Reasoning and tool use (4B)
+
+ **Open Source:**
+ - OpenAI's gpt-oss models (120b and 20b)
+ - Any GGUF model from Hugging Face
+
+ **Cloud (with your API keys):**
+ - OpenAI, Anthropic, Mistral, Groq, and more
+
+
+
+ MCP (Model Context Protocol) lets AI interact with real applications. Instead of just generating text, your AI can create designs in Canva, analyze data in Jupyter, browse the web, and execute code - all through conversation.
+
+
+
+ **Supported OS**:
+ - [Windows 10+](/docs/desktop/windows#compatibility)
+ - [macOS 12+](/docs/desktop/mac#compatibility)
+ - [Linux (Ubuntu 20.04+)](/docs/desktop/linux)
+
+ **Hardware**:
+ - Minimum: 8GB RAM, 10GB storage
+ - Recommended: 16GB RAM, GPU (NVIDIA/AMD/Intel/Apple), 50GB storage
+
+
+
+ Honestly? It's ambitious and uncertain. We believe the combination of rapidly improving open models, better consumer hardware, community innovation, and specialized models working together can eventually rival closed platforms. But this is a multi-year journey with no guarantees. What we can guarantee is that we'll keep building in the open, with the community, towards this goal.
+
+
+
+ Right now, Jan can:
+ - Run models like Llama, Mistral, and our own Jan models locally
+ - Connect to cloud providers if you want more power
+ - Use MCP tools to create designs, analyze data, browse the web, and more
+ - Work completely offline once models are downloaded
+ - Provide an OpenAI-compatible API for developers
+
+
+
+ **Local use**: Always free, no catches
+ **Cloud models**: You pay providers directly (we add no markup)
+ **Jan cloud**: Optional paid services coming 2025
+
+ The core platform will always be free and open source.
+
+
+
+ - Runs 100% offline once models are downloaded
+ - All data stored locally in [Jan Data Folder](/docs/data-folder)
+ - No telemetry without explicit consent
+ - Open source code you can audit
+
+
+ When using cloud providers through Jan, their privacy policies apply.
+
+
+
+
+ Yes. Download directly or build from [source](https://github.com/menloresearch/jan). Jan Server for production deployments coming late 2025.
+
+
+
+ - **Jan Web**: Beta late 2025
+ - **Jan Mobile**: Late 2025
+ - **Jan Server**: Late 2025
+
+ All versions will sync seamlessly.
+
+
+
+ - Code: [GitHub](https://github.com/menloresearch/jan)
+ - Community: [Discord](https://discord.gg/FTk2MvZwJH)
+ - Testing: Help evaluate models and report bugs
+ - Documentation: Improve guides and tutorials
+
+
+
+ Yes! We love hiring from our community. Check [Careers](https://menlo.bamboohr.com/careers).
+
diff --git a/docs/src/pages/docs/desktop/linux.mdx b/docs/src/pages/docs/desktop/install/linux.mdx
similarity index 100%
rename from docs/src/pages/docs/desktop/linux.mdx
rename to docs/src/pages/docs/desktop/install/linux.mdx
diff --git a/docs/src/pages/docs/desktop/mac.mdx b/docs/src/pages/docs/desktop/install/mac.mdx
similarity index 100%
rename from docs/src/pages/docs/desktop/mac.mdx
rename to docs/src/pages/docs/desktop/install/mac.mdx
diff --git a/docs/src/pages/docs/desktop/windows.mdx b/docs/src/pages/docs/desktop/install/windows.mdx
similarity index 100%
rename from docs/src/pages/docs/desktop/windows.mdx
rename to docs/src/pages/docs/desktop/install/windows.mdx
diff --git a/docs/src/pages/docs/jan-models/jan-nano-128.mdx b/docs/src/pages/docs/desktop/jan-models/jan-nano-128.mdx
similarity index 100%
rename from docs/src/pages/docs/jan-models/jan-nano-128.mdx
rename to docs/src/pages/docs/desktop/jan-models/jan-nano-128.mdx
diff --git a/docs/src/pages/docs/jan-models/jan-nano-32.mdx b/docs/src/pages/docs/desktop/jan-models/jan-nano-32.mdx
similarity index 100%
rename from docs/src/pages/docs/jan-models/jan-nano-32.mdx
rename to docs/src/pages/docs/desktop/jan-models/jan-nano-32.mdx
diff --git a/docs/src/pages/docs/jan-models/jan-v1.mdx b/docs/src/pages/docs/desktop/jan-models/jan-v1.mdx
similarity index 100%
rename from docs/src/pages/docs/jan-models/jan-v1.mdx
rename to docs/src/pages/docs/desktop/jan-models/jan-v1.mdx
diff --git a/docs/src/pages/docs/jan-models/lucy.mdx b/docs/src/pages/docs/desktop/jan-models/lucy.mdx
similarity index 100%
rename from docs/src/pages/docs/jan-models/lucy.mdx
rename to docs/src/pages/docs/desktop/jan-models/lucy.mdx
diff --git a/docs/src/pages/docs/llama-cpp-server.mdx b/docs/src/pages/docs/desktop/llama-cpp-server.mdx
similarity index 100%
rename from docs/src/pages/docs/llama-cpp-server.mdx
rename to docs/src/pages/docs/desktop/llama-cpp-server.mdx
diff --git a/docs/src/pages/docs/llama-cpp.mdx b/docs/src/pages/docs/desktop/llama-cpp.mdx
similarity index 100%
rename from docs/src/pages/docs/llama-cpp.mdx
rename to docs/src/pages/docs/desktop/llama-cpp.mdx
diff --git a/docs/src/pages/docs/manage-models.mdx b/docs/src/pages/docs/desktop/manage-models.mdx
similarity index 100%
rename from docs/src/pages/docs/manage-models.mdx
rename to docs/src/pages/docs/desktop/manage-models.mdx
diff --git a/docs/src/pages/docs/mcp-examples/_meta.json b/docs/src/pages/docs/desktop/mcp-examples/_meta.json
similarity index 100%
rename from docs/src/pages/docs/mcp-examples/_meta.json
rename to docs/src/pages/docs/desktop/mcp-examples/_meta.json
diff --git a/docs/src/pages/docs/desktop/mcp-examples/browser/_meta.json b/docs/src/pages/docs/desktop/mcp-examples/browser/_meta.json
new file mode 100644
index 000000000..da0e375ee
--- /dev/null
+++ b/docs/src/pages/docs/desktop/mcp-examples/browser/_meta.json
@@ -0,0 +1,5 @@
+{
+ "browserbase": {
+ "title": "Browserbase"
+ }
+}
diff --git a/docs/src/pages/docs/mcp-examples/browser/browserbase.mdx b/docs/src/pages/docs/desktop/mcp-examples/browser/browserbase.mdx
similarity index 100%
rename from docs/src/pages/docs/mcp-examples/browser/browserbase.mdx
rename to docs/src/pages/docs/desktop/mcp-examples/browser/browserbase.mdx
diff --git a/docs/src/pages/docs/desktop/mcp-examples/data-analysis/_meta.json b/docs/src/pages/docs/desktop/mcp-examples/data-analysis/_meta.json
new file mode 100644
index 000000000..bda882d7d
--- /dev/null
+++ b/docs/src/pages/docs/desktop/mcp-examples/data-analysis/_meta.json
@@ -0,0 +1,8 @@
+{
+ "e2b": {
+ "title": "E2B Code Sandbox"
+ },
+ "jupyter": {
+ "title": "Jupyter Notebooks"
+ }
+}
diff --git a/docs/src/pages/docs/mcp-examples/data-analysis/e2b.mdx b/docs/src/pages/docs/desktop/mcp-examples/data-analysis/e2b.mdx
similarity index 100%
rename from docs/src/pages/docs/mcp-examples/data-analysis/e2b.mdx
rename to docs/src/pages/docs/desktop/mcp-examples/data-analysis/e2b.mdx
diff --git a/docs/src/pages/docs/mcp-examples/data-analysis/jupyter.mdx b/docs/src/pages/docs/desktop/mcp-examples/data-analysis/jupyter.mdx
similarity index 100%
rename from docs/src/pages/docs/mcp-examples/data-analysis/jupyter.mdx
rename to docs/src/pages/docs/desktop/mcp-examples/data-analysis/jupyter.mdx
diff --git a/docs/src/pages/docs/desktop/mcp-examples/deepresearch/_meta.json b/docs/src/pages/docs/desktop/mcp-examples/deepresearch/_meta.json
new file mode 100644
index 000000000..4d2faafd4
--- /dev/null
+++ b/docs/src/pages/docs/desktop/mcp-examples/deepresearch/_meta.json
@@ -0,0 +1,5 @@
+{
+ "octagon": {
+ "title": "Octagon Deep Research"
+ }
+}
diff --git a/docs/src/pages/docs/mcp-examples/deepresearch/octagon.mdx b/docs/src/pages/docs/desktop/mcp-examples/deepresearch/octagon.mdx
similarity index 100%
rename from docs/src/pages/docs/mcp-examples/deepresearch/octagon.mdx
rename to docs/src/pages/docs/desktop/mcp-examples/deepresearch/octagon.mdx
diff --git a/docs/src/pages/docs/desktop/mcp-examples/design/_meta.json b/docs/src/pages/docs/desktop/mcp-examples/design/_meta.json
new file mode 100644
index 000000000..9d9313837
--- /dev/null
+++ b/docs/src/pages/docs/desktop/mcp-examples/design/_meta.json
@@ -0,0 +1,5 @@
+{
+ "canva": {
+ "title": "Canva"
+ }
+}
diff --git a/docs/src/pages/docs/mcp-examples/design/canva.mdx b/docs/src/pages/docs/desktop/mcp-examples/design/canva.mdx
similarity index 100%
rename from docs/src/pages/docs/mcp-examples/design/canva.mdx
rename to docs/src/pages/docs/desktop/mcp-examples/design/canva.mdx
diff --git a/docs/src/pages/docs/desktop/mcp-examples/productivity/_meta.json b/docs/src/pages/docs/desktop/mcp-examples/productivity/_meta.json
new file mode 100644
index 000000000..8bed55d0c
--- /dev/null
+++ b/docs/src/pages/docs/desktop/mcp-examples/productivity/_meta.json
@@ -0,0 +1,8 @@
+{
+ "todoist": {
+ "title": "Todoist"
+ },
+ "linear": {
+ "title": "Linear"
+ }
+}
diff --git a/docs/src/pages/docs/mcp-examples/productivity/linear.mdx b/docs/src/pages/docs/desktop/mcp-examples/productivity/linear.mdx
similarity index 100%
rename from docs/src/pages/docs/mcp-examples/productivity/linear.mdx
rename to docs/src/pages/docs/desktop/mcp-examples/productivity/linear.mdx
diff --git a/docs/src/pages/docs/mcp-examples/productivity/todoist.mdx b/docs/src/pages/docs/desktop/mcp-examples/productivity/todoist.mdx
similarity index 100%
rename from docs/src/pages/docs/mcp-examples/productivity/todoist.mdx
rename to docs/src/pages/docs/desktop/mcp-examples/productivity/todoist.mdx
diff --git a/docs/src/pages/docs/desktop/mcp-examples/search/_meta.json b/docs/src/pages/docs/desktop/mcp-examples/search/_meta.json
new file mode 100644
index 000000000..649e3e15e
--- /dev/null
+++ b/docs/src/pages/docs/desktop/mcp-examples/search/_meta.json
@@ -0,0 +1,8 @@
+{
+ "exa": {
+ "title": "Exa Search"
+ },
+ "serper": {
+ "title": "Serper Search"
+ }
+}
diff --git a/docs/src/pages/docs/mcp-examples/search/exa.mdx b/docs/src/pages/docs/desktop/mcp-examples/search/exa.mdx
similarity index 100%
rename from docs/src/pages/docs/mcp-examples/search/exa.mdx
rename to docs/src/pages/docs/desktop/mcp-examples/search/exa.mdx
diff --git a/docs/src/pages/docs/mcp-examples/search/serper.mdx b/docs/src/pages/docs/desktop/mcp-examples/search/serper.mdx
similarity index 100%
rename from docs/src/pages/docs/mcp-examples/search/serper.mdx
rename to docs/src/pages/docs/desktop/mcp-examples/search/serper.mdx
diff --git a/docs/src/pages/docs/mcp.mdx b/docs/src/pages/docs/desktop/mcp.mdx
similarity index 100%
rename from docs/src/pages/docs/mcp.mdx
rename to docs/src/pages/docs/desktop/mcp.mdx
diff --git a/docs/src/pages/docs/model-parameters.mdx b/docs/src/pages/docs/desktop/model-parameters.mdx
similarity index 100%
rename from docs/src/pages/docs/model-parameters.mdx
rename to docs/src/pages/docs/desktop/model-parameters.mdx
diff --git a/docs/src/pages/docs/privacy-policy.mdx b/docs/src/pages/docs/desktop/privacy-policy.mdx
similarity index 100%
rename from docs/src/pages/docs/privacy-policy.mdx
rename to docs/src/pages/docs/desktop/privacy-policy.mdx
diff --git a/docs/src/pages/docs/privacy.mdx b/docs/src/pages/docs/desktop/privacy.mdx
similarity index 100%
rename from docs/src/pages/docs/privacy.mdx
rename to docs/src/pages/docs/desktop/privacy.mdx
diff --git a/docs/src/pages/docs/quickstart.mdx b/docs/src/pages/docs/desktop/quickstart.mdx
similarity index 100%
rename from docs/src/pages/docs/quickstart.mdx
rename to docs/src/pages/docs/desktop/quickstart.mdx
diff --git a/docs/src/pages/docs/desktop/remote-models/_meta.json b/docs/src/pages/docs/desktop/remote-models/_meta.json
new file mode 100644
index 000000000..60268b73c
--- /dev/null
+++ b/docs/src/pages/docs/desktop/remote-models/_meta.json
@@ -0,0 +1,26 @@
+{
+ "anthropic": {
+ "title": "Anthropic"
+ },
+ "cohere": {
+ "title": "Cohere"
+ },
+ "google": {
+ "title": "Gemini"
+ },
+ "groq": {
+ "title": "Groq"
+ },
+ "mistralai": {
+ "title": "Mistral AI"
+ },
+ "openai": {
+ "title": "OpenAI"
+ },
+ "openrouter": {
+ "title": "OpenRouter"
+ },
+ "huggingface": {
+ "title": "Hugging Face"
+ }
+}
diff --git a/docs/src/pages/docs/remote-models/anthropic.mdx b/docs/src/pages/docs/desktop/remote-models/anthropic.mdx
similarity index 100%
rename from docs/src/pages/docs/remote-models/anthropic.mdx
rename to docs/src/pages/docs/desktop/remote-models/anthropic.mdx
diff --git a/docs/src/pages/docs/remote-models/cohere.mdx b/docs/src/pages/docs/desktop/remote-models/cohere.mdx
similarity index 100%
rename from docs/src/pages/docs/remote-models/cohere.mdx
rename to docs/src/pages/docs/desktop/remote-models/cohere.mdx
diff --git a/docs/src/pages/docs/remote-models/google.mdx b/docs/src/pages/docs/desktop/remote-models/google.mdx
similarity index 100%
rename from docs/src/pages/docs/remote-models/google.mdx
rename to docs/src/pages/docs/desktop/remote-models/google.mdx
diff --git a/docs/src/pages/docs/remote-models/groq.mdx b/docs/src/pages/docs/desktop/remote-models/groq.mdx
similarity index 100%
rename from docs/src/pages/docs/remote-models/groq.mdx
rename to docs/src/pages/docs/desktop/remote-models/groq.mdx
diff --git a/docs/src/pages/docs/remote-models/huggingface.mdx b/docs/src/pages/docs/desktop/remote-models/huggingface.mdx
similarity index 100%
rename from docs/src/pages/docs/remote-models/huggingface.mdx
rename to docs/src/pages/docs/desktop/remote-models/huggingface.mdx
diff --git a/docs/src/pages/docs/remote-models/mistralai.mdx b/docs/src/pages/docs/desktop/remote-models/mistralai.mdx
similarity index 100%
rename from docs/src/pages/docs/remote-models/mistralai.mdx
rename to docs/src/pages/docs/desktop/remote-models/mistralai.mdx
diff --git a/docs/src/pages/docs/remote-models/openai.mdx b/docs/src/pages/docs/desktop/remote-models/openai.mdx
similarity index 100%
rename from docs/src/pages/docs/remote-models/openai.mdx
rename to docs/src/pages/docs/desktop/remote-models/openai.mdx
diff --git a/docs/src/pages/docs/remote-models/openrouter.mdx b/docs/src/pages/docs/desktop/remote-models/openrouter.mdx
similarity index 100%
rename from docs/src/pages/docs/remote-models/openrouter.mdx
rename to docs/src/pages/docs/desktop/remote-models/openrouter.mdx
diff --git a/docs/src/pages/docs/server-examples/continue-dev.mdx b/docs/src/pages/docs/desktop/server-examples/continue-dev.mdx
similarity index 100%
rename from docs/src/pages/docs/server-examples/continue-dev.mdx
rename to docs/src/pages/docs/desktop/server-examples/continue-dev.mdx
diff --git a/docs/src/pages/docs/server-examples/llmcord.mdx b/docs/src/pages/docs/desktop/server-examples/llmcord.mdx
similarity index 100%
rename from docs/src/pages/docs/server-examples/llmcord.mdx
rename to docs/src/pages/docs/desktop/server-examples/llmcord.mdx
diff --git a/docs/src/pages/docs/server-examples/n8n.mdx b/docs/src/pages/docs/desktop/server-examples/n8n.mdx
similarity index 100%
rename from docs/src/pages/docs/server-examples/n8n.mdx
rename to docs/src/pages/docs/desktop/server-examples/n8n.mdx
diff --git a/docs/src/pages/docs/server-examples/tabby.mdx b/docs/src/pages/docs/desktop/server-examples/tabby.mdx
similarity index 100%
rename from docs/src/pages/docs/server-examples/tabby.mdx
rename to docs/src/pages/docs/desktop/server-examples/tabby.mdx
diff --git a/docs/src/pages/docs/server-settings.mdx b/docs/src/pages/docs/desktop/server-settings.mdx
similarity index 100%
rename from docs/src/pages/docs/server-settings.mdx
rename to docs/src/pages/docs/desktop/server-settings.mdx
diff --git a/docs/src/pages/docs/server-troubleshooting.mdx b/docs/src/pages/docs/desktop/server-troubleshooting.mdx
similarity index 100%
rename from docs/src/pages/docs/server-troubleshooting.mdx
rename to docs/src/pages/docs/desktop/server-troubleshooting.mdx
diff --git a/docs/src/pages/docs/settings.mdx b/docs/src/pages/docs/desktop/settings.mdx
similarity index 100%
rename from docs/src/pages/docs/settings.mdx
rename to docs/src/pages/docs/desktop/settings.mdx
diff --git a/docs/src/pages/docs/troubleshooting.mdx b/docs/src/pages/docs/desktop/troubleshooting.mdx
similarity index 100%
rename from docs/src/pages/docs/troubleshooting.mdx
rename to docs/src/pages/docs/desktop/troubleshooting.mdx
diff --git a/docs/src/pages/docs/index.mdx b/docs/src/pages/docs/index.mdx
index 27b51f5c2..15b83f2d0 100644
--- a/docs/src/pages/docs/index.mdx
+++ b/docs/src/pages/docs/index.mdx
@@ -1,249 +1,12 @@
----
-title: Jan
-description: Working towards open superintelligence through community-driven AI
-keywords:
- [
- Jan,
- Jan AI,
- open superintelligence,
- AI ecosystem,
- local AI,
- private AI,
- self-hosted AI,
- llama.cpp,
- Model Context Protocol,
- MCP,
- GGUF models,
- large language model,
- LLM,
- ]
----
+import { useRouter } from 'next/router'
+import { useEffect } from 'react'
-import { Callout } from 'nextra/components'
-import FAQBox from '@/components/FaqBox'
-
-# Jan
-
-
-
-## Jan's Goal
-
-> We're working towards open superintelligence to make a viable open-source alternative to platforms like ChatGPT
-and Claude that anyone can own and run.
-
-## What is Jan Today
-
-Jan is an open-source AI platform that runs on your hardware. We believe AI should be in the hands of many, not
-controlled by a few tech giants.
-
-Today, Jan is:
-- **A desktop app** that runs AI models locally or connects to cloud providers
-- **A model hub** making the latest open-source models accessible
-- **A connector system** that lets AI interact with real-world tools via MCP
-
-Tomorrow, Jan aims to be a complete ecosystem where open models rival or exceed closed alternatives.
-
-
-We're building this with the open-source AI community, using the best available tools, and sharing everything
-we learn along the way.
-
-
-## The Jan Ecosystem
-
-### Jan Apps
-**Available Now:**
-- **Desktop**: Full-featured AI workstation for Windows, Mac, and Linux
-
-**Coming Late 2025:**
-- **Mobile**: Jan on your phone
-- **Web**: Browser-based access at jan.ai
-- **Server**: Self-hosted for teams
-- **Extensions**: Browser extension for Chrome-based browsers
-
-### Jan Model Hub
-Making open-source AI accessible to everyone:
-- **Easy Downloads**: One-click model installation
-- **Jan Models**: Our own models optimized for local use
- - **Jan-v1**: 4B reasoning model specialized in web search
- - **Research Models**
- - **Jan-Nano (32k/128k)**: 4B model for web search with MCP tools
- - **Lucy**: 1.7B mobile-optimized for web search
-- **Community Models**: Any GGUF from Hugging Face works in Jan
-- **Cloud Models**: Connect your API keys for OpenAI, Anthropic, Gemini, and more
-
-
-### Jan Connectors Hub
-Connect AI to the tools you use daily via [Model Context Protocol](./mcp):
-
-**Creative & Design:**
-- **Canva**: Generate and edit designs
-
-**Data & Analysis:**
-- **Jupyter**: Run Python notebooks
-- **E2B**: Execute code in sandboxes
-
-**Web & Search:**
-- **Browserbase & Browser Use**: Browser automation
-- **Exa, Serper, Perplexity**: Advanced web search
-- **Octagon**: Deep research capabilities
-
-**Productivity:**
-- **Linear**: Project management
-- **Todoist**: Task management
-
-## Core Features
-
-- **Run Models Locally**: Download any GGUF model from Hugging Face, use OpenAI's gpt-oss models,
-or connect to cloud providers
-- **OpenAI-Compatible API**: Local server at `localhost:1337` works with tools like
-[Continue](./server-examples/continue-dev) and [Cline](https://cline.bot/)
-- **Extend with MCP Tools**: Browser automation, web search, data analysis, and design tools, all
-through natural language
-- **Your Choice of Infrastructure**: Run on your laptop, self-host on your servers (soon), or use
-cloud when you need it
-
-## Philosophy
-
-Jan is built to be user-owned:
-- **Open Source**: Apache 2.0 license
-- **Local First**: Your data stays on your device. Internet is optional
-- **Privacy Focused**: We don't collect or sell user data. See our [Privacy Policy](./privacy)
-- **No Lock-in**: Export your data anytime. Use any model. Switch between local and cloud
-
-
-The best AI is the one you control. Not the one that others control for you.
-
-
-## The Path Forward
-
-### What Works Today
-- Run powerful models locally on consumer hardware
-- Connect to any cloud provider with your API keys
-- Use MCP tools for real-world tasks
-- Access transparent model evaluations
-
-### What We're Building
-- More specialized models that excel at specific tasks
-- Expanded app ecosystem (mobile, web, extensions)
-- Richer connector ecosystem
-- An evaluation framework to build better models
-
-### The Long-Term Vision
-We're working towards open superintelligence where:
-- Open models match or exceed closed alternatives
-- Anyone can run powerful AI on their own hardware
-- The community drives innovation, not corporations
-- AI capabilities are owned by users, not rented
-
-
-This is an ambitious goal without a guaranteed path. We're betting on the open-source community, improved
-hardware, and better techniques, but we're honest that this is a journey, not a destination we've reached.
-
-
-## Quick Start
-
-1. [Download Jan](./quickstart) for your operating system
-2. Choose a model - download locally or add cloud API keys
-3. Start chatting or connect tools via MCP
-4. Build with our [local API](./api-server)
-
-## Acknowledgements
-
-Jan is built on the shoulders of giants:
-- [Llama.cpp](https://github.com/ggerganov/llama.cpp) for inference
-- [Model Context Protocol](https://modelcontextprotocol.io) for tool integration
-- The open-source community that makes this possible
-
-## FAQs
-
-
- Jan is an open-source AI platform working towards a viable alternative to Big Tech AI. Today it's a desktop app that runs models locally or connects to cloud providers. Tomorrow it aims to be a complete ecosystem rivaling platforms like ChatGPT and Claude.
-
-
-
- Other platforms are models behind APIs you rent. Jan is a complete AI ecosystem you own. Run any model, use real tools through MCP, keep your data private, and never pay subscriptions for local use.
-
-
-
- **Jan Models:**
- - Jan-Nano (32k/128k) - Research and analysis with MCP integration
- - Lucy - Mobile-optimized search (1.7B)
- - Jan-v1 - Reasoning and tool use (4B)
-
- **Open Source:**
- - OpenAI's gpt-oss models (120b and 20b)
- - Any GGUF model from Hugging Face
-
- **Cloud (with your API keys):**
- - OpenAI, Anthropic, Mistral, Groq, and more
-
-
-
- MCP (Model Context Protocol) lets AI interact with real applications. Instead of just generating text, your AI can create designs in Canva, analyze data in Jupyter, browse the web, and execute code - all through conversation.
-
-
-
- **Supported OS**:
- - [Windows 10+](/docs/desktop/windows#compatibility)
- - [macOS 12+](/docs/desktop/mac#compatibility)
- - [Linux (Ubuntu 20.04+)](/docs/desktop/linux)
-
- **Hardware**:
- - Minimum: 8GB RAM, 10GB storage
- - Recommended: 16GB RAM, GPU (NVIDIA/AMD/Intel/Apple), 50GB storage
-
-
-
- Honestly? It's ambitious and uncertain. We believe the combination of rapidly improving open models, better consumer hardware, community innovation, and specialized models working together can eventually rival closed platforms. But this is a multi-year journey with no guarantees. What we can guarantee is that we'll keep building in the open, with the community, towards this goal.
-
-
-
- Right now, Jan can:
- - Run models like Llama, Mistral, and our own Jan models locally
- - Connect to cloud providers if you want more power
- - Use MCP tools to create designs, analyze data, browse the web, and more
- - Work completely offline once models are downloaded
- - Provide an OpenAI-compatible API for developers
-
-
-
- **Local use**: Always free, no catches
- **Cloud models**: You pay providers directly (we add no markup)
- **Jan cloud**: Optional paid services coming 2025
-
- The core platform will always be free and open source.
-
-
-
- - Runs 100% offline once models are downloaded
- - All data stored locally in [Jan Data Folder](/docs/data-folder)
- - No telemetry without explicit consent
- - Open source code you can audit
-
-
- When using cloud providers through Jan, their privacy policies apply.
-
-
-
-
- Yes. Download directly or build from [source](https://github.com/menloresearch/jan). Jan Server for production deployments coming late 2025.
-
-
-
- - **Jan Web**: Beta late 2025
- - **Jan Mobile**: Late 2025
- - **Jan Server**: Late 2025
-
- All versions will sync seamlessly.
-
-
-
- - Code: [GitHub](https://github.com/menloresearch/jan)
- - Community: [Discord](https://discord.gg/FTk2MvZwJH)
- - Testing: Help evaluate models and report bugs
- - Documentation: Improve guides and tutorials
-
-
-
- Yes! We love hiring from our community. Check [Careers](https://menlo.bamboohr.com/careers).
-
+export default function DocsIndex() {
+ const router = useRouter()
+
+ useEffect(() => {
+ router.replace('/docs/desktop')
+ }, [router])
+
+ return null
+}
\ No newline at end of file
diff --git a/docs/src/pages/docs/mcp-examples/browser/_meta.json b/docs/src/pages/docs/mcp-examples/browser/_meta.json
deleted file mode 100644
index faa76ef2a..000000000
--- a/docs/src/pages/docs/mcp-examples/browser/_meta.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "browserbase": {
- "title": "Browserbase",
- "href": "/docs/mcp-examples/browser/browserbase"
- }
-}
diff --git a/docs/src/pages/docs/mcp-examples/data-analysis/_meta.json b/docs/src/pages/docs/mcp-examples/data-analysis/_meta.json
deleted file mode 100644
index 43561ec1a..000000000
--- a/docs/src/pages/docs/mcp-examples/data-analysis/_meta.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "e2b": {
- "title": "E2B Code Sandbox",
- "href": "/docs/mcp-examples/data-analysis/e2b"
- },
- "jupyter": {
- "title": "Jupyter Notebooks",
- "href": "/docs/mcp-examples/data-analysis/jupyter"
- }
-}
diff --git a/docs/src/pages/docs/mcp-examples/deepresearch/_meta.json b/docs/src/pages/docs/mcp-examples/deepresearch/_meta.json
deleted file mode 100644
index c746d8e33..000000000
--- a/docs/src/pages/docs/mcp-examples/deepresearch/_meta.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "octagon": {
- "title": "Octagon Deep Research",
- "href": "/docs/mcp-examples/deepresearch/octagon"
- }
-}
diff --git a/docs/src/pages/docs/mcp-examples/design/_meta.json b/docs/src/pages/docs/mcp-examples/design/_meta.json
deleted file mode 100644
index d9f00c5d2..000000000
--- a/docs/src/pages/docs/mcp-examples/design/_meta.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "canva": {
- "title": "Canva",
- "href": "/docs/mcp-examples/design/canva"
- }
-}
diff --git a/docs/src/pages/docs/mcp-examples/productivity/_meta.json b/docs/src/pages/docs/mcp-examples/productivity/_meta.json
deleted file mode 100644
index a739472a5..000000000
--- a/docs/src/pages/docs/mcp-examples/productivity/_meta.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "todoist": {
- "title": "Todoist",
- "href": "/docs/mcp-examples/productivity/todoist"
- },
- "linear": {
- "title": "Linear",
- "href": "/docs/mcp-examples/productivity/linear"
- }
-}
diff --git a/docs/src/pages/docs/mcp-examples/search/_meta.json b/docs/src/pages/docs/mcp-examples/search/_meta.json
deleted file mode 100644
index 0ba01c4ac..000000000
--- a/docs/src/pages/docs/mcp-examples/search/_meta.json
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "exa": {
- "title": "Exa Search",
- "href": "/docs/mcp-examples/search/exa"
- },
- "serper": {
- "title": "Serper Search",
- "href": "/docs/mcp-examples/search/serper"
- }
-}
diff --git a/docs/src/pages/docs/remote-models/_meta.json b/docs/src/pages/docs/remote-models/_meta.json
deleted file mode 100644
index 9ef524352..000000000
--- a/docs/src/pages/docs/remote-models/_meta.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "anthropic": {
- "title": "Anthropic",
- "href": "/docs/remote-models/anthropic"
- },
- "cohere": {
- "title": "Cohere",
- "href": "/docs/remote-models/cohere"
- },
- "google": {
- "title": "Gemini",
- "href": "/docs/remote-models/google"
- },
- "groq": {
- "title": "Groq",
- "href": "/docs/remote-models/groq"
- },
- "mistralai": {
- "title": "Mistral AI",
- "href": "/docs/remote-models/mistralai"
- },
- "openai": {
- "title": "OpenAI",
- "href": "/docs/remote-models/openai"
- },
- "openrouter": {
- "title": "OpenRouter",
- "href": "/docs/remote-models/openrouter"
- },
- "huggingface": {
- "title": "Hugging Face",
- "href": "/docs/remote-models/huggingface"
- }
-}
diff --git a/docs/src/pages/docs/server/_meta.json b/docs/src/pages/docs/server/_meta.json
new file mode 100644
index 000000000..0fe3e4f8d
--- /dev/null
+++ b/docs/src/pages/docs/server/_meta.json
@@ -0,0 +1,31 @@
+{
+ "index": {
+ "type": "page",
+ "display": "hidden"
+ },
+ "get-started-separator": {
+ "title": "Get Started",
+ "type": "separator"
+ },
+ "overview": "Overview",
+ "installation": "Installation",
+ "configuration": "Configuration",
+ "api-reference-separator": {
+ "title": "API Reference",
+ "type": "separator"
+ },
+ "api-reference": "Introduction",
+ "api-reference-authentication": "Authentication",
+ "api-reference-chat": "Completions API",
+ "api-reference-jan-responses": "Responses API",
+ "api-reference-chat-conversations": "Chat Conversations",
+ "api-reference-conversations": "Conversations API",
+ "api-reference-administration": "Administration API",
+ "api-reference-jan-server": "Server API",
+ "resources-separator": {
+ "title": "Resources",
+ "type": "separator"
+ },
+ "architecture": "Architecture",
+ "development": "Development"
+}
diff --git a/docs/src/pages/docs/server/api-reference-administration.mdx b/docs/src/pages/docs/server/api-reference-administration.mdx
new file mode 100644
index 000000000..76b14edca
--- /dev/null
+++ b/docs/src/pages/docs/server/api-reference-administration.mdx
@@ -0,0 +1,629 @@
+---
+title: Organizations API
+description: Multi-tenant organization management endpoints for admin API keys, invites, and projects.
+---
+
+## Overview
+
+The Organizations API provides comprehensive endpoints for managing multi-tenant organizations, including admin API key management, organization invites, project creation, and project-level API key management. This API is essential for enterprise deployments and multi-user environments.
+
+## Endpoints
+
+### Admin API Keys
+
+#### List Admin API Keys
+
+**Endpoint**: `GET /v1/organization/admin_api_keys`
+
+Retrieves a paginated list of admin API keys for the organization.
+
+**Query Parameters:**
+- `limit` (integer, optional): Number of keys to return (1-100, default: 20)
+- `offset` (integer, optional): Number of keys to skip (default: 0)
+
+**Response:**
+```json
+{
+ "api_keys": [
+ {
+ "id": "ak_123",
+ "name": "Production Admin Key",
+ "created_at": "2024-01-01T12:00:00Z",
+ "last_used": "2024-01-01T15:30:00Z",
+ "permissions": ["admin", "read", "write"],
+ "is_active": true
+ }
+ ],
+ "total": 1,
+ "limit": 20,
+ "offset": 0
+}
+```
+
+**Example:**
+```bash
+curl -H "Authorization: Bearer " \
+ "http://localhost:8080/v1/organization/admin_api_keys?limit=10"
+```
+
+#### Create Admin API Key
+
+**Endpoint**: `POST /v1/organization/admin_api_keys`
+
+Creates a new admin API key for the organization.
+
+**Request Body:**
+```json
+{
+ "name": "Development Admin Key",
+ "permissions": ["admin", "read", "write"],
+ "expires_at": "2024-12-31T23:59:59Z"
+}
+```
+
+**Parameters:**
+- `name` (string, required): Human-readable name for the API key
+- `permissions` (array, required): List of permissions for the key
+- `expires_at` (string, optional): Expiration date (ISO 8601 format)
+
+**Response:**
+```json
+{
+ "id": "ak_456",
+ "name": "Development Admin Key",
+ "key": "jan_ak_1234567890abcdef",
+ "created_at": "2024-01-01T12:00:00Z",
+ "expires_at": "2024-12-31T23:59:59Z",
+ "permissions": ["admin", "read", "write"],
+ "is_active": true
+}
+```
+
+**Example:**
+```bash
+curl -X POST http://localhost:8080/v1/organization/admin_api_keys \
+ -H "Authorization: Bearer " \
+ -H "Content-Type: application/json" \
+ -d '{
+ "name": "Development Admin Key",
+ "permissions": ["admin", "read", "write"]
+ }'
+```
+
+#### Get Admin API Key
+
+**Endpoint**: `GET /v1/organization/admin_api_keys/{id}`
+
+Retrieves details of a specific admin API key.
+
+**Path Parameters:**
+- `id` (string, required): The API key ID
+
+**Response:**
+```json
+{
+ "id": "ak_123",
+ "name": "Production Admin Key",
+ "created_at": "2024-01-01T12:00:00Z",
+ "last_used": "2024-01-01T15:30:00Z",
+ "expires_at": "2024-12-31T23:59:59Z",
+ "permissions": ["admin", "read", "write"],
+ "is_active": true
+}
+```
+
+**Example:**
+```bash
+curl -H "Authorization: Bearer " \
+ http://localhost:8080/v1/organization/admin_api_keys/ak_123
+```
+
+#### Delete Admin API Key
+
+**Endpoint**: `DELETE /v1/organization/admin_api_keys/{id}`
+
+Permanently deletes an admin API key.
+
+**Path Parameters:**
+- `id` (string, required): The API key ID
+
+**Response:**
+```
+204 No Content
+```
+
+**Example:**
+```bash
+curl -X DELETE http://localhost:8080/v1/organization/admin_api_keys/ak_123 \
+ -H "Authorization: Bearer "
+```
+
+### Organization Invites
+
+#### List Organization Invites
+
+**Endpoint**: `GET /v1/organization/invites`
+
+Retrieves a paginated list of organization invites.
+
+**Query Parameters:**
+- `limit` (integer, optional): Number of invites to return (1-100, default: 20)
+- `offset` (integer, optional): Number of invites to skip (default: 0)
+- `status` (string, optional): Filter by status - "pending", "accepted", "expired"
+
+**Response:**
+```json
+{
+ "invites": [
+ {
+ "id": "inv_123",
+ "email": "user@example.com",
+ "role": "member",
+ "status": "pending",
+ "created_at": "2024-01-01T12:00:00Z",
+ "expires_at": "2024-01-08T12:00:00Z",
+ "invited_by": "admin@example.com"
+ }
+ ],
+ "total": 1,
+ "limit": 20,
+ "offset": 0
+}
+```
+
+**Example:**
+```bash
+curl -H "Authorization: Bearer " \
+ "http://localhost:8080/v1/organization/invites?status=pending"
+```
+
+#### Create Invite
+
+**Endpoint**: `POST /v1/organization/invites`
+
+Creates a new organization invite.
+
+**Request Body:**
+```json
+{
+ "email": "newuser@example.com",
+ "role": "member",
+ "expires_in_days": 7,
+ "message": "Welcome to our organization!"
+}
+```
+
+**Parameters:**
+- `email` (string, required): Email address of the invitee
+- `role` (string, required): Role for the invitee - "admin", "member", "viewer"
+- `expires_in_days` (integer, optional): Days until invite expires (default: 7)
+- `message` (string, optional): Personal message for the invitee
+
+**Response:**
+```json
+{
+ "id": "inv_456",
+ "email": "newuser@example.com",
+ "role": "member",
+ "status": "pending",
+ "created_at": "2024-01-01T12:00:00Z",
+ "expires_at": "2024-01-08T12:00:00Z",
+ "invited_by": "admin@example.com",
+ "invite_url": "https://app.jan.ai/invite/inv_456"
+}
+```
+
+**Example:**
+```bash
+curl -X POST http://localhost:8080/v1/organization/invites \
+ -H "Authorization: Bearer " \
+ -H "Content-Type: application/json" \
+ -d '{
+ "email": "newuser@example.com",
+ "role": "member",
+ "expires_in_days": 7,
+ "message": "Welcome to our organization!"
+ }'
+```
+
+#### Retrieve Invite
+
+**Endpoint**: `GET /v1/organization/invites/{invite_id}`
+
+Retrieves details of a specific invite.
+
+**Path Parameters:**
+- `invite_id` (string, required): The invite ID
+
+**Response:**
+```json
+{
+ "id": "inv_123",
+ "email": "user@example.com",
+ "role": "member",
+ "status": "pending",
+ "created_at": "2024-01-01T12:00:00Z",
+ "expires_at": "2024-01-08T12:00:00Z",
+ "invited_by": "admin@example.com",
+ "organization": {
+ "name": "Acme Corp",
+ "domain": "acme.com"
+ }
+}
+```
+
+**Example:**
+```bash
+curl http://localhost:8080/v1/organization/invites/inv_123
+```
+
+#### Delete Invite
+
+**Endpoint**: `DELETE /v1/organization/invites/{invite_id}`
+
+Cancels and deletes an organization invite.
+
+**Path Parameters:**
+- `invite_id` (string, required): The invite ID
+
+**Response:**
+```
+204 No Content
+```
+
+**Example:**
+```bash
+curl -X DELETE http://localhost:8080/v1/organization/invites/inv_123 \
+ -H "Authorization: Bearer "
+```
+
+### Projects
+
+#### List Projects
+
+**Endpoint**: `GET /v1/organization/projects`
+
+Retrieves a paginated list of organization projects.
+
+**Query Parameters:**
+- `limit` (integer, optional): Number of projects to return (1-100, default: 20)
+- `offset` (integer, optional): Number of projects to skip (default: 0)
+- `status` (string, optional): Filter by status - "active", "archived"
+
+**Response:**
+```json
+{
+ "projects": [
+ {
+ "id": "proj_123",
+ "public_id": "proj_abc123",
+ "name": "AI Research Project",
+ "description": "Machine learning research initiative",
+ "status": "active",
+ "created_at": "2024-01-01T12:00:00Z",
+ "updated_at": "2024-01-01T15:30:00Z",
+ "created_by": "admin@example.com"
+ }
+ ],
+ "total": 1,
+ "limit": 20,
+ "offset": 0
+}
+```
+
+**Example:**
+```bash
+curl -H "Authorization: Bearer " \
+ "http://localhost:8080/v1/organization/projects?status=active"
+```
+
+#### Create Project
+
+**Endpoint**: `POST /v1/organization/projects`
+
+Creates a new project within the organization.
+
+**Request Body:**
+```json
+{
+ "name": "New AI Project",
+ "description": "Description of the new project",
+ "settings": {
+ "default_model": "jan-v1-4b",
+ "max_conversations": 1000
+ }
+}
+```
+
+**Parameters:**
+- `name` (string, required): Project name
+- `description` (string, optional): Project description
+- `settings` (object, optional): Project-specific settings
+
+**Response:**
+```json
+{
+ "id": "proj_789",
+ "public_id": "proj_def456",
+ "name": "New AI Project",
+ "description": "Description of the new project",
+ "status": "active",
+ "created_at": "2024-01-01T12:00:00Z",
+ "updated_at": "2024-01-01T12:00:00Z",
+ "created_by": "admin@example.com",
+ "settings": {
+ "default_model": "jan-v1-4b",
+ "max_conversations": 1000
+ }
+}
+```
+
+**Example:**
+```bash
+curl -X POST http://localhost:8080/v1/organization/projects \
+ -H "Authorization: Bearer " \
+ -H "Content-Type: application/json" \
+ -d '{
+ "name": "New AI Project",
+ "description": "Description of the new project",
+ "settings": {
+ "default_model": "jan-v1-4b"
+ }
+ }'
+```
+
+#### Get Project
+
+**Endpoint**: `GET /v1/organization/projects/{project_id}`
+
+Retrieves details of a specific project.
+
+**Path Parameters:**
+- `project_id` (string, required): The project ID
+
+**Response:**
+```json
+{
+ "id": "proj_123",
+ "public_id": "proj_abc123",
+ "name": "AI Research Project",
+ "description": "Machine learning research initiative",
+ "status": "active",
+ "created_at": "2024-01-01T12:00:00Z",
+ "updated_at": "2024-01-01T15:30:00Z",
+ "created_by": "admin@example.com",
+ "settings": {
+ "default_model": "jan-v1-4b",
+ "max_conversations": 1000
+ }
+}
+```
+
+**Example:**
+```bash
+curl -H "Authorization: Bearer " \
+ http://localhost:8080/v1/organization/projects/proj_123
+```
+
+#### Update Project
+
+**Endpoint**: `POST /v1/organization/projects/{project_id}`
+
+Updates an existing project.
+
+**Path Parameters:**
+- `project_id` (string, required): The project ID
+
+**Request Body:**
+```json
+{
+ "name": "Updated Project Name",
+ "description": "Updated description",
+ "settings": {
+ "default_model": "jan-v1-7b",
+ "max_conversations": 2000
+ }
+}
+```
+
+**Response:**
+```json
+{
+ "id": "proj_123",
+ "public_id": "proj_abc123",
+ "name": "Updated Project Name",
+ "description": "Updated description",
+ "status": "active",
+ "created_at": "2024-01-01T12:00:00Z",
+ "updated_at": "2024-01-01T16:00:00Z",
+ "created_by": "admin@example.com",
+ "settings": {
+ "default_model": "jan-v1-7b",
+ "max_conversations": 2000
+ }
+}
+```
+
+**Example:**
+```bash
+curl -X POST http://localhost:8080/v1/organization/projects/proj_123 \
+ -H "Authorization: Bearer " \
+ -H "Content-Type: application/json" \
+ -d '{
+ "name": "Updated Project Name",
+ "description": "Updated description"
+ }'
+```
+
+#### Archive Project
+
+**Endpoint**: `POST /v1/organization/projects/{project_id}/archive`
+
+Archives a project, making it read-only.
+
+**Path Parameters:**
+- `project_id` (string, required): The project ID
+
+**Response:**
+```json
+{
+ "id": "proj_123",
+ "public_id": "proj_abc123",
+ "name": "AI Research Project",
+ "description": "Machine learning research initiative",
+ "status": "archived",
+ "created_at": "2024-01-01T12:00:00Z",
+ "updated_at": "2024-01-01T17:00:00Z",
+ "created_by": "admin@example.com"
+}
+```
+
+**Example:**
+```bash
+curl -X POST http://localhost:8080/v1/organization/projects/proj_123/archive \
+ -H "Authorization: Bearer "
+```
+
+### Project API Keys
+
+#### List Project API Keys
+
+**Endpoint**: `GET /v1/organization/projects/{project_public_id}/api_keys`
+
+Retrieves API keys for a specific project.
+
+**Path Parameters:**
+- `project_public_id` (string, required): The project public ID
+
+**Response:**
+```json
+{
+ "api_keys": [
+ {
+ "id": "pk_123",
+ "name": "Production API Key",
+ "created_at": "2024-01-01T12:00:00Z",
+ "last_used": "2024-01-01T15:30:00Z",
+ "is_active": true
+ }
+ ],
+ "total": 1
+}
+```
+
+**Example:**
+```bash
+curl -H "Authorization: Bearer " \
+ http://localhost:8080/v1/organization/projects/proj_abc123/api_keys
+```
+
+#### Create Project API Key
+
+**Endpoint**: `POST /v1/organization/projects/{project_public_id}/api_keys`
+
+Creates a new API key for a specific project.
+
+**Path Parameters:**
+- `project_public_id` (string, required): The project public ID
+
+**Request Body:**
+```json
+{
+ "name": "Development API Key",
+ "expires_at": "2024-12-31T23:59:59Z"
+}
+```
+
+**Response:**
+```json
+{
+ "id": "pk_456",
+ "name": "Development API Key",
+ "key": "jan_pk_1234567890abcdef",
+ "created_at": "2024-01-01T12:00:00Z",
+ "expires_at": "2024-12-31T23:59:59Z",
+ "is_active": true
+}
+```
+
+**Example:**
+```bash
+curl -X POST http://localhost:8080/v1/organization/projects/proj_abc123/api_keys \
+ -H "Authorization: Bearer " \
+ -H "Content-Type: application/json" \
+ -d '{
+ "name": "Development API Key",
+ "expires_at": "2024-12-31T23:59:59Z"
+ }'
+```
+
+## Permissions and Roles
+
+### Organization Roles
+
+- **Admin**: Full access to all organization resources
+- **Member**: Access to assigned projects and resources
+- **Viewer**: Read-only access to assigned projects
+
+### API Key Permissions
+
+- **admin**: Full administrative access
+- **read**: Read-only access to resources
+- **write**: Read and write access to resources
+
+## Error Responses
+
+### Common Error Codes
+
+| Status Code | Description |
+|-------------|-------------|
+| `400` | Bad Request - Invalid request format or parameters |
+| `401` | Unauthorized - Invalid or missing authentication |
+| `403` | Forbidden - Insufficient permissions |
+| `404` | Not Found - Resource not found |
+| `409` | Conflict - Resource already exists |
+| `429` | Too Many Requests - Rate limit exceeded |
+| `500` | Internal Server Error - Server error |
+
+### Error Response Format
+
+```json
+{
+ "error": {
+ "message": "Insufficient permissions",
+ "type": "forbidden_error",
+ "code": "insufficient_permissions"
+ }
+}
+```
+
+## Best Practices
+
+### Security
+
+1. **Rotate API Keys**: Regularly rotate API keys for security
+2. **Least Privilege**: Grant minimum required permissions
+3. **Monitor Usage**: Track API key usage and access patterns
+4. **Secure Storage**: Store API keys securely and never expose them
+
+### Organization Management
+
+1. **Clear Roles**: Define clear role hierarchies and permissions
+2. **Regular Audits**: Periodically review user access and permissions
+3. **Project Organization**: Organize projects logically by team or function
+4. **Documentation**: Maintain clear documentation of organization structure
+
+## Rate Limiting
+
+Organization endpoints have the following rate limits:
+- **Admin operations**: 100 requests per minute
+- **Project operations**: 200 requests per minute
+- **API key operations**: 50 requests per minute
+- **Invite operations**: 20 requests per minute
+
+Rate limit headers are included in responses:
+```
+X-RateLimit-Limit: 100
+X-RateLimit-Remaining: 99
+X-RateLimit-Reset: 1609459200
+```
diff --git a/docs/src/pages/docs/server/api-reference-authentication.mdx b/docs/src/pages/docs/server/api-reference-authentication.mdx
new file mode 100644
index 000000000..742410272
--- /dev/null
+++ b/docs/src/pages/docs/server/api-reference-authentication.mdx
@@ -0,0 +1,208 @@
+---
+title: Authentication
+description: User authentication and authorization endpoints for Jan Server.
+---
+
+## Overview
+
+The Authentication API provides endpoints for user authentication, authorization, and session management. Jan Server supports multiple authentication methods including Google OAuth2, JWT tokens, and guest access.
+
+## Endpoints
+
+### Google OAuth2 Callback
+
+**Endpoint**: `POST /v1/auth/google/callback`
+
+Handles the callback from the Google OAuth2 provider to exchange the authorization code for a token, verify the user, and issue access and refresh tokens.
+
+**Request Body:**
+```json
+{
+ "code": "string",
+ "state": "string"
+}
+```
+
+**Response:**
+```json
+{
+ "access_token": "string",
+ "refresh_token": "string",
+ "expires_in": 3600,
+ "token_type": "Bearer"
+}
+```
+
+**Example:**
+```bash
+curl -X POST http://localhost:8080/v1/auth/google/callback \
+ -H "Content-Type: application/json" \
+ -d '{
+ "code": "4/0AX4XfWh...",
+ "state": "random_state_string"
+ }'
+```
+
+### Google OAuth2 Login
+
+**Endpoint**: `GET /v1/auth/google/login`
+
+Initiates Google OAuth2 authentication flow by redirecting to Google's authorization server.
+
+**Response:**
+```json
+{
+ "url": "https://accounts.google.com/oauth/authorize?..."
+}
+```
+
+**Example:**
+```bash
+curl http://localhost:8080/v1/auth/google/login
+```
+
+### Guest Login
+
+**Endpoint**: `POST /v1/auth/guest-login`
+
+Creates a guest session with limited access for users who don't want to authenticate with Google.
+
+**Response:**
+```json
+{
+ "access_token": "string",
+ "refresh_token": "string",
+ "expires_in": 3600,
+ "token_type": "Bearer"
+}
+```
+
+**Example:**
+```bash
+curl -X POST http://localhost:8080/v1/auth/guest-login \
+ -H "Content-Type: application/json"
+```
+
+### Logout
+
+**Endpoint**: `GET /v1/auth/logout`
+
+Invalidates the current user session and refresh token.
+
+**Headers:**
+- `Authorization: Bearer `
+
+**Response:**
+```
+200 OK
+```
+
+**Example:**
+```bash
+curl -H "Authorization: Bearer " \
+ http://localhost:8080/v1/auth/logout
+```
+
+### Get User Profile
+
+**Endpoint**: `GET /v1/auth/me`
+
+Retrieves the current user's profile information.
+
+**Headers:**
+- `Authorization: Bearer `
+
+**Response:**
+```json
+{
+ "id": "string",
+ "email": "string",
+ "name": "string",
+ "picture": "string",
+ "is_guest": false,
+ "created_at": "2024-01-01T00:00:00Z",
+ "updated_at": "2024-01-01T00:00:00Z"
+}
+```
+
+**Example:**
+```bash
+curl -H "Authorization: Bearer " \
+ http://localhost:8080/v1/auth/me
+```
+
+### Refresh Access Token
+
+**Endpoint**: `GET /v1/auth/refresh-token`
+
+Refreshes an expired access token using a valid refresh token.
+
+**Headers:**
+- `Authorization: Bearer `
+
+**Response:**
+```json
+{
+ "access_token": "string",
+ "refresh_token": "string",
+ "expires_in": 3600,
+ "token_type": "Bearer"
+}
+```
+
+**Example:**
+```bash
+curl -H "Authorization: Bearer " \
+ http://localhost:8080/v1/auth/refresh-token
+```
+
+## Authentication Methods
+
+### JWT Token Authentication
+
+Include JWT token in the Authorization header:
+
+```bash
+curl -H "Authorization: Bearer " \
+ http://localhost:8080/v1/protected-endpoint
+```
+
+### API Key Authentication
+
+Include API key in the Authorization header:
+
+```bash
+curl -H "Authorization: Bearer " \
+ http://localhost:8080/v1/protected-endpoint
+```
+
+## Error Responses
+
+### Common Error Codes
+
+| Status Code | Description |
+|-------------|-------------|
+| `400` | Bad Request - Invalid request format or parameters |
+| `401` | Unauthorized - Invalid or missing authentication |
+| `403` | Forbidden - Insufficient permissions |
+| `500` | Internal Server Error - Server error |
+
+### Error Response Format
+
+```json
+{
+ "error": {
+ "message": "Invalid request format",
+ "type": "invalid_request_error",
+ "code": "invalid_json"
+ }
+}
+```
+
+## Security Considerations
+
+- **Token Expiration**: Access tokens expire after 1 hour by default
+- **Refresh Tokens**: Refresh tokens are used to obtain new access tokens
+- **Guest Access**: Guest sessions have limited permissions and shorter expiration times
+- **HTTPS**: Always use HTTPS in production environments
+- **Token Storage**: Store tokens securely and never expose them in client-side code
diff --git a/docs/src/pages/docs/server/api-reference-chat-conversations.mdx b/docs/src/pages/docs/server/api-reference-chat-conversations.mdx
new file mode 100644
index 000000000..aeb997a7c
--- /dev/null
+++ b/docs/src/pages/docs/server/api-reference-chat-conversations.mdx
@@ -0,0 +1,293 @@
+---
+title: Chat Conversations
+description: Conversation-aware chat endpoints for context-aware AI interactions.
+---
+
+## Overview
+
+The Chat Conversations API provides conversation-aware chat completion endpoints that maintain context across multiple interactions. These endpoints are designed for applications that need to preserve conversation history and provide context-aware responses.
+
+## Endpoints
+
+### Create Conversation-Aware Chat Completion
+
+**Endpoint**: `POST /v1/conv/chat/completions`
+
+Creates a chat completion that is aware of the conversation context and history.
+
+**Request Body:**
+```json
+{
+ "model": "string",
+ "messages": [
+ {
+ "role": "user",
+ "content": "What did we discuss earlier about machine learning?"
+ }
+ ],
+ "conversation_id": "conv_123",
+ "max_tokens": 200,
+ "temperature": 0.7,
+ "stream": false
+}
+```
+
+**Parameters:**
+- `model` (string, required): Model identifier (e.g., "jan-v1-4b")
+- `messages` (array, required): Array of message objects with role and content
+- `conversation_id` (string, optional): ID of the conversation for context
+- `max_tokens` (integer, optional): Maximum number of tokens to generate
+- `temperature` (float, optional): Sampling temperature (0.0 to 2.0)
+- `stream` (boolean, optional): Whether to stream the response
+
+**Response:**
+```json
+{
+ "id": "chatcmpl-123",
+ "object": "chat.completion",
+ "created": 1677652288,
+ "model": "jan-v1-4b",
+ "conversation_id": "conv_123",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "Earlier we discussed the basics of supervised learning, including how algorithms learn from labeled training data to make predictions on new, unseen data."
+ },
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 15,
+ "completion_tokens": 28,
+ "total_tokens": 43
+ }
+}
+```
+
+**Example:**
+```bash
+curl -X POST http://localhost:8080/v1/conv/chat/completions \
+ -H "Content-Type: application/json" \
+ -H "Authorization: Bearer " \
+ -d '{
+ "model": "jan-v1-4b",
+ "messages": [
+ {"role": "user", "content": "What did we discuss earlier about machine learning?"}
+ ],
+ "conversation_id": "conv_123",
+ "max_tokens": 200,
+ "temperature": 0.7
+ }'
+```
+
+### MCP Streamable Endpoint for Conversations
+
+**Endpoint**: `POST /v1/conv/mcp`
+
+Model Context Protocol streamable endpoint specifically designed for conversation-aware chat with external tool integration.
+
+**Request Body:**
+```json
+{
+ "model": "string",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Can you help me analyze the data we collected yesterday?"
+ }
+ ],
+ "conversation_id": "conv_123",
+ "tools": [
+ {
+ "type": "function",
+ "function": {
+ "name": "analyze_data",
+ "description": "Analyze collected data from previous conversation",
+ "parameters": {
+ "type": "object",
+ "properties": {
+ "data_type": {
+ "type": "string",
+ "description": "Type of data to analyze"
+ }
+ },
+ "required": ["data_type"]
+ }
+ }
+ }
+ ],
+ "stream": true
+}
+```
+
+**Response (Streaming):**
+```
+data: {"id":"chatcmpl-123","object":"chat.completion.chunk","created":1677652288,"model":"jan-v1-4b","conversation_id":"conv_123","choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null}]}
+
+data: {"id":"chatcmpl-123","object":"chat.completion.chunk","created":1677652288,"model":"jan-v1-4b","conversation_id":"conv_123","choices":[{"index":0,"delta":{"content":"I'll"},"finish_reason":null}]}
+
+data: {"id":"chatcmpl-123","object":"chat.completion.chunk","created":1677652288,"model":"jan-v1-4b","conversation_id":"conv_123","choices":[{"index":0,"delta":{"content":" analyze"},"finish_reason":null}]}
+
+data: [DONE]
+```
+
+**Example:**
+```bash
+curl -X POST http://localhost:8080/v1/conv/mcp \
+ -H "Content-Type: application/json" \
+ -H "Authorization: Bearer " \
+ -d '{
+ "model": "jan-v1-4b",
+ "messages": [
+ {"role": "user", "content": "Can you help me analyze the data we collected yesterday?"}
+ ],
+ "conversation_id": "conv_123",
+ "tools": [
+ {
+ "type": "function",
+ "function": {
+ "name": "analyze_data",
+ "description": "Analyze collected data from previous conversation"
+ }
+ }
+ ],
+ "stream": true
+ }' \
+ --no-buffer
+```
+
+### List Available Models for Conversations
+
+**Endpoint**: `GET /v1/conv/models`
+
+Retrieves a list of available models specifically optimized for conversation-aware chat completions.
+
+**Response:**
+```json
+{
+ "object": "list",
+ "data": [
+ {
+ "id": "jan-v1-4b-conv",
+ "object": "model",
+ "created": 1677652288,
+ "owned_by": "jan",
+ "capabilities": ["conversation_aware", "context_retention"]
+ },
+ {
+ "id": "jan-v1-7b-conv",
+ "object": "model",
+ "created": 1677652288,
+ "owned_by": "jan",
+ "capabilities": ["conversation_aware", "context_retention", "long_context"]
+ }
+ ]
+}
+```
+
+**Example:**
+```bash
+curl http://localhost:8080/v1/conv/models
+```
+
+## Conversation Context
+
+### Context Retention
+
+Conversation-aware endpoints automatically maintain context by:
+- Storing conversation history in the database
+- Retrieving relevant context for each request
+- Providing context-aware responses based on previous interactions
+
+### Conversation ID
+
+The `conversation_id` parameter links requests to a specific conversation:
+- If provided, the system retrieves conversation history
+- If omitted, a new conversation context is created
+- Context is maintained across multiple API calls
+
+### Context Window
+
+The system maintains a sliding window of conversation history:
+- Recent messages are prioritized
+- Older context is summarized when needed
+- Maximum context length varies by model
+
+## Advanced Features
+
+### Context Summarization
+
+For long conversations, the system automatically:
+- Summarizes older message history
+- Preserves key information and decisions
+- Maintains conversation flow continuity
+
+### Multi-Turn Interactions
+
+Support for complex multi-turn conversations:
+- Reference previous topics and decisions
+- Maintain user preferences and settings
+- Provide consistent personality and tone
+
+### Context-Aware Tool Usage
+
+Tools can access conversation context:
+- Reference previous data and results
+- Build upon previous analysis
+- Maintain state across interactions
+
+## Error Responses
+
+### Common Error Codes
+
+| Status Code | Description |
+|-------------|-------------|
+| `400` | Bad Request - Invalid request format or conversation ID |
+| `401` | Unauthorized - Invalid or missing authentication |
+| `404` | Not Found - Conversation not found |
+| `429` | Too Many Requests - Rate limit exceeded |
+| `500` | Internal Server Error - Server error |
+
+### Error Response Format
+
+```json
+{
+ "error": {
+ "message": "Conversation not found",
+ "type": "not_found_error",
+ "code": "conversation_not_found"
+ }
+}
+```
+
+## Best Practices
+
+### Conversation Management
+
+1. **Use Consistent Conversation IDs**: Maintain the same ID across related requests
+2. **Provide Context**: Include relevant context in your messages
+3. **Handle Long Conversations**: Be aware of context window limitations
+4. **Clean Up**: Delete old conversations when no longer needed
+
+### Performance Optimization
+
+1. **Batch Requests**: Group related requests when possible
+2. **Stream Responses**: Use streaming for better user experience
+3. **Cache Context**: Store conversation context client-side when appropriate
+4. **Monitor Usage**: Track token usage and conversation length
+
+## Rate Limiting
+
+Conversation-aware endpoints have the following rate limits:
+- **Authenticated users**: 30 requests per minute
+- **API keys**: 500 requests per hour
+- **Guest users**: 5 requests per minute
+
+Rate limit headers are included in responses:
+```
+X-RateLimit-Limit: 30
+X-RateLimit-Remaining: 29
+X-RateLimit-Reset: 1609459200
+```
diff --git a/docs/src/pages/docs/server/api-reference-chat.mdx b/docs/src/pages/docs/server/api-reference-chat.mdx
new file mode 100644
index 000000000..729f1a7fa
--- /dev/null
+++ b/docs/src/pages/docs/server/api-reference-chat.mdx
@@ -0,0 +1,320 @@
+---
+title: Completions API
+description: Core chat completion endpoints for AI interactions with OpenAI compatibility.
+---
+
+## Overview
+
+The Chat API provides OpenAI-compatible endpoints for conversational AI interactions, including chat completions, model information, and Model Context Protocol (MCP) support.
+
+## Endpoints
+
+### Create Chat Completion
+
+**Endpoint**: `POST /v1/chat/completions`
+
+Creates a chat completion using the specified model and conversation history.
+
+**Request Body:**
+```json
+{
+ "model": "string",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Hello, how are you?"
+ }
+ ],
+ "max_tokens": 100,
+ "temperature": 0.7,
+ "stream": false
+}
+```
+
+**Parameters:**
+- `model` (string, required): Model identifier (e.g., "jan-v1-4b")
+- `messages` (array, required): Array of message objects with role and content
+- `max_tokens` (integer, optional): Maximum number of tokens to generate
+- `temperature` (float, optional): Sampling temperature (0.0 to 2.0)
+- `stream` (boolean, optional): Whether to stream the response
+
+**Response:**
+```json
+{
+ "id": "chatcmpl-123",
+ "object": "chat.completion",
+ "created": 1677652288,
+ "model": "jan-v1-4b",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "Hello! I'm doing well, thank you for asking."
+ },
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 9,
+ "completion_tokens": 12,
+ "total_tokens": 21
+ }
+}
+```
+
+**Example:**
+```bash
+curl -X POST http://localhost:8080/v1/chat/completions \
+ -H "Content-Type: application/json" \
+ -H "Authorization: Bearer " \
+ -d '{
+ "model": "jan-v1-4b",
+ "messages": [
+ {"role": "user", "content": "Hello, how are you?"}
+ ],
+ "max_tokens": 100,
+ "temperature": 0.7
+ }'
+```
+
+### Streaming Chat Completion
+
+**Endpoint**: `POST /v1/chat/completions`
+
+Same endpoint as above, but with `stream: true` for real-time responses.
+
+**Request Body:**
+```json
+{
+ "model": "jan-v1-4b",
+ "messages": [
+ {"role": "user", "content": "Tell me a story"}
+ ],
+ "stream": true
+}
+```
+
+**Response (Streaming):**
+```
+data: {"id":"chatcmpl-123","object":"chat.completion.chunk","created":1677652288,"model":"jan-v1-4b","choices":[{"index":0,"delta":{"role":"assistant","content":""},"finish_reason":null}]}
+
+data: {"id":"chatcmpl-123","object":"chat.completion.chunk","created":1677652288,"model":"jan-v1-4b","choices":[{"index":0,"delta":{"content":"Once"},"finish_reason":null}]}
+
+data: {"id":"chatcmpl-123","object":"chat.completion.chunk","created":1677652288,"model":"jan-v1-4b","choices":[{"index":0,"delta":{"content":" upon"},"finish_reason":null}]}
+
+data: [DONE]
+```
+
+**Example:**
+```bash
+curl -X POST http://localhost:8080/v1/chat/completions \
+ -H "Content-Type: application/json" \
+ -H "Authorization: Bearer " \
+ -d '{
+ "model": "jan-v1-4b",
+ "messages": [{"role": "user", "content": "Tell me a story"}],
+ "stream": true
+ }' \
+ --no-buffer
+```
+
+### MCP Streamable Endpoint
+
+**Endpoint**: `POST /v1/mcp`
+
+Model Context Protocol streamable endpoint for external tool integration.
+
+**Request Body:**
+```json
+{
+ "model": "string",
+ "messages": [
+ {
+ "role": "user",
+ "content": "What's the weather like today?"
+ }
+ ],
+ "tools": [
+ {
+ "type": "function",
+ "function": {
+ "name": "get_weather",
+ "description": "Get current weather information",
+ "parameters": {
+ "type": "object",
+ "properties": {
+ "location": {
+ "type": "string",
+ "description": "The city and state"
+ }
+ },
+ "required": ["location"]
+ }
+ }
+ }
+ ]
+}
+```
+
+**Response:**
+```json
+{
+ "id": "chatcmpl-123",
+ "object": "chat.completion",
+ "created": 1677652288,
+ "model": "jan-v1-4b",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "I'll check the weather for you.",
+ "tool_calls": [
+ {
+ "id": "call_123",
+ "type": "function",
+ "function": {
+ "name": "get_weather",
+ "arguments": "{\"location\": \"New York, NY\"}"
+ }
+ }
+ ]
+ },
+ "finish_reason": "tool_calls"
+ }
+ ]
+}
+```
+
+**Example:**
+```bash
+curl -X POST http://localhost:8080/v1/mcp \
+ -H "Content-Type: application/json" \
+ -H "Authorization: Bearer " \
+ -d '{
+ "model": "jan-v1-4b",
+ "messages": [
+ {"role": "user", "content": "What'\''s the weather like today?"}
+ ],
+ "tools": [
+ {
+ "type": "function",
+ "function": {
+ "name": "get_weather",
+ "description": "Get current weather information"
+ }
+ }
+ ]
+ }'
+```
+
+### List Available Models
+
+**Endpoint**: `GET /v1/models`
+
+Retrieves a list of available models for chat completions.
+
+**Response:**
+```json
+{
+ "object": "list",
+ "data": [
+ {
+ "id": "jan-v1-4b",
+ "object": "model",
+ "created": 1677652288,
+ "owned_by": "jan"
+ },
+ {
+ "id": "jan-v1-7b",
+ "object": "model",
+ "created": 1677652288,
+ "owned_by": "jan"
+ }
+ ]
+}
+```
+
+**Example:**
+```bash
+curl http://localhost:8080/v1/models
+```
+
+## Message Roles
+
+### Supported Roles
+
+- `user`: Messages from the user/end-user
+- `assistant`: Messages from the AI assistant
+- `system`: System-level instructions (optional)
+
+### Message Format
+
+```json
+{
+ "role": "user|assistant|system",
+ "content": "The message content"
+}
+```
+
+## Parameters
+
+### Temperature
+
+Controls the randomness of the response:
+- `0.0`: Deterministic, always picks the most likely token
+- `0.7`: Balanced creativity and coherence (recommended)
+- `1.0`: More creative responses
+- `2.0`: Maximum creativity
+
+### Max Tokens
+
+Maximum number of tokens to generate in the response:
+- Minimum: 1
+- Maximum: 4096 (varies by model)
+- Recommended: 100-500 for most use cases
+
+### Stream
+
+When `true`, returns a stream of Server-Sent Events (SSE) instead of a single response:
+- Useful for real-time applications
+- Reduces perceived latency
+- Requires handling of streaming responses
+
+## Error Responses
+
+### Common Error Codes
+
+| Status Code | Description |
+|-------------|-------------|
+| `400` | Bad Request - Invalid request format or parameters |
+| `401` | Unauthorized - Invalid or missing authentication |
+| `429` | Too Many Requests - Rate limit exceeded |
+| `500` | Internal Server Error - Server error |
+
+### Error Response Format
+
+```json
+{
+ "error": {
+ "message": "Invalid request format",
+ "type": "invalid_request_error",
+ "code": "invalid_json"
+ }
+}
+```
+
+## Rate Limiting
+
+Chat completion endpoints have the following rate limits:
+- **Authenticated users**: 60 requests per minute
+- **API keys**: 1000 requests per hour
+- **Guest users**: 10 requests per minute
+
+Rate limit headers are included in responses:
+```
+X-RateLimit-Limit: 60
+X-RateLimit-Remaining: 59
+X-RateLimit-Reset: 1609459200
+```
diff --git a/docs/src/pages/docs/server/api-reference-conversations.mdx b/docs/src/pages/docs/server/api-reference-conversations.mdx
new file mode 100644
index 000000000..18d2a6cef
--- /dev/null
+++ b/docs/src/pages/docs/server/api-reference-conversations.mdx
@@ -0,0 +1,475 @@
+---
+title: Conversations API
+description: Conversation management and persistence endpoints for storing and retrieving chat history.
+---
+
+## Overview
+
+The Conversations API provides comprehensive endpoints for managing conversation data, including creating, reading, updating, and deleting conversations and their associated items (messages). This API is essential for applications that need to persist chat history and manage conversation state.
+
+## Endpoints
+
+### List Conversations
+
+**Endpoint**: `GET /v1/conversations`
+
+Retrieves a paginated list of conversations for the authenticated user.
+
+**Query Parameters:**
+- `limit` (integer, optional): Number of conversations to return (1-100, default: 20)
+- `offset` (integer, optional): Number of conversations to skip (default: 0)
+- `order` (string, optional): Sort order - "asc" or "desc" (default: "desc")
+
+**Response:**
+```json
+{
+ "conversations": [
+ {
+ "id": "conv_123",
+ "title": "Machine Learning Discussion",
+ "model": "jan-v1-4b",
+ "created_at": "2024-01-01T12:00:00Z",
+ "updated_at": "2024-01-01T13:30:00Z",
+ "item_count": 15,
+ "user_id": "user_456"
+ }
+ ],
+ "total": 1,
+ "limit": 20,
+ "offset": 0
+}
+```
+
+**Example:**
+```bash
+curl -H "Authorization: Bearer " \
+ "http://localhost:8080/v1/conversations?limit=10&offset=0"
+```
+
+### Create Conversation
+
+**Endpoint**: `POST /v1/conversations`
+
+Creates a new conversation with optional initial data.
+
+**Request Body:**
+```json
+{
+ "title": "New Conversation",
+ "model": "jan-v1-4b",
+ "metadata": {
+ "category": "technical",
+ "priority": "high"
+ }
+}
+```
+
+**Parameters:**
+- `title` (string, optional): Conversation title
+- `model` (string, optional): Default model for the conversation
+- `metadata` (object, optional): Additional metadata
+
+**Response:**
+```json
+{
+ "id": "conv_789",
+ "title": "New Conversation",
+ "model": "jan-v1-4b",
+ "created_at": "2024-01-01T14:00:00Z",
+ "updated_at": "2024-01-01T14:00:00Z",
+ "item_count": 0,
+ "user_id": "user_456",
+ "metadata": {
+ "category": "technical",
+ "priority": "high"
+ }
+}
+```
+
+**Example:**
+```bash
+curl -X POST http://localhost:8080/v1/conversations \
+ -H "Authorization: Bearer " \
+ -H "Content-Type: application/json" \
+ -d '{
+ "title": "New Conversation",
+ "model": "jan-v1-4b",
+ "metadata": {
+ "category": "technical"
+ }
+ }'
+```
+
+### Get Conversation
+
+**Endpoint**: `GET /v1/conversations/{conversation_id}`
+
+Retrieves a specific conversation by ID.
+
+**Path Parameters:**
+- `conversation_id` (string, required): The conversation ID
+
+**Response:**
+```json
+{
+ "id": "conv_123",
+ "title": "Machine Learning Discussion",
+ "model": "jan-v1-4b",
+ "created_at": "2024-01-01T12:00:00Z",
+ "updated_at": "2024-01-01T13:30:00Z",
+ "item_count": 15,
+ "user_id": "user_456",
+ "metadata": {
+ "category": "technical",
+ "priority": "high"
+ }
+}
+```
+
+**Example:**
+```bash
+curl -H "Authorization: Bearer " \
+ http://localhost:8080/v1/conversations/conv_123
+```
+
+### Update Conversation
+
+**Endpoint**: `PATCH /v1/conversations/{conversation_id}`
+
+Updates an existing conversation's metadata.
+
+**Path Parameters:**
+- `conversation_id` (string, required): The conversation ID
+
+**Request Body:**
+```json
+{
+ "title": "Updated Conversation Title",
+ "metadata": {
+ "category": "research",
+ "priority": "medium",
+ "tags": ["ai", "ml"]
+ }
+}
+```
+
+**Response:**
+```json
+{
+ "id": "conv_123",
+ "title": "Updated Conversation Title",
+ "model": "jan-v1-4b",
+ "created_at": "2024-01-01T12:00:00Z",
+ "updated_at": "2024-01-01T15:00:00Z",
+ "item_count": 15,
+ "user_id": "user_456",
+ "metadata": {
+ "category": "research",
+ "priority": "medium",
+ "tags": ["ai", "ml"]
+ }
+}
+```
+
+**Example:**
+```bash
+curl -X PATCH http://localhost:8080/v1/conversations/conv_123 \
+ -H "Authorization: Bearer " \
+ -H "Content-Type: application/json" \
+ -d '{
+ "title": "Updated Conversation Title",
+ "metadata": {
+ "category": "research",
+ "tags": ["ai", "ml"]
+ }
+ }'
+```
+
+### Delete Conversation
+
+**Endpoint**: `DELETE /v1/conversations/{conversation_id}`
+
+Permanently deletes a conversation and all its associated items.
+
+**Path Parameters:**
+- `conversation_id` (string, required): The conversation ID
+
+**Response:**
+```
+204 No Content
+```
+
+**Example:**
+```bash
+curl -X DELETE http://localhost:8080/v1/conversations/conv_123 \
+ -H "Authorization: Bearer "
+```
+
+## Conversation Items (Messages)
+
+### List Items in Conversation
+
+**Endpoint**: `GET /v1/conversations/{conversation_id}/items`
+
+Retrieves all items (messages) in a specific conversation.
+
+**Path Parameters:**
+- `conversation_id` (string, required): The conversation ID
+
+**Query Parameters:**
+- `limit` (integer, optional): Number of items to return (1-100, default: 20)
+- `offset` (integer, optional): Number of items to skip (default: 0)
+
+**Response:**
+```json
+{
+ "items": [
+ {
+ "id": "item_001",
+ "conversation_id": "conv_123",
+ "role": "user",
+ "content": "Hello, can you help me with machine learning?",
+ "created_at": "2024-01-01T12:00:00Z",
+ "metadata": {
+ "tokens": 12
+ }
+ },
+ {
+ "id": "item_002",
+ "conversation_id": "conv_123",
+ "role": "assistant",
+ "content": "Of course! I'd be happy to help you with machine learning. What specific aspect would you like to learn about?",
+ "created_at": "2024-01-01T12:01:00Z",
+ "metadata": {
+ "tokens": 25,
+ "model": "jan-v1-4b"
+ }
+ }
+ ],
+ "total": 2,
+ "limit": 20,
+ "offset": 0
+}
+```
+
+**Example:**
+```bash
+curl -H "Authorization: Bearer " \
+ "http://localhost:8080/v1/conversations/conv_123/items?limit=50"
+```
+
+### Create Items in Conversation
+
+**Endpoint**: `POST /v1/conversations/{conversation_id}/items`
+
+Adds new items (messages) to a conversation.
+
+**Path Parameters:**
+- `conversation_id` (string, required): The conversation ID
+
+**Request Body:**
+```json
+{
+ "items": [
+ {
+ "role": "user",
+ "content": "What is supervised learning?",
+ "metadata": {
+ "tokens": 6
+ }
+ },
+ {
+ "role": "assistant",
+ "content": "Supervised learning is a type of machine learning where algorithms learn from labeled training data to make predictions on new, unseen data.",
+ "metadata": {
+ "tokens": 28,
+ "model": "jan-v1-4b"
+ }
+ }
+ ]
+}
+```
+
+**Response:**
+```json
+{
+ "items": [
+ {
+ "id": "item_003",
+ "conversation_id": "conv_123",
+ "role": "user",
+ "content": "What is supervised learning?",
+ "created_at": "2024-01-01T12:02:00Z",
+ "metadata": {
+ "tokens": 6
+ }
+ },
+ {
+ "id": "item_004",
+ "conversation_id": "conv_123",
+ "role": "assistant",
+ "content": "Supervised learning is a type of machine learning where algorithms learn from labeled training data to make predictions on new, unseen data.",
+ "created_at": "2024-01-01T12:02:30Z",
+ "metadata": {
+ "tokens": 28,
+ "model": "jan-v1-4b"
+ }
+ }
+ ]
+}
+```
+
+**Example:**
+```bash
+curl -X POST http://localhost:8080/v1/conversations/conv_123/items \
+ -H "Authorization: Bearer " \
+ -H "Content-Type: application/json" \
+ -d '{
+ "items": [
+ {
+ "role": "user",
+ "content": "What is supervised learning?"
+ },
+ {
+ "role": "assistant",
+ "content": "Supervised learning is a type of machine learning..."
+ }
+ ]
+ }'
+```
+
+### Get Item from Conversation
+
+**Endpoint**: `GET /v1/conversations/{conversation_id}/items/{item_id}`
+
+Retrieves a specific item from a conversation.
+
+**Path Parameters:**
+- `conversation_id` (string, required): The conversation ID
+- `item_id` (string, required): The item ID
+
+**Response:**
+```json
+{
+ "id": "item_001",
+ "conversation_id": "conv_123",
+ "role": "user",
+ "content": "Hello, can you help me with machine learning?",
+ "created_at": "2024-01-01T12:00:00Z",
+ "metadata": {
+ "tokens": 12
+ }
+}
+```
+
+**Example:**
+```bash
+curl -H "Authorization: Bearer " \
+ http://localhost:8080/v1/conversations/conv_123/items/item_001
+```
+
+### Delete Item from Conversation
+
+**Endpoint**: `DELETE /v1/conversations/{conversation_id}/items/{item_id}`
+
+Removes a specific item from a conversation.
+
+**Path Parameters:**
+- `conversation_id` (string, required): The conversation ID
+- `item_id` (string, required): The item ID
+
+**Response:**
+```
+204 No Content
+```
+
+**Example:**
+```bash
+curl -X DELETE http://localhost:8080/v1/conversations/conv_123/items/item_001 \
+ -H "Authorization: Bearer "
+```
+
+## Data Models
+
+### Conversation Object
+
+```json
+{
+ "id": "string",
+ "title": "string",
+ "model": "string",
+ "created_at": "datetime",
+ "updated_at": "datetime",
+ "item_count": "integer",
+ "user_id": "string",
+ "metadata": "object"
+}
+```
+
+### Item Object
+
+```json
+{
+ "id": "string",
+ "conversation_id": "string",
+ "role": "user|assistant|system",
+ "content": "string",
+ "created_at": "datetime",
+ "metadata": "object"
+}
+```
+
+## Error Responses
+
+### Common Error Codes
+
+| Status Code | Description |
+|-------------|-------------|
+| `400` | Bad Request - Invalid request format or parameters |
+| `401` | Unauthorized - Invalid or missing authentication |
+| `403` | Forbidden - Insufficient permissions |
+| `404` | Not Found - Conversation or item not found |
+| `429` | Too Many Requests - Rate limit exceeded |
+| `500` | Internal Server Error - Server error |
+
+### Error Response Format
+
+```json
+{
+ "error": {
+ "message": "Conversation not found",
+ "type": "not_found_error",
+ "code": "conversation_not_found"
+ }
+}
+```
+
+## Best Practices
+
+### Conversation Management
+
+1. **Use Descriptive Titles**: Create meaningful conversation titles for easy identification
+2. **Organize with Metadata**: Use metadata to categorize and tag conversations
+3. **Regular Cleanup**: Delete old conversations to manage storage
+4. **Batch Operations**: Use bulk operations when adding multiple items
+
+### Performance Optimization
+
+1. **Pagination**: Use limit and offset for large conversation lists
+2. **Selective Loading**: Load only necessary conversation data
+3. **Caching**: Cache frequently accessed conversations
+4. **Indexing**: Use metadata for efficient conversation filtering
+
+## Rate Limiting
+
+Conversation endpoints have the following rate limits:
+- **List/Get operations**: 100 requests per minute
+- **Create/Update operations**: 50 requests per minute
+- **Delete operations**: 20 requests per minute
+
+Rate limit headers are included in responses:
+```
+X-RateLimit-Limit: 100
+X-RateLimit-Remaining: 99
+X-RateLimit-Reset: 1609459200
+```
diff --git a/docs/src/pages/docs/server/api-reference-jan-responses.mdx b/docs/src/pages/docs/server/api-reference-jan-responses.mdx
new file mode 100644
index 000000000..33de86881
--- /dev/null
+++ b/docs/src/pages/docs/server/api-reference-jan-responses.mdx
@@ -0,0 +1,525 @@
+---
+title: Responses API
+description: Advanced response operations for managing AI response lifecycle and metadata.
+---
+
+## Overview
+
+The Jan-Responses API provides advanced endpoints for managing AI response lifecycle, including response creation, retrieval, cancellation, and comprehensive input item management. This API is designed for applications that require detailed control over response processing and metadata tracking.
+
+## Endpoints
+
+### Create Response
+
+**Endpoint**: `POST /v1/responses`
+
+Creates a new AI response with comprehensive configuration options and input item management.
+
+**Request Body:**
+```json
+{
+ "model": "jan-v1-4b",
+ "messages": [
+ {
+ "role": "user",
+ "content": "Analyze the following data and provide insights"
+ }
+ ],
+ "parameters": {
+ "max_tokens": 1000,
+ "temperature": 0.7,
+ "stream": false,
+ "top_p": 0.9,
+ "frequency_penalty": 0.0,
+ "presence_penalty": 0.0
+ },
+ "metadata": {
+ "session_id": "sess_456",
+ "user_context": "data_analyst",
+ "priority": "high",
+ "tags": ["analysis", "data", "insights"]
+ },
+ "input_items": [
+ {
+ "role": "user",
+ "content": "Analyze the following data and provide insights",
+ "metadata": {
+ "source": "user_input",
+ "language": "en"
+ }
+ }
+ ]
+}
+```
+
+**Parameters:**
+- `model` (string, required): Model identifier for the response
+- `messages` (array, required): Array of input messages
+- `parameters` (object, optional): Advanced model parameters
+- `metadata` (object, optional): Comprehensive response metadata
+- `input_items` (array, optional): Detailed input item specifications
+
+**Response:**
+```json
+{
+ "id": "resp_abc123",
+ "model": "jan-v1-4b",
+ "status": "processing",
+ "created_at": "2024-01-01T12:00:00Z",
+ "updated_at": "2024-01-01T12:00:00Z",
+ "metadata": {
+ "session_id": "sess_456",
+ "user_context": "data_analyst",
+ "priority": "high",
+ "tags": ["analysis", "data", "insights"]
+ },
+ "input_items": [
+ {
+ "id": "item_001",
+ "response_id": "resp_abc123",
+ "role": "user",
+ "content": "Analyze the following data and provide insights",
+ "created_at": "2024-01-01T12:00:00Z",
+ "metadata": {
+ "source": "user_input",
+ "language": "en"
+ }
+ }
+ ],
+ "processing_info": {
+ "estimated_completion_time": "2024-01-01T12:02:00Z",
+ "queue_position": 1,
+ "priority_score": 85
+ }
+}
+```
+
+**Example:**
+```bash
+curl -X POST http://localhost:8080/v1/responses \
+ -H "Authorization: Bearer " \
+ -H "Content-Type: application/json" \
+ -d '{
+ "model": "jan-v1-4b",
+ "messages": [
+ {"role": "user", "content": "Analyze the following data and provide insights"}
+ ],
+ "parameters": {
+ "max_tokens": 1000,
+ "temperature": 0.7
+ },
+ "metadata": {
+ "session_id": "sess_456",
+ "priority": "high",
+ "tags": ["analysis", "data"]
+ }
+ }'
+```
+
+### Get Response
+
+**Endpoint**: `GET /v1/responses/{response_id}`
+
+Retrieves comprehensive details of a specific response including status, content, metadata, and processing information.
+
+**Path Parameters:**
+- `response_id` (string, required): The response ID
+
+**Query Parameters:**
+- `include_metadata` (boolean, optional): Include detailed metadata (default: true)
+- `include_input_items` (boolean, optional): Include input items (default: true)
+- `include_usage` (boolean, optional): Include usage statistics (default: true)
+
+**Response:**
+```json
+{
+ "id": "resp_abc123",
+ "model": "jan-v1-4b",
+ "status": "completed",
+ "created_at": "2024-01-01T12:00:00Z",
+ "updated_at": "2024-01-01T12:03:45Z",
+ "completed_at": "2024-01-01T12:03:45Z",
+ "metadata": {
+ "session_id": "sess_456",
+ "user_context": "data_analyst",
+ "priority": "high",
+ "tags": ["analysis", "data", "insights"],
+ "processing_time_ms": 225000,
+ "model_version": "v1.2.3"
+ },
+ "content": {
+ "text": "Based on the provided data, I can identify several key insights...",
+ "format": "text",
+ "confidence_score": 0.92,
+ "sentiment": "neutral"
+ },
+ "usage": {
+ "prompt_tokens": 25,
+ "completion_tokens": 450,
+ "total_tokens": 475,
+ "cost": 0.001425,
+ "efficiency_score": 0.89
+ },
+ "input_items": [
+ {
+ "id": "item_001",
+ "response_id": "resp_abc123",
+ "role": "user",
+ "content": "Analyze the following data and provide insights",
+ "created_at": "2024-01-01T12:00:00Z",
+ "metadata": {
+ "source": "user_input",
+ "language": "en",
+ "tokens": 12
+ }
+ }
+ ],
+ "quality_metrics": {
+ "coherence_score": 0.94,
+ "relevance_score": 0.91,
+ "completeness_score": 0.88,
+ "accuracy_score": 0.93
+ }
+}
+```
+
+**Example:**
+```bash
+curl -H "Authorization: Bearer " \
+ "http://localhost:8080/v1/responses/resp_abc123?include_metadata=true&include_usage=true"
+```
+
+### Delete Response
+
+**Endpoint**: `DELETE /v1/responses/{response_id}`
+
+Permanently deletes a response and all its associated data, including input items and metadata.
+
+**Path Parameters:**
+- `response_id` (string, required): The response ID
+
+**Query Parameters:**
+- `force` (boolean, optional): Force deletion even if response is processing (default: false)
+
+**Response:**
+```
+204 No Content
+```
+
+**Example:**
+```bash
+curl -X DELETE http://localhost:8080/v1/responses/resp_abc123 \
+ -H "Authorization: Bearer "
+```
+
+### Cancel Response
+
+**Endpoint**: `POST /v1/responses/{response_id}/cancel`
+
+Cancels a response that is currently being processed with detailed cancellation information.
+
+**Path Parameters:**
+- `response_id` (string, required): The response ID
+
+**Request Body:**
+```json
+{
+ "reason": "user_requested",
+ "message": "User cancelled the request"
+}
+```
+
+**Response:**
+```json
+{
+ "id": "resp_abc123",
+ "status": "cancelled",
+ "updated_at": "2024-01-01T12:01:30Z",
+ "cancelled_at": "2024-01-01T12:01:30Z",
+ "cancellation_info": {
+ "reason": "user_requested",
+ "message": "User cancelled the request",
+ "processing_time_ms": 90000
+ }
+}
+```
+
+**Example:**
+```bash
+curl -X POST http://localhost:8080/v1/responses/resp_abc123/cancel \
+ -H "Authorization: Bearer " \
+ -H "Content-Type: application/json" \
+ -d '{
+ "reason": "user_requested",
+ "message": "User cancelled the request"
+ }'
+```
+
+### List Input Items
+
+**Endpoint**: `GET /v1/responses/{response_id}/input_items`
+
+Retrieves all input items associated with a specific response with detailed metadata and analysis.
+
+**Path Parameters:**
+- `response_id` (string, required): The response ID
+
+**Query Parameters:**
+- `limit` (integer, optional): Number of items to return (1-100, default: 20)
+- `offset` (integer, optional): Number of items to skip (default: 0)
+- `include_metadata` (boolean, optional): Include item metadata (default: true)
+- `include_analysis` (boolean, optional): Include item analysis (default: false)
+
+**Response:**
+```json
+{
+ "input_items": [
+ {
+ "id": "item_001",
+ "response_id": "resp_abc123",
+ "role": "user",
+ "content": "Analyze the following data and provide insights",
+ "created_at": "2024-01-01T12:00:00Z",
+ "metadata": {
+ "source": "user_input",
+ "language": "en",
+ "tokens": 12,
+ "complexity": "medium"
+ },
+ "analysis": {
+ "sentiment": "neutral",
+ "intent": "analysis_request",
+ "entities": ["data", "insights"],
+ "confidence": 0.95
+ }
+ },
+ {
+ "id": "item_002",
+ "response_id": "resp_abc123",
+ "role": "system",
+ "content": "You are a data analysis expert. Provide detailed insights based on the data provided.",
+ "created_at": "2024-01-01T12:00:00Z",
+ "metadata": {
+ "source": "system_prompt",
+ "language": "en",
+ "tokens": 20,
+ "type": "instruction"
+ }
+ }
+ ],
+ "total": 2,
+ "limit": 20,
+ "offset": 0,
+ "summary": {
+ "total_tokens": 32,
+ "average_complexity": "medium",
+ "primary_intent": "analysis_request"
+ }
+}
+```
+
+**Example:**
+```bash
+curl -H "Authorization: Bearer " \
+ "http://localhost:8080/v1/responses/resp_abc123/input_items?include_analysis=true&limit=50"
+```
+
+## Advanced Features
+
+### Response Lifecycle Management
+
+#### Status Tracking
+
+- **`queued`**: Response is queued for processing
+- **`processing`**: Response is being generated
+- **`completed`**: Response has been successfully generated
+- **`failed`**: Response generation failed
+- **`cancelled`**: Response was cancelled before completion
+- **`timeout`**: Response generation timed out
+- **`retrying`**: Response is being retried after failure
+
+#### Progress Tracking
+
+```json
+{
+ "progress": {
+ "current_step": "generating_content",
+ "completion_percentage": 75,
+ "estimated_remaining_time_ms": 30000,
+ "steps_completed": [
+ "input_validation",
+ "model_loading",
+ "context_preparation"
+ ]
+ }
+}
+```
+
+### Quality Metrics
+
+#### Response Quality Assessment
+
+```json
+{
+ "quality_metrics": {
+ "coherence_score": 0.94,
+ "relevance_score": 0.91,
+ "completeness_score": 0.88,
+ "accuracy_score": 0.93,
+ "overall_quality": 0.92,
+ "quality_grade": "A"
+ }
+}
+```
+
+#### Content Analysis
+
+```json
+{
+ "content_analysis": {
+ "sentiment": "positive",
+ "confidence_score": 0.92,
+ "readability_score": 0.87,
+ "technical_complexity": "medium",
+ "key_topics": ["data analysis", "insights", "patterns"],
+ "language": "en"
+ }
+}
+```
+
+### Metadata Management
+
+#### Standard Metadata Fields
+
+- **`session_id`**: Links response to a user session
+- **`user_context`**: Additional context about the user
+- **`request_source`**: Source of the request (web, api, mobile)
+- **`priority`**: Response priority level (low, medium, high, urgent)
+- **`tags`**: Array of tags for categorization
+- **`processing_time_ms`**: Time taken to process the response
+- **`model_version`**: Version of the model used
+
+#### Custom Metadata
+
+```json
+{
+ "metadata": {
+ "session_id": "sess_456",
+ "user_context": "data_analyst",
+ "priority": "high",
+ "tags": ["analysis", "data", "insights"],
+ "custom_field": "custom_value",
+ "business_context": "quarterly_report",
+ "department": "analytics"
+ }
+}
+```
+
+### Input Item Analysis
+
+#### Item Metadata
+
+```json
+{
+ "metadata": {
+ "source": "user_input|system_prompt|context",
+ "language": "en",
+ "tokens": 12,
+ "complexity": "low|medium|high",
+ "type": "question|instruction|data",
+ "confidence": 0.95
+ }
+}
+```
+
+#### Item Analysis
+
+```json
+{
+ "analysis": {
+ "sentiment": "positive|negative|neutral",
+ "intent": "analysis_request|question|instruction",
+ "entities": ["entity1", "entity2"],
+ "confidence": 0.95,
+ "complexity_score": 0.7
+ }
+}
+```
+
+## Error Responses
+
+### Common Error Codes
+
+| Status Code | Description |
+|-------------|-------------|
+| `400` | Bad Request - Invalid request format or parameters |
+| `401` | Unauthorized - Invalid or missing authentication |
+| `404` | Not Found - Response not found |
+| `409` | Conflict - Response cannot be cancelled (already completed) |
+| `422` | Unprocessable Entity - Invalid input data |
+| `429` | Too Many Requests - Rate limit exceeded |
+| `500` | Internal Server Error - Server error |
+| `503` | Service Unavailable - Model service unavailable |
+
+### Error Response Format
+
+```json
+{
+ "error": {
+ "message": "Response not found",
+ "type": "not_found_error",
+ "code": "response_not_found",
+ "response_id": "resp_abc123",
+ "details": {
+ "suggestion": "Check if the response ID is correct",
+ "documentation": "https://docs.jan.ai/api-reference"
+ }
+ }
+}
+```
+
+## Best Practices
+
+### Response Management
+
+1. **Monitor Status**: Implement real-time status monitoring for long-running requests
+2. **Handle Cancellation**: Provide clear cancellation options for users
+3. **Store Metadata**: Use comprehensive metadata for tracking and analytics
+4. **Quality Assurance**: Monitor quality metrics and implement feedback loops
+
+### Performance Optimization
+
+1. **Batch Operations**: Group related requests when possible
+2. **Async Processing**: Use async patterns for long-running responses
+3. **Caching**: Cache completed responses and metadata
+4. **Monitoring**: Track response times, success rates, and quality metrics
+
+### Error Handling
+
+1. **Retry Logic**: Implement intelligent retry logic for transient failures
+2. **Timeout Handling**: Set appropriate timeouts based on response complexity
+3. **Graceful Degradation**: Handle service unavailability gracefully
+4. **User Feedback**: Provide clear, actionable error messages
+
+### Data Management
+
+1. **Cleanup**: Implement automated cleanup of old responses
+2. **Backup**: Regular backup of important response data
+3. **Privacy**: Ensure proper handling of sensitive data in responses
+4. **Compliance**: Maintain compliance with data protection regulations
+
+## Rate Limiting
+
+Jan-Responses endpoints have the following rate limits:
+- **Create operations**: 15 requests per minute
+- **Get operations**: 100 requests per minute
+- **Cancel operations**: 10 requests per minute
+- **Delete operations**: 5 requests per minute
+- **List operations**: 200 requests per minute
+
+Rate limit headers are included in responses:
+```
+X-RateLimit-Limit: 15
+X-RateLimit-Remaining: 14
+X-RateLimit-Reset: 1609459200
+```
diff --git a/docs/src/pages/docs/server/api-reference-jan-server.mdx b/docs/src/pages/docs/server/api-reference-jan-server.mdx
new file mode 100644
index 000000000..e59781a65
--- /dev/null
+++ b/docs/src/pages/docs/server/api-reference-jan-server.mdx
@@ -0,0 +1,141 @@
+---
+title: Server API
+description: System administration and monitoring endpoints for Jan Server infrastructure.
+---
+
+## Overview
+
+The Jan Server API provides system administration and monitoring endpoints for managing the Jan Server infrastructure, including version information and basic health checks. These endpoints are essential for system administrators and monitoring tools.
+
+## Endpoints
+
+### Get API Build Version
+
+**Endpoint**: `GET /v1/version`
+
+Retrieves the current build version and environment reload timestamp of the Jan Server API.
+
+**Response:**
+```json
+{
+ "version": "dev",
+ "env_reloaded_at": "2024-01-01T12:00:00Z"
+}
+```
+
+**Response Fields:**
+- `version` (string): Current version of the API server (defaults to "dev")
+- `env_reloaded_at` (string): ISO timestamp when environment variables were last reloaded
+
+**Example:**
+```bash
+curl http://localhost:8080/v1/version
+```
+
+## System Information
+
+### Version Information
+
+The version endpoint provides basic system information:
+
+- **Version**: Current version of the API server (typically "dev" in development)
+- **Environment Reload**: Timestamp when environment variables were last loaded/reloaded
+
+### Environment Variables
+
+The system loads configuration from environment variables including:
+- Database connection strings
+- JWT secrets and OAuth2 credentials
+- API keys for external services
+- CORS and SMTP settings
+
+## Health Monitoring
+
+### Health Check Endpoint
+
+**Endpoint**: `GET /healthcheck`
+
+Basic health check for load balancers and monitoring systems.
+
+**Response:**
+```json
+"ok"
+```
+
+**Example:**
+```bash
+curl http://localhost:8080/healthcheck
+```
+
+## Error Responses
+
+### Common Error Codes
+
+| Status Code | Description |
+|-------------|-------------|
+| `400` | Bad Request - Invalid request format or parameters |
+| `401` | Unauthorized - Invalid or missing authentication |
+| `403` | Forbidden - Insufficient permissions |
+| `404` | Not Found - Resource not found |
+| `429` | Too Many Requests - Rate limit exceeded |
+| `500` | Internal Server Error - Server error |
+| `503` | Service Unavailable - Service temporarily unavailable |
+
+### Error Response Format
+
+```json
+{
+ "error": {
+ "message": "Insufficient permissions",
+ "type": "forbidden_error",
+ "code": "admin_required",
+ "details": {
+ "required_role": "admin",
+ "current_role": "user"
+ }
+ }
+}
+```
+
+## Best Practices
+
+### System Monitoring
+
+1. **Health Checks**: Implement regular health checks for all components
+2. **Version Tracking**: Keep track of component versions and updates
+3. **Dependency Monitoring**: Monitor external service dependencies
+4. **Logging**: Maintain detailed logs for troubleshooting
+
+### Performance Monitoring
+
+1. **Response Times**: Monitor API response times and set thresholds
+2. **Resource Usage**: Track CPU, memory, and GPU utilization
+3. **Error Rates**: Monitor error rates and implement alerting
+4. **Capacity Planning**: Use metrics for capacity planning and scaling
+
+### Security
+
+1. **Access Control**: Restrict admin endpoints to authorized users
+2. **Audit Logging**: Log all administrative actions
+3. **Configuration Security**: Secure configuration endpoints
+4. **Monitoring Access**: Monitor access to sensitive endpoints
+
+### Maintenance
+
+1. **Version Tracking**: Keep track of component versions and updates
+2. **Dependency Monitoring**: Monitor external service dependencies
+3. **Backup Verification**: Regularly verify system backups
+4. **Update Procedures**: Follow proper update and deployment procedures
+
+## Rate Limiting
+
+Jan Server system endpoints have the following rate limits:
+- **Version endpoint**: Standard rate limits apply
+- **Health check endpoint**: Standard rate limits apply
+
+Rate limit headers are included in responses when applicable:
+```
+X-RateLimit-Limit: 100
+X-RateLimit-Remaining: 99
+X-RateLimit-Reset: 1609459200
+```
diff --git a/docs/src/pages/docs/server/api-reference.mdx b/docs/src/pages/docs/server/api-reference.mdx
new file mode 100644
index 000000000..799a6227e
--- /dev/null
+++ b/docs/src/pages/docs/server/api-reference.mdx
@@ -0,0 +1,458 @@
+---
+title: API Reference
+description: Complete API documentation for Jan Server endpoints organized by functionality.
+---
+
+## Overview
+
+Jan Server provides a comprehensive API gateway for AI model interactions with enterprise-grade features. It offers OpenAI-compatible endpoints, multi-tenant organization management, conversation handling, and comprehensive response tracking. The system serves as a centralized gateway for AI model interactions with features including user management, organization hierarchies, project-based access control, and real-time streaming responses.
+
+### Key API Features
+
+- **OpenAI-Compatible API**: Full compatibility with OpenAI's chat completion API with streaming support and reasoning content handling
+- **Multi-Tenant Architecture**: Organization and project-based access control with hierarchical permissions and member management
+- **Conversation Management**: Persistent conversation storage and retrieval with item-level management, including message, function call, and reasoning content types
+- **Authentication & Authorization**: JWT-based auth with Google OAuth2 integration and role-based access control
+- **API Key Management**: Secure API key generation and management at organization and project levels with multiple key types (admin, project, organization, service, ephemeral)
+- **Model Registry**: Dynamic model endpoint management with automatic health checking and service discovery
+- **Streaming Support**: Real-time streaming responses with Server-Sent Events (SSE) and chunked transfer encoding
+- **MCP Integration**: Model Context Protocol support for external tools and resources with JSON-RPC 2.0
+- **Web Search**: Serper API integration for web search capabilities via MCP with webpage fetching
+- **Response Management**: Comprehensive response tracking with status management and usage statistics
+
+## Base URL
+
+All API endpoints are available at the API gateway base URL:
+
+```
+http://localhost:8080/v1
+```
+
+The API gateway automatically forwards port 8080 when using the standard deployment scripts.
+
+## API Sections
+
+The Jan Server API is organized into the following functional areas:
+
+### [Authentication](/server/api-reference-authentication)
+User authentication and authorization endpoints (`/v1/auth`):
+- Google OAuth2 callback handler (`POST /google/callback`)
+- Google OAuth2 login URL (`GET /google/login`)
+- User profile management (`GET /me`)
+- JWT token refresh (`GET /refresh-token`)
+- Guest login functionality (`POST /guest-login`)
+- User logout (`GET /logout`)
+
+### [Completions API](/server/api-reference-chat)
+Core chat completion endpoints (`/v1/chat`, `/v1/mcp`, `/v1/models`):
+- OpenAI-compatible chat completions (`POST /chat/completions`)
+- Model Context Protocol (MCP) support (`POST /mcp`)
+- Model listing and information (`GET /models`)
+- Streaming responses with Server-Sent Events (SSE)
+- Supported MCP methods: initialize, notifications/initialized, ping, tools/list, tools/call, prompts/list, prompts/call, resources/list, resources/templates/list, resources/read, resources/subscribe
+
+### [Chat Conversations](/server/api-reference-chat-conversations)
+Conversation-aware chat endpoints (`/v1/conv`):
+- Conversation-based chat completions (`POST /chat/completions`)
+- MCP streamable endpoint for conversations (`POST /mcp`)
+- Model information for conversation contexts (`GET /models`)
+- Streaming support with conversation persistence
+
+### [Conversations API](/server/api-reference-conversations)
+Conversation management and persistence (`/v1/conversations`):
+- Create, read, update, delete conversations
+- Conversation item management (`POST /{conversation_id}/items`, `GET /{conversation_id}/items`)
+- Individual item operations (`GET /{conversation_id}/items/{item_id}`, `DELETE /{conversation_id}/items/{item_id}`)
+- Pagination support for large conversation histories
+
+### [Administration API](/server/api-reference-administration)
+Multi-tenant organization management (`/v1/organization`):
+- Organization management (`GET /`, `POST /`, `GET /{org_id}`, `PATCH /{org_id}`, `DELETE /{org_id}`)
+- Organization API keys (`GET /{org_id}/api_keys`, `POST /{org_id}/api_keys`, `DELETE /{org_id}/api_keys/{key_id}`)
+- Admin API key management (`GET /admin_api_keys`, `POST /admin_api_keys`, `GET /admin_api_keys/{key_id}`, `DELETE /admin_api_keys/{key_id}`)
+- Project management (`GET /{org_id}/projects`, `POST /{org_id}/projects`, `GET /{org_id}/projects/{project_id}`, `PATCH /{org_id}/projects/{project_id}`, `DELETE /{org_id}/projects/{project_id}`)
+- Project API keys (`GET /{org_id}/projects/{project_id}/api_keys`, `POST /{org_id}/projects/{project_id}/api_keys`, `DELETE /{org_id}/projects/{project_id}/api_keys/{key_id}`)
+- Project archiving (`POST /{org_id}/projects/{project_id}/archive`)
+- Organization invites (`GET /{org_id}/invites`, `POST /{org_id}/invites`, `GET /{org_id}/invites/{invite_id}`, `DELETE /{org_id}/invites/{invite_id}`)
+- Hierarchical access control and permissions
+
+### [Responses API](/server/api-reference-jan-responses)
+Advanced response operations (`/v1/responses`):
+- Response lifecycle management (`POST /`, `GET /{response_id}`, `DELETE /{response_id}`)
+- Response cancellation (`POST /{response_id}/cancel`)
+- Input item tracking (`GET /{response_id}/input_items`)
+- Comprehensive status management and usage statistics
+
+### [Server API](/server/api-reference-jan-server)
+System administration and monitoring:
+- API version information (`GET /v1/version`)
+- System health and status (`GET /healthcheck`)
+- Development callback test (`GET /google/testcallback`)
+
+## Authentication
+
+Jan Server supports multiple authentication methods with role-based access control:
+
+### JWT Token Authentication
+
+JWT tokens provide stateless authentication with Google OAuth2 integration:
+
+```bash
+curl -H "Authorization: Bearer " \
+ http://localhost:8080/v1/protected-endpoint
+```
+
+### API Key Authentication
+
+Multiple types of API keys with scoped permissions:
+- **Admin API Keys**: Organization-level administrative access
+- **Project API Keys**: Project-scoped access within organizations
+- **Organization API Keys**: Organization-wide access
+- **Service API Keys**: Service-to-service communication
+- **Ephemeral API Keys**: Temporary access tokens
+
+```bash
+curl -H "Authorization: Bearer " \
+ http://localhost:8080/v1/protected-endpoint
+```
+
+### Google OAuth2 Integration
+
+Social authentication with Google OAuth2:
+1. Redirect to `/v1/auth/google/login` for OAuth URL
+2. Handle callback at `/v1/auth/google/callback`
+3. Exchange authorization code for JWT token
+4. Use JWT token for subsequent API calls
+
+## API Usage Examples
+
+### Chat Completion (OpenAI Compatible)
+
+```bash
+curl -X POST http://localhost:8080/v1/chat/completions \
+ -H "Content-Type: application/json" \
+ -H "Authorization: Bearer YOUR_API_KEY" \
+ -d '{
+ "model": "jan-v1-4b",
+ "messages": [
+ {"role": "user", "content": "Hello, how are you?"}
+ ],
+ "stream": true,
+ "temperature": 0.7,
+ "max_tokens": 1000
+ }'
+```
+
+### Conversation-based Chat Completion
+
+```bash
+curl -X POST http://localhost:8080/v1/conv/chat/completions \
+ -H "Content-Type: application/json" \
+ -H "Authorization: Bearer YOUR_API_KEY" \
+ -d '{
+ "model": "jan-v1-4b",
+ "input": "Hello, how are you?",
+ "conversation_id": "conv_abc123",
+ "stream": true,
+ "temperature": 0.7,
+ "max_tokens": 1000
+ }'
+```
+
+### Web Search via MCP
+
+```bash
+curl -X POST http://localhost:8080/v1/mcp \
+ -H "Content-Type: application/json" \
+ -H "Authorization: Bearer YOUR_API_KEY" \
+ -d '{
+ "jsonrpc": "2.0",
+ "id": 1,
+ "method": "tools/call",
+ "params": {
+ "name": "serper_search",
+ "arguments": {
+ "q": "latest AI developments",
+ "num": 5
+ }
+ }
+ }'
+```
+
+### Create Organization
+
+```bash
+curl -X POST http://localhost:8080/v1/organization \
+ -H "Content-Type: application/json" \
+ -H "Authorization: Bearer YOUR_JWT_TOKEN" \
+ -d '{
+ "name": "My Organization",
+ "description": "A sample organization"
+ }'
+```
+
+### Create API Key
+
+```bash
+curl -X POST http://localhost:8080/v1/organization/{org_id}/api_keys \
+ -H "Content-Type: application/json" \
+ -H "Authorization: Bearer YOUR_JWT_TOKEN" \
+ -d '{
+ "name": "My API Key",
+ "description": "API key for external integrations"
+ }'
+```
+
+### Create Project
+
+```bash
+curl -X POST http://localhost:8080/v1/organization/{org_id}/projects \
+ -H "Content-Type: application/json" \
+ -H "Authorization: Bearer YOUR_JWT_TOKEN" \
+ -d '{
+ "name": "My Project",
+ "description": "A sample project"
+ }'
+```
+
+### Create Conversation
+
+```bash
+curl -X POST http://localhost:8080/v1/conversations \
+ -H "Content-Type: application/json" \
+ -H "Authorization: Bearer YOUR_API_KEY" \
+ -d '{
+ "title": "My Conversation",
+ "description": "A sample conversation"
+ }'
+```
+
+### Add Item to Conversation
+
+```bash
+curl -X POST http://localhost:8080/v1/conversations/{conversation_id}/items \
+ -H "Content-Type: application/json" \
+ -H "Authorization: Bearer YOUR_API_KEY" \
+ -d '{
+ "type": "message",
+ "content": "Hello, how are you?",
+ "role": "user"
+ }'
+```
+
+### Create Response
+
+```bash
+curl -X POST http://localhost:8080/v1/responses \
+ -H "Content-Type: application/json" \
+ -H "Authorization: Bearer YOUR_API_KEY" \
+ -d '{
+ "model": "jan-v1-4b",
+ "messages": [
+ {"role": "user", "content": "Hello, how are you?"}
+ ],
+ "temperature": 0.7,
+ "max_tokens": 1000
+ }'
+```
+
+### Cancel Response
+
+```bash
+curl -X POST http://localhost:8080/v1/responses/{response_id}/cancel \
+ -H "Authorization: Bearer YOUR_API_KEY"
+```
+
+## Interactive Documentation
+
+Jan Server provides interactive Swagger documentation at:
+
+```
+http://localhost:8080/api/swagger/index.html
+```
+
+This interface allows you to:
+- Browse all available endpoints
+- Test API calls directly from the browser
+- View request/response schemas
+- Generate code samples
+
+The Swagger documentation is auto-generated from Go code annotations and provides the most up-to-date API reference.
+
+## API Structure Overview
+
+The API is organized into the following main groups:
+
+1. **Authentication API** - User authentication and authorization
+2. **Chat Completions API** - Chat completions, models, and MCP functionality
+3. **Conversation-aware Chat API** - Conversation-based chat completions
+4. **Conversations API** - Conversation management and items
+5. **Responses API** - Response tracking and management
+6. **Administration API** - Organization and project management
+7. **Server API** - System information and health checks
+
+### Supported MCP Methods
+
+The Model Context Protocol (MCP) integration supports the following methods:
+
+- `initialize` - MCP initialization
+- `notifications/initialized` - Initialization notification
+- `ping` - Connection ping
+- `tools/list` - List available tools (Serper search, webpage fetch)
+- `tools/call` - Execute tool calls
+- `prompts/list` - List available prompts
+- `prompts/call` - Execute prompts
+- `resources/list` - List available resources
+- `resources/templates/list` - List resource templates
+- `resources/read` - Read resource content
+- `resources/subscribe` - Subscribe to resource updates
+
+### API Key Types
+
+Jan Server supports multiple types of API keys with different scopes:
+
+- **Admin API Keys**: Organization-level administrative access
+- **Project API Keys**: Project-scoped access within organizations
+- **Organization API Keys**: Organization-wide access
+- **Service API Keys**: Service-to-service communication
+- **Ephemeral API Keys**: Temporary access tokens
+
+## Error Responses
+
+Jan Server returns standard HTTP status codes and JSON error responses:
+
+```json
+{
+ "error": {
+ "message": "Invalid request format",
+ "type": "invalid_request_error",
+ "code": "invalid_json"
+ }
+}
+```
+
+### Common Error Codes
+
+| Status Code | Description |
+|-------------|-------------|
+| `400` | Bad Request - Invalid request format |
+| `401` | Unauthorized - Invalid or missing authentication |
+| `403` | Forbidden - Insufficient permissions |
+| `404` | Not Found - Resource not found |
+| `429` | Too Many Requests - Rate limit exceeded |
+| `500` | Internal Server Error - Server error |
+| `503` | Service Unavailable - Service temporarily unavailable |
+
+## Rate Limiting
+
+API endpoints implement rate limiting to prevent abuse:
+
+- **Authenticated requests**: 1000 requests per hour per user
+- **Unauthenticated requests**: 100 requests per hour per IP
+- **Model inference**: 60 requests per minute per user
+
+Rate limit headers are included in responses:
+```
+X-RateLimit-Limit: 1000
+X-RateLimit-Remaining: 999
+X-RateLimit-Reset: 1609459200
+```
+
+## SDK and Client Libraries
+
+### JavaScript/Node.js
+
+Use the OpenAI JavaScript SDK with Jan Server:
+
+```javascript
+import OpenAI from 'openai';
+
+const openai = new OpenAI({
+ baseURL: 'http://localhost:8080/v1',
+ apiKey: 'your-jwt-token'
+});
+
+const completion = await openai.chat.completions.create({
+ model: 'jan-v1-4b',
+ messages: [
+ { role: 'user', content: 'Hello!' }
+ ]
+});
+```
+
+### Python
+
+Use the OpenAI Python SDK:
+
+```python
+import openai
+
+openai.api_base = "http://localhost:8080/v1"
+openai.api_key = "your-jwt-token"
+
+response = openai.ChatCompletion.create(
+ model="jan-v1-4b",
+ messages=[
+ {"role": "user", "content": "Hello!"}
+ ]
+)
+```
+
+### Go
+
+Use the OpenAI Go SDK:
+
+```go
+package main
+
+import (
+ "context"
+ "fmt"
+ "github.com/sashabaranov/go-openai"
+)
+
+func main() {
+ client := openai.NewClientWithConfig(openai.DefaultConfig("your-jwt-token"))
+ client.BaseURL = "http://localhost:8080/v1"
+
+ resp, err := client.CreateChatCompletion(
+ context.Background(),
+ openai.ChatCompletionRequest{
+ Model: "jan-v1-4b",
+ Messages: []openai.ChatCompletionMessage{
+ {
+ Role: openai.ChatMessageRoleUser,
+ Content: "Hello!",
+ },
+ },
+ },
+ )
+
+ if err != nil {
+ fmt.Printf("ChatCompletion error: %v\n", err)
+ return
+ }
+
+ fmt.Println(resp.Choices[0].Message.Content)
+}
+```
+
+### cURL with Streaming
+
+For streaming responses:
+
+```bash
+curl -X POST http://localhost:8080/v1/chat/completions \
+ -H "Content-Type: application/json" \
+ -H "Authorization: Bearer YOUR_API_KEY" \
+ -H "Accept: text/event-stream" \
+ -d '{
+ "model": "jan-v1-4b",
+ "messages": [
+ {"role": "user", "content": "Tell me a story"}
+ ],
+ "stream": true,
+ "temperature": 0.7,
+ "max_tokens": 1000
+ }'
+```
diff --git a/docs/src/pages/docs/server/architecture.mdx b/docs/src/pages/docs/server/architecture.mdx
new file mode 100644
index 000000000..bf3036030
--- /dev/null
+++ b/docs/src/pages/docs/server/architecture.mdx
@@ -0,0 +1,336 @@
+---
+title: Architecture
+description: Technical architecture and system design of Jan Server components.
+---
+
+## System Overview
+
+Jan Server is a comprehensive self-hosted AI server platform that provides OpenAI-compatible APIs, multi-tenant organization management, and AI model inference capabilities. Jan Server enables organizations to deploy their own private AI infrastructure with full control over data, models, and access.
+
+Jan Server is a Kubernetes-native platform consisting of multiple microservices that work together to provide a complete AI infrastructure solution. It offers:
+
+
+
+### Key Features
+- **OpenAI-Compatible API**: Full compatibility with OpenAI's chat completion API
+- **Multi-Tenant Architecture**: Organization and project-based access control
+- **AI Model Inference**: Scalable model serving with health monitoring
+- **Database Management**: PostgreSQL with read/write replicas
+- **Authentication & Authorization**: JWT + Google OAuth2 integration
+- **API Key Management**: Secure API key generation and management
+- **Model Context Protocol (MCP)**: Support for external tools and resources
+- **Web Search Integration**: Serper API integration for web search capabilities
+- **Monitoring & Profiling**: Built-in performance monitoring and health checks
+
+## Business Domain Architecture
+
+### Core Domain Models
+
+#### User Management
+- **Users**: Support for both regular users and guest users with email-based authentication
+- **Organizations**: Multi-tenant organizations with owner/member roles and hierarchical access
+- **Projects**: Project-based resource isolation within organizations with member management
+- **Invites**: Email-based invitation system for organization and project membership
+
+#### Authentication & Authorization
+- **API Keys**: Multiple types (admin, project, organization, service, ephemeral) with scoped permissions
+- **JWT Tokens**: Stateless authentication with Google OAuth2 integration
+- **Role-Based Access**: Hierarchical permissions from organization owners to project members
+
+#### Conversation Management
+- **Conversations**: Persistent chat sessions with metadata and privacy controls
+- **Items**: Rich conversation items supporting messages, function calls, and reasoning content
+- **Content Types**: Support for text, images, files, and multimodal content with annotations
+- **Status Tracking**: Real-time status management (pending, in_progress, completed, failed, cancelled)
+
+#### Response Management
+- **Responses**: Comprehensive tracking of AI model interactions with full parameter logging
+- **Streaming**: Real-time streaming with Server-Sent Events and chunked transfer encoding
+- **Usage Statistics**: Token usage tracking and performance metrics
+- **Error Handling**: Detailed error tracking with unique error codes
+
+#### External Integrations
+- **Jan Inference Service**: Primary AI model inference backend with health monitoring
+- **Serper API**: Web search capabilities via MCP with search and webpage fetching
+- **SMTP**: Email notifications for invitations and system alerts
+- **Model Registry**: Dynamic model discovery and health checking
+
+### Data Flow Architecture
+
+1. **Request Processing**: HTTP requests → Authentication → Authorization → Business Logic
+2. **AI Inference**: Request → Jan Inference Service → Streaming Response → Database Storage
+3. **MCP Integration**: JSON-RPC 2.0 → Tool Execution → External APIs → Response Streaming
+4. **Health Monitoring**: Cron Jobs → Service Discovery → Model Registry Updates
+5. **Database Operations**: Read/Write Replicas → Transaction Management → Automatic Migrations
+
+## Components
+
+### Jan API Gateway
+
+The core API service that provides OpenAI-compatible endpoints and manages all client interactions.
+
+**Key Features:**
+- OpenAI-compatible chat completion API with streaming support
+- Multi-tenant organization and project management
+- JWT-based authentication with Google OAuth2 integration
+- API key management at organization and project levels
+- Model Context Protocol (MCP) support for external tools
+- Web search integration via Serper API
+- Comprehensive monitoring and profiling capabilities
+- Database transaction management with automatic rollback
+
+**Technology Stack:**
+- **Backend**: Go 1.24.6
+- **Web Framework**: Gin v1.10.1
+- **Database**: PostgreSQL with GORM v1.30.1
+- **Database Features**:
+ - Read/Write Replicas with GORM dbresolver
+ - Automatic migrations with Atlas
+ - Generated query interfaces with GORM Gen
+- **Authentication**: JWT v5.3.0 + Google OAuth2 v3.15.0
+- **API Documentation**: Swagger/OpenAPI v1.16.6
+- **Streaming**: Server-Sent Events (SSE) with chunked transfer
+- **Dependency Injection**: Google Wire v0.6.0
+- **Logging**: Logrus v1.9.3 with structured logging
+- **HTTP Client**: Resty v3.0.0-beta.3
+- **Profiling**:
+ - Built-in pprof endpoints
+ - Grafana Pyroscope Go integration v0.1.8
+- **Scheduling**: Crontab v1.2.0 for health checks
+- **MCP Protocol**: MCP-Go v0.37.0 for Model Context Protocol
+- **External Integrations**:
+ - Jan Inference Service
+ - Serper API (Web Search)
+ - Google OAuth2
+- **Development Tools**:
+ - Atlas for database migrations
+ - GORM Gen for code generation
+ - Swagger for API documentation
+
+**Project Structure:**
+```
+jan-api-gateway/
+├── application/ # Go application code
+├── docker/ # Docker configuration
+└── README.md # Service-specific documentation
+```
+
+### Jan Inference Model
+
+The AI model serving service that handles model inference requests.
+
+**Key Features:**
+- Scalable model serving infrastructure
+- Health monitoring and automatic failover
+- Load balancing across multiple model instances
+- Integration with various AI model backends
+
+**Technology Stack:**
+- Python-based model serving
+- Docker containerization
+- Kubernetes-native deployment
+
+**Project Structure:**
+```
+jan-inference-model/
+├── application/ # Python application code
+└── Dockerfile # Container configuration
+```
+
+### PostgreSQL Database
+
+The persistent data storage layer with enterprise-grade features.
+
+**Key Features:**
+- Read/write replica support for high availability
+- Automatic schema migrations with Atlas
+- Connection pooling and optimization
+- Transaction management with rollback support
+
+**Schema:**
+- User accounts and authentication
+- Conversation history and management
+- Project and organization management
+- API keys and access control
+- Response tracking and metadata
+
+## Data Flow
+
+### Request Processing
+
+1. **Client Request**: HTTP request to API gateway on port 8080
+2. **Authentication**: JWT token validation or OAuth2 flow
+3. **Request Routing**: Gateway routes to appropriate handler
+4. **Database Operations**: GORM queries for user data/state
+5. **Inference Call**: HTTP request to model service on port 8101
+6. **Response Assembly**: Gateway combines results and returns to client
+
+### Authentication Flow
+
+**JWT Authentication:**
+1. User provides credentials
+2. Gateway validates against database
+3. JWT token issued with HMAC-SHA256 signing
+4. Subsequent requests include JWT in Authorization header
+
+**OAuth2 Flow:**
+1. Client redirected to Google OAuth2
+2. Authorization code returned to redirect URL
+3. Gateway exchanges code for access token
+4. User profile retrieved from Google
+5. Local JWT token issued
+
+## Deployment Architecture
+
+### Kubernetes Resources
+
+**Deployments:**
+- `jan-api-gateway`: Single replica Go application
+- `jan-inference-model`: Single replica VLLM server
+- `postgresql`: StatefulSet with persistent storage
+
+**Services:**
+- `jan-api-gateway`: ClusterIP exposing port 8080
+- `jan-inference-model`: ClusterIP exposing port 8101
+- `postgresql`: ClusterIP exposing port 5432
+
+**Configuration:**
+- Environment variables via Helm values
+- Secrets for sensitive data (JWT keys, OAuth credentials)
+- ConfigMaps for application settings
+
+### Helm Chart Structure
+
+The system uses Helm charts for deployment configuration:
+
+```
+charts/
+├── umbrella-chart/ # Main deployment chart that orchestrates all services
+│ ├── Chart.yaml
+│ ├── values.yaml # Configuration values for different environments
+│ └── Chart.lock
+└── apps-charts/ # Individual service charts
+ ├── jan-api-gateway/ # API Gateway service chart
+ └── jan-inference-model/ # Inference Model service chart
+```
+
+**Chart Features:**
+- **Umbrella Chart**: Main deployment chart that orchestrates all services
+- **Service Charts**: Individual charts for each service (API Gateway, Inference Model)
+- **Values Files**: Configuration files for different environments
+
+## Security Architecture
+
+### Authentication Methods
+- **JWT Tokens**: HMAC-SHA256 signed tokens for API access
+- **OAuth2**: Google OAuth2 integration for user login
+- **API Keys**: HMAC-SHA256 signed keys for service access
+
+### Network Security
+- **Internal Communication**: Services communicate over Kubernetes cluster network
+- **External Access**: Only API gateway exposed via port forwarding or ingress
+- **Database Access**: PostgreSQL accessible only within cluster
+
+### Data Security
+- **Secrets Management**: Kubernetes secrets for sensitive configuration
+- **Environment Variables**: Non-sensitive config via environment variables
+- **Database Encryption**: Standard PostgreSQL encryption at rest
+
+Production deployments should implement additional security measures including TLS termination, network policies, and secret rotation.
+
+## Monitoring & Observability
+
+### Health Monitoring
+- **Health Check Endpoints**: Available on all services
+- **Model Health Monitoring**: Automated health checks for inference models
+- **Database Health**: Connection monitoring and replica status
+
+### Performance Profiling
+- **pprof Endpoints**: Available on port 6060 for performance analysis
+- **Grafana Pyroscope**: Continuous profiling integration
+- **Request Tracing**: Unique request IDs for end-to-end tracing
+
+### Logging
+- **Structured Logging**: JSON-formatted logs across all services
+- **Request/Response Logging**: Complete request lifecycle tracking
+- **Error Tracking**: Unique error codes for debugging
+
+### Database Monitoring
+- **Read/Write Replica Support**: Automatic load balancing
+- **Connection Pooling**: Optimized database connections
+- **Migration Tracking**: Automatic schema migration monitoring
+- **Transaction Monitoring**: Automatic rollback on errors
+
+## Scalability Considerations
+
+**Current Limitations:**
+- Single replica deployments
+- No horizontal pod autoscaling
+- Local storage for database
+
+**Future Enhancements:**
+- Multi-replica API gateway with load balancing
+- Horizontal pod autoscaling based on CPU/memory
+- External database with clustering
+- Redis caching layer
+- Message queue for async processing
+
+## Project Structure
+
+```
+jan-server/
+├── apps/ # Application services
+│ ├── jan-api-gateway/ # Main API gateway service
+│ │ ├── application/ # Go application code
+│ │ ├── docker/ # Docker configuration
+│ │ └── README.md # Service-specific documentation
+│ └── jan-inference-model/ # AI model inference service
+│ ├── application/ # Python application code
+│ └── Dockerfile # Container configuration
+├── charts/ # Helm charts
+│ ├── apps-charts/ # Individual service charts
+│ └── umbrella-chart/ # Main deployment chart
+├── scripts/ # Deployment and utility scripts
+└── README.md # Main documentation
+```
+
+## Development Architecture
+
+### Building Services
+
+```bash
+# Build API Gateway
+docker build -t jan-api-gateway:latest ./apps/jan-api-gateway
+
+# Build Inference Model
+docker build -t jan-inference-model:latest ./apps/jan-inference-model
+```
+
+### Database Migrations
+
+The system uses Atlas for database migrations:
+
+```bash
+# Generate migration files
+go run ./apps/jan-api-gateway/application/cmd/codegen/dbmigration
+
+# Apply migrations
+atlas migrate apply --url "your-database-url"
+```
+
+### Code Generation
+- **Swagger**: API documentation generated from Go annotations
+- **Wire**: Dependency injection code generated from providers
+- **GORM Gen**: Database model generation from schema
+
+### Build Process
+1. **API Gateway**: Multi-stage Docker build with Go compilation
+2. **Inference Model**: Base VLLM image with model download
+3. **Helm Charts**: Dependency management and templating
+4. **Documentation**: Auto-generation during development
+
+### Local Development
+- **Hot Reload**: Source code changes reflected without full rebuild
+- **Database Migrations**: Automated schema updates
+- **API Testing**: Swagger UI for interactive testing
+- **Logging**: Structured logging with configurable levels
diff --git a/docs/src/pages/docs/server/configuration.mdx b/docs/src/pages/docs/server/configuration.mdx
new file mode 100644
index 000000000..b3833c143
--- /dev/null
+++ b/docs/src/pages/docs/server/configuration.mdx
@@ -0,0 +1,349 @@
+---
+title: Configuration
+description: Configure Jan Server environment variables, authentication, external integrations, and deployment settings.
+---
+
+## Configuration
+
+### Environment Variables
+
+The system is configured through environment variables defined in the Helm values file. Key configuration areas include:
+
+#### Jan API Gateway Configuration
+- **Database Connection**: PostgreSQL connection strings for read/write replicas
+- **Authentication**: JWT secrets and Google OAuth2 credentials
+- **API Keys**: Encryption secrets for API key management
+- **External Services**: Serper API key for web search functionality
+- **Model Integration**: Jan Inference Model service URL
+
+#### Security Configuration
+- **JWT_SECRET**: HMAC-SHA-256 secret for JWT token signing
+- **APIKEY_SECRET**: HMAC-SHA-256 secret for API key encryption
+- **Database Credentials**: PostgreSQL username, password, and database name
+
+#### External Service Integration
+- **SERPER_API_KEY**: API key for web search functionality
+- **Google OAuth2**: Client ID, secret, and redirect URL for authentication
+- **Model Service**: URL for Jan Inference Model service communication
+
+### Complete Environment Variables Reference
+
+| Variable | Description | Default |
+|----------|-------------|---------|
+| `DB_POSTGRESQL_WRITE_DSN` | Primary database connection | `postgres://jan_user:jan_password@localhost:5432/jan_api_gateway?sslmode=disable` |
+| `DB_POSTGRESQL_READ1_DSN` | Read replica database connection | Same as write DSN |
+| `JWT_SECRET` | JWT token signing secret | `your-super-secret-jwt-key-change-in-production` |
+| `APIKEY_SECRET` | API key encryption secret | `your-api-key-secret-change-in-production` |
+| `JAN_INFERENCE_MODEL_URL` | Jan inference service URL | `http://localhost:8000` |
+| `SERPER_API_KEY` | Serper API key for web search | `your-serper-api-key` |
+| `OAUTH2_GOOGLE_CLIENT_ID` | Google OAuth2 client ID | `your-google-client-id` |
+| `OAUTH2_GOOGLE_CLIENT_SECRET` | Google OAuth2 client secret | `your-google-client-secret` |
+| `OAUTH2_GOOGLE_REDIRECT_URL` | Google OAuth2 redirect URL | `http://localhost:8080/auth/google/callback` |
+| `ALLOWED_CORS_HOSTS` | Value of allowed CORS hosts, separated by commas, supporting prefix wildcards with '*'. | `http://localhost:8080,*jan.ai` |
+| `SMTP_HOST` | SMTP server host for email notifications | `smtp.gmail.com` |
+| `SMTP_PORT` | SMTP server port | `587` |
+| `SMTP_USERNAME` | SMTP username | `your-smtp-username` |
+| `SMTP_PASSWORD` | SMTP password | `your-smtp-password` |
+| `SMTP_SENDER_EMAIL` | Default sender email address | `noreply@yourdomain.com` |
+| `INVITE_REDIRECT_URL` | Redirect URL for invitation acceptance | `http://localhost:8080/invite/accept` |
+
+### Helm Configuration
+
+The system uses Helm charts for deployment configuration:
+
+- **Umbrella Chart**: Main deployment chart that orchestrates all services
+- **Service Charts**: Individual charts for each service (API Gateway, Inference Model)
+- **Values Files**: Configuration files for different environments
+
+### Updating Values
+
+Edit the configuration in `charts/umbrella-chart/values.yaml`:
+
+```yaml
+jan-api-gateway:
+ env:
+ - name: SERPER_API_KEY
+ value: your_serper_api_key
+ - name: OAUTH2_GOOGLE_CLIENT_ID
+ value: your_google_client_id
+ - name: OAUTH2_GOOGLE_CLIENT_SECRET
+ value: your_google_client_secret
+ - name: JWT_SECRET
+ value: your-jwt-secret-key
+ - name: APIKEY_SECRET
+ value: your-api-key-secret
+ - name: SMTP_HOST
+ value: smtp.gmail.com
+ - name: SMTP_USERNAME
+ value: your-smtp-username
+ - name: SMTP_PASSWORD
+ value: your-smtp-password
+```
+
+### Applying Changes
+
+After modifying values, redeploy the application:
+
+```bash
+# Update Helm dependencies
+helm dependency update ./charts/umbrella-chart
+
+# Deploy to production
+helm install jan-server ./charts/umbrella-chart
+
+# Upgrade deployment
+helm upgrade jan-server ./charts/umbrella-chart
+
+# Uninstall
+helm uninstall jan-server
+```
+
+## Authentication Setup
+
+### JWT Tokens
+
+Generate a secure JWT signing key:
+
+```bash
+# Generate 256-bit key for HMAC-SHA256
+openssl rand -base64 32
+```
+
+Update the `JWT_SECRET` value in your Helm configuration.
+
+### API Keys
+
+Generate a secure API key signing secret:
+
+```bash
+# Generate 256-bit key for HMAC-SHA256
+openssl rand -base64 32
+```
+
+Update the `APIKEY_SECRET` value in your Helm configuration.
+
+### Google OAuth2
+
+1. **Create Google Cloud Project**
+ - Go to [Google Cloud Console](https://console.cloud.google.com)
+ - Create a new project or select existing
+
+2. **Enable OAuth2**
+ - Navigate to "APIs & Services" > "Credentials"
+ - Create OAuth2 client ID credentials
+ - Set application type to "Web application"
+
+3. **Configure Redirect URI**
+ ```
+ http://localhost:8080/auth/google/callback
+ ```
+
+4. **Update Configuration**
+ - Set `OAUTH2_GOOGLE_CLIENT_ID` to your client ID
+ - Set `OAUTH2_GOOGLE_CLIENT_SECRET` to your client secret
+ - Set `OAUTH2_GOOGLE_REDIRECT_URL` to your callback URL
+
+## External Integrations
+
+### Serper API
+
+Jan Server integrates with Serper for web search capabilities.
+
+1. **Get API Key**
+ - Register at [serper.dev](https://serper.dev)
+ - Generate API key from dashboard
+
+2. **Configure**
+ - Set `SERPER_API_KEY` in Helm values
+ - Redeploy the application
+
+### Adding New Integrations
+
+To add new external API integrations:
+
+1. **Update Helm Values**
+ ```yaml
+ jan-api-gateway:
+ env:
+ - name: YOUR_API_KEY
+ value: your_api_key_value
+ ```
+
+2. **Update Go Configuration**
+
+ Add to `config/environment_variables/env.go`:
+ ```go
+ YourAPIKey string `env:"YOUR_API_KEY"`
+ ```
+
+3. **Redeploy**
+ ```bash
+ helm upgrade jan-server ./charts/umbrella-chart
+ ```
+
+## Database Configuration
+
+### Connection Settings
+
+The default PostgreSQL configuration uses:
+- **Host**: `jan-server-postgresql` (Kubernetes service name)
+- **Database**: `jan`
+- **User**: `jan-user`
+- **Password**: `jan-password`
+- **Port**: `5432`
+- **SSL**: Disabled (development only)
+
+### Production Database
+
+For production deployments:
+
+1. **External Database**
+ - Use managed PostgreSQL service (AWS RDS, Google Cloud SQL)
+ - Update DSN variables with external connection details
+
+2. **SSL/TLS**
+ - Enable `sslmode=require` in connection strings
+ - Configure certificate validation
+
+3. **Connection Pooling**
+ - Consider using connection pooler (PgBouncer, pgpool-II)
+ - Configure appropriate pool sizes
+
+## Model Configuration
+
+The inference model service is configured via Docker CMD parameters:
+
+```dockerfile
+CMD ["--model", "/models/Jan-v1-4B", \
+ "--served-model-name", "jan-v1-4b", \
+ "--host", "0.0.0.0", \
+ "--port", "8101", \
+ "--max-num-batched-tokens", "1024", \
+ "--enable-auto-tool-choice", \
+ "--tool-call-parser", "hermes", \
+ "--reasoning-parser", "qwen3"]
+```
+
+### Model Parameters
+
+| Parameter | Value | Description |
+|-----------|-------|-------------|
+| `--model` | `/models/Jan-v1-4B` | Path to model files |
+| `--served-model-name` | `jan-v1-4b` | API model identifier |
+| `--max-num-batched-tokens` | `1024` | Maximum tokens per batch |
+| `--tool-call-parser` | `hermes` | Tool calling format |
+| `--reasoning-parser` | `qwen3` | Reasoning output format |
+
+Model configuration changes require rebuilding the inference Docker image. This will be configurable via environment variables in future releases.
+
+## Resource Configuration
+
+### Kubernetes Resources
+
+Current deployments use default resource limits. For production:
+
+```yaml
+jan-api-gateway:
+ resources:
+ requests:
+ cpu: 100m
+ memory: 128Mi
+ limits:
+ cpu: 500m
+ memory: 512Mi
+
+jan-inference-model:
+ resources:
+ requests:
+ cpu: 1000m
+ memory: 4Gi
+ limits:
+ cpu: 4000m
+ memory: 8Gi
+```
+
+### Storage
+
+PostgreSQL uses default Kubernetes storage. For production:
+
+```yaml
+postgresql:
+ persistence:
+ enabled: true
+ size: 20Gi
+ storageClass: fast-ssd
+```
+
+## Monitoring & Observability
+
+### Health Monitoring
+- **Health Check Endpoints**: Available on all services
+- **Model Health Monitoring**: Automated health checks for inference models
+- **Database Health**: Connection monitoring and replica status
+
+### Performance Profiling
+- **pprof Endpoints**: Available on port 6060 for performance analysis
+- **Grafana Pyroscope**: Continuous profiling integration
+- **Request Tracing**: Unique request IDs for end-to-end tracing
+
+### Logging
+- **Structured Logging**: JSON-formatted logs across all services
+- **Request/Response Logging**: Complete request lifecycle tracking
+- **Error Tracking**: Unique error codes for debugging
+
+Configure logging levels via environment variables:
+
+```yaml
+jan-api-gateway:
+ env:
+ - name: LOG_LEVEL
+ value: info
+ - name: LOG_FORMAT
+ value: json
+```
+
+Available log levels: `debug`, `info`, `warn`, `error`
+Available formats: `text`, `json`
+
+## Security
+
+### Authentication & Authorization
+- **JWT Tokens**: Secure token-based authentication
+- **Google OAuth2**: Social authentication integration
+- **API Key Management**: Scoped API keys for different access levels
+- **Multi-tenant Security**: Organization and project-level access control
+
+### Data Protection
+- **Encrypted API Keys**: HMAC-SHA-256 encryption for sensitive data
+- **Secure Database Connections**: SSL-enabled database connections
+- **Environment Variable Security**: Secure handling of sensitive configuration
+
+## Deployment
+
+### Local Development
+```bash
+# Start local cluster
+minikube start
+eval $(minikube docker-env)
+
+# Deploy services
+./scripts/run.sh
+
+# Access services
+kubectl port-forward svc/jan-server-jan-api-gateway 8080:8080
+```
+
+### Production Deployment
+```bash
+# Update Helm dependencies
+helm dependency update ./charts/umbrella-chart
+
+# Deploy to production
+helm install jan-server ./charts/umbrella-chart
+
+# Upgrade deployment
+helm upgrade jan-server ./charts/umbrella-chart
+
+# Uninstall
+helm uninstall jan-server
+```
diff --git a/docs/src/pages/docs/server/development.mdx b/docs/src/pages/docs/server/development.mdx
new file mode 100644
index 000000000..6e3f8e2b4
--- /dev/null
+++ b/docs/src/pages/docs/server/development.mdx
@@ -0,0 +1,592 @@
+---
+title: Development
+description: Development setup, workflow, and contribution guidelines for Jan Server.
+---
+## Core Domain Models
+
+## Development Setup
+
+### Prerequisites
+
+- **Go**: 1.24.6 or later
+- **Docker & Docker Compose**: For containerization
+- **PostgreSQL**: Database (or use Docker)
+- **Atlas**: For database migrations (`brew install ariga/tap/atlas`)
+- **minikube**: Local Kubernetes development
+- **Helm**: Package management
+- **Make**: Build automation
+
+### Local Development
+
+1. **Clone and setup**:
+ ```bash
+ git clone
+ cd jan-api-gateway/application
+ make setup
+ go mod tidy
+ ```
+
+2. **Start the server**:
+ ```bash
+ go run ./cmd/server
+ ```
+
+3. **Access the API**:
+ - API Base URL: `http://localhost:8080`
+ - Swagger UI: `http://localhost:8080/api/swagger/index.html`
+ - Health Check: `http://localhost:8080/healthcheck`
+ - Version Info: `http://localhost:8080/v1/version`
+ - Profiling Endpoints: `http://localhost:6060/debug/pprof/`
+
+### Initial Setup
+
+1. **Clone Repository**
+ ```bash
+ git clone https://github.com/menloresearch/jan-server
+ cd jan-server
+ ```
+
+2. **Setup API Gateway**
+ ```bash
+ cd apps/jan-api-gateway/application
+ make setup
+ go mod tidy
+ ```
+
+3. **Start the Server**
+ ```bash
+ go run ./cmd/server
+ ```
+
+4. **Access the API**
+ - API Base URL: `http://localhost:8080`
+ - Swagger UI: `http://localhost:8080/api/swagger/index.html`
+ - Health Check: `http://localhost:8080/healthcheck`
+ - Version Info: `http://localhost:8080/v1/version`
+ - Profiling Endpoints: `http://localhost:6060/debug/pprof/`
+
+### Environment Variables
+
+The system is configured through environment variables. Key configuration areas include:
+
+| Variable | Description | Default |
+|----------|-------------|---------|
+| `DB_POSTGRESQL_WRITE_DSN` | Primary database connection | `postgres://jan_user:jan_password@localhost:5432/jan_api_gateway?sslmode=disable` |
+| `DB_POSTGRESQL_READ1_DSN` | Read replica database connection | Same as write DSN |
+| `JWT_SECRET` | JWT token signing secret | `your-super-secret-jwt-key-change-in-production` |
+| `APIKEY_SECRET` | API key encryption secret | `your-api-key-secret-change-in-production` |
+| `JAN_INFERENCE_MODEL_URL` | Jan inference service URL | `http://localhost:8000` |
+| `SERPER_API_KEY` | Serper API key for web search | `your-serper-api-key` |
+| `OAUTH2_GOOGLE_CLIENT_ID` | Google OAuth2 client ID | `your-google-client-id` |
+| `OAUTH2_GOOGLE_CLIENT_SECRET` | Google OAuth2 client secret | `your-google-client-secret` |
+| `OAUTH2_GOOGLE_REDIRECT_URL` | Google OAuth2 redirect URL | `http://localhost:8080/auth/google/callback` |
+| `ALLOWED_CORS_HOSTS` | Allowed CORS hosts, separated by commas, supporting prefix wildcards with '*' | `http://localhost:8080,*jan.ai` |
+| `SMTP_HOST` | SMTP server host for email notifications | `smtp.gmail.com` |
+| `SMTP_PORT` | SMTP server port | `587` |
+| `SMTP_USERNAME` | SMTP username | `your-smtp-username` |
+| `SMTP_PASSWORD` | SMTP password | `your-smtp-password` |
+| `SMTP_SENDER_EMAIL` | Default sender email address | `noreply@yourdomain.com` |
+| `INVITE_REDIRECT_URL` | Redirect URL for invitation acceptance | `http://localhost:8080/invite/accept` |
+
+3. **Generate Code**
+ ```bash
+ make setup
+ ```
+
+4. **Start Development Environment**
+ ```bash
+ # From project root
+ ./scripts/run.sh
+ ```
+
+## API Gateway Development
+
+### Project Structure
+
+```
+jan-api-gateway/
+├── application/ # Main Go application
+│ ├── app/
+│ │ ├── cmd/server/ # Server entry point
+│ │ ├── domain/ # Business logic and entities
+│ │ ├── infrastructure/ # Database and external services
+│ │ ├── interfaces/ # HTTP handlers and routes
+│ │ └── utils/ # Utilities and helpers
+│ ├── config/ # Configuration management
+│ ├── docs/ # Swagger documentation
+│ └── Makefile # Build automation
+├── docker/ # Docker configuration
+└── LOCAL_DEV_SETUP.md # Detailed development setup
+```
+
+### Database Migrations
+
+The project uses Atlas for database migrations. To generate and apply migrations:
+
+1. **Setup migration database**:
+ ```sql
+ CREATE ROLE migration WITH LOGIN PASSWORD 'migration';
+ ALTER ROLE migration WITH SUPERUSER;
+ CREATE DATABASE migration WITH OWNER = migration;
+ ```
+
+2. **Generate migration files**:
+ ```bash
+ # Generate schema files
+ go run ./cmd/codegen/dbmigration
+
+ # Generate diff SQL
+ atlas schema diff --dev-url "postgres://migration:migration@localhost:5432/migration?sslmode=disable" \
+ --from file://tmp/release.hcl --to file://tmp/main.hcl > tmp/diff.sql
+ ```
+
+3. **Apply migrations**:
+ ```bash
+ # Auto-migration on startup (development)
+ go run ./cmd/server
+
+ # Manual migration (production)
+ atlas migrate apply --url "your-production-db-url"
+ ```
+
+### Build Commands
+
+```bash
+# Install development dependencies
+make install
+
+# Generate API documentation
+make doc
+
+# Generate dependency injection code
+make wire
+
+# Complete setup (doc + wire)
+make setup
+
+# Build application
+go build -o jan-api-gateway ./cmd/server
+```
+
+### Code Generation
+
+Jan Server uses code generation for several components:
+
+**Swagger Documentation:**
+```bash
+# Generates docs/swagger.json and docs/swagger.yaml
+swag init --parseDependency -g cmd/server/server.go -o docs
+```
+
+**Dependency Injection:**
+```bash
+# Generates wire_gen.go from wire.go providers
+wire ./cmd/server
+```
+
+**Database Models:**
+```bash
+# Generate GORM models (when schema changes)
+go run cmd/codegen/gorm/gorm.go
+```
+
+## Key Features Implementation
+
+### Streaming with Server-Sent Events
+The chat completion endpoints implement real-time streaming using Server-Sent Events (SSE) with chunked transfer encoding, providing low-latency responses for AI model interactions. The system supports both content and reasoning content streaming with proper buffering and event sequencing.
+
+### Multi-Tenant Architecture
+Organizations and projects provide hierarchical access control with fine-grained permissions and resource isolation. API keys can be scoped to organization or project levels with different types (admin, project, organization, service, ephemeral) for various use cases.
+
+### OpenAI Compatibility
+Full compatibility with OpenAI's chat completion API, including streaming, function calls, tool usage, and all standard parameters (temperature, max_tokens, etc.). The system also supports reasoning content and multimodal inputs.
+
+### Model Context Protocol (MCP)
+Comprehensive MCP implementation supporting tools, prompts, and resources with JSON-RPC 2.0 protocol. Includes Serper API integration for web search capabilities and webpage fetching functionality.
+
+### Database Architecture
+- Read/Write replica support with automatic load balancing using GORM dbresolver
+- Transaction management with automatic rollback on errors
+- Generated query interfaces using GORM Gen for type safety
+- Automatic schema migrations with Atlas integration
+- Support for complex data types including JSON fields and relationships
+
+### Monitoring & Observability
+- Built-in pprof endpoints for performance profiling on port 6060
+- Grafana Pyroscope integration for continuous profiling
+- Structured logging with unique request IDs and comprehensive request/response tracking
+- Automated health checks for inference model endpoints with cron-based monitoring
+- Model registry with dynamic service discovery and health status tracking
+
+### Local Development
+
+#### Running API Gateway Locally
+
+```bash
+cd apps/jan-api-gateway/application
+
+# Set environment variables
+export JAN_INFERENCE_MODEL_URL=http://localhost:8101
+export JWT_SECRET=your-jwt-secret
+export DB_POSTGRESQL_WRITE_DSN="host=localhost user=jan-user password=jan-password dbname=jan port=5432 sslmode=disable"
+
+# Run the server
+go run ./cmd/server
+```
+
+#### Database Setup
+
+For local development, you can run PostgreSQL directly:
+
+```bash
+# Using Docker
+docker run -d \
+ --name jan-postgres \
+ -e POSTGRES_DB=jan \
+ -e POSTGRES_USER=jan-user \
+ -e POSTGRES_PASSWORD=jan-password \
+ -p 5432:5432 \
+ postgres:14
+```
+
+## Testing
+
+### Running Tests
+
+```bash
+# Run all tests
+go test ./...
+
+# Run tests with coverage
+go test -cover ./...
+
+# Run specific test package
+go test ./app/service/...
+```
+
+### Test Structure
+
+```
+app/
+├── service/
+│ ├── auth_service.go
+│ ├── auth_service_test.go
+│ ├── conversation_service.go
+│ └── conversation_service_test.go
+└── handler/
+ ├── auth_handler.go
+ ├── auth_handler_test.go
+ ├── chat_handler.go
+ └── chat_handler_test.go
+```
+
+### Writing Tests
+
+Example service test:
+
+```go
+func TestAuthService_ValidateToken(t *testing.T) {
+ // Setup
+ service := NewAuthService(mockRepo, mockConfig)
+
+ // Test cases
+ tests := []struct {
+ name string
+ token string
+ expectValid bool
+ expectError bool
+ }{
+ {"valid token", "valid.jwt.token", true, false},
+ {"invalid token", "invalid.token", false, true},
+ }
+
+ for _, tt := range tests {
+ t.Run(tt.name, func(t *testing.T) {
+ valid, err := service.ValidateToken(tt.token)
+ assert.Equal(t, tt.expectValid, valid)
+ assert.Equal(t, tt.expectError, err != nil)
+ })
+ }
+}
+```
+
+## Docker Development
+
+### Building Images
+
+```bash
+# Build API gateway
+docker build -t jan-api-gateway:dev ./apps/jan-api-gateway
+
+# Build inference model
+docker build -t jan-inference-model:dev ./apps/jan-inference-model
+```
+
+### Development Compose
+
+For local development without Kubernetes:
+
+```yaml
+# docker-compose.dev.yml
+version: '3.8'
+services:
+ postgres:
+ image: postgres:14
+ environment:
+ POSTGRES_DB: jan
+ POSTGRES_USER: jan-user
+ POSTGRES_PASSWORD: jan-password
+ ports:
+ - "5432:5432"
+
+ api-gateway:
+ build: ./apps/jan-api-gateway
+ ports:
+ - "8080:8080"
+ environment:
+ - JAN_INFERENCE_MODEL_URL=http://inference-model:8101
+ - DB_POSTGRESQL_WRITE_DSN=host=postgres user=jan-user password=jan-password dbname=jan port=5432 sslmode=disable
+ depends_on:
+ - postgres
+
+ inference-model:
+ build: ./apps/jan-inference-model
+ ports:
+ - "8101:8101"
+```
+
+## Debugging
+
+### Go Debugging
+
+For VS Code debugging, add to `.vscode/launch.json`:
+
+```json
+{
+ "version": "0.2.0",
+ "configurations": [
+ {
+ "name": "Launch Jan API Gateway",
+ "type": "go",
+ "request": "launch",
+ "mode": "auto",
+ "program": "${workspaceFolder}/apps/jan-api-gateway/application/cmd/server",
+ "env": {
+ "JAN_INFERENCE_MODEL_URL": "http://localhost:8101",
+ "JWT_SECRET": "development-secret"
+ }
+ }
+ ]
+}
+```
+
+### Application Logs
+
+```bash
+# View API gateway logs
+kubectl logs deployment/jan-server-jan-api-gateway -f
+
+# View inference model logs
+kubectl logs deployment/jan-server-jan-inference-model -f
+
+# View PostgreSQL logs
+kubectl logs statefulset/jan-server-postgresql -f
+```
+
+### Log Levels
+
+Set log level via environment variable:
+
+```bash
+export LOG_LEVEL=debug # debug, info, warn, error
+```
+
+## Code Style and Standards
+
+### Go Standards
+
+- Follow [Go Code Review Comments](https://go.dev/wiki/CodeReviewComments)
+- Use `gofmt` for formatting
+- Run `go vet` for static analysis
+- Use meaningful variable and function names
+
+### API Standards
+
+- RESTful endpoint design
+- OpenAPI/Swagger annotations for all endpoints
+- Consistent error response format
+- Proper HTTP status codes
+
+### Git Workflow
+
+```bash
+# Create feature branch
+git checkout -b feature/your-feature-name
+
+# Make changes and commit
+git add .
+git commit -m "feat: add new authentication endpoint"
+
+# Push and create PR
+git push origin feature/your-feature-name
+```
+
+### Commit Message Format
+
+Follow conventional commits:
+
+```
+feat: add new feature
+fix: resolve bug in authentication
+docs: update API documentation
+test: add unit tests for service layer
+refactor: improve error handling
+```
+
+## Performance Testing
+
+### Load Testing
+
+Use [k6](https://k6.io) for API load testing:
+
+```javascript
+// load-test.js
+import http from 'k6/http';
+
+export default function () {
+ const response = http.post('http://localhost:8080/api/v1/chat/completions', {
+ model: 'jan-v1-4b',
+ messages: [
+ { role: 'user', content: 'Hello!' }
+ ]
+ }, {
+ headers: {
+ 'Content-Type': 'application/json',
+ 'Authorization': 'Bearer your-token'
+ }
+ });
+
+ check(response, {
+ 'status is 200': (r) => r.status === 200,
+ 'response time < 5000ms': (r) => r.timings.duration < 5000,
+ });
+}
+```
+
+Run load test:
+```bash
+k6 run --vus 10 --duration 30s load-test.js
+```
+
+### Memory Profiling
+
+Enable Go profiling endpoints:
+
+```go
+import _ "net/http/pprof"
+
+// In main.go
+go func() {
+ log.Println(http.ListenAndServe("localhost:6060", nil))
+}()
+```
+
+Profile memory usage:
+```bash
+go tool pprof http://localhost:6060/debug/pprof/heap
+```
+
+## Documentation
+
+- **API Documentation**: Available at `/api/swagger/index.html` when running locally
+- **OpenAI-Style Documentation**: Professional API reference documentation with OpenAI-style layout
+- **Development Setup**: See [LOCAL_DEV_SETUP.md](LOCAL_DEV_SETUP.md) for detailed VS Code/Cursor setup
+- **Architecture**: See the mermaid diagram above for system architecture
+
+### API Structure Overview
+
+The API is organized into the following main groups:
+
+1. **Authentication API** - User authentication and authorization
+2. **Chat Completions API** - Chat completions, models, and MCP functionality
+3. **Conversation-aware Chat API** - Conversation-based chat completions
+4. **Conversations API** - Conversation management and items
+5. **Responses API** - Response tracking and management
+6. **Administration API** - Organization and project management
+7. **Server API** - System information and health checks
+
+### Swagger Documentation
+
+The API documentation is automatically generated from code annotations and includes:
+- Interactive API explorer
+- Request/response examples
+- Authentication requirements
+- Error code documentation
+- Model schemas and validation rules
+
+## Contributing
+
+### Pull Request Process
+
+1. **Fork the repository**
+2. **Create feature branch** from `main`
+3. **Make changes** following code standards
+4. **Add tests** for new functionality
+5. **Update documentation** if needed
+6. **Submit pull request** with clear description
+
+### Code Review Checklist
+
+- [ ] Code follows Go standards
+- [ ] Tests added for new features
+- [ ] Documentation updated
+- [ ] API endpoints have Swagger annotations
+- [ ] No breaking changes without version bump
+- [ ] Security considerations addressed
+
+### Issues and Bug Reports
+
+When reporting bugs, include:
+
+- **Environment**: OS, Go version, minikube version
+- **Steps to reproduce**: Clear, minimal reproduction steps
+- **Expected behavior**: What should happen
+- **Actual behavior**: What actually happens
+- **Logs**: Relevant error messages or logs
+
+For security issues, please report privately to the maintainers instead of creating public issues.
+
+## Release Process
+
+### Version Management
+
+Jan Server uses semantic versioning (semver):
+
+- **Major**: Breaking changes
+- **Minor**: New features, backward compatible
+- **Patch**: Bug fixes, backward compatible
+
+### Building Releases
+
+```bash
+# Tag release
+git tag -a v1.2.3 -m "Release v1.2.3"
+
+# Build release images
+docker build -t jan-api-gateway:v1.2.3 ./apps/jan-api-gateway
+docker build -t jan-inference-model:v1.2.3 ./apps/jan-inference-model
+
+# Push tags
+git push origin v1.2.3
+```
+
+### Deployment
+
+Production deployments follow the same Helm chart structure:
+
+```bash
+# Deploy specific version
+helm install jan-server ./charts/umbrella-chart \
+ --set jan-api-gateway.image.tag=v1.2.3 \
+ --set jan-inference-model.image.tag=v1.2.3
+```
diff --git a/docs/src/pages/docs/server/index.mdx b/docs/src/pages/docs/server/index.mdx
new file mode 100644
index 000000000..3e3210d0b
--- /dev/null
+++ b/docs/src/pages/docs/server/index.mdx
@@ -0,0 +1,12 @@
+import { useRouter } from 'next/router'
+import { useEffect } from 'react'
+
+export default function ServerIndex() {
+ const router = useRouter()
+
+ useEffect(() => {
+ router.replace('/docs/server/overview')
+ }, [router])
+
+ return null
+}
\ No newline at end of file
diff --git a/docs/src/pages/docs/server/installation.mdx b/docs/src/pages/docs/server/installation.mdx
new file mode 100644
index 000000000..61d769c40
--- /dev/null
+++ b/docs/src/pages/docs/server/installation.mdx
@@ -0,0 +1,254 @@
+---
+title: Installation
+description: Install and deploy Jan Server on Kubernetes using minikube and Helm with comprehensive setup instructions.
+---
+
+## Prerequisites
+
+Before setting up Jan Server, ensure you have the following components installed:
+
+### Required Components
+
+> **Important**: Windows and macOS users can only run mock servers for development. Real LLM model inference with vLLM is only supported on Linux systems with NVIDIA GPUs.
+
+1. **Docker Desktop**
+ - **Windows**: Download from [Docker Desktop for Windows](https://docs.docker.com/desktop/install/windows-install/)
+ - **macOS**: Download from [Docker Desktop for Mac](https://docs.docker.com/desktop/install/mac-install/)
+ - **Linux**: Follow [Docker Engine installation guide](https://docs.docker.com/engine/install/)
+
+2. **Minikube**
+ - **Windows**: `choco install minikube` or download from [minikube releases](https://github.com/kubernetes/minikube/releases)
+ - **macOS**: `brew install minikube` or download from [minikube releases](https://github.com/kubernetes/minikube/releases)
+ - **Linux**: `curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 && sudo install minikube-linux-amd64 /usr/local/bin/minikube`
+
+3. **Helm**
+ - **Windows**: `choco install kubernetes-helm` or download from [Helm releases](https://github.com/helm/helm/releases)
+ - **macOS**: `brew install helm` or download from [Helm releases](https://github.com/helm/helm/releases)
+ - **Linux**: `curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash`
+
+4. **kubectl**
+ - **Windows**: `choco install kubernetes-cli` or download from [kubectl releases](https://github.com/kubernetes/kubectl/releases)
+ - **macOS**: `brew install kubectl` or download from [kubectl releases](https://github.com/kubernetes/kubectl/releases)
+ - **Linux**: `curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" && sudo install kubectl /usr/local/bin/kubectl`
+
+### Optional: NVIDIA GPU Support (for Real LLM Models)
+If you plan to run real LLM models (not mock servers) and have an NVIDIA GPU:
+
+1. **Install NVIDIA Container Toolkit**: Follow the [official NVIDIA Container Toolkit installation guide](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html)
+
+2. **Configure Minikube for GPU support**: Follow the [official minikube GPU tutorial](https://minikube.sigs.k8s.io/docs/tutorials/nvidia/) for complete setup instructions.
+
+## Quick Start
+
+### Local Development Setup
+
+#### Option 1: Mock Server Setup (Recommended for Development)
+
+1. **Start Minikube and configure Docker**:
+ ```bash
+ minikube start
+ eval $(minikube docker-env)
+ ```
+
+2. **Build and deploy all services**:
+ ```bash
+ ./scripts/run.sh
+ ```
+
+3. **Access the services**:
+ - **API Gateway**: http://localhost:8080
+ - **Swagger UI**: http://localhost:8080/api/swagger/index.html
+ - **Health Check**: http://localhost:8080/healthcheck
+ - **Version Info**: http://localhost:8080/v1/version
+
+#### Option 2: Real LLM Setup (Requires NVIDIA GPU)
+
+1. **Start Minikube with GPU support**:
+ ```bash
+ minikube start --gpus all
+ eval $(minikube docker-env)
+ ```
+
+2. **Configure GPU memory utilization** (if you have limited GPU memory):
+
+ GPU memory utilization is configured in the vLLM Dockerfile. See the [vLLM CLI documentation](https://docs.vllm.ai/en/latest/cli/serve.html) for all available arguments.
+
+ To modify GPU memory utilization, edit the vLLM launch command in:
+ - `apps/jan-inference-model/Dockerfile` (for Docker builds)
+ - Helm chart values (for Kubernetes deployment)
+
+3. **Build and deploy all services**:
+ ```bash
+ # For GPU setup, modify run.sh to use GPU-enabled minikube
+ # Edit scripts/run.sh and change "minikube start" to "minikube start --gpus all"
+ ./scripts/run.sh
+ ```
+
+### Production Deployment
+
+For production deployments, modify the Helm values in `charts/umbrella-chart/values.yaml` and deploy using:
+
+```bash
+helm install jan-server ./charts/umbrella-chart
+```
+
+
+## Manual Installation
+
+### Build Docker Images
+
+Build both required Docker images:
+
+```bash
+# Build API Gateway
+docker build -t jan-api-gateway:latest ./apps/jan-api-gateway
+
+# Build Inference Model
+docker build -t jan-inference-model:latest ./apps/jan-inference-model
+```
+
+The inference model image downloads the Jan-v1-4B model from Hugging Face during build. This requires an internet connection and several GB of download.
+
+### Deploy with Helm
+
+Install the Helm chart:
+
+```bash
+# Update Helm dependencies
+helm dependency update ./charts/umbrella-chart
+
+# Install Jan Server
+helm install jan-server ./charts/umbrella-chart
+```
+
+### Port Forwarding
+
+Forward the API gateway port to access from your local machine:
+
+```bash
+kubectl port-forward svc/jan-server-jan-api-gateway 8080:8080
+```
+
+## Verify Installation
+
+Check that all pods are running:
+
+```bash
+kubectl get pods
+```
+
+Expected output:
+```
+NAME READY STATUS RESTARTS
+jan-server-jan-api-gateway-xxx 1/1 Running 0
+jan-server-jan-inference-model-xxx 1/1 Running 0
+jan-server-postgresql-0 1/1 Running 0
+```
+
+Test the API gateway:
+```bash
+curl http://localhost:8080/health
+```
+
+## Uninstalling
+
+To remove Jan Server:
+
+```bash
+helm uninstall jan-server
+```
+
+To stop minikube:
+
+```bash
+minikube stop
+```
+
+## Troubleshooting
+
+### Common Issues and Solutions
+
+### 1. LLM Pod Not Starting (Pending Status)
+
+**Symptoms**: The `jan-server-jan-inference-model` pod stays in `Pending` status.
+
+**Diagnosis Steps**:
+```bash
+# Check pod status
+kubectl get pods
+
+# Get detailed pod information (replace with your actual pod name)
+kubectl describe pod jan-server-jan-inference-model-
+```
+
+**Common Error Messages and Solutions**:
+
+##### Error: "Insufficient nvidia.com/gpu"
+```
+0/1 nodes are available: 1 Insufficient nvidia.com/gpu. no new claims to deallocate, preemption: 0/1 nodes are available: 1 Preemption is not helpful for scheduling.
+```
+**Solution for Real LLM Setup**:
+1. Ensure you have NVIDIA GPU and drivers installed
+2. Install NVIDIA Container Toolkit (see Prerequisites section)
+3. Start minikube with GPU support:
+ ```bash
+ minikube start --gpus all
+ ```
+
+##### Error: vLLM Pod Keeps Restarting
+```
+# Check pod logs to see the actual error
+kubectl logs jan-server-jan-inference-model-
+```
+
+**Common vLLM startup issues**:
+1. **CUDA Out of Memory**: Modify vLLM arguments in Dockerfile to reduce memory usage
+2. **Model Loading Errors**: Check if model path is correct and accessible
+3. **GPU Not Detected**: Ensure NVIDIA Container Toolkit is properly installed
+
+### 2. Helm Issues
+
+**Symptoms**: Helm commands fail or charts won't install.
+
+**Solutions**:
+```bash
+# Update Helm dependencies
+helm dependency update ./charts/umbrella-chart
+
+# Check Helm status
+helm list
+
+# Uninstall and reinstall
+helm uninstall jan-server
+helm install jan-server ./charts/umbrella-chart
+```
+
+### 3. Common Development Issues
+
+**Pods in `ImagePullBackOff` state**
+- Ensure Docker images were built in the minikube environment
+- Run `eval $(minikube docker-env)` before building images
+
+**Port forwarding connection refused**
+- Verify the service is running: `kubectl get svc`
+- Check pod status: `kubectl get pods`
+- Review logs: `kubectl logs deployment/jan-server-jan-api-gateway`
+
+**Inference model download fails**
+- Ensure internet connectivity during Docker build
+- The Jan-v1-4B model is approximately 2.4GB
+
+### Resource Requirements
+
+**Minimum System Requirements:**
+- 8GB RAM
+- 20GB free disk space
+- 4 CPU cores
+
+**Recommended System Requirements:**
+- 16GB RAM
+- 50GB free disk space
+- 8 CPU cores
+- GPU support (for faster inference)
+
+The inference model requires significant memory. Ensure your minikube cluster has adequate resources allocated.
diff --git a/docs/src/pages/docs/server/overview.mdx b/docs/src/pages/docs/server/overview.mdx
new file mode 100644
index 000000000..eade5bbe4
--- /dev/null
+++ b/docs/src/pages/docs/server/overview.mdx
@@ -0,0 +1,109 @@
+---
+title: Overview
+description: A comprehensive self-hosted AI server platform that provides OpenAI-compatible APIs, multi-tenant organization management, and AI model inference capabilities.
+keywords:
+ [
+ Jan Server,
+ self-hosted AI,
+ Kubernetes deployment,
+ Docker containers,
+ AI inference,
+ OpenAI compatible API,
+ multi-tenant architecture,
+ organization management,
+ JWT authentication,
+ Google OAuth2,
+ API key management,
+ Model Context Protocol,
+ MCP,
+ web search integration,
+ PostgreSQL,
+ monitoring,
+ profiling
+ ]
+---
+
+## Overview
+
+Jan Server is a comprehensive self-hosted AI server platform that provides OpenAI-compatible APIs, multi-tenant organization management, and AI model inference capabilities. Jan Server enables organizations to deploy their own private AI infrastructure with full control over data, models, and access.
+
+Jan Server is a Kubernetes-native platform consisting of multiple microservices that work together to provide a complete AI infrastructure solution. It offers:
+
+- **OpenAI-Compatible API**: Full compatibility with OpenAI's chat completion API
+- **Multi-Tenant Architecture**: Organization and project-based access control
+- **AI Model Inference**: Scalable model serving with health monitoring
+- **Database Management**: PostgreSQL with read/write replicas
+- **Authentication & Authorization**: JWT + Google OAuth2 integration
+- **API Key Management**: Secure API key generation and management
+- **Model Context Protocol (MCP)**: Support for external tools and resources
+- **Web Search Integration**: Serper API integration for web search capabilities
+- **Monitoring & Profiling**: Built-in performance monitoring and health checks
+
+## System Architecture
+
+## Services
+
+### Jan API Gateway
+The core API service that provides OpenAI-compatible endpoints and manages all client interactions.
+
+**Key Features:**
+- OpenAI-compatible chat completion API with streaming support
+- Multi-tenant organization and project management
+- JWT-based authentication with Google OAuth2 integration
+- API key management at organization and project levels
+- Model Context Protocol (MCP) support for external tools
+- Web search integration via Serper API
+- Comprehensive monitoring and profiling capabilities
+- Database transaction management with automatic rollback
+
+**Technology Stack:**
+- Go 1.24.6 with Gin web framework
+- PostgreSQL with GORM and read/write replicas
+- JWT authentication and Google OAuth2
+- Swagger/OpenAPI documentation
+- Built-in pprof profiling with Grafana Pyroscope integration
+
+### Jan Inference Model
+The AI model serving service that handles model inference requests.
+
+**Key Features:**
+- Scalable model serving infrastructure
+- Health monitoring and automatic failover
+- Load balancing across multiple model instances
+- Integration with various AI model backends
+
+**Technology Stack:**
+- Python-based model serving
+- Docker containerization
+- Kubernetes-native deployment
+
+### PostgreSQL Database
+The persistent data storage layer with enterprise-grade features.
+
+**Key Features:**
+- Read/write replica support for high availability
+- Automatic schema migrations with Atlas
+- Connection pooling and optimization
+- Transaction management with rollback support
+
+## Key Features
+
+### Core Features
+- **OpenAI-Compatible API**: Full compatibility with OpenAI's chat completion API with streaming support and reasoning content handling
+- **Multi-Tenant Architecture**: Organization and project-based access control with hierarchical permissions and member management
+- **Conversation Management**: Persistent conversation storage and retrieval with item-level management, including message, function call, and reasoning content types
+- **Authentication & Authorization**: JWT-based auth with Google OAuth2 integration and role-based access control
+- **API Key Management**: Secure API key generation and management at organization and project levels with multiple key types (admin, project, organization, service, ephemeral)
+- **Model Registry**: Dynamic model endpoint management with automatic health checking and service discovery
+- **Streaming Support**: Real-time streaming responses with Server-Sent Events (SSE) and chunked transfer encoding
+- **MCP Integration**: Model Context Protocol support for external tools and resources with JSON-RPC 2.0
+- **Web Search**: Serper API integration for web search capabilities via MCP with webpage fetching
+- **Database Management**: PostgreSQL with read/write replicas and automatic migrations using Atlas
+- **Transaction Management**: Automatic database transaction handling with rollback support
+- **Health Monitoring**: Automated health checks with cron-based model endpoint monitoring
+- **Performance Profiling**: Built-in pprof endpoints for performance monitoring and Grafana Pyroscope integration
+- **Request Logging**: Comprehensive request/response logging with unique request IDs and structured logging
+- **CORS Support**: Cross-origin resource sharing middleware with configurable allowed hosts
+- **Swagger Documentation**: Auto-generated API documentation with interactive UI
+- **Email Integration**: SMTP support for invitation and notification systems
+- **Response Management**: Comprehensive response tracking with status management and usage statistics
diff --git a/docs/src/pages/handbook/_meta.json b/docs/src/pages/handbook/_meta.json
new file mode 100644
index 000000000..482ca4f93
--- /dev/null
+++ b/docs/src/pages/handbook/_meta.json
@@ -0,0 +1,5 @@
+{
+ "index": "Overview",
+ "open-superintelligence": "Open Superintelligence",
+ "betting-on-open-source": "Betting on Open-Source"
+}
diff --git a/docs/src/pages/handbook/betting-on-open-source.mdx b/docs/src/pages/handbook/betting-on-open-source.mdx
new file mode 100644
index 000000000..a0560d53e
--- /dev/null
+++ b/docs/src/pages/handbook/betting-on-open-source.mdx
@@ -0,0 +1,33 @@
+---
+title: "Why Open-Source"
+description: "Why we're betting on open-source."
+---
+
+# Why Open-Source
+
+AI today is concentrated in the hands of a few companies. They ask for trust, while keeping the levers of control hidden. We think that's a mistake.
+
+When you depend on one vendor, your future is tied to their roadmap, their politics, their survival. If they get acquired, pivot, or shut down; you're stuck.
+
+Depending on a closed vendor means giving up more than flexibility:
+- Your tools only move when their priorities move
+- Their pivots become your pivots
+- Their acquisitions become your risks
+
+AI has become critical infrastructure. Nations, enterprises, even small teams rely on it to think and decide. And yet, control sits with a few vendors who decide the terms of access. We believe that's not control. That's dependency dressed up as convenience. One of the most powerful invention is being steered by a handful of executives. Their values shape what billions can say, build, or ask.
+
+*This cannot stand. It must be changed.*
+
+## Jan's Bet
+
+We don't believe the future of AI should be dictated by a few firms in San Francisco, Beijing, or anywhere else.
+
+AI is revolutionary like electricity. And like electricity, it must be open. Not locked behind trust-me promises. Not steered by a handful of companies.
+
+That's why we're building Jan, a full product suite:
+- Jan Models
+- Jan on Desktop, Browser, Mobile, Web
+- Jan Server
+- Hub, Store, evals, guardrails, the ecosystem around it
+
+The goal is to be the open-source replacement for ChatGPT and other BigAI products, with models and tools you can run, own, and trust.
diff --git a/docs/src/pages/handbook/index.mdx b/docs/src/pages/handbook/index.mdx
new file mode 100644
index 000000000..2c64eff72
--- /dev/null
+++ b/docs/src/pages/handbook/index.mdx
@@ -0,0 +1,48 @@
+---
+title: "Jan Team Handbook"
+description: "Building superintelligence that you can own and run anywhere."
+---
+
+# Jan Handbook
+
+> Jan's Handbook is inspired by [Posthog](https://posthog.com/handbook) and [Gitlab](https://handbook.gitlab.com/).
+> Thank you for showing us the way.
+
+## Welcome
+
+This handbook explains how [Jan](https://jan.ai) works, and is public.
+
+We're building superintelligence that you can self-host and use locally. Not as a limitation, but as a feature. Your AI should work wherever you need it - on your laptop during a flight, on your company's servers for compliance, or in the cloud for scale.
+
+Jan's Handbook is a [living document](https://en.wikipedia.org/wiki/Living_document), constantly evolving as we build the future of AI ownership.
+
+## Why does Jan exist?
+
+### [Open Superintelligence](/handbook/open-superintelligence)
+Building superintelligence that belongs to everyone, not just a few tech giants. We believe the future of AI should be open, accessible, and owned by the people who use it.
+
+### [Betting on Open-Source](/handbook/betting-on-open-source)
+Why we're betting on open-source as the future of AI and technology. Open-source has consistently won in the long term, and AI will be no different.
+
+---
+
+## Quick Links
+
+- **For the curious**: Start with [Open Superintelligence](/handbook/open-superintelligence)
+- **For developers**: Learn about [Betting on Open-Source](/handbook/betting-on-open-source)
+- **For contributors**: Check out our [GitHub](https://github.com/menloresearch/jan) and [Discord](https://discord.gg/FTk2MvZwJH)
+
+## Our North Star
+
+We're building superintelligence that:
+
+- **Works anywhere**: From your laptop to your data center
+- **Belongs to you**: Download it, own it, modify it
+- **Scales infinitely**: One person or ten thousand, same platform
+- **Improves constantly**: Community-driven development
+
+This isn't just about making AI accessible. It's about ensuring the most transformative technology in human history can be owned by those who use it.
+
+---
+
+_"The future of AI isn't about choosing between local or cloud. It's about having both, and everything in between, working perfectly together."_
diff --git a/docs/src/pages/handbook/open-superintelligence.mdx b/docs/src/pages/handbook/open-superintelligence.mdx
new file mode 100644
index 000000000..5174f712b
--- /dev/null
+++ b/docs/src/pages/handbook/open-superintelligence.mdx
@@ -0,0 +1,49 @@
+---
+title: "Why Jan exists"
+description: "Short answer: Open Superintelligence."
+---
+
+# Why does Jan exist?
+
+> Short answer: Open Superintelligence.
+
+In 1879, Edison lit a single street in [Menlo Park](https://en.wikipedia.org/wiki/Menlo_Park,_California). What mattered wasn't the bulb. It was that power could reach homes, schools, and factories.
+
+Electricity changed the world only when it became universal. Standard plugs, cheap generation, lines everywhere. People stopped talking about electricity and started using light, cold chains, and machines.
+
+[Superintelligence](https://en.wikipedia.org/wiki/Superintelligence) is the same kind of story. The point is who gets the power, on what terms, and at what cost. If intelligence is open, portable, and cheap, it becomes a utility. If it isn’t, it becomes a gate.
+
+Jan exists to push intelligence toward the first path: Open Superintelligence you can run on your cheap laptop.
+
+## What history teaches
+
+> The world is made, and can be remade.
+
+Every industrial wave redefined critical aspects of our daily lives:
+- Factories introduced shift clocks and wage rhythms
+- Steam gave way to electricity and standardized parts
+- Rail, telegraph, and later networks changed how decisions travel
+- Each wave pulled new bargains into being skills, schools, safety nets, labor law
+
+So what we're interested in is who is going to write the new defaults and share in the gains.
+
+Technology doesn’t choose its path, people do. Power accrues to whoever designs, deploys, and profits from the system:
+- If intelligence is closed and centralized, the gains concentrate
+- If it is open, local, and participatory, the gains spread
+
+We choose the second.
+
+## What we're making at Jan
+Jan is building Open Superinteligence. It's one product that bundles models, tools, guardrails, and connectors in a way everybody can run on a laptop, a home server, or the web.
+
+- Open-source, so everyone can study, reproduce, improve
+- Building together, so progress compounds in public
+- AI for everyone, so it runs where people work, under their control
+
+### Co-operation > competition
+
+We believe progress is cooperative before it is competitive. People grow by working together. We've chosen [to stand on open shoulders](https://en.wikipedia.org/wiki/Standing_on_the_shoulders_of_giants). We use, contribute to, and fund open-source projects. When something exists and works, we don't reinvent the wheel to commercialize it - we upstream fixes, write docs, and make it easier to run.
+
+Open Superintelligence is how we make that true at the scale of intelligence.
+
+Happy to see you in this journey. Join our [community](https://discord.gg/Exe46xPMbK).
\ No newline at end of file
diff --git a/docs/src/pages/index.mdx b/docs/src/pages/index.mdx
index f830aaf03..ce0b3372b 100644
--- a/docs/src/pages/index.mdx
+++ b/docs/src/pages/index.mdx
@@ -1,6 +1,6 @@
---
-title: "Jan: Open source ChatGPT-alternative that runs 100% offline"
-description: "Chat with AI without privacy concerns. Jan is an open-source ChatGPT-alternative, running AI models locally on your device."
+title: "Open source ChatGPT alternative that runs offline"
+description: "Jan is building Open Superintelligence. It’s the open-source ChatGPT alternative that leverages the best of open-source AI."
keywords:
[
Jan,
diff --git a/docs/src/pages/platforms/_meta.json b/docs/src/pages/platforms/_meta.json
deleted file mode 100644
index bfee4c12e..000000000
--- a/docs/src/pages/platforms/_meta.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "-- Switcher": {
- "type": "separator",
- "title": "Switcher"
- },
- "index": {
- "display": "hidden"
- }
-}
diff --git a/docs/src/pages/platforms/index.mdx b/docs/src/pages/platforms/index.mdx
deleted file mode 100644
index 8ebaabe42..000000000
--- a/docs/src/pages/platforms/index.mdx
+++ /dev/null
@@ -1,87 +0,0 @@
----
-title: Coming Soon
-description: Exciting new features and platforms are on the way. Stay tuned for Jan Web, Jan Mobile, and our API Platform.
-keywords:
- [
- Jan,
- Customizable Intelligence, LLM,
- local AI,
- privacy focus,
- free and open source,
- private and offline,
- conversational AI,
- no-subscription fee,
- large language models,
- coming soon,
- Jan Web,
- Jan Mobile,
- API Platform,
- ]
----
-
-import { Callout } from 'nextra/components'
-
-
-
-
- 🚀 Coming Soon
-
-
- We're working on the next stage of Jan - making our local assistant more powerful and available in more platforms.
-
-
-
-
-
-
🌐
-
Jan Web
-
- Access Jan directly from your browser with our powerful web interface
-
-
-
-
-
📱
-
Jan Mobile
-
- Take Jan on the go with our native mobile applications
-
-
-
-
-
⚡
-
API Platform
-
- Integrate Jan's capabilities into your applications with our API
-
-
-
-
-
- **Stay Updated**: Follow our [GitHub repository](https://github.com/menloresearch/jan) and join our [Discord community](https://discord.com/invite/FTk2MvZwJH) for the latest updates on these exciting releases!
-
-
-
-
What to Expect
-
-
-
✓
-
- Seamless Experience: Unified interface across all platforms
-
-
-
-
✓
-
- Privacy First: Same privacy-focused approach you trust
-
-
-
-
✓
-
- Developer Friendly: Robust APIs and comprehensive documentation
-
-
-
-
-
diff --git a/docs/src/styles/animations.css b/docs/src/styles/animations.css
new file mode 100644
index 000000000..a1ca86de2
--- /dev/null
+++ b/docs/src/styles/animations.css
@@ -0,0 +1,232 @@
+/* Keyframe animations */
+@keyframes fadeInUp {
+ from {
+ opacity: 0;
+ transform: translateY(30px);
+ }
+ to {
+ opacity: 1;
+ transform: translateY(0);
+ }
+}
+
+@keyframes fadeIn {
+ from {
+ opacity: 0;
+ }
+ to {
+ opacity: 1;
+ }
+}
+
+@keyframes wave {
+ 0%, 100% {
+ transform: rotate(0deg);
+ }
+ 25% {
+ transform: rotate(-10deg);
+ }
+ 75% {
+ transform: rotate(10deg);
+ }
+}
+
+@keyframes float {
+ 0%, 100% {
+ transform: translateY(0px);
+ }
+ 50% {
+ transform: translateY(8px);
+ }
+}
+
+@keyframes slideInLeft {
+ from {
+ opacity: 0;
+ transform: translateX(-50px);
+ }
+ to {
+ opacity: 1;
+ transform: translateX(0);
+ }
+}
+
+@keyframes slideInRight {
+ from {
+ opacity: 0;
+ transform: translateX(50px);
+ }
+ to {
+ opacity: 1;
+ transform: translateX(0);
+ }
+}
+
+@keyframes scaleIn {
+ from {
+ opacity: 0;
+ transform: scale(0.9);
+ }
+ to {
+ opacity: 1;
+ transform: scale(1);
+ }
+}
+
+/* Animation classes */
+.animate-fade-in-up {
+ animation: fadeInUp 0.8s ease-out forwards;
+}
+
+.animate-fade-in {
+ animation: fadeIn 0.6s ease-out forwards;
+}
+
+.animate-wave {
+ animation: wave 2s ease-in-out infinite;
+ transform-origin: 70% 70%;
+}
+
+.animate-float {
+ animation: float 3s ease-in-out infinite;
+}
+
+.animate-slide-in-left {
+ animation: slideInLeft 0.8s ease-out forwards;
+}
+
+.animate-slide-in-right {
+ animation: slideInRight 0.8s ease-out forwards;
+}
+
+.animate-scale-in {
+ animation: scaleIn 0.6s ease-out forwards;
+}
+
+/* Delay classes for staggered animations */
+.delay-100 {
+ animation-delay: 0.1s;
+}
+
+.delay-200 {
+ animation-delay: 0.2s;
+}
+
+.delay-300 {
+ animation-delay: 0.3s;
+}
+
+.delay-400 {
+ animation-delay: 0.4s;
+}
+
+.delay-500 {
+ animation-delay: 0.5s;
+}
+
+.delay-600 {
+ animation-delay: 0.6s;
+}
+
+/* Initial state for animated elements */
+.animate-fade-in-up,
+.animate-fade-in,
+.animate-slide-in-left,
+.animate-slide-in-right,
+.animate-scale-in {
+ opacity: 0;
+}
+
+/* Viewport-triggered animations */
+.animate-on-scroll {
+ opacity: 0;
+ transform: translateY(30px);
+ transition: opacity 0.8s ease-out, transform 0.8s ease-out;
+}
+
+.animate-on-scroll.animate-in-view {
+ opacity: 1;
+ transform: translateY(0);
+}
+
+.animate-on-scroll-left {
+ opacity: 0;
+ transform: translateX(-50px);
+ transition: opacity 0.8s ease-out, transform 0.8s ease-out;
+}
+
+.animate-on-scroll-left.animate-in-view {
+ opacity: 1;
+ transform: translateX(0);
+}
+
+.animate-on-scroll-right {
+ opacity: 0;
+ transform: translateX(50px);
+ transition: opacity 0.8s ease-out, transform 0.8s ease-out;
+}
+
+.animate-on-scroll-right.animate-in-view {
+ opacity: 1;
+ transform: translateX(0);
+}
+
+.animate-on-scroll-scale {
+ opacity: 0;
+ transform: scale(0.9);
+ transition: opacity 0.6s ease-out, transform 0.6s ease-out;
+}
+
+.animate-on-scroll-scale.animate-in-view {
+ opacity: 1;
+ transform: scale(1);
+}
+
+.animate-slide-up {
+ opacity: 0;
+ transform: translateY(100px);
+ transition: opacity 1s ease-out, transform 1s ease-out;
+}
+
+.animate-slide-up.animate-in-view {
+ opacity: 1;
+ transform: translateY(0);
+}
+
+.parallax-element {
+ will-change: transform;
+}
+
+/* Alternative: Simple CSS-based parallax using transform3d for better performance */
+@media (prefers-reduced-motion: no-preference) {
+ .parallax-slow {
+ transform: translateZ(0);
+ animation: parallaxFloat 20s ease-in-out infinite;
+ }
+}
+
+@keyframes parallaxFloat {
+ 0% {
+ transform: translateY(0px);
+ }
+ 50% {
+ transform: translateY(-30px);
+ }
+ 100% {
+ transform: translateY(0px);
+ }
+}
+
+/* Simple test animation */
+.test-animation {
+ animation: testPulse 2s ease-in-out infinite;
+}
+
+@keyframes testPulse {
+ 0%, 100% {
+ transform: scale(1);
+ }
+ 50% {
+ transform: scale(1.1);
+ }
+}
\ No newline at end of file
diff --git a/docs/src/styles/fonts.scss b/docs/src/styles/fonts.scss
index c7e7db47c..4ea22523e 100644
--- a/docs/src/styles/fonts.scss
+++ b/docs/src/styles/fonts.scss
@@ -44,3 +44,66 @@
font-weight: 300;
font-style: italic;
}
+
+/* Studio Feixen Sans - Ultralight */
+@font-face {
+ font-family: 'StudioFeixenSans';
+ font-display: swap;
+ src: url('../../public/assets/fonts/StudioFeixenSans-Ultralight.otf')
+ format('opentype');
+ font-weight: 200;
+}
+
+/* Studio Feixen Sans - Light */
+@font-face {
+ font-family: 'StudioFeixenSans';
+ font-display: swap;
+ src: url('../../public/assets/fonts/StudioFeixenSans-Light.otf')
+ format('opentype');
+ font-weight: 300;
+}
+
+/* Studio Feixen Sans - Book */
+@font-face {
+ font-family: 'StudioFeixenSans';
+ font-display: swap;
+ src: url('../../public/assets/fonts/StudioFeixenSans-Book.otf')
+ format('opentype');
+ font-weight: 350;
+}
+
+/* Studio Feixen Sans - Regular */
+@font-face {
+ font-family: 'StudioFeixenSans';
+ font-display: swap;
+ src: url('../../public/assets/fonts/StudioFeixenSans-Regular.otf')
+ format('opentype');
+ font-weight: 400;
+}
+
+/* Studio Feixen Sans - Medium */
+@font-face {
+ font-family: 'StudioFeixenSans';
+ font-display: swap;
+ src: url('../../public/assets/fonts/StudioFeixenSans-Medium.otf')
+ format('opentype');
+ font-weight: 500;
+}
+
+/* Studio Feixen Sans - Semibold */
+@font-face {
+ font-family: 'StudioFeixenSans';
+ font-display: swap;
+ src: url('../../public/assets/fonts/StudioFeixenSans-Semibold.otf')
+ format('opentype');
+ font-weight: 600;
+}
+
+/* Studio Feixen Sans - Bold */
+@font-face {
+ font-family: 'StudioFeixenSans';
+ font-display: swap;
+ src: url('../../public/assets/fonts/StudioFeixenSans-Bold.otf')
+ format('opentype');
+ font-weight: 700;
+}
diff --git a/docs/src/styles/main.scss b/docs/src/styles/main.scss
index 591b04102..8ac34ebb0 100644
--- a/docs/src/styles/main.scss
+++ b/docs/src/styles/main.scss
@@ -6,3 +6,4 @@
@import './changelog.scss';
@import './fonts.scss';
@import './wall-of-love.scss';
+@import './animations.css';
diff --git a/docs/tailwind.config.ts b/docs/tailwind.config.ts
index 86f5f6c87..fcffa75fe 100644
--- a/docs/tailwind.config.ts
+++ b/docs/tailwind.config.ts
@@ -16,6 +16,17 @@ const config: Config = {
},
fontFamily: {
sans: [
+ 'StudioFeixenSans',
+ '-apple-system',
+ 'BlinkMacSystemFont',
+ 'Segoe UI',
+ 'Roboto',
+ 'Oxygen-Sans',
+ 'Ubuntu,Cantarell',
+ 'Helvetica',
+ 'sans-serif',
+ ],
+ inter: [
'Inter',
'-apple-system',
'BlinkMacSystemFont',
diff --git a/docs/theme.config.tsx b/docs/theme.config.tsx
index 148079484..8b71c4cca 100644
--- a/docs/theme.config.tsx
+++ b/docs/theme.config.tsx
@@ -9,6 +9,7 @@ import { LibraryBig, Blocks, BrainCircuit, Computer } from 'lucide-react'
import { AiOutlineGithub } from 'react-icons/ai'
import { BiLogoDiscordAlt } from 'react-icons/bi'
import { RiTwitterXFill } from 'react-icons/ri'
+import Navbar from '@/components/Navbar'
const defaultUrl = 'https://jan.ai'
const defaultImage = 'https://jan.ai/assets/images/general/og-image.png'
@@ -51,19 +52,7 @@ const config: DocsThemeConfig = {
}
},
navbar: {
- extraContent: (
-
- ),
+ component: ,
},
sidebar: {
titleComponent: ({ type, title }) => {
@@ -72,39 +61,37 @@ const config: DocsThemeConfig = {
if (type === 'separator' && title === 'Switcher') {
return (
- {[
- { title: 'Jan Desktop', path: '/docs', Icon: LibraryBig },
- {
- title: 'Jan Mobile',
- path: '/platforms',
- Icon: BrainCircuit,
- },
- // { title: 'Jan Mobile', path: '/platforms', Icon: Blocks },
- {
- title: 'Jan Server',
- path: '/platforms',
- Icon: Computer,
- },
- ].map((item) =>
- asPath.startsWith(item.path) ? (
-
-
- {item.title}
-
- ) : (
-
-
- {item.title}
-
- )
- )}
+ {(() => {
+ const items = [
+ {
+ title: 'Jan Desktop',
+ path: '/docs/desktop',
+ Icon: LibraryBig,
+ },
+ { title: 'Jan Server', path: '/docs/server', Icon: Computer },
+ ]
+ return items.map((item) => {
+ const active = asPath.startsWith(item.path)
+ return active ? (
+
+
+ {item.title}
+
+ ) : (
+
+
+ {item.title}
+
+ )
+ })
+ })()}
)
}
@@ -113,13 +100,21 @@ const config: DocsThemeConfig = {
defaultMenuCollapseLevel: 1,
toggleButton: true,
},
+ darkMode: false,
toc: {
backToTop: true,
},
head: function useHead() {
const { title, frontMatter } = useConfig()
- const titleTemplate = (frontMatter?.title || title) + ' - ' + 'Jan'
const { asPath } = useRouter()
+ const titleTemplate =
+ (asPath.includes('/desktop')
+ ? 'Jan Desktop'
+ : asPath.includes('/server')
+ ? 'Jan Server'
+ : 'Jan') +
+ ' - ' +
+ (frontMatter?.title || title)
return (
@@ -156,7 +151,9 @@ const config: DocsThemeConfig = {
content={
frontMatter?.ogImage
? 'https://jan.ai/' + frontMatter?.ogImage
- : 'https://jan.ai/assets/images/general/og-image.png'
+ : asPath.includes('/docs')
+ ? 'https://jan.ai/assets/images/general/og-image-docs.png'
+ : 'https://jan.ai/assets/images/general/og-image.png'
}
/>
@@ -188,6 +185,7 @@ const config: DocsThemeConfig = {
},
nextThemes: {
defaultTheme: 'light',
+ forcedTheme: 'light',
},
}
diff --git a/docs/yarn.lock b/docs/yarn.lock
index 8a5f7c2ee..f24a01f7a 100644
--- a/docs/yarn.lock
+++ b/docs/yarn.lock
@@ -1,13990 +1,9730 @@
-# This file is generated by running "yarn install" inside your project.
-# Manual changes might be lost - proceed with caution!
-
-__metadata:
- version: 8
- cacheKey: 10c0
-
-"@adobe/css-tools@npm:^4.4.0":
- version: 4.4.2
- resolution: "@adobe/css-tools@npm:4.4.2"
- checksum: 10c0/19433666ad18536b0ed05d4b53fbb3dd6ede266996796462023ec77a90b484890ad28a3e528cdf3ab8a65cb2fcdff5d8feb04db6bc6eed6ca307c40974239c94
- languageName: node
- linkType: hard
-
-"@alloc/quick-lru@npm:^5.2.0":
- version: 5.2.0
- resolution: "@alloc/quick-lru@npm:5.2.0"
- checksum: 10c0/7b878c48b9d25277d0e1a9b8b2f2312a314af806b4129dc902f2bc29ab09b58236e53964689feec187b28c80d2203aff03829754773a707a8a5987f1b7682d92
- languageName: node
- linkType: hard
-
-"@antfu/install-pkg@npm:^1.0.0":
- version: 1.1.0
- resolution: "@antfu/install-pkg@npm:1.1.0"
- dependencies:
- package-manager-detector: "npm:^1.3.0"
- tinyexec: "npm:^1.0.1"
- checksum: 10c0/140d5994c76fd3d0e824c88f1ce91b3370e8066a8bc2f5729ae133bf768caa239f7915e29c78f239b7ead253113ace51293e95127fafe2b786b88eb615b3be47
- languageName: node
- linkType: hard
-
-"@antfu/utils@npm:^8.1.0":
- version: 8.1.1
- resolution: "@antfu/utils@npm:8.1.1"
- checksum: 10c0/cd55d322496f0324323a7bd312bbdc305db02f5c74c53d59213a00a7ecfd66926b6755a41f27c6e664a687cd7a967d3a8b12d3ea57f264ae45dd1c5c181f5160
- languageName: node
- linkType: hard
-
-"@babel/code-frame@npm:^7.10.4":
- version: 7.26.2
- resolution: "@babel/code-frame@npm:7.26.2"
- dependencies:
- "@babel/helper-validator-identifier": "npm:^7.25.9"
- js-tokens: "npm:^4.0.0"
- picocolors: "npm:^1.0.0"
- checksum: 10c0/7d79621a6849183c415486af99b1a20b84737e8c11cd55b6544f688c51ce1fd710e6d869c3dd21232023da272a79b91efb3e83b5bc2dc65c1187c5fcd1b72ea8
- languageName: node
- linkType: hard
-
-"@babel/helper-validator-identifier@npm:^7.25.9":
- version: 7.25.9
- resolution: "@babel/helper-validator-identifier@npm:7.25.9"
- checksum: 10c0/4fc6f830177b7b7e887ad3277ddb3b91d81e6c4a24151540d9d1023e8dc6b1c0505f0f0628ae653601eb4388a8db45c1c14b2c07a9173837aef7e4116456259d
- languageName: node
- linkType: hard
-
-"@babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.23.8":
- version: 7.27.1
- resolution: "@babel/runtime@npm:7.27.1"
- checksum: 10c0/530a7332f86ac5a7442250456823a930906911d895c0b743bf1852efc88a20a016ed4cd26d442d0ca40ae6d5448111e02a08dd638a4f1064b47d080e2875dc05
- languageName: node
- linkType: hard
-
-"@braintree/sanitize-url@npm:^6.0.1":
- version: 6.0.4
- resolution: "@braintree/sanitize-url@npm:6.0.4"
- checksum: 10c0/5d7bac57f3e49931db83f65aaa4fd22f96caa323bf0c7fcf6851fdbed179a8cf29eaa5dd372d340fc51ca5f44345ea5bc0196b36c8b16179888a7c9044313420
- languageName: node
- linkType: hard
-
-"@braintree/sanitize-url@npm:^7.0.4":
- version: 7.1.1
- resolution: "@braintree/sanitize-url@npm:7.1.1"
- checksum: 10c0/fdfc1759c4244e287693ce1e9d42d649423e7c203fdccf27a571f8951ddfe34baa5273b7e6a8dd3007d7676859c7a0a9819be0ab42a3505f8505ad0eefecf7c1
- languageName: node
- linkType: hard
-
-"@chevrotain/cst-dts-gen@npm:11.0.3":
- version: 11.0.3
- resolution: "@chevrotain/cst-dts-gen@npm:11.0.3"
- dependencies:
- "@chevrotain/gast": "npm:11.0.3"
- "@chevrotain/types": "npm:11.0.3"
- lodash-es: "npm:4.17.21"
- checksum: 10c0/9e945a0611386e4e08af34c2d0b3af36c1af08f726b58145f11310f2aeafcb2d65264c06ec65a32df6b6a65771e6a55be70580c853afe3ceb51487e506967104
- languageName: node
- linkType: hard
-
-"@chevrotain/gast@npm:11.0.3":
- version: 11.0.3
- resolution: "@chevrotain/gast@npm:11.0.3"
- dependencies:
- "@chevrotain/types": "npm:11.0.3"
- lodash-es: "npm:4.17.21"
- checksum: 10c0/54fc44d7b4a7b0323f49d957dd88ad44504922d30cb226d93b430b0e09925efe44e0726068581d777f423fabfb878a2238ed2c87b690c0c0014ebd12b6968354
- languageName: node
- linkType: hard
-
-"@chevrotain/regexp-to-ast@npm:11.0.3":
- version: 11.0.3
- resolution: "@chevrotain/regexp-to-ast@npm:11.0.3"
- checksum: 10c0/6939c5c94fbfb8c559a4a37a283af5ded8e6147b184a7d7bcf5ad1404d9d663c78d81602bd8ea8458ec497358a9e1671541099c511835d0be2cad46f00c62b3f
- languageName: node
- linkType: hard
-
-"@chevrotain/types@npm:11.0.3":
- version: 11.0.3
- resolution: "@chevrotain/types@npm:11.0.3"
- checksum: 10c0/72fe8f0010ebef848e47faea14a88c6fdc3cdbafaef6b13df4a18c7d33249b1b675e37b05cb90a421700c7016dae7cd4187ab6b549e176a81cea434f69cd2503
- languageName: node
- linkType: hard
-
-"@chevrotain/utils@npm:11.0.3":
- version: 11.0.3
- resolution: "@chevrotain/utils@npm:11.0.3"
- checksum: 10c0/b31972d1b2d444eef1499cf9b7576fc1793e8544910de33a3c18e07c270cfad88067f175d0ee63e7bc604713ebed647f8190db45cc8311852cd2d4fe2ef14068
- languageName: node
- linkType: hard
-
-"@code-hike/lighter@npm:0.7.0":
- version: 0.7.0
- resolution: "@code-hike/lighter@npm:0.7.0"
- checksum: 10c0/f1500e8fcd3531d911c29451268fca0d2ae25d80910aa66f6d3664e3ab442ddec69637355b6c688a0d57c66ae85c65d2a90111a9f26ffbdf4fc8b33d411abb0b
- languageName: node
- linkType: hard
-
-"@code-hike/mdx@npm:^0.9.0":
- version: 0.9.0
- resolution: "@code-hike/mdx@npm:0.9.0"
- dependencies:
- "@code-hike/lighter": "npm:0.7.0"
- node-fetch: "npm:^2.0.0"
- peerDependencies:
- react: ^16.8.3 || ^17 || ^18
- checksum: 10c0/fe5ee6c4346bfcc630471e029dbc8e5308e45d9f0603f4ad191d0d949d73874a077434a626db70c4441fbebd6b8966d27aff5db184e630ba4f6f3e6bd275597a
- languageName: node
- linkType: hard
-
-"@codemirror/autocomplete@npm:^6.0.0, @codemirror/autocomplete@npm:^6.12.0":
- version: 6.18.6
- resolution: "@codemirror/autocomplete@npm:6.18.6"
- dependencies:
- "@codemirror/language": "npm:^6.0.0"
- "@codemirror/state": "npm:^6.0.0"
- "@codemirror/view": "npm:^6.17.0"
- "@lezer/common": "npm:^1.0.0"
- checksum: 10c0/65069493978b2af7c600af5020a8873270a8bc9a6820da192bf28b03535f1a0127aa5767eb30d9bfa5d36c61186ee2766925625e8a6c731194e7def0d882fb84
- languageName: node
- linkType: hard
-
-"@codemirror/commands@npm:^6.0.0, @codemirror/commands@npm:^6.3.3":
- version: 6.8.1
- resolution: "@codemirror/commands@npm:6.8.1"
- dependencies:
- "@codemirror/language": "npm:^6.0.0"
- "@codemirror/state": "npm:^6.4.0"
- "@codemirror/view": "npm:^6.27.0"
- "@lezer/common": "npm:^1.1.0"
- checksum: 10c0/da61311f4c39036f93fbe518c673f2464902cf1b64b071319b14b7d690315b72828de4bc12f28be78eeac6e8b8bd8800d4e7921dc37977f78baac4dd49c5b4bf
- languageName: node
- linkType: hard
-
-"@codemirror/lang-css@npm:^6.0.0, @codemirror/lang-css@npm:^6.2.1":
- version: 6.3.1
- resolution: "@codemirror/lang-css@npm:6.3.1"
- dependencies:
- "@codemirror/autocomplete": "npm:^6.0.0"
- "@codemirror/language": "npm:^6.0.0"
- "@codemirror/state": "npm:^6.0.0"
- "@lezer/common": "npm:^1.0.2"
- "@lezer/css": "npm:^1.1.7"
- checksum: 10c0/339387c5a1b90076ae41017e66d7da70dd2aca4e5e4d012c95df33d0f6e740410cf1fb53c4845e3814636d587ce6eff05ebca3173dcfc564a1f646d24f299180
- languageName: node
- linkType: hard
-
-"@codemirror/lang-html@npm:^6.4.8":
- version: 6.4.9
- resolution: "@codemirror/lang-html@npm:6.4.9"
- dependencies:
- "@codemirror/autocomplete": "npm:^6.0.0"
- "@codemirror/lang-css": "npm:^6.0.0"
- "@codemirror/lang-javascript": "npm:^6.0.0"
- "@codemirror/language": "npm:^6.4.0"
- "@codemirror/state": "npm:^6.0.0"
- "@codemirror/view": "npm:^6.17.0"
- "@lezer/common": "npm:^1.0.0"
- "@lezer/css": "npm:^1.1.0"
- "@lezer/html": "npm:^1.3.0"
- checksum: 10c0/0d6197aa645cc0a9da33789ea30423d4b8320b8e636c8587c7fcf58bdf90ea6934451d84ccbd9dd60dbc7046428204d7c986bd742c2cc459bee7c9653258db70
- languageName: node
- linkType: hard
-
-"@codemirror/lang-javascript@npm:^6.0.0":
- version: 6.2.3
- resolution: "@codemirror/lang-javascript@npm:6.2.3"
- dependencies:
- "@codemirror/autocomplete": "npm:^6.0.0"
- "@codemirror/language": "npm:^6.6.0"
- "@codemirror/lint": "npm:^6.0.0"
- "@codemirror/state": "npm:^6.0.0"
- "@codemirror/view": "npm:^6.17.0"
- "@lezer/common": "npm:^1.0.0"
- "@lezer/javascript": "npm:^1.0.0"
- checksum: 10c0/6f7c2563325a4b9ea13aadf92e8d4fa0b4da6b6ea6f623e8a593732b7965b863bf66ca2273202954c70d4f9a2bdc74dcb03bb8100300f4c08d5834afe8f2aede
- languageName: node
- linkType: hard
-
-"@codemirror/lang-json@npm:^6.0.0":
- version: 6.0.1
- resolution: "@codemirror/lang-json@npm:6.0.1"
- dependencies:
- "@codemirror/language": "npm:^6.0.0"
- "@lezer/json": "npm:^1.0.0"
- checksum: 10c0/c70301ba43d44dbd1ff0ccab6ec6e3fb9825d61d4854b4839441a8144a9c96997acdad16d93199d157308dd80088a5e9f14b66f395c7e79f4dadc6b4e70ce8a8
- languageName: node
- linkType: hard
-
-"@codemirror/lang-yaml@npm:^6.0.0":
- version: 6.1.2
- resolution: "@codemirror/lang-yaml@npm:6.1.2"
- dependencies:
- "@codemirror/autocomplete": "npm:^6.0.0"
- "@codemirror/language": "npm:^6.0.0"
- "@codemirror/state": "npm:^6.0.0"
- "@lezer/common": "npm:^1.2.0"
- "@lezer/highlight": "npm:^1.2.0"
- "@lezer/lr": "npm:^1.0.0"
- "@lezer/yaml": "npm:^1.0.0"
- checksum: 10c0/fc993c5e24baee0212d587c652ee7633792533c1b1e5b708d5e4f6c29e6164a3563958fd6a3bb402a64f565f7bab7edbda6c8b8cd8bfecfd0b7294f0dcf998a8
- languageName: node
- linkType: hard
-
-"@codemirror/language@npm:^6.0.0, @codemirror/language@npm:^6.10.1, @codemirror/language@npm:^6.4.0, @codemirror/language@npm:^6.6.0":
- version: 6.10.8
- resolution: "@codemirror/language@npm:6.10.8"
- dependencies:
- "@codemirror/state": "npm:^6.0.0"
- "@codemirror/view": "npm:^6.23.0"
- "@lezer/common": "npm:^1.1.0"
- "@lezer/highlight": "npm:^1.0.0"
- "@lezer/lr": "npm:^1.0.0"
- style-mod: "npm:^4.0.0"
- checksum: 10c0/b7d07bc4726046563d4cfcd5d26ae64300fbfa58d81c034674d25e346ace0b5b2a53446d0b246ff09f6b0111a7ff35d827f2d5cc4ef95de9dfd43e4d068fe3a7
- languageName: node
- linkType: hard
-
-"@codemirror/lint@npm:^6.0.0":
- version: 6.8.4
- resolution: "@codemirror/lint@npm:6.8.4"
- dependencies:
- "@codemirror/state": "npm:^6.0.0"
- "@codemirror/view": "npm:^6.35.0"
- crelt: "npm:^1.0.5"
- checksum: 10c0/2614f25c50061b8bea4a430d19b25dca03e3d3059ade0bbc5768d2a1ac1dbc2e653ccc810d951860e6bd9e37031c850f439054c6df6522d533d93984df68bc79
- languageName: node
- linkType: hard
-
-"@codemirror/search@npm:^6.0.0":
- version: 6.5.10
- resolution: "@codemirror/search@npm:6.5.10"
- dependencies:
- "@codemirror/state": "npm:^6.0.0"
- "@codemirror/view": "npm:^6.0.0"
- crelt: "npm:^1.0.5"
- checksum: 10c0/01806b0a04e6274077bac5de9fc201194147da25ec888dec0186269da9aff089d321a1a09245b4de39148c76b30ba8595a95d42dea6f5913d19c3a0107401d3a
- languageName: node
- linkType: hard
-
-"@codemirror/state@npm:^6.0.0, @codemirror/state@npm:^6.4.0, @codemirror/state@npm:^6.5.0":
- version: 6.5.2
- resolution: "@codemirror/state@npm:6.5.2"
- dependencies:
- "@marijn/find-cluster-break": "npm:^1.0.0"
- checksum: 10c0/1ef773394e32c077a8cfc1ec6d881aefb1918876f82161748e505c38d143aa1c6893c314cfec91097d28f704ec07b2a6c6b75abd435086208974256dee997282
- languageName: node
- linkType: hard
-
-"@codemirror/view@npm:^6.0.0, @codemirror/view@npm:^6.17.0, @codemirror/view@npm:^6.23.0, @codemirror/view@npm:^6.23.1, @codemirror/view@npm:^6.27.0, @codemirror/view@npm:^6.35.0":
- version: 6.36.7
- resolution: "@codemirror/view@npm:6.36.7"
- dependencies:
- "@codemirror/state": "npm:^6.5.0"
- style-mod: "npm:^4.1.0"
- w3c-keyname: "npm:^2.2.4"
- checksum: 10c0/243d57e591f39a8c5357bd8c74d491d245fd3bac2706da0a444b618a7e1a7728bd9e2c653fefeeb40c0e9a887c5e42566eae8df9c4a9f87ba69aa47ec505d6e8
- languageName: node
- linkType: hard
-
-"@corex/deepmerge@npm:^4.0.43":
- version: 4.0.43
- resolution: "@corex/deepmerge@npm:4.0.43"
- checksum: 10c0/3dc31721d10c0552c667392e01a67034d9f39417d275fb2f986140592fbdb5cbcf5ac82b45bcbaf9747fd659017bc7857283019d11929e8b03e8966934ab34b9
- languageName: node
- linkType: hard
-
-"@emnapi/core@npm:^1.4.0":
- version: 1.4.3
- resolution: "@emnapi/core@npm:1.4.3"
- dependencies:
- "@emnapi/wasi-threads": "npm:1.0.2"
- tslib: "npm:^2.4.0"
- checksum: 10c0/e30101d16d37ef3283538a35cad60e22095aff2403fb9226a35330b932eb6740b81364d525537a94eb4fb51355e48ae9b10d779c0dd1cdcd55d71461fe4b45c7
- languageName: node
- linkType: hard
-
-"@emnapi/runtime@npm:^1.2.0, @emnapi/runtime@npm:^1.4.0":
- version: 1.4.3
- resolution: "@emnapi/runtime@npm:1.4.3"
- dependencies:
- tslib: "npm:^2.4.0"
- checksum: 10c0/3b7ab72d21cb4e034f07df80165265f85f445ef3f581d1bc87b67e5239428baa00200b68a7d5e37a0425c3a78320b541b07f76c5530f6f6f95336a6294ebf30b
- languageName: node
- linkType: hard
-
-"@emnapi/wasi-threads@npm:1.0.2":
- version: 1.0.2
- resolution: "@emnapi/wasi-threads@npm:1.0.2"
- dependencies:
- tslib: "npm:^2.4.0"
- checksum: 10c0/f0621b1fc715221bd2d8332c0ca922617bcd77cdb3050eae50a124eb8923c54fa425d23982dc8f29d505c8798a62d1049bace8b0686098ff9dd82270e06d772e
- languageName: node
- linkType: hard
-
-"@esbuild/aix-ppc64@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/aix-ppc64@npm:0.21.5"
- conditions: os=aix & cpu=ppc64
- languageName: node
- linkType: hard
-
-"@esbuild/android-arm64@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/android-arm64@npm:0.21.5"
- conditions: os=android & cpu=arm64
- languageName: node
- linkType: hard
-
-"@esbuild/android-arm@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/android-arm@npm:0.21.5"
- conditions: os=android & cpu=arm
- languageName: node
- linkType: hard
-
-"@esbuild/android-x64@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/android-x64@npm:0.21.5"
- conditions: os=android & cpu=x64
- languageName: node
- linkType: hard
-
-"@esbuild/darwin-arm64@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/darwin-arm64@npm:0.21.5"
- conditions: os=darwin & cpu=arm64
- languageName: node
- linkType: hard
-
-"@esbuild/darwin-x64@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/darwin-x64@npm:0.21.5"
- conditions: os=darwin & cpu=x64
- languageName: node
- linkType: hard
-
-"@esbuild/freebsd-arm64@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/freebsd-arm64@npm:0.21.5"
- conditions: os=freebsd & cpu=arm64
- languageName: node
- linkType: hard
-
-"@esbuild/freebsd-x64@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/freebsd-x64@npm:0.21.5"
- conditions: os=freebsd & cpu=x64
- languageName: node
- linkType: hard
-
-"@esbuild/linux-arm64@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/linux-arm64@npm:0.21.5"
- conditions: os=linux & cpu=arm64
- languageName: node
- linkType: hard
-
-"@esbuild/linux-arm@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/linux-arm@npm:0.21.5"
- conditions: os=linux & cpu=arm
- languageName: node
- linkType: hard
-
-"@esbuild/linux-ia32@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/linux-ia32@npm:0.21.5"
- conditions: os=linux & cpu=ia32
- languageName: node
- linkType: hard
-
-"@esbuild/linux-loong64@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/linux-loong64@npm:0.21.5"
- conditions: os=linux & cpu=loong64
- languageName: node
- linkType: hard
-
-"@esbuild/linux-mips64el@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/linux-mips64el@npm:0.21.5"
- conditions: os=linux & cpu=mips64el
- languageName: node
- linkType: hard
-
-"@esbuild/linux-ppc64@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/linux-ppc64@npm:0.21.5"
- conditions: os=linux & cpu=ppc64
- languageName: node
- linkType: hard
-
-"@esbuild/linux-riscv64@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/linux-riscv64@npm:0.21.5"
- conditions: os=linux & cpu=riscv64
- languageName: node
- linkType: hard
-
-"@esbuild/linux-s390x@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/linux-s390x@npm:0.21.5"
- conditions: os=linux & cpu=s390x
- languageName: node
- linkType: hard
-
-"@esbuild/linux-x64@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/linux-x64@npm:0.21.5"
- conditions: os=linux & cpu=x64
- languageName: node
- linkType: hard
-
-"@esbuild/netbsd-x64@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/netbsd-x64@npm:0.21.5"
- conditions: os=netbsd & cpu=x64
- languageName: node
- linkType: hard
-
-"@esbuild/openbsd-x64@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/openbsd-x64@npm:0.21.5"
- conditions: os=openbsd & cpu=x64
- languageName: node
- linkType: hard
-
-"@esbuild/sunos-x64@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/sunos-x64@npm:0.21.5"
- conditions: os=sunos & cpu=x64
- languageName: node
- linkType: hard
-
-"@esbuild/win32-arm64@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/win32-arm64@npm:0.21.5"
- conditions: os=win32 & cpu=arm64
- languageName: node
- linkType: hard
-
-"@esbuild/win32-ia32@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/win32-ia32@npm:0.21.5"
- conditions: os=win32 & cpu=ia32
- languageName: node
- linkType: hard
-
-"@esbuild/win32-x64@npm:0.21.5":
- version: 0.21.5
- resolution: "@esbuild/win32-x64@npm:0.21.5"
- conditions: os=win32 & cpu=x64
- languageName: node
- linkType: hard
-
-"@eslint-community/eslint-utils@npm:^4.2.0":
- version: 4.7.0
- resolution: "@eslint-community/eslint-utils@npm:4.7.0"
- dependencies:
- eslint-visitor-keys: "npm:^3.4.3"
- peerDependencies:
- eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- checksum: 10c0/c0f4f2bd73b7b7a9de74b716a664873d08ab71ab439e51befe77d61915af41a81ecec93b408778b3a7856185244c34c2c8ee28912072ec14def84ba2dec70adf
- languageName: node
- linkType: hard
-
-"@eslint-community/regexpp@npm:^4.6.1":
- version: 4.12.1
- resolution: "@eslint-community/regexpp@npm:4.12.1"
- checksum: 10c0/a03d98c246bcb9109aec2c08e4d10c8d010256538dcb3f56610191607214523d4fb1b00aa81df830b6dffb74c5fa0be03642513a289c567949d3e550ca11cdf6
- languageName: node
- linkType: hard
-
-"@eslint/eslintrc@npm:^2.1.4":
- version: 2.1.4
- resolution: "@eslint/eslintrc@npm:2.1.4"
- dependencies:
- ajv: "npm:^6.12.4"
- debug: "npm:^4.3.2"
- espree: "npm:^9.6.0"
- globals: "npm:^13.19.0"
- ignore: "npm:^5.2.0"
- import-fresh: "npm:^3.2.1"
- js-yaml: "npm:^4.1.0"
- minimatch: "npm:^3.1.2"
- strip-json-comments: "npm:^3.1.1"
- checksum: 10c0/32f67052b81768ae876c84569ffd562491ec5a5091b0c1e1ca1e0f3c24fb42f804952fdd0a137873bc64303ba368a71ba079a6f691cee25beee9722d94cc8573
- languageName: node
- linkType: hard
-
-"@eslint/js@npm:8.57.1":
- version: 8.57.1
- resolution: "@eslint/js@npm:8.57.1"
- checksum: 10c0/b489c474a3b5b54381c62e82b3f7f65f4b8a5eaaed126546520bf2fede5532a8ed53212919fed1e9048dcf7f37167c8561d58d0ba4492a4244004e7793805223
- languageName: node
- linkType: hard
-
-"@floating-ui/core@npm:^1.7.0":
- version: 1.7.0
- resolution: "@floating-ui/core@npm:1.7.0"
- dependencies:
- "@floating-ui/utils": "npm:^0.2.9"
- checksum: 10c0/f7e66a650ad8c73765edb39a7530d81fa990c08c172f03b6129030234d32bccd4401c29ded9c8a4e4135e9beac349c5608d94962fa08c2a2ae2dab7a6530550c
- languageName: node
- linkType: hard
-
-"@floating-ui/dom@npm:^1.0.0":
- version: 1.7.0
- resolution: "@floating-ui/dom@npm:1.7.0"
- dependencies:
- "@floating-ui/core": "npm:^1.7.0"
- "@floating-ui/utils": "npm:^0.2.9"
- checksum: 10c0/49a7f0fbef82ba2c2f0bde7bb4812b276ae431b59e6a81427283a55cfb36c0af9cc459cbeb0bb1a5cc3efca1a332f584e123e7b1a8f0a9c94a21989b09b8c060
- languageName: node
- linkType: hard
-
-"@floating-ui/react-dom@npm:^2.0.0":
- version: 2.1.2
- resolution: "@floating-ui/react-dom@npm:2.1.2"
- dependencies:
- "@floating-ui/dom": "npm:^1.0.0"
- peerDependencies:
- react: ">=16.8.0"
- react-dom: ">=16.8.0"
- checksum: 10c0/e855131c74e68cab505f7f44f92cd4e2efab1c125796db3116c54c0859323adae4bf697bf292ee83ac77b9335a41ad67852193d7aeace90aa2e1c4a640cafa60
- languageName: node
- linkType: hard
-
-"@floating-ui/utils@npm:^0.2.2, @floating-ui/utils@npm:^0.2.9":
- version: 0.2.9
- resolution: "@floating-ui/utils@npm:0.2.9"
- checksum: 10c0/48bbed10f91cb7863a796cc0d0e917c78d11aeb89f98d03fc38d79e7eb792224a79f538ed8a2d5d5584511d4ca6354ef35f1712659fd569868e342df4398ad6f
- languageName: node
- linkType: hard
-
-"@floating-ui/vue@npm:^1.0.2":
- version: 1.1.6
- resolution: "@floating-ui/vue@npm:1.1.6"
- dependencies:
- "@floating-ui/dom": "npm:^1.0.0"
- "@floating-ui/utils": "npm:^0.2.9"
- vue-demi: "npm:>=0.13.0"
- checksum: 10c0/47111d8ecfff9154006fa074092c94c450fc4c5e70e1834784f063e828ad956c9d9ef5d95473e4e697288adf32d314c454c594df2d8268962a3810138a694cff
- languageName: node
- linkType: hard
-
-"@headlessui/react@npm:^1.7.17":
- version: 1.7.19
- resolution: "@headlessui/react@npm:1.7.19"
- dependencies:
- "@tanstack/react-virtual": "npm:^3.0.0-beta.60"
- client-only: "npm:^0.0.1"
- peerDependencies:
- react: ^16 || ^17 || ^18
- react-dom: ^16 || ^17 || ^18
- checksum: 10c0/c0ece0db6ca15092439177a5322de50b60fa5fd90354ae0f999b3e56abab0065ed54fa7b4b69994ec1bdc23adc6ae9919d7dd57f97922d0b9bb6515d27e3a7e5
- languageName: node
- linkType: hard
-
-"@headlessui/vue@npm:^1.7.20":
- version: 1.7.23
- resolution: "@headlessui/vue@npm:1.7.23"
- dependencies:
- "@tanstack/vue-virtual": "npm:^3.0.0-beta.60"
- peerDependencies:
- vue: ^3.2.0
- checksum: 10c0/6c570ab66ff7b0c2f115ab062dd8a08ce769263f5236422ecb298bfcb3d19d15fc83272d009f3c4159b8da3777ad048bf0ef49e258368096ae3b71085417fe13
- languageName: node
- linkType: hard
-
-"@humanwhocodes/config-array@npm:^0.13.0":
- version: 0.13.0
- resolution: "@humanwhocodes/config-array@npm:0.13.0"
- dependencies:
- "@humanwhocodes/object-schema": "npm:^2.0.3"
- debug: "npm:^4.3.1"
- minimatch: "npm:^3.0.5"
- checksum: 10c0/205c99e756b759f92e1f44a3dc6292b37db199beacba8f26c2165d4051fe73a4ae52fdcfd08ffa93e7e5cb63da7c88648f0e84e197d154bbbbe137b2e0dd332e
- languageName: node
- linkType: hard
-
-"@humanwhocodes/module-importer@npm:^1.0.1":
- version: 1.0.1
- resolution: "@humanwhocodes/module-importer@npm:1.0.1"
- checksum: 10c0/909b69c3b86d482c26b3359db16e46a32e0fb30bd306a3c176b8313b9e7313dba0f37f519de6aa8b0a1921349e505f259d19475e123182416a506d7f87e7f529
- languageName: node
- linkType: hard
-
-"@humanwhocodes/momoa@npm:^3.0.1":
- version: 3.3.8
- resolution: "@humanwhocodes/momoa@npm:3.3.8"
- checksum: 10c0/bb42aa5d9e9cba5348ecbf10a09873d94b8ab2bf3fbec58aada2ff4e3f7a378ee85c5a39879de36af1646c47f0d101c2bee2238ea3704a426f880fbf82c7da16
- languageName: node
- linkType: hard
-
-"@humanwhocodes/object-schema@npm:^2.0.3":
- version: 2.0.3
- resolution: "@humanwhocodes/object-schema@npm:2.0.3"
- checksum: 10c0/80520eabbfc2d32fe195a93557cef50dfe8c8905de447f022675aaf66abc33ae54098f5ea78548d925aa671cd4ab7c7daa5ad704fe42358c9b5e7db60f80696c
- languageName: node
- linkType: hard
-
-"@iconify/types@npm:^2.0.0":
- version: 2.0.0
- resolution: "@iconify/types@npm:2.0.0"
- checksum: 10c0/65a3be43500c7ccacf360e136d00e1717f050b7b91da644e94370256ac66f582d59212bdb30d00788aab4fc078262e91c95b805d1808d654b72f6d2072a7e4b2
- languageName: node
- linkType: hard
-
-"@iconify/utils@npm:^2.1.33":
- version: 2.3.0
- resolution: "@iconify/utils@npm:2.3.0"
- dependencies:
- "@antfu/install-pkg": "npm:^1.0.0"
- "@antfu/utils": "npm:^8.1.0"
- "@iconify/types": "npm:^2.0.0"
- debug: "npm:^4.4.0"
- globals: "npm:^15.14.0"
- kolorist: "npm:^1.8.0"
- local-pkg: "npm:^1.0.0"
- mlly: "npm:^1.7.4"
- checksum: 10c0/926013852cd9d09b8501ee0f3f7d40386dc5ed1cb904869d6502f5ee1a64aee5664e9c00da49d700528d26c4a51ea0cac4f046c4eb281d0f8d54fc5df2f3fd0d
- languageName: node
- linkType: hard
-
-"@img/sharp-darwin-arm64@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-darwin-arm64@npm:0.33.5"
- dependencies:
- "@img/sharp-libvips-darwin-arm64": "npm:1.0.4"
- dependenciesMeta:
- "@img/sharp-libvips-darwin-arm64":
- optional: true
- conditions: os=darwin & cpu=arm64
- languageName: node
- linkType: hard
-
-"@img/sharp-darwin-x64@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-darwin-x64@npm:0.33.5"
- dependencies:
- "@img/sharp-libvips-darwin-x64": "npm:1.0.4"
- dependenciesMeta:
- "@img/sharp-libvips-darwin-x64":
- optional: true
- conditions: os=darwin & cpu=x64
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-darwin-arm64@npm:1.0.4":
- version: 1.0.4
- resolution: "@img/sharp-libvips-darwin-arm64@npm:1.0.4"
- conditions: os=darwin & cpu=arm64
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-darwin-x64@npm:1.0.4":
- version: 1.0.4
- resolution: "@img/sharp-libvips-darwin-x64@npm:1.0.4"
- conditions: os=darwin & cpu=x64
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linux-arm64@npm:1.0.4":
- version: 1.0.4
- resolution: "@img/sharp-libvips-linux-arm64@npm:1.0.4"
- conditions: os=linux & cpu=arm64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linux-arm@npm:1.0.5":
- version: 1.0.5
- resolution: "@img/sharp-libvips-linux-arm@npm:1.0.5"
- conditions: os=linux & cpu=arm & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linux-s390x@npm:1.0.4":
- version: 1.0.4
- resolution: "@img/sharp-libvips-linux-s390x@npm:1.0.4"
- conditions: os=linux & cpu=s390x & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linux-x64@npm:1.0.4":
- version: 1.0.4
- resolution: "@img/sharp-libvips-linux-x64@npm:1.0.4"
- conditions: os=linux & cpu=x64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4":
- version: 1.0.4
- resolution: "@img/sharp-libvips-linuxmusl-arm64@npm:1.0.4"
- conditions: os=linux & cpu=arm64 & libc=musl
- languageName: node
- linkType: hard
-
-"@img/sharp-libvips-linuxmusl-x64@npm:1.0.4":
- version: 1.0.4
- resolution: "@img/sharp-libvips-linuxmusl-x64@npm:1.0.4"
- conditions: os=linux & cpu=x64 & libc=musl
- languageName: node
- linkType: hard
-
-"@img/sharp-linux-arm64@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-linux-arm64@npm:0.33.5"
- dependencies:
- "@img/sharp-libvips-linux-arm64": "npm:1.0.4"
- dependenciesMeta:
- "@img/sharp-libvips-linux-arm64":
- optional: true
- conditions: os=linux & cpu=arm64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-linux-arm@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-linux-arm@npm:0.33.5"
- dependencies:
- "@img/sharp-libvips-linux-arm": "npm:1.0.5"
- dependenciesMeta:
- "@img/sharp-libvips-linux-arm":
- optional: true
- conditions: os=linux & cpu=arm & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-linux-s390x@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-linux-s390x@npm:0.33.5"
- dependencies:
- "@img/sharp-libvips-linux-s390x": "npm:1.0.4"
- dependenciesMeta:
- "@img/sharp-libvips-linux-s390x":
- optional: true
- conditions: os=linux & cpu=s390x & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-linux-x64@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-linux-x64@npm:0.33.5"
- dependencies:
- "@img/sharp-libvips-linux-x64": "npm:1.0.4"
- dependenciesMeta:
- "@img/sharp-libvips-linux-x64":
- optional: true
- conditions: os=linux & cpu=x64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@img/sharp-linuxmusl-arm64@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-linuxmusl-arm64@npm:0.33.5"
- dependencies:
- "@img/sharp-libvips-linuxmusl-arm64": "npm:1.0.4"
- dependenciesMeta:
- "@img/sharp-libvips-linuxmusl-arm64":
- optional: true
- conditions: os=linux & cpu=arm64 & libc=musl
- languageName: node
- linkType: hard
-
-"@img/sharp-linuxmusl-x64@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-linuxmusl-x64@npm:0.33.5"
- dependencies:
- "@img/sharp-libvips-linuxmusl-x64": "npm:1.0.4"
- dependenciesMeta:
- "@img/sharp-libvips-linuxmusl-x64":
- optional: true
- conditions: os=linux & cpu=x64 & libc=musl
- languageName: node
- linkType: hard
-
-"@img/sharp-wasm32@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-wasm32@npm:0.33.5"
- dependencies:
- "@emnapi/runtime": "npm:^1.2.0"
- conditions: cpu=wasm32
- languageName: node
- linkType: hard
-
-"@img/sharp-win32-ia32@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-win32-ia32@npm:0.33.5"
- conditions: os=win32 & cpu=ia32
- languageName: node
- linkType: hard
-
-"@img/sharp-win32-x64@npm:0.33.5":
- version: 0.33.5
- resolution: "@img/sharp-win32-x64@npm:0.33.5"
- conditions: os=win32 & cpu=x64
- languageName: node
- linkType: hard
-
-"@inquirer/figures@npm:^1.0.3":
- version: 1.0.11
- resolution: "@inquirer/figures@npm:1.0.11"
- checksum: 10c0/6270e24eebbe42bbc4e7f8e761e906be66b4896787f31ab3e7484ad271c8edc90bce4ec20e232a5da447aee4fc73803397b2dda8cf645f4f7eea83e773b44e1e
- languageName: node
- linkType: hard
-
-"@isaacs/cliui@npm:^8.0.2":
- version: 8.0.2
- resolution: "@isaacs/cliui@npm:8.0.2"
- dependencies:
- string-width: "npm:^5.1.2"
- string-width-cjs: "npm:string-width@^4.2.0"
- strip-ansi: "npm:^7.0.1"
- strip-ansi-cjs: "npm:strip-ansi@^6.0.1"
- wrap-ansi: "npm:^8.1.0"
- wrap-ansi-cjs: "npm:wrap-ansi@^7.0.0"
- checksum: 10c0/b1bf42535d49f11dc137f18d5e4e63a28c5569de438a221c369483731e9dac9fb797af554e8bf02b6192d1e5eba6e6402cf93900c3d0ac86391d00d04876789e
- languageName: node
- linkType: hard
-
-"@isaacs/fs-minipass@npm:^4.0.0":
- version: 4.0.1
- resolution: "@isaacs/fs-minipass@npm:4.0.1"
- dependencies:
- minipass: "npm:^7.0.4"
- checksum: 10c0/c25b6dc1598790d5b55c0947a9b7d111cfa92594db5296c3b907e2f533c033666f692a3939eadac17b1c7c40d362d0b0635dc874cbfe3e70db7c2b07cc97a5d2
- languageName: node
- linkType: hard
-
-"@jridgewell/gen-mapping@npm:^0.3.2":
- version: 0.3.8
- resolution: "@jridgewell/gen-mapping@npm:0.3.8"
- dependencies:
- "@jridgewell/set-array": "npm:^1.2.1"
- "@jridgewell/sourcemap-codec": "npm:^1.4.10"
- "@jridgewell/trace-mapping": "npm:^0.3.24"
- checksum: 10c0/c668feaf86c501d7c804904a61c23c67447b2137b813b9ce03eca82cb9d65ac7006d766c218685d76e3d72828279b6ee26c347aa1119dab23fbaf36aed51585a
- languageName: node
- linkType: hard
-
-"@jridgewell/resolve-uri@npm:^3.1.0":
- version: 3.1.2
- resolution: "@jridgewell/resolve-uri@npm:3.1.2"
- checksum: 10c0/d502e6fb516b35032331406d4e962c21fe77cdf1cbdb49c6142bcbd9e30507094b18972778a6e27cbad756209cfe34b1a27729e6fa08a2eb92b33943f680cf1e
- languageName: node
- linkType: hard
-
-"@jridgewell/set-array@npm:^1.2.1":
- version: 1.2.1
- resolution: "@jridgewell/set-array@npm:1.2.1"
- checksum: 10c0/2a5aa7b4b5c3464c895c802d8ae3f3d2b92fcbe84ad12f8d0bfbb1f5ad006717e7577ee1fd2eac00c088abe486c7adb27976f45d2941ff6b0b92b2c3302c60f4
- languageName: node
- linkType: hard
-
-"@jridgewell/sourcemap-codec@npm:^1.4.10, @jridgewell/sourcemap-codec@npm:^1.4.14":
- version: 1.5.0
- resolution: "@jridgewell/sourcemap-codec@npm:1.5.0"
- checksum: 10c0/2eb864f276eb1096c3c11da3e9bb518f6d9fc0023c78344cdc037abadc725172c70314bdb360f2d4b7bffec7f5d657ce006816bc5d4ecb35e61b66132db00c18
- languageName: node
- linkType: hard
-
-"@jridgewell/trace-mapping@npm:^0.3.24":
- version: 0.3.25
- resolution: "@jridgewell/trace-mapping@npm:0.3.25"
- dependencies:
- "@jridgewell/resolve-uri": "npm:^3.1.0"
- "@jridgewell/sourcemap-codec": "npm:^1.4.14"
- checksum: 10c0/3d1ce6ebc69df9682a5a8896b414c6537e428a1d68b02fcc8363b04284a8ca0df04d0ee3013132252ab14f2527bc13bea6526a912ecb5658f0e39fd2860b4df4
- languageName: node
- linkType: hard
-
-"@lezer/common@npm:^1.0.0, @lezer/common@npm:^1.0.2, @lezer/common@npm:^1.1.0, @lezer/common@npm:^1.2.0, @lezer/common@npm:^1.2.1":
- version: 1.2.3
- resolution: "@lezer/common@npm:1.2.3"
- checksum: 10c0/fe9f8e111080ef94037a34ca2af1221c8d01c1763ba5ecf708a286185c76119509a5d19d924c8842172716716ddce22d7834394670c4a9432f0ba9f3b7c0f50d
- languageName: node
- linkType: hard
-
-"@lezer/css@npm:^1.1.0, @lezer/css@npm:^1.1.7":
- version: 1.1.11
- resolution: "@lezer/css@npm:1.1.11"
- dependencies:
- "@lezer/common": "npm:^1.2.0"
- "@lezer/highlight": "npm:^1.0.0"
- "@lezer/lr": "npm:^1.0.0"
- checksum: 10c0/88579811f10d73a54e1ef8daa9e3ddd2bbdb4531ae151141a8c1c938659d9c375b5fa46d2a7ab15b2e024f269057d561c57a4f06c758c5aac0918df4482bad7f
- languageName: node
- linkType: hard
-
-"@lezer/highlight@npm:^1.0.0, @lezer/highlight@npm:^1.1.3, @lezer/highlight@npm:^1.2.0":
- version: 1.2.1
- resolution: "@lezer/highlight@npm:1.2.1"
- dependencies:
- "@lezer/common": "npm:^1.0.0"
- checksum: 10c0/51b4c08596a0dfeec6a7b7ed90a7f2743ab42e7e8ff8b89707fd042860e4e133dbd8243639fcaf077305ae6c303aa74e69794015eb16cb34741f5ac6721f283c
- languageName: node
- linkType: hard
-
-"@lezer/html@npm:^1.3.0":
- version: 1.3.10
- resolution: "@lezer/html@npm:1.3.10"
- dependencies:
- "@lezer/common": "npm:^1.2.0"
- "@lezer/highlight": "npm:^1.0.0"
- "@lezer/lr": "npm:^1.0.0"
- checksum: 10c0/a7e782f9e9c5c5ffaa4a6fcf4ea5284e62c8fd3f0d378c86738b57077c002cbb013aeeb8aaae292b9517fea8b959216ce7af053269329962f6df2c7f9c2c8d99
- languageName: node
- linkType: hard
-
-"@lezer/javascript@npm:^1.0.0":
- version: 1.4.21
- resolution: "@lezer/javascript@npm:1.4.21"
- dependencies:
- "@lezer/common": "npm:^1.2.0"
- "@lezer/highlight": "npm:^1.1.3"
- "@lezer/lr": "npm:^1.3.0"
- checksum: 10c0/ddbfee18aa87f6bffd3ac255b96c9e9ab61c9d44adfaba08c538e742e7264ecf6a238d253214d3330420d341a826f193232a9d4454126e75854e2bea2cbb703c
- languageName: node
- linkType: hard
-
-"@lezer/json@npm:^1.0.0":
- version: 1.0.3
- resolution: "@lezer/json@npm:1.0.3"
- dependencies:
- "@lezer/common": "npm:^1.2.0"
- "@lezer/highlight": "npm:^1.0.0"
- "@lezer/lr": "npm:^1.0.0"
- checksum: 10c0/e91c957cc0825e927b55fbcd233d7ee0b39f9c2a89d9475489f394b7eba2b59e5f480d157a12d5cd6ae6f14bc99f9ccd8e8113baad498199ef1b13c49105f546
- languageName: node
- linkType: hard
-
-"@lezer/lr@npm:^1.0.0, @lezer/lr@npm:^1.3.0, @lezer/lr@npm:^1.4.0":
- version: 1.4.2
- resolution: "@lezer/lr@npm:1.4.2"
- dependencies:
- "@lezer/common": "npm:^1.0.0"
- checksum: 10c0/22bb5d0d4b33d0de5eb0706b7e5b5f2d20f570e112d9110009bd35b62ff10f2eb4eff8da4cf373dd4ddf5e06a304120b8f039add7ed9997c981c13945d5329cd
- languageName: node
- linkType: hard
-
-"@lezer/yaml@npm:^1.0.0":
- version: 1.0.3
- resolution: "@lezer/yaml@npm:1.0.3"
- dependencies:
- "@lezer/common": "npm:^1.2.0"
- "@lezer/highlight": "npm:^1.0.0"
- "@lezer/lr": "npm:^1.4.0"
- checksum: 10c0/cef3d0c0a2c48a7e0f36ccc0af948da9394d17b164dcbaf0187d9b472fd4f628b3107d7a4041045181488f1966a94ae65640c932fc8d3bf8c3597813cfb86ae0
- languageName: node
- linkType: hard
-
-"@marijn/find-cluster-break@npm:^1.0.0":
- version: 1.0.2
- resolution: "@marijn/find-cluster-break@npm:1.0.2"
- checksum: 10c0/1a17a60b16083cc5f7ce89d7b7d8aa87ce4099723e3e9e34e229ef2cd8a980e69d481ca8ee90ffedfec5119af1aed581642fb60ed0365e7e90634c81ea6b630f
- languageName: node
- linkType: hard
-
-"@mdx-js/mdx@npm:^2.2.1, @mdx-js/mdx@npm:^2.3.0":
- version: 2.3.0
- resolution: "@mdx-js/mdx@npm:2.3.0"
- dependencies:
- "@types/estree-jsx": "npm:^1.0.0"
- "@types/mdx": "npm:^2.0.0"
- estree-util-build-jsx: "npm:^2.0.0"
- estree-util-is-identifier-name: "npm:^2.0.0"
- estree-util-to-js: "npm:^1.1.0"
- estree-walker: "npm:^3.0.0"
- hast-util-to-estree: "npm:^2.0.0"
- markdown-extensions: "npm:^1.0.0"
- periscopic: "npm:^3.0.0"
- remark-mdx: "npm:^2.0.0"
- remark-parse: "npm:^10.0.0"
- remark-rehype: "npm:^10.0.0"
- unified: "npm:^10.0.0"
- unist-util-position-from-estree: "npm:^1.0.0"
- unist-util-stringify-position: "npm:^3.0.0"
- unist-util-visit: "npm:^4.0.0"
- vfile: "npm:^5.0.0"
- checksum: 10c0/719384d8e72abd3e83aa2fd3010394636e32cc0e5e286b6414427ef03121397586ce97ec816afcc4d2b22ba65939c3801a8198e04cf921dd597c0aa9fd75dbb4
- languageName: node
- linkType: hard
-
-"@mdx-js/react@npm:^2.2.1, @mdx-js/react@npm:^2.3.0":
- version: 2.3.0
- resolution: "@mdx-js/react@npm:2.3.0"
- dependencies:
- "@types/mdx": "npm:^2.0.0"
- "@types/react": "npm:>=16"
- peerDependencies:
- react: ">=16"
- checksum: 10c0/6d647115703dbe258f7fe372499fa8c6fe17a053ff0f2a208111c9973a71ae738a0ed376770445d39194d217e00e1a015644b24f32c2f7cb4f57988de0649b15
- languageName: node
- linkType: hard
-
-"@mermaid-js/parser@npm:^0.6.2":
- version: 0.6.2
- resolution: "@mermaid-js/parser@npm:0.6.2"
- dependencies:
- langium: "npm:3.3.1"
- checksum: 10c0/6059341a5dc3fdf56dd75c858843154e18c582e5cc41c3e73e9a076e218116c6bdbdba729d27154cef61430c900d87342423bbb81e37d8a9968c6c2fdd99e87a
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-android-arm-eabi@npm:0.1.19":
- version: 0.1.19
- resolution: "@napi-rs/simple-git-android-arm-eabi@npm:0.1.19"
- conditions: os=android & cpu=arm
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-android-arm64@npm:0.1.19":
- version: 0.1.19
- resolution: "@napi-rs/simple-git-android-arm64@npm:0.1.19"
- conditions: os=android & cpu=arm64
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-darwin-arm64@npm:0.1.19":
- version: 0.1.19
- resolution: "@napi-rs/simple-git-darwin-arm64@npm:0.1.19"
- conditions: os=darwin & cpu=arm64
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-darwin-x64@npm:0.1.19":
- version: 0.1.19
- resolution: "@napi-rs/simple-git-darwin-x64@npm:0.1.19"
- conditions: os=darwin & cpu=x64
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-freebsd-x64@npm:0.1.19":
- version: 0.1.19
- resolution: "@napi-rs/simple-git-freebsd-x64@npm:0.1.19"
- conditions: os=freebsd & cpu=x64
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-linux-arm-gnueabihf@npm:0.1.19":
- version: 0.1.19
- resolution: "@napi-rs/simple-git-linux-arm-gnueabihf@npm:0.1.19"
- conditions: os=linux & cpu=arm
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-linux-arm64-gnu@npm:0.1.19":
- version: 0.1.19
- resolution: "@napi-rs/simple-git-linux-arm64-gnu@npm:0.1.19"
- conditions: os=linux & cpu=arm64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-linux-arm64-musl@npm:0.1.19":
- version: 0.1.19
- resolution: "@napi-rs/simple-git-linux-arm64-musl@npm:0.1.19"
- conditions: os=linux & cpu=arm64 & libc=musl
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-linux-powerpc64le-gnu@npm:0.1.19":
- version: 0.1.19
- resolution: "@napi-rs/simple-git-linux-powerpc64le-gnu@npm:0.1.19"
- conditions: os=linux & cpu=powerpc64le & libc=glibc
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-linux-s390x-gnu@npm:0.1.19":
- version: 0.1.19
- resolution: "@napi-rs/simple-git-linux-s390x-gnu@npm:0.1.19"
- conditions: os=linux & cpu=s390x & libc=glibc
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-linux-x64-gnu@npm:0.1.19":
- version: 0.1.19
- resolution: "@napi-rs/simple-git-linux-x64-gnu@npm:0.1.19"
- conditions: os=linux & cpu=x64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-linux-x64-musl@npm:0.1.19":
- version: 0.1.19
- resolution: "@napi-rs/simple-git-linux-x64-musl@npm:0.1.19"
- conditions: os=linux & cpu=x64 & libc=musl
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-win32-arm64-msvc@npm:0.1.19":
- version: 0.1.19
- resolution: "@napi-rs/simple-git-win32-arm64-msvc@npm:0.1.19"
- conditions: os=win32 & cpu=arm64
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git-win32-x64-msvc@npm:0.1.19":
- version: 0.1.19
- resolution: "@napi-rs/simple-git-win32-x64-msvc@npm:0.1.19"
- conditions: os=win32 & cpu=x64
- languageName: node
- linkType: hard
-
-"@napi-rs/simple-git@npm:^0.1.9":
- version: 0.1.19
- resolution: "@napi-rs/simple-git@npm:0.1.19"
- dependencies:
- "@napi-rs/simple-git-android-arm-eabi": "npm:0.1.19"
- "@napi-rs/simple-git-android-arm64": "npm:0.1.19"
- "@napi-rs/simple-git-darwin-arm64": "npm:0.1.19"
- "@napi-rs/simple-git-darwin-x64": "npm:0.1.19"
- "@napi-rs/simple-git-freebsd-x64": "npm:0.1.19"
- "@napi-rs/simple-git-linux-arm-gnueabihf": "npm:0.1.19"
- "@napi-rs/simple-git-linux-arm64-gnu": "npm:0.1.19"
- "@napi-rs/simple-git-linux-arm64-musl": "npm:0.1.19"
- "@napi-rs/simple-git-linux-powerpc64le-gnu": "npm:0.1.19"
- "@napi-rs/simple-git-linux-s390x-gnu": "npm:0.1.19"
- "@napi-rs/simple-git-linux-x64-gnu": "npm:0.1.19"
- "@napi-rs/simple-git-linux-x64-musl": "npm:0.1.19"
- "@napi-rs/simple-git-win32-arm64-msvc": "npm:0.1.19"
- "@napi-rs/simple-git-win32-x64-msvc": "npm:0.1.19"
- dependenciesMeta:
- "@napi-rs/simple-git-android-arm-eabi":
- optional: true
- "@napi-rs/simple-git-android-arm64":
- optional: true
- "@napi-rs/simple-git-darwin-arm64":
- optional: true
- "@napi-rs/simple-git-darwin-x64":
- optional: true
- "@napi-rs/simple-git-freebsd-x64":
- optional: true
- "@napi-rs/simple-git-linux-arm-gnueabihf":
- optional: true
- "@napi-rs/simple-git-linux-arm64-gnu":
- optional: true
- "@napi-rs/simple-git-linux-arm64-musl":
- optional: true
- "@napi-rs/simple-git-linux-powerpc64le-gnu":
- optional: true
- "@napi-rs/simple-git-linux-s390x-gnu":
- optional: true
- "@napi-rs/simple-git-linux-x64-gnu":
- optional: true
- "@napi-rs/simple-git-linux-x64-musl":
- optional: true
- "@napi-rs/simple-git-win32-arm64-msvc":
- optional: true
- "@napi-rs/simple-git-win32-x64-msvc":
- optional: true
- checksum: 10c0/b8088c2a21c4f8ce5bee69933c23efba16738eb07b58a44e6c1eac042770f1b6f6687bfc3cb98e8ef5f2dbd29754e37678743fdf5a0e0c3ffcfaef165a86a895
- languageName: node
- linkType: hard
-
-"@napi-rs/wasm-runtime@npm:^0.2.9":
- version: 0.2.9
- resolution: "@napi-rs/wasm-runtime@npm:0.2.9"
- dependencies:
- "@emnapi/core": "npm:^1.4.0"
- "@emnapi/runtime": "npm:^1.4.0"
- "@tybys/wasm-util": "npm:^0.9.0"
- checksum: 10c0/1cc40b854b255f84e12ade634456ba489f6bf90659ef8164a16823c515c294024c96ee2bb81ab51f35493ba9496f62842b960f915dbdcdc1791f221f989e9e59
- languageName: node
- linkType: hard
-
-"@next/env@npm:14.2.28":
- version: 14.2.28
- resolution: "@next/env@npm:14.2.28"
- checksum: 10c0/edf665a7bfb14a5e74e40bad8355e4d72f2c86d5698fc541b03b42e719e57c8db1ba37fa615228954519689bed5add2c271f3e6caaa197d894471763cfbc88ee
- languageName: node
- linkType: hard
-
-"@next/env@npm:^13.4.3":
- version: 13.5.8
- resolution: "@next/env@npm:13.5.8"
- checksum: 10c0/49a19f0b114fb86f0fdedba57159a4d08fec673eba75ba081406978f3dbe80403ba645704a6dbc496a0fcf3fb08a8fd9ed76a09aeb5f04dd0d810b3546e66d40
- languageName: node
- linkType: hard
-
-"@next/eslint-plugin-next@npm:14.1.4":
- version: 14.1.4
- resolution: "@next/eslint-plugin-next@npm:14.1.4"
- dependencies:
- glob: "npm:10.3.10"
- checksum: 10c0/fb49237153bf528ef3939e1ceae0f658e44abcf0ca155d8042c7961f523e4d9aeba3de18532b633734f3b5524b644e9c3c5187089e0d400896c1c35812bbbdd3
- languageName: node
- linkType: hard
-
-"@next/swc-darwin-arm64@npm:14.2.28":
- version: 14.2.28
- resolution: "@next/swc-darwin-arm64@npm:14.2.28"
- conditions: os=darwin & cpu=arm64
- languageName: node
- linkType: hard
-
-"@next/swc-darwin-x64@npm:14.2.28":
- version: 14.2.28
- resolution: "@next/swc-darwin-x64@npm:14.2.28"
- conditions: os=darwin & cpu=x64
- languageName: node
- linkType: hard
-
-"@next/swc-linux-arm64-gnu@npm:14.2.28":
- version: 14.2.28
- resolution: "@next/swc-linux-arm64-gnu@npm:14.2.28"
- conditions: os=linux & cpu=arm64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@next/swc-linux-arm64-musl@npm:14.2.28":
- version: 14.2.28
- resolution: "@next/swc-linux-arm64-musl@npm:14.2.28"
- conditions: os=linux & cpu=arm64 & libc=musl
- languageName: node
- linkType: hard
-
-"@next/swc-linux-x64-gnu@npm:14.2.28":
- version: 14.2.28
- resolution: "@next/swc-linux-x64-gnu@npm:14.2.28"
- conditions: os=linux & cpu=x64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@next/swc-linux-x64-musl@npm:14.2.28":
- version: 14.2.28
- resolution: "@next/swc-linux-x64-musl@npm:14.2.28"
- conditions: os=linux & cpu=x64 & libc=musl
- languageName: node
- linkType: hard
-
-"@next/swc-win32-arm64-msvc@npm:14.2.28":
- version: 14.2.28
- resolution: "@next/swc-win32-arm64-msvc@npm:14.2.28"
- conditions: os=win32 & cpu=arm64
- languageName: node
- linkType: hard
-
-"@next/swc-win32-ia32-msvc@npm:14.2.28":
- version: 14.2.28
- resolution: "@next/swc-win32-ia32-msvc@npm:14.2.28"
- conditions: os=win32 & cpu=ia32
- languageName: node
- linkType: hard
-
-"@next/swc-win32-x64-msvc@npm:14.2.28":
- version: 14.2.28
- resolution: "@next/swc-win32-x64-msvc@npm:14.2.28"
- conditions: os=win32 & cpu=x64
- languageName: node
- linkType: hard
-
-"@next/third-parties@npm:^14.1.4":
- version: 14.2.28
- resolution: "@next/third-parties@npm:14.2.28"
- dependencies:
- third-party-capital: "npm:1.0.20"
- peerDependencies:
- next: ^13.0.0 || ^14.0.0
- react: ^18.2.0
- checksum: 10c0/52d9b9ad2b2a8381126ceb29b935df6d1cc2beb9e4198abfc8f9f7ac980c153b91e831d6beed068f5dd03e747ee6b07fc5adb093bc778caae6124ea97e914501
- languageName: node
- linkType: hard
-
-"@nodelib/fs.scandir@npm:2.1.5":
- version: 2.1.5
- resolution: "@nodelib/fs.scandir@npm:2.1.5"
- dependencies:
- "@nodelib/fs.stat": "npm:2.0.5"
- run-parallel: "npm:^1.1.9"
- checksum: 10c0/732c3b6d1b1e967440e65f284bd06e5821fedf10a1bea9ed2bb75956ea1f30e08c44d3def9d6a230666574edbaf136f8cfd319c14fd1f87c66e6a44449afb2eb
- languageName: node
- linkType: hard
-
-"@nodelib/fs.stat@npm:2.0.5, @nodelib/fs.stat@npm:^2.0.2":
- version: 2.0.5
- resolution: "@nodelib/fs.stat@npm:2.0.5"
- checksum: 10c0/88dafe5e3e29a388b07264680dc996c17f4bda48d163a9d4f5c1112979f0ce8ec72aa7116122c350b4e7976bc5566dc3ddb579be1ceaacc727872eb4ed93926d
- languageName: node
- linkType: hard
-
-"@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8":
- version: 1.2.8
- resolution: "@nodelib/fs.walk@npm:1.2.8"
- dependencies:
- "@nodelib/fs.scandir": "npm:2.1.5"
- fastq: "npm:^1.6.0"
- checksum: 10c0/db9de047c3bb9b51f9335a7bb46f4fcfb6829fb628318c12115fbaf7d369bfce71c15b103d1fc3b464812d936220ee9bc1c8f762d032c9f6be9acc99249095b1
- languageName: node
- linkType: hard
-
-"@nolyfill/is-core-module@npm:1.0.39":
- version: 1.0.39
- resolution: "@nolyfill/is-core-module@npm:1.0.39"
- checksum: 10c0/34ab85fdc2e0250879518841f74a30c276bca4f6c3e13526d2d1fe515e1adf6d46c25fcd5989d22ea056d76f7c39210945180b4859fc83b050e2da411aa86289
- languageName: node
- linkType: hard
-
-"@npmcli/agent@npm:^3.0.0":
- version: 3.0.0
- resolution: "@npmcli/agent@npm:3.0.0"
- dependencies:
- agent-base: "npm:^7.1.0"
- http-proxy-agent: "npm:^7.0.0"
- https-proxy-agent: "npm:^7.0.1"
- lru-cache: "npm:^10.0.1"
- socks-proxy-agent: "npm:^8.0.3"
- checksum: 10c0/efe37b982f30740ee77696a80c196912c274ecd2cb243bc6ae7053a50c733ce0f6c09fda085145f33ecf453be19654acca74b69e81eaad4c90f00ccffe2f9271
- languageName: node
- linkType: hard
-
-"@npmcli/fs@npm:^4.0.0":
- version: 4.0.0
- resolution: "@npmcli/fs@npm:4.0.0"
- dependencies:
- semver: "npm:^7.3.5"
- checksum: 10c0/c90935d5ce670c87b6b14fab04a965a3b8137e585f8b2a6257263bd7f97756dd736cb165bb470e5156a9e718ecd99413dccc54b1138c1a46d6ec7cf325982fe5
- languageName: node
- linkType: hard
-
-"@parcel/watcher-android-arm64@npm:2.5.1":
- version: 2.5.1
- resolution: "@parcel/watcher-android-arm64@npm:2.5.1"
- conditions: os=android & cpu=arm64
- languageName: node
- linkType: hard
-
-"@parcel/watcher-darwin-arm64@npm:2.5.1":
- version: 2.5.1
- resolution: "@parcel/watcher-darwin-arm64@npm:2.5.1"
- conditions: os=darwin & cpu=arm64
- languageName: node
- linkType: hard
-
-"@parcel/watcher-darwin-x64@npm:2.5.1":
- version: 2.5.1
- resolution: "@parcel/watcher-darwin-x64@npm:2.5.1"
- conditions: os=darwin & cpu=x64
- languageName: node
- linkType: hard
-
-"@parcel/watcher-freebsd-x64@npm:2.5.1":
- version: 2.5.1
- resolution: "@parcel/watcher-freebsd-x64@npm:2.5.1"
- conditions: os=freebsd & cpu=x64
- languageName: node
- linkType: hard
-
-"@parcel/watcher-linux-arm-glibc@npm:2.5.1":
- version: 2.5.1
- resolution: "@parcel/watcher-linux-arm-glibc@npm:2.5.1"
- conditions: os=linux & cpu=arm & libc=glibc
- languageName: node
- linkType: hard
-
-"@parcel/watcher-linux-arm-musl@npm:2.5.1":
- version: 2.5.1
- resolution: "@parcel/watcher-linux-arm-musl@npm:2.5.1"
- conditions: os=linux & cpu=arm & libc=musl
- languageName: node
- linkType: hard
-
-"@parcel/watcher-linux-arm64-glibc@npm:2.5.1":
- version: 2.5.1
- resolution: "@parcel/watcher-linux-arm64-glibc@npm:2.5.1"
- conditions: os=linux & cpu=arm64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@parcel/watcher-linux-arm64-musl@npm:2.5.1":
- version: 2.5.1
- resolution: "@parcel/watcher-linux-arm64-musl@npm:2.5.1"
- conditions: os=linux & cpu=arm64 & libc=musl
- languageName: node
- linkType: hard
-
-"@parcel/watcher-linux-x64-glibc@npm:2.5.1":
- version: 2.5.1
- resolution: "@parcel/watcher-linux-x64-glibc@npm:2.5.1"
- conditions: os=linux & cpu=x64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@parcel/watcher-linux-x64-musl@npm:2.5.1":
- version: 2.5.1
- resolution: "@parcel/watcher-linux-x64-musl@npm:2.5.1"
- conditions: os=linux & cpu=x64 & libc=musl
- languageName: node
- linkType: hard
-
-"@parcel/watcher-win32-arm64@npm:2.5.1":
- version: 2.5.1
- resolution: "@parcel/watcher-win32-arm64@npm:2.5.1"
- conditions: os=win32 & cpu=arm64
- languageName: node
- linkType: hard
-
-"@parcel/watcher-win32-ia32@npm:2.5.1":
- version: 2.5.1
- resolution: "@parcel/watcher-win32-ia32@npm:2.5.1"
- conditions: os=win32 & cpu=ia32
- languageName: node
- linkType: hard
-
-"@parcel/watcher-win32-x64@npm:2.5.1":
- version: 2.5.1
- resolution: "@parcel/watcher-win32-x64@npm:2.5.1"
- conditions: os=win32 & cpu=x64
- languageName: node
- linkType: hard
-
-"@parcel/watcher@npm:^2.4.1":
- version: 2.5.1
- resolution: "@parcel/watcher@npm:2.5.1"
- dependencies:
- "@parcel/watcher-android-arm64": "npm:2.5.1"
- "@parcel/watcher-darwin-arm64": "npm:2.5.1"
- "@parcel/watcher-darwin-x64": "npm:2.5.1"
- "@parcel/watcher-freebsd-x64": "npm:2.5.1"
- "@parcel/watcher-linux-arm-glibc": "npm:2.5.1"
- "@parcel/watcher-linux-arm-musl": "npm:2.5.1"
- "@parcel/watcher-linux-arm64-glibc": "npm:2.5.1"
- "@parcel/watcher-linux-arm64-musl": "npm:2.5.1"
- "@parcel/watcher-linux-x64-glibc": "npm:2.5.1"
- "@parcel/watcher-linux-x64-musl": "npm:2.5.1"
- "@parcel/watcher-win32-arm64": "npm:2.5.1"
- "@parcel/watcher-win32-ia32": "npm:2.5.1"
- "@parcel/watcher-win32-x64": "npm:2.5.1"
- detect-libc: "npm:^1.0.3"
- is-glob: "npm:^4.0.3"
- micromatch: "npm:^4.0.5"
- node-addon-api: "npm:^7.0.0"
- node-gyp: "npm:latest"
- dependenciesMeta:
- "@parcel/watcher-android-arm64":
- optional: true
- "@parcel/watcher-darwin-arm64":
- optional: true
- "@parcel/watcher-darwin-x64":
- optional: true
- "@parcel/watcher-freebsd-x64":
- optional: true
- "@parcel/watcher-linux-arm-glibc":
- optional: true
- "@parcel/watcher-linux-arm-musl":
- optional: true
- "@parcel/watcher-linux-arm64-glibc":
- optional: true
- "@parcel/watcher-linux-arm64-musl":
- optional: true
- "@parcel/watcher-linux-x64-glibc":
- optional: true
- "@parcel/watcher-linux-x64-musl":
- optional: true
- "@parcel/watcher-win32-arm64":
- optional: true
- "@parcel/watcher-win32-ia32":
- optional: true
- "@parcel/watcher-win32-x64":
- optional: true
- checksum: 10c0/8f35073d0c0b34a63d4c8d2213482f0ebc6a25de7b2cdd415d19cb929964a793cb285b68d1d50bfb732b070b3c82a2fdb4eb9c250eab709a1cd9d63345455a82
- languageName: node
- linkType: hard
-
-"@pkgjs/parseargs@npm:^0.11.0":
- version: 0.11.0
- resolution: "@pkgjs/parseargs@npm:0.11.0"
- checksum: 10c0/5bd7576bb1b38a47a7fc7b51ac9f38748e772beebc56200450c4a817d712232b8f1d3ef70532c80840243c657d491cf6a6be1e3a214cff907645819fdc34aadd
- languageName: node
- linkType: hard
-
-"@popperjs/core@npm:^2.11.8":
- version: 2.11.8
- resolution: "@popperjs/core@npm:2.11.8"
- checksum: 10c0/4681e682abc006d25eb380d0cf3efc7557043f53b6aea7a5057d0d1e7df849a00e281cd8ea79c902a35a414d7919621fc2ba293ecec05f413598e0b23d5a1e63
- languageName: node
- linkType: hard
-
-"@radix-ui/primitive@npm:1.1.2":
- version: 1.1.2
- resolution: "@radix-ui/primitive@npm:1.1.2"
- checksum: 10c0/5e2d2528d2fe37c16865e77b0beaac2b415a817ad13d8178db6e8187b2a092672568a64ee0041510abfde3034490a5cadd3057049bb15789020c06892047597c
- languageName: node
- linkType: hard
-
-"@radix-ui/react-arrow@npm:1.1.6":
- version: 1.1.6
- resolution: "@radix-ui/react-arrow@npm:1.1.6"
- dependencies:
- "@radix-ui/react-primitive": "npm:2.1.2"
- peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- "@types/react-dom":
- optional: true
- checksum: 10c0/7a17b719d38e9013dc9e7eafd24786d3bc890d84fa5f092a567d014429a26d3c10777ae41db6dc080980d9f8b3bad2d625ce6e0a370cf533da59607d97e45757
- languageName: node
- linkType: hard
-
-"@radix-ui/react-compose-refs@npm:1.1.2":
- version: 1.1.2
- resolution: "@radix-ui/react-compose-refs@npm:1.1.2"
- peerDependencies:
- "@types/react": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/d36a9c589eb75d634b9b139c80f916aadaf8a68a7c1c4b8c6c6b88755af1a92f2e343457042089f04cc3f23073619d08bb65419ced1402e9d4e299576d970771
- languageName: node
- linkType: hard
-
-"@radix-ui/react-context@npm:1.1.2":
- version: 1.1.2
- resolution: "@radix-ui/react-context@npm:1.1.2"
- peerDependencies:
- "@types/react": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/cece731f8cc25d494c6589cc681e5c01a93867d895c75889973afa1a255f163c286e390baa7bc028858eaabe9f6b57270d0ca6377356f652c5557c1c7a41ccce
- languageName: node
- linkType: hard
-
-"@radix-ui/react-dialog@npm:^1.0.5":
- version: 1.1.13
- resolution: "@radix-ui/react-dialog@npm:1.1.13"
- dependencies:
- "@radix-ui/primitive": "npm:1.1.2"
- "@radix-ui/react-compose-refs": "npm:1.1.2"
- "@radix-ui/react-context": "npm:1.1.2"
- "@radix-ui/react-dismissable-layer": "npm:1.1.9"
- "@radix-ui/react-focus-guards": "npm:1.1.2"
- "@radix-ui/react-focus-scope": "npm:1.1.6"
- "@radix-ui/react-id": "npm:1.1.1"
- "@radix-ui/react-portal": "npm:1.1.8"
- "@radix-ui/react-presence": "npm:1.1.4"
- "@radix-ui/react-primitive": "npm:2.1.2"
- "@radix-ui/react-slot": "npm:1.2.2"
- "@radix-ui/react-use-controllable-state": "npm:1.2.2"
- aria-hidden: "npm:^1.2.4"
- react-remove-scroll: "npm:^2.6.3"
- peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- "@types/react-dom":
- optional: true
- checksum: 10c0/7a5c2ca98eb5a4de8028e4f284790d2db470af6a814a6cb7bd20a6841c1ab8ec98f3a089e952cff9ed7c83be8cad4f99143bd1f037712dba080baac9013baadb
- languageName: node
- linkType: hard
-
-"@radix-ui/react-dismissable-layer@npm:1.1.9":
- version: 1.1.9
- resolution: "@radix-ui/react-dismissable-layer@npm:1.1.9"
- dependencies:
- "@radix-ui/primitive": "npm:1.1.2"
- "@radix-ui/react-compose-refs": "npm:1.1.2"
- "@radix-ui/react-primitive": "npm:2.1.2"
- "@radix-ui/react-use-callback-ref": "npm:1.1.1"
- "@radix-ui/react-use-escape-keydown": "npm:1.1.1"
- peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- "@types/react-dom":
- optional: true
- checksum: 10c0/945332ce097e86ac6904b12012ac9c4bb8b539688752f43c25de911fce2dd68b4f0a45b31df6eb8d038246ec0be897af988fef90ad9e12db126e93736dfa8b76
- languageName: node
- linkType: hard
-
-"@radix-ui/react-focus-guards@npm:1.1.2":
- version: 1.1.2
- resolution: "@radix-ui/react-focus-guards@npm:1.1.2"
- peerDependencies:
- "@types/react": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/8d6fa55752b9b6e55d1eebb643178e38a824e8ba418eb29031b2979077a12c4e3922892de9f984dd326f77071a14960cd81e99a960beea07598b8c80da618dc5
- languageName: node
- linkType: hard
-
-"@radix-ui/react-focus-scope@npm:1.1.6":
- version: 1.1.6
- resolution: "@radix-ui/react-focus-scope@npm:1.1.6"
- dependencies:
- "@radix-ui/react-compose-refs": "npm:1.1.2"
- "@radix-ui/react-primitive": "npm:2.1.2"
- "@radix-ui/react-use-callback-ref": "npm:1.1.1"
- peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- "@types/react-dom":
- optional: true
- checksum: 10c0/c4a3d12e2c45908113e3a2b9bd59666c2bcc40bde611133a5d67c8d248ddd7bfdfee66c7150dceb1acc6b894ebd44da1b08fab116bbf00fb7bb047be1ec0ec8d
- languageName: node
- linkType: hard
-
-"@radix-ui/react-icons@npm:^1.3.0":
- version: 1.3.2
- resolution: "@radix-ui/react-icons@npm:1.3.2"
- peerDependencies:
- react: ^16.x || ^17.x || ^18.x || ^19.0.0 || ^19.0.0-rc
- checksum: 10c0/3a380c7ae47e330ebd8ab4846729a543b4a0be5ecb1e2a7a571f4394728ff7d428b01f6620128051b6b69d63138a0ab8de77af78221ec364fbc5d126acf55b4a
- languageName: node
- linkType: hard
-
-"@radix-ui/react-id@npm:1.1.1":
- version: 1.1.1
- resolution: "@radix-ui/react-id@npm:1.1.1"
- dependencies:
- "@radix-ui/react-use-layout-effect": "npm:1.1.1"
- peerDependencies:
- "@types/react": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/7d12e76818763d592c331277ef62b197e2e64945307e650bd058f0090e5ae48bbd07691b23b7e9e977901ef4eadcb3e2d5eaeb17a13859083384be83fc1292c7
- languageName: node
- linkType: hard
-
-"@radix-ui/react-popper@npm:1.2.6":
- version: 1.2.6
- resolution: "@radix-ui/react-popper@npm:1.2.6"
- dependencies:
- "@floating-ui/react-dom": "npm:^2.0.0"
- "@radix-ui/react-arrow": "npm:1.1.6"
- "@radix-ui/react-compose-refs": "npm:1.1.2"
- "@radix-ui/react-context": "npm:1.1.2"
- "@radix-ui/react-primitive": "npm:2.1.2"
- "@radix-ui/react-use-callback-ref": "npm:1.1.1"
- "@radix-ui/react-use-layout-effect": "npm:1.1.1"
- "@radix-ui/react-use-rect": "npm:1.1.1"
- "@radix-ui/react-use-size": "npm:1.1.1"
- "@radix-ui/rect": "npm:1.1.1"
- peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- "@types/react-dom":
- optional: true
- checksum: 10c0/b166c609a9475ffcdc65a0fd4bb9cf2cd67e7d24240dba9b954ec97496970783966e5e9f52cf9b12aff363d24f5112970e80813cf0eb8d4a1d989afdad59e0d8
- languageName: node
- linkType: hard
-
-"@radix-ui/react-portal@npm:1.1.8":
- version: 1.1.8
- resolution: "@radix-ui/react-portal@npm:1.1.8"
- dependencies:
- "@radix-ui/react-primitive": "npm:2.1.2"
- "@radix-ui/react-use-layout-effect": "npm:1.1.1"
- peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- "@types/react-dom":
- optional: true
- checksum: 10c0/53590f70a2b0280cab07cb1354d0061889ecff06f04f2518ef562a30b7cea67093a1d4e2d58a6338e8d004646dd72e1211a2d47e3e0b3fc2d77317d79187d2f2
- languageName: node
- linkType: hard
-
-"@radix-ui/react-presence@npm:1.1.4":
- version: 1.1.4
- resolution: "@radix-ui/react-presence@npm:1.1.4"
- dependencies:
- "@radix-ui/react-compose-refs": "npm:1.1.2"
- "@radix-ui/react-use-layout-effect": "npm:1.1.1"
- peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- "@types/react-dom":
- optional: true
- checksum: 10c0/8202647139d6f5097b0abcc43dfba471c00b69da95ca336afe3ea23a165e05ca21992f40fc801760fe442f3e064e54e2f2cbcb9ad758c4b07ef6c69a5b6777bd
- languageName: node
- linkType: hard
-
-"@radix-ui/react-primitive@npm:2.1.2":
- version: 2.1.2
- resolution: "@radix-ui/react-primitive@npm:2.1.2"
- dependencies:
- "@radix-ui/react-slot": "npm:1.2.2"
- peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- "@types/react-dom":
- optional: true
- checksum: 10c0/0c1b4b5d2f225dc85e02a915b362e38383eb3bd6d150a72cb9183485c066156caad1a9f530202b84a5ad900d365302c0843fdcabb13100808872b3655709099d
- languageName: node
- linkType: hard
-
-"@radix-ui/react-slot@npm:1.2.2":
- version: 1.2.2
- resolution: "@radix-ui/react-slot@npm:1.2.2"
- dependencies:
- "@radix-ui/react-compose-refs": "npm:1.1.2"
- peerDependencies:
- "@types/react": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/74489f5ad11b17444560a1cdd664c01308206ce5cb9fcd46121b45281ece20273948479711411223c1081f709c15409242d51ca6cc57ff81f6335d70e0cbe0b5
- languageName: node
- linkType: hard
-
-"@radix-ui/react-tooltip@npm:^1.0.7":
- version: 1.2.6
- resolution: "@radix-ui/react-tooltip@npm:1.2.6"
- dependencies:
- "@radix-ui/primitive": "npm:1.1.2"
- "@radix-ui/react-compose-refs": "npm:1.1.2"
- "@radix-ui/react-context": "npm:1.1.2"
- "@radix-ui/react-dismissable-layer": "npm:1.1.9"
- "@radix-ui/react-id": "npm:1.1.1"
- "@radix-ui/react-popper": "npm:1.2.6"
- "@radix-ui/react-portal": "npm:1.1.8"
- "@radix-ui/react-presence": "npm:1.1.4"
- "@radix-ui/react-primitive": "npm:2.1.2"
- "@radix-ui/react-slot": "npm:1.2.2"
- "@radix-ui/react-use-controllable-state": "npm:1.2.2"
- "@radix-ui/react-visually-hidden": "npm:1.2.2"
- peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- "@types/react-dom":
- optional: true
- checksum: 10c0/cbd16d8bc9dedabce9327a4588d0eb3381d4af70681c124d74549b3abe41e51dd14f54dad649f4ed7ade742446cf76df9f732faaebe922947f6ce043de7010ac
- languageName: node
- linkType: hard
-
-"@radix-ui/react-use-callback-ref@npm:1.1.1":
- version: 1.1.1
- resolution: "@radix-ui/react-use-callback-ref@npm:1.1.1"
- peerDependencies:
- "@types/react": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/5f6aff8592dea6a7e46589808912aba3fb3b626cf6edd2b14f01638b61dbbe49eeb9f67cd5601f4c15b2fb547b9a7e825f7c4961acd4dd70176c969ae405f8d8
- languageName: node
- linkType: hard
-
-"@radix-ui/react-use-controllable-state@npm:1.2.2":
- version: 1.2.2
- resolution: "@radix-ui/react-use-controllable-state@npm:1.2.2"
- dependencies:
- "@radix-ui/react-use-effect-event": "npm:0.0.2"
- "@radix-ui/react-use-layout-effect": "npm:1.1.1"
- peerDependencies:
- "@types/react": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/f55c4b06e895293aed4b44c9ef26fb24432539f5346fcd6519c7745800535b571058685314e83486a45bf61dc83887e24826490d3068acc317fb0a9010516e63
- languageName: node
- linkType: hard
-
-"@radix-ui/react-use-effect-event@npm:0.0.2":
- version: 0.0.2
- resolution: "@radix-ui/react-use-effect-event@npm:0.0.2"
- dependencies:
- "@radix-ui/react-use-layout-effect": "npm:1.1.1"
- peerDependencies:
- "@types/react": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/e84ff72a3e76c5ae9c94941028bb4b6472f17d4104481b9eab773deab3da640ecea035e54da9d6f4df8d84c18ef6913baf92b7511bee06930dc58bd0c0add417
- languageName: node
- linkType: hard
-
-"@radix-ui/react-use-escape-keydown@npm:1.1.1":
- version: 1.1.1
- resolution: "@radix-ui/react-use-escape-keydown@npm:1.1.1"
- dependencies:
- "@radix-ui/react-use-callback-ref": "npm:1.1.1"
- peerDependencies:
- "@types/react": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/bff53be99e940fef1d3c4df7d560e1d9133182e5a98336255d3063327d1d3dd4ec54a95dc5afe15cca4fb6c184f0a956c70de2815578c318cf995a7f9beabaa1
- languageName: node
- linkType: hard
-
-"@radix-ui/react-use-layout-effect@npm:1.1.1":
- version: 1.1.1
- resolution: "@radix-ui/react-use-layout-effect@npm:1.1.1"
- peerDependencies:
- "@types/react": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/9f98fdaba008dfc58050de60a77670b885792df473cf82c1cef8daee919a5dd5a77d270209f5f0b0abfaac78cb1627396e3ff56c81b735be550409426fe8b040
- languageName: node
- linkType: hard
-
-"@radix-ui/react-use-rect@npm:1.1.1":
- version: 1.1.1
- resolution: "@radix-ui/react-use-rect@npm:1.1.1"
- dependencies:
- "@radix-ui/rect": "npm:1.1.1"
- peerDependencies:
- "@types/react": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/271711404c05c589c8dbdaa748749e7daf44bcc6bffc9ecd910821c3ebca0ee245616cf5b39653ce690f53f875c3836fd3f36f51ab1c628273b6db599eee4864
- languageName: node
- linkType: hard
-
-"@radix-ui/react-use-size@npm:1.1.1":
- version: 1.1.1
- resolution: "@radix-ui/react-use-size@npm:1.1.1"
- dependencies:
- "@radix-ui/react-use-layout-effect": "npm:1.1.1"
- peerDependencies:
- "@types/react": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/851d09a816f44282e0e9e2147b1b571410174cc048703a50c4fa54d672de994fd1dfff1da9d480ecfd12c77ae8f48d74f01adaf668f074156b8cd0043c6c21d8
- languageName: node
- linkType: hard
-
-"@radix-ui/react-visually-hidden@npm:1.2.2":
- version: 1.2.2
- resolution: "@radix-ui/react-visually-hidden@npm:1.2.2"
- dependencies:
- "@radix-ui/react-primitive": "npm:2.1.2"
- peerDependencies:
- "@types/react": "*"
- "@types/react-dom": "*"
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- "@types/react-dom":
- optional: true
- checksum: 10c0/464b955cbe66ae5de819af5b7c2796eba77f84ab677eade0aa57e98ea588ef5d189c822e7bee0e18608864d5d262a1c70b5dda487269219f147a2a7cea625292
- languageName: node
- linkType: hard
-
-"@radix-ui/rect@npm:1.1.1":
- version: 1.1.1
- resolution: "@radix-ui/rect@npm:1.1.1"
- checksum: 10c0/0dac4f0f15691199abe6a0e067821ddd9d0349c0c05f39834e4eafc8403caf724106884035ae91bbc826e10367e6a5672e7bec4d4243860fa7649de246b1f60b
- languageName: node
- linkType: hard
-
-"@replit/codemirror-css-color-picker@npm:^6.1.0":
- version: 6.3.0
- resolution: "@replit/codemirror-css-color-picker@npm:6.3.0"
- peerDependencies:
- "@codemirror/language": ^6.0.0
- "@codemirror/state": ^6.0.0
- "@codemirror/view": ^6.0.0
- checksum: 10c0/8018d3378d790aaa3c49895caa0b4a66b92154a864998075e3288353ea1a4fd704b818767a31eae65712859c225e135dd8bd20aa014be8b362996c06f3897090
- languageName: node
- linkType: hard
-
-"@rollup/rollup-android-arm-eabi@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-android-arm-eabi@npm:4.40.2"
- conditions: os=android & cpu=arm
- languageName: node
- linkType: hard
-
-"@rollup/rollup-android-arm64@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-android-arm64@npm:4.40.2"
- conditions: os=android & cpu=arm64
- languageName: node
- linkType: hard
-
-"@rollup/rollup-darwin-arm64@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-darwin-arm64@npm:4.40.2"
- conditions: os=darwin & cpu=arm64
- languageName: node
- linkType: hard
-
-"@rollup/rollup-darwin-x64@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-darwin-x64@npm:4.40.2"
- conditions: os=darwin & cpu=x64
- languageName: node
- linkType: hard
-
-"@rollup/rollup-freebsd-arm64@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-freebsd-arm64@npm:4.40.2"
- conditions: os=freebsd & cpu=arm64
- languageName: node
- linkType: hard
-
-"@rollup/rollup-freebsd-x64@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-freebsd-x64@npm:4.40.2"
- conditions: os=freebsd & cpu=x64
- languageName: node
- linkType: hard
-
-"@rollup/rollup-linux-arm-gnueabihf@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.40.2"
- conditions: os=linux & cpu=arm & libc=glibc
- languageName: node
- linkType: hard
-
-"@rollup/rollup-linux-arm-musleabihf@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.40.2"
- conditions: os=linux & cpu=arm & libc=musl
- languageName: node
- linkType: hard
-
-"@rollup/rollup-linux-arm64-gnu@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.40.2"
- conditions: os=linux & cpu=arm64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@rollup/rollup-linux-arm64-musl@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-arm64-musl@npm:4.40.2"
- conditions: os=linux & cpu=arm64 & libc=musl
- languageName: node
- linkType: hard
-
-"@rollup/rollup-linux-loongarch64-gnu@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-loongarch64-gnu@npm:4.40.2"
- conditions: os=linux & cpu=loong64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@rollup/rollup-linux-powerpc64le-gnu@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-powerpc64le-gnu@npm:4.40.2"
- conditions: os=linux & cpu=ppc64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@rollup/rollup-linux-riscv64-gnu@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.40.2"
- conditions: os=linux & cpu=riscv64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@rollup/rollup-linux-riscv64-musl@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.40.2"
- conditions: os=linux & cpu=riscv64 & libc=musl
- languageName: node
- linkType: hard
-
-"@rollup/rollup-linux-s390x-gnu@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.40.2"
- conditions: os=linux & cpu=s390x & libc=glibc
- languageName: node
- linkType: hard
-
-"@rollup/rollup-linux-x64-gnu@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-x64-gnu@npm:4.40.2"
- conditions: os=linux & cpu=x64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@rollup/rollup-linux-x64-musl@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-linux-x64-musl@npm:4.40.2"
- conditions: os=linux & cpu=x64 & libc=musl
- languageName: node
- linkType: hard
-
-"@rollup/rollup-win32-arm64-msvc@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.40.2"
- conditions: os=win32 & cpu=arm64
- languageName: node
- linkType: hard
-
-"@rollup/rollup-win32-ia32-msvc@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.40.2"
- conditions: os=win32 & cpu=ia32
- languageName: node
- linkType: hard
-
-"@rollup/rollup-win32-x64-msvc@npm:4.40.2":
- version: 4.40.2
- resolution: "@rollup/rollup-win32-x64-msvc@npm:4.40.2"
- conditions: os=win32 & cpu=x64
- languageName: node
- linkType: hard
-
-"@rtsao/scc@npm:^1.1.0":
- version: 1.1.0
- resolution: "@rtsao/scc@npm:1.1.0"
- checksum: 10c0/b5bcfb0d87f7d1c1c7c0f7693f53b07866ed9fec4c34a97a8c948fb9a7c0082e416ce4d3b60beb4f5e167cbe04cdeefbf6771320f3ede059b9ce91188c409a5b
- languageName: node
- linkType: hard
-
-"@rushstack/eslint-patch@npm:^1.3.3":
- version: 1.11.0
- resolution: "@rushstack/eslint-patch@npm:1.11.0"
- checksum: 10c0/abea8d8cf2f4f50343f74abd6a8173c521ddd09b102021f5aa379ef373c40af5948b23db0e87eca1682e559e09d97d3f0c48ea71edad682c6bf72b840c8675b3
- languageName: node
- linkType: hard
-
-"@scalar/api-client@npm:1.2.39":
- version: 1.2.39
- resolution: "@scalar/api-client@npm:1.2.39"
- dependencies:
- "@floating-ui/vue": "npm:^1.0.2"
- "@headlessui/vue": "npm:^1.7.20"
- "@scalar/components": "npm:0.8.0"
- "@scalar/openapi-parser": "npm:^0.3.2"
- "@scalar/themes": "npm:0.7.11"
- "@scalar/use-codemirror": "npm:0.10.5"
- "@scalar/use-modal": "npm:0.3.3"
- "@scalar/use-toasts": "npm:0.6.7"
- "@scalar/use-tooltip": "npm:0.6.2"
- "@vueuse/core": "npm:^10.9.0"
- axios: "npm:^1.6.8"
- httpsnippet-lite: "npm:^3.0.5"
- nanoid: "npm:^5.0.1"
- pretty-bytes: "npm:^6.1.1"
- pretty-ms: "npm:^8.0.0"
- peerDependencies:
- "@scalar/oas-utils": 0.1.16
- vue: ^3.3.0
- checksum: 10c0/6af1199f87938a704bd6dfe8d1279d6648d12c9d7cc2631ef163fbca957a2d5dbf8c47393e083dc3ee24c107df0c38f33b9661e1528c83bd905f73dc7538f94d
- languageName: node
- linkType: hard
-
-"@scalar/api-reference-react@npm:^0.1.31":
- version: 0.1.98
- resolution: "@scalar/api-reference-react@npm:0.1.98"
- dependencies:
- "@scalar/api-reference": "npm:1.22.56"
- peerDependencies:
- react: ^18.0.0
- checksum: 10c0/b019c8783e9e68ebb3bde1c59dace57fd006a4fed9a356c9ad5a7926aa7936529fe8b1acd624eafc99b22194fadd50d3db04fc3ec59691e1ee54e60c7b79b642
- languageName: node
- linkType: hard
-
-"@scalar/api-reference@npm:1.22.56":
- version: 1.22.56
- resolution: "@scalar/api-reference@npm:1.22.56"
- dependencies:
- "@headlessui/vue": "npm:^1.7.20"
- "@scalar/api-client": "npm:1.2.39"
- "@scalar/components": "npm:0.8.0"
- "@scalar/oas-utils": "npm:0.1.16"
- "@scalar/openapi-parser": "npm:^0.3.2"
- "@scalar/snippetz": "npm:^0.1.6"
- "@scalar/themes": "npm:0.7.11"
- "@scalar/use-modal": "npm:0.3.3"
- "@scalar/use-toasts": "npm:0.6.7"
- "@scalar/use-tooltip": "npm:0.6.2"
- "@unhead/schema": "npm:^1.9.5"
- "@vcarl/remark-headings": "npm:^0.1.0"
- "@vueuse/core": "npm:^10.9.0"
- axios: "npm:^1.6.8"
- fuse.js: "npm:^6.6.2"
- github-slugger: "npm:^2.0.0"
- httpsnippet-lite: "npm:^3.0.5"
- postcss-nested: "npm:^6.0.1"
- prismjs: "npm:^1.29.0"
- rehype-external-links: "npm:^3.0.0"
- rehype-format: "npm:^5.0.0"
- rehype-highlight: "npm:^7.0.0"
- rehype-raw: "npm:^7.0.0"
- rehype-sanitize: "npm:^6.0.0"
- rehype-stringify: "npm:^10.0.0"
- remark-gfm: "npm:^4.0.0"
- remark-parse: "npm:^11.0.0"
- remark-rehype: "npm:^11.1.0"
- remark-stringify: "npm:^11.0.0"
- unhead: "npm:^1.8.3"
- unified: "npm:^11.0.4"
- peerDependencies:
- unified: ^11.0.0
- vue: ^3.3.0
- checksum: 10c0/e9b37e135860b5ee6360587e5baea4fa30b2eed30027d05918aca115adf38b5d27c6c849417ab04b9caab1d6ac0e0e2ee21cfad8a376c05b8b3f44644829c40c
- languageName: node
- linkType: hard
-
-"@scalar/components@npm:0.8.0":
- version: 0.8.0
- resolution: "@scalar/components@npm:0.8.0"
- dependencies:
- "@floating-ui/utils": "npm:^0.2.2"
- "@floating-ui/vue": "npm:^1.0.2"
- "@headlessui/vue": "npm:^1.7.20"
- "@scalar/oas-utils": "npm:0.1.16"
- "@storybook/test": "npm:^8.0.8"
- "@vueuse/core": "npm:^10.9.0"
- cva: "npm:1.0.0-beta.1"
- nanoid: "npm:^5.0.1"
- prismjs: "npm:^1.29.0"
- tailwind-merge: "npm:^2.3.0"
- peerDependencies:
- vue: ^3.3.0
- checksum: 10c0/0b60bc7203cbc2d94a848c7bb8bd44b26fb65e6d9d7a8658b45d861015ddbcb86f29e900af7258c225bab80f1e899eb7bdcf229855cdbe74596852b3d67e9b05
- languageName: node
- linkType: hard
-
-"@scalar/oas-utils@npm:0.1.16":
- version: 0.1.16
- resolution: "@scalar/oas-utils@npm:0.1.16"
- dependencies:
- yaml: "npm:^2.4.1"
- peerDependencies:
- axios: ^1.5
- checksum: 10c0/1a5bf8917a389a3b62fb3c36319e008f7b0684691fcc25ab847adbd99f2d0214d1e40c4393bbd58c8a2158fc48bcd58e5caeab5af01ba520936fa17d24dcd3ba
- languageName: node
- linkType: hard
-
-"@scalar/openapi-parser@npm:^0.3.2":
- version: 0.3.2
- resolution: "@scalar/openapi-parser@npm:0.3.2"
- dependencies:
- "@humanwhocodes/momoa": "npm:^3.0.1"
- "@types/node": "npm:^20.11.26"
- ajv: "npm:^8.12.0"
- ajv-draft-04: "npm:^1.0.0"
- ajv-formats: "npm:^2.1.1"
- js-yaml: "npm:^4.1.0"
- jsonpointer: "npm:^5.0.1"
- leven: "npm:^4.0.0"
- openapi-types: "npm:^12.1.3"
- vite: "npm:^5.1.6"
- yaml: "npm:^2.4.1"
- checksum: 10c0/db50e0ffb29770290c8e620457e871d0d75b4f4262ea08aca7a111771a141e8c15c9f15b321ef95bfce930e50fd46614fa6046000456c413c535f88417cdb96c
- languageName: node
- linkType: hard
-
-"@scalar/snippetz-core@npm:0.1.4":
- version: 0.1.4
- resolution: "@scalar/snippetz-core@npm:0.1.4"
- dependencies:
- "@types/har-format": "npm:^1.2.15"
- checksum: 10c0/13ae89ac1d33e9ec69af3d6cbf8036687eb03bdc2e1850f5e7f4509698d43d28147be2be4cc86df7bd42ebc97c5bcf7bc7149356fed878e06d70da77805be0da
- languageName: node
- linkType: hard
-
-"@scalar/snippetz-plugin-js-fetch@npm:0.1.1":
- version: 0.1.1
- resolution: "@scalar/snippetz-plugin-js-fetch@npm:0.1.1"
- dependencies:
- "@scalar/snippetz-core": "npm:0.1.4"
- checksum: 10c0/399dbb21b4b6922eb13298783321cc36f63b1bbf557b448639282ca42547a5d3fdd8eae641358fe5cce13f3942db6ad0ae2651bee82f5fff54fe33f080d67374
- languageName: node
- linkType: hard
-
-"@scalar/snippetz-plugin-js-ofetch@npm:^0.1.1":
- version: 0.1.1
- resolution: "@scalar/snippetz-plugin-js-ofetch@npm:0.1.1"
- dependencies:
- "@scalar/snippetz-core": "npm:0.1.4"
- checksum: 10c0/078578e67773676db43adaf5747b29bddeaa9f7e0f5a8530ddb0a066111d9da51646cdae8a8a2f979783152f13314aee480bf3030324af0083348c4d4458bd52
- languageName: node
- linkType: hard
-
-"@scalar/snippetz-plugin-node-fetch@npm:0.1.2":
- version: 0.1.2
- resolution: "@scalar/snippetz-plugin-node-fetch@npm:0.1.2"
- dependencies:
- "@scalar/snippetz-core": "npm:0.1.4"
- checksum: 10c0/13243c1f5b5c75c9a07c77d953d924c33cfdc33a510db3ad6563919ec125860c9fede5bf5ea5bb5a9b74d860d722dc65d0913419b9eb7be0122f62ed961fd3b5
- languageName: node
- linkType: hard
-
-"@scalar/snippetz-plugin-node-ofetch@npm:^0.1.1":
- version: 0.1.1
- resolution: "@scalar/snippetz-plugin-node-ofetch@npm:0.1.1"
- dependencies:
- "@scalar/snippetz-core": "npm:0.1.4"
- checksum: 10c0/45a9cd14988f910d49ff77e5b9458142233cd7124362f082004f869e4b509828e3aaef10d5c7940df7a5148a0217cda8f6de4e9d93d791538ebbb3f1e93444b2
- languageName: node
- linkType: hard
-
-"@scalar/snippetz-plugin-node-undici@npm:0.1.6":
- version: 0.1.6
- resolution: "@scalar/snippetz-plugin-node-undici@npm:0.1.6"
- dependencies:
- "@scalar/snippetz-core": "npm:0.1.4"
- checksum: 10c0/a744768df2043661c409a8d58dedfeb187073bdb6c41beaeef3cb088d1266c3e38c5ab0b14c43ced7f946b99f039b89970e0652b5808a654830589d4fe9de6ec
- languageName: node
- linkType: hard
-
-"@scalar/snippetz@npm:^0.1.6":
- version: 0.1.6
- resolution: "@scalar/snippetz@npm:0.1.6"
- dependencies:
- "@scalar/snippetz-core": "npm:0.1.4"
- "@scalar/snippetz-plugin-js-fetch": "npm:0.1.1"
- "@scalar/snippetz-plugin-js-ofetch": "npm:^0.1.1"
- "@scalar/snippetz-plugin-node-fetch": "npm:0.1.2"
- "@scalar/snippetz-plugin-node-ofetch": "npm:^0.1.1"
- "@scalar/snippetz-plugin-node-undici": "npm:0.1.6"
- checksum: 10c0/ce7360f7e24a941053e5422778695e6def4adb84d899a92e6773dc8dc912d80c22edded52f8c68bf0dd35fd3409a9659ea7b5cfdae408e3fcea83f144d77d6aa
- languageName: node
- linkType: hard
-
-"@scalar/themes@npm:0.7.11":
- version: 0.7.11
- resolution: "@scalar/themes@npm:0.7.11"
- peerDependencies:
- vue: ^3.3.0
- checksum: 10c0/d0adbf13889537001f9f0e0d7acf034e2e8d2d61ad36f5c2bb40b9e36100d2b607261da055199713c9c5cdb1194a5293ce09603b952767552707bb746e2902ad
- languageName: node
- linkType: hard
-
-"@scalar/use-codemirror@npm:0.10.5":
- version: 0.10.5
- resolution: "@scalar/use-codemirror@npm:0.10.5"
- dependencies:
- "@codemirror/autocomplete": "npm:^6.12.0"
- "@codemirror/commands": "npm:^6.3.3"
- "@codemirror/lang-css": "npm:^6.2.1"
- "@codemirror/lang-html": "npm:^6.4.8"
- "@codemirror/lang-json": "npm:^6.0.0"
- "@codemirror/lang-yaml": "npm:^6.0.0"
- "@codemirror/language": "npm:^6.10.1"
- "@codemirror/state": "npm:^6.4.0"
- "@codemirror/view": "npm:^6.23.1"
- "@lezer/common": "npm:^1.2.1"
- "@lezer/highlight": "npm:^1.2.0"
- "@lezer/lr": "npm:^1.4.0"
- "@replit/codemirror-css-color-picker": "npm:^6.1.0"
- "@uiw/codemirror-themes": "npm:^4.21.21"
- codemirror: "npm:^6.0.0"
- y-codemirror.next: "npm:^0.3.2"
- peerDependencies:
- vue: ^3.3.0
- y-codemirror.next: ^0.3.2
- yjs: ^13.6.0
- dependenciesMeta:
- y-codemirror.next:
- optional: true
- checksum: 10c0/ec038d009dee3588cce1a2cbf6e93c810bffba51c482d787b50b454cb132880d11e96285e623b4dfa412e9c71efaba624470a54be5be68ad64a0b7534c5bc53b
- languageName: node
- linkType: hard
-
-"@scalar/use-modal@npm:0.3.3":
- version: 0.3.3
- resolution: "@scalar/use-modal@npm:0.3.3"
- peerDependencies:
- "@headlessui/vue": ^1.7.0
- vue: ^3.3.0
- checksum: 10c0/9abd33f285fd5a41ff25a9c6e5a4385c453fb51d874a1eebc0996b698d53f6b077e59117e03ea70a4f059b3bba274b24da8b0686ddd0c4ed319af39760b3a895
- languageName: node
- linkType: hard
-
-"@scalar/use-toasts@npm:0.6.7":
- version: 0.6.7
- resolution: "@scalar/use-toasts@npm:0.6.7"
- peerDependencies:
- nanoid: 4 - 5
- vue: ^3.3.0
- vue-sonner: ^1.0.3
- checksum: 10c0/d99b00aa0c309f65bdd36f63ab899b24c1f925a3e58b9ad50eea3900ed95d639d43c3ded3ee4ceb8a60d9941d335de169da2ae5356c45886564956e0336f7ec9
- languageName: node
- linkType: hard
-
-"@scalar/use-tooltip@npm:0.6.2":
- version: 0.6.2
- resolution: "@scalar/use-tooltip@npm:0.6.2"
- peerDependencies:
- vue: ^3.3.0
- checksum: 10c0/9d031fe7836469fd0ef0403e7493d4ce7171bf07cda24e77ec8faa3fe075db514f651f9ddda71fdc9b18c03b78484a70ebcdd256d6c46f7df38d8d25c96db27a
- languageName: node
- linkType: hard
-
-"@storybook/global@npm:^5.0.0":
- version: 5.0.0
- resolution: "@storybook/global@npm:5.0.0"
- checksum: 10c0/8f1b61dcdd3a89584540896e659af2ecc700bc740c16909a7be24ac19127ea213324de144a141f7caf8affaed017d064fea0618d453afbe027cf60f54b4a6d0b
- languageName: node
- linkType: hard
-
-"@storybook/instrumenter@npm:8.6.12":
- version: 8.6.12
- resolution: "@storybook/instrumenter@npm:8.6.12"
- dependencies:
- "@storybook/global": "npm:^5.0.0"
- "@vitest/utils": "npm:^2.1.1"
- peerDependencies:
- storybook: ^8.6.12
- checksum: 10c0/4cf02774bd5fb9dbc095a78eb4ee6848928fc7d17bdec7c656bb5ab21382533c8e0c219c1e253d48b652707d10d2566f1d6fc8bd37196acd21ee342522c007d1
- languageName: node
- linkType: hard
-
-"@storybook/test@npm:^8.0.8":
- version: 8.6.12
- resolution: "@storybook/test@npm:8.6.12"
- dependencies:
- "@storybook/global": "npm:^5.0.0"
- "@storybook/instrumenter": "npm:8.6.12"
- "@testing-library/dom": "npm:10.4.0"
- "@testing-library/jest-dom": "npm:6.5.0"
- "@testing-library/user-event": "npm:14.5.2"
- "@vitest/expect": "npm:2.0.5"
- "@vitest/spy": "npm:2.0.5"
- peerDependencies:
- storybook: ^8.6.12
- checksum: 10c0/3717cc21d840e5900458debe3414b179d088b4973054933d355d6916344cb1857dd02ab8d1ff168f48fb8038f14da99e0a62a7f678e557bdbe3a2c225ce162f3
- languageName: node
- linkType: hard
-
-"@swc/counter@npm:^0.1.3":
- version: 0.1.3
- resolution: "@swc/counter@npm:0.1.3"
- checksum: 10c0/8424f60f6bf8694cfd2a9bca45845bce29f26105cda8cf19cdb9fd3e78dc6338699e4db77a89ae449260bafa1cc6bec307e81e7fb96dbf7dcfce0eea55151356
- languageName: node
- linkType: hard
-
-"@swc/helpers@npm:0.5.5":
- version: 0.5.5
- resolution: "@swc/helpers@npm:0.5.5"
- dependencies:
- "@swc/counter": "npm:^0.1.3"
- tslib: "npm:^2.4.0"
- checksum: 10c0/21a9b9cfe7e00865f9c9f3eb4c1cc5b397143464f7abee76a2c5366e591e06b0155b5aac93fe8269ef8d548df253f6fd931e9ddfc0fd12efd405f90f45506e7d
- languageName: node
- linkType: hard
-
-"@swc/helpers@npm:^0.5.3":
- version: 0.5.17
- resolution: "@swc/helpers@npm:0.5.17"
- dependencies:
- tslib: "npm:^2.8.0"
- checksum: 10c0/fe1f33ebb968558c5a0c595e54f2e479e4609bff844f9ca9a2d1ffd8dd8504c26f862a11b031f48f75c95b0381c2966c3dd156e25942f90089badd24341e7dbb
- languageName: node
- linkType: hard
-
-"@tanstack/react-virtual@npm:^3.0.0-beta.60":
- version: 3.13.8
- resolution: "@tanstack/react-virtual@npm:3.13.8"
- dependencies:
- "@tanstack/virtual-core": "npm:3.13.8"
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- checksum: 10c0/1604227dad2f1c8d3b8246f8afe9bc37998da8f97ed7ef1b5d703fe3417c8a54541592a9091e7c8e63521002672268292d347c5c17fe1e1e82b9d0b297ddd1b4
- languageName: node
- linkType: hard
-
-"@tanstack/virtual-core@npm:3.13.8":
- version: 3.13.8
- resolution: "@tanstack/virtual-core@npm:3.13.8"
- checksum: 10c0/4b76b5d87fb26c928939a58d3887b9191574f029f60f9146eb05fd591f8b96a69bd3c7a1d64dd9d6cbfbfc85a0bd22b49a79fa4d3abab64eee595db9ad94f3ea
- languageName: node
- linkType: hard
-
-"@tanstack/vue-virtual@npm:^3.0.0-beta.60":
- version: 3.13.8
- resolution: "@tanstack/vue-virtual@npm:3.13.8"
- dependencies:
- "@tanstack/virtual-core": "npm:3.13.8"
- peerDependencies:
- vue: ^2.7.0 || ^3.0.0
- checksum: 10c0/0f1e1f3561dc1d5c62d3ba29b4ec4de2ef43dcfd96a577d33729b36a5f5bc81be561600a454c0ee98dfbb9397a47efe57ab9cea9bbaafeb2aa91cdd9ed5f7268
- languageName: node
- linkType: hard
-
-"@testing-library/dom@npm:10.4.0":
- version: 10.4.0
- resolution: "@testing-library/dom@npm:10.4.0"
- dependencies:
- "@babel/code-frame": "npm:^7.10.4"
- "@babel/runtime": "npm:^7.12.5"
- "@types/aria-query": "npm:^5.0.1"
- aria-query: "npm:5.3.0"
- chalk: "npm:^4.1.0"
- dom-accessibility-api: "npm:^0.5.9"
- lz-string: "npm:^1.5.0"
- pretty-format: "npm:^27.0.2"
- checksum: 10c0/0352487720ecd433400671e773df0b84b8268fb3fe8e527cdfd7c11b1365b398b4e0eddba6e7e0c85e8d615f48257753283fccec41f6b986fd6c85f15eb5f84f
- languageName: node
- linkType: hard
-
-"@testing-library/jest-dom@npm:6.5.0":
- version: 6.5.0
- resolution: "@testing-library/jest-dom@npm:6.5.0"
- dependencies:
- "@adobe/css-tools": "npm:^4.4.0"
- aria-query: "npm:^5.0.0"
- chalk: "npm:^3.0.0"
- css.escape: "npm:^1.5.1"
- dom-accessibility-api: "npm:^0.6.3"
- lodash: "npm:^4.17.21"
- redent: "npm:^3.0.0"
- checksum: 10c0/fd5936a547f04608d8de15a7de3ae26516f21023f8f45169b10c8c8847015fd20ec259b7309f08aa1031bcbc37c6e5e6f532d1bb85ef8f91bad654193ec66a4c
- languageName: node
- linkType: hard
-
-"@testing-library/user-event@npm:14.5.2":
- version: 14.5.2
- resolution: "@testing-library/user-event@npm:14.5.2"
- peerDependencies:
- "@testing-library/dom": ">=7.21.4"
- checksum: 10c0/68a0c2aa28a3c8e6eb05cafee29705438d7d8a9427423ce5064d44f19c29e89b5636de46dd2f28620fb10abba75c67130185bbc3aa23ac1163a227a5f36641e1
- languageName: node
- linkType: hard
-
-"@theguild/remark-mermaid@npm:^0.0.5":
- version: 0.0.5
- resolution: "@theguild/remark-mermaid@npm:0.0.5"
- dependencies:
- mermaid: "npm:^10.2.2"
- unist-util-visit: "npm:^5.0.0"
- peerDependencies:
- react: ^18.2.0
- checksum: 10c0/3471a32a87d50f7eb699f15ff181f9a3698209951ef0fab1e928ea391275105286b0391e46cca4dd22d30dcab934e5c7eb6573c341f5d8543ca5bcb2f60cc916
- languageName: node
- linkType: hard
-
-"@theguild/remark-mermaid@npm:^0.0.6":
- version: 0.0.6
- resolution: "@theguild/remark-mermaid@npm:0.0.6"
- dependencies:
- mermaid: "npm:^10.2.2"
- unist-util-visit: "npm:^5.0.0"
- peerDependencies:
- react: ^18.2.0
- checksum: 10c0/b534f072a5445594676269bee4c6f7f7c52bcf103ed2bc6c3330a92a57eecdeb2a4e99511d32aee23d03518a9f4128a438125b285909180d9de25d86228e3b9a
- languageName: node
- linkType: hard
-
-"@theguild/remark-npm2yarn@npm:^0.2.0":
- version: 0.2.1
- resolution: "@theguild/remark-npm2yarn@npm:0.2.1"
- dependencies:
- npm-to-yarn: "npm:^2.1.0"
- unist-util-visit: "npm:^5.0.0"
- checksum: 10c0/69380ac3814bcf2f9c00c8e375d97e55220adea04d9c887df1b6ac888b726a8a7aaf391ed80ceca1756cfa39d572221d12f681bc1a5f3fdf49a0ed59f7c3addc
- languageName: node
- linkType: hard
-
-"@tybys/wasm-util@npm:^0.9.0":
- version: 0.9.0
- resolution: "@tybys/wasm-util@npm:0.9.0"
- dependencies:
- tslib: "npm:^2.4.0"
- checksum: 10c0/f9fde5c554455019f33af6c8215f1a1435028803dc2a2825b077d812bed4209a1a64444a4ca0ce2ea7e1175c8d88e2f9173a36a33c199e8a5c671aa31de8242d
- languageName: node
- linkType: hard
-
-"@types/acorn@npm:^4.0.0":
- version: 4.0.6
- resolution: "@types/acorn@npm:4.0.6"
- dependencies:
- "@types/estree": "npm:*"
- checksum: 10c0/5a65a1d7e91fc95703f0a717897be60fa7ccd34b17f5462056274a246e6690259fe0a1baabc86fd3260354f87245cb3dc483346d7faad2b78fc199763978ede9
- languageName: node
- linkType: hard
-
-"@types/aria-query@npm:^5.0.1":
- version: 5.0.4
- resolution: "@types/aria-query@npm:5.0.4"
- checksum: 10c0/dc667bc6a3acc7bba2bccf8c23d56cb1f2f4defaa704cfef595437107efaa972d3b3db9ec1d66bc2711bfc35086821edd32c302bffab36f2e79b97f312069f08
- languageName: node
- linkType: hard
-
-"@types/d3-array@npm:*":
- version: 3.2.1
- resolution: "@types/d3-array@npm:3.2.1"
- checksum: 10c0/38bf2c778451f4b79ec81a2288cb4312fe3d6449ecdf562970cc339b60f280f31c93a024c7ff512607795e79d3beb0cbda123bb07010167bce32927f71364bca
- languageName: node
- linkType: hard
-
-"@types/d3-axis@npm:*":
- version: 3.0.6
- resolution: "@types/d3-axis@npm:3.0.6"
- dependencies:
- "@types/d3-selection": "npm:*"
- checksum: 10c0/d756d42360261f44d8eefd0950c5bb0a4f67a46dd92069da3f723ac36a1e8cb2b9ce6347d836ef19d5b8aef725dbcf8fdbbd6cfbff676ca4b0642df2f78b599a
- languageName: node
- linkType: hard
-
-"@types/d3-brush@npm:*":
- version: 3.0.6
- resolution: "@types/d3-brush@npm:3.0.6"
- dependencies:
- "@types/d3-selection": "npm:*"
- checksum: 10c0/fd6e2ac7657a354f269f6b9c58451ffae9d01b89ccb1eb6367fd36d635d2f1990967215ab498e0c0679ff269429c57fad6a2958b68f4d45bc9f81d81672edc01
- languageName: node
- linkType: hard
-
-"@types/d3-chord@npm:*":
- version: 3.0.6
- resolution: "@types/d3-chord@npm:3.0.6"
- checksum: 10c0/c5a25eb5389db01e63faec0c5c2ec7cc41c494e9b3201630b494c4e862a60f1aa83fabbc33a829e7e1403941e3c30d206c741559b14406ac2a4239cfdf4b4c17
- languageName: node
- linkType: hard
-
-"@types/d3-color@npm:*":
- version: 3.1.3
- resolution: "@types/d3-color@npm:3.1.3"
- checksum: 10c0/65eb0487de606eb5ad81735a9a5b3142d30bc5ea801ed9b14b77cb14c9b909f718c059f13af341264ee189acf171508053342142bdf99338667cea26a2d8d6ae
- languageName: node
- linkType: hard
-
-"@types/d3-contour@npm:*":
- version: 3.0.6
- resolution: "@types/d3-contour@npm:3.0.6"
- dependencies:
- "@types/d3-array": "npm:*"
- "@types/geojson": "npm:*"
- checksum: 10c0/e7d83e94719af4576ceb5ac7f277c5806f83ba6c3631744ae391cffc3641f09dfa279470b83053cd0b2acd6784e8749c71141d05bdffa63ca58ffb5b31a0f27c
- languageName: node
- linkType: hard
-
-"@types/d3-delaunay@npm:*":
- version: 6.0.4
- resolution: "@types/d3-delaunay@npm:6.0.4"
- checksum: 10c0/d154a8864f08c4ea23ecb9bdabcef1c406a25baa8895f0cb08a0ed2799de0d360e597552532ce7086ff0cdffa8f3563f9109d18f0191459d32bb620a36939123
- languageName: node
- linkType: hard
-
-"@types/d3-dispatch@npm:*":
- version: 3.0.6
- resolution: "@types/d3-dispatch@npm:3.0.6"
- checksum: 10c0/405eb7d0ec139fbf72fa6a43b0f3ca8a1f913bb2cb38f607827e63fca8d4393f021f32f3b96b33c93ddbd37789453a0b3624f14f504add5308fd9aec8a46dda0
- languageName: node
- linkType: hard
-
-"@types/d3-drag@npm:*":
- version: 3.0.7
- resolution: "@types/d3-drag@npm:3.0.7"
- dependencies:
- "@types/d3-selection": "npm:*"
- checksum: 10c0/65e29fa32a87c72d26c44b5e2df3bf15af21cd128386bcc05bcacca255927c0397d0cd7e6062aed5f0abd623490544a9d061c195f5ed9f018fe0b698d99c079d
- languageName: node
- linkType: hard
-
-"@types/d3-dsv@npm:*":
- version: 3.0.7
- resolution: "@types/d3-dsv@npm:3.0.7"
- checksum: 10c0/c0f01da862465594c8a28278b51c850af3b4239cc22b14fd1a19d7a98f93d94efa477bf59d8071beb285dca45bf614630811451e18e7c52add3a0abfee0a1871
- languageName: node
- linkType: hard
-
-"@types/d3-ease@npm:*":
- version: 3.0.2
- resolution: "@types/d3-ease@npm:3.0.2"
- checksum: 10c0/aff5a1e572a937ee9bff6465225d7ba27d5e0c976bd9eacdac2e6f10700a7cb0c9ea2597aff6b43a6ed850a3210030870238894a77ec73e309b4a9d0333f099c
- languageName: node
- linkType: hard
-
-"@types/d3-fetch@npm:*":
- version: 3.0.7
- resolution: "@types/d3-fetch@npm:3.0.7"
- dependencies:
- "@types/d3-dsv": "npm:*"
- checksum: 10c0/3d147efa52a26da1a5d40d4d73e6cebaaa964463c378068062999b93ea3731b27cc429104c21ecbba98c6090e58ef13429db6399238c5e3500162fb3015697a0
- languageName: node
- linkType: hard
-
-"@types/d3-force@npm:*":
- version: 3.0.10
- resolution: "@types/d3-force@npm:3.0.10"
- checksum: 10c0/c82b459079a106b50e346c9b79b141f599f2fc4f598985a5211e72c7a2e20d35bd5dc6e91f306b323c8bfa325c02c629b1645f5243f1c6a55bd51bc85cccfa92
- languageName: node
- linkType: hard
-
-"@types/d3-format@npm:*":
- version: 3.0.4
- resolution: "@types/d3-format@npm:3.0.4"
- checksum: 10c0/3ac1600bf9061a59a228998f7cd3f29e85cbf522997671ba18d4d84d10a2a1aff4f95aceb143fa9960501c3ec351e113fc75884e6a504ace44dc1744083035ee
- languageName: node
- linkType: hard
-
-"@types/d3-geo@npm:*":
- version: 3.1.0
- resolution: "@types/d3-geo@npm:3.1.0"
- dependencies:
- "@types/geojson": "npm:*"
- checksum: 10c0/3745a93439038bb5b0b38facf435f7079812921d46406f5d38deaee59e90084ff742443c7ea0a8446df81a0d81eaf622fe7068cf4117a544bd4aa3b2dc182f88
- languageName: node
- linkType: hard
-
-"@types/d3-hierarchy@npm:*":
- version: 3.1.7
- resolution: "@types/d3-hierarchy@npm:3.1.7"
- checksum: 10c0/873711737d6b8e7b6f1dda0bcd21294a48f75024909ae510c5d2c21fad2e72032e0958def4d9f68319d3aaac298ad09c49807f8bfc87a145a82693b5208613c7
- languageName: node
- linkType: hard
-
-"@types/d3-interpolate@npm:*":
- version: 3.0.4
- resolution: "@types/d3-interpolate@npm:3.0.4"
- dependencies:
- "@types/d3-color": "npm:*"
- checksum: 10c0/066ebb8da570b518dd332df6b12ae3b1eaa0a7f4f0c702e3c57f812cf529cc3500ec2aac8dc094f31897790346c6b1ebd8cd7a077176727f4860c2b181a65ca4
- languageName: node
- linkType: hard
-
-"@types/d3-path@npm:*":
- version: 3.1.1
- resolution: "@types/d3-path@npm:3.1.1"
- checksum: 10c0/2c36eb31ebaf2ce4712e793fd88087117976f7c4ed69cc2431825f999c8c77cca5cea286f3326432b770739ac6ccd5d04d851eb65e7a4dbcc10c982b49ad2c02
- languageName: node
- linkType: hard
-
-"@types/d3-polygon@npm:*":
- version: 3.0.2
- resolution: "@types/d3-polygon@npm:3.0.2"
- checksum: 10c0/f46307bb32b6c2aef8c7624500e0f9b518de8f227ccc10170b869dc43e4c542560f6c8d62e9f087fac45e198d6e4b623e579c0422e34c85baf56717456d3f439
- languageName: node
- linkType: hard
-
-"@types/d3-quadtree@npm:*":
- version: 3.0.6
- resolution: "@types/d3-quadtree@npm:3.0.6"
- checksum: 10c0/7eaa0a4d404adc856971c9285e1c4ab17e9135ea669d847d6db7e0066126a28ac751864e7ce99c65d526e130f56754a2e437a1617877098b3bdcc3ef23a23616
- languageName: node
- linkType: hard
-
-"@types/d3-random@npm:*":
- version: 3.0.3
- resolution: "@types/d3-random@npm:3.0.3"
- checksum: 10c0/5f4fea40080cd6d4adfee05183d00374e73a10c530276a6455348983dda341003a251def28565a27c25d9cf5296a33e870e397c9d91ff83fb7495a21c96b6882
- languageName: node
- linkType: hard
-
-"@types/d3-scale-chromatic@npm:*, @types/d3-scale-chromatic@npm:^3.0.0":
- version: 3.1.0
- resolution: "@types/d3-scale-chromatic@npm:3.1.0"
- checksum: 10c0/93c564e02d2e97a048e18fe8054e4a935335da6ab75a56c3df197beaa87e69122eef0dfbeb7794d4a444a00e52e3123514ee27cec084bd21f6425b7037828cc2
- languageName: node
- linkType: hard
-
-"@types/d3-scale@npm:*, @types/d3-scale@npm:^4.0.3":
- version: 4.0.9
- resolution: "@types/d3-scale@npm:4.0.9"
- dependencies:
- "@types/d3-time": "npm:*"
- checksum: 10c0/4ac44233c05cd50b65b33ecb35d99fdf07566bcdbc55bc1306b2f27d1c5134d8c560d356f2c8e76b096e9125ffb8d26d95f78d56e210d1c542cb255bdf31d6c8
- languageName: node
- linkType: hard
-
-"@types/d3-selection@npm:*":
- version: 3.0.11
- resolution: "@types/d3-selection@npm:3.0.11"
- checksum: 10c0/0c512956c7503ff5def4bb32e0c568cc757b9a2cc400a104fc0f4cfe5e56d83ebde2a97821b6f2cb26a7148079d3b86a2f28e11d68324ed311cf35c2ed980d1d
- languageName: node
- linkType: hard
-
-"@types/d3-shape@npm:*":
- version: 3.1.7
- resolution: "@types/d3-shape@npm:3.1.7"
- dependencies:
- "@types/d3-path": "npm:*"
- checksum: 10c0/38e59771c1c4c83b67aa1f941ce350410522a149d2175832fdc06396b2bb3b2c1a2dd549e0f8230f9f24296ee5641a515eaf10f55ee1ef6c4f83749e2dd7dcfd
- languageName: node
- linkType: hard
-
-"@types/d3-time-format@npm:*":
- version: 4.0.3
- resolution: "@types/d3-time-format@npm:4.0.3"
- checksum: 10c0/9ef5e8e2b96b94799b821eed5d61a3d432c7903247966d8ad951b8ce5797fe46554b425cb7888fa5bf604b4663c369d7628c0328ffe80892156671c58d1a7f90
- languageName: node
- linkType: hard
-
-"@types/d3-time@npm:*":
- version: 3.0.4
- resolution: "@types/d3-time@npm:3.0.4"
- checksum: 10c0/6d9e2255d63f7a313a543113920c612e957d70da4fb0890931da6c2459010291b8b1f95e149a538500c1c99e7e6c89ffcce5554dd29a31ff134a38ea94b6d174
- languageName: node
- linkType: hard
-
-"@types/d3-timer@npm:*":
- version: 3.0.2
- resolution: "@types/d3-timer@npm:3.0.2"
- checksum: 10c0/c644dd9571fcc62b1aa12c03bcad40571553020feeb5811f1d8a937ac1e65b8a04b759b4873aef610e28b8714ac71c9885a4d6c127a048d95118f7e5b506d9e1
- languageName: node
- linkType: hard
-
-"@types/d3-transition@npm:*":
- version: 3.0.9
- resolution: "@types/d3-transition@npm:3.0.9"
- dependencies:
- "@types/d3-selection": "npm:*"
- checksum: 10c0/4f68b9df7ac745b3491216c54203cbbfa0f117ae4c60e2609cdef2db963582152035407fdff995b10ee383bae2f05b7743493f48e1b8e46df54faa836a8fb7b5
- languageName: node
- linkType: hard
-
-"@types/d3-zoom@npm:*":
- version: 3.0.8
- resolution: "@types/d3-zoom@npm:3.0.8"
- dependencies:
- "@types/d3-interpolate": "npm:*"
- "@types/d3-selection": "npm:*"
- checksum: 10c0/1dbdbcafddcae12efb5beb6948546963f29599e18bc7f2a91fb69cc617c2299a65354f2d47e282dfb86fec0968406cd4fb7f76ba2d2fb67baa8e8d146eb4a547
- languageName: node
- linkType: hard
-
-"@types/d3@npm:^7.4.3":
- version: 7.4.3
- resolution: "@types/d3@npm:7.4.3"
- dependencies:
- "@types/d3-array": "npm:*"
- "@types/d3-axis": "npm:*"
- "@types/d3-brush": "npm:*"
- "@types/d3-chord": "npm:*"
- "@types/d3-color": "npm:*"
- "@types/d3-contour": "npm:*"
- "@types/d3-delaunay": "npm:*"
- "@types/d3-dispatch": "npm:*"
- "@types/d3-drag": "npm:*"
- "@types/d3-dsv": "npm:*"
- "@types/d3-ease": "npm:*"
- "@types/d3-fetch": "npm:*"
- "@types/d3-force": "npm:*"
- "@types/d3-format": "npm:*"
- "@types/d3-geo": "npm:*"
- "@types/d3-hierarchy": "npm:*"
- "@types/d3-interpolate": "npm:*"
- "@types/d3-path": "npm:*"
- "@types/d3-polygon": "npm:*"
- "@types/d3-quadtree": "npm:*"
- "@types/d3-random": "npm:*"
- "@types/d3-scale": "npm:*"
- "@types/d3-scale-chromatic": "npm:*"
- "@types/d3-selection": "npm:*"
- "@types/d3-shape": "npm:*"
- "@types/d3-time": "npm:*"
- "@types/d3-time-format": "npm:*"
- "@types/d3-timer": "npm:*"
- "@types/d3-transition": "npm:*"
- "@types/d3-zoom": "npm:*"
- checksum: 10c0/a9c6d65b13ef3b42c87f2a89ea63a6d5640221869f97d0657b0cb2f1dac96a0f164bf5605643c0794e0de3aa2bf05df198519aaf15d24ca135eb0e8bd8a9d879
- languageName: node
- linkType: hard
-
-"@types/debug@npm:^4.0.0":
- version: 4.1.12
- resolution: "@types/debug@npm:4.1.12"
- dependencies:
- "@types/ms": "npm:*"
- checksum: 10c0/5dcd465edbb5a7f226e9a5efd1f399c6172407ef5840686b73e3608ce135eeca54ae8037dcd9f16bdb2768ac74925b820a8b9ecc588a58ca09eca6acabe33e2f
- languageName: node
- linkType: hard
-
-"@types/estree-jsx@npm:^1.0.0":
- version: 1.0.5
- resolution: "@types/estree-jsx@npm:1.0.5"
- dependencies:
- "@types/estree": "npm:*"
- checksum: 10c0/07b354331516428b27a3ab99ee397547d47eb223c34053b48f84872fafb841770834b90cc1a0068398e7c7ccb15ec51ab00ec64b31dc5e3dbefd624638a35c6d
- languageName: node
- linkType: hard
-
-"@types/estree@npm:*, @types/estree@npm:^1.0.0, @types/estree@npm:^1.0.6":
- version: 1.0.6
- resolution: "@types/estree@npm:1.0.6"
- checksum: 10c0/cdfd751f6f9065442cd40957c07fd80361c962869aa853c1c2fd03e101af8b9389d8ff4955a43a6fcfa223dd387a089937f95be0f3eec21ca527039fd2d9859a
- languageName: node
- linkType: hard
-
-"@types/estree@npm:1.0.7":
- version: 1.0.7
- resolution: "@types/estree@npm:1.0.7"
- checksum: 10c0/be815254316882f7c40847336cd484c3bc1c3e34f710d197160d455dc9d6d050ffbf4c3bc76585dba86f737f020ab20bdb137ebe0e9116b0c86c7c0342221b8c
- languageName: node
- linkType: hard
-
-"@types/fined@npm:*":
- version: 1.1.5
- resolution: "@types/fined@npm:1.1.5"
- checksum: 10c0/dfd510331a50c75c0955578d68d81855022708a9c0d06cda6ae978130eb53993fa88821a81defe80ce9b153c883bf1c63b06ccd0c12f698b94e45b30d480945d
- languageName: node
- linkType: hard
-
-"@types/geojson@npm:*":
- version: 7946.0.16
- resolution: "@types/geojson@npm:7946.0.16"
- checksum: 10c0/1ff24a288bd5860b766b073ead337d31d73bdc715e5b50a2cee5cb0af57a1ed02cc04ef295f5fa68dc40fe3e4f104dd31282b2b818a5ba3231bc1001ba084e3c
- languageName: node
- linkType: hard
-
-"@types/har-format@npm:^1.2.10, @types/har-format@npm:^1.2.15":
- version: 1.2.16
- resolution: "@types/har-format@npm:1.2.16"
- checksum: 10c0/77e952bc219db0c1f0588cab3b95865bc343b922e8423a76fbbd6a757c40709a256933fa415eb8fefda6ea5897c8e3dd3191bb8a82b37c13d9232467d31ae485
- languageName: node
- linkType: hard
-
-"@types/hast@npm:^2.0.0":
- version: 2.3.10
- resolution: "@types/hast@npm:2.3.10"
- dependencies:
- "@types/unist": "npm:^2"
- checksum: 10c0/16daac35d032e656defe1f103f9c09c341a6dc553c7ec17b388274076fa26e904a71ea5ea41fd368a6d5f1e9e53be275c80af7942b9c466d8511d261c9529c7e
- languageName: node
- linkType: hard
-
-"@types/hast@npm:^3.0.0":
- version: 3.0.4
- resolution: "@types/hast@npm:3.0.4"
- dependencies:
- "@types/unist": "npm:*"
- checksum: 10c0/3249781a511b38f1d330fd1e3344eed3c4e7ea8eff82e835d35da78e637480d36fad37a78be5a7aed8465d237ad0446abc1150859d0fde395354ea634decf9f7
- languageName: node
- linkType: hard
-
-"@types/inquirer@npm:^9.0.3":
- version: 9.0.7
- resolution: "@types/inquirer@npm:9.0.7"
- dependencies:
- "@types/through": "npm:*"
- rxjs: "npm:^7.2.0"
- checksum: 10c0/b7138af41226c0457b99ff9b179da4a82078bc1674762e812d3cc3e3276936d7326b9fa6b98212b8eb055b2b6aaebe3c20359eebe176a6ca71061f4e08ce3a0f
- languageName: node
- linkType: hard
-
-"@types/js-yaml@npm:^4.0.0":
- version: 4.0.9
- resolution: "@types/js-yaml@npm:4.0.9"
- checksum: 10c0/24de857aa8d61526bbfbbaa383aa538283ad17363fcd5bb5148e2c7f604547db36646440e739d78241ed008702a8920665d1add5618687b6743858fae00da211
- languageName: node
- linkType: hard
-
-"@types/json5@npm:^0.0.29":
- version: 0.0.29
- resolution: "@types/json5@npm:0.0.29"
- checksum: 10c0/6bf5337bc447b706bb5b4431d37686aa2ea6d07cfd6f79cc31de80170d6ff9b1c7384a9c0ccbc45b3f512bae9e9f75c2e12109806a15331dc94e8a8db6dbb4ac
- languageName: node
- linkType: hard
-
-"@types/katex@npm:^0.16.0":
- version: 0.16.7
- resolution: "@types/katex@npm:0.16.7"
- checksum: 10c0/68dcb9f68a90513ec78ca0196a142e15c2a2c270b1520d752bafd47a99207115085a64087b50140359017d7e9c870b3c68e7e4d36668c9e348a9ef0c48919b5a
- languageName: node
- linkType: hard
-
-"@types/liftoff@npm:^4.0.3":
- version: 4.0.3
- resolution: "@types/liftoff@npm:4.0.3"
- dependencies:
- "@types/fined": "npm:*"
- "@types/node": "npm:*"
- checksum: 10c0/21640018cac5a52ff552c1fea275965b59fe033f31d7fb6db47238d95ba0877c27fddd6d1984cd2fa0293097c941c85a7f7f5f3b9b689b90a12739f439fa1ba6
- languageName: node
- linkType: hard
-
-"@types/mdast@npm:^3.0.0":
- version: 3.0.15
- resolution: "@types/mdast@npm:3.0.15"
- dependencies:
- "@types/unist": "npm:^2"
- checksum: 10c0/fcbf716c03d1ed5465deca60862e9691414f9c43597c288c7d2aefbe274552e1bbd7aeee91b88a02597e88a28c139c57863d0126fcf8416a95fdc681d054ee3d
- languageName: node
- linkType: hard
-
-"@types/mdast@npm:^4.0.0":
- version: 4.0.4
- resolution: "@types/mdast@npm:4.0.4"
- dependencies:
- "@types/unist": "npm:*"
- checksum: 10c0/84f403dbe582ee508fd9c7643ac781ad8597fcbfc9ccb8d4715a2c92e4545e5772cbd0dbdf18eda65789386d81b009967fdef01b24faf6640f817287f54d9c82
- languageName: node
- linkType: hard
-
-"@types/mdx@npm:^2.0.0":
- version: 2.0.13
- resolution: "@types/mdx@npm:2.0.13"
- checksum: 10c0/5edf1099505ac568da55f9ae8a93e7e314e8cbc13d3445d0be61b75941226b005e1390d9b95caecf5dcb00c9d1bab2f1f60f6ff9876dc091a48b547495007720
- languageName: node
- linkType: hard
-
-"@types/ms@npm:*":
- version: 2.1.0
- resolution: "@types/ms@npm:2.1.0"
- checksum: 10c0/5ce692ffe1549e1b827d99ef8ff71187457e0eb44adbae38fdf7b9a74bae8d20642ee963c14516db1d35fa2652e65f47680fdf679dcbde52bbfadd021f497225
- languageName: node
- linkType: hard
-
-"@types/node@npm:*":
- version: 22.15.17
- resolution: "@types/node@npm:22.15.17"
- dependencies:
- undici-types: "npm:~6.21.0"
- checksum: 10c0/fb92aa10b628683c5b965749f955bc2322485ecb0ea6c2f4cae5f2c7537a16834607e67083a9e9281faaae8d7dee9ada8d6a5c0de9a52c17d82912ef00c0fdd4
- languageName: node
- linkType: hard
-
-"@types/node@npm:^20, @types/node@npm:^20.11.26":
- version: 20.17.46
- resolution: "@types/node@npm:20.17.46"
- dependencies:
- undici-types: "npm:~6.19.2"
- checksum: 10c0/2b8cf1ea80af3c62247636fe44ec815e64978085c6f714792ad93d9cc826395b0bf7a969870f90274bf3a129b9d23994aa3a9c5e4cf00477d43f929330953662
- languageName: node
- linkType: hard
-
-"@types/prop-types@npm:*":
- version: 15.7.14
- resolution: "@types/prop-types@npm:15.7.14"
- checksum: 10c0/1ec775160bfab90b67a782d735952158c7e702ca4502968aa82565bd8e452c2de8601c8dfe349733073c31179116cf7340710160d3836aa8a1ef76d1532893b1
- languageName: node
- linkType: hard
-
-"@types/react-dom@npm:^18":
- version: 18.3.5
- resolution: "@types/react-dom@npm:18.3.5"
- peerDependencies:
- "@types/react": ^18.0.0
- checksum: 10c0/b163d35a6b32a79f5782574a7aeb12a31a647e248792bf437e6d596e2676961c394c5e3c6e91d1ce44ae90441dbaf93158efb4f051c0d61e2612f1cb04ce4faa
- languageName: node
- linkType: hard
-
-"@types/react@npm:>=16, @types/react@npm:^18":
- version: 18.3.18
- resolution: "@types/react@npm:18.3.18"
- dependencies:
- "@types/prop-types": "npm:*"
- csstype: "npm:^3.0.2"
- checksum: 10c0/8fb2b00672072135d0858dc9db07873ea107cc238b6228aaa2a9afd1ef7a64a7074078250db38afbeb19064be8ea6af5eac32d404efdd5f45e093cc4829d87f8
- languageName: node
- linkType: hard
-
-"@types/through@npm:*":
- version: 0.0.33
- resolution: "@types/through@npm:0.0.33"
- dependencies:
- "@types/node": "npm:*"
- checksum: 10c0/6a8edd7f40cd7e197318e86310a40e568cddd380609dde59b30d5cc6c5f8276ddc698905eac4b3b429eb39f2e8ee326bc20dc6e95a2cdc41c4d3fc9a1ebd4929
- languageName: node
- linkType: hard
-
-"@types/trusted-types@npm:^2.0.7":
- version: 2.0.7
- resolution: "@types/trusted-types@npm:2.0.7"
- checksum: 10c0/4c4855f10de7c6c135e0d32ce462419d8abbbc33713b31d294596c0cc34ae1fa6112a2f9da729c8f7a20707782b0d69da3b1f8df6645b0366d08825ca1522e0c
- languageName: node
- linkType: hard
-
-"@types/unist@npm:*, @types/unist@npm:^3.0.0":
- version: 3.0.3
- resolution: "@types/unist@npm:3.0.3"
- checksum: 10c0/2b1e4adcab78388e088fcc3c0ae8700f76619dbcb4741d7d201f87e2cb346bfc29a89003cfea2d76c996e1061452e14fcd737e8b25aacf949c1f2d6b2bc3dd60
- languageName: node
- linkType: hard
-
-"@types/unist@npm:^2, @types/unist@npm:^2.0.0":
- version: 2.0.11
- resolution: "@types/unist@npm:2.0.11"
- checksum: 10c0/24dcdf25a168f453bb70298145eb043cfdbb82472db0bc0b56d6d51cd2e484b9ed8271d4ac93000a80da568f2402e9339723db262d0869e2bf13bc58e081768d
- languageName: node
- linkType: hard
-
-"@types/web-bluetooth@npm:^0.0.20":
- version: 0.0.20
- resolution: "@types/web-bluetooth@npm:0.0.20"
- checksum: 10c0/3a49bd9396506af8f1b047db087aeeea9fe4301b7fad4fe06ae0f6e00d331138caae878fd09e6410658b70b4aaf10e4b191c41c1a5ff72211fe58da290c7d003
- languageName: node
- linkType: hard
-
-"@typescript-eslint/parser@npm:^5.4.2 || ^6.0.0":
- version: 6.21.0
- resolution: "@typescript-eslint/parser@npm:6.21.0"
- dependencies:
- "@typescript-eslint/scope-manager": "npm:6.21.0"
- "@typescript-eslint/types": "npm:6.21.0"
- "@typescript-eslint/typescript-estree": "npm:6.21.0"
- "@typescript-eslint/visitor-keys": "npm:6.21.0"
- debug: "npm:^4.3.4"
- peerDependencies:
- eslint: ^7.0.0 || ^8.0.0
- peerDependenciesMeta:
- typescript:
- optional: true
- checksum: 10c0/a8f99820679decd0d115c0af61903fb1de3b1b5bec412dc72b67670bf636de77ab07f2a68ee65d6da7976039bbf636907f9d5ca546db3f0b98a31ffbc225bc7d
- languageName: node
- linkType: hard
-
-"@typescript-eslint/scope-manager@npm:6.21.0":
- version: 6.21.0
- resolution: "@typescript-eslint/scope-manager@npm:6.21.0"
- dependencies:
- "@typescript-eslint/types": "npm:6.21.0"
- "@typescript-eslint/visitor-keys": "npm:6.21.0"
- checksum: 10c0/eaf868938d811cbbea33e97e44ba7050d2b6892202cea6a9622c486b85ab1cf801979edf78036179a8ba4ac26f1dfdf7fcc83a68c1ff66be0b3a8e9a9989b526
- languageName: node
- linkType: hard
-
-"@typescript-eslint/types@npm:6.21.0":
- version: 6.21.0
- resolution: "@typescript-eslint/types@npm:6.21.0"
- checksum: 10c0/020631d3223bbcff8a0da3efbdf058220a8f48a3de221563996ad1dcc30d6c08dadc3f7608cc08830d21c0d565efd2db19b557b9528921c78aabb605eef2d74d
- languageName: node
- linkType: hard
-
-"@typescript-eslint/typescript-estree@npm:6.21.0":
- version: 6.21.0
- resolution: "@typescript-eslint/typescript-estree@npm:6.21.0"
- dependencies:
- "@typescript-eslint/types": "npm:6.21.0"
- "@typescript-eslint/visitor-keys": "npm:6.21.0"
- debug: "npm:^4.3.4"
- globby: "npm:^11.1.0"
- is-glob: "npm:^4.0.3"
- minimatch: "npm:9.0.3"
- semver: "npm:^7.5.4"
- ts-api-utils: "npm:^1.0.1"
- peerDependenciesMeta:
- typescript:
- optional: true
- checksum: 10c0/af1438c60f080045ebb330155a8c9bb90db345d5069cdd5d01b67de502abb7449d6c75500519df829f913a6b3f490ade3e8215279b6bdc63d0fb0ae61034df5f
- languageName: node
- linkType: hard
-
-"@typescript-eslint/visitor-keys@npm:6.21.0":
- version: 6.21.0
- resolution: "@typescript-eslint/visitor-keys@npm:6.21.0"
- dependencies:
- "@typescript-eslint/types": "npm:6.21.0"
- eslint-visitor-keys: "npm:^3.4.1"
- checksum: 10c0/7395f69739cfa1cb83c1fb2fad30afa2a814756367302fb4facd5893eff66abc807e8d8f63eba94ed3b0fe0c1c996ac9a1680bcbf0f83717acedc3f2bb724fbf
- languageName: node
- linkType: hard
-
-"@uiw/codemirror-themes@npm:^4.21.21":
- version: 4.23.12
- resolution: "@uiw/codemirror-themes@npm:4.23.12"
- dependencies:
- "@codemirror/language": "npm:^6.0.0"
- "@codemirror/state": "npm:^6.0.0"
- "@codemirror/view": "npm:^6.0.0"
- peerDependencies:
- "@codemirror/language": ">=6.0.0"
- "@codemirror/state": ">=6.0.0"
- "@codemirror/view": ">=6.0.0"
- checksum: 10c0/9b7f693f5e854c03e08533debb2931b143fedd3c131d90494649237ca6a2f82375a9053ab4a3980c0d25149908b94c1d4e314588d24708f3a106281af22f3904
- languageName: node
- linkType: hard
-
-"@ungap/structured-clone@npm:^1.0.0, @ungap/structured-clone@npm:^1.2.0":
- version: 1.3.0
- resolution: "@ungap/structured-clone@npm:1.3.0"
- checksum: 10c0/0fc3097c2540ada1fc340ee56d58d96b5b536a2a0dab6e3ec17d4bfc8c4c86db345f61a375a8185f9da96f01c69678f836a2b57eeaa9e4b8eeafd26428e57b0a
- languageName: node
- linkType: hard
-
-"@unhead/dom@npm:1.11.20":
- version: 1.11.20
- resolution: "@unhead/dom@npm:1.11.20"
- dependencies:
- "@unhead/schema": "npm:1.11.20"
- "@unhead/shared": "npm:1.11.20"
- checksum: 10c0/344a61a00418ddc6f06b33f313b589945df18e43af29ab8e19e1df97a102f55bfbc7e8e163f7e8f0a415c58c48ad9878d552b29fdf83080e05cdcf30724a17c6
- languageName: node
- linkType: hard
-
-"@unhead/schema@npm:1.11.20, @unhead/schema@npm:^1.9.5":
- version: 1.11.20
- resolution: "@unhead/schema@npm:1.11.20"
- dependencies:
- hookable: "npm:^5.5.3"
- zhead: "npm:^2.2.4"
- checksum: 10c0/f2f968639bbd18f90ddfb83b77c9256bc4c0379ab75efa24dc759f3f597aae707d4dde97df690823f8902eab31d73a5faa8bdd8daf18c6ac8e4503a78b42be74
- languageName: node
- linkType: hard
-
-"@unhead/shared@npm:1.11.20":
- version: 1.11.20
- resolution: "@unhead/shared@npm:1.11.20"
- dependencies:
- "@unhead/schema": "npm:1.11.20"
- packrup: "npm:^0.1.2"
- checksum: 10c0/65ab0230e6338541f7a62e131c6d82b1160c71c86479fdb17d733fb5187422f6e287739cf50a1e7556690fb10951990d06e861e7aa3a90def479cb7a5ec638fa
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-darwin-arm64@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-darwin-arm64@npm:1.7.2"
- conditions: os=darwin & cpu=arm64
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-darwin-x64@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-darwin-x64@npm:1.7.2"
- conditions: os=darwin & cpu=x64
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-freebsd-x64@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-freebsd-x64@npm:1.7.2"
- conditions: os=freebsd & cpu=x64
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-linux-arm-gnueabihf@npm:1.7.2"
- conditions: os=linux & cpu=arm
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-linux-arm-musleabihf@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-linux-arm-musleabihf@npm:1.7.2"
- conditions: os=linux & cpu=arm
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-linux-arm64-gnu@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-linux-arm64-gnu@npm:1.7.2"
- conditions: os=linux & cpu=arm64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-linux-arm64-musl@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-linux-arm64-musl@npm:1.7.2"
- conditions: os=linux & cpu=arm64 & libc=musl
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-linux-ppc64-gnu@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-linux-ppc64-gnu@npm:1.7.2"
- conditions: os=linux & cpu=ppc64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-linux-riscv64-gnu@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-linux-riscv64-gnu@npm:1.7.2"
- conditions: os=linux & cpu=riscv64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-linux-riscv64-musl@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-linux-riscv64-musl@npm:1.7.2"
- conditions: os=linux & cpu=riscv64 & libc=musl
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-linux-s390x-gnu@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-linux-s390x-gnu@npm:1.7.2"
- conditions: os=linux & cpu=s390x & libc=glibc
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-linux-x64-gnu@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-linux-x64-gnu@npm:1.7.2"
- conditions: os=linux & cpu=x64 & libc=glibc
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-linux-x64-musl@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-linux-x64-musl@npm:1.7.2"
- conditions: os=linux & cpu=x64 & libc=musl
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-wasm32-wasi@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-wasm32-wasi@npm:1.7.2"
- dependencies:
- "@napi-rs/wasm-runtime": "npm:^0.2.9"
- conditions: cpu=wasm32
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-win32-arm64-msvc@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-win32-arm64-msvc@npm:1.7.2"
- conditions: os=win32 & cpu=arm64
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-win32-ia32-msvc@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-win32-ia32-msvc@npm:1.7.2"
- conditions: os=win32 & cpu=ia32
- languageName: node
- linkType: hard
-
-"@unrs/resolver-binding-win32-x64-msvc@npm:1.7.2":
- version: 1.7.2
- resolution: "@unrs/resolver-binding-win32-x64-msvc@npm:1.7.2"
- conditions: os=win32 & cpu=x64
- languageName: node
- linkType: hard
-
-"@vcarl/remark-headings@npm:^0.1.0":
- version: 0.1.0
- resolution: "@vcarl/remark-headings@npm:0.1.0"
- dependencies:
- mdast-util-to-string: "npm:^3.1.0"
- unist-util-visit: "npm:^4.0.0"
- checksum: 10c0/a3c6c90b18d3e3f622426a93f05d07ab866a6ab7727dd710c89bf9c0ee58aeac8f923b2d5b5506a34125ca11f864e002ce24a7c21fb16e51082576b1df89bd23
- languageName: node
- linkType: hard
-
-"@vitest/expect@npm:2.0.5":
- version: 2.0.5
- resolution: "@vitest/expect@npm:2.0.5"
- dependencies:
- "@vitest/spy": "npm:2.0.5"
- "@vitest/utils": "npm:2.0.5"
- chai: "npm:^5.1.1"
- tinyrainbow: "npm:^1.2.0"
- checksum: 10c0/08cb1b0f106d16a5b60db733e3d436fa5eefc68571488eb570dfe4f599f214ab52e4342273b03dbe12331cc6c0cdc325ac6c94f651ad254cd62f3aa0e3d185aa
- languageName: node
- linkType: hard
-
-"@vitest/pretty-format@npm:2.0.5":
- version: 2.0.5
- resolution: "@vitest/pretty-format@npm:2.0.5"
- dependencies:
- tinyrainbow: "npm:^1.2.0"
- checksum: 10c0/236c0798c5170a0b5ad5d4bd06118533738e820b4dd30079d8fbcb15baee949d41c60f42a9f769906c4a5ce366d7ef11279546070646c0efc03128c220c31f37
- languageName: node
- linkType: hard
-
-"@vitest/pretty-format@npm:2.1.9":
- version: 2.1.9
- resolution: "@vitest/pretty-format@npm:2.1.9"
- dependencies:
- tinyrainbow: "npm:^1.2.0"
- checksum: 10c0/155f9ede5090eabed2a73361094bb35ed4ec6769ae3546d2a2af139166569aec41bb80e031c25ff2da22b71dd4ed51e5468e66a05e6aeda5f14b32e30bc18f00
- languageName: node
- linkType: hard
-
-"@vitest/spy@npm:2.0.5":
- version: 2.0.5
- resolution: "@vitest/spy@npm:2.0.5"
- dependencies:
- tinyspy: "npm:^3.0.0"
- checksum: 10c0/70634c21921eb271b54d2986c21d7ab6896a31c0f4f1d266940c9bafb8ac36237846d6736638cbf18b958bd98e5261b158a6944352742accfde50b7818ff655e
- languageName: node
- linkType: hard
-
-"@vitest/utils@npm:2.0.5":
- version: 2.0.5
- resolution: "@vitest/utils@npm:2.0.5"
- dependencies:
- "@vitest/pretty-format": "npm:2.0.5"
- estree-walker: "npm:^3.0.3"
- loupe: "npm:^3.1.1"
- tinyrainbow: "npm:^1.2.0"
- checksum: 10c0/0d1de748298f07a50281e1ba058b05dcd58da3280c14e6f016265e950bd79adab6b97822de8f0ea82d3070f585654801a9b1bcf26db4372e51cf7746bf86d73b
- languageName: node
- linkType: hard
-
-"@vitest/utils@npm:^2.1.1":
- version: 2.1.9
- resolution: "@vitest/utils@npm:2.1.9"
- dependencies:
- "@vitest/pretty-format": "npm:2.1.9"
- loupe: "npm:^3.1.2"
- tinyrainbow: "npm:^1.2.0"
- checksum: 10c0/81a346cd72b47941f55411f5df4cc230e5f740d1e97e0d3f771b27f007266fc1f28d0438582f6409ea571bc0030ed37f684c64c58d1947d6298d770c21026fdf
- languageName: node
- linkType: hard
-
-"@vueuse/core@npm:^10.9.0":
- version: 10.11.1
- resolution: "@vueuse/core@npm:10.11.1"
- dependencies:
- "@types/web-bluetooth": "npm:^0.0.20"
- "@vueuse/metadata": "npm:10.11.1"
- "@vueuse/shared": "npm:10.11.1"
- vue-demi: "npm:>=0.14.8"
- checksum: 10c0/6a974c1510ce84e652e3d180a4f4373e37e59a5ec025a7a8cec7f144a4ccff25dbdd82e3143ffb057323f467a1076b39da30953981e822c4bd41a7841121afee
- languageName: node
- linkType: hard
-
-"@vueuse/metadata@npm:10.11.1":
- version: 10.11.1
- resolution: "@vueuse/metadata@npm:10.11.1"
- checksum: 10c0/c252056aa7e7bd5d207791a2e3b415dcb81fef5b24bfe18cefdec026ae9b7e5a5813100d2e55262fc66feafe15ccdc11a69351d724d848fafe4b3b052e559283
- languageName: node
- linkType: hard
-
-"@vueuse/shared@npm:10.11.1":
- version: 10.11.1
- resolution: "@vueuse/shared@npm:10.11.1"
- dependencies:
- vue-demi: "npm:>=0.14.8"
- checksum: 10c0/22c4f04be8fdb5e95535cf20f13956fc1f3707540f3730282905e6f9b24f314ada28292e82f4401d88b2c1fcf7fc7203011260958f517abc2b756779243147e3
- languageName: node
- linkType: hard
-
-"abbrev@npm:^3.0.0":
- version: 3.0.1
- resolution: "abbrev@npm:3.0.1"
- checksum: 10c0/21ba8f574ea57a3106d6d35623f2c4a9111d9ee3e9a5be47baed46ec2457d2eac46e07a5c4a60186f88cb98abbe3e24f2d4cca70bc2b12f1692523e2209a9ccf
- languageName: node
- linkType: hard
-
-"acorn-jsx@npm:^5.0.0, acorn-jsx@npm:^5.3.2":
- version: 5.3.2
- resolution: "acorn-jsx@npm:5.3.2"
- peerDependencies:
- acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- checksum: 10c0/4c54868fbef3b8d58927d5e33f0a4de35f59012fe7b12cf9dfbb345fb8f46607709e1c4431be869a23fb63c151033d84c4198fa9f79385cec34fcb1dd53974c1
- languageName: node
- linkType: hard
-
-"acorn@npm:^8.0.0, acorn@npm:^8.9.0":
- version: 8.14.1
- resolution: "acorn@npm:8.14.1"
- bin:
- acorn: bin/acorn
- checksum: 10c0/dbd36c1ed1d2fa3550140000371fcf721578095b18777b85a79df231ca093b08edc6858d75d6e48c73e431c174dcf9214edbd7e6fa5911b93bd8abfa54e47123
- languageName: node
- linkType: hard
-
-"acorn@npm:^8.14.0":
- version: 8.15.0
- resolution: "acorn@npm:8.15.0"
- bin:
- acorn: bin/acorn
- checksum: 10c0/dec73ff59b7d6628a01eebaece7f2bdb8bb62b9b5926dcad0f8931f2b8b79c2be21f6c68ac095592adb5adb15831a3635d9343e6a91d028bbe85d564875ec3ec
- languageName: node
- linkType: hard
-
-"agent-base@npm:^7.1.0, agent-base@npm:^7.1.2":
- version: 7.1.4
- resolution: "agent-base@npm:7.1.4"
- checksum: 10c0/c2c9ab7599692d594b6a161559ada307b7a624fa4c7b03e3afdb5a5e31cd0e53269115b620fcab024c5ac6a6f37fa5eb2e004f076ad30f5f7e6b8b671f7b35fe
- languageName: node
- linkType: hard
-
-"aggregate-error@npm:^4.0.0":
- version: 4.0.1
- resolution: "aggregate-error@npm:4.0.1"
- dependencies:
- clean-stack: "npm:^4.0.0"
- indent-string: "npm:^5.0.0"
- checksum: 10c0/75fd739f5c4c60a667cce35ccaf0edf135e147ef0be9a029cab75de14ac9421779b15339d562e58d25b233ea0ef2bbd4c916f149fdbcb73c2b9a62209e611343
- languageName: node
- linkType: hard
-
-"ajv-draft-04@npm:^1.0.0":
- version: 1.0.0
- resolution: "ajv-draft-04@npm:1.0.0"
- peerDependencies:
- ajv: ^8.5.0
- peerDependenciesMeta:
- ajv:
- optional: true
- checksum: 10c0/6044310bd38c17d77549fd326bd40ce1506fa10b0794540aa130180808bf94117fac8c9b448c621512bea60e4a947278f6a978e87f10d342950c15b33ddd9271
- languageName: node
- linkType: hard
-
-"ajv-formats@npm:^2.1.1":
- version: 2.1.1
- resolution: "ajv-formats@npm:2.1.1"
- dependencies:
- ajv: "npm:^8.0.0"
- peerDependencies:
- ajv: ^8.0.0
- peerDependenciesMeta:
- ajv:
- optional: true
- checksum: 10c0/e43ba22e91b6a48d96224b83d260d3a3a561b42d391f8d3c6d2c1559f9aa5b253bfb306bc94bbeca1d967c014e15a6efe9a207309e95b3eaae07fcbcdc2af662
- languageName: node
- linkType: hard
-
-"ajv@npm:^6.12.4":
- version: 6.12.6
- resolution: "ajv@npm:6.12.6"
- dependencies:
- fast-deep-equal: "npm:^3.1.1"
- fast-json-stable-stringify: "npm:^2.0.0"
- json-schema-traverse: "npm:^0.4.1"
- uri-js: "npm:^4.2.2"
- checksum: 10c0/41e23642cbe545889245b9d2a45854ebba51cda6c778ebced9649420d9205f2efb39cb43dbc41e358409223b1ea43303ae4839db682c848b891e4811da1a5a71
- languageName: node
- linkType: hard
-
-"ajv@npm:^8.0.0, ajv@npm:^8.12.0":
- version: 8.17.1
- resolution: "ajv@npm:8.17.1"
- dependencies:
- fast-deep-equal: "npm:^3.1.3"
- fast-uri: "npm:^3.0.1"
- json-schema-traverse: "npm:^1.0.0"
- require-from-string: "npm:^2.0.2"
- checksum: 10c0/ec3ba10a573c6b60f94639ffc53526275917a2df6810e4ab5a6b959d87459f9ef3f00d5e7865b82677cb7d21590355b34da14d1d0b9c32d75f95a187e76fff35
- languageName: node
- linkType: hard
-
-"ansi-escapes@npm:^4.3.2":
- version: 4.3.2
- resolution: "ansi-escapes@npm:4.3.2"
- dependencies:
- type-fest: "npm:^0.21.3"
- checksum: 10c0/da917be01871525a3dfcf925ae2977bc59e8c513d4423368645634bf5d4ceba5401574eb705c1e92b79f7292af5a656f78c5725a4b0e1cec97c4b413705c1d50
- languageName: node
- linkType: hard
-
-"ansi-regex@npm:^5.0.1":
- version: 5.0.1
- resolution: "ansi-regex@npm:5.0.1"
- checksum: 10c0/9a64bb8627b434ba9327b60c027742e5d17ac69277960d041898596271d992d4d52ba7267a63ca10232e29f6107fc8a835f6ce8d719b88c5f8493f8254813737
- languageName: node
- linkType: hard
-
-"ansi-regex@npm:^6.0.1":
- version: 6.1.0
- resolution: "ansi-regex@npm:6.1.0"
- checksum: 10c0/a91daeddd54746338478eef88af3439a7edf30f8e23196e2d6ed182da9add559c601266dbef01c2efa46a958ad6f1f8b176799657616c702b5b02e799e7fd8dc
- languageName: node
- linkType: hard
-
-"ansi-sequence-parser@npm:^1.1.0":
- version: 1.1.3
- resolution: "ansi-sequence-parser@npm:1.1.3"
- checksum: 10c0/49649f14765b7864158f070747889d68048f1629024eae1ce82f548616fdd89c3717ba0fa7b39a766c58c7806307f78add99e41e3ccf5db8af4fb6f0f50b9f8a
- languageName: node
- linkType: hard
-
-"ansi-styles@npm:^3.1.0":
- version: 3.2.1
- resolution: "ansi-styles@npm:3.2.1"
- dependencies:
- color-convert: "npm:^1.9.0"
- checksum: 10c0/ece5a8ef069fcc5298f67e3f4771a663129abd174ea2dfa87923a2be2abf6cd367ef72ac87942da00ce85bd1d651d4cd8595aebdb1b385889b89b205860e977b
- languageName: node
- linkType: hard
-
-"ansi-styles@npm:^4.0.0, ansi-styles@npm:^4.1.0":
- version: 4.3.0
- resolution: "ansi-styles@npm:4.3.0"
- dependencies:
- color-convert: "npm:^2.0.1"
- checksum: 10c0/895a23929da416f2bd3de7e9cb4eabd340949328ab85ddd6e484a637d8f6820d485f53933446f5291c3b760cbc488beb8e88573dd0f9c7daf83dccc8fe81b041
- languageName: node
- linkType: hard
-
-"ansi-styles@npm:^5.0.0":
- version: 5.2.0
- resolution: "ansi-styles@npm:5.2.0"
- checksum: 10c0/9c4ca80eb3c2fb7b33841c210d2f20807f40865d27008d7c3f707b7f95cab7d67462a565e2388ac3285b71cb3d9bb2173de8da37c57692a362885ec34d6e27df
- languageName: node
- linkType: hard
-
-"ansi-styles@npm:^6.1.0":
- version: 6.2.1
- resolution: "ansi-styles@npm:6.2.1"
- checksum: 10c0/5d1ec38c123984bcedd996eac680d548f31828bd679a66db2bdf11844634dde55fec3efa9c6bb1d89056a5e79c1ac540c4c784d592ea1d25028a92227d2f2d5c
- languageName: node
- linkType: hard
-
-"any-promise@npm:^1.0.0":
- version: 1.3.0
- resolution: "any-promise@npm:1.3.0"
- checksum: 10c0/60f0298ed34c74fef50daab88e8dab786036ed5a7fad02e012ab57e376e0a0b4b29e83b95ea9b5e7d89df762f5f25119b83e00706ecaccb22cfbacee98d74889
- languageName: node
- linkType: hard
-
-"anymatch@npm:~3.1.2":
- version: 3.1.3
- resolution: "anymatch@npm:3.1.3"
- dependencies:
- normalize-path: "npm:^3.0.0"
- picomatch: "npm:^2.0.4"
- checksum: 10c0/57b06ae984bc32a0d22592c87384cd88fe4511b1dd7581497831c56d41939c8a001b28e7b853e1450f2bf61992dfcaa8ae2d0d161a0a90c4fb631ef07098fbac
- languageName: node
- linkType: hard
-
-"arch@npm:^2.1.0":
- version: 2.2.0
- resolution: "arch@npm:2.2.0"
- checksum: 10c0/4ceaf8d8207817c216ebc4469742052cb0a097bc45d9b7fcd60b7507220da545a28562ab5bdd4dfe87921bb56371a0805da4e10d704e01f93a15f83240f1284c
- languageName: node
- linkType: hard
-
-"arg@npm:1.0.0":
- version: 1.0.0
- resolution: "arg@npm:1.0.0"
- checksum: 10c0/10bbbda299b1a5d5f1cc6492bdea9413f148c36b58e7abc49e8b8337047eec5db154c1d2f99e942c4b777ae28215fc28506d303d7e30bcd80ca1ad7baeb6ce28
- languageName: node
- linkType: hard
-
-"arg@npm:^5.0.2":
- version: 5.0.2
- resolution: "arg@npm:5.0.2"
- checksum: 10c0/ccaf86f4e05d342af6666c569f844bec426595c567d32a8289715087825c2ca7edd8a3d204e4d2fb2aa4602e09a57d0c13ea8c9eea75aac3dbb4af5514e6800e
- languageName: node
- linkType: hard
-
-"argparse@npm:^1.0.7":
- version: 1.0.10
- resolution: "argparse@npm:1.0.10"
- dependencies:
- sprintf-js: "npm:~1.0.2"
- checksum: 10c0/b2972c5c23c63df66bca144dbc65d180efa74f25f8fd9b7d9a0a6c88ae839db32df3d54770dcb6460cf840d232b60695d1a6b1053f599d84e73f7437087712de
- languageName: node
- linkType: hard
-
-"argparse@npm:^2.0.1":
- version: 2.0.1
- resolution: "argparse@npm:2.0.1"
- checksum: 10c0/c5640c2d89045371c7cedd6a70212a04e360fd34d6edeae32f6952c63949e3525ea77dbec0289d8213a99bbaeab5abfa860b5c12cf88a2e6cf8106e90dd27a7e
- languageName: node
- linkType: hard
-
-"aria-hidden@npm:^1.2.4":
- version: 1.2.4
- resolution: "aria-hidden@npm:1.2.4"
- dependencies:
- tslib: "npm:^2.0.0"
- checksum: 10c0/8abcab2e1432efc4db415e97cb3959649ddf52c8fc815d7384f43f3d3abf56f1c12852575d00df9a8927f421d7e0712652dd5f8db244ea57634344e29ecfc74a
- languageName: node
- linkType: hard
-
-"aria-query@npm:5.3.0":
- version: 5.3.0
- resolution: "aria-query@npm:5.3.0"
- dependencies:
- dequal: "npm:^2.0.3"
- checksum: 10c0/2bff0d4eba5852a9dd578ecf47eaef0e82cc52569b48469b0aac2db5145db0b17b7a58d9e01237706d1e14b7a1b0ac9b78e9c97027ad97679dd8f91b85da1469
- languageName: node
- linkType: hard
-
-"aria-query@npm:^5.0.0, aria-query@npm:^5.3.2":
- version: 5.3.2
- resolution: "aria-query@npm:5.3.2"
- checksum: 10c0/003c7e3e2cff5540bf7a7893775fc614de82b0c5dde8ae823d47b7a28a9d4da1f7ed85f340bdb93d5649caa927755f0e31ecc7ab63edfdfc00c8ef07e505e03e
- languageName: node
- linkType: hard
-
-"array-buffer-byte-length@npm:^1.0.1, array-buffer-byte-length@npm:^1.0.2":
- version: 1.0.2
- resolution: "array-buffer-byte-length@npm:1.0.2"
- dependencies:
- call-bound: "npm:^1.0.3"
- is-array-buffer: "npm:^3.0.5"
- checksum: 10c0/74e1d2d996941c7a1badda9cabb7caab8c449db9086407cad8a1b71d2604cc8abf105db8ca4e02c04579ec58b7be40279ddb09aea4784832984485499f48432d
- languageName: node
- linkType: hard
-
-"array-each@npm:^1.0.1":
- version: 1.0.1
- resolution: "array-each@npm:1.0.1"
- checksum: 10c0/b5951ac450b560849143722d6785672ae71f5e9b061f11e7e2f775513a952e583e8bcedbba538a08049e235f5583756efec440fc6740a9b47b411cb487f65a9b
- languageName: node
- linkType: hard
-
-"array-includes@npm:^3.1.6, array-includes@npm:^3.1.8":
- version: 3.1.8
- resolution: "array-includes@npm:3.1.8"
- dependencies:
- call-bind: "npm:^1.0.7"
- define-properties: "npm:^1.2.1"
- es-abstract: "npm:^1.23.2"
- es-object-atoms: "npm:^1.0.0"
- get-intrinsic: "npm:^1.2.4"
- is-string: "npm:^1.0.7"
- checksum: 10c0/5b1004d203e85873b96ddc493f090c9672fd6c80d7a60b798da8a14bff8a670ff95db5aafc9abc14a211943f05220dacf8ea17638ae0af1a6a47b8c0b48ce370
- languageName: node
- linkType: hard
-
-"array-slice@npm:^1.0.0":
- version: 1.1.0
- resolution: "array-slice@npm:1.1.0"
- checksum: 10c0/dfefd705905f428b6c4cace2a787f308b5a64db5411e33cdf8ff883b6643f1703e48ac152b74eea482f8f6765fdf78b5277e2bad7840be2b4d5c23777db3266f
- languageName: node
- linkType: hard
-
-"array-union@npm:^2.1.0":
- version: 2.1.0
- resolution: "array-union@npm:2.1.0"
- checksum: 10c0/429897e68110374f39b771ec47a7161fc6a8fc33e196857c0a396dc75df0b5f65e4d046674db764330b6bb66b39ef48dd7c53b6a2ee75cfb0681e0c1a7033962
- languageName: node
- linkType: hard
-
-"array.prototype.findlast@npm:^1.2.5":
- version: 1.2.5
- resolution: "array.prototype.findlast@npm:1.2.5"
- dependencies:
- call-bind: "npm:^1.0.7"
- define-properties: "npm:^1.2.1"
- es-abstract: "npm:^1.23.2"
- es-errors: "npm:^1.3.0"
- es-object-atoms: "npm:^1.0.0"
- es-shim-unscopables: "npm:^1.0.2"
- checksum: 10c0/ddc952b829145ab45411b9d6adcb51a8c17c76bf89c9dd64b52d5dffa65d033da8c076ed2e17091779e83bc892b9848188d7b4b33453c5565e65a92863cb2775
- languageName: node
- linkType: hard
-
-"array.prototype.findlastindex@npm:^1.2.5":
- version: 1.2.5
- resolution: "array.prototype.findlastindex@npm:1.2.5"
- dependencies:
- call-bind: "npm:^1.0.7"
- define-properties: "npm:^1.2.1"
- es-abstract: "npm:^1.23.2"
- es-errors: "npm:^1.3.0"
- es-object-atoms: "npm:^1.0.0"
- es-shim-unscopables: "npm:^1.0.2"
- checksum: 10c0/962189487728b034f3134802b421b5f39e42ee2356d13b42d2ddb0e52057ffdcc170b9524867f4f0611a6f638f4c19b31e14606e8bcbda67799e26685b195aa3
- languageName: node
- linkType: hard
-
-"array.prototype.flat@npm:^1.3.1, array.prototype.flat@npm:^1.3.2":
- version: 1.3.3
- resolution: "array.prototype.flat@npm:1.3.3"
- dependencies:
- call-bind: "npm:^1.0.8"
- define-properties: "npm:^1.2.1"
- es-abstract: "npm:^1.23.5"
- es-shim-unscopables: "npm:^1.0.2"
- checksum: 10c0/d90e04dfbc43bb96b3d2248576753d1fb2298d2d972e29ca7ad5ec621f0d9e16ff8074dae647eac4f31f4fb7d3f561a7ac005fb01a71f51705a13b5af06a7d8a
- languageName: node
- linkType: hard
-
-"array.prototype.flatmap@npm:^1.3.2, array.prototype.flatmap@npm:^1.3.3":
- version: 1.3.3
- resolution: "array.prototype.flatmap@npm:1.3.3"
- dependencies:
- call-bind: "npm:^1.0.8"
- define-properties: "npm:^1.2.1"
- es-abstract: "npm:^1.23.5"
- es-shim-unscopables: "npm:^1.0.2"
- checksum: 10c0/ba899ea22b9dc9bf276e773e98ac84638ed5e0236de06f13d63a90b18ca9e0ec7c97d622d899796e3773930b946cd2413d098656c0c5d8cc58c6f25c21e6bd54
- languageName: node
- linkType: hard
-
-"array.prototype.tosorted@npm:^1.1.4":
- version: 1.1.4
- resolution: "array.prototype.tosorted@npm:1.1.4"
- dependencies:
- call-bind: "npm:^1.0.7"
- define-properties: "npm:^1.2.1"
- es-abstract: "npm:^1.23.3"
- es-errors: "npm:^1.3.0"
- es-shim-unscopables: "npm:^1.0.2"
- checksum: 10c0/eb3c4c4fc0381b0bf6dba2ea4d48d367c2827a0d4236a5718d97caaccc6b78f11f4cadf090736e86301d295a6aa4967ed45568f92ced51be8cbbacd9ca410943
- languageName: node
- linkType: hard
-
-"arraybuffer.prototype.slice@npm:^1.0.4":
- version: 1.0.4
- resolution: "arraybuffer.prototype.slice@npm:1.0.4"
- dependencies:
- array-buffer-byte-length: "npm:^1.0.1"
- call-bind: "npm:^1.0.8"
- define-properties: "npm:^1.2.1"
- es-abstract: "npm:^1.23.5"
- es-errors: "npm:^1.3.0"
- get-intrinsic: "npm:^1.2.6"
- is-array-buffer: "npm:^3.0.4"
- checksum: 10c0/2f2459caa06ae0f7f615003f9104b01f6435cc803e11bd2a655107d52a1781dc040532dc44d93026b694cc18793993246237423e13a5337e86b43ed604932c06
- languageName: node
- linkType: hard
-
-"assertion-error@npm:^2.0.1":
- version: 2.0.1
- resolution: "assertion-error@npm:2.0.1"
- checksum: 10c0/bbbcb117ac6480138f8c93cf7f535614282dea9dc828f540cdece85e3c665e8f78958b96afac52f29ff883c72638e6a87d469ecc9fe5bc902df03ed24a55dba8
- languageName: node
- linkType: hard
-
-"ast-types-flow@npm:^0.0.8":
- version: 0.0.8
- resolution: "ast-types-flow@npm:0.0.8"
- checksum: 10c0/f2a0ba8055353b743c41431974521e5e852a9824870cd6fce2db0e538ac7bf4da406bbd018d109af29ff3f8f0993f6a730c9eddbd0abd031fbcb29ca75c1014e
- languageName: node
- linkType: hard
-
-"astring@npm:^1.8.0":
- version: 1.9.0
- resolution: "astring@npm:1.9.0"
- bin:
- astring: bin/astring
- checksum: 10c0/e7519544d9824494e80ef0e722bb3a0c543a31440d59691c13aeaceb75b14502af536b23f08db50aa6c632dafaade54caa25f0788aa7550b6b2d6e2df89e0830
- languageName: node
- linkType: hard
-
-"astro-mermaid@npm:^1.0.4":
- version: 1.0.4
- resolution: "astro-mermaid@npm:1.0.4"
- dependencies:
- mdast-util-to-string: "npm:^4.0.0"
- unist-util-visit: "npm:^5.0.0"
- peerDependencies:
- astro: ^4.0.0 || ^5.0.0
- mermaid: ^10.0.0 || ^11.0.0
- checksum: 10c0/2a333ae321ab127603f8d736821a1f9178f2e139b2fce54c684c235d969e5c991805daecbb29489bdd359c81c5af712dbbd2dad5edd5d43f69ff61af4b3f2521
- languageName: node
- linkType: hard
-
-"async-function@npm:^1.0.0":
- version: 1.0.0
- resolution: "async-function@npm:1.0.0"
- checksum: 10c0/669a32c2cb7e45091330c680e92eaeb791bc1d4132d827591e499cd1f776ff5a873e77e5f92d0ce795a8d60f10761dec9ddfe7225a5de680f5d357f67b1aac73
- languageName: node
- linkType: hard
-
-"asynckit@npm:^0.4.0":
- version: 0.4.0
- resolution: "asynckit@npm:0.4.0"
- checksum: 10c0/d73e2ddf20c4eb9337e1b3df1a0f6159481050a5de457c55b14ea2e5cb6d90bb69e004c9af54737a5ee0917fcf2c9e25de67777bbe58261847846066ba75bc9d
- languageName: node
- linkType: hard
-
-"autoprefixer@npm:^10.0.1":
- version: 10.4.21
- resolution: "autoprefixer@npm:10.4.21"
- dependencies:
- browserslist: "npm:^4.24.4"
- caniuse-lite: "npm:^1.0.30001702"
- fraction.js: "npm:^4.3.7"
- normalize-range: "npm:^0.1.2"
- picocolors: "npm:^1.1.1"
- postcss-value-parser: "npm:^4.2.0"
- peerDependencies:
- postcss: ^8.1.0
- bin:
- autoprefixer: bin/autoprefixer
- checksum: 10c0/de5b71d26d0baff4bbfb3d59f7cf7114a6030c9eeb66167acf49a32c5b61c68e308f1e0f869d92334436a221035d08b51cd1b2f2c4689b8d955149423c16d4d4
- languageName: node
- linkType: hard
-
-"available-typed-arrays@npm:^1.0.7":
- version: 1.0.7
- resolution: "available-typed-arrays@npm:1.0.7"
- dependencies:
- possible-typed-array-names: "npm:^1.0.0"
- checksum: 10c0/d07226ef4f87daa01bd0fe80f8f310982e345f372926da2e5296aecc25c41cab440916bbaa4c5e1034b453af3392f67df5961124e4b586df1e99793a1374bdb2
- languageName: node
- linkType: hard
-
-"axe-core@npm:^4.10.0":
- version: 4.10.3
- resolution: "axe-core@npm:4.10.3"
- checksum: 10c0/1b1c24f435b2ffe89d76eca0001cbfff42dbf012ad9bd37398b70b11f0d614281a38a28bc3069e8972e3c90ec929a8937994bd24b0ebcbaab87b8d1e241ab0c7
- languageName: node
- linkType: hard
-
-"axios@npm:^1.6.8":
- version: 1.9.0
- resolution: "axios@npm:1.9.0"
- dependencies:
- follow-redirects: "npm:^1.15.6"
- form-data: "npm:^4.0.0"
- proxy-from-env: "npm:^1.1.0"
- checksum: 10c0/9371a56886c2e43e4ff5647b5c2c3c046ed0a3d13482ef1d0135b994a628c41fbad459796f101c655e62f0c161d03883454474d2e435b2e021b1924d9f24994c
- languageName: node
- linkType: hard
-
-"axobject-query@npm:^4.1.0":
- version: 4.1.0
- resolution: "axobject-query@npm:4.1.0"
- checksum: 10c0/c470e4f95008f232eadd755b018cb55f16c03ccf39c027b941cd8820ac6b68707ce5d7368a46756db4256fbc91bb4ead368f84f7fb034b2b7932f082f6dc0775
- languageName: node
- linkType: hard
-
-"bail@npm:^2.0.0":
- version: 2.0.2
- resolution: "bail@npm:2.0.2"
- checksum: 10c0/25cbea309ef6a1f56214187004e8f34014eb015713ea01fa5b9b7e9e776ca88d0fdffd64143ac42dc91966c915a4b7b683411b56e14929fad16153fc026ffb8b
- languageName: node
- linkType: hard
-
-"balanced-match@npm:^1.0.0":
- version: 1.0.2
- resolution: "balanced-match@npm:1.0.2"
- checksum: 10c0/9308baf0a7e4838a82bbfd11e01b1cb0f0cf2893bc1676c27c2a8c0e70cbae1c59120c3268517a8ae7fb6376b4639ef81ca22582611dbee4ed28df945134aaee
- languageName: node
- linkType: hard
-
-"base64-js@npm:^1.3.1":
- version: 1.5.1
- resolution: "base64-js@npm:1.5.1"
- checksum: 10c0/f23823513b63173a001030fae4f2dabe283b99a9d324ade3ad3d148e218134676f1ee8568c877cd79ec1c53158dcf2d2ba527a97c606618928ba99dd930102bf
- languageName: node
- linkType: hard
-
-"binary-extensions@npm:^2.0.0":
- version: 2.3.0
- resolution: "binary-extensions@npm:2.3.0"
- checksum: 10c0/75a59cafc10fb12a11d510e77110c6c7ae3f4ca22463d52487709ca7f18f69d886aa387557cc9864fbdb10153d0bdb4caacabf11541f55e89ed6e18d12ece2b5
- languageName: node
- linkType: hard
-
-"bl@npm:^4.1.0":
- version: 4.1.0
- resolution: "bl@npm:4.1.0"
- dependencies:
- buffer: "npm:^5.5.0"
- inherits: "npm:^2.0.4"
- readable-stream: "npm:^3.4.0"
- checksum: 10c0/02847e1d2cb089c9dc6958add42e3cdeaf07d13f575973963335ac0fdece563a50ac770ac4c8fa06492d2dd276f6cc3b7f08c7cd9c7a7ad0f8d388b2a28def5f
- languageName: node
- linkType: hard
-
-"brace-expansion@npm:^1.1.7":
- version: 1.1.11
- resolution: "brace-expansion@npm:1.1.11"
- dependencies:
- balanced-match: "npm:^1.0.0"
- concat-map: "npm:0.0.1"
- checksum: 10c0/695a56cd058096a7cb71fb09d9d6a7070113c7be516699ed361317aca2ec169f618e28b8af352e02ab4233fb54eb0168460a40dc320bab0034b36ab59aaad668
- languageName: node
- linkType: hard
-
-"brace-expansion@npm:^2.0.1":
- version: 2.0.1
- resolution: "brace-expansion@npm:2.0.1"
- dependencies:
- balanced-match: "npm:^1.0.0"
- checksum: 10c0/b358f2fe060e2d7a87aa015979ecea07f3c37d4018f8d6deb5bd4c229ad3a0384fe6029bb76cd8be63c81e516ee52d1a0673edbe2023d53a5191732ae3c3e49f
- languageName: node
- linkType: hard
-
-"braces@npm:^3.0.3, braces@npm:~3.0.2":
- version: 3.0.3
- resolution: "braces@npm:3.0.3"
- dependencies:
- fill-range: "npm:^7.1.1"
- checksum: 10c0/7c6dfd30c338d2997ba77500539227b9d1f85e388a5f43220865201e407e076783d0881f2d297b9f80951b4c957fcf0b51c1d2d24227631643c3f7c284b0aa04
- languageName: node
- linkType: hard
-
-"browserslist@npm:^4.24.4":
- version: 4.24.5
- resolution: "browserslist@npm:4.24.5"
- dependencies:
- caniuse-lite: "npm:^1.0.30001716"
- electron-to-chromium: "npm:^1.5.149"
- node-releases: "npm:^2.0.19"
- update-browserslist-db: "npm:^1.1.3"
- bin:
- browserslist: cli.js
- checksum: 10c0/f4c1ce1a7d8fdfab5e5b88bb6e93d09e8a883c393f86801537a252da0362dbdcde4dbd97b318246c5d84c6607b2f6b47af732c1b000d6a8a881ee024bad29204
- languageName: node
- linkType: hard
-
-"buffer@npm:^5.5.0":
- version: 5.7.1
- resolution: "buffer@npm:5.7.1"
- dependencies:
- base64-js: "npm:^1.3.1"
- ieee754: "npm:^1.1.13"
- checksum: 10c0/27cac81cff434ed2876058d72e7c4789d11ff1120ef32c9de48f59eab58179b66710c488987d295ae89a228f835fc66d088652dffeb8e3ba8659f80eb091d55e
- languageName: node
- linkType: hard
-
-"busboy@npm:1.6.0":
- version: 1.6.0
- resolution: "busboy@npm:1.6.0"
- dependencies:
- streamsearch: "npm:^1.1.0"
- checksum: 10c0/fa7e836a2b82699b6e074393428b91ae579d4f9e21f5ac468e1b459a244341d722d2d22d10920cdd849743dbece6dca11d72de939fb75a7448825cf2babfba1f
- languageName: node
- linkType: hard
-
-"cacache@npm:^19.0.1":
- version: 19.0.1
- resolution: "cacache@npm:19.0.1"
- dependencies:
- "@npmcli/fs": "npm:^4.0.0"
- fs-minipass: "npm:^3.0.0"
- glob: "npm:^10.2.2"
- lru-cache: "npm:^10.0.1"
- minipass: "npm:^7.0.3"
- minipass-collect: "npm:^2.0.1"
- minipass-flush: "npm:^1.0.5"
- minipass-pipeline: "npm:^1.2.4"
- p-map: "npm:^7.0.2"
- ssri: "npm:^12.0.0"
- tar: "npm:^7.4.3"
- unique-filename: "npm:^4.0.0"
- checksum: 10c0/01f2134e1bd7d3ab68be851df96c8d63b492b1853b67f2eecb2c37bb682d37cb70bb858a16f2f0554d3c0071be6dfe21456a1ff6fa4b7eed996570d6a25ffe9c
- languageName: node
- linkType: hard
-
-"call-bind-apply-helpers@npm:^1.0.0, call-bind-apply-helpers@npm:^1.0.1, call-bind-apply-helpers@npm:^1.0.2":
- version: 1.0.2
- resolution: "call-bind-apply-helpers@npm:1.0.2"
- dependencies:
- es-errors: "npm:^1.3.0"
- function-bind: "npm:^1.1.2"
- checksum: 10c0/47bd9901d57b857590431243fea704ff18078b16890a6b3e021e12d279bbf211d039155e27d7566b374d49ee1f8189344bac9833dec7a20cdec370506361c938
- languageName: node
- linkType: hard
-
-"call-bind@npm:^1.0.7, call-bind@npm:^1.0.8":
- version: 1.0.8
- resolution: "call-bind@npm:1.0.8"
- dependencies:
- call-bind-apply-helpers: "npm:^1.0.0"
- es-define-property: "npm:^1.0.0"
- get-intrinsic: "npm:^1.2.4"
- set-function-length: "npm:^1.2.2"
- checksum: 10c0/a13819be0681d915144467741b69875ae5f4eba8961eb0bf322aab63ec87f8250eb6d6b0dcbb2e1349876412a56129ca338592b3829ef4343527f5f18a0752d4
- languageName: node
- linkType: hard
-
-"call-bound@npm:^1.0.2, call-bound@npm:^1.0.3, call-bound@npm:^1.0.4":
- version: 1.0.4
- resolution: "call-bound@npm:1.0.4"
- dependencies:
- call-bind-apply-helpers: "npm:^1.0.2"
- get-intrinsic: "npm:^1.3.0"
- checksum: 10c0/f4796a6a0941e71c766aea672f63b72bc61234c4f4964dc6d7606e3664c307e7d77845328a8f3359ce39ddb377fed67318f9ee203dea1d47e46165dcf2917644
- languageName: node
- linkType: hard
-
-"callsites@npm:^3.0.0":
- version: 3.1.0
- resolution: "callsites@npm:3.1.0"
- checksum: 10c0/fff92277400eb06c3079f9e74f3af120db9f8ea03bad0e84d9aede54bbe2d44a56cccb5f6cf12211f93f52306df87077ecec5b712794c5a9b5dac6d615a3f301
- languageName: node
- linkType: hard
-
-"camel-case@npm:^4.1.2":
- version: 4.1.2
- resolution: "camel-case@npm:4.1.2"
- dependencies:
- pascal-case: "npm:^3.1.2"
- tslib: "npm:^2.0.3"
- checksum: 10c0/bf9eefaee1f20edbed2e9a442a226793bc72336e2b99e5e48c6b7252b6f70b080fc46d8246ab91939e2af91c36cdd422e0af35161e58dd089590f302f8f64c8a
- languageName: node
- linkType: hard
-
-"camelcase-css@npm:^2.0.1":
- version: 2.0.1
- resolution: "camelcase-css@npm:2.0.1"
- checksum: 10c0/1a1a3137e8a781e6cbeaeab75634c60ffd8e27850de410c162cce222ea331cd1ba5364e8fb21c95e5ca76f52ac34b81a090925ca00a87221355746d049c6e273
- languageName: node
- linkType: hard
-
-"caniuse-lite@npm:^1.0.30001579, caniuse-lite@npm:^1.0.30001702, caniuse-lite@npm:^1.0.30001716":
- version: 1.0.30001717
- resolution: "caniuse-lite@npm:1.0.30001717"
- checksum: 10c0/6c0bb1e5182fd578ebe97ee2203250849754a4e17d985839fab527ad27e125a4c4ffce3ece5505217fedf30ea0bbc17ac9f93e9ac525c0389ccba61c6e8345dc
- languageName: node
- linkType: hard
-
-"capital-case@npm:^1.0.4":
- version: 1.0.4
- resolution: "capital-case@npm:1.0.4"
- dependencies:
- no-case: "npm:^3.0.4"
- tslib: "npm:^2.0.3"
- upper-case-first: "npm:^2.0.2"
- checksum: 10c0/6a034af73401f6e55d91ea35c190bbf8bda21714d4ea8bb8f1799311d123410a80f0875db4e3236dc3f97d74231ff4bf1c8783f2be13d7733c7d990c57387281
- languageName: node
- linkType: hard
-
-"ccount@npm:^2.0.0":
- version: 2.0.1
- resolution: "ccount@npm:2.0.1"
- checksum: 10c0/3939b1664390174484322bc3f45b798462e6c07ee6384cb3d645e0aa2f318502d174845198c1561930e1d431087f74cf1fe291ae9a4722821a9f4ba67e574350
- languageName: node
- linkType: hard
-
-"chai@npm:^5.1.1":
- version: 5.2.0
- resolution: "chai@npm:5.2.0"
- dependencies:
- assertion-error: "npm:^2.0.1"
- check-error: "npm:^2.1.1"
- deep-eql: "npm:^5.0.1"
- loupe: "npm:^3.1.0"
- pathval: "npm:^2.0.0"
- checksum: 10c0/dfd1cb719c7cebb051b727672d382a35338af1470065cb12adb01f4ee451bbf528e0e0f9ab2016af5fc1eea4df6e7f4504dc8443f8f00bd8fb87ad32dc516f7d
- languageName: node
- linkType: hard
-
-"chalk@npm:2.3.0":
- version: 2.3.0
- resolution: "chalk@npm:2.3.0"
- dependencies:
- ansi-styles: "npm:^3.1.0"
- escape-string-regexp: "npm:^1.0.5"
- supports-color: "npm:^4.0.0"
- checksum: 10c0/ff3d14e7b31b1acdcd06b0c3b8d00e08748d76a0f2a6cc86baa1fe2456ebd4dd45037315a58df7f3c1886153c5d0a35da8183d2757f7fad28eaef6dedd33b437
- languageName: node
- linkType: hard
-
-"chalk@npm:^3.0.0":
- version: 3.0.0
- resolution: "chalk@npm:3.0.0"
- dependencies:
- ansi-styles: "npm:^4.1.0"
- supports-color: "npm:^7.1.0"
- checksum: 10c0/ee650b0a065b3d7a6fda258e75d3a86fc8e4effa55871da730a9e42ccb035bf5fd203525e5a1ef45ec2582ecc4f65b47eb11357c526b84dd29a14fb162c414d2
- languageName: node
- linkType: hard
-
-"chalk@npm:^4.0.0, chalk@npm:^4.1.0":
- version: 4.1.2
- resolution: "chalk@npm:4.1.2"
- dependencies:
- ansi-styles: "npm:^4.1.0"
- supports-color: "npm:^7.1.0"
- checksum: 10c0/4a3fef5cc34975c898ffe77141450f679721df9dde00f6c304353fa9c8b571929123b26a0e4617bde5018977eb655b31970c297b91b63ee83bb82aeb04666880
- languageName: node
- linkType: hard
-
-"chalk@npm:^5.3.0":
- version: 5.4.1
- resolution: "chalk@npm:5.4.1"
- checksum: 10c0/b23e88132c702f4855ca6d25cb5538b1114343e41472d5263ee8a37cccfccd9c4216d111e1097c6a27830407a1dc81fecdf2a56f2c63033d4dbbd88c10b0dcef
- languageName: node
- linkType: hard
-
-"change-case@npm:^4.1.2":
- version: 4.1.2
- resolution: "change-case@npm:4.1.2"
- dependencies:
- camel-case: "npm:^4.1.2"
- capital-case: "npm:^1.0.4"
- constant-case: "npm:^3.0.4"
- dot-case: "npm:^3.0.4"
- header-case: "npm:^2.0.4"
- no-case: "npm:^3.0.4"
- param-case: "npm:^3.0.4"
- pascal-case: "npm:^3.1.2"
- path-case: "npm:^3.0.4"
- sentence-case: "npm:^3.0.4"
- snake-case: "npm:^3.0.4"
- tslib: "npm:^2.0.3"
- checksum: 10c0/95a6e48563cd393241ce18470c7310a8a050304a64b63addac487560ab039ce42b099673d1d293cc10652324d92060de11b5d918179fe3b5af2ee521fb03ca58
- languageName: node
- linkType: hard
-
-"character-entities-html4@npm:^2.0.0":
- version: 2.1.0
- resolution: "character-entities-html4@npm:2.1.0"
- checksum: 10c0/fe61b553f083400c20c0b0fd65095df30a0b445d960f3bbf271536ae6c3ba676f39cb7af0b4bf2755812f08ab9b88f2feed68f9aebb73bb153f7a115fe5c6e40
- languageName: node
- linkType: hard
-
-"character-entities-legacy@npm:^3.0.0":
- version: 3.0.0
- resolution: "character-entities-legacy@npm:3.0.0"
- checksum: 10c0/ec4b430af873661aa754a896a2b55af089b4e938d3d010fad5219299a6b6d32ab175142699ee250640678cd64bdecd6db3c9af0b8759ab7b155d970d84c4c7d1
- languageName: node
- linkType: hard
-
-"character-entities@npm:^2.0.0":
- version: 2.0.2
- resolution: "character-entities@npm:2.0.2"
- checksum: 10c0/b0c645a45bcc90ff24f0e0140f4875a8436b8ef13b6bcd31ec02cfb2ca502b680362aa95386f7815bdc04b6464d48cf191210b3840d7c04241a149ede591a308
- languageName: node
- linkType: hard
-
-"character-reference-invalid@npm:^2.0.0":
- version: 2.0.1
- resolution: "character-reference-invalid@npm:2.0.1"
- checksum: 10c0/2ae0dec770cd8659d7e8b0ce24392d83b4c2f0eb4a3395c955dce5528edd4cc030a794cfa06600fcdd700b3f2de2f9b8e40e309c0011c4180e3be64a0b42e6a1
- languageName: node
- linkType: hard
-
-"chardet@npm:^0.7.0":
- version: 0.7.0
- resolution: "chardet@npm:0.7.0"
- checksum: 10c0/96e4731b9ec8050cbb56ab684e8c48d6c33f7826b755802d14e3ebfdc51c57afeece3ea39bc6b09acc359e4363525388b915e16640c1378053820f5e70d0f27d
- languageName: node
- linkType: hard
-
-"check-error@npm:^2.1.1":
- version: 2.1.1
- resolution: "check-error@npm:2.1.1"
- checksum: 10c0/979f13eccab306cf1785fa10941a590b4e7ea9916ea2a4f8c87f0316fc3eab07eabefb6e587424ef0f88cbcd3805791f172ea739863ca3d7ce2afc54641c7f0e
- languageName: node
- linkType: hard
-
-"chevrotain-allstar@npm:~0.3.0":
- version: 0.3.1
- resolution: "chevrotain-allstar@npm:0.3.1"
- dependencies:
- lodash-es: "npm:^4.17.21"
- peerDependencies:
- chevrotain: ^11.0.0
- checksum: 10c0/5cadedffd3114eb06b15fd3939bb1aa6c75412dbd737fe302b52c5c24334f9cb01cee8edc1d1067d98ba80dddf971f1d0e94b387de51423fc6cf3c5d8b7ef27a
- languageName: node
- linkType: hard
-
-"chevrotain@npm:~11.0.3":
- version: 11.0.3
- resolution: "chevrotain@npm:11.0.3"
- dependencies:
- "@chevrotain/cst-dts-gen": "npm:11.0.3"
- "@chevrotain/gast": "npm:11.0.3"
- "@chevrotain/regexp-to-ast": "npm:11.0.3"
- "@chevrotain/types": "npm:11.0.3"
- "@chevrotain/utils": "npm:11.0.3"
- lodash-es: "npm:4.17.21"
- checksum: 10c0/ffd425fa321e3f17e9833d7f44cd39f2743f066e92ca74b226176080ca5d455f853fe9091cdfd86354bd899d85c08b3bdc3f55b267e7d07124b048a88349765f
- languageName: node
- linkType: hard
-
-"chokidar@npm:^3.6.0":
- version: 3.6.0
- resolution: "chokidar@npm:3.6.0"
- dependencies:
- anymatch: "npm:~3.1.2"
- braces: "npm:~3.0.2"
- fsevents: "npm:~2.3.2"
- glob-parent: "npm:~5.1.2"
- is-binary-path: "npm:~2.1.0"
- is-glob: "npm:~4.0.1"
- normalize-path: "npm:~3.0.0"
- readdirp: "npm:~3.6.0"
- dependenciesMeta:
- fsevents:
- optional: true
- checksum: 10c0/8361dcd013f2ddbe260eacb1f3cb2f2c6f2b0ad118708a343a5ed8158941a39cb8fb1d272e0f389712e74ee90ce8ba864eece9e0e62b9705cb468a2f6d917462
- languageName: node
- linkType: hard
-
-"chokidar@npm:^4.0.0":
- version: 4.0.3
- resolution: "chokidar@npm:4.0.3"
- dependencies:
- readdirp: "npm:^4.0.1"
- checksum: 10c0/a58b9df05bb452f7d105d9e7229ac82fa873741c0c40ddcc7bb82f8a909fbe3f7814c9ebe9bc9a2bef9b737c0ec6e2d699d179048ef06ad3ec46315df0ebe6ad
- languageName: node
- linkType: hard
-
-"chownr@npm:^3.0.0":
- version: 3.0.0
- resolution: "chownr@npm:3.0.0"
- checksum: 10c0/43925b87700f7e3893296c8e9c56cc58f926411cce3a6e5898136daaf08f08b9a8eb76d37d3267e707d0dcc17aed2e2ebdf5848c0c3ce95cf910a919935c1b10
- languageName: node
- linkType: hard
-
-"classnames@npm:^2.3.2":
- version: 2.5.1
- resolution: "classnames@npm:2.5.1"
- checksum: 10c0/afff4f77e62cea2d79c39962980bf316bacb0d7c49e13a21adaadb9221e1c6b9d3cdb829d8bb1b23c406f4e740507f37e1dcf506f7e3b7113d17c5bab787aa69
- languageName: node
- linkType: hard
-
-"clean-stack@npm:^4.0.0":
- version: 4.2.0
- resolution: "clean-stack@npm:4.2.0"
- dependencies:
- escape-string-regexp: "npm:5.0.0"
- checksum: 10c0/2bdf981a0fef0a23c14255df693b30eb9ae27eedf212470d8c400a0c0b6fb82fbf1ff8c5216ccd5721e3670b700389c886b1dce5070776dc9fbcc040957758c0
- languageName: node
- linkType: hard
-
-"cli-cursor@npm:^3.1.0":
- version: 3.1.0
- resolution: "cli-cursor@npm:3.1.0"
- dependencies:
- restore-cursor: "npm:^3.1.0"
- checksum: 10c0/92a2f98ff9037d09be3dfe1f0d749664797fb674bf388375a2207a1203b69d41847abf16434203e0089212479e47a358b13a0222ab9fccfe8e2644a7ccebd111
- languageName: node
- linkType: hard
-
-"cli-cursor@npm:^5.0.0":
- version: 5.0.0
- resolution: "cli-cursor@npm:5.0.0"
- dependencies:
- restore-cursor: "npm:^5.0.0"
- checksum: 10c0/7ec62f69b79f6734ab209a3e4dbdc8af7422d44d360a7cb1efa8a0887bbe466a6e625650c466fe4359aee44dbe2dc0b6994b583d40a05d0808a5cb193641d220
- languageName: node
- linkType: hard
-
-"cli-spinners@npm:^2.5.0, cli-spinners@npm:^2.9.2":
- version: 2.9.2
- resolution: "cli-spinners@npm:2.9.2"
- checksum: 10c0/907a1c227ddf0d7a101e7ab8b300affc742ead4b4ebe920a5bf1bc6d45dce2958fcd195eb28fa25275062fe6fa9b109b93b63bc8033396ed3bcb50297008b3a3
- languageName: node
- linkType: hard
-
-"cli-width@npm:^4.1.0":
- version: 4.1.0
- resolution: "cli-width@npm:4.1.0"
- checksum: 10c0/1fbd56413578f6117abcaf858903ba1f4ad78370a4032f916745fa2c7e390183a9d9029cf837df320b0fdce8137668e522f60a30a5f3d6529ff3872d265a955f
- languageName: node
- linkType: hard
-
-"client-only@npm:0.0.1, client-only@npm:^0.0.1":
- version: 0.0.1
- resolution: "client-only@npm:0.0.1"
- checksum: 10c0/9d6cfd0c19e1c96a434605added99dff48482152af791ec4172fb912a71cff9027ff174efd8cdb2160cc7f377543e0537ffc462d4f279bc4701de3f2a3c4b358
- languageName: node
- linkType: hard
-
-"clipboardy@npm:1.2.2":
- version: 1.2.2
- resolution: "clipboardy@npm:1.2.2"
- dependencies:
- arch: "npm:^2.1.0"
- execa: "npm:^0.8.0"
- checksum: 10c0/c343ee1ff74fd7202b8e549575e0e09d36d122cd06b078b171cf9ee37f03479d53547a5792ee879145841122c11ee4419078ffec07daf3eda4fa800758c8f1d9
- languageName: node
- linkType: hard
-
-"clone@npm:^1.0.2":
- version: 1.0.4
- resolution: "clone@npm:1.0.4"
- checksum: 10c0/2176952b3649293473999a95d7bebfc9dc96410f6cbd3d2595cf12fd401f63a4bf41a7adbfd3ab2ff09ed60cb9870c58c6acdd18b87767366fabfc163700f13b
- languageName: node
- linkType: hard
-
-"clsx@npm:2.0.0":
- version: 2.0.0
- resolution: "clsx@npm:2.0.0"
- checksum: 10c0/c09f43b3144a0b7826b6b11b6a111b2c7440831004eecc02d333533c5e58ef0aa5f2dce071d3b25fbb8c8ea97b45df96c74bcc1d51c8c2027eb981931107b0cd
- languageName: node
- linkType: hard
-
-"clsx@npm:^2.0.0":
- version: 2.1.1
- resolution: "clsx@npm:2.1.1"
- checksum: 10c0/c4c8eb865f8c82baab07e71bfa8897c73454881c4f99d6bc81585aecd7c441746c1399d08363dc096c550cceaf97bd4ce1e8854e1771e9998d9f94c4fe075839
- languageName: node
- linkType: hard
-
-"codemirror@npm:^6.0.0":
- version: 6.0.1
- resolution: "codemirror@npm:6.0.1"
- dependencies:
- "@codemirror/autocomplete": "npm:^6.0.0"
- "@codemirror/commands": "npm:^6.0.0"
- "@codemirror/language": "npm:^6.0.0"
- "@codemirror/lint": "npm:^6.0.0"
- "@codemirror/search": "npm:^6.0.0"
- "@codemirror/state": "npm:^6.0.0"
- "@codemirror/view": "npm:^6.0.0"
- checksum: 10c0/219b0f6ee91d373380fba2e0564a2665990a3cdada0b01861768005b09061187c58eeb3db96aef486777b02b77b50a50ee843635e3743c47d3725034913c4b60
- languageName: node
- linkType: hard
-
-"color-convert@npm:^1.9.0":
- version: 1.9.3
- resolution: "color-convert@npm:1.9.3"
- dependencies:
- color-name: "npm:1.1.3"
- checksum: 10c0/5ad3c534949a8c68fca8fbc6f09068f435f0ad290ab8b2f76841b9e6af7e0bb57b98cb05b0e19fe33f5d91e5a8611ad457e5f69e0a484caad1f7487fd0e8253c
- languageName: node
- linkType: hard
-
-"color-convert@npm:^2.0.1":
- version: 2.0.1
- resolution: "color-convert@npm:2.0.1"
- dependencies:
- color-name: "npm:~1.1.4"
- checksum: 10c0/37e1150172f2e311fe1b2df62c6293a342ee7380da7b9cfdba67ea539909afbd74da27033208d01d6d5cfc65ee7868a22e18d7e7648e004425441c0f8a15a7d7
- languageName: node
- linkType: hard
-
-"color-name@npm:1.1.3":
- version: 1.1.3
- resolution: "color-name@npm:1.1.3"
- checksum: 10c0/566a3d42cca25b9b3cd5528cd7754b8e89c0eb646b7f214e8e2eaddb69994ac5f0557d9c175eb5d8f0ad73531140d9c47525085ee752a91a2ab15ab459caf6d6
- languageName: node
- linkType: hard
-
-"color-name@npm:^1.0.0, color-name@npm:~1.1.4":
- version: 1.1.4
- resolution: "color-name@npm:1.1.4"
- checksum: 10c0/a1a3f914156960902f46f7f56bc62effc6c94e84b2cae157a526b1c1f74b677a47ec602bf68a61abfa2b42d15b7c5651c6dbe72a43af720bc588dff885b10f95
- languageName: node
- linkType: hard
-
-"color-string@npm:^1.9.0":
- version: 1.9.1
- resolution: "color-string@npm:1.9.1"
- dependencies:
- color-name: "npm:^1.0.0"
- simple-swizzle: "npm:^0.2.2"
- checksum: 10c0/b0bfd74c03b1f837f543898b512f5ea353f71630ccdd0d66f83028d1f0924a7d4272deb278b9aef376cacf1289b522ac3fb175e99895283645a2dc3a33af2404
- languageName: node
- linkType: hard
-
-"color@npm:^4.2.3":
- version: 4.2.3
- resolution: "color@npm:4.2.3"
- dependencies:
- color-convert: "npm:^2.0.1"
- color-string: "npm:^1.9.0"
- checksum: 10c0/7fbe7cfb811054c808349de19fb380252e5e34e61d7d168ec3353e9e9aacb1802674bddc657682e4e9730c2786592a4de6f8283e7e0d3870b829bb0b7b2f6118
- languageName: node
- linkType: hard
-
-"combined-stream@npm:^1.0.8":
- version: 1.0.8
- resolution: "combined-stream@npm:1.0.8"
- dependencies:
- delayed-stream: "npm:~1.0.0"
- checksum: 10c0/0dbb829577e1b1e839fa82b40c07ffaf7de8a09b935cadd355a73652ae70a88b4320db322f6634a4ad93424292fa80973ac6480986247f1734a1137debf271d5
- languageName: node
- linkType: hard
-
-"comma-separated-tokens@npm:^2.0.0":
- version: 2.0.3
- resolution: "comma-separated-tokens@npm:2.0.3"
- checksum: 10c0/91f90f1aae320f1755d6957ef0b864fe4f54737f3313bd95e0802686ee2ca38bff1dd381964d00ae5db42912dd1f4ae5c2709644e82706ffc6f6842a813cdd67
- languageName: node
- linkType: hard
-
-"commander@npm:7":
- version: 7.2.0
- resolution: "commander@npm:7.2.0"
- checksum: 10c0/8d690ff13b0356df7e0ebbe6c59b4712f754f4b724d4f473d3cc5b3fdcf978e3a5dc3078717858a2ceb50b0f84d0660a7f22a96cdc50fb877d0c9bb31593d23a
- languageName: node
- linkType: hard
-
-"commander@npm:^4.0.0":
- version: 4.1.1
- resolution: "commander@npm:4.1.1"
- checksum: 10c0/84a76c08fe6cc08c9c93f62ac573d2907d8e79138999312c92d4155bc2325d487d64d13f669b2000c9f8caf70493c1be2dac74fec3c51d5a04f8bc3ae1830bab
- languageName: node
- linkType: hard
-
-"commander@npm:^8.3.0":
- version: 8.3.0
- resolution: "commander@npm:8.3.0"
- checksum: 10c0/8b043bb8322ea1c39664a1598a95e0495bfe4ca2fad0d84a92d7d1d8d213e2a155b441d2470c8e08de7c4a28cf2bc6e169211c49e1b21d9f7edc6ae4d9356060
- languageName: node
- linkType: hard
-
-"compute-scroll-into-view@npm:^3.0.2":
- version: 3.1.1
- resolution: "compute-scroll-into-view@npm:3.1.1"
- checksum: 10c0/59761ed62304a9599b52ad75d0d6fbf0669ee2ab7dd472fdb0ad9da36628414c014dea7b5810046560180ad30ffec52a953d19297f66a1d4f3aa0999b9d2521d
- languageName: node
- linkType: hard
-
-"concat-map@npm:0.0.1":
- version: 0.0.1
- resolution: "concat-map@npm:0.0.1"
- checksum: 10c0/c996b1cfdf95b6c90fee4dae37e332c8b6eb7d106430c17d538034c0ad9a1630cb194d2ab37293b1bdd4d779494beee7786d586a50bd9376fd6f7bcc2bd4c98f
- languageName: node
- linkType: hard
-
-"confbox@npm:^0.1.8":
- version: 0.1.8
- resolution: "confbox@npm:0.1.8"
- checksum: 10c0/fc2c68d97cb54d885b10b63e45bd8da83a8a71459d3ecf1825143dd4c7f9f1b696b3283e07d9d12a144c1301c2ebc7842380bdf0014e55acc4ae1c9550102418
- languageName: node
- linkType: hard
-
-"confbox@npm:^0.2.2":
- version: 0.2.2
- resolution: "confbox@npm:0.2.2"
- checksum: 10c0/7c246588d533d31e8cdf66cb4701dff6de60f9be77ab54c0d0338e7988750ac56863cc0aca1b3f2046f45ff223a765d3e5d4977a7674485afcd37b6edf3fd129
- languageName: node
- linkType: hard
-
-"constant-case@npm:^3.0.4":
- version: 3.0.4
- resolution: "constant-case@npm:3.0.4"
- dependencies:
- no-case: "npm:^3.0.4"
- tslib: "npm:^2.0.3"
- upper-case: "npm:^2.0.2"
- checksum: 10c0/91d54f18341fcc491ae66d1086642b0cc564be3e08984d7b7042f8b0a721c8115922f7f11d6a09f13ed96ff326eabae11f9d1eb0335fa9d8b6e39e4df096010e
- languageName: node
- linkType: hard
-
-"core-js@npm:^3.38.1":
- version: 3.41.0
- resolution: "core-js@npm:3.41.0"
- checksum: 10c0/a29ed0b7fe81acf49d04ce5c17a1947166b1c15197327a5d12f95bbe84b46d60c3c13de701d808f41da06fa316285f3f55ce5903abc8d5642afc1eac4457afc8
- languageName: node
- linkType: hard
-
-"cose-base@npm:^1.0.0":
- version: 1.0.3
- resolution: "cose-base@npm:1.0.3"
- dependencies:
- layout-base: "npm:^1.0.0"
- checksum: 10c0/a6e400b1d101393d6af0967c1353355777c1106c40417c5acaef6ca8bdda41e2fc9398f466d6c85be30290943ad631f2590569f67b3fd5368a0d8318946bd24f
- languageName: node
- linkType: hard
-
-"cose-base@npm:^2.2.0":
- version: 2.2.0
- resolution: "cose-base@npm:2.2.0"
- dependencies:
- layout-base: "npm:^2.0.0"
- checksum: 10c0/14b9f8100ac322a00777ffb1daeb3321af368bbc9cabe3103943361273baee2003202ffe38e4ab770960b600214224e9c196195a78d589521540aa694df7cdec
- languageName: node
- linkType: hard
-
-"crelt@npm:^1.0.5":
- version: 1.0.6
- resolution: "crelt@npm:1.0.6"
- checksum: 10c0/e0fb76dff50c5eb47f2ea9b786c17f9425c66276025adee80876bdbf4a84ab72e899e56d3928431ab0cb057a105ef704df80fe5726ef0f7b1658f815521bdf09
- languageName: node
- linkType: hard
-
-"cross-spawn@npm:^5.0.1":
- version: 5.1.0
- resolution: "cross-spawn@npm:5.1.0"
- dependencies:
- lru-cache: "npm:^4.0.1"
- shebang-command: "npm:^1.2.0"
- which: "npm:^1.2.9"
- checksum: 10c0/1918621fddb9f8c61e02118b2dbf81f611ccd1544ceaca0d026525341832b8511ce2504c60f935dbc06b35e5ef156fe8c1e72708c27dd486f034e9c0e1e07201
- languageName: node
- linkType: hard
-
-"cross-spawn@npm:^7.0.2, cross-spawn@npm:^7.0.6":
- version: 7.0.6
- resolution: "cross-spawn@npm:7.0.6"
- dependencies:
- path-key: "npm:^3.1.0"
- shebang-command: "npm:^2.0.0"
- which: "npm:^2.0.1"
- checksum: 10c0/053ea8b2135caff68a9e81470e845613e374e7309a47731e81639de3eaeb90c3d01af0e0b44d2ab9d50b43467223b88567dfeb3262db942dc063b9976718ffc1
- languageName: node
- linkType: hard
-
-"css.escape@npm:^1.5.1":
- version: 1.5.1
- resolution: "css.escape@npm:1.5.1"
- checksum: 10c0/5e09035e5bf6c2c422b40c6df2eb1529657a17df37fda5d0433d722609527ab98090baf25b13970ca754079a0f3161dd3dfc0e743563ded8cfa0749d861c1525
- languageName: node
- linkType: hard
-
-"cssesc@npm:^3.0.0":
- version: 3.0.0
- resolution: "cssesc@npm:3.0.0"
- bin:
- cssesc: bin/cssesc
- checksum: 10c0/6bcfd898662671be15ae7827120472c5667afb3d7429f1f917737f3bf84c4176003228131b643ae74543f17a394446247df090c597bb9a728cce298606ed0aa7
- languageName: node
- linkType: hard
-
-"csstype@npm:^3.0.2":
- version: 3.1.3
- resolution: "csstype@npm:3.1.3"
- checksum: 10c0/80c089d6f7e0c5b2bd83cf0539ab41474198579584fa10d86d0cafe0642202343cbc119e076a0b1aece191989477081415d66c9fefbf3c957fc2fc4b7009f248
- languageName: node
- linkType: hard
-
-"cva@npm:1.0.0-beta.1":
- version: 1.0.0-beta.1
- resolution: "cva@npm:1.0.0-beta.1"
- dependencies:
- clsx: "npm:2.0.0"
- peerDependencies:
- typescript: ">= 4.5.5 < 6"
- peerDependenciesMeta:
- typescript:
- optional: true
- checksum: 10c0/0ac27613b156d0ff6b1450c3257c1b98356865366165cb973748a102ed576dc07824cd098b23da6e24155d3b732d6222b4fa83cff85fbd2df3924a5b425bfbde
- languageName: node
- linkType: hard
-
-"cytoscape-cose-bilkent@npm:^4.1.0":
- version: 4.1.0
- resolution: "cytoscape-cose-bilkent@npm:4.1.0"
- dependencies:
- cose-base: "npm:^1.0.0"
- peerDependencies:
- cytoscape: ^3.2.0
- checksum: 10c0/5e2480ddba9da1a68e700ed2c674cbfd51e9efdbd55788f1971a68de4eb30708e3b3a5e808bf5628f7a258680406bbe6586d87a9133e02a9bdc1ab1a92f512f2
- languageName: node
- linkType: hard
-
-"cytoscape-fcose@npm:^2.2.0":
- version: 2.2.0
- resolution: "cytoscape-fcose@npm:2.2.0"
- dependencies:
- cose-base: "npm:^2.2.0"
- peerDependencies:
- cytoscape: ^3.2.0
- checksum: 10c0/ce472c9f85b9057e75c5685396f8e1f2468895e71b184913e05ad56dcf3092618fe59a1054f29cb0995051ba8ebe566ad0dd49a58d62845145624bd60cd44917
- languageName: node
- linkType: hard
-
-"cytoscape@npm:^3.28.1":
- version: 3.32.0
- resolution: "cytoscape@npm:3.32.0"
- checksum: 10c0/21cb0d2e79ebe137c7218e96edc2fb1c9000faae4f58c6a3c1899d9689c447c91feff94e5de649f227ced66f8c6a092b838de3fff3d8b57366156900f5df6d71
- languageName: node
- linkType: hard
-
-"cytoscape@npm:^3.29.3":
- version: 3.32.1
- resolution: "cytoscape@npm:3.32.1"
- checksum: 10c0/142419ddabcbddd999effcb55a3738229a77f75b6433fade1832236a78e098833d5a08240310c40cb836334a49ffa6e9a6b66db8b3530e58a3359c3a38441ae8
- languageName: node
- linkType: hard
-
-"d3-array@npm:1 - 2":
- version: 2.12.1
- resolution: "d3-array@npm:2.12.1"
- dependencies:
- internmap: "npm:^1.0.0"
- checksum: 10c0/7eca10427a9f113a4ca6a0f7301127cab26043fd5e362631ef5a0edd1c4b2dd70c56ed317566700c31e4a6d88b55f3951aaba192291817f243b730cb2352882e
- languageName: node
- linkType: hard
-
-"d3-array@npm:2 - 3, d3-array@npm:2.10.0 - 3, d3-array@npm:2.5.0 - 3, d3-array@npm:3, d3-array@npm:^3.2.0":
- version: 3.2.4
- resolution: "d3-array@npm:3.2.4"
- dependencies:
- internmap: "npm:1 - 2"
- checksum: 10c0/08b95e91130f98c1375db0e0af718f4371ccacef7d5d257727fe74f79a24383e79aba280b9ffae655483ffbbad4fd1dec4ade0119d88c4749f388641c8bf8c50
- languageName: node
- linkType: hard
-
-"d3-axis@npm:3":
- version: 3.0.0
- resolution: "d3-axis@npm:3.0.0"
- checksum: 10c0/a271e70ba1966daa5aaf6a7f959ceca3e12997b43297e757c7b945db2e1ead3c6ee226f2abcfa22abbd4e2e28bd2b71a0911794c4e5b911bbba271328a582c78
- languageName: node
- linkType: hard
-
-"d3-brush@npm:3":
- version: 3.0.0
- resolution: "d3-brush@npm:3.0.0"
- dependencies:
- d3-dispatch: "npm:1 - 3"
- d3-drag: "npm:2 - 3"
- d3-interpolate: "npm:1 - 3"
- d3-selection: "npm:3"
- d3-transition: "npm:3"
- checksum: 10c0/07baf00334c576da2f68a91fc0da5732c3a5fa19bd3d7aed7fd24d1d674a773f71a93e9687c154176f7246946194d77c48c2d8fed757f5dcb1a4740067ec50a8
- languageName: node
- linkType: hard
-
-"d3-chord@npm:3":
- version: 3.0.1
- resolution: "d3-chord@npm:3.0.1"
- dependencies:
- d3-path: "npm:1 - 3"
- checksum: 10c0/baa6013914af3f4fe1521f0d16de31a38eb8a71d08ff1dec4741f6f45a828661e5cd3935e39bd14e3032bdc78206c283ca37411da21d46ec3cfc520be6e7a7ce
- languageName: node
- linkType: hard
-
-"d3-color@npm:1 - 3, d3-color@npm:3":
- version: 3.1.0
- resolution: "d3-color@npm:3.1.0"
- checksum: 10c0/a4e20e1115fa696fce041fbe13fbc80dc4c19150fa72027a7c128ade980bc0eeeba4bcf28c9e21f0bce0e0dbfe7ca5869ef67746541dcfda053e4802ad19783c
- languageName: node
- linkType: hard
-
-"d3-contour@npm:4":
- version: 4.0.2
- resolution: "d3-contour@npm:4.0.2"
- dependencies:
- d3-array: "npm:^3.2.0"
- checksum: 10c0/98bc5fbed6009e08707434a952076f39f1cd6ed8b9288253cc3e6a3286e4e80c63c62d84954b20e64bf6e4ededcc69add54d3db25e990784a59c04edd3449032
- languageName: node
- linkType: hard
-
-"d3-delaunay@npm:6":
- version: 6.0.4
- resolution: "d3-delaunay@npm:6.0.4"
- dependencies:
- delaunator: "npm:5"
- checksum: 10c0/57c3aecd2525664b07c4c292aa11cf49b2752c0cf3f5257f752999399fe3c592de2d418644d79df1f255471eec8057a9cc0c3062ed7128cb3348c45f69597754
- languageName: node
- linkType: hard
-
-"d3-dispatch@npm:1 - 3, d3-dispatch@npm:3":
- version: 3.0.1
- resolution: "d3-dispatch@npm:3.0.1"
- checksum: 10c0/6eca77008ce2dc33380e45d4410c67d150941df7ab45b91d116dbe6d0a3092c0f6ac184dd4602c796dc9e790222bad3ff7142025f5fd22694efe088d1d941753
- languageName: node
- linkType: hard
-
-"d3-drag@npm:2 - 3, d3-drag@npm:3":
- version: 3.0.0
- resolution: "d3-drag@npm:3.0.0"
- dependencies:
- d3-dispatch: "npm:1 - 3"
- d3-selection: "npm:3"
- checksum: 10c0/d2556e8dc720741a443b595a30af403dd60642dfd938d44d6e9bfc4c71a962142f9a028c56b61f8b4790b65a34acad177d1263d66f103c3c527767b0926ef5aa
- languageName: node
- linkType: hard
-
-"d3-dsv@npm:1 - 3, d3-dsv@npm:3":
- version: 3.0.1
- resolution: "d3-dsv@npm:3.0.1"
- dependencies:
- commander: "npm:7"
- iconv-lite: "npm:0.6"
- rw: "npm:1"
- bin:
- csv2json: bin/dsv2json.js
- csv2tsv: bin/dsv2dsv.js
- dsv2dsv: bin/dsv2dsv.js
- dsv2json: bin/dsv2json.js
- json2csv: bin/json2dsv.js
- json2dsv: bin/json2dsv.js
- json2tsv: bin/json2dsv.js
- tsv2csv: bin/dsv2dsv.js
- tsv2json: bin/dsv2json.js
- checksum: 10c0/10e6af9e331950ed258f34ab49ac1b7060128ef81dcf32afc790bd1f7e8c3cc2aac7f5f875250a83f21f39bb5925fbd0872bb209f8aca32b3b77d32bab8a65ab
- languageName: node
- linkType: hard
-
-"d3-ease@npm:1 - 3, d3-ease@npm:3":
- version: 3.0.1
- resolution: "d3-ease@npm:3.0.1"
- checksum: 10c0/fec8ef826c0cc35cda3092c6841e07672868b1839fcaf556e19266a3a37e6bc7977d8298c0fcb9885e7799bfdcef7db1baaba9cd4dcf4bc5e952cf78574a88b0
- languageName: node
- linkType: hard
-
-"d3-fetch@npm:3":
- version: 3.0.1
- resolution: "d3-fetch@npm:3.0.1"
- dependencies:
- d3-dsv: "npm:1 - 3"
- checksum: 10c0/4f467a79bf290395ac0cbb5f7562483f6a18668adc4c8eb84c9d3eff048b6f6d3b6f55079ba1ebf1908dabe000c941d46be447f8d78453b2dad5fb59fb6aa93b
- languageName: node
- linkType: hard
-
-"d3-force@npm:3":
- version: 3.0.0
- resolution: "d3-force@npm:3.0.0"
- dependencies:
- d3-dispatch: "npm:1 - 3"
- d3-quadtree: "npm:1 - 3"
- d3-timer: "npm:1 - 3"
- checksum: 10c0/220a16a1a1ac62ba56df61028896e4b52be89c81040d20229c876efc8852191482c233f8a52bb5a4e0875c321b8e5cb6413ef3dfa4d8fe79eeb7d52c587f52cf
- languageName: node
- linkType: hard
-
-"d3-format@npm:1 - 3, d3-format@npm:3":
- version: 3.1.0
- resolution: "d3-format@npm:3.1.0"
- checksum: 10c0/049f5c0871ebce9859fc5e2f07f336b3c5bfff52a2540e0bac7e703fce567cd9346f4ad1079dd18d6f1e0eaa0599941c1810898926f10ac21a31fd0a34b4aa75
- languageName: node
- linkType: hard
-
-"d3-geo@npm:3":
- version: 3.1.1
- resolution: "d3-geo@npm:3.1.1"
- dependencies:
- d3-array: "npm:2.5.0 - 3"
- checksum: 10c0/d32270dd2dc8ac3ea63e8805d63239c4c8ec6c0d339d73b5e5a30a87f8f54db22a78fb434369799465eae169503b25f9a107c642c8a16c32a3285bc0e6d8e8c1
- languageName: node
- linkType: hard
-
-"d3-hierarchy@npm:3":
- version: 3.1.2
- resolution: "d3-hierarchy@npm:3.1.2"
- checksum: 10c0/6dcdb480539644aa7fc0d72dfc7b03f99dfbcdf02714044e8c708577e0d5981deb9d3e99bbbb2d26422b55bcc342ac89a0fa2ea6c9d7302e2fc0951dd96f89cf
- languageName: node
- linkType: hard
-
-"d3-interpolate@npm:1 - 3, d3-interpolate@npm:1.2.0 - 3, d3-interpolate@npm:3":
- version: 3.0.1
- resolution: "d3-interpolate@npm:3.0.1"
- dependencies:
- d3-color: "npm:1 - 3"
- checksum: 10c0/19f4b4daa8d733906671afff7767c19488f51a43d251f8b7f484d5d3cfc36c663f0a66c38fe91eee30f40327443d799be17169f55a293a3ba949e84e57a33e6a
- languageName: node
- linkType: hard
-
-"d3-path@npm:1":
- version: 1.0.9
- resolution: "d3-path@npm:1.0.9"
- checksum: 10c0/e35e84df5abc18091f585725b8235e1fa97efc287571585427d3a3597301e6c506dea56b11dfb3c06ca5858b3eb7f02c1bf4f6a716aa9eade01c41b92d497eb5
- languageName: node
- linkType: hard
-
-"d3-path@npm:1 - 3, d3-path@npm:3, d3-path@npm:^3.1.0":
- version: 3.1.0
- resolution: "d3-path@npm:3.1.0"
- checksum: 10c0/dc1d58ec87fa8319bd240cf7689995111a124b141428354e9637aa83059eb12e681f77187e0ada5dedfce346f7e3d1f903467ceb41b379bfd01cd8e31721f5da
- languageName: node
- linkType: hard
-
-"d3-polygon@npm:3":
- version: 3.0.1
- resolution: "d3-polygon@npm:3.0.1"
- checksum: 10c0/e236aa7f33efa9a4072907af7dc119f85b150a0716759d4fe5f12f62573018264a6cbde8617fbfa6944a7ae48c1c0c8d3f39ae72e11f66dd471e9b5e668385df
- languageName: node
- linkType: hard
-
-"d3-quadtree@npm:1 - 3, d3-quadtree@npm:3":
- version: 3.0.1
- resolution: "d3-quadtree@npm:3.0.1"
- checksum: 10c0/18302d2548bfecaef788152397edec95a76400fd97d9d7f42a089ceb68d910f685c96579d74e3712d57477ed042b056881b47cd836a521de683c66f47ce89090
- languageName: node
- linkType: hard
-
-"d3-random@npm:3":
- version: 3.0.1
- resolution: "d3-random@npm:3.0.1"
- checksum: 10c0/987a1a1bcbf26e6cf01fd89d5a265b463b2cea93560fc17d9b1c45e8ed6ff2db5924601bcceb808de24c94133f000039eb7fa1c469a7a844ccbf1170cbb25b41
- languageName: node
- linkType: hard
-
-"d3-sankey@npm:^0.12.3":
- version: 0.12.3
- resolution: "d3-sankey@npm:0.12.3"
- dependencies:
- d3-array: "npm:1 - 2"
- d3-shape: "npm:^1.2.0"
- checksum: 10c0/261debb01a13269f6fc53b9ebaef174a015d5ad646242c23995bf514498829ab8b8f920a7873724a7494288b46bea3ce7ebc5a920b745bc8ae4caa5885cf5204
- languageName: node
- linkType: hard
-
-"d3-scale-chromatic@npm:3":
- version: 3.1.0
- resolution: "d3-scale-chromatic@npm:3.1.0"
- dependencies:
- d3-color: "npm:1 - 3"
- d3-interpolate: "npm:1 - 3"
- checksum: 10c0/9a3f4671ab0b971f4a411b42180d7cf92bfe8e8584e637ce7e698d705e18d6d38efbd20ec64f60cc0dfe966c20d40fc172565bc28aaa2990c0a006360eed91af
- languageName: node
- linkType: hard
-
-"d3-scale@npm:4":
- version: 4.0.2
- resolution: "d3-scale@npm:4.0.2"
- dependencies:
- d3-array: "npm:2.10.0 - 3"
- d3-format: "npm:1 - 3"
- d3-interpolate: "npm:1.2.0 - 3"
- d3-time: "npm:2.1.1 - 3"
- d3-time-format: "npm:2 - 4"
- checksum: 10c0/65d9ad8c2641aec30ed5673a7410feb187a224d6ca8d1a520d68a7d6eac9d04caedbff4713d1e8545be33eb7fec5739983a7ab1d22d4e5ad35368c6729d362f1
- languageName: node
- linkType: hard
-
-"d3-selection@npm:2 - 3, d3-selection@npm:3":
- version: 3.0.0
- resolution: "d3-selection@npm:3.0.0"
- checksum: 10c0/e59096bbe8f0cb0daa1001d9bdd6dbc93a688019abc97d1d8b37f85cd3c286a6875b22adea0931b0c88410d025563e1643019161a883c516acf50c190a11b56b
- languageName: node
- linkType: hard
-
-"d3-shape@npm:3":
- version: 3.2.0
- resolution: "d3-shape@npm:3.2.0"
- dependencies:
- d3-path: "npm:^3.1.0"
- checksum: 10c0/f1c9d1f09926daaf6f6193ae3b4c4b5521e81da7d8902d24b38694517c7f527ce3c9a77a9d3a5722ad1e3ff355860b014557b450023d66a944eabf8cfde37132
- languageName: node
- linkType: hard
-
-"d3-shape@npm:^1.2.0":
- version: 1.3.7
- resolution: "d3-shape@npm:1.3.7"
- dependencies:
- d3-path: "npm:1"
- checksum: 10c0/548057ce59959815decb449f15632b08e2a1bdce208f9a37b5f98ec7629dda986c2356bc7582308405ce68aedae7d47b324df41507404df42afaf352907577ae
- languageName: node
- linkType: hard
-
-"d3-time-format@npm:2 - 4, d3-time-format@npm:4":
- version: 4.1.0
- resolution: "d3-time-format@npm:4.1.0"
- dependencies:
- d3-time: "npm:1 - 3"
- checksum: 10c0/735e00fb25a7fd5d418fac350018713ae394eefddb0d745fab12bbff0517f9cdb5f807c7bbe87bb6eeb06249662f8ea84fec075f7d0cd68609735b2ceb29d206
- languageName: node
- linkType: hard
-
-"d3-time@npm:1 - 3, d3-time@npm:2.1.1 - 3, d3-time@npm:3":
- version: 3.1.0
- resolution: "d3-time@npm:3.1.0"
- dependencies:
- d3-array: "npm:2 - 3"
- checksum: 10c0/a984f77e1aaeaa182679b46fbf57eceb6ebdb5f67d7578d6f68ef933f8eeb63737c0949991618a8d29472dbf43736c7d7f17c452b2770f8c1271191cba724ca1
- languageName: node
- linkType: hard
-
-"d3-timer@npm:1 - 3, d3-timer@npm:3":
- version: 3.0.1
- resolution: "d3-timer@npm:3.0.1"
- checksum: 10c0/d4c63cb4bb5461d7038aac561b097cd1c5673969b27cbdd0e87fa48d9300a538b9e6f39b4a7f0e3592ef4f963d858c8a9f0e92754db73116770856f2fc04561a
- languageName: node
- linkType: hard
-
-"d3-transition@npm:2 - 3, d3-transition@npm:3":
- version: 3.0.1
- resolution: "d3-transition@npm:3.0.1"
- dependencies:
- d3-color: "npm:1 - 3"
- d3-dispatch: "npm:1 - 3"
- d3-ease: "npm:1 - 3"
- d3-interpolate: "npm:1 - 3"
- d3-timer: "npm:1 - 3"
- peerDependencies:
- d3-selection: 2 - 3
- checksum: 10c0/4e74535dda7024aa43e141635b7522bb70cf9d3dfefed975eb643b36b864762eca67f88fafc2ca798174f83ca7c8a65e892624f824b3f65b8145c6a1a88dbbad
- languageName: node
- linkType: hard
-
-"d3-zoom@npm:3":
- version: 3.0.0
- resolution: "d3-zoom@npm:3.0.0"
- dependencies:
- d3-dispatch: "npm:1 - 3"
- d3-drag: "npm:2 - 3"
- d3-interpolate: "npm:1 - 3"
- d3-selection: "npm:2 - 3"
- d3-transition: "npm:2 - 3"
- checksum: 10c0/ee2036479049e70d8c783d594c444fe00e398246048e3f11a59755cd0e21de62ece3126181b0d7a31bf37bcf32fd726f83ae7dea4495ff86ec7736ce5ad36fd3
- languageName: node
- linkType: hard
-
-"d3@npm:^7.4.0, d3@npm:^7.8.2, d3@npm:^7.9.0":
- version: 7.9.0
- resolution: "d3@npm:7.9.0"
- dependencies:
- d3-array: "npm:3"
- d3-axis: "npm:3"
- d3-brush: "npm:3"
- d3-chord: "npm:3"
- d3-color: "npm:3"
- d3-contour: "npm:4"
- d3-delaunay: "npm:6"
- d3-dispatch: "npm:3"
- d3-drag: "npm:3"
- d3-dsv: "npm:3"
- d3-ease: "npm:3"
- d3-fetch: "npm:3"
- d3-force: "npm:3"
- d3-format: "npm:3"
- d3-geo: "npm:3"
- d3-hierarchy: "npm:3"
- d3-interpolate: "npm:3"
- d3-path: "npm:3"
- d3-polygon: "npm:3"
- d3-quadtree: "npm:3"
- d3-random: "npm:3"
- d3-scale: "npm:4"
- d3-scale-chromatic: "npm:3"
- d3-selection: "npm:3"
- d3-shape: "npm:3"
- d3-time: "npm:3"
- d3-time-format: "npm:4"
- d3-timer: "npm:3"
- d3-transition: "npm:3"
- d3-zoom: "npm:3"
- checksum: 10c0/3dd9c08c73cfaa69c70c49e603c85e049c3904664d9c79a1a52a0f52795828a1ff23592dc9a7b2257e711d68a615472a13103c212032f38e016d609796e087e8
- languageName: node
- linkType: hard
-
-"dagre-d3-es@npm:7.0.10":
- version: 7.0.10
- resolution: "dagre-d3-es@npm:7.0.10"
- dependencies:
- d3: "npm:^7.8.2"
- lodash-es: "npm:^4.17.21"
- checksum: 10c0/3e1bb6efe9a78cea3fe6ff265eb330692f057bf84c99d6a1d67db379231c37a1a1ca2e1ccc25a732ddf924cd5566062c033d88defd230debec324dc9256c6775
- languageName: node
- linkType: hard
-
-"dagre-d3-es@npm:7.0.11":
- version: 7.0.11
- resolution: "dagre-d3-es@npm:7.0.11"
- dependencies:
- d3: "npm:^7.9.0"
- lodash-es: "npm:^4.17.21"
- checksum: 10c0/52f88bdfeca0d8554bee0c1419377585355b4ef179e5fedd3bac75f772745ecb789f6d7ea377a17566506bc8f151bc0dfe02a5175207a547975f335cd88c726c
- languageName: node
- linkType: hard
-
-"damerau-levenshtein@npm:^1.0.8":
- version: 1.0.8
- resolution: "damerau-levenshtein@npm:1.0.8"
- checksum: 10c0/4c2647e0f42acaee7d068756c1d396e296c3556f9c8314bac1ac63ffb236217ef0e7e58602b18bb2173deec7ec8e0cac8e27cccf8f5526666b4ff11a13ad54a3
- languageName: node
- linkType: hard
-
-"data-view-buffer@npm:^1.0.2":
- version: 1.0.2
- resolution: "data-view-buffer@npm:1.0.2"
- dependencies:
- call-bound: "npm:^1.0.3"
- es-errors: "npm:^1.3.0"
- is-data-view: "npm:^1.0.2"
- checksum: 10c0/7986d40fc7979e9e6241f85db8d17060dd9a71bd53c894fa29d126061715e322a4cd47a00b0b8c710394854183d4120462b980b8554012acc1c0fa49df7ad38c
- languageName: node
- linkType: hard
-
-"data-view-byte-length@npm:^1.0.2":
- version: 1.0.2
- resolution: "data-view-byte-length@npm:1.0.2"
- dependencies:
- call-bound: "npm:^1.0.3"
- es-errors: "npm:^1.3.0"
- is-data-view: "npm:^1.0.2"
- checksum: 10c0/f8a4534b5c69384d95ac18137d381f18a5cfae1f0fc1df0ef6feef51ef0d568606d970b69e02ea186c6c0f0eac77fe4e6ad96fec2569cc86c3afcc7475068c55
- languageName: node
- linkType: hard
-
-"data-view-byte-offset@npm:^1.0.1":
- version: 1.0.1
- resolution: "data-view-byte-offset@npm:1.0.1"
- dependencies:
- call-bound: "npm:^1.0.2"
- es-errors: "npm:^1.3.0"
- is-data-view: "npm:^1.0.1"
- checksum: 10c0/fa7aa40078025b7810dcffc16df02c480573b7b53ef1205aa6a61533011005c1890e5ba17018c692ce7c900212b547262d33279fde801ad9843edc0863bf78c4
- languageName: node
- linkType: hard
-
-"date-fns@npm:^2.15.0":
- version: 2.30.0
- resolution: "date-fns@npm:2.30.0"
- dependencies:
- "@babel/runtime": "npm:^7.21.0"
- checksum: 10c0/e4b521fbf22bc8c3db332bbfb7b094fd3e7627de0259a9d17c7551e2d2702608a7307a449206065916538e384f37b181565447ce2637ae09828427aed9cb5581
- languageName: node
- linkType: hard
-
-"date-fns@npm:^3.6.0":
- version: 3.6.0
- resolution: "date-fns@npm:3.6.0"
- checksum: 10c0/0b5fb981590ef2f8e5a3ba6cd6d77faece0ea7f7158948f2eaae7bbb7c80a8f63ae30b01236c2923cf89bb3719c33aeb150c715ea4fe4e86e37dcf06bed42fb6
- languageName: node
- linkType: hard
-
-"dayjs@npm:^1.11.13, dayjs@npm:^1.11.7":
- version: 1.11.13
- resolution: "dayjs@npm:1.11.13"
- checksum: 10c0/a3caf6ac8363c7dade9d1ee797848ddcf25c1ace68d9fe8678ecf8ba0675825430de5d793672ec87b24a69bf04a1544b176547b2539982275d5542a7955f35b7
- languageName: node
- linkType: hard
-
-"debug@npm:4":
- version: 4.4.1
- resolution: "debug@npm:4.4.1"
- dependencies:
- ms: "npm:^2.1.3"
- peerDependenciesMeta:
- supports-color:
- optional: true
- checksum: 10c0/d2b44bc1afd912b49bb7ebb0d50a860dc93a4dd7d946e8de94abc957bb63726b7dd5aa48c18c2386c379ec024c46692e15ed3ed97d481729f929201e671fcd55
- languageName: node
- linkType: hard
-
-"debug@npm:^2.1.3":
- version: 2.6.9
- resolution: "debug@npm:2.6.9"
- dependencies:
- ms: "npm:2.0.0"
- checksum: 10c0/121908fb839f7801180b69a7e218a40b5a0b718813b886b7d6bdb82001b931c938e2941d1e4450f33a1b1df1da653f5f7a0440c197f29fbf8a6e9d45ff6ef589
- languageName: node
- linkType: hard
-
-"debug@npm:^3.2.7":
- version: 3.2.7
- resolution: "debug@npm:3.2.7"
- dependencies:
- ms: "npm:^2.1.1"
- checksum: 10c0/37d96ae42cbc71c14844d2ae3ba55adf462ec89fd3a999459dec3833944cd999af6007ff29c780f1c61153bcaaf2c842d1e4ce1ec621e4fc4923244942e4a02a
- languageName: node
- linkType: hard
-
-"debug@npm:^4.0.0, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4, debug@npm:^4.4.0":
- version: 4.4.0
- resolution: "debug@npm:4.4.0"
- dependencies:
- ms: "npm:^2.1.3"
- peerDependenciesMeta:
- supports-color:
- optional: true
- checksum: 10c0/db94f1a182bf886f57b4755f85b3a74c39b5114b9377b7ab375dc2cfa3454f09490cc6c30f829df3fc8042bc8b8995f6567ce5cd96f3bc3688bd24027197d9de
- languageName: node
- linkType: hard
-
-"decode-named-character-reference@npm:^1.0.0":
- version: 1.1.0
- resolution: "decode-named-character-reference@npm:1.1.0"
- dependencies:
- character-entities: "npm:^2.0.0"
- checksum: 10c0/359c76305b47e67660ec096c5cd3f65972ed75b8a53a40435a7a967cfab3e9516e64b443cbe0c7edcf5ab77f65a6924f12fb1872b1e09e2f044f28f4fd10996a
- languageName: node
- linkType: hard
-
-"deep-eql@npm:^5.0.1":
- version: 5.0.2
- resolution: "deep-eql@npm:5.0.2"
- checksum: 10c0/7102cf3b7bb719c6b9c0db2e19bf0aa9318d141581befe8c7ce8ccd39af9eaa4346e5e05adef7f9bd7015da0f13a3a25dcfe306ef79dc8668aedbecb658dd247
- languageName: node
- linkType: hard
-
-"deep-is@npm:^0.1.3":
- version: 0.1.4
- resolution: "deep-is@npm:0.1.4"
- checksum: 10c0/7f0ee496e0dff14a573dc6127f14c95061b448b87b995fc96c017ce0a1e66af1675e73f1d6064407975bc4ea6ab679497a29fff7b5b9c4e99cb10797c1ad0b4c
- languageName: node
- linkType: hard
-
-"defaults@npm:^1.0.3":
- version: 1.0.4
- resolution: "defaults@npm:1.0.4"
- dependencies:
- clone: "npm:^1.0.2"
- checksum: 10c0/9cfbe498f5c8ed733775db62dfd585780387d93c17477949e1670bfcfb9346e0281ce8c4bf9f4ac1fc0f9b851113bd6dc9e41182ea1644ccd97de639fa13c35a
- languageName: node
- linkType: hard
-
-"define-data-property@npm:^1.0.1, define-data-property@npm:^1.1.4":
- version: 1.1.4
- resolution: "define-data-property@npm:1.1.4"
- dependencies:
- es-define-property: "npm:^1.0.0"
- es-errors: "npm:^1.3.0"
- gopd: "npm:^1.0.1"
- checksum: 10c0/dea0606d1483eb9db8d930d4eac62ca0fa16738b0b3e07046cddfacf7d8c868bbe13fa0cb263eb91c7d0d527960dc3f2f2471a69ed7816210307f6744fe62e37
- languageName: node
- linkType: hard
-
-"define-properties@npm:^1.1.3, define-properties@npm:^1.2.1":
- version: 1.2.1
- resolution: "define-properties@npm:1.2.1"
- dependencies:
- define-data-property: "npm:^1.0.1"
- has-property-descriptors: "npm:^1.0.0"
- object-keys: "npm:^1.1.1"
- checksum: 10c0/88a152319ffe1396ccc6ded510a3896e77efac7a1bfbaa174a7b00414a1747377e0bb525d303794a47cf30e805c2ec84e575758512c6e44a993076d29fd4e6c3
- languageName: node
- linkType: hard
-
-"del@npm:^7.1.0":
- version: 7.1.0
- resolution: "del@npm:7.1.0"
- dependencies:
- globby: "npm:^13.1.2"
- graceful-fs: "npm:^4.2.10"
- is-glob: "npm:^4.0.3"
- is-path-cwd: "npm:^3.0.0"
- is-path-inside: "npm:^4.0.0"
- p-map: "npm:^5.5.0"
- rimraf: "npm:^3.0.2"
- slash: "npm:^4.0.0"
- checksum: 10c0/5ad2777b69e386b414ba77f5eba23bb52422c096f4c084c0d1d829ee4776d1a025a6f69765906907c4137026e9bd071ee9d422fd531b1417ef546adc7eb6fada
- languageName: node
- linkType: hard
-
-"delaunator@npm:5":
- version: 5.0.1
- resolution: "delaunator@npm:5.0.1"
- dependencies:
- robust-predicates: "npm:^3.0.2"
- checksum: 10c0/3d7ea4d964731c5849af33fec0a271bc6753487b331fd7d43ccb17d77834706e1c383e6ab8fda0032da955e7576d1083b9603cdaf9cbdfd6b3ebd1fb8bb675a5
- languageName: node
- linkType: hard
-
-"delayed-stream@npm:~1.0.0":
- version: 1.0.0
- resolution: "delayed-stream@npm:1.0.0"
- checksum: 10c0/d758899da03392e6712f042bec80aa293bbe9e9ff1b2634baae6a360113e708b91326594c8a486d475c69d6259afb7efacdc3537bfcda1c6c648e390ce601b19
- languageName: node
- linkType: hard
-
-"dequal@npm:^2.0.0, dequal@npm:^2.0.3":
- version: 2.0.3
- resolution: "dequal@npm:2.0.3"
- checksum: 10c0/f98860cdf58b64991ae10205137c0e97d384c3a4edc7f807603887b7c4b850af1224a33d88012009f150861cbee4fa2d322c4cc04b9313bee312e47f6ecaa888
- languageName: node
- linkType: hard
-
-"detect-file@npm:^1.0.0":
- version: 1.0.0
- resolution: "detect-file@npm:1.0.0"
- checksum: 10c0/c782a5f992047944c39d337c82f5d1d21d65d1378986d46c354df9d9ec6d5f356bca0182969c11b08b9b8a7af8727b3c2d5a9fad0b022be4a3bf4c216f63ed07
- languageName: node
- linkType: hard
-
-"detect-libc@npm:^1.0.3":
- version: 1.0.3
- resolution: "detect-libc@npm:1.0.3"
- bin:
- detect-libc: ./bin/detect-libc.js
- checksum: 10c0/4da0deae9f69e13bc37a0902d78bf7169480004b1fed3c19722d56cff578d16f0e11633b7fbf5fb6249181236c72e90024cbd68f0b9558ae06e281f47326d50d
- languageName: node
- linkType: hard
-
-"detect-libc@npm:^2.0.3":
- version: 2.0.3
- resolution: "detect-libc@npm:2.0.3"
- checksum: 10c0/88095bda8f90220c95f162bf92cad70bd0e424913e655c20578600e35b91edc261af27531cf160a331e185c0ced93944bc7e09939143225f56312d7fd800fdb7
- languageName: node
- linkType: hard
-
-"detect-node-es@npm:^1.1.0":
- version: 1.1.0
- resolution: "detect-node-es@npm:1.1.0"
- checksum: 10c0/e562f00de23f10c27d7119e1af0e7388407eb4b06596a25f6d79a360094a109ff285de317f02b090faae093d314cf6e73ac3214f8a5bb3a0def5bece94557fbe
- languageName: node
- linkType: hard
-
-"devlop@npm:^1.0.0, devlop@npm:^1.1.0":
- version: 1.1.0
- resolution: "devlop@npm:1.1.0"
- dependencies:
- dequal: "npm:^2.0.0"
- checksum: 10c0/e0928ab8f94c59417a2b8389c45c55ce0a02d9ac7fd74ef62d01ba48060129e1d594501b77de01f3eeafc7cb00773819b0df74d96251cf20b31c5b3071f45c0e
- languageName: node
- linkType: hard
-
-"didyoumean@npm:^1.2.2":
- version: 1.2.2
- resolution: "didyoumean@npm:1.2.2"
- checksum: 10c0/95d0b53d23b851aacff56dfadb7ecfedce49da4232233baecfeecb7710248c4aa03f0aa8995062f0acafaf925adf8536bd7044a2e68316fd7d411477599bc27b
- languageName: node
- linkType: hard
-
-"diff@npm:^5.0.0":
- version: 5.2.0
- resolution: "diff@npm:5.2.0"
- checksum: 10c0/aed0941f206fe261ecb258dc8d0ceea8abbde3ace5827518ff8d302f0fc9cc81ce116c4d8f379151171336caf0516b79e01abdc1ed1201b6440d895a66689eb4
- languageName: node
- linkType: hard
-
-"dir-glob@npm:^3.0.1":
- version: 3.0.1
- resolution: "dir-glob@npm:3.0.1"
- dependencies:
- path-type: "npm:^4.0.0"
- checksum: 10c0/dcac00920a4d503e38bb64001acb19df4efc14536ada475725e12f52c16777afdee4db827f55f13a908ee7efc0cb282e2e3dbaeeb98c0993dd93d1802d3bf00c
- languageName: node
- linkType: hard
-
-"dlv@npm:^1.1.3":
- version: 1.1.3
- resolution: "dlv@npm:1.1.3"
- checksum: 10c0/03eb4e769f19a027fd5b43b59e8a05e3fd2100ac239ebb0bf9a745de35d449e2f25cfaf3aa3934664551d72856f4ae8b7822016ce5c42c2d27c18ae79429ec42
- languageName: node
- linkType: hard
-
-"docs@workspace:.":
- version: 0.0.0-use.local
- resolution: "docs@workspace:."
- dependencies:
- "@code-hike/mdx": "npm:^0.9.0"
- "@next/third-parties": "npm:^14.1.4"
- "@radix-ui/react-dialog": "npm:^1.0.5"
- "@radix-ui/react-icons": "npm:^1.3.0"
- "@radix-ui/react-tooltip": "npm:^1.0.7"
- "@scalar/api-reference-react": "npm:^0.1.31"
- "@theguild/remark-mermaid": "npm:^0.0.6"
- "@types/node": "npm:^20"
- "@types/react": "npm:^18"
- "@types/react-dom": "npm:^18"
- astro-mermaid: "npm:^1.0.4"
- autoprefixer: "npm:^10.0.1"
- axios: "npm:^1.6.8"
- date-fns: "npm:^3.6.0"
- embla-carousel-auto-height: "npm:^8.0.0"
- embla-carousel-auto-scroll: "npm:^8.0.0"
- embla-carousel-autoplay: "npm:^8.0.0"
- embla-carousel-react: "npm:^8.0.0"
- eslint: "npm:^8"
- eslint-config-next: "npm:14.1.4"
- fs: "npm:^0.0.1-security"
- gray-matter: "npm:^4.0.3"
- lucide-react: "npm:^0.522.0"
- mermaid: "npm:^11.9.0"
- next: "npm:^14.1.4"
- next-seo: "npm:^6.5.0"
- next-sitemap: "npm:^4.2.3"
- nextra: "npm:^2.13.4"
- nextra-theme-docs: "npm:^2.13.4"
- path: "npm:^0.12.7"
- plop: "npm:^4.0.1"
- plop-helper-date: "npm:^1.0.0"
- postcss: "npm:^8"
- posthog-js: "npm:^1.194.6"
- prettier: "npm:^3.2.5"
- react: "npm:^18"
- react-dom: "npm:^18"
- react-hook-form: "npm:^7.51.1"
- react-icons: "npm:^5.0.1"
- react-markdown: "npm:^9.0.1"
- react-share: "npm:^5.1.0"
- react-tweet: "npm:^3.2.0"
- sass: "npm:^1.72.0"
- sharp: "npm:^0.33.3"
- tailwind-merge: "npm:^2.2.2"
- tailwindcss: "npm:^3.3.0"
- typescript: "npm:^5"
- languageName: unknown
- linkType: soft
-
-"doctrine@npm:^2.1.0":
- version: 2.1.0
- resolution: "doctrine@npm:2.1.0"
- dependencies:
- esutils: "npm:^2.0.2"
- checksum: 10c0/b6416aaff1f380bf56c3b552f31fdf7a69b45689368deca72d28636f41c16bb28ec3ebc40ace97db4c1afc0ceeb8120e8492fe0046841c94c2933b2e30a7d5ac
- languageName: node
- linkType: hard
-
-"doctrine@npm:^3.0.0":
- version: 3.0.0
- resolution: "doctrine@npm:3.0.0"
- dependencies:
- esutils: "npm:^2.0.2"
- checksum: 10c0/c96bdccabe9d62ab6fea9399fdff04a66e6563c1d6fb3a3a063e8d53c3bb136ba63e84250bbf63d00086a769ad53aef92d2bd483f03f837fc97b71cbee6b2520
- languageName: node
- linkType: hard
-
-"dom-accessibility-api@npm:^0.5.9":
- version: 0.5.16
- resolution: "dom-accessibility-api@npm:0.5.16"
- checksum: 10c0/b2c2eda4fae568977cdac27a9f0c001edf4f95a6a6191dfa611e3721db2478d1badc01db5bb4fa8a848aeee13e442a6c2a4386d65ec65a1436f24715a2f8d053
- languageName: node
- linkType: hard
-
-"dom-accessibility-api@npm:^0.6.3":
- version: 0.6.3
- resolution: "dom-accessibility-api@npm:0.6.3"
- checksum: 10c0/10bee5aa514b2a9a37c87cd81268db607a2e933a050074abc2f6fa3da9080ebed206a320cbc123567f2c3087d22292853bdfdceaffdd4334ffe2af9510b29360
- languageName: node
- linkType: hard
-
-"dompurify@npm:^3.0.5 <3.1.7":
- version: 3.1.6
- resolution: "dompurify@npm:3.1.6"
- checksum: 10c0/3de1cca187c78d3d8cb4134fc2985b644d6a81f6b4e024c77cfb04c1c2f38544ccf7b0ea37a48ce22fcca64594170ed7c22252574c75b801c44345cdd7b06c64
- languageName: node
- linkType: hard
-
-"dompurify@npm:^3.2.5":
- version: 3.2.6
- resolution: "dompurify@npm:3.2.6"
- dependencies:
- "@types/trusted-types": "npm:^2.0.7"
- dependenciesMeta:
- "@types/trusted-types":
- optional: true
- checksum: 10c0/c8f8e5b0879a0d93c84a2e5e78649a47d0c057ed0f7850ca3d573d2cca64b84fb1ff85bd4b20980ade69c4e5b80ae73011340f1c2ff375c7ef98bb8268e1d13a
- languageName: node
- linkType: hard
-
-"dot-case@npm:^3.0.4":
- version: 3.0.4
- resolution: "dot-case@npm:3.0.4"
- dependencies:
- no-case: "npm:^3.0.4"
- tslib: "npm:^2.0.3"
- checksum: 10c0/5b859ea65097a7ea870e2c91b5768b72ddf7fa947223fd29e167bcdff58fe731d941c48e47a38ec8aa8e43044c8fbd15cd8fa21689a526bc34b6548197cd5b05
- languageName: node
- linkType: hard
-
-"dunder-proto@npm:^1.0.0, dunder-proto@npm:^1.0.1":
- version: 1.0.1
- resolution: "dunder-proto@npm:1.0.1"
- dependencies:
- call-bind-apply-helpers: "npm:^1.0.1"
- es-errors: "npm:^1.3.0"
- gopd: "npm:^1.2.0"
- checksum: 10c0/199f2a0c1c16593ca0a145dbf76a962f8033ce3129f01284d48c45ed4e14fea9bbacd7b3610b6cdc33486cef20385ac054948fefc6272fcce645c09468f93031
- languageName: node
- linkType: hard
-
-"eastasianwidth@npm:^0.2.0":
- version: 0.2.0
- resolution: "eastasianwidth@npm:0.2.0"
- checksum: 10c0/26f364ebcdb6395f95124fda411f63137a4bfb5d3a06453f7f23dfe52502905bd84e0488172e0f9ec295fdc45f05c23d5d91baf16bd26f0fe9acd777a188dc39
- languageName: node
- linkType: hard
-
-"electron-to-chromium@npm:^1.5.149":
- version: 1.5.151
- resolution: "electron-to-chromium@npm:1.5.151"
- checksum: 10c0/9b3d73836a784af4fd113676b87b0d233ae51984cd4d4396f7252c7369e2f897afeca9fb53910c314e74a4b5d22b6faa4450e95304ceeb1c4fd04e8356030d4b
- languageName: node
- linkType: hard
-
-"elkjs@npm:^0.9.0":
- version: 0.9.3
- resolution: "elkjs@npm:0.9.3"
- checksum: 10c0/caf544ff4fce8442d1d3dd6dface176c9b2fe26fc1e34f56122828e6eef7d2d7fe70d3202f9f3ecf0feb6287d4c8430949f483e63e450a7454bb39ccffab3808
- languageName: node
- linkType: hard
-
-"embla-carousel-auto-height@npm:^8.0.0":
- version: 8.6.0
- resolution: "embla-carousel-auto-height@npm:8.6.0"
- peerDependencies:
- embla-carousel: 8.6.0
- checksum: 10c0/13fefec92619a739fdb86ca65c629636e8a385933d4a8a185f4a5de30d309b44e401edb576dbb9a47e384a9b43a490ade23fa8f2d3b41d6b0f5c63da1a8dc210
- languageName: node
- linkType: hard
-
-"embla-carousel-auto-scroll@npm:^8.0.0":
- version: 8.6.0
- resolution: "embla-carousel-auto-scroll@npm:8.6.0"
- peerDependencies:
- embla-carousel: 8.6.0
- checksum: 10c0/eeab4a1ee9a5732a620f7bd41af04de91f7095c49f4058864e6e64f8194d7730cafbd0a4c75df3eaa75e37f52c8c27418c9f0740706285514f8e389107fe0d09
- languageName: node
- linkType: hard
-
-"embla-carousel-autoplay@npm:^8.0.0":
- version: 8.6.0
- resolution: "embla-carousel-autoplay@npm:8.6.0"
- peerDependencies:
- embla-carousel: 8.6.0
- checksum: 10c0/d7e5cb79c1474b3d27621302e63dedf783a281ae0464b21b87183d58103f938d22be9f6a4735de4b1b19806606006da43f6151497df91c3edbbc99a4dae4a94f
- languageName: node
- linkType: hard
-
-"embla-carousel-react@npm:^8.0.0":
- version: 8.6.0
- resolution: "embla-carousel-react@npm:8.6.0"
- dependencies:
- embla-carousel: "npm:8.6.0"
- embla-carousel-reactive-utils: "npm:8.6.0"
- peerDependencies:
- react: ^16.8.0 || ^17.0.1 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- checksum: 10c0/461b0c427a6fca62e730c7b39d08e9c55b01a2138c173d5b9ebf77ec92092a900b45ac384731c77382b48d5d65946994d3abba6e9899a66d6e16f8ddf191ed1c
- languageName: node
- linkType: hard
-
-"embla-carousel-reactive-utils@npm:8.6.0":
- version: 8.6.0
- resolution: "embla-carousel-reactive-utils@npm:8.6.0"
- peerDependencies:
- embla-carousel: 8.6.0
- checksum: 10c0/33d07e6df4d8dec9b4fc95858838ea2d5e5df078039c05b2a342c05ba4979d8d18564a1c607da445fed744daf969a0b5a90124ce487a854e86ced6f0458b51e9
- languageName: node
- linkType: hard
-
-"embla-carousel@npm:8.6.0":
- version: 8.6.0
- resolution: "embla-carousel@npm:8.6.0"
- checksum: 10c0/f4c598e7be28b70340d31ffd2bebb2472db370b0c81d9b089bf9555cf618695f35dc4a0694565c994c9ab972731123063f945aa09ff485df0df761d79c6a08ef
- languageName: node
- linkType: hard
-
-"emoji-regex@npm:^10.3.0":
- version: 10.4.0
- resolution: "emoji-regex@npm:10.4.0"
- checksum: 10c0/a3fcedfc58bfcce21a05a5f36a529d81e88d602100145fcca3dc6f795e3c8acc4fc18fe773fbf9b6d6e9371205edb3afa2668ec3473fa2aa7fd47d2a9d46482d
- languageName: node
- linkType: hard
-
-"emoji-regex@npm:^8.0.0":
- version: 8.0.0
- resolution: "emoji-regex@npm:8.0.0"
- checksum: 10c0/b6053ad39951c4cf338f9092d7bfba448cdfd46fe6a2a034700b149ac9ffbc137e361cbd3c442297f86bed2e5f7576c1b54cc0a6bf8ef5106cc62f496af35010
- languageName: node
- linkType: hard
-
-"emoji-regex@npm:^9.2.2":
- version: 9.2.2
- resolution: "emoji-regex@npm:9.2.2"
- checksum: 10c0/af014e759a72064cf66e6e694a7fc6b0ed3d8db680427b021a89727689671cefe9d04151b2cad51dbaf85d5ba790d061cd167f1cf32eb7b281f6368b3c181639
- languageName: node
- linkType: hard
-
-"encoding@npm:^0.1.13":
- version: 0.1.13
- resolution: "encoding@npm:0.1.13"
- dependencies:
- iconv-lite: "npm:^0.6.2"
- checksum: 10c0/36d938712ff00fe1f4bac88b43bcffb5930c1efa57bbcdca9d67e1d9d6c57cfb1200fb01efe0f3109b2ce99b231f90779532814a81370a1bd3274a0f58585039
- languageName: node
- linkType: hard
-
-"entities@npm:^4.5.0":
- version: 4.5.0
- resolution: "entities@npm:4.5.0"
- checksum: 10c0/5b039739f7621f5d1ad996715e53d964035f75ad3b9a4d38c6b3804bb226e282ffeae2443624d8fdd9c47d8e926ae9ac009c54671243f0c3294c26af7cc85250
- languageName: node
- linkType: hard
-
-"env-paths@npm:^2.2.0":
- version: 2.2.1
- resolution: "env-paths@npm:2.2.1"
- checksum: 10c0/285325677bf00e30845e330eec32894f5105529db97496ee3f598478e50f008c5352a41a30e5e72ec9de8a542b5a570b85699cd63bd2bc646dbcb9f311d83bc4
- languageName: node
- linkType: hard
-
-"err-code@npm:^2.0.2":
- version: 2.0.3
- resolution: "err-code@npm:2.0.3"
- checksum: 10c0/b642f7b4dd4a376e954947550a3065a9ece6733ab8e51ad80db727aaae0817c2e99b02a97a3d6cecc648a97848305e728289cf312d09af395403a90c9d4d8a66
- languageName: node
- linkType: hard
-
-"es-abstract@npm:^1.17.5, es-abstract@npm:^1.23.2, es-abstract@npm:^1.23.3, es-abstract@npm:^1.23.5, es-abstract@npm:^1.23.6, es-abstract@npm:^1.23.9":
- version: 1.23.9
- resolution: "es-abstract@npm:1.23.9"
- dependencies:
- array-buffer-byte-length: "npm:^1.0.2"
- arraybuffer.prototype.slice: "npm:^1.0.4"
- available-typed-arrays: "npm:^1.0.7"
- call-bind: "npm:^1.0.8"
- call-bound: "npm:^1.0.3"
- data-view-buffer: "npm:^1.0.2"
- data-view-byte-length: "npm:^1.0.2"
- data-view-byte-offset: "npm:^1.0.1"
- es-define-property: "npm:^1.0.1"
- es-errors: "npm:^1.3.0"
- es-object-atoms: "npm:^1.0.0"
- es-set-tostringtag: "npm:^2.1.0"
- es-to-primitive: "npm:^1.3.0"
- function.prototype.name: "npm:^1.1.8"
- get-intrinsic: "npm:^1.2.7"
- get-proto: "npm:^1.0.0"
- get-symbol-description: "npm:^1.1.0"
- globalthis: "npm:^1.0.4"
- gopd: "npm:^1.2.0"
- has-property-descriptors: "npm:^1.0.2"
- has-proto: "npm:^1.2.0"
- has-symbols: "npm:^1.1.0"
- hasown: "npm:^2.0.2"
- internal-slot: "npm:^1.1.0"
- is-array-buffer: "npm:^3.0.5"
- is-callable: "npm:^1.2.7"
- is-data-view: "npm:^1.0.2"
- is-regex: "npm:^1.2.1"
- is-shared-array-buffer: "npm:^1.0.4"
- is-string: "npm:^1.1.1"
- is-typed-array: "npm:^1.1.15"
- is-weakref: "npm:^1.1.0"
- math-intrinsics: "npm:^1.1.0"
- object-inspect: "npm:^1.13.3"
- object-keys: "npm:^1.1.1"
- object.assign: "npm:^4.1.7"
- own-keys: "npm:^1.0.1"
- regexp.prototype.flags: "npm:^1.5.3"
- safe-array-concat: "npm:^1.1.3"
- safe-push-apply: "npm:^1.0.0"
- safe-regex-test: "npm:^1.1.0"
- set-proto: "npm:^1.0.0"
- string.prototype.trim: "npm:^1.2.10"
- string.prototype.trimend: "npm:^1.0.9"
- string.prototype.trimstart: "npm:^1.0.8"
- typed-array-buffer: "npm:^1.0.3"
- typed-array-byte-length: "npm:^1.0.3"
- typed-array-byte-offset: "npm:^1.0.4"
- typed-array-length: "npm:^1.0.7"
- unbox-primitive: "npm:^1.1.0"
- which-typed-array: "npm:^1.1.18"
- checksum: 10c0/1de229c9e08fe13c17fe5abaec8221545dfcd57e51f64909599a6ae896df84b8fd2f7d16c60cb00d7bf495b9298ca3581aded19939d4b7276854a4b066f8422b
- languageName: node
- linkType: hard
-
-"es-define-property@npm:^1.0.0, es-define-property@npm:^1.0.1":
- version: 1.0.1
- resolution: "es-define-property@npm:1.0.1"
- checksum: 10c0/3f54eb49c16c18707949ff25a1456728c883e81259f045003499efba399c08bad00deebf65cccde8c0e07908c1a225c9d472b7107e558f2a48e28d530e34527c
- languageName: node
- linkType: hard
-
-"es-errors@npm:^1.3.0":
- version: 1.3.0
- resolution: "es-errors@npm:1.3.0"
- checksum: 10c0/0a61325670072f98d8ae3b914edab3559b6caa980f08054a3b872052640d91da01d38df55df797fcc916389d77fc92b8d5906cf028f4db46d7e3003abecbca85
- languageName: node
- linkType: hard
-
-"es-iterator-helpers@npm:^1.2.1":
- version: 1.2.1
- resolution: "es-iterator-helpers@npm:1.2.1"
- dependencies:
- call-bind: "npm:^1.0.8"
- call-bound: "npm:^1.0.3"
- define-properties: "npm:^1.2.1"
- es-abstract: "npm:^1.23.6"
- es-errors: "npm:^1.3.0"
- es-set-tostringtag: "npm:^2.0.3"
- function-bind: "npm:^1.1.2"
- get-intrinsic: "npm:^1.2.6"
- globalthis: "npm:^1.0.4"
- gopd: "npm:^1.2.0"
- has-property-descriptors: "npm:^1.0.2"
- has-proto: "npm:^1.2.0"
- has-symbols: "npm:^1.1.0"
- internal-slot: "npm:^1.1.0"
- iterator.prototype: "npm:^1.1.4"
- safe-array-concat: "npm:^1.1.3"
- checksum: 10c0/97e3125ca472d82d8aceea11b790397648b52c26d8768ea1c1ee6309ef45a8755bb63225a43f3150c7591cffc17caf5752459f1e70d583b4184370a8f04ebd2f
- languageName: node
- linkType: hard
-
-"es-object-atoms@npm:^1.0.0, es-object-atoms@npm:^1.1.1":
- version: 1.1.1
- resolution: "es-object-atoms@npm:1.1.1"
- dependencies:
- es-errors: "npm:^1.3.0"
- checksum: 10c0/65364812ca4daf48eb76e2a3b7a89b3f6a2e62a1c420766ce9f692665a29d94fe41fe88b65f24106f449859549711e4b40d9fb8002d862dfd7eb1c512d10be0c
- languageName: node
- linkType: hard
-
-"es-set-tostringtag@npm:^2.0.3, es-set-tostringtag@npm:^2.1.0":
- version: 2.1.0
- resolution: "es-set-tostringtag@npm:2.1.0"
- dependencies:
- es-errors: "npm:^1.3.0"
- get-intrinsic: "npm:^1.2.6"
- has-tostringtag: "npm:^1.0.2"
- hasown: "npm:^2.0.2"
- checksum: 10c0/ef2ca9ce49afe3931cb32e35da4dcb6d86ab02592cfc2ce3e49ced199d9d0bb5085fc7e73e06312213765f5efa47cc1df553a6a5154584b21448e9fb8355b1af
- languageName: node
- linkType: hard
-
-"es-shim-unscopables@npm:^1.0.2":
- version: 1.1.0
- resolution: "es-shim-unscopables@npm:1.1.0"
- dependencies:
- hasown: "npm:^2.0.2"
- checksum: 10c0/1b9702c8a1823fc3ef39035a4e958802cf294dd21e917397c561d0b3e195f383b978359816b1732d02b255ccf63e1e4815da0065b95db8d7c992037be3bbbcdb
- languageName: node
- linkType: hard
-
-"es-to-primitive@npm:^1.3.0":
- version: 1.3.0
- resolution: "es-to-primitive@npm:1.3.0"
- dependencies:
- is-callable: "npm:^1.2.7"
- is-date-object: "npm:^1.0.5"
- is-symbol: "npm:^1.0.4"
- checksum: 10c0/c7e87467abb0b438639baa8139f701a06537d2b9bc758f23e8622c3b42fd0fdb5bde0f535686119e446dd9d5e4c0f238af4e14960f4771877cf818d023f6730b
- languageName: node
- linkType: hard
-
-"esbuild@npm:^0.21.3":
- version: 0.21.5
- resolution: "esbuild@npm:0.21.5"
- dependencies:
- "@esbuild/aix-ppc64": "npm:0.21.5"
- "@esbuild/android-arm": "npm:0.21.5"
- "@esbuild/android-arm64": "npm:0.21.5"
- "@esbuild/android-x64": "npm:0.21.5"
- "@esbuild/darwin-arm64": "npm:0.21.5"
- "@esbuild/darwin-x64": "npm:0.21.5"
- "@esbuild/freebsd-arm64": "npm:0.21.5"
- "@esbuild/freebsd-x64": "npm:0.21.5"
- "@esbuild/linux-arm": "npm:0.21.5"
- "@esbuild/linux-arm64": "npm:0.21.5"
- "@esbuild/linux-ia32": "npm:0.21.5"
- "@esbuild/linux-loong64": "npm:0.21.5"
- "@esbuild/linux-mips64el": "npm:0.21.5"
- "@esbuild/linux-ppc64": "npm:0.21.5"
- "@esbuild/linux-riscv64": "npm:0.21.5"
- "@esbuild/linux-s390x": "npm:0.21.5"
- "@esbuild/linux-x64": "npm:0.21.5"
- "@esbuild/netbsd-x64": "npm:0.21.5"
- "@esbuild/openbsd-x64": "npm:0.21.5"
- "@esbuild/sunos-x64": "npm:0.21.5"
- "@esbuild/win32-arm64": "npm:0.21.5"
- "@esbuild/win32-ia32": "npm:0.21.5"
- "@esbuild/win32-x64": "npm:0.21.5"
- dependenciesMeta:
- "@esbuild/aix-ppc64":
- optional: true
- "@esbuild/android-arm":
- optional: true
- "@esbuild/android-arm64":
- optional: true
- "@esbuild/android-x64":
- optional: true
- "@esbuild/darwin-arm64":
- optional: true
- "@esbuild/darwin-x64":
- optional: true
- "@esbuild/freebsd-arm64":
- optional: true
- "@esbuild/freebsd-x64":
- optional: true
- "@esbuild/linux-arm":
- optional: true
- "@esbuild/linux-arm64":
- optional: true
- "@esbuild/linux-ia32":
- optional: true
- "@esbuild/linux-loong64":
- optional: true
- "@esbuild/linux-mips64el":
- optional: true
- "@esbuild/linux-ppc64":
- optional: true
- "@esbuild/linux-riscv64":
- optional: true
- "@esbuild/linux-s390x":
- optional: true
- "@esbuild/linux-x64":
- optional: true
- "@esbuild/netbsd-x64":
- optional: true
- "@esbuild/openbsd-x64":
- optional: true
- "@esbuild/sunos-x64":
- optional: true
- "@esbuild/win32-arm64":
- optional: true
- "@esbuild/win32-ia32":
- optional: true
- "@esbuild/win32-x64":
- optional: true
- bin:
- esbuild: bin/esbuild
- checksum: 10c0/fa08508adf683c3f399e8a014a6382a6b65542213431e26206c0720e536b31c09b50798747c2a105a4bbba1d9767b8d3615a74c2f7bf1ddf6d836cd11eb672de
- languageName: node
- linkType: hard
-
-"escalade@npm:^3.2.0":
- version: 3.2.0
- resolution: "escalade@npm:3.2.0"
- checksum: 10c0/ced4dd3a78e15897ed3be74e635110bbf3b08877b0a41be50dcb325ee0e0b5f65fc2d50e9845194d7c4633f327e2e1c6cce00a71b617c5673df0374201d67f65
- languageName: node
- linkType: hard
-
-"escape-string-regexp@npm:5.0.0, escape-string-regexp@npm:^5.0.0":
- version: 5.0.0
- resolution: "escape-string-regexp@npm:5.0.0"
- checksum: 10c0/6366f474c6f37a802800a435232395e04e9885919873e382b157ab7e8f0feb8fed71497f84a6f6a81a49aab41815522f5839112bd38026d203aea0c91622df95
- languageName: node
- linkType: hard
-
-"escape-string-regexp@npm:^1.0.5":
- version: 1.0.5
- resolution: "escape-string-regexp@npm:1.0.5"
- checksum: 10c0/a968ad453dd0c2724e14a4f20e177aaf32bb384ab41b674a8454afe9a41c5e6fe8903323e0a1052f56289d04bd600f81278edf140b0fcc02f5cac98d0f5b5371
- languageName: node
- linkType: hard
-
-"escape-string-regexp@npm:^4.0.0":
- version: 4.0.0
- resolution: "escape-string-regexp@npm:4.0.0"
- checksum: 10c0/9497d4dd307d845bd7f75180d8188bb17ea8c151c1edbf6b6717c100e104d629dc2dfb687686181b0f4b7d732c7dfdc4d5e7a8ff72de1b0ca283a75bbb3a9cd9
- languageName: node
- linkType: hard
-
-"eslint-config-next@npm:14.1.4":
- version: 14.1.4
- resolution: "eslint-config-next@npm:14.1.4"
- dependencies:
- "@next/eslint-plugin-next": "npm:14.1.4"
- "@rushstack/eslint-patch": "npm:^1.3.3"
- "@typescript-eslint/parser": "npm:^5.4.2 || ^6.0.0"
- eslint-import-resolver-node: "npm:^0.3.6"
- eslint-import-resolver-typescript: "npm:^3.5.2"
- eslint-plugin-import: "npm:^2.28.1"
- eslint-plugin-jsx-a11y: "npm:^6.7.1"
- eslint-plugin-react: "npm:^7.33.2"
- eslint-plugin-react-hooks: "npm:^4.5.0 || 5.0.0-canary-7118f5dd7-20230705"
- peerDependencies:
- eslint: ^7.23.0 || ^8.0.0
- typescript: ">=3.3.1"
- peerDependenciesMeta:
- typescript:
- optional: true
- checksum: 10c0/05f1108a2192708b4d4dab2bcb454c551bb8af5802c99f7abf98318ade95d52ed9459a03f3fa6498b2d144a0f8e846c27cdc1b23370962da83d22fdfb3d50bde
- languageName: node
- linkType: hard
-
-"eslint-import-resolver-node@npm:^0.3.6, eslint-import-resolver-node@npm:^0.3.9":
- version: 0.3.9
- resolution: "eslint-import-resolver-node@npm:0.3.9"
- dependencies:
- debug: "npm:^3.2.7"
- is-core-module: "npm:^2.13.0"
- resolve: "npm:^1.22.4"
- checksum: 10c0/0ea8a24a72328a51fd95aa8f660dcca74c1429806737cf10261ab90cfcaaf62fd1eff664b76a44270868e0a932711a81b250053942595bcd00a93b1c1575dd61
- languageName: node
- linkType: hard
-
-"eslint-import-resolver-typescript@npm:^3.5.2":
- version: 3.10.1
- resolution: "eslint-import-resolver-typescript@npm:3.10.1"
- dependencies:
- "@nolyfill/is-core-module": "npm:1.0.39"
- debug: "npm:^4.4.0"
- get-tsconfig: "npm:^4.10.0"
- is-bun-module: "npm:^2.0.0"
- stable-hash: "npm:^0.0.5"
- tinyglobby: "npm:^0.2.13"
- unrs-resolver: "npm:^1.6.2"
- peerDependencies:
- eslint: "*"
- eslint-plugin-import: "*"
- eslint-plugin-import-x: "*"
- peerDependenciesMeta:
- eslint-plugin-import:
- optional: true
- eslint-plugin-import-x:
- optional: true
- checksum: 10c0/02ba72cf757753ab9250806c066d09082e00807b7b6525d7687e1c0710bc3f6947e39120227fe1f93dabea3510776d86fb3fd769466ba3c46ce67e9f874cb702
- languageName: node
- linkType: hard
-
-"eslint-module-utils@npm:^2.12.0":
- version: 2.12.0
- resolution: "eslint-module-utils@npm:2.12.0"
- dependencies:
- debug: "npm:^3.2.7"
- peerDependenciesMeta:
- eslint:
- optional: true
- checksum: 10c0/4d8b46dcd525d71276f9be9ffac1d2be61c9d54cc53c992e6333cf957840dee09381842b1acbbb15fc6b255ebab99cd481c5007ab438e5455a14abe1a0468558
- languageName: node
- linkType: hard
-
-"eslint-plugin-import@npm:^2.28.1":
- version: 2.31.0
- resolution: "eslint-plugin-import@npm:2.31.0"
- dependencies:
- "@rtsao/scc": "npm:^1.1.0"
- array-includes: "npm:^3.1.8"
- array.prototype.findlastindex: "npm:^1.2.5"
- array.prototype.flat: "npm:^1.3.2"
- array.prototype.flatmap: "npm:^1.3.2"
- debug: "npm:^3.2.7"
- doctrine: "npm:^2.1.0"
- eslint-import-resolver-node: "npm:^0.3.9"
- eslint-module-utils: "npm:^2.12.0"
- hasown: "npm:^2.0.2"
- is-core-module: "npm:^2.15.1"
- is-glob: "npm:^4.0.3"
- minimatch: "npm:^3.1.2"
- object.fromentries: "npm:^2.0.8"
- object.groupby: "npm:^1.0.3"
- object.values: "npm:^1.2.0"
- semver: "npm:^6.3.1"
- string.prototype.trimend: "npm:^1.0.8"
- tsconfig-paths: "npm:^3.15.0"
- peerDependencies:
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9
- checksum: 10c0/e21d116ddd1900e091ad120b3eb68c5dd5437fe2c930f1211781cd38b246f090a6b74d5f3800b8255a0ed29782591521ad44eb21c5534960a8f1fb4040fd913a
- languageName: node
- linkType: hard
-
-"eslint-plugin-jsx-a11y@npm:^6.7.1":
- version: 6.10.2
- resolution: "eslint-plugin-jsx-a11y@npm:6.10.2"
- dependencies:
- aria-query: "npm:^5.3.2"
- array-includes: "npm:^3.1.8"
- array.prototype.flatmap: "npm:^1.3.2"
- ast-types-flow: "npm:^0.0.8"
- axe-core: "npm:^4.10.0"
- axobject-query: "npm:^4.1.0"
- damerau-levenshtein: "npm:^1.0.8"
- emoji-regex: "npm:^9.2.2"
- hasown: "npm:^2.0.2"
- jsx-ast-utils: "npm:^3.3.5"
- language-tags: "npm:^1.0.9"
- minimatch: "npm:^3.1.2"
- object.fromentries: "npm:^2.0.8"
- safe-regex-test: "npm:^1.0.3"
- string.prototype.includes: "npm:^2.0.1"
- peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
- checksum: 10c0/d93354e03b0cf66f018d5c50964e074dffe4ddf1f9b535fa020d19c4ae45f89c1a16e9391ca61ac3b19f7042c751ac0d361a056a65cbd1de24718a53ff8daa6e
- languageName: node
- linkType: hard
-
-"eslint-plugin-react-hooks@npm:^4.5.0 || 5.0.0-canary-7118f5dd7-20230705":
- version: 5.0.0-canary-7118f5dd7-20230705
- resolution: "eslint-plugin-react-hooks@npm:5.0.0-canary-7118f5dd7-20230705"
- peerDependencies:
- eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
- checksum: 10c0/554c4e426bfeb126155510dcba8345391426af147ee629f1c56c9ef6af08340d11008213e4e15b0138830af2c4439d7158da2091987f7efb01aeab662c44b274
- languageName: node
- linkType: hard
-
-"eslint-plugin-react@npm:^7.33.2":
- version: 7.37.5
- resolution: "eslint-plugin-react@npm:7.37.5"
- dependencies:
- array-includes: "npm:^3.1.8"
- array.prototype.findlast: "npm:^1.2.5"
- array.prototype.flatmap: "npm:^1.3.3"
- array.prototype.tosorted: "npm:^1.1.4"
- doctrine: "npm:^2.1.0"
- es-iterator-helpers: "npm:^1.2.1"
- estraverse: "npm:^5.3.0"
- hasown: "npm:^2.0.2"
- jsx-ast-utils: "npm:^2.4.1 || ^3.0.0"
- minimatch: "npm:^3.1.2"
- object.entries: "npm:^1.1.9"
- object.fromentries: "npm:^2.0.8"
- object.values: "npm:^1.2.1"
- prop-types: "npm:^15.8.1"
- resolve: "npm:^2.0.0-next.5"
- semver: "npm:^6.3.1"
- string.prototype.matchall: "npm:^4.0.12"
- string.prototype.repeat: "npm:^1.0.0"
- peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
- checksum: 10c0/c850bfd556291d4d9234f5ca38db1436924a1013627c8ab1853f77cac73ec19b020e861e6c7b783436a48b6ffcdfba4547598235a37ad4611b6739f65fd8ad57
- languageName: node
- linkType: hard
-
-"eslint-scope@npm:^7.2.2":
- version: 7.2.2
- resolution: "eslint-scope@npm:7.2.2"
- dependencies:
- esrecurse: "npm:^4.3.0"
- estraverse: "npm:^5.2.0"
- checksum: 10c0/613c267aea34b5a6d6c00514e8545ef1f1433108097e857225fed40d397dd6b1809dffd11c2fde23b37ca53d7bf935fe04d2a18e6fc932b31837b6ad67e1c116
- languageName: node
- linkType: hard
-
-"eslint-visitor-keys@npm:^3.4.1, eslint-visitor-keys@npm:^3.4.3":
- version: 3.4.3
- resolution: "eslint-visitor-keys@npm:3.4.3"
- checksum: 10c0/92708e882c0a5ffd88c23c0b404ac1628cf20104a108c745f240a13c332a11aac54f49a22d5762efbffc18ecbc9a580d1b7ad034bf5f3cc3307e5cbff2ec9820
- languageName: node
- linkType: hard
-
-"eslint@npm:^8":
- version: 8.57.1
- resolution: "eslint@npm:8.57.1"
- dependencies:
- "@eslint-community/eslint-utils": "npm:^4.2.0"
- "@eslint-community/regexpp": "npm:^4.6.1"
- "@eslint/eslintrc": "npm:^2.1.4"
- "@eslint/js": "npm:8.57.1"
- "@humanwhocodes/config-array": "npm:^0.13.0"
- "@humanwhocodes/module-importer": "npm:^1.0.1"
- "@nodelib/fs.walk": "npm:^1.2.8"
- "@ungap/structured-clone": "npm:^1.2.0"
- ajv: "npm:^6.12.4"
- chalk: "npm:^4.0.0"
- cross-spawn: "npm:^7.0.2"
- debug: "npm:^4.3.2"
- doctrine: "npm:^3.0.0"
- escape-string-regexp: "npm:^4.0.0"
- eslint-scope: "npm:^7.2.2"
- eslint-visitor-keys: "npm:^3.4.3"
- espree: "npm:^9.6.1"
- esquery: "npm:^1.4.2"
- esutils: "npm:^2.0.2"
- fast-deep-equal: "npm:^3.1.3"
- file-entry-cache: "npm:^6.0.1"
- find-up: "npm:^5.0.0"
- glob-parent: "npm:^6.0.2"
- globals: "npm:^13.19.0"
- graphemer: "npm:^1.4.0"
- ignore: "npm:^5.2.0"
- imurmurhash: "npm:^0.1.4"
- is-glob: "npm:^4.0.0"
- is-path-inside: "npm:^3.0.3"
- js-yaml: "npm:^4.1.0"
- json-stable-stringify-without-jsonify: "npm:^1.0.1"
- levn: "npm:^0.4.1"
- lodash.merge: "npm:^4.6.2"
- minimatch: "npm:^3.1.2"
- natural-compare: "npm:^1.4.0"
- optionator: "npm:^0.9.3"
- strip-ansi: "npm:^6.0.1"
- text-table: "npm:^0.2.0"
- bin:
- eslint: bin/eslint.js
- checksum: 10c0/1fd31533086c1b72f86770a4d9d7058ee8b4643fd1cfd10c7aac1ecb8725698e88352a87805cf4b2ce890aa35947df4b4da9655fb7fdfa60dbb448a43f6ebcf1
- languageName: node
- linkType: hard
-
-"espree@npm:^9.6.0, espree@npm:^9.6.1":
- version: 9.6.1
- resolution: "espree@npm:9.6.1"
- dependencies:
- acorn: "npm:^8.9.0"
- acorn-jsx: "npm:^5.3.2"
- eslint-visitor-keys: "npm:^3.4.1"
- checksum: 10c0/1a2e9b4699b715347f62330bcc76aee224390c28bb02b31a3752e9d07549c473f5f986720483c6469cf3cfb3c9d05df612ffc69eb1ee94b54b739e67de9bb460
- languageName: node
- linkType: hard
-
-"esprima@npm:^4.0.0":
- version: 4.0.1
- resolution: "esprima@npm:4.0.1"
- bin:
- esparse: ./bin/esparse.js
- esvalidate: ./bin/esvalidate.js
- checksum: 10c0/ad4bab9ead0808cf56501750fd9d3fb276f6b105f987707d059005d57e182d18a7c9ec7f3a01794ebddcca676773e42ca48a32d67a250c9d35e009ca613caba3
- languageName: node
- linkType: hard
-
-"esquery@npm:^1.4.2":
- version: 1.6.0
- resolution: "esquery@npm:1.6.0"
- dependencies:
- estraverse: "npm:^5.1.0"
- checksum: 10c0/cb9065ec605f9da7a76ca6dadb0619dfb611e37a81e318732977d90fab50a256b95fee2d925fba7c2f3f0523aa16f91587246693bc09bc34d5a59575fe6e93d2
- languageName: node
- linkType: hard
-
-"esrecurse@npm:^4.3.0":
- version: 4.3.0
- resolution: "esrecurse@npm:4.3.0"
- dependencies:
- estraverse: "npm:^5.2.0"
- checksum: 10c0/81a37116d1408ded88ada45b9fb16dbd26fba3aadc369ce50fcaf82a0bac12772ebd7b24cd7b91fc66786bf2c1ac7b5f196bc990a473efff972f5cb338877cf5
- languageName: node
- linkType: hard
-
-"estraverse@npm:^5.1.0, estraverse@npm:^5.2.0, estraverse@npm:^5.3.0":
- version: 5.3.0
- resolution: "estraverse@npm:5.3.0"
- checksum: 10c0/1ff9447b96263dec95d6d67431c5e0771eb9776427421260a3e2f0fdd5d6bd4f8e37a7338f5ad2880c9f143450c9b1e4fc2069060724570a49cf9cf0312bd107
- languageName: node
- linkType: hard
-
-"estree-util-attach-comments@npm:^2.0.0":
- version: 2.1.1
- resolution: "estree-util-attach-comments@npm:2.1.1"
- dependencies:
- "@types/estree": "npm:^1.0.0"
- checksum: 10c0/cdb5fdb5809b376ca4a96afbcd916c3570b4bbf5d0115b8a9e1e8a10885d8d9fb549df0a16c077abb42ee35fa33192b69714bac25d4f3c43a36092288c9a64fd
- languageName: node
- linkType: hard
-
-"estree-util-build-jsx@npm:^2.0.0":
- version: 2.2.2
- resolution: "estree-util-build-jsx@npm:2.2.2"
- dependencies:
- "@types/estree-jsx": "npm:^1.0.0"
- estree-util-is-identifier-name: "npm:^2.0.0"
- estree-walker: "npm:^3.0.0"
- checksum: 10c0/2cef6ad6747f51934eba0601c3477ba08c98331cfe616635e08dfc89d06b9bbd370c4d80e87fe7d42d82776fa7840868201f48491b0ef9c808039f15fe4667e1
- languageName: node
- linkType: hard
-
-"estree-util-is-identifier-name@npm:^2.0.0":
- version: 2.1.0
- resolution: "estree-util-is-identifier-name@npm:2.1.0"
- checksum: 10c0/cc241a6998d30f4e8775ec34b042ef93e0085cd1bdf692a01f22e9b748f0866c76679475ff87935be1d8d5b1a7648be8cba366dc60866b372269f35feec756fe
- languageName: node
- linkType: hard
-
-"estree-util-is-identifier-name@npm:^3.0.0":
- version: 3.0.0
- resolution: "estree-util-is-identifier-name@npm:3.0.0"
- checksum: 10c0/d1881c6ed14bd588ebd508fc90bf2a541811dbb9ca04dec2f39d27dcaa635f85b5ed9bbbe7fc6fb1ddfca68744a5f7c70456b4b7108b6c4c52780631cc787c5b
- languageName: node
- linkType: hard
-
-"estree-util-to-js@npm:^1.1.0":
- version: 1.2.0
- resolution: "estree-util-to-js@npm:1.2.0"
- dependencies:
- "@types/estree-jsx": "npm:^1.0.0"
- astring: "npm:^1.8.0"
- source-map: "npm:^0.7.0"
- checksum: 10c0/ad9c99dc34b0510ab813b485251acbf0abd06361c07b13c08da5d1611c279bee02ec09f2c269ae30b8d2da587115fc1fad4fa9f2f5ba69e094e758a3a4de7069
- languageName: node
- linkType: hard
-
-"estree-util-value-to-estree@npm:^1.3.0":
- version: 1.3.0
- resolution: "estree-util-value-to-estree@npm:1.3.0"
- dependencies:
- is-plain-obj: "npm:^3.0.0"
- checksum: 10c0/8bf46c4629f55a6ad3a6c523277cd34591cf57dfcab01cf4f218a8780cd23d21901c393693484c449a46bad7b9cb6fbf24c3dd1c1b057e10fd6a076f24fd5f3f
- languageName: node
- linkType: hard
-
-"estree-util-visit@npm:^1.0.0":
- version: 1.2.1
- resolution: "estree-util-visit@npm:1.2.1"
- dependencies:
- "@types/estree-jsx": "npm:^1.0.0"
- "@types/unist": "npm:^2.0.0"
- checksum: 10c0/3c47086ab25947a889fca9f58a842e0d27edadcad24dc393fdd7c9ad3419fe05b3c63b6fc9d6c9d8f50d32bca615cd0a3fe8d0e6b300fb94f74c91210b55ea5d
- languageName: node
- linkType: hard
-
-"estree-walker@npm:^3.0.0, estree-walker@npm:^3.0.3":
- version: 3.0.3
- resolution: "estree-walker@npm:3.0.3"
- dependencies:
- "@types/estree": "npm:^1.0.0"
- checksum: 10c0/c12e3c2b2642d2bcae7d5aa495c60fa2f299160946535763969a1c83fc74518ffa9c2cd3a8b69ac56aea547df6a8aac25f729a342992ef0bbac5f1c73e78995d
- languageName: node
- linkType: hard
-
-"esutils@npm:^2.0.2":
- version: 2.0.3
- resolution: "esutils@npm:2.0.3"
- checksum: 10c0/9a2fe69a41bfdade834ba7c42de4723c97ec776e40656919c62cbd13607c45e127a003f05f724a1ea55e5029a4cf2de444b13009f2af71271e42d93a637137c7
- languageName: node
- linkType: hard
-
-"execa@npm:^0.8.0":
- version: 0.8.0
- resolution: "execa@npm:0.8.0"
- dependencies:
- cross-spawn: "npm:^5.0.1"
- get-stream: "npm:^3.0.0"
- is-stream: "npm:^1.1.0"
- npm-run-path: "npm:^2.0.0"
- p-finally: "npm:^1.0.0"
- signal-exit: "npm:^3.0.0"
- strip-eof: "npm:^1.0.0"
- checksum: 10c0/e6c085687024cd5d348cad98a12213f6ebad2e962c7f3298ea8608fd5ed2daad8d1e27e79bfe7104bf60d8d80b56dd60267a0667006c29019e4297c96ecfe99d
- languageName: node
- linkType: hard
-
-"expand-tilde@npm:^2.0.0, expand-tilde@npm:^2.0.2":
- version: 2.0.2
- resolution: "expand-tilde@npm:2.0.2"
- dependencies:
- homedir-polyfill: "npm:^1.0.1"
- checksum: 10c0/205a60497422746d1c3acbc1d65bd609b945066f239a2b785e69a7a651ac4cbeb4e08555b1ea0023abbe855e6fcb5bbf27d0b371367fdccd303d4fb2b4d66845
- languageName: node
- linkType: hard
-
-"exponential-backoff@npm:^3.1.1":
- version: 3.1.2
- resolution: "exponential-backoff@npm:3.1.2"
- checksum: 10c0/d9d3e1eafa21b78464297df91f1776f7fbaa3d5e3f7f0995648ca5b89c069d17055033817348d9f4a43d1c20b0eab84f75af6991751e839df53e4dfd6f22e844
- languageName: node
- linkType: hard
-
-"exsolve@npm:^1.0.7":
- version: 1.0.7
- resolution: "exsolve@npm:1.0.7"
- checksum: 10c0/4479369d0bd84bb7e0b4f5d9bc18d26a89b6dbbbccd73f9d383d14892ef78ddbe159e01781055342f83dc00ebe90044036daf17ddf55cc21e2cac6609aa15631
- languageName: node
- linkType: hard
-
-"extend-shallow@npm:^2.0.1":
- version: 2.0.1
- resolution: "extend-shallow@npm:2.0.1"
- dependencies:
- is-extendable: "npm:^0.1.0"
- checksum: 10c0/ee1cb0a18c9faddb42d791b2d64867bd6cfd0f3affb711782eb6e894dd193e2934a7f529426aac7c8ddb31ac5d38000a00aa2caf08aa3dfc3e1c8ff6ba340bd9
- languageName: node
- linkType: hard
-
-"extend@npm:^3.0.0, extend@npm:^3.0.2":
- version: 3.0.2
- resolution: "extend@npm:3.0.2"
- checksum: 10c0/73bf6e27406e80aa3e85b0d1c4fd987261e628064e170ca781125c0b635a3dabad5e05adbf07595ea0cf1e6c5396cacb214af933da7cbaf24fe75ff14818e8f9
- languageName: node
- linkType: hard
-
-"external-editor@npm:^3.1.0":
- version: 3.1.0
- resolution: "external-editor@npm:3.1.0"
- dependencies:
- chardet: "npm:^0.7.0"
- iconv-lite: "npm:^0.4.24"
- tmp: "npm:^0.0.33"
- checksum: 10c0/c98f1ba3efdfa3c561db4447ff366a6adb5c1e2581462522c56a18bf90dfe4da382f9cd1feee3e330108c3595a854b218272539f311ba1b3298f841eb0fbf339
- languageName: node
- linkType: hard
-
-"fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:^3.1.3":
- version: 3.1.3
- resolution: "fast-deep-equal@npm:3.1.3"
- checksum: 10c0/40dedc862eb8992c54579c66d914635afbec43350afbbe991235fdcb4e3a8d5af1b23ae7e79bef7d4882d0ecee06c3197488026998fb19f72dc95acff1d1b1d0
- languageName: node
- linkType: hard
-
-"fast-glob@npm:^3.2.12, fast-glob@npm:^3.2.9, fast-glob@npm:^3.3.0, fast-glob@npm:^3.3.2":
- version: 3.3.3
- resolution: "fast-glob@npm:3.3.3"
- dependencies:
- "@nodelib/fs.stat": "npm:^2.0.2"
- "@nodelib/fs.walk": "npm:^1.2.3"
- glob-parent: "npm:^5.1.2"
- merge2: "npm:^1.3.0"
- micromatch: "npm:^4.0.8"
- checksum: 10c0/f6aaa141d0d3384cf73cbcdfc52f475ed293f6d5b65bfc5def368b09163a9f7e5ec2b3014d80f733c405f58e470ee0cc451c2937685045cddcdeaa24199c43fe
- languageName: node
- linkType: hard
-
-"fast-json-stable-stringify@npm:^2.0.0":
- version: 2.1.0
- resolution: "fast-json-stable-stringify@npm:2.1.0"
- checksum: 10c0/7f081eb0b8a64e0057b3bb03f974b3ef00135fbf36c1c710895cd9300f13c94ba809bb3a81cf4e1b03f6e5285610a61abbd7602d0652de423144dfee5a389c9b
- languageName: node
- linkType: hard
-
-"fast-levenshtein@npm:^2.0.6":
- version: 2.0.6
- resolution: "fast-levenshtein@npm:2.0.6"
- checksum: 10c0/111972b37338bcb88f7d9e2c5907862c280ebf4234433b95bc611e518d192ccb2d38119c4ac86e26b668d75f7f3894f4ff5c4982899afced7ca78633b08287c4
- languageName: node
- linkType: hard
-
-"fast-uri@npm:^3.0.1":
- version: 3.0.6
- resolution: "fast-uri@npm:3.0.6"
- checksum: 10c0/74a513c2af0584448aee71ce56005185f81239eab7a2343110e5bad50c39ad4fb19c5a6f99783ead1cac7ccaf3461a6034fda89fffa2b30b6d99b9f21c2f9d29
- languageName: node
- linkType: hard
-
-"fastq@npm:^1.6.0":
- version: 1.19.1
- resolution: "fastq@npm:1.19.1"
- dependencies:
- reusify: "npm:^1.0.4"
- checksum: 10c0/ebc6e50ac7048daaeb8e64522a1ea7a26e92b3cee5cd1c7f2316cdca81ba543aa40a136b53891446ea5c3a67ec215fbaca87ad405f102dd97012f62916905630
- languageName: node
- linkType: hard
-
-"fdir@npm:^6.4.4":
- version: 6.4.4
- resolution: "fdir@npm:6.4.4"
- peerDependencies:
- picomatch: ^3 || ^4
- peerDependenciesMeta:
- picomatch:
- optional: true
- checksum: 10c0/6ccc33be16945ee7bc841e1b4178c0b4cf18d3804894cb482aa514651c962a162f96da7ffc6ebfaf0df311689fb70091b04dd6caffe28d56b9ebdc0e7ccadfdd
- languageName: node
- linkType: hard
-
-"fflate@npm:^0.4.8":
- version: 0.4.8
- resolution: "fflate@npm:0.4.8"
- checksum: 10c0/29d1eddaaa5deab61b1c6b0d21282adacadbc4d2c01e94d8b1ee784398151673b9c563e53f97a801bc410a1ae55e8de5378114a743430e643e7a0644ba8e5a42
- languageName: node
- linkType: hard
-
-"file-entry-cache@npm:^6.0.1":
- version: 6.0.1
- resolution: "file-entry-cache@npm:6.0.1"
- dependencies:
- flat-cache: "npm:^3.0.4"
- checksum: 10c0/58473e8a82794d01b38e5e435f6feaf648e3f36fdb3a56e98f417f4efae71ad1c0d4ebd8a9a7c50c3ad085820a93fc7494ad721e0e4ebc1da3573f4e1c3c7cdd
- languageName: node
- linkType: hard
-
-"fill-range@npm:^7.1.1":
- version: 7.1.1
- resolution: "fill-range@npm:7.1.1"
- dependencies:
- to-regex-range: "npm:^5.0.1"
- checksum: 10c0/b75b691bbe065472f38824f694c2f7449d7f5004aa950426a2c28f0306c60db9b880c0b0e4ed819997ffb882d1da02cfcfc819bddc94d71627f5269682edf018
- languageName: node
- linkType: hard
-
-"find-up@npm:^5.0.0":
- version: 5.0.0
- resolution: "find-up@npm:5.0.0"
- dependencies:
- locate-path: "npm:^6.0.0"
- path-exists: "npm:^4.0.0"
- checksum: 10c0/062c5a83a9c02f53cdd6d175a37ecf8f87ea5bbff1fdfb828f04bfa021441bc7583e8ebc0872a4c1baab96221fb8a8a275a19809fb93fbc40bd69ec35634069a
- languageName: node
- linkType: hard
-
-"findup-sync@npm:^5.0.0":
- version: 5.0.0
- resolution: "findup-sync@npm:5.0.0"
- dependencies:
- detect-file: "npm:^1.0.0"
- is-glob: "npm:^4.0.3"
- micromatch: "npm:^4.0.4"
- resolve-dir: "npm:^1.0.1"
- checksum: 10c0/bbdb8af8c86a0bde4445e2f738003b92e4cd2a4539a5b45199d0252f2f504aeaf19aeca1fac776c3632c60657b2659151e72c8ead29a79617459a57419a0920b
- languageName: node
- linkType: hard
-
-"fined@npm:^2.0.0":
- version: 2.0.0
- resolution: "fined@npm:2.0.0"
- dependencies:
- expand-tilde: "npm:^2.0.2"
- is-plain-object: "npm:^5.0.0"
- object.defaults: "npm:^1.1.0"
- object.pick: "npm:^1.3.0"
- parse-filepath: "npm:^1.0.2"
- checksum: 10c0/0a06efeb0ede9a4e392e3a1295d238cfdb17ac0bffb0983656d34bc10dd41ffb468dc8077e0f8c140a989ec827e4a729ab77db517c1cb8f3497305710f3747e2
- languageName: node
- linkType: hard
-
-"flagged-respawn@npm:^2.0.0":
- version: 2.0.0
- resolution: "flagged-respawn@npm:2.0.0"
- checksum: 10c0/630c8ce4e6dc6425d98d31a533af8a012187904bbd0ce0afebc9bf25c47da7b27901f75fca2da5ab37fc8d77109dc5da3ddab98ab400f9d9f985871513e2692a
- languageName: node
- linkType: hard
-
-"flat-cache@npm:^3.0.4":
- version: 3.2.0
- resolution: "flat-cache@npm:3.2.0"
- dependencies:
- flatted: "npm:^3.2.9"
- keyv: "npm:^4.5.3"
- rimraf: "npm:^3.0.2"
- checksum: 10c0/b76f611bd5f5d68f7ae632e3ae503e678d205cf97a17c6ab5b12f6ca61188b5f1f7464503efae6dc18683ed8f0b41460beb48ac4b9ac63fe6201296a91ba2f75
- languageName: node
- linkType: hard
-
-"flatted@npm:^3.2.9":
- version: 3.3.3
- resolution: "flatted@npm:3.3.3"
- checksum: 10c0/e957a1c6b0254aa15b8cce8533e24165abd98fadc98575db082b786b5da1b7d72062b81bfdcd1da2f4d46b6ed93bec2434e62333e9b4261d79ef2e75a10dd538
- languageName: node
- linkType: hard
-
-"flexsearch@npm:^0.7.31":
- version: 0.7.43
- resolution: "flexsearch@npm:0.7.43"
- checksum: 10c0/797dc474ed97750b8e85c118b1af63eb2709da5fc05defcb13e96515774f28743ccb2448b63f3b703cf1ca571928c006069503dacf7d177bc07b9ee15e1f85d0
- languageName: node
- linkType: hard
-
-"focus-visible@npm:^5.2.0":
- version: 5.2.1
- resolution: "focus-visible@npm:5.2.1"
- checksum: 10c0/1c0e4e8b22be8684a664acc340efd6a41aafb560ce09979186a1c934de321ce8d6a3d7175c946aab1c87409b0e10f623274d7ce7d42ff16a0e4dc862fa151623
- languageName: node
- linkType: hard
-
-"follow-redirects@npm:^1.15.6":
- version: 1.15.9
- resolution: "follow-redirects@npm:1.15.9"
- peerDependenciesMeta:
- debug:
- optional: true
- checksum: 10c0/5829165bd112c3c0e82be6c15b1a58fa9dcfaede3b3c54697a82fe4a62dd5ae5e8222956b448d2f98e331525f05d00404aba7d696de9e761ef6e42fdc780244f
- languageName: node
- linkType: hard
-
-"for-each@npm:^0.3.3, for-each@npm:^0.3.5":
- version: 0.3.5
- resolution: "for-each@npm:0.3.5"
- dependencies:
- is-callable: "npm:^1.2.7"
- checksum: 10c0/0e0b50f6a843a282637d43674d1fb278dda1dd85f4f99b640024cfb10b85058aac0cc781bf689d5fe50b4b7f638e91e548560723a4e76e04fe96ae35ef039cee
- languageName: node
- linkType: hard
-
-"for-in@npm:^1.0.1":
- version: 1.0.2
- resolution: "for-in@npm:1.0.2"
- checksum: 10c0/42bb609d564b1dc340e1996868b67961257fd03a48d7fdafd4f5119530b87f962be6b4d5b7e3a3fc84c9854d149494b1d358e0b0ce9837e64c4c6603a49451d6
- languageName: node
- linkType: hard
-
-"for-own@npm:^1.0.0":
- version: 1.0.0
- resolution: "for-own@npm:1.0.0"
- dependencies:
- for-in: "npm:^1.0.1"
- checksum: 10c0/ca475bc22935edf923631e9e23588edcbed33a30f0c81adc98e2c7df35db362ec4f4b569bc69051c7cfc309dfc223818c09a2f52ccd9ed77b71931c913a43a13
- languageName: node
- linkType: hard
-
-"foreground-child@npm:^3.1.0":
- version: 3.3.1
- resolution: "foreground-child@npm:3.3.1"
- dependencies:
- cross-spawn: "npm:^7.0.6"
- signal-exit: "npm:^4.0.1"
- checksum: 10c0/8986e4af2430896e65bc2788d6679067294d6aee9545daefc84923a0a4b399ad9c7a3ea7bd8c0b2b80fdf4a92de4c69df3f628233ff3224260e9c1541a9e9ed3
- languageName: node
- linkType: hard
-
-"form-data@npm:^4.0.0":
- version: 4.0.2
- resolution: "form-data@npm:4.0.2"
- dependencies:
- asynckit: "npm:^0.4.0"
- combined-stream: "npm:^1.0.8"
- es-set-tostringtag: "npm:^2.1.0"
- mime-types: "npm:^2.1.12"
- checksum: 10c0/e534b0cf025c831a0929bf4b9bbe1a9a6b03e273a8161f9947286b9b13bf8fb279c6944aae0070c4c311100c6d6dbb815cd955dc217728caf73fad8dc5b8ee9c
- languageName: node
- linkType: hard
-
-"formdata-node@npm:^4.4.1":
- version: 4.4.1
- resolution: "formdata-node@npm:4.4.1"
- dependencies:
- node-domexception: "npm:1.0.0"
- web-streams-polyfill: "npm:4.0.0-beta.3"
- checksum: 10c0/74151e7b228ffb33b565cec69182694ad07cc3fdd9126a8240468bb70a8ba66e97e097072b60bcb08729b24c7ce3fd3e0bd7f1f80df6f9f662b9656786e76f6a
- languageName: node
- linkType: hard
-
-"fraction.js@npm:^4.3.7":
- version: 4.3.7
- resolution: "fraction.js@npm:4.3.7"
- checksum: 10c0/df291391beea9ab4c263487ffd9d17fed162dbb736982dee1379b2a8cc94e4e24e46ed508c6d278aded9080ba51872f1bc5f3a5fd8d7c74e5f105b508ac28711
- languageName: node
- linkType: hard
-
-"fs-minipass@npm:^3.0.0":
- version: 3.0.3
- resolution: "fs-minipass@npm:3.0.3"
- dependencies:
- minipass: "npm:^7.0.3"
- checksum: 10c0/63e80da2ff9b621e2cb1596abcb9207f1cf82b968b116ccd7b959e3323144cce7fb141462200971c38bbf2ecca51695069db45265705bed09a7cd93ae5b89f94
- languageName: node
- linkType: hard
-
-"fs.realpath@npm:^1.0.0":
- version: 1.0.0
- resolution: "fs.realpath@npm:1.0.0"
- checksum: 10c0/444cf1291d997165dfd4c0d58b69f0e4782bfd9149fd72faa4fe299e68e0e93d6db941660b37dd29153bf7186672ececa3b50b7e7249477b03fdf850f287c948
- languageName: node
- linkType: hard
-
-"fs@npm:^0.0.1-security":
- version: 0.0.1-security
- resolution: "fs@npm:0.0.1-security"
- checksum: 10c0/e0c0b585ec6f7483d63d067215d9d6bb2e0dba5912060d32554c8e566a0e22ee65e4c2a2b0567476efbbfb47682554b4711d69cab49950d01f227a3dfa7d671a
- languageName: node
- linkType: hard
-
-"fsevents@npm:~2.3.2, fsevents@npm:~2.3.3":
- version: 2.3.3
- resolution: "fsevents@npm:2.3.3"
- dependencies:
- node-gyp: "npm:latest"
- checksum: 10c0/a1f0c44595123ed717febbc478aa952e47adfc28e2092be66b8ab1635147254ca6cfe1df792a8997f22716d4cbafc73309899ff7bfac2ac3ad8cf2e4ecc3ec60
- conditions: os=darwin
- languageName: node
- linkType: hard
-
-"fsevents@patch:fsevents@npm%3A~2.3.2#optional!builtin, fsevents@patch:fsevents@npm%3A~2.3.3#optional!builtin":
- version: 2.3.3
- resolution: "fsevents@patch:fsevents@npm%3A2.3.3#optional!builtin::version=2.3.3&hash=df0bf1"
- dependencies:
- node-gyp: "npm:latest"
- conditions: os=darwin
- languageName: node
- linkType: hard
-
-"function-bind@npm:^1.1.2":
- version: 1.1.2
- resolution: "function-bind@npm:1.1.2"
- checksum: 10c0/d8680ee1e5fcd4c197e4ac33b2b4dce03c71f4d91717292785703db200f5c21f977c568d28061226f9b5900cbcd2c84463646134fd5337e7925e0942bc3f46d5
- languageName: node
- linkType: hard
-
-"function.prototype.name@npm:^1.1.6, function.prototype.name@npm:^1.1.8":
- version: 1.1.8
- resolution: "function.prototype.name@npm:1.1.8"
- dependencies:
- call-bind: "npm:^1.0.8"
- call-bound: "npm:^1.0.3"
- define-properties: "npm:^1.2.1"
- functions-have-names: "npm:^1.2.3"
- hasown: "npm:^2.0.2"
- is-callable: "npm:^1.2.7"
- checksum: 10c0/e920a2ab52663005f3cbe7ee3373e3c71c1fb5558b0b0548648cdf3e51961085032458e26c71ff1a8c8c20e7ee7caeb03d43a5d1fa8610c459333323a2e71253
- languageName: node
- linkType: hard
-
-"functions-have-names@npm:^1.2.3":
- version: 1.2.3
- resolution: "functions-have-names@npm:1.2.3"
- checksum: 10c0/33e77fd29bddc2d9bb78ab3eb854c165909201f88c75faa8272e35899e2d35a8a642a15e7420ef945e1f64a9670d6aa3ec744106b2aa42be68ca5114025954ca
- languageName: node
- linkType: hard
-
-"fuse.js@npm:^6.6.2":
- version: 6.6.2
- resolution: "fuse.js@npm:6.6.2"
- checksum: 10c0/c2fe4f234f516e9ea83b06f06f8f3c8b7117f51aa75bbccd052eed0c0423364bf1e360ffbf29cadae8ef6aa39476b7961eaf9d07bed779cea5c83d62b34e2df9
- languageName: node
- linkType: hard
-
-"get-east-asian-width@npm:^1.0.0":
- version: 1.3.0
- resolution: "get-east-asian-width@npm:1.3.0"
- checksum: 10c0/1a049ba697e0f9a4d5514c4623781c5246982bdb61082da6b5ae6c33d838e52ce6726407df285cdbb27ec1908b333cf2820989bd3e986e37bb20979437fdf34b
- languageName: node
- linkType: hard
-
-"get-intrinsic@npm:^1.2.4, get-intrinsic@npm:^1.2.5, get-intrinsic@npm:^1.2.6, get-intrinsic@npm:^1.2.7, get-intrinsic@npm:^1.3.0":
- version: 1.3.0
- resolution: "get-intrinsic@npm:1.3.0"
- dependencies:
- call-bind-apply-helpers: "npm:^1.0.2"
- es-define-property: "npm:^1.0.1"
- es-errors: "npm:^1.3.0"
- es-object-atoms: "npm:^1.1.1"
- function-bind: "npm:^1.1.2"
- get-proto: "npm:^1.0.1"
- gopd: "npm:^1.2.0"
- has-symbols: "npm:^1.1.0"
- hasown: "npm:^2.0.2"
- math-intrinsics: "npm:^1.1.0"
- checksum: 10c0/52c81808af9a8130f581e6a6a83e1ba4a9f703359e7a438d1369a5267a25412322f03dcbd7c549edaef0b6214a0630a28511d7df0130c93cfd380f4fa0b5b66a
- languageName: node
- linkType: hard
-
-"get-nonce@npm:^1.0.0":
- version: 1.0.1
- resolution: "get-nonce@npm:1.0.1"
- checksum: 10c0/2d7df55279060bf0568549e1ffc9b84bc32a32b7541675ca092dce56317cdd1a59a98dcc4072c9f6a980779440139a3221d7486f52c488e69dc0fd27b1efb162
- languageName: node
- linkType: hard
-
-"get-own-enumerable-property-symbols@npm:^3.0.0":
- version: 3.0.2
- resolution: "get-own-enumerable-property-symbols@npm:3.0.2"
- checksum: 10c0/103999855f3d1718c631472437161d76962cbddcd95cc642a34c07bfb661ed41b6c09a9c669ccdff89ee965beb7126b80eec7b2101e20e31e9cc6c4725305e10
- languageName: node
- linkType: hard
-
-"get-proto@npm:^1.0.0, get-proto@npm:^1.0.1":
- version: 1.0.1
- resolution: "get-proto@npm:1.0.1"
- dependencies:
- dunder-proto: "npm:^1.0.1"
- es-object-atoms: "npm:^1.0.0"
- checksum: 10c0/9224acb44603c5526955e83510b9da41baf6ae73f7398875fba50edc5e944223a89c4a72b070fcd78beb5f7bdda58ecb6294adc28f7acfc0da05f76a2399643c
- languageName: node
- linkType: hard
-
-"get-stream@npm:^3.0.0":
- version: 3.0.0
- resolution: "get-stream@npm:3.0.0"
- checksum: 10c0/003f5f3b8870da59c6aafdf6ed7e7b07b48c2f8629cd461bd3900726548b6b8cfa2e14d6b7814fbb08f07a42f4f738407fa70b989928b2783a76b278505bba22
- languageName: node
- linkType: hard
-
-"get-symbol-description@npm:^1.1.0":
- version: 1.1.0
- resolution: "get-symbol-description@npm:1.1.0"
- dependencies:
- call-bound: "npm:^1.0.3"
- es-errors: "npm:^1.3.0"
- get-intrinsic: "npm:^1.2.6"
- checksum: 10c0/d6a7d6afca375779a4b307738c9e80dbf7afc0bdbe5948768d54ab9653c865523d8920e670991a925936eb524b7cb6a6361d199a760b21d0ca7620194455aa4b
- languageName: node
- linkType: hard
-
-"get-tsconfig@npm:^4.10.0":
- version: 4.10.0
- resolution: "get-tsconfig@npm:4.10.0"
- dependencies:
- resolve-pkg-maps: "npm:^1.0.0"
- checksum: 10c0/c9b5572c5118923c491c04285c73bd55b19e214992af957c502a3be0fc0043bb421386ffd45ca3433c0a7fba81221ca300479e8393960acf15d0ed4563f38a86
- languageName: node
- linkType: hard
-
-"git-up@npm:^7.0.0":
- version: 7.0.0
- resolution: "git-up@npm:7.0.0"
- dependencies:
- is-ssh: "npm:^1.4.0"
- parse-url: "npm:^8.1.0"
- checksum: 10c0/a3fa02e1a63c7c824b5ebbf23f4a9a6b34dd80031114c5dd8adb7ef53493642e39d3d80dfef4025a452128400c35c2c138d20a0f6ae5d7d7ef70d9ba13083d34
- languageName: node
- linkType: hard
-
-"git-url-parse@npm:^13.1.0":
- version: 13.1.1
- resolution: "git-url-parse@npm:13.1.1"
- dependencies:
- git-up: "npm:^7.0.0"
- checksum: 10c0/9304e6fbc1a6acf5e351e84ad87574fa6b840ccbe531afbbce9ba38e01fcacf6adf386ef7593daa037da59d9fd43b5d7c5232d5648638f8301cc2f18d00ad386
- languageName: node
- linkType: hard
-
-"github-slugger@npm:^2.0.0":
- version: 2.0.0
- resolution: "github-slugger@npm:2.0.0"
- checksum: 10c0/21b912b6b1e48f1e5a50b2292b48df0ff6abeeb0691b161b3d93d84f4ae6b1acd6ae23702e914af7ea5d441c096453cf0f621b72d57893946618d21dd1a1c486
- languageName: node
- linkType: hard
-
-"glob-parent@npm:^5.1.2, glob-parent@npm:~5.1.2":
- version: 5.1.2
- resolution: "glob-parent@npm:5.1.2"
- dependencies:
- is-glob: "npm:^4.0.1"
- checksum: 10c0/cab87638e2112bee3f839ef5f6e0765057163d39c66be8ec1602f3823da4692297ad4e972de876ea17c44d652978638d2fd583c6713d0eb6591706825020c9ee
- languageName: node
- linkType: hard
-
-"glob-parent@npm:^6.0.2":
- version: 6.0.2
- resolution: "glob-parent@npm:6.0.2"
- dependencies:
- is-glob: "npm:^4.0.3"
- checksum: 10c0/317034d88654730230b3f43bb7ad4f7c90257a426e872ea0bf157473ac61c99bf5d205fad8f0185f989be8d2fa6d3c7dce1645d99d545b6ea9089c39f838e7f8
- languageName: node
- linkType: hard
-
-"glob@npm:10.3.10, glob@npm:^10.3.10":
- version: 10.3.10
- resolution: "glob@npm:10.3.10"
- dependencies:
- foreground-child: "npm:^3.1.0"
- jackspeak: "npm:^2.3.5"
- minimatch: "npm:^9.0.1"
- minipass: "npm:^5.0.0 || ^6.0.2 || ^7.0.0"
- path-scurry: "npm:^1.10.1"
- bin:
- glob: dist/esm/bin.mjs
- checksum: 10c0/13d8a1feb7eac7945f8c8480e11cd4a44b24d26503d99a8d8ac8d5aefbf3e9802a2b6087318a829fad04cb4e829f25c5f4f1110c68966c498720dd261c7e344d
- languageName: node
- linkType: hard
-
-"glob@npm:^10.2.2":
- version: 10.4.5
- resolution: "glob@npm:10.4.5"
- dependencies:
- foreground-child: "npm:^3.1.0"
- jackspeak: "npm:^3.1.2"
- minimatch: "npm:^9.0.4"
- minipass: "npm:^7.1.2"
- package-json-from-dist: "npm:^1.0.0"
- path-scurry: "npm:^1.11.1"
- bin:
- glob: dist/esm/bin.mjs
- checksum: 10c0/19a9759ea77b8e3ca0a43c2f07ecddc2ad46216b786bb8f993c445aee80d345925a21e5280c7b7c6c59e860a0154b84e4b2b60321fea92cd3c56b4a7489f160e
- languageName: node
- linkType: hard
-
-"glob@npm:^7.1.3":
- version: 7.2.3
- resolution: "glob@npm:7.2.3"
- dependencies:
- fs.realpath: "npm:^1.0.0"
- inflight: "npm:^1.0.4"
- inherits: "npm:2"
- minimatch: "npm:^3.1.1"
- once: "npm:^1.3.0"
- path-is-absolute: "npm:^1.0.0"
- checksum: 10c0/65676153e2b0c9095100fe7f25a778bf45608eeb32c6048cf307f579649bcc30353277b3b898a3792602c65764e5baa4f643714dfbdfd64ea271d210c7a425fe
- languageName: node
- linkType: hard
-
-"global-modules@npm:^1.0.0":
- version: 1.0.0
- resolution: "global-modules@npm:1.0.0"
- dependencies:
- global-prefix: "npm:^1.0.1"
- is-windows: "npm:^1.0.1"
- resolve-dir: "npm:^1.0.0"
- checksum: 10c0/7d91ecf78d4fcbc966b2d89c1400df273afea795bc8cadf39857ee1684e442065621fd79413ff5fcd9e90c6f1b2dc0123e644fa0b7811f987fd54c6b9afad858
- languageName: node
- linkType: hard
-
-"global-prefix@npm:^1.0.1":
- version: 1.0.2
- resolution: "global-prefix@npm:1.0.2"
- dependencies:
- expand-tilde: "npm:^2.0.2"
- homedir-polyfill: "npm:^1.0.1"
- ini: "npm:^1.3.4"
- is-windows: "npm:^1.0.1"
- which: "npm:^1.2.14"
- checksum: 10c0/d8037e300f1dc04d5d410d16afa662e71bfad22dcceba6c9727bb55cc273b8988ca940b3402f62e5392fd261dd9924a9a73a865ef2000219461f31f3fc86be06
- languageName: node
- linkType: hard
-
-"globals@npm:^13.19.0":
- version: 13.24.0
- resolution: "globals@npm:13.24.0"
- dependencies:
- type-fest: "npm:^0.20.2"
- checksum: 10c0/d3c11aeea898eb83d5ec7a99508600fbe8f83d2cf00cbb77f873dbf2bcb39428eff1b538e4915c993d8a3b3473fa71eeebfe22c9bb3a3003d1e26b1f2c8a42cd
- languageName: node
- linkType: hard
-
-"globals@npm:^15.14.0":
- version: 15.15.0
- resolution: "globals@npm:15.15.0"
- checksum: 10c0/f9ae80996392ca71316495a39bec88ac43ae3525a438b5626cd9d5ce9d5500d0a98a266409605f8cd7241c7acf57c354a48111ea02a767ba4f374b806d6861fe
- languageName: node
- linkType: hard
-
-"globalthis@npm:^1.0.4":
- version: 1.0.4
- resolution: "globalthis@npm:1.0.4"
- dependencies:
- define-properties: "npm:^1.2.1"
- gopd: "npm:^1.0.1"
- checksum: 10c0/9d156f313af79d80b1566b93e19285f481c591ad6d0d319b4be5e03750d004dde40a39a0f26f7e635f9007a3600802f53ecd85a759b86f109e80a5f705e01846
- languageName: node
- linkType: hard
-
-"globby@npm:^11.1.0":
- version: 11.1.0
- resolution: "globby@npm:11.1.0"
- dependencies:
- array-union: "npm:^2.1.0"
- dir-glob: "npm:^3.0.1"
- fast-glob: "npm:^3.2.9"
- ignore: "npm:^5.2.0"
- merge2: "npm:^1.4.1"
- slash: "npm:^3.0.0"
- checksum: 10c0/b39511b4afe4bd8a7aead3a27c4ade2b9968649abab0a6c28b1a90141b96ca68ca5db1302f7c7bd29eab66bf51e13916b8e0a3d0ac08f75e1e84a39b35691189
- languageName: node
- linkType: hard
-
-"globby@npm:^13.1.2, globby@npm:^13.2.2":
- version: 13.2.2
- resolution: "globby@npm:13.2.2"
- dependencies:
- dir-glob: "npm:^3.0.1"
- fast-glob: "npm:^3.3.0"
- ignore: "npm:^5.2.4"
- merge2: "npm:^1.4.1"
- slash: "npm:^4.0.0"
- checksum: 10c0/a8d7cc7cbe5e1b2d0f81d467bbc5bc2eac35f74eaded3a6c85fc26d7acc8e6de22d396159db8a2fc340b8a342e74cac58de8f4aee74146d3d146921a76062664
- languageName: node
- linkType: hard
-
-"gopd@npm:^1.0.1, gopd@npm:^1.2.0":
- version: 1.2.0
- resolution: "gopd@npm:1.2.0"
- checksum: 10c0/50fff1e04ba2b7737c097358534eacadad1e68d24cccee3272e04e007bed008e68d2614f3987788428fd192a5ae3889d08fb2331417e4fc4a9ab366b2043cead
- languageName: node
- linkType: hard
-
-"graceful-fs@npm:^4.2.10, graceful-fs@npm:^4.2.11, graceful-fs@npm:^4.2.6":
- version: 4.2.11
- resolution: "graceful-fs@npm:4.2.11"
- checksum: 10c0/386d011a553e02bc594ac2ca0bd6d9e4c22d7fa8cfbfc448a6d148c59ea881b092db9dbe3547ae4b88e55f1b01f7c4a2ecc53b310c042793e63aa44cf6c257f2
- languageName: node
- linkType: hard
-
-"graphemer@npm:^1.4.0":
- version: 1.4.0
- resolution: "graphemer@npm:1.4.0"
- checksum: 10c0/e951259d8cd2e0d196c72ec711add7115d42eb9a8146c8eeda5b8d3ac91e5dd816b9cd68920726d9fd4490368e7ed86e9c423f40db87e2d8dfafa00fa17c3a31
- languageName: node
- linkType: hard
-
-"gray-matter@npm:^4.0.3":
- version: 4.0.3
- resolution: "gray-matter@npm:4.0.3"
- dependencies:
- js-yaml: "npm:^3.13.1"
- kind-of: "npm:^6.0.2"
- section-matter: "npm:^1.0.0"
- strip-bom-string: "npm:^1.0.0"
- checksum: 10c0/e38489906dad4f162ca01e0dcbdbed96d1a53740cef446b9bf76d80bec66fa799af07776a18077aee642346c5e1365ed95e4c91854a12bf40ba0d4fb43a625a6
- languageName: node
- linkType: hard
-
-"hachure-fill@npm:^0.5.2":
- version: 0.5.2
- resolution: "hachure-fill@npm:0.5.2"
- checksum: 10c0/307e3b6f9f2d3c11a82099c3f71eecbb9c440c00c1f896ac1732c23e6dbff16a92bb893d222b8b721b89cf11e58649ca60b4c24e5663f705f877cefd40153429
- languageName: node
- linkType: hard
-
-"handlebars@npm:^4.7.8":
- version: 4.7.8
- resolution: "handlebars@npm:4.7.8"
- dependencies:
- minimist: "npm:^1.2.5"
- neo-async: "npm:^2.6.2"
- source-map: "npm:^0.6.1"
- uglify-js: "npm:^3.1.4"
- wordwrap: "npm:^1.0.0"
- dependenciesMeta:
- uglify-js:
- optional: true
- bin:
- handlebars: bin/handlebars
- checksum: 10c0/7aff423ea38a14bb379316f3857fe0df3c5d66119270944247f155ba1f08e07a92b340c58edaa00cfe985c21508870ee5183e0634dcb53dd405f35c93ef7f10d
- languageName: node
- linkType: hard
-
-"has-bigints@npm:^1.0.2":
- version: 1.1.0
- resolution: "has-bigints@npm:1.1.0"
- checksum: 10c0/2de0cdc4a1ccf7a1e75ffede1876994525ac03cc6f5ae7392d3415dd475cd9eee5bceec63669ab61aa997ff6cceebb50ef75561c7002bed8988de2b9d1b40788
- languageName: node
- linkType: hard
-
-"has-flag@npm:^2.0.0":
- version: 2.0.0
- resolution: "has-flag@npm:2.0.0"
- checksum: 10c0/5e1f136c7f801c2719048bedfabcf834a1ed46276cd4c98c6fcddb89a482f5d6a16df0771a38805cfc2d9010b4de157909e1a71b708e1d339b6e311041bde9b4
- languageName: node
- linkType: hard
-
-"has-flag@npm:^4.0.0":
- version: 4.0.0
- resolution: "has-flag@npm:4.0.0"
- checksum: 10c0/2e789c61b7888d66993e14e8331449e525ef42aac53c627cc53d1c3334e768bcb6abdc4f5f0de1478a25beec6f0bd62c7549058b7ac53e924040d4f301f02fd1
- languageName: node
- linkType: hard
-
-"has-property-descriptors@npm:^1.0.0, has-property-descriptors@npm:^1.0.2":
- version: 1.0.2
- resolution: "has-property-descriptors@npm:1.0.2"
- dependencies:
- es-define-property: "npm:^1.0.0"
- checksum: 10c0/253c1f59e80bb476cf0dde8ff5284505d90c3bdb762983c3514d36414290475fe3fd6f574929d84de2a8eec00d35cf07cb6776205ff32efd7c50719125f00236
- languageName: node
- linkType: hard
-
-"has-proto@npm:^1.2.0":
- version: 1.2.0
- resolution: "has-proto@npm:1.2.0"
- dependencies:
- dunder-proto: "npm:^1.0.0"
- checksum: 10c0/46538dddab297ec2f43923c3d35237df45d8c55a6fc1067031e04c13ed8a9a8f94954460632fd4da84c31a1721eefee16d901cbb1ae9602bab93bb6e08f93b95
- languageName: node
- linkType: hard
-
-"has-symbols@npm:^1.0.3, has-symbols@npm:^1.1.0":
- version: 1.1.0
- resolution: "has-symbols@npm:1.1.0"
- checksum: 10c0/dde0a734b17ae51e84b10986e651c664379018d10b91b6b0e9b293eddb32f0f069688c841fb40f19e9611546130153e0a2a48fd7f512891fb000ddfa36f5a20e
- languageName: node
- linkType: hard
-
-"has-tostringtag@npm:^1.0.2":
- version: 1.0.2
- resolution: "has-tostringtag@npm:1.0.2"
- dependencies:
- has-symbols: "npm:^1.0.3"
- checksum: 10c0/a8b166462192bafe3d9b6e420a1d581d93dd867adb61be223a17a8d6dad147aa77a8be32c961bb2f27b3ef893cae8d36f564ab651f5e9b7938ae86f74027c48c
- languageName: node
- linkType: hard
-
-"hash-obj@npm:^4.0.0":
- version: 4.0.0
- resolution: "hash-obj@npm:4.0.0"
- dependencies:
- is-obj: "npm:^3.0.0"
- sort-keys: "npm:^5.0.0"
- type-fest: "npm:^1.0.2"
- checksum: 10c0/af0a8bd3905afa2b9bd05ec75e37d904c66f6621ae185d53699fc7e5baf8157aeff6f4b9ae3c579da08aae6a5b2536c445c4dd1eecb94070c8717b63eeca97de
- languageName: node
- linkType: hard
-
-"hasown@npm:^2.0.2":
- version: 2.0.2
- resolution: "hasown@npm:2.0.2"
- dependencies:
- function-bind: "npm:^1.1.2"
- checksum: 10c0/3769d434703b8ac66b209a4cca0737519925bbdb61dd887f93a16372b14694c63ff4e797686d87c90f08168e81082248b9b028bad60d4da9e0d1148766f56eb9
- languageName: node
- linkType: hard
-
-"hast-util-embedded@npm:^3.0.0":
- version: 3.0.0
- resolution: "hast-util-embedded@npm:3.0.0"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- hast-util-is-element: "npm:^3.0.0"
- checksum: 10c0/054c3d3b96fcd5c1d1c6f8d38ce1f7f33022ba6362129a022673d0b539f876acdcababbb9df29812fb927294f98ef7a2f44519a80d637fe3eea1819c9e69eeac
- languageName: node
- linkType: hard
-
-"hast-util-format@npm:^1.0.0":
- version: 1.1.0
- resolution: "hast-util-format@npm:1.1.0"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- hast-util-embedded: "npm:^3.0.0"
- hast-util-minify-whitespace: "npm:^1.0.0"
- hast-util-phrasing: "npm:^3.0.0"
- hast-util-whitespace: "npm:^3.0.0"
- html-whitespace-sensitive-tag-names: "npm:^3.0.0"
- unist-util-visit-parents: "npm:^6.0.0"
- checksum: 10c0/6ab223cffe8a524ef4f2564d0385cab174a52551513b318496b3776e6882594eab4810b0f8d90f20e8291fa4e87fa068e03cba316d83c0836dab12dd140e98df
- languageName: node
- linkType: hard
-
-"hast-util-from-dom@npm:^5.0.0":
- version: 5.0.1
- resolution: "hast-util-from-dom@npm:5.0.1"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- hastscript: "npm:^9.0.0"
- web-namespaces: "npm:^2.0.0"
- checksum: 10c0/9a90381e048107a093a3da758bb17b67aaf5322e222f02497f841c4990abf94aa177d38d5b9bf61ad07b3601d0409f34f5b556d89578cc189230c6b994d2af77
- languageName: node
- linkType: hard
-
-"hast-util-from-html-isomorphic@npm:^2.0.0":
- version: 2.0.0
- resolution: "hast-util-from-html-isomorphic@npm:2.0.0"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- hast-util-from-dom: "npm:^5.0.0"
- hast-util-from-html: "npm:^2.0.0"
- unist-util-remove-position: "npm:^5.0.0"
- checksum: 10c0/fc68d9245e794483a802d5c85a9f6c25959e00db78cc796411efc965134f3206f9cc9fa38134572ea781ad74663e801f1f83202007b208e27a770855566a62b6
- languageName: node
- linkType: hard
-
-"hast-util-from-html@npm:^2.0.0":
- version: 2.0.3
- resolution: "hast-util-from-html@npm:2.0.3"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- devlop: "npm:^1.1.0"
- hast-util-from-parse5: "npm:^8.0.0"
- parse5: "npm:^7.0.0"
- vfile: "npm:^6.0.0"
- vfile-message: "npm:^4.0.0"
- checksum: 10c0/993ef707c1a12474c8d4094fc9706a72826c660a7e308ea54c50ad893353d32e139b7cbc67510c2e82feac572b320e3b05aeb13d0f9c6302d61261f337b46764
- languageName: node
- linkType: hard
-
-"hast-util-from-parse5@npm:^8.0.0":
- version: 8.0.3
- resolution: "hast-util-from-parse5@npm:8.0.3"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- "@types/unist": "npm:^3.0.0"
- devlop: "npm:^1.0.0"
- hastscript: "npm:^9.0.0"
- property-information: "npm:^7.0.0"
- vfile: "npm:^6.0.0"
- vfile-location: "npm:^5.0.0"
- web-namespaces: "npm:^2.0.0"
- checksum: 10c0/40ace6c0ad43c26f721c7499fe408e639cde917b2350c9299635e6326559855896dae3c3ebf7440df54766b96c4276a7823e8f376a2b6a28b37b591f03412545
- languageName: node
- linkType: hard
-
-"hast-util-has-property@npm:^3.0.0":
- version: 3.0.0
- resolution: "hast-util-has-property@npm:3.0.0"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- checksum: 10c0/6e2c0e22ca893c6ebb60f8390e184c4deb041c36d09796756f02cd121c1789c0f5c862ed06caea8f1a80ea8c0ef6a7854dd57946c2eebb76488727bd4a1c952e
- languageName: node
- linkType: hard
-
-"hast-util-is-body-ok-link@npm:^3.0.0":
- version: 3.0.1
- resolution: "hast-util-is-body-ok-link@npm:3.0.1"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- checksum: 10c0/c320cbd9a9a834b007a6f2f8c271e98b8331c0193adf06e0a7c5ea0acae664e97ce28eb4436e0658bc5cdb8f47390ec1c6cba7c4fe1ded10951fcdd1432f60bf
- languageName: node
- linkType: hard
-
-"hast-util-is-element@npm:^3.0.0":
- version: 3.0.0
- resolution: "hast-util-is-element@npm:3.0.0"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- checksum: 10c0/f5361e4c9859c587ca8eb0d8343492f3077ccaa0f58a44cd09f35d5038f94d65152288dcd0c19336ef2c9491ec4d4e45fde2176b05293437021570aa0bc3613b
- languageName: node
- linkType: hard
-
-"hast-util-minify-whitespace@npm:^1.0.0":
- version: 1.0.1
- resolution: "hast-util-minify-whitespace@npm:1.0.1"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- hast-util-embedded: "npm:^3.0.0"
- hast-util-is-element: "npm:^3.0.0"
- hast-util-whitespace: "npm:^3.0.0"
- unist-util-is: "npm:^6.0.0"
- checksum: 10c0/20a7d64947e080463084f444ad09c7f28c40e7648ca2d9c6c036e42a67f8e945d352560ff599304c988257c1e477abcf6a1f508c0900211fa58ec1ba21b36533
- languageName: node
- linkType: hard
-
-"hast-util-parse-selector@npm:^4.0.0":
- version: 4.0.0
- resolution: "hast-util-parse-selector@npm:4.0.0"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- checksum: 10c0/5e98168cb44470dc274aabf1a28317e4feb09b1eaf7a48bbaa8c1de1b43a89cd195cb1284e535698e658e3ec26ad91bc5e52c9563c36feb75abbc68aaf68fb9f
- languageName: node
- linkType: hard
-
-"hast-util-phrasing@npm:^3.0.0":
- version: 3.0.1
- resolution: "hast-util-phrasing@npm:3.0.1"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- hast-util-embedded: "npm:^3.0.0"
- hast-util-has-property: "npm:^3.0.0"
- hast-util-is-body-ok-link: "npm:^3.0.0"
- hast-util-is-element: "npm:^3.0.0"
- checksum: 10c0/d77e186ea3d7d62f6db9c4a55c3e6d9f1f6affd5f40250e8de9d73f167ae19fcc02fafe1601dfbe36e90f76ed5013ac004f0b6b398aee3a04a7a81de12788600
- languageName: node
- linkType: hard
-
-"hast-util-raw@npm:^9.0.0":
- version: 9.1.0
- resolution: "hast-util-raw@npm:9.1.0"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- "@types/unist": "npm:^3.0.0"
- "@ungap/structured-clone": "npm:^1.0.0"
- hast-util-from-parse5: "npm:^8.0.0"
- hast-util-to-parse5: "npm:^8.0.0"
- html-void-elements: "npm:^3.0.0"
- mdast-util-to-hast: "npm:^13.0.0"
- parse5: "npm:^7.0.0"
- unist-util-position: "npm:^5.0.0"
- unist-util-visit: "npm:^5.0.0"
- vfile: "npm:^6.0.0"
- web-namespaces: "npm:^2.0.0"
- zwitch: "npm:^2.0.0"
- checksum: 10c0/d0d909d2aedecef6a06f0005cfae410d6475e6e182d768bde30c3af9fcbbe4f9beb0522bdc21d0679cb3c243c0df40385797ed255148d68b3d3f12e82d12aacc
- languageName: node
- linkType: hard
-
-"hast-util-sanitize@npm:^5.0.0":
- version: 5.0.2
- resolution: "hast-util-sanitize@npm:5.0.2"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- "@ungap/structured-clone": "npm:^1.0.0"
- unist-util-position: "npm:^5.0.0"
- checksum: 10c0/20951652078a8c21341c1c9a84f90015b2ba01cc41fa16772f122c65cda26a7adb0501fdeba5c8e37e40e2632447e8fe455d0dd2dc27d39663baacca76f2ecb6
- languageName: node
- linkType: hard
-
-"hast-util-to-estree@npm:^2.0.0":
- version: 2.3.3
- resolution: "hast-util-to-estree@npm:2.3.3"
- dependencies:
- "@types/estree": "npm:^1.0.0"
- "@types/estree-jsx": "npm:^1.0.0"
- "@types/hast": "npm:^2.0.0"
- "@types/unist": "npm:^2.0.0"
- comma-separated-tokens: "npm:^2.0.0"
- estree-util-attach-comments: "npm:^2.0.0"
- estree-util-is-identifier-name: "npm:^2.0.0"
- hast-util-whitespace: "npm:^2.0.0"
- mdast-util-mdx-expression: "npm:^1.0.0"
- mdast-util-mdxjs-esm: "npm:^1.0.0"
- property-information: "npm:^6.0.0"
- space-separated-tokens: "npm:^2.0.0"
- style-to-object: "npm:^0.4.1"
- unist-util-position: "npm:^4.0.0"
- zwitch: "npm:^2.0.0"
- checksum: 10c0/5947b5030a6d20c193f5ea576cc751507e0b30d00f91e40a5208ca3a7add03a3862795a83600c0fdadf19c8b051917c7904715fa7dd358f04603d67a36341c38
- languageName: node
- linkType: hard
-
-"hast-util-to-html@npm:^9.0.0":
- version: 9.0.5
- resolution: "hast-util-to-html@npm:9.0.5"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- "@types/unist": "npm:^3.0.0"
- ccount: "npm:^2.0.0"
- comma-separated-tokens: "npm:^2.0.0"
- hast-util-whitespace: "npm:^3.0.0"
- html-void-elements: "npm:^3.0.0"
- mdast-util-to-hast: "npm:^13.0.0"
- property-information: "npm:^7.0.0"
- space-separated-tokens: "npm:^2.0.0"
- stringify-entities: "npm:^4.0.0"
- zwitch: "npm:^2.0.4"
- checksum: 10c0/b7a08c30bab4371fc9b4a620965c40b270e5ae7a8e94cf885f43b21705179e28c8e43b39c72885d1647965fb3738654e6962eb8b58b0c2a84271655b4d748836
- languageName: node
- linkType: hard
-
-"hast-util-to-jsx-runtime@npm:^2.0.0":
- version: 2.3.6
- resolution: "hast-util-to-jsx-runtime@npm:2.3.6"
- dependencies:
- "@types/estree": "npm:^1.0.0"
- "@types/hast": "npm:^3.0.0"
- "@types/unist": "npm:^3.0.0"
- comma-separated-tokens: "npm:^2.0.0"
- devlop: "npm:^1.0.0"
- estree-util-is-identifier-name: "npm:^3.0.0"
- hast-util-whitespace: "npm:^3.0.0"
- mdast-util-mdx-expression: "npm:^2.0.0"
- mdast-util-mdx-jsx: "npm:^3.0.0"
- mdast-util-mdxjs-esm: "npm:^2.0.0"
- property-information: "npm:^7.0.0"
- space-separated-tokens: "npm:^2.0.0"
- style-to-js: "npm:^1.0.0"
- unist-util-position: "npm:^5.0.0"
- vfile-message: "npm:^4.0.0"
- checksum: 10c0/27297e02848fe37ef219be04a26ce708d17278a175a807689e94a821dcffc88aa506d62c3a85beed1f9a8544f7211bdcbcde0528b7b456a57c2e342c3fd11056
- languageName: node
- linkType: hard
-
-"hast-util-to-parse5@npm:^8.0.0":
- version: 8.0.0
- resolution: "hast-util-to-parse5@npm:8.0.0"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- comma-separated-tokens: "npm:^2.0.0"
- devlop: "npm:^1.0.0"
- property-information: "npm:^6.0.0"
- space-separated-tokens: "npm:^2.0.0"
- web-namespaces: "npm:^2.0.0"
- zwitch: "npm:^2.0.0"
- checksum: 10c0/3c0c7fba026e0c4be4675daf7277f9ff22ae6da801435f1b7104f7740de5422576f1c025023c7b3df1d0a161e13a04c6ab8f98ada96eb50adb287b537849a2bd
- languageName: node
- linkType: hard
-
-"hast-util-to-text@npm:^4.0.0":
- version: 4.0.2
- resolution: "hast-util-to-text@npm:4.0.2"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- "@types/unist": "npm:^3.0.0"
- hast-util-is-element: "npm:^3.0.0"
- unist-util-find-after: "npm:^5.0.0"
- checksum: 10c0/93ecc10e68fe5391c6e634140eb330942e71dea2724c8e0c647c73ed74a8ec930a4b77043b5081284808c96f73f2bee64ee416038ece75a63a467e8d14f09946
- languageName: node
- linkType: hard
-
-"hast-util-whitespace@npm:^2.0.0":
- version: 2.0.1
- resolution: "hast-util-whitespace@npm:2.0.1"
- checksum: 10c0/dcf6ebab091c802ffa7bb3112305c7631c15adb6c07a258f5528aefbddf82b4e162c8310ef426c48dc1dc623982cc33920e6dde5a50015d307f2778dcf6c2487
- languageName: node
- linkType: hard
-
-"hast-util-whitespace@npm:^3.0.0":
- version: 3.0.0
- resolution: "hast-util-whitespace@npm:3.0.0"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- checksum: 10c0/b898bc9fe27884b272580d15260b6bbdabe239973a147e97fa98c45fa0ffec967a481aaa42291ec34fb56530dc2d484d473d7e2bae79f39c83f3762307edfea8
- languageName: node
- linkType: hard
-
-"hastscript@npm:^9.0.0":
- version: 9.0.1
- resolution: "hastscript@npm:9.0.1"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- comma-separated-tokens: "npm:^2.0.0"
- hast-util-parse-selector: "npm:^4.0.0"
- property-information: "npm:^7.0.0"
- space-separated-tokens: "npm:^2.0.0"
- checksum: 10c0/18dc8064e5c3a7a2ae862978e626b97a254e1c8a67ee9d0c9f06d373bba155ed805fc5b5ce21b990fb7bc174624889e5e1ce1cade264f1b1d58b48f994bc85ce
- languageName: node
- linkType: hard
-
-"header-case@npm:^2.0.4":
- version: 2.0.4
- resolution: "header-case@npm:2.0.4"
- dependencies:
- capital-case: "npm:^1.0.4"
- tslib: "npm:^2.0.3"
- checksum: 10c0/c9f295d9d8e38fa50679281fd70d80726962256e888a76c8e72e526453da7a1832dcb427caa716c1ad5d79841d4537301b90156fa30298fefd3d68f4ea2181bb
- languageName: node
- linkType: hard
-
-"highlight.js@npm:~11.11.0":
- version: 11.11.1
- resolution: "highlight.js@npm:11.11.1"
- checksum: 10c0/40f53ac19dac079891fcefd5bd8a21cf2e8931fd47da5bd1dca73b7e4375c1defed0636fc39120c639b9c44119b7d110f7f0c15aa899557a5a1c8910f3c0144c
- languageName: node
- linkType: hard
-
-"homedir-polyfill@npm:^1.0.1":
- version: 1.0.3
- resolution: "homedir-polyfill@npm:1.0.3"
- dependencies:
- parse-passwd: "npm:^1.0.0"
- checksum: 10c0/3c099844f94b8b438f124bd5698bdcfef32b2d455115fb8050d7148e7f7b95fc89ba9922586c491f0e1cdebf437b1053c84ecddb8d596e109e9ac69c5b4a9e27
- languageName: node
- linkType: hard
-
-"hookable@npm:^5.5.3":
- version: 5.5.3
- resolution: "hookable@npm:5.5.3"
- checksum: 10c0/275f4cc84d27f8d48c5a5cd5685b6c0fea9291be9deea5bff0cfa72856ed566abde1dcd8cb1da0f9a70b4da3d7ec0d60dc3554c4edbba647058cc38816eced3d
- languageName: node
- linkType: hard
-
-"html-url-attributes@npm:^3.0.0":
- version: 3.0.1
- resolution: "html-url-attributes@npm:3.0.1"
- checksum: 10c0/496e4908aa8b77665f348b4b03521901794f648b8ac34a581022cd6f2c97934d5c910cd91bc6593bbf2994687549037bc2520fcdc769b31484f29ffdd402acd0
- languageName: node
- linkType: hard
-
-"html-void-elements@npm:^3.0.0":
- version: 3.0.0
- resolution: "html-void-elements@npm:3.0.0"
- checksum: 10c0/a8b9ec5db23b7c8053876dad73a0336183e6162bf6d2677376d8b38d654fdc59ba74fdd12f8812688f7db6fad451210c91b300e472afc0909224e0a44c8610d2
- languageName: node
- linkType: hard
-
-"html-whitespace-sensitive-tag-names@npm:^3.0.0":
- version: 3.0.1
- resolution: "html-whitespace-sensitive-tag-names@npm:3.0.1"
- checksum: 10c0/da06cad111f6a432edd85c6cd09f6b5abbb385872fba79f23f939bdd4626920ac2e62507f604ef94eb8449902033bda292774624e3283b4dea4ed1620a2be3b2
- languageName: node
- linkType: hard
-
-"http-cache-semantics@npm:^4.1.1":
- version: 4.2.0
- resolution: "http-cache-semantics@npm:4.2.0"
- checksum: 10c0/45b66a945cf13ec2d1f29432277201313babf4a01d9e52f44b31ca923434083afeca03f18417f599c9ab3d0e7b618ceb21257542338b57c54b710463b4a53e37
- languageName: node
- linkType: hard
-
-"http-proxy-agent@npm:^7.0.0":
- version: 7.0.2
- resolution: "http-proxy-agent@npm:7.0.2"
- dependencies:
- agent-base: "npm:^7.1.0"
- debug: "npm:^4.3.4"
- checksum: 10c0/4207b06a4580fb85dd6dff521f0abf6db517489e70863dca1a0291daa7f2d3d2d6015a57bd702af068ea5cf9f1f6ff72314f5f5b4228d299c0904135d2aef921
- languageName: node
- linkType: hard
-
-"https-proxy-agent@npm:^7.0.1":
- version: 7.0.6
- resolution: "https-proxy-agent@npm:7.0.6"
- dependencies:
- agent-base: "npm:^7.1.2"
- debug: "npm:4"
- checksum: 10c0/f729219bc735edb621fa30e6e84e60ee5d00802b8247aac0d7b79b0bd6d4b3294737a337b93b86a0bd9e68099d031858a39260c976dc14cdbba238ba1f8779ac
- languageName: node
- linkType: hard
-
-"httpsnippet-lite@npm:^3.0.5":
- version: 3.0.5
- resolution: "httpsnippet-lite@npm:3.0.5"
- dependencies:
- "@types/har-format": "npm:^1.2.10"
- formdata-node: "npm:^4.4.1"
- stringify-object: "npm:3.3.0"
- checksum: 10c0/e2caf5ff6b4086afa078552eaf46c09aa07978633d3db2485edecc072efc8b5c481afe2f6c003ba12d484717d33be829603f7e0b099ef9b17d39f7f24f17524c
- languageName: node
- linkType: hard
-
-"iconv-lite@npm:0.6, iconv-lite@npm:^0.6.2":
- version: 0.6.3
- resolution: "iconv-lite@npm:0.6.3"
- dependencies:
- safer-buffer: "npm:>= 2.1.2 < 3.0.0"
- checksum: 10c0/98102bc66b33fcf5ac044099d1257ba0b7ad5e3ccd3221f34dd508ab4070edff183276221684e1e0555b145fce0850c9f7d2b60a9fcac50fbb4ea0d6e845a3b1
- languageName: node
- linkType: hard
-
-"iconv-lite@npm:^0.4.24":
- version: 0.4.24
- resolution: "iconv-lite@npm:0.4.24"
- dependencies:
- safer-buffer: "npm:>= 2.1.2 < 3"
- checksum: 10c0/c6886a24cc00f2a059767440ec1bc00d334a89f250db8e0f7feb4961c8727118457e27c495ba94d082e51d3baca378726cd110aaf7ded8b9bbfd6a44760cf1d4
- languageName: node
- linkType: hard
-
-"ieee754@npm:^1.1.13":
- version: 1.2.1
- resolution: "ieee754@npm:1.2.1"
- checksum: 10c0/b0782ef5e0935b9f12883a2e2aa37baa75da6e66ce6515c168697b42160807d9330de9a32ec1ed73149aea02e0d822e572bca6f1e22bdcbd2149e13b050b17bb
- languageName: node
- linkType: hard
-
-"ignore@npm:^5.2.0, ignore@npm:^5.2.4":
- version: 5.3.2
- resolution: "ignore@npm:5.3.2"
- checksum: 10c0/f9f652c957983634ded1e7f02da3b559a0d4cc210fca3792cb67f1b153623c9c42efdc1c4121af171e295444459fc4a9201101fb041b1104a3c000bccb188337
- languageName: node
- linkType: hard
-
-"immutable@npm:^5.0.2":
- version: 5.0.3
- resolution: "immutable@npm:5.0.3"
- checksum: 10c0/3269827789e1026cd25c2ea97f0b2c19be852ffd49eda1b674b20178f73d84fa8d945ad6f5ac5bc4545c2b4170af9f6e1f77129bc1cae7974a4bf9b04a9cdfb9
- languageName: node
- linkType: hard
-
-"import-fresh@npm:^3.2.1":
- version: 3.3.1
- resolution: "import-fresh@npm:3.3.1"
- dependencies:
- parent-module: "npm:^1.0.0"
- resolve-from: "npm:^4.0.0"
- checksum: 10c0/bf8cc494872fef783249709385ae883b447e3eb09db0ebd15dcead7d9afe7224dad7bd7591c6b73b0b19b3c0f9640eb8ee884f01cfaf2887ab995b0b36a0cbec
- languageName: node
- linkType: hard
-
-"imurmurhash@npm:^0.1.4":
- version: 0.1.4
- resolution: "imurmurhash@npm:0.1.4"
- checksum: 10c0/8b51313850dd33605c6c9d3fd9638b714f4c4c40250cff658209f30d40da60f78992fb2df5dabee4acf589a6a82bbc79ad5486550754bd9ec4e3fc0d4a57d6a6
- languageName: node
- linkType: hard
-
-"indent-string@npm:^4.0.0":
- version: 4.0.0
- resolution: "indent-string@npm:4.0.0"
- checksum: 10c0/1e1904ddb0cb3d6cce7cd09e27a90184908b7a5d5c21b92e232c93579d314f0b83c246ffb035493d0504b1e9147ba2c9b21df0030f48673fba0496ecd698161f
- languageName: node
- linkType: hard
-
-"indent-string@npm:^5.0.0":
- version: 5.0.0
- resolution: "indent-string@npm:5.0.0"
- checksum: 10c0/8ee77b57d92e71745e133f6f444d6fa3ed503ad0e1bcd7e80c8da08b42375c07117128d670589725ed07b1978065803fa86318c309ba45415b7fe13e7f170220
- languageName: node
- linkType: hard
-
-"inflight@npm:^1.0.4":
- version: 1.0.6
- resolution: "inflight@npm:1.0.6"
- dependencies:
- once: "npm:^1.3.0"
- wrappy: "npm:1"
- checksum: 10c0/7faca22584600a9dc5b9fca2cd5feb7135ac8c935449837b315676b4c90aa4f391ec4f42240178244b5a34e8bede1948627fda392ca3191522fc46b34e985ab2
- languageName: node
- linkType: hard
-
-"inherits@npm:2, inherits@npm:^2.0.3, inherits@npm:^2.0.4":
- version: 2.0.4
- resolution: "inherits@npm:2.0.4"
- checksum: 10c0/4e531f648b29039fb7426fb94075e6545faa1eb9fe83c29f0b6d9e7263aceb4289d2d4557db0d428188eeb449cc7c5e77b0a0b2c4e248ff2a65933a0dee49ef2
- languageName: node
- linkType: hard
-
-"inherits@npm:2.0.3":
- version: 2.0.3
- resolution: "inherits@npm:2.0.3"
- checksum: 10c0/6e56402373149ea076a434072671f9982f5fad030c7662be0332122fe6c0fa490acb3cc1010d90b6eff8d640b1167d77674add52dfd1bb85d545cf29e80e73e7
- languageName: node
- linkType: hard
-
-"ini@npm:^1.3.4":
- version: 1.3.8
- resolution: "ini@npm:1.3.8"
- checksum: 10c0/ec93838d2328b619532e4f1ff05df7909760b6f66d9c9e2ded11e5c1897d6f2f9980c54dd638f88654b00919ce31e827040631eab0a3969e4d1abefa0719516a
- languageName: node
- linkType: hard
-
-"inline-style-parser@npm:0.1.1":
- version: 0.1.1
- resolution: "inline-style-parser@npm:0.1.1"
- checksum: 10c0/08832a533f51a1e17619f2eabf2f5ec5e956d6dcba1896351285c65df022c9420de61d73256e1dca8015a52abf96cc84ddc3b73b898b22de6589d3962b5e501b
- languageName: node
- linkType: hard
-
-"inline-style-parser@npm:0.2.4":
- version: 0.2.4
- resolution: "inline-style-parser@npm:0.2.4"
- checksum: 10c0/ddc0b210eaa03e0f98d677b9836242c583c7c6051e84ce0e704ae4626e7871c5b78f8e30853480218b446355745775df318d4f82d33087ff7e393245efa9a881
- languageName: node
- linkType: hard
-
-"inquirer@npm:^9.2.10":
- version: 9.3.7
- resolution: "inquirer@npm:9.3.7"
- dependencies:
- "@inquirer/figures": "npm:^1.0.3"
- ansi-escapes: "npm:^4.3.2"
- cli-width: "npm:^4.1.0"
- external-editor: "npm:^3.1.0"
- mute-stream: "npm:1.0.0"
- ora: "npm:^5.4.1"
- run-async: "npm:^3.0.0"
- rxjs: "npm:^7.8.1"
- string-width: "npm:^4.2.3"
- strip-ansi: "npm:^6.0.1"
- wrap-ansi: "npm:^6.2.0"
- yoctocolors-cjs: "npm:^2.1.2"
- checksum: 10c0/7a5b70312a734b579846648365cbf354e8b23ec73f379d46ada30bc2cf3961dc33b7ca59a3c2beed8a8e03744e3d6c12d4998a34b2d3904774aed238d77328b4
- languageName: node
- linkType: hard
-
-"internal-slot@npm:^1.1.0":
- version: 1.1.0
- resolution: "internal-slot@npm:1.1.0"
- dependencies:
- es-errors: "npm:^1.3.0"
- hasown: "npm:^2.0.2"
- side-channel: "npm:^1.1.0"
- checksum: 10c0/03966f5e259b009a9bf1a78d60da920df198af4318ec004f57b8aef1dd3fe377fbc8cce63a96e8c810010302654de89f9e19de1cd8ad0061d15be28a695465c7
- languageName: node
- linkType: hard
-
-"internmap@npm:1 - 2, internmap@npm:^1.0.0":
- version: 1.0.1
- resolution: "internmap@npm:1.0.1"
- checksum: 10c0/60942be815ca19da643b6d4f23bd0bf4e8c97abbd080fb963fe67583b60bdfb3530448ad4486bae40810e92317bded9995cc31411218acc750d72cd4e8646eee
- languageName: node
- linkType: hard
-
-"interpret@npm:^3.1.1":
- version: 3.1.1
- resolution: "interpret@npm:3.1.1"
- checksum: 10c0/6f3c4d0aa6ec1b43a8862375588a249e3c917739895cbe67fe12f0a76260ea632af51e8e2431b50fbcd0145356dc28ca147be08dbe6a523739fd55c0f91dc2a5
- languageName: node
- linkType: hard
-
-"intersection-observer@npm:^0.12.2":
- version: 0.12.2
- resolution: "intersection-observer@npm:0.12.2"
- checksum: 10c0/9591f46b2b742f5801ed69dbc8860f487771b4af8361e7a5dcb28a377beff2ba56336a2b090af261825430d225dae9417121496d2e6925e000e4a469958843ff
- languageName: node
- linkType: hard
-
-"ip-address@npm:^9.0.5":
- version: 9.0.5
- resolution: "ip-address@npm:9.0.5"
- dependencies:
- jsbn: "npm:1.1.0"
- sprintf-js: "npm:^1.1.3"
- checksum: 10c0/331cd07fafcb3b24100613e4b53e1a2b4feab11e671e655d46dc09ee233da5011284d09ca40c4ecbdfe1d0004f462958675c224a804259f2f78d2465a87824bc
- languageName: node
- linkType: hard
-
-"is-absolute-url@npm:^4.0.0":
- version: 4.0.1
- resolution: "is-absolute-url@npm:4.0.1"
- checksum: 10c0/6f8f603945bd9f2c6031758bbc12352fc647bd5d807cad10d96cc6300fd0e15240cc091521a61db767e4ec0bacff257b4f1015fd5249c147bbb4a4497356c72e
- languageName: node
- linkType: hard
-
-"is-absolute@npm:^1.0.0":
- version: 1.0.0
- resolution: "is-absolute@npm:1.0.0"
- dependencies:
- is-relative: "npm:^1.0.0"
- is-windows: "npm:^1.0.1"
- checksum: 10c0/422302ce879d4f3ca6848499b6f3ddcc8fd2dc9f3e9cad3f6bcedff58cdfbbbd7f4c28600fffa7c59a858f1b15c27fb6cfe1d5275e58a36d2bf098a44ef5abc4
- languageName: node
- linkType: hard
-
-"is-alphabetical@npm:^2.0.0":
- version: 2.0.1
- resolution: "is-alphabetical@npm:2.0.1"
- checksum: 10c0/932367456f17237533fd1fc9fe179df77957271020b83ea31da50e5cc472d35ef6b5fb8147453274ffd251134472ce24eb6f8d8398d96dee98237cdb81a6c9a7
- languageName: node
- linkType: hard
-
-"is-alphanumerical@npm:^2.0.0":
- version: 2.0.1
- resolution: "is-alphanumerical@npm:2.0.1"
- dependencies:
- is-alphabetical: "npm:^2.0.0"
- is-decimal: "npm:^2.0.0"
- checksum: 10c0/4b35c42b18e40d41378293f82a3ecd9de77049b476f748db5697c297f686e1e05b072a6aaae2d16f54d2a57f85b00cbbe755c75f6d583d1c77d6657bd0feb5a2
- languageName: node
- linkType: hard
-
-"is-array-buffer@npm:^3.0.4, is-array-buffer@npm:^3.0.5":
- version: 3.0.5
- resolution: "is-array-buffer@npm:3.0.5"
- dependencies:
- call-bind: "npm:^1.0.8"
- call-bound: "npm:^1.0.3"
- get-intrinsic: "npm:^1.2.6"
- checksum: 10c0/c5c9f25606e86dbb12e756694afbbff64bc8b348d1bc989324c037e1068695131930199d6ad381952715dad3a9569333817f0b1a72ce5af7f883ce802e49c83d
- languageName: node
- linkType: hard
-
-"is-arrayish@npm:^0.3.1":
- version: 0.3.2
- resolution: "is-arrayish@npm:0.3.2"
- checksum: 10c0/f59b43dc1d129edb6f0e282595e56477f98c40278a2acdc8b0a5c57097c9eff8fe55470493df5775478cf32a4dc8eaf6d3a749f07ceee5bc263a78b2434f6a54
- languageName: node
- linkType: hard
-
-"is-async-function@npm:^2.0.0":
- version: 2.1.1
- resolution: "is-async-function@npm:2.1.1"
- dependencies:
- async-function: "npm:^1.0.0"
- call-bound: "npm:^1.0.3"
- get-proto: "npm:^1.0.1"
- has-tostringtag: "npm:^1.0.2"
- safe-regex-test: "npm:^1.1.0"
- checksum: 10c0/d70c236a5e82de6fc4d44368ffd0c2fee2b088b893511ce21e679da275a5ecc6015ff59a7d7e1bdd7ca39f71a8dbdd253cf8cce5c6b3c91cdd5b42b5ce677298
- languageName: node
- linkType: hard
-
-"is-bigint@npm:^1.1.0":
- version: 1.1.0
- resolution: "is-bigint@npm:1.1.0"
- dependencies:
- has-bigints: "npm:^1.0.2"
- checksum: 10c0/f4f4b905ceb195be90a6ea7f34323bf1c18e3793f18922e3e9a73c684c29eeeeff5175605c3a3a74cc38185fe27758f07efba3dbae812e5c5afbc0d2316b40e4
- languageName: node
- linkType: hard
-
-"is-binary-path@npm:~2.1.0":
- version: 2.1.0
- resolution: "is-binary-path@npm:2.1.0"
- dependencies:
- binary-extensions: "npm:^2.0.0"
- checksum: 10c0/a16eaee59ae2b315ba36fad5c5dcaf8e49c3e27318f8ab8fa3cdb8772bf559c8d1ba750a589c2ccb096113bb64497084361a25960899cb6172a6925ab6123d38
- languageName: node
- linkType: hard
-
-"is-boolean-object@npm:^1.2.1":
- version: 1.2.2
- resolution: "is-boolean-object@npm:1.2.2"
- dependencies:
- call-bound: "npm:^1.0.3"
- has-tostringtag: "npm:^1.0.2"
- checksum: 10c0/36ff6baf6bd18b3130186990026f5a95c709345c39cd368468e6c1b6ab52201e9fd26d8e1f4c066357b4938b0f0401e1a5000e08257787c1a02f3a719457001e
- languageName: node
- linkType: hard
-
-"is-buffer@npm:^2.0.0":
- version: 2.0.5
- resolution: "is-buffer@npm:2.0.5"
- checksum: 10c0/e603f6fced83cf94c53399cff3bda1a9f08e391b872b64a73793b0928be3e5f047f2bcece230edb7632eaea2acdbfcb56c23b33d8a20c820023b230f1485679a
- languageName: node
- linkType: hard
-
-"is-bun-module@npm:^2.0.0":
- version: 2.0.0
- resolution: "is-bun-module@npm:2.0.0"
- dependencies:
- semver: "npm:^7.7.1"
- checksum: 10c0/7d27a0679cfa5be1f5052650391f9b11040cd70c48d45112e312c56bc6b6ca9c9aea70dcce6cc40b1e8947bfff8567a5c5715d3b066fb478522dab46ea379240
- languageName: node
- linkType: hard
-
-"is-callable@npm:^1.2.7":
- version: 1.2.7
- resolution: "is-callable@npm:1.2.7"
- checksum: 10c0/ceebaeb9d92e8adee604076971dd6000d38d6afc40bb843ea8e45c5579b57671c3f3b50d7f04869618242c6cee08d1b67806a8cb8edaaaf7c0748b3720d6066f
- languageName: node
- linkType: hard
-
-"is-core-module@npm:^2.13.0, is-core-module@npm:^2.15.1, is-core-module@npm:^2.16.0":
- version: 2.16.1
- resolution: "is-core-module@npm:2.16.1"
- dependencies:
- hasown: "npm:^2.0.2"
- checksum: 10c0/898443c14780a577e807618aaae2b6f745c8538eca5c7bc11388a3f2dc6de82b9902bcc7eb74f07be672b11bbe82dd6a6edded44a00cb3d8f933d0459905eedd
- languageName: node
- linkType: hard
-
-"is-data-view@npm:^1.0.1, is-data-view@npm:^1.0.2":
- version: 1.0.2
- resolution: "is-data-view@npm:1.0.2"
- dependencies:
- call-bound: "npm:^1.0.2"
- get-intrinsic: "npm:^1.2.6"
- is-typed-array: "npm:^1.1.13"
- checksum: 10c0/ef3548a99d7e7f1370ce21006baca6d40c73e9f15c941f89f0049c79714c873d03b02dae1c64b3f861f55163ecc16da06506c5b8a1d4f16650b3d9351c380153
- languageName: node
- linkType: hard
-
-"is-date-object@npm:^1.0.5, is-date-object@npm:^1.1.0":
- version: 1.1.0
- resolution: "is-date-object@npm:1.1.0"
- dependencies:
- call-bound: "npm:^1.0.2"
- has-tostringtag: "npm:^1.0.2"
- checksum: 10c0/1a4d199c8e9e9cac5128d32e6626fa7805175af9df015620ac0d5d45854ccf348ba494679d872d37301032e35a54fc7978fba1687e8721b2139aea7870cafa2f
- languageName: node
- linkType: hard
-
-"is-decimal@npm:^2.0.0":
- version: 2.0.1
- resolution: "is-decimal@npm:2.0.1"
- checksum: 10c0/8085dd66f7d82f9de818fba48b9e9c0429cb4291824e6c5f2622e96b9680b54a07a624cfc663b24148b8e853c62a1c987cfe8b0b5a13f5156991afaf6736e334
- languageName: node
- linkType: hard
-
-"is-extendable@npm:^0.1.0":
- version: 0.1.1
- resolution: "is-extendable@npm:0.1.1"
- checksum: 10c0/dd5ca3994a28e1740d1e25192e66eed128e0b2ff161a7ea348e87ae4f616554b486854de423877a2a2c171d5f7cd6e8093b91f54533bc88a59ee1c9838c43879
- languageName: node
- linkType: hard
-
-"is-extglob@npm:^2.1.1":
- version: 2.1.1
- resolution: "is-extglob@npm:2.1.1"
- checksum: 10c0/5487da35691fbc339700bbb2730430b07777a3c21b9ebaecb3072512dfd7b4ba78ac2381a87e8d78d20ea08affb3f1971b4af629173a6bf435ff8a4c47747912
- languageName: node
- linkType: hard
-
-"is-finalizationregistry@npm:^1.1.0":
- version: 1.1.1
- resolution: "is-finalizationregistry@npm:1.1.1"
- dependencies:
- call-bound: "npm:^1.0.3"
- checksum: 10c0/818dff679b64f19e228a8205a1e2d09989a98e98def3a817f889208cfcbf918d321b251aadf2c05918194803ebd2eb01b14fc9d0b2bea53d984f4137bfca5e97
- languageName: node
- linkType: hard
-
-"is-fullwidth-code-point@npm:^3.0.0":
- version: 3.0.0
- resolution: "is-fullwidth-code-point@npm:3.0.0"
- checksum: 10c0/bb11d825e049f38e04c06373a8d72782eee0205bda9d908cc550ccb3c59b99d750ff9537982e01733c1c94a58e35400661f57042158ff5e8f3e90cf936daf0fc
- languageName: node
- linkType: hard
-
-"is-generator-function@npm:^1.0.10":
- version: 1.1.0
- resolution: "is-generator-function@npm:1.1.0"
- dependencies:
- call-bound: "npm:^1.0.3"
- get-proto: "npm:^1.0.0"
- has-tostringtag: "npm:^1.0.2"
- safe-regex-test: "npm:^1.1.0"
- checksum: 10c0/fdfa96c8087bf36fc4cd514b474ba2ff404219a4dd4cfa6cf5426404a1eed259bdcdb98f082a71029a48d01f27733e3436ecc6690129a7ec09cb0434bee03a2a
- languageName: node
- linkType: hard
-
-"is-glob@npm:^4.0.0, is-glob@npm:^4.0.1, is-glob@npm:^4.0.3, is-glob@npm:~4.0.1":
- version: 4.0.3
- resolution: "is-glob@npm:4.0.3"
- dependencies:
- is-extglob: "npm:^2.1.1"
- checksum: 10c0/17fb4014e22be3bbecea9b2e3a76e9e34ff645466be702f1693e8f1ee1adac84710d0be0bd9f967d6354036fd51ab7c2741d954d6e91dae6bb69714de92c197a
- languageName: node
- linkType: hard
-
-"is-hexadecimal@npm:^2.0.0":
- version: 2.0.1
- resolution: "is-hexadecimal@npm:2.0.1"
- checksum: 10c0/3eb60fe2f1e2bbc760b927dcad4d51eaa0c60138cf7fc671803f66353ad90c301605b502c7ea4c6bb0548e1c7e79dfd37b73b632652e3b76030bba603a7e9626
- languageName: node
- linkType: hard
-
-"is-interactive@npm:^1.0.0":
- version: 1.0.0
- resolution: "is-interactive@npm:1.0.0"
- checksum: 10c0/dd47904dbf286cd20aa58c5192161be1a67138485b9836d5a70433b21a45442e9611b8498b8ab1f839fc962c7620667a50535fdfb4a6bc7989b8858645c06b4d
- languageName: node
- linkType: hard
-
-"is-interactive@npm:^2.0.0":
- version: 2.0.0
- resolution: "is-interactive@npm:2.0.0"
- checksum: 10c0/801c8f6064f85199dc6bf99b5dd98db3282e930c3bc197b32f2c5b89313bb578a07d1b8a01365c4348c2927229234f3681eb861b9c2c92bee72ff397390fa600
- languageName: node
- linkType: hard
-
-"is-map@npm:^2.0.3":
- version: 2.0.3
- resolution: "is-map@npm:2.0.3"
- checksum: 10c0/2c4d431b74e00fdda7162cd8e4b763d6f6f217edf97d4f8538b94b8702b150610e2c64961340015fe8df5b1fcee33ccd2e9b62619c4a8a3a155f8de6d6d355fc
- languageName: node
- linkType: hard
-
-"is-number-object@npm:^1.1.1":
- version: 1.1.1
- resolution: "is-number-object@npm:1.1.1"
- dependencies:
- call-bound: "npm:^1.0.3"
- has-tostringtag: "npm:^1.0.2"
- checksum: 10c0/97b451b41f25135ff021d85c436ff0100d84a039bb87ffd799cbcdbea81ef30c464ced38258cdd34f080be08fc3b076ca1f472086286d2aa43521d6ec6a79f53
- languageName: node
- linkType: hard
-
-"is-number@npm:^7.0.0":
- version: 7.0.0
- resolution: "is-number@npm:7.0.0"
- checksum: 10c0/b4686d0d3053146095ccd45346461bc8e53b80aeb7671cc52a4de02dbbf7dc0d1d2a986e2fe4ae206984b4d34ef37e8b795ebc4f4295c978373e6575e295d811
- languageName: node
- linkType: hard
-
-"is-obj@npm:^1.0.1":
- version: 1.0.1
- resolution: "is-obj@npm:1.0.1"
- checksum: 10c0/5003acba0af7aa47dfe0760e545a89bbac89af37c12092c3efadc755372cdaec034f130e7a3653a59eb3c1843cfc72ca71eaf1a6c3bafe5a0bab3611a47f9945
- languageName: node
- linkType: hard
-
-"is-obj@npm:^3.0.0":
- version: 3.0.0
- resolution: "is-obj@npm:3.0.0"
- checksum: 10c0/48d678fa15c56fd38353634ae2106a538827af9050211b18df13540dba0b38aa25c5cb498648a01311bf493a99ac3ce416576649b8cace10bcce7344611fa56a
- languageName: node
- linkType: hard
-
-"is-path-cwd@npm:^3.0.0":
- version: 3.0.0
- resolution: "is-path-cwd@npm:3.0.0"
- checksum: 10c0/8135b789c74e137501ca33b11a846c32d160c517037c0ce390004a98335e010b9712792d97c73d9e98a5ecbcfd03589a81e95c72e1c05014a69fead963a02753
- languageName: node
- linkType: hard
-
-"is-path-inside@npm:^3.0.3":
- version: 3.0.3
- resolution: "is-path-inside@npm:3.0.3"
- checksum: 10c0/cf7d4ac35fb96bab6a1d2c3598fe5ebb29aafb52c0aaa482b5a3ed9d8ba3edc11631e3ec2637660c44b3ce0e61a08d54946e8af30dec0b60a7c27296c68ffd05
- languageName: node
- linkType: hard
-
-"is-path-inside@npm:^4.0.0":
- version: 4.0.0
- resolution: "is-path-inside@npm:4.0.0"
- checksum: 10c0/51188d7e2b1d907a9a5f7c18d99a90b60870b951ed87cf97595d9aaa429d4c010652c3350bcbf31182e7f4b0eab9a1860b43e16729b13cb1a44baaa6cdb64c46
- languageName: node
- linkType: hard
-
-"is-plain-obj@npm:^3.0.0":
- version: 3.0.0
- resolution: "is-plain-obj@npm:3.0.0"
- checksum: 10c0/8e6483bfb051d42ec9c704c0ede051a821c6b6f9a6c7a3e3b55aa855e00981b0580c8f3b1f5e2e62649b39179b1abfee35d6f8086d999bfaa32c1908d29b07bc
- languageName: node
- linkType: hard
-
-"is-plain-obj@npm:^4.0.0":
- version: 4.1.0
- resolution: "is-plain-obj@npm:4.1.0"
- checksum: 10c0/32130d651d71d9564dc88ba7e6fda0e91a1010a3694648e9f4f47bb6080438140696d3e3e15c741411d712e47ac9edc1a8a9de1fe76f3487b0d90be06ac9975e
- languageName: node
- linkType: hard
-
-"is-plain-object@npm:^5.0.0":
- version: 5.0.0
- resolution: "is-plain-object@npm:5.0.0"
- checksum: 10c0/893e42bad832aae3511c71fd61c0bf61aa3a6d853061c62a307261842727d0d25f761ce9379f7ba7226d6179db2a3157efa918e7fe26360f3bf0842d9f28942c
- languageName: node
- linkType: hard
-
-"is-reference@npm:^3.0.0":
- version: 3.0.3
- resolution: "is-reference@npm:3.0.3"
- dependencies:
- "@types/estree": "npm:^1.0.6"
- checksum: 10c0/35edd284cfb4cd9e9f08973f20e276ec517eaca31f5f049598e97dbb2d05544973dde212dac30fddee5b420930bff365e2e67dcd1293d0866c6720377382e3e5
- languageName: node
- linkType: hard
-
-"is-regex@npm:^1.2.1":
- version: 1.2.1
- resolution: "is-regex@npm:1.2.1"
- dependencies:
- call-bound: "npm:^1.0.2"
- gopd: "npm:^1.2.0"
- has-tostringtag: "npm:^1.0.2"
- hasown: "npm:^2.0.2"
- checksum: 10c0/1d3715d2b7889932349241680032e85d0b492cfcb045acb75ffc2c3085e8d561184f1f7e84b6f8321935b4aea39bc9c6ba74ed595b57ce4881a51dfdbc214e04
- languageName: node
- linkType: hard
-
-"is-regexp@npm:^1.0.0":
- version: 1.0.0
- resolution: "is-regexp@npm:1.0.0"
- checksum: 10c0/34cacda1901e00f6e44879378f1d2fa96320ea956c1bec27713130aaf1d44f6e7bd963eed28945bfe37e600cb27df1cf5207302680dad8bdd27b9baff8ecf611
- languageName: node
- linkType: hard
-
-"is-relative@npm:^1.0.0":
- version: 1.0.0
- resolution: "is-relative@npm:1.0.0"
- dependencies:
- is-unc-path: "npm:^1.0.0"
- checksum: 10c0/61157c4be8594dd25ac6f0ef29b1218c36667259ea26698367a4d9f39ff9018368bc365c490b3c79be92dfb1e389e43c4b865c95709e7b3bc72c5932f751fb60
- languageName: node
- linkType: hard
-
-"is-set@npm:^2.0.3":
- version: 2.0.3
- resolution: "is-set@npm:2.0.3"
- checksum: 10c0/f73732e13f099b2dc879c2a12341cfc22ccaca8dd504e6edae26484bd5707a35d503fba5b4daad530a9b088ced1ae6c9d8200fd92e09b428fe14ea79ce8080b7
- languageName: node
- linkType: hard
-
-"is-shared-array-buffer@npm:^1.0.4":
- version: 1.0.4
- resolution: "is-shared-array-buffer@npm:1.0.4"
- dependencies:
- call-bound: "npm:^1.0.3"
- checksum: 10c0/65158c2feb41ff1edd6bbd6fd8403a69861cf273ff36077982b5d4d68e1d59278c71691216a4a64632bd76d4792d4d1d2553901b6666d84ade13bba5ea7bc7db
- languageName: node
- linkType: hard
-
-"is-ssh@npm:^1.4.0":
- version: 1.4.1
- resolution: "is-ssh@npm:1.4.1"
- dependencies:
- protocols: "npm:^2.0.1"
- checksum: 10c0/021a7355cb032625d58db3cc8266ad9aa698cbabf460b71376a0307405577fd7d3aa0826c0bf1951d7809f134c0ee80403306f6d7633db94a5a3600a0106b398
- languageName: node
- linkType: hard
-
-"is-stream@npm:^1.1.0":
- version: 1.1.0
- resolution: "is-stream@npm:1.1.0"
- checksum: 10c0/b8ae7971e78d2e8488d15f804229c6eed7ed36a28f8807a1815938771f4adff0e705218b7dab968270433f67103e4fef98062a0beea55d64835f705ee72c7002
- languageName: node
- linkType: hard
-
-"is-string@npm:^1.0.7, is-string@npm:^1.1.1":
- version: 1.1.1
- resolution: "is-string@npm:1.1.1"
- dependencies:
- call-bound: "npm:^1.0.3"
- has-tostringtag: "npm:^1.0.2"
- checksum: 10c0/2f518b4e47886bb81567faba6ffd0d8a8333cf84336e2e78bf160693972e32ad00fe84b0926491cc598dee576fdc55642c92e62d0cbe96bf36f643b6f956f94d
- languageName: node
- linkType: hard
-
-"is-symbol@npm:^1.0.4, is-symbol@npm:^1.1.1":
- version: 1.1.1
- resolution: "is-symbol@npm:1.1.1"
- dependencies:
- call-bound: "npm:^1.0.2"
- has-symbols: "npm:^1.1.0"
- safe-regex-test: "npm:^1.1.0"
- checksum: 10c0/f08f3e255c12442e833f75a9e2b84b2d4882fdfd920513cf2a4a2324f0a5b076c8fd913778e3ea5d258d5183e9d92c0cd20e04b03ab3df05316b049b2670af1e
- languageName: node
- linkType: hard
-
-"is-typed-array@npm:^1.1.13, is-typed-array@npm:^1.1.14, is-typed-array@npm:^1.1.15":
- version: 1.1.15
- resolution: "is-typed-array@npm:1.1.15"
- dependencies:
- which-typed-array: "npm:^1.1.16"
- checksum: 10c0/415511da3669e36e002820584e264997ffe277ff136643a3126cc949197e6ca3334d0f12d084e83b1994af2e9c8141275c741cf2b7da5a2ff62dd0cac26f76c4
- languageName: node
- linkType: hard
-
-"is-unc-path@npm:^1.0.0":
- version: 1.0.0
- resolution: "is-unc-path@npm:1.0.0"
- dependencies:
- unc-path-regex: "npm:^0.1.2"
- checksum: 10c0/ac1b78f9b748196e3be3d0e722cd4b0f98639247a130a8f2473a58b29baf63fdb1b1c5a12c830660c5ee6ef0279c5418ca8e346f98cbe1a29e433d7ae531d42e
- languageName: node
- linkType: hard
-
-"is-unicode-supported@npm:^0.1.0":
- version: 0.1.0
- resolution: "is-unicode-supported@npm:0.1.0"
- checksum: 10c0/00cbe3455c3756be68d2542c416cab888aebd5012781d6819749fefb15162ff23e38501fe681b3d751c73e8ff561ac09a5293eba6f58fdf0178462ce6dcb3453
- languageName: node
- linkType: hard
-
-"is-unicode-supported@npm:^1.3.0":
- version: 1.3.0
- resolution: "is-unicode-supported@npm:1.3.0"
- checksum: 10c0/b8674ea95d869f6faabddc6a484767207058b91aea0250803cbf1221345cb0c56f466d4ecea375dc77f6633d248d33c47bd296fb8f4cdba0b4edba8917e83d8a
- languageName: node
- linkType: hard
-
-"is-unicode-supported@npm:^2.0.0":
- version: 2.1.0
- resolution: "is-unicode-supported@npm:2.1.0"
- checksum: 10c0/a0f53e9a7c1fdbcf2d2ef6e40d4736fdffff1c9f8944c75e15425118ff3610172c87bf7bc6c34d3903b04be59790bb2212ddbe21ee65b5a97030fc50370545a5
- languageName: node
- linkType: hard
-
-"is-weakmap@npm:^2.0.2":
- version: 2.0.2
- resolution: "is-weakmap@npm:2.0.2"
- checksum: 10c0/443c35bb86d5e6cc5929cd9c75a4024bb0fff9586ed50b092f94e700b89c43a33b186b76dbc6d54f3d3d09ece689ab38dcdc1af6a482cbe79c0f2da0a17f1299
- languageName: node
- linkType: hard
-
-"is-weakref@npm:^1.0.2, is-weakref@npm:^1.1.0":
- version: 1.1.1
- resolution: "is-weakref@npm:1.1.1"
- dependencies:
- call-bound: "npm:^1.0.3"
- checksum: 10c0/8e0a9c07b0c780949a100e2cab2b5560a48ecd4c61726923c1a9b77b6ab0aa0046c9e7fb2206042296817045376dee2c8ab1dabe08c7c3dfbf195b01275a085b
- languageName: node
- linkType: hard
-
-"is-weakset@npm:^2.0.3":
- version: 2.0.4
- resolution: "is-weakset@npm:2.0.4"
- dependencies:
- call-bound: "npm:^1.0.3"
- get-intrinsic: "npm:^1.2.6"
- checksum: 10c0/6491eba08acb8dc9532da23cb226b7d0192ede0b88f16199e592e4769db0a077119c1f5d2283d1e0d16d739115f70046e887e477eb0e66cd90e1bb29f28ba647
- languageName: node
- linkType: hard
-
-"is-windows@npm:^1.0.1":
- version: 1.0.2
- resolution: "is-windows@npm:1.0.2"
- checksum: 10c0/b32f418ab3385604a66f1b7a3ce39d25e8881dee0bd30816dc8344ef6ff9df473a732bcc1ec4e84fe99b2f229ae474f7133e8e93f9241686cfcf7eebe53ba7a5
- languageName: node
- linkType: hard
-
-"isarray@npm:^2.0.5":
- version: 2.0.5
- resolution: "isarray@npm:2.0.5"
- checksum: 10c0/4199f14a7a13da2177c66c31080008b7124331956f47bca57dd0b6ea9f11687aa25e565a2c7a2b519bc86988d10398e3049a1f5df13c9f6b7664154690ae79fd
- languageName: node
- linkType: hard
-
-"isbinaryfile@npm:^5.0.0":
- version: 5.0.4
- resolution: "isbinaryfile@npm:5.0.4"
- checksum: 10c0/fea255bfae67ff4827e8dd2238d6700d4803d02b4d892b72eeac4541487284e901251a3427966af5018d4eb29fa155b036dcb75dd217634146a072991afbc2c2
- languageName: node
- linkType: hard
-
-"isexe@npm:^2.0.0":
- version: 2.0.0
- resolution: "isexe@npm:2.0.0"
- checksum: 10c0/228cfa503fadc2c31596ab06ed6aa82c9976eec2bfd83397e7eaf06d0ccf42cd1dfd6743bf9aeb01aebd4156d009994c5f76ea898d2832c1fe342da923ca457d
- languageName: node
- linkType: hard
-
-"isexe@npm:^3.1.1":
- version: 3.1.1
- resolution: "isexe@npm:3.1.1"
- checksum: 10c0/9ec257654093443eb0a528a9c8cbba9c0ca7616ccb40abd6dde7202734d96bb86e4ac0d764f0f8cd965856aacbff2f4ce23e730dc19dfb41e3b0d865ca6fdcc7
- languageName: node
- linkType: hard
-
-"isobject@npm:^3.0.0, isobject@npm:^3.0.1":
- version: 3.0.1
- resolution: "isobject@npm:3.0.1"
- checksum: 10c0/03344f5064a82f099a0cd1a8a407f4c0d20b7b8485e8e816c39f249e9416b06c322e8dec5b842b6bb8a06de0af9cb48e7bc1b5352f0fadc2f0abac033db3d4db
- languageName: node
- linkType: hard
-
-"isomorphic.js@npm:^0.2.4":
- version: 0.2.5
- resolution: "isomorphic.js@npm:0.2.5"
- checksum: 10c0/7cd268c8e58146a8160c8cd16596291fd1fbf3e8799a325f269accda9dc1238806e371ccef0b66fe2ad957209230c55997248d8b6d02cf2d7c575ffeb759c789
- languageName: node
- linkType: hard
-
-"iterator.prototype@npm:^1.1.4":
- version: 1.1.5
- resolution: "iterator.prototype@npm:1.1.5"
- dependencies:
- define-data-property: "npm:^1.1.4"
- es-object-atoms: "npm:^1.0.0"
- get-intrinsic: "npm:^1.2.6"
- get-proto: "npm:^1.0.0"
- has-symbols: "npm:^1.1.0"
- set-function-name: "npm:^2.0.2"
- checksum: 10c0/f7a262808e1b41049ab55f1e9c29af7ec1025a000d243b83edf34ce2416eedd56079b117fa59376bb4a724110690f13aa8427f2ee29a09eec63a7e72367626d0
- languageName: node
- linkType: hard
-
-"jackspeak@npm:^2.3.5":
- version: 2.3.6
- resolution: "jackspeak@npm:2.3.6"
- dependencies:
- "@isaacs/cliui": "npm:^8.0.2"
- "@pkgjs/parseargs": "npm:^0.11.0"
- dependenciesMeta:
- "@pkgjs/parseargs":
- optional: true
- checksum: 10c0/f01d8f972d894cd7638bc338e9ef5ddb86f7b208ce177a36d718eac96ec86638a6efa17d0221b10073e64b45edc2ce15340db9380b1f5d5c5d000cbc517dc111
- languageName: node
- linkType: hard
-
-"jackspeak@npm:^3.1.2":
- version: 3.4.3
- resolution: "jackspeak@npm:3.4.3"
- dependencies:
- "@isaacs/cliui": "npm:^8.0.2"
- "@pkgjs/parseargs": "npm:^0.11.0"
- dependenciesMeta:
- "@pkgjs/parseargs":
- optional: true
- checksum: 10c0/6acc10d139eaefdbe04d2f679e6191b3abf073f111edf10b1de5302c97ec93fffeb2fdd8681ed17f16268aa9dd4f8c588ed9d1d3bffbbfa6e8bf897cbb3149b9
- languageName: node
- linkType: hard
-
-"jiti@npm:^1.21.6":
- version: 1.21.7
- resolution: "jiti@npm:1.21.7"
- bin:
- jiti: bin/jiti.js
- checksum: 10c0/77b61989c758ff32407cdae8ddc77f85e18e1a13fc4977110dbd2e05fc761842f5f71bce684d9a01316e1c4263971315a111385759951080bbfe17cbb5de8f7a
- languageName: node
- linkType: hard
-
-"js-tokens@npm:^3.0.0 || ^4.0.0, js-tokens@npm:^4.0.0":
- version: 4.0.0
- resolution: "js-tokens@npm:4.0.0"
- checksum: 10c0/e248708d377aa058eacf2037b07ded847790e6de892bbad3dac0abba2e759cb9f121b00099a65195616badcb6eca8d14d975cb3e89eb1cfda644756402c8aeed
- languageName: node
- linkType: hard
-
-"js-yaml@npm:^3.13.1":
- version: 3.14.1
- resolution: "js-yaml@npm:3.14.1"
- dependencies:
- argparse: "npm:^1.0.7"
- esprima: "npm:^4.0.0"
- bin:
- js-yaml: bin/js-yaml.js
- checksum: 10c0/6746baaaeac312c4db8e75fa22331d9a04cccb7792d126ed8ce6a0bbcfef0cedaddd0c5098fade53db067c09fe00aa1c957674b4765610a8b06a5a189e46433b
- languageName: node
- linkType: hard
-
-"js-yaml@npm:^4.0.0, js-yaml@npm:^4.1.0":
- version: 4.1.0
- resolution: "js-yaml@npm:4.1.0"
- dependencies:
- argparse: "npm:^2.0.1"
- bin:
- js-yaml: bin/js-yaml.js
- checksum: 10c0/184a24b4eaacfce40ad9074c64fd42ac83cf74d8c8cd137718d456ced75051229e5061b8633c3366b8aada17945a7a356b337828c19da92b51ae62126575018f
- languageName: node
- linkType: hard
-
-"jsbn@npm:1.1.0":
- version: 1.1.0
- resolution: "jsbn@npm:1.1.0"
- checksum: 10c0/4f907fb78d7b712e11dea8c165fe0921f81a657d3443dde75359ed52eb2b5d33ce6773d97985a089f09a65edd80b11cb75c767b57ba47391fee4c969f7215c96
- languageName: node
- linkType: hard
-
-"json-buffer@npm:3.0.1":
- version: 3.0.1
- resolution: "json-buffer@npm:3.0.1"
- checksum: 10c0/0d1c91569d9588e7eef2b49b59851f297f3ab93c7b35c7c221e288099322be6b562767d11e4821da500f3219542b9afd2e54c5dc573107c1126ed1080f8e96d7
- languageName: node
- linkType: hard
-
-"json-schema-traverse@npm:^0.4.1":
- version: 0.4.1
- resolution: "json-schema-traverse@npm:0.4.1"
- checksum: 10c0/108fa90d4cc6f08243aedc6da16c408daf81793bf903e9fd5ab21983cda433d5d2da49e40711da016289465ec2e62e0324dcdfbc06275a607fe3233fde4942ce
- languageName: node
- linkType: hard
-
-"json-schema-traverse@npm:^1.0.0":
- version: 1.0.0
- resolution: "json-schema-traverse@npm:1.0.0"
- checksum: 10c0/71e30015d7f3d6dc1c316d6298047c8ef98a06d31ad064919976583eb61e1018a60a0067338f0f79cabc00d84af3fcc489bd48ce8a46ea165d9541ba17fb30c6
- languageName: node
- linkType: hard
-
-"json-stable-stringify-without-jsonify@npm:^1.0.1":
- version: 1.0.1
- resolution: "json-stable-stringify-without-jsonify@npm:1.0.1"
- checksum: 10c0/cb168b61fd4de83e58d09aaa6425ef71001bae30d260e2c57e7d09a5fd82223e2f22a042dedaab8db23b7d9ae46854b08bb1f91675a8be11c5cffebef5fb66a5
- languageName: node
- linkType: hard
-
-"json5@npm:^1.0.2":
- version: 1.0.2
- resolution: "json5@npm:1.0.2"
- dependencies:
- minimist: "npm:^1.2.0"
- bin:
- json5: lib/cli.js
- checksum: 10c0/9ee316bf21f000b00752e6c2a3b79ecf5324515a5c60ee88983a1910a45426b643a4f3461657586e8aeca87aaf96f0a519b0516d2ae527a6c3e7eed80f68717f
- languageName: node
- linkType: hard
-
-"jsonc-parser@npm:^3.2.0":
- version: 3.3.1
- resolution: "jsonc-parser@npm:3.3.1"
- checksum: 10c0/269c3ae0a0e4f907a914bf334306c384aabb9929bd8c99f909275ebd5c2d3bc70b9bcd119ad794f339dec9f24b6a4ee9cd5a8ab2e6435e730ad4075388fc2ab6
- languageName: node
- linkType: hard
-
-"jsonp@npm:^0.2.1":
- version: 0.2.1
- resolution: "jsonp@npm:0.2.1"
- dependencies:
- debug: "npm:^2.1.3"
- checksum: 10c0/744b828f50062cd691d70936c0ee796dc8cb1c78c96327c25c173ae8e2183b82295ec26a99fe3b092cc9b22e08c14a491bf8af639d576615798edbb50ab99f9b
- languageName: node
- linkType: hard
-
-"jsonpointer@npm:^5.0.1":
- version: 5.0.1
- resolution: "jsonpointer@npm:5.0.1"
- checksum: 10c0/89929e58b400fcb96928c0504fcf4fc3f919d81e9543ceb055df125538470ee25290bb4984251e172e6ef8fcc55761eb998c118da763a82051ad89d4cb073fe7
- languageName: node
- linkType: hard
-
-"jsx-ast-utils@npm:^2.4.1 || ^3.0.0, jsx-ast-utils@npm:^3.3.5":
- version: 3.3.5
- resolution: "jsx-ast-utils@npm:3.3.5"
- dependencies:
- array-includes: "npm:^3.1.6"
- array.prototype.flat: "npm:^1.3.1"
- object.assign: "npm:^4.1.4"
- object.values: "npm:^1.1.6"
- checksum: 10c0/a32679e9cb55469cb6d8bbc863f7d631b2c98b7fc7bf172629261751a6e7bc8da6ae374ddb74d5fbd8b06cf0eb4572287b259813d92b36e384024ed35e4c13e1
- languageName: node
- linkType: hard
-
-"katex@npm:^0.16.0, katex@npm:^0.16.22, katex@npm:^0.16.9":
- version: 0.16.22
- resolution: "katex@npm:0.16.22"
- dependencies:
- commander: "npm:^8.3.0"
- bin:
- katex: cli.js
- checksum: 10c0/07b8b1f07ae53171b5f1ea0cf6f18841d2055825c8b11cd81cfe039afcd3af2cfc84ad033531ee3875088329105195b039c267e0dd4b0c237807e3c3b2009913
- languageName: node
- linkType: hard
-
-"keyv@npm:^4.5.3":
- version: 4.5.4
- resolution: "keyv@npm:4.5.4"
- dependencies:
- json-buffer: "npm:3.0.1"
- checksum: 10c0/aa52f3c5e18e16bb6324876bb8b59dd02acf782a4b789c7b2ae21107fab95fab3890ed448d4f8dba80ce05391eeac4bfabb4f02a20221342982f806fa2cf271e
- languageName: node
- linkType: hard
-
-"khroma@npm:^2.0.0, khroma@npm:^2.1.0":
- version: 2.1.0
- resolution: "khroma@npm:2.1.0"
- checksum: 10c0/634d98753ff5d2540491cafeb708fc98de0d43f4e6795256d5c8f6e3ad77de93049ea41433928fda3697adf7bbe6fe27351858f6d23b78f8b5775ef314c59891
- languageName: node
- linkType: hard
-
-"kind-of@npm:^6.0.0, kind-of@npm:^6.0.2":
- version: 6.0.3
- resolution: "kind-of@npm:6.0.3"
- checksum: 10c0/61cdff9623dabf3568b6445e93e31376bee1cdb93f8ba7033d86022c2a9b1791a1d9510e026e6465ebd701a6dd2f7b0808483ad8838341ac52f003f512e0b4c4
- languageName: node
- linkType: hard
-
-"kleur@npm:^4.0.3":
- version: 4.1.5
- resolution: "kleur@npm:4.1.5"
- checksum: 10c0/e9de6cb49657b6fa70ba2d1448fd3d691a5c4370d8f7bbf1c2f64c24d461270f2117e1b0afe8cb3114f13bbd8e51de158c2a224953960331904e636a5e4c0f2a
- languageName: node
- linkType: hard
-
-"kolorist@npm:^1.8.0":
- version: 1.8.0
- resolution: "kolorist@npm:1.8.0"
- checksum: 10c0/73075db44a692bf6c34a649f3b4b3aea4993b84f6b754cbf7a8577e7c7db44c0bad87752bd23b0ce533f49de2244ce2ce03b7b1b667a85ae170a94782cc50f9b
- languageName: node
- linkType: hard
-
-"langium@npm:3.3.1":
- version: 3.3.1
- resolution: "langium@npm:3.3.1"
- dependencies:
- chevrotain: "npm:~11.0.3"
- chevrotain-allstar: "npm:~0.3.0"
- vscode-languageserver: "npm:~9.0.1"
- vscode-languageserver-textdocument: "npm:~1.0.11"
- vscode-uri: "npm:~3.0.8"
- checksum: 10c0/0c54803068addb0f7c16a57fdb2db2e5d4d9a21259d477c3c7d0587c2c2f65a313f9eeef3c95ac1c2e41cd11d4f2eaf620d2c03fe839a3350ffee59d2b4c7647
- languageName: node
- linkType: hard
-
-"language-subtag-registry@npm:^0.3.20":
- version: 0.3.23
- resolution: "language-subtag-registry@npm:0.3.23"
- checksum: 10c0/e9b05190421d2cd36dd6c95c28673019c927947cb6d94f40ba7e77a838629ee9675c94accf897fbebb07923187deb843b8fbb8935762df6edafe6c28dcb0b86c
- languageName: node
- linkType: hard
-
-"language-tags@npm:^1.0.9":
- version: 1.0.9
- resolution: "language-tags@npm:1.0.9"
- dependencies:
- language-subtag-registry: "npm:^0.3.20"
- checksum: 10c0/9ab911213c4bd8bd583c850201c17794e52cb0660d1ab6e32558aadc8324abebf6844e46f92b80a5d600d0fbba7eface2c207bfaf270a1c7fd539e4c3a880bff
- languageName: node
- linkType: hard
-
-"layout-base@npm:^1.0.0":
- version: 1.0.2
- resolution: "layout-base@npm:1.0.2"
- checksum: 10c0/2a55d0460fd9f6ed53d7e301b9eb3dea19bda03815d616a40665ce6dc75c1f4d62e1ca19a897da1cfaf6de1b91de59cd6f2f79ba1258f3d7fccc7d46ca7f3337
- languageName: node
- linkType: hard
-
-"layout-base@npm:^2.0.0":
- version: 2.0.1
- resolution: "layout-base@npm:2.0.1"
- checksum: 10c0/a44df9ef3cbff9916a10f616635e22b5787c89fa62b2fec6f99e8e6ee512c7cebd22668ce32dab5a83c934ba0a309c51a678aa0b40d70853de6c357893c0a88b
- languageName: node
- linkType: hard
-
-"leven@npm:^4.0.0":
- version: 4.0.0
- resolution: "leven@npm:4.0.0"
- checksum: 10c0/393bd949d93103d9ef487be96321bdb02c2e7695e372193f650642e1ad653c61b03da16bf55e45d442db59c7b6407eb947a7748b5777e48ddf0ada25f8b2a815
- languageName: node
- linkType: hard
-
-"levn@npm:^0.4.1":
- version: 0.4.1
- resolution: "levn@npm:0.4.1"
- dependencies:
- prelude-ls: "npm:^1.2.1"
- type-check: "npm:~0.4.0"
- checksum: 10c0/effb03cad7c89dfa5bd4f6989364bfc79994c2042ec5966cb9b95990e2edee5cd8969ddf42616a0373ac49fac1403437deaf6e9050fbbaa3546093a59b9ac94e
- languageName: node
- linkType: hard
-
-"lib0@npm:^0.2.42":
- version: 0.2.99
- resolution: "lib0@npm:0.2.99"
- dependencies:
- isomorphic.js: "npm:^0.2.4"
- bin:
- 0ecdsa-generate-keypair: bin/0ecdsa-generate-keypair.js
- 0gentesthtml: bin/gentesthtml.js
- 0serve: bin/0serve.js
- checksum: 10c0/24f914e5ab025a3e647396a22dcdb748754a9ce9eb1b98ac9a51e4a25d589c4382c82dda8330252c77f2755288097ccb3654e34eb03b1ae957422f8ebeae04d2
- languageName: node
- linkType: hard
-
-"liftoff@npm:^4.0.0":
- version: 4.0.0
- resolution: "liftoff@npm:4.0.0"
- dependencies:
- extend: "npm:^3.0.2"
- findup-sync: "npm:^5.0.0"
- fined: "npm:^2.0.0"
- flagged-respawn: "npm:^2.0.0"
- is-plain-object: "npm:^5.0.0"
- object.map: "npm:^1.0.1"
- rechoir: "npm:^0.8.0"
- resolve: "npm:^1.20.0"
- checksum: 10c0/c323c173f18f36100761f3e6017dffd0a0f5fd45f13254741b0edf8604a065afe6190812fddbde3d95220998a15b20acf4e44baa3cc3185b9c65bb5662b9c24a
- languageName: node
- linkType: hard
-
-"lilconfig@npm:^3.0.0, lilconfig@npm:^3.1.3":
- version: 3.1.3
- resolution: "lilconfig@npm:3.1.3"
- checksum: 10c0/f5604e7240c5c275743561442fbc5abf2a84ad94da0f5adc71d25e31fa8483048de3dcedcb7a44112a942fed305fd75841cdf6c9681c7f640c63f1049e9a5dcc
- languageName: node
- linkType: hard
-
-"lines-and-columns@npm:^1.1.6":
- version: 1.2.4
- resolution: "lines-and-columns@npm:1.2.4"
- checksum: 10c0/3da6ee62d4cd9f03f5dc90b4df2540fb85b352081bee77fe4bbcd12c9000ead7f35e0a38b8d09a9bb99b13223446dd8689ff3c4959807620726d788701a83d2d
- languageName: node
- linkType: hard
-
-"local-pkg@npm:^1.0.0":
- version: 1.1.1
- resolution: "local-pkg@npm:1.1.1"
- dependencies:
- mlly: "npm:^1.7.4"
- pkg-types: "npm:^2.0.1"
- quansync: "npm:^0.2.8"
- checksum: 10c0/fe8f9d0443fb066c3f28a4c89d587dd7cba3ab02645cd16598f8d5f30968acf60af1b0ec2d6ad768475ec9f52baad124f31a93d2fbc034f645bcc02bf3a84882
- languageName: node
- linkType: hard
-
-"locate-path@npm:^6.0.0":
- version: 6.0.0
- resolution: "locate-path@npm:6.0.0"
- dependencies:
- p-locate: "npm:^5.0.0"
- checksum: 10c0/d3972ab70dfe58ce620e64265f90162d247e87159b6126b01314dd67be43d50e96a50b517bce2d9452a79409c7614054c277b5232377de50416564a77ac7aad3
- languageName: node
- linkType: hard
-
-"lodash-es@npm:4.17.21, lodash-es@npm:^4.17.21":
- version: 4.17.21
- resolution: "lodash-es@npm:4.17.21"
- checksum: 10c0/fb407355f7e6cd523a9383e76e6b455321f0f153a6c9625e21a8827d10c54c2a2341bd2ae8d034358b60e07325e1330c14c224ff582d04612a46a4f0479ff2f2
- languageName: node
- linkType: hard
-
-"lodash.get@npm:^4.4.2":
- version: 4.4.2
- resolution: "lodash.get@npm:4.4.2"
- checksum: 10c0/48f40d471a1654397ed41685495acb31498d5ed696185ac8973daef424a749ca0c7871bf7b665d5c14f5cc479394479e0307e781f61d5573831769593411be6e
- languageName: node
- linkType: hard
-
-"lodash.merge@npm:^4.6.2":
- version: 4.6.2
- resolution: "lodash.merge@npm:4.6.2"
- checksum: 10c0/402fa16a1edd7538de5b5903a90228aa48eb5533986ba7fa26606a49db2572bf414ff73a2c9f5d5fd36b31c46a5d5c7e1527749c07cbcf965ccff5fbdf32c506
- languageName: node
- linkType: hard
-
-"lodash@npm:^4.17.21":
- version: 4.17.21
- resolution: "lodash@npm:4.17.21"
- checksum: 10c0/d8cbea072bb08655bb4c989da418994b073a608dffa608b09ac04b43a791b12aeae7cd7ad919aa4c925f33b48490b5cfe6c1f71d827956071dae2e7bb3a6b74c
- languageName: node
- linkType: hard
-
-"log-symbols@npm:^4.1.0":
- version: 4.1.0
- resolution: "log-symbols@npm:4.1.0"
- dependencies:
- chalk: "npm:^4.1.0"
- is-unicode-supported: "npm:^0.1.0"
- checksum: 10c0/67f445a9ffa76db1989d0fa98586e5bc2fd5247260dafb8ad93d9f0ccd5896d53fb830b0e54dade5ad838b9de2006c826831a3c528913093af20dff8bd24aca6
- languageName: node
- linkType: hard
-
-"log-symbols@npm:^6.0.0":
- version: 6.0.0
- resolution: "log-symbols@npm:6.0.0"
- dependencies:
- chalk: "npm:^5.3.0"
- is-unicode-supported: "npm:^1.3.0"
- checksum: 10c0/36636cacedba8f067d2deb4aad44e91a89d9efb3ead27e1846e7b82c9a10ea2e3a7bd6ce28a7ca616bebc60954ff25c67b0f92d20a6a746bb3cc52c3701891f6
- languageName: node
- linkType: hard
-
-"longest-streak@npm:^3.0.0":
- version: 3.1.0
- resolution: "longest-streak@npm:3.1.0"
- checksum: 10c0/7c2f02d0454b52834d1bcedef79c557bd295ee71fdabb02d041ff3aa9da48a90b5df7c0409156dedbc4df9b65da18742652aaea4759d6ece01f08971af6a7eaa
- languageName: node
- linkType: hard
-
-"loose-envify@npm:^1.1.0, loose-envify@npm:^1.4.0":
- version: 1.4.0
- resolution: "loose-envify@npm:1.4.0"
- dependencies:
- js-tokens: "npm:^3.0.0 || ^4.0.0"
- bin:
- loose-envify: cli.js
- checksum: 10c0/655d110220983c1a4b9c0c679a2e8016d4b67f6e9c7b5435ff5979ecdb20d0813f4dec0a08674fcbdd4846a3f07edbb50a36811fd37930b94aaa0d9daceb017e
- languageName: node
- linkType: hard
-
-"loupe@npm:^3.1.0, loupe@npm:^3.1.1, loupe@npm:^3.1.2":
- version: 3.1.3
- resolution: "loupe@npm:3.1.3"
- checksum: 10c0/f5dab4144254677de83a35285be1b8aba58b3861439ce4ba65875d0d5f3445a4a496daef63100ccf02b2dbc25bf58c6db84c9cb0b96d6435331e9d0a33b48541
- languageName: node
- linkType: hard
-
-"lower-case@npm:^2.0.2":
- version: 2.0.2
- resolution: "lower-case@npm:2.0.2"
- dependencies:
- tslib: "npm:^2.0.3"
- checksum: 10c0/3d925e090315cf7dc1caa358e0477e186ffa23947740e4314a7429b6e62d72742e0bbe7536a5ae56d19d7618ce998aba05caca53c2902bd5742fdca5fc57fd7b
- languageName: node
- linkType: hard
-
-"lowlight@npm:^3.0.0":
- version: 3.3.0
- resolution: "lowlight@npm:3.3.0"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- devlop: "npm:^1.0.0"
- highlight.js: "npm:~11.11.0"
- checksum: 10c0/9b796fa8443b0334ebf18bc57387c9ee31432d8c263cf2089d23e1087c653d708447284e0647bf993cb2cdc810e0b268a28f51ea27b4a624893b97bdd3f025f4
- languageName: node
- linkType: hard
-
-"lru-cache@npm:^10.0.1, lru-cache@npm:^10.2.0":
- version: 10.4.3
- resolution: "lru-cache@npm:10.4.3"
- checksum: 10c0/ebd04fbca961e6c1d6c0af3799adcc966a1babe798f685bb84e6599266599cd95d94630b10262f5424539bc4640107e8a33aa28585374abf561d30d16f4b39fb
- languageName: node
- linkType: hard
-
-"lru-cache@npm:^4.0.1":
- version: 4.1.5
- resolution: "lru-cache@npm:4.1.5"
- dependencies:
- pseudomap: "npm:^1.0.2"
- yallist: "npm:^2.1.2"
- checksum: 10c0/1ca5306814e5add9ec63556d6fd9b24a4ecdeaef8e9cea52cbf30301e6b88c8d8ddc7cab45b59b56eb763e6c45af911585dc89925a074ab65e1502e3fe8103cf
- languageName: node
- linkType: hard
-
-"lucide-react@npm:^0.522.0":
- version: 0.522.0
- resolution: "lucide-react@npm:0.522.0"
- peerDependencies:
- react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
- checksum: 10c0/92f18da5ade753c7955a3d0fe3779b62831bf1d6ab15396b6024ef66efe7df7b78e19728e3cf59d1bd01bbee16de0c474a5d6b2741e6b5c97d8374d02f776898
- languageName: node
- linkType: hard
-
-"lz-string@npm:^1.5.0":
- version: 1.5.0
- resolution: "lz-string@npm:1.5.0"
- bin:
- lz-string: bin/bin.js
- checksum: 10c0/36128e4de34791838abe979b19927c26e67201ca5acf00880377af7d765b38d1c60847e01c5ec61b1a260c48029084ab3893a3925fd6e48a04011364b089991b
- languageName: node
- linkType: hard
-
-"make-fetch-happen@npm:^14.0.3":
- version: 14.0.3
- resolution: "make-fetch-happen@npm:14.0.3"
- dependencies:
- "@npmcli/agent": "npm:^3.0.0"
- cacache: "npm:^19.0.1"
- http-cache-semantics: "npm:^4.1.1"
- minipass: "npm:^7.0.2"
- minipass-fetch: "npm:^4.0.0"
- minipass-flush: "npm:^1.0.5"
- minipass-pipeline: "npm:^1.2.4"
- negotiator: "npm:^1.0.0"
- proc-log: "npm:^5.0.0"
- promise-retry: "npm:^2.0.1"
- ssri: "npm:^12.0.0"
- checksum: 10c0/c40efb5e5296e7feb8e37155bde8eb70bc57d731b1f7d90e35a092fde403d7697c56fb49334d92d330d6f1ca29a98142036d6480a12681133a0a1453164cb2f0
- languageName: node
- linkType: hard
-
-"make-iterator@npm:^1.0.0":
- version: 1.0.1
- resolution: "make-iterator@npm:1.0.1"
- dependencies:
- kind-of: "npm:^6.0.2"
- checksum: 10c0/84b77d72e4af589a4e6069a9e0265ff55e63162b528aa085149060b7bf4e858c700892b95a073feaf517988cac75ca2e8d9ceb14243718b2f268dc4f4a90ff0a
- languageName: node
- linkType: hard
-
-"map-cache@npm:^0.2.0":
- version: 0.2.2
- resolution: "map-cache@npm:0.2.2"
- checksum: 10c0/05e3eb005c1b80b9f949ca007687640e8c5d0fc88dc45c3c3ab4902a3bec79d66a58f3e3b04d6985d90cd267c629c7b46c977e9c34433e8c11ecfcbb9f0fa290
- languageName: node
- linkType: hard
-
-"markdown-extensions@npm:^1.0.0":
- version: 1.1.1
- resolution: "markdown-extensions@npm:1.1.1"
- checksum: 10c0/eb9154016502ad1fb4477683ddb5cae8ba3ca06451b381b04dc4c34e91d8d168129d50d404b717d6bf7d458e13088c109303fc72d57cee7151a6082b0e7bba71
- languageName: node
- linkType: hard
-
-"markdown-table@npm:^3.0.0":
- version: 3.0.4
- resolution: "markdown-table@npm:3.0.4"
- checksum: 10c0/1257b31827629a54c24a5030a3dac952256c559174c95ce3ef89bebd6bff0cb1444b1fd667b1a1bb53307f83278111505b3e26f0c4e7b731e0060d435d2d930b
- languageName: node
- linkType: hard
-
-"marked@npm:^16.0.0":
- version: 16.1.1
- resolution: "marked@npm:16.1.1"
- bin:
- marked: bin/marked.js
- checksum: 10c0/1b02f1b9e82fe8fec1e1fd7d2f96ea19001bf535c8558f70dcb6e28c7afcd03f34095689484bbde600d00c33d5bb51b3f9b29932aee324751047e40f4d092a9c
- languageName: node
- linkType: hard
-
-"match-sorter@npm:^6.3.1":
- version: 6.4.0
- resolution: "match-sorter@npm:6.4.0"
- dependencies:
- "@babel/runtime": "npm:^7.23.8"
- remove-accents: "npm:0.5.0"
- checksum: 10c0/2b8ea3933416d16570888e4ca44c67d7deeccb0a378852e14ee6eebcf52e9a1df3ca1279cbf3f5bcae02edab28304c3bd1199d1782ff2a148448bfc0b314242e
- languageName: node
- linkType: hard
-
-"math-intrinsics@npm:^1.1.0":
- version: 1.1.0
- resolution: "math-intrinsics@npm:1.1.0"
- checksum: 10c0/7579ff94e899e2f76ab64491d76cf606274c874d8f2af4a442c016bd85688927fcfca157ba6bf74b08e9439dc010b248ce05b96cc7c126a354c3bae7fcb48b7f
- languageName: node
- linkType: hard
-
-"mdast-util-definitions@npm:^5.0.0":
- version: 5.1.2
- resolution: "mdast-util-definitions@npm:5.1.2"
- dependencies:
- "@types/mdast": "npm:^3.0.0"
- "@types/unist": "npm:^2.0.0"
- unist-util-visit: "npm:^4.0.0"
- checksum: 10c0/da9049c15562e44ee4ea4a36113d98c6c9eaa3d8a17d6da2aef6a0626376dcd01d9ec007d77a8dfcad6d0cbd5c32a4abbad72a3f48c3172a55934c7d9a916480
- languageName: node
- linkType: hard
-
-"mdast-util-find-and-replace@npm:^2.0.0":
- version: 2.2.2
- resolution: "mdast-util-find-and-replace@npm:2.2.2"
- dependencies:
- "@types/mdast": "npm:^3.0.0"
- escape-string-regexp: "npm:^5.0.0"
- unist-util-is: "npm:^5.0.0"
- unist-util-visit-parents: "npm:^5.0.0"
- checksum: 10c0/ce935f4bd4aeab47f91531a7f09dfab89aaeea62ad31029b43185c5b626921357703d8e5093c13073c097fdabfc57cb2f884d7dfad83dbe7239e351375d6797c
- languageName: node
- linkType: hard
-
-"mdast-util-find-and-replace@npm:^3.0.0":
- version: 3.0.2
- resolution: "mdast-util-find-and-replace@npm:3.0.2"
- dependencies:
- "@types/mdast": "npm:^4.0.0"
- escape-string-regexp: "npm:^5.0.0"
- unist-util-is: "npm:^6.0.0"
- unist-util-visit-parents: "npm:^6.0.0"
- checksum: 10c0/c8417a35605d567772ff5c1aa08363ff3010b0d60c8ea68c53cba09bf25492e3dd261560425c1756535f3b7107f62e7ff3857cdd8fb1e62d1b2cc2ea6e074ca2
- languageName: node
- linkType: hard
-
-"mdast-util-from-markdown@npm:^1.0.0, mdast-util-from-markdown@npm:^1.1.0, mdast-util-from-markdown@npm:^1.3.0":
- version: 1.3.1
- resolution: "mdast-util-from-markdown@npm:1.3.1"
- dependencies:
- "@types/mdast": "npm:^3.0.0"
- "@types/unist": "npm:^2.0.0"
- decode-named-character-reference: "npm:^1.0.0"
- mdast-util-to-string: "npm:^3.1.0"
- micromark: "npm:^3.0.0"
- micromark-util-decode-numeric-character-reference: "npm:^1.0.0"
- micromark-util-decode-string: "npm:^1.0.0"
- micromark-util-normalize-identifier: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- unist-util-stringify-position: "npm:^3.0.0"
- uvu: "npm:^0.5.0"
- checksum: 10c0/f4e901bf2a2e93fe35a339e0cff581efacce2f7117cd5652e9a270847bd7e2508b3e717b7b4156af54d4f896d63033e06ff9fafbf59a1d46fe17dd5e2a3f7846
- languageName: node
- linkType: hard
-
-"mdast-util-from-markdown@npm:^2.0.0":
- version: 2.0.2
- resolution: "mdast-util-from-markdown@npm:2.0.2"
- dependencies:
- "@types/mdast": "npm:^4.0.0"
- "@types/unist": "npm:^3.0.0"
- decode-named-character-reference: "npm:^1.0.0"
- devlop: "npm:^1.0.0"
- mdast-util-to-string: "npm:^4.0.0"
- micromark: "npm:^4.0.0"
- micromark-util-decode-numeric-character-reference: "npm:^2.0.0"
- micromark-util-decode-string: "npm:^2.0.0"
- micromark-util-normalize-identifier: "npm:^2.0.0"
- micromark-util-symbol: "npm:^2.0.0"
- micromark-util-types: "npm:^2.0.0"
- unist-util-stringify-position: "npm:^4.0.0"
- checksum: 10c0/76eb2bd2c6f7a0318087c73376b8af6d7561c1e16654e7667e640f391341096c56142618fd0ff62f6d39e5ab4895898b9789c84cd7cec2874359a437a0e1ff15
- languageName: node
- linkType: hard
-
-"mdast-util-gfm-autolink-literal@npm:^1.0.0":
- version: 1.0.3
- resolution: "mdast-util-gfm-autolink-literal@npm:1.0.3"
- dependencies:
- "@types/mdast": "npm:^3.0.0"
- ccount: "npm:^2.0.0"
- mdast-util-find-and-replace: "npm:^2.0.0"
- micromark-util-character: "npm:^1.0.0"
- checksum: 10c0/750e312eae73c3f2e8aa0e8c5232cb1b905357ff37ac236927f1af50cdbee7c2cfe2379b148ac32fa4137eeb3b24601e1bb6135084af926c7cd808867804193f
- languageName: node
- linkType: hard
-
-"mdast-util-gfm-autolink-literal@npm:^2.0.0":
- version: 2.0.1
- resolution: "mdast-util-gfm-autolink-literal@npm:2.0.1"
- dependencies:
- "@types/mdast": "npm:^4.0.0"
- ccount: "npm:^2.0.0"
- devlop: "npm:^1.0.0"
- mdast-util-find-and-replace: "npm:^3.0.0"
- micromark-util-character: "npm:^2.0.0"
- checksum: 10c0/963cd22bd42aebdec7bdd0a527c9494d024d1ad0739c43dc040fee35bdfb5e29c22564330a7418a72b5eab51d47a6eff32bc0255ef3ccb5cebfe8970e91b81b6
- languageName: node
- linkType: hard
-
-"mdast-util-gfm-footnote@npm:^1.0.0":
- version: 1.0.2
- resolution: "mdast-util-gfm-footnote@npm:1.0.2"
- dependencies:
- "@types/mdast": "npm:^3.0.0"
- mdast-util-to-markdown: "npm:^1.3.0"
- micromark-util-normalize-identifier: "npm:^1.0.0"
- checksum: 10c0/767973e46b9e2ae44e80e51a5e38ad0b032fc7f06a1a3095aa96c2886ba333941c764474a56b82e7db05efc56242a4789bc7fbbcc753d61512750e86a4192fe8
- languageName: node
- linkType: hard
-
-"mdast-util-gfm-footnote@npm:^2.0.0":
- version: 2.1.0
- resolution: "mdast-util-gfm-footnote@npm:2.1.0"
- dependencies:
- "@types/mdast": "npm:^4.0.0"
- devlop: "npm:^1.1.0"
- mdast-util-from-markdown: "npm:^2.0.0"
- mdast-util-to-markdown: "npm:^2.0.0"
- micromark-util-normalize-identifier: "npm:^2.0.0"
- checksum: 10c0/8ab965ee6be3670d76ec0e95b2ba3101fc7444eec47564943ab483d96ac17d29da2a4e6146a2a288be30c21b48c4f3938a1e54b9a46fbdd321d49a5bc0077ed0
- languageName: node
- linkType: hard
-
-"mdast-util-gfm-strikethrough@npm:^1.0.0":
- version: 1.0.3
- resolution: "mdast-util-gfm-strikethrough@npm:1.0.3"
- dependencies:
- "@types/mdast": "npm:^3.0.0"
- mdast-util-to-markdown: "npm:^1.3.0"
- checksum: 10c0/29616b3dfdd33d3cd13f9b3181a8562fa2fbacfcb04a37dba3c690ba6829f0231b145444de984726d9277b2bc90dd7d96fb9df9f6292d5e77d65a8659ee2f52b
- languageName: node
- linkType: hard
-
-"mdast-util-gfm-strikethrough@npm:^2.0.0":
- version: 2.0.0
- resolution: "mdast-util-gfm-strikethrough@npm:2.0.0"
- dependencies:
- "@types/mdast": "npm:^4.0.0"
- mdast-util-from-markdown: "npm:^2.0.0"
- mdast-util-to-markdown: "npm:^2.0.0"
- checksum: 10c0/b053e93d62c7545019bd914271ea9e5667ad3b3b57d16dbf68e56fea39a7e19b4a345e781312714eb3d43fdd069ff7ee22a3ca7f6149dfa774554f19ce3ac056
- languageName: node
- linkType: hard
-
-"mdast-util-gfm-table@npm:^1.0.0":
- version: 1.0.7
- resolution: "mdast-util-gfm-table@npm:1.0.7"
- dependencies:
- "@types/mdast": "npm:^3.0.0"
- markdown-table: "npm:^3.0.0"
- mdast-util-from-markdown: "npm:^1.0.0"
- mdast-util-to-markdown: "npm:^1.3.0"
- checksum: 10c0/a37a05a936292c4f48394123332d3c034a6e1b15bb3e7f3b94e6bce3260c9184fd388abbc4100827edd5485a6563098306994d15a729bde3c96de7a62ed5720b
- languageName: node
- linkType: hard
-
-"mdast-util-gfm-table@npm:^2.0.0":
- version: 2.0.0
- resolution: "mdast-util-gfm-table@npm:2.0.0"
- dependencies:
- "@types/mdast": "npm:^4.0.0"
- devlop: "npm:^1.0.0"
- markdown-table: "npm:^3.0.0"
- mdast-util-from-markdown: "npm:^2.0.0"
- mdast-util-to-markdown: "npm:^2.0.0"
- checksum: 10c0/128af47c503a53bd1c79f20642561e54a510ad5e2db1e418d28fefaf1294ab839e6c838e341aef5d7e404f9170b9ca3d1d89605f234efafde93ee51174a6e31e
- languageName: node
- linkType: hard
-
-"mdast-util-gfm-task-list-item@npm:^1.0.0":
- version: 1.0.2
- resolution: "mdast-util-gfm-task-list-item@npm:1.0.2"
- dependencies:
- "@types/mdast": "npm:^3.0.0"
- mdast-util-to-markdown: "npm:^1.3.0"
- checksum: 10c0/91fa91f7d1a8797bf129008dab12d23917015ad12df00044e275b4459e8b383fbec6234338953a0089ef9c3a114d0a360c3e652eb0ebf6ece7e7a8fd3b5977c6
- languageName: node
- linkType: hard
-
-"mdast-util-gfm-task-list-item@npm:^2.0.0":
- version: 2.0.0
- resolution: "mdast-util-gfm-task-list-item@npm:2.0.0"
- dependencies:
- "@types/mdast": "npm:^4.0.0"
- devlop: "npm:^1.0.0"
- mdast-util-from-markdown: "npm:^2.0.0"
- mdast-util-to-markdown: "npm:^2.0.0"
- checksum: 10c0/258d725288482b636c0a376c296431390c14b4f29588675297cb6580a8598ed311fc73ebc312acfca12cc8546f07a3a285a53a3b082712e2cbf5c190d677d834
- languageName: node
- linkType: hard
-
-"mdast-util-gfm@npm:^2.0.0":
- version: 2.0.2
- resolution: "mdast-util-gfm@npm:2.0.2"
- dependencies:
- mdast-util-from-markdown: "npm:^1.0.0"
- mdast-util-gfm-autolink-literal: "npm:^1.0.0"
- mdast-util-gfm-footnote: "npm:^1.0.0"
- mdast-util-gfm-strikethrough: "npm:^1.0.0"
- mdast-util-gfm-table: "npm:^1.0.0"
- mdast-util-gfm-task-list-item: "npm:^1.0.0"
- mdast-util-to-markdown: "npm:^1.0.0"
- checksum: 10c0/5b7f7f98a90a2962d7e0787e080c4e55b70119100c7685bbdb772d8d7865524aeffd1757edba5afba434250e0246b987c0617c2c635baaf51c26dbbb3b72dbec
- languageName: node
- linkType: hard
-
-"mdast-util-gfm@npm:^3.0.0":
- version: 3.1.0
- resolution: "mdast-util-gfm@npm:3.1.0"
- dependencies:
- mdast-util-from-markdown: "npm:^2.0.0"
- mdast-util-gfm-autolink-literal: "npm:^2.0.0"
- mdast-util-gfm-footnote: "npm:^2.0.0"
- mdast-util-gfm-strikethrough: "npm:^2.0.0"
- mdast-util-gfm-table: "npm:^2.0.0"
- mdast-util-gfm-task-list-item: "npm:^2.0.0"
- mdast-util-to-markdown: "npm:^2.0.0"
- checksum: 10c0/4bedcfb6a20e39901c8772f0d2bb2d7a64ae87a54c13cbd92eec062cf470fbb68c2ad754e149af5b30794e2de61c978ab1de1ace03c0c40f443ca9b9b8044f81
- languageName: node
- linkType: hard
-
-"mdast-util-math@npm:^2.0.0":
- version: 2.0.2
- resolution: "mdast-util-math@npm:2.0.2"
- dependencies:
- "@types/mdast": "npm:^3.0.0"
- longest-streak: "npm:^3.0.0"
- mdast-util-to-markdown: "npm:^1.3.0"
- checksum: 10c0/2270b6f8d7f0eb7dd5c27bee8ad43f29a8e76a7092742945fd115480ddd8bf72ae53ba1f8f63697cec82016e0c169f0a201503862dfe6bc7ac2286662de3fe8e
- languageName: node
- linkType: hard
-
-"mdast-util-mdx-expression@npm:^1.0.0":
- version: 1.3.2
- resolution: "mdast-util-mdx-expression@npm:1.3.2"
- dependencies:
- "@types/estree-jsx": "npm:^1.0.0"
- "@types/hast": "npm:^2.0.0"
- "@types/mdast": "npm:^3.0.0"
- mdast-util-from-markdown: "npm:^1.0.0"
- mdast-util-to-markdown: "npm:^1.0.0"
- checksum: 10c0/01f306ee809d28825cbec23b3c80376a0fbe69601b6b2843d23beb5662a31ec7560995f52b96b13093cc03de1130404a47f139d16f58c3f54e91e88f4bdd82d2
- languageName: node
- linkType: hard
-
-"mdast-util-mdx-expression@npm:^2.0.0":
- version: 2.0.1
- resolution: "mdast-util-mdx-expression@npm:2.0.1"
- dependencies:
- "@types/estree-jsx": "npm:^1.0.0"
- "@types/hast": "npm:^3.0.0"
- "@types/mdast": "npm:^4.0.0"
- devlop: "npm:^1.0.0"
- mdast-util-from-markdown: "npm:^2.0.0"
- mdast-util-to-markdown: "npm:^2.0.0"
- checksum: 10c0/9a1e57940f66431f10312fa239096efa7627f375e7933b5d3162c0b5c1712a72ac87447aff2b6838d2bbd5c1311b188718cc90b33b67dc67a88550e0a6ef6183
- languageName: node
- linkType: hard
-
-"mdast-util-mdx-jsx@npm:^2.0.0":
- version: 2.1.4
- resolution: "mdast-util-mdx-jsx@npm:2.1.4"
- dependencies:
- "@types/estree-jsx": "npm:^1.0.0"
- "@types/hast": "npm:^2.0.0"
- "@types/mdast": "npm:^3.0.0"
- "@types/unist": "npm:^2.0.0"
- ccount: "npm:^2.0.0"
- mdast-util-from-markdown: "npm:^1.1.0"
- mdast-util-to-markdown: "npm:^1.3.0"
- parse-entities: "npm:^4.0.0"
- stringify-entities: "npm:^4.0.0"
- unist-util-remove-position: "npm:^4.0.0"
- unist-util-stringify-position: "npm:^3.0.0"
- vfile-message: "npm:^3.0.0"
- checksum: 10c0/b0c16e56a99c5167e60c98dbdbe82645549630fb529688642c4664ca5557ff0b3029c75146f5657cadb7908d5fa99810eacc5dcc51676d0877c8b4dcebb11cbe
- languageName: node
- linkType: hard
-
-"mdast-util-mdx-jsx@npm:^3.0.0":
- version: 3.2.0
- resolution: "mdast-util-mdx-jsx@npm:3.2.0"
- dependencies:
- "@types/estree-jsx": "npm:^1.0.0"
- "@types/hast": "npm:^3.0.0"
- "@types/mdast": "npm:^4.0.0"
- "@types/unist": "npm:^3.0.0"
- ccount: "npm:^2.0.0"
- devlop: "npm:^1.1.0"
- mdast-util-from-markdown: "npm:^2.0.0"
- mdast-util-to-markdown: "npm:^2.0.0"
- parse-entities: "npm:^4.0.0"
- stringify-entities: "npm:^4.0.0"
- unist-util-stringify-position: "npm:^4.0.0"
- vfile-message: "npm:^4.0.0"
- checksum: 10c0/3acadaf3b962254f7ad2990fed4729961dc0217ca31fde9917986e880843f3ecf3392b1f22d569235cacd180d50894ad266db7af598aedca69d330d33c7ac613
- languageName: node
- linkType: hard
-
-"mdast-util-mdx@npm:^2.0.0":
- version: 2.0.1
- resolution: "mdast-util-mdx@npm:2.0.1"
- dependencies:
- mdast-util-from-markdown: "npm:^1.0.0"
- mdast-util-mdx-expression: "npm:^1.0.0"
- mdast-util-mdx-jsx: "npm:^2.0.0"
- mdast-util-mdxjs-esm: "npm:^1.0.0"
- mdast-util-to-markdown: "npm:^1.0.0"
- checksum: 10c0/3b5e55781a7b7b4b7e71728a84afbec63516f251b3556efec52dbb4824c0733f5ebaa907d21211d008e5cb1a8265e6704bc062ee605f4c09e90fbfa2c6fbba3b
- languageName: node
- linkType: hard
-
-"mdast-util-mdxjs-esm@npm:^1.0.0":
- version: 1.3.1
- resolution: "mdast-util-mdxjs-esm@npm:1.3.1"
- dependencies:
- "@types/estree-jsx": "npm:^1.0.0"
- "@types/hast": "npm:^2.0.0"
- "@types/mdast": "npm:^3.0.0"
- mdast-util-from-markdown: "npm:^1.0.0"
- mdast-util-to-markdown: "npm:^1.0.0"
- checksum: 10c0/2ff0af34ea62004d39f15bd45b79e3008e68cae7e2510c9281e24a17e2c3f55d004524796166ef5aa3378798ca7f6c5f88883238f413577619bbaf41026b7e62
- languageName: node
- linkType: hard
-
-"mdast-util-mdxjs-esm@npm:^2.0.0":
- version: 2.0.1
- resolution: "mdast-util-mdxjs-esm@npm:2.0.1"
- dependencies:
- "@types/estree-jsx": "npm:^1.0.0"
- "@types/hast": "npm:^3.0.0"
- "@types/mdast": "npm:^4.0.0"
- devlop: "npm:^1.0.0"
- mdast-util-from-markdown: "npm:^2.0.0"
- mdast-util-to-markdown: "npm:^2.0.0"
- checksum: 10c0/5bda92fc154141705af2b804a534d891f28dac6273186edf1a4c5e3f045d5b01dbcac7400d27aaf91b7e76e8dce007c7b2fdf136c11ea78206ad00bdf9db46bc
- languageName: node
- linkType: hard
-
-"mdast-util-phrasing@npm:^3.0.0":
- version: 3.0.1
- resolution: "mdast-util-phrasing@npm:3.0.1"
- dependencies:
- "@types/mdast": "npm:^3.0.0"
- unist-util-is: "npm:^5.0.0"
- checksum: 10c0/5e00e303652a7581593549dbce20dfb69d687d79a972f7928f6ca1920ef5385bceb737a3d5292ab6d937ed8c67bb59771e80e88f530b78734fe7d155f833e32b
- languageName: node
- linkType: hard
-
-"mdast-util-phrasing@npm:^4.0.0":
- version: 4.1.0
- resolution: "mdast-util-phrasing@npm:4.1.0"
- dependencies:
- "@types/mdast": "npm:^4.0.0"
- unist-util-is: "npm:^6.0.0"
- checksum: 10c0/bf6c31d51349aa3d74603d5e5a312f59f3f65662ed16c58017169a5fb0f84ca98578f626c5ee9e4aa3e0a81c996db8717096705521bddb4a0185f98c12c9b42f
- languageName: node
- linkType: hard
-
-"mdast-util-to-hast@npm:^12.1.0":
- version: 12.3.0
- resolution: "mdast-util-to-hast@npm:12.3.0"
- dependencies:
- "@types/hast": "npm:^2.0.0"
- "@types/mdast": "npm:^3.0.0"
- mdast-util-definitions: "npm:^5.0.0"
- micromark-util-sanitize-uri: "npm:^1.1.0"
- trim-lines: "npm:^3.0.0"
- unist-util-generated: "npm:^2.0.0"
- unist-util-position: "npm:^4.0.0"
- unist-util-visit: "npm:^4.0.0"
- checksum: 10c0/0753e45bfcce423f7a13979ac720a23ed8d6bafed174c387f43bbe8baf3838f3a043cd8006975b71e5c4068b7948f83f1348acea79801101af31eaec4e7a499a
- languageName: node
- linkType: hard
-
-"mdast-util-to-hast@npm:^13.0.0":
- version: 13.2.0
- resolution: "mdast-util-to-hast@npm:13.2.0"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- "@types/mdast": "npm:^4.0.0"
- "@ungap/structured-clone": "npm:^1.0.0"
- devlop: "npm:^1.0.0"
- micromark-util-sanitize-uri: "npm:^2.0.0"
- trim-lines: "npm:^3.0.0"
- unist-util-position: "npm:^5.0.0"
- unist-util-visit: "npm:^5.0.0"
- vfile: "npm:^6.0.0"
- checksum: 10c0/9ee58def9287df8350cbb6f83ced90f9c088d72d4153780ad37854f87144cadc6f27b20347073b285173b1649b0723ddf0b9c78158608a804dcacb6bda6e1816
- languageName: node
- linkType: hard
-
-"mdast-util-to-markdown@npm:^1.0.0, mdast-util-to-markdown@npm:^1.3.0":
- version: 1.5.0
- resolution: "mdast-util-to-markdown@npm:1.5.0"
- dependencies:
- "@types/mdast": "npm:^3.0.0"
- "@types/unist": "npm:^2.0.0"
- longest-streak: "npm:^3.0.0"
- mdast-util-phrasing: "npm:^3.0.0"
- mdast-util-to-string: "npm:^3.0.0"
- micromark-util-decode-string: "npm:^1.0.0"
- unist-util-visit: "npm:^4.0.0"
- zwitch: "npm:^2.0.0"
- checksum: 10c0/9831d14aa6c097750a90c7b87b4e814b040731c30606a794c9b136dc746633dd9ec07154ca97d4fec4eaf732cf89d14643424e2581732d6ee18c9b0e51ff7664
- languageName: node
- linkType: hard
-
-"mdast-util-to-markdown@npm:^2.0.0":
- version: 2.1.2
- resolution: "mdast-util-to-markdown@npm:2.1.2"
- dependencies:
- "@types/mdast": "npm:^4.0.0"
- "@types/unist": "npm:^3.0.0"
- longest-streak: "npm:^3.0.0"
- mdast-util-phrasing: "npm:^4.0.0"
- mdast-util-to-string: "npm:^4.0.0"
- micromark-util-classify-character: "npm:^2.0.0"
- micromark-util-decode-string: "npm:^2.0.0"
- unist-util-visit: "npm:^5.0.0"
- zwitch: "npm:^2.0.0"
- checksum: 10c0/4649722a6099f12e797bd8d6469b2b43b44e526b5182862d9c7766a3431caad2c0112929c538a972f214e63c015395e5d3f54bd81d9ac1b16e6d8baaf582f749
- languageName: node
- linkType: hard
-
-"mdast-util-to-string@npm:^3.0.0, mdast-util-to-string@npm:^3.1.0":
- version: 3.2.0
- resolution: "mdast-util-to-string@npm:3.2.0"
- dependencies:
- "@types/mdast": "npm:^3.0.0"
- checksum: 10c0/112f4bf0f6758dcb95deffdcf37afba7eaecdfe2ee13252de031723094d4d55220e147326690a8b91244758e2d678e7aeb1fdd0fa6ef3317c979bc42effd9a21
- languageName: node
- linkType: hard
-
-"mdast-util-to-string@npm:^4.0.0":
- version: 4.0.0
- resolution: "mdast-util-to-string@npm:4.0.0"
- dependencies:
- "@types/mdast": "npm:^4.0.0"
- checksum: 10c0/2d3c1af29bf3fe9c20f552ee9685af308002488f3b04b12fa66652c9718f66f41a32f8362aa2d770c3ff464c034860b41715902ada2306bb0a055146cef064d7
- languageName: node
- linkType: hard
-
-"merge2@npm:^1.3.0, merge2@npm:^1.4.1":
- version: 1.4.1
- resolution: "merge2@npm:1.4.1"
- checksum: 10c0/254a8a4605b58f450308fc474c82ac9a094848081bf4c06778200207820e5193726dc563a0d2c16468810516a5c97d9d3ea0ca6585d23c58ccfff2403e8dbbeb
- languageName: node
- linkType: hard
-
-"mermaid@npm:^10.2.2":
- version: 10.9.3
- resolution: "mermaid@npm:10.9.3"
- dependencies:
- "@braintree/sanitize-url": "npm:^6.0.1"
- "@types/d3-scale": "npm:^4.0.3"
- "@types/d3-scale-chromatic": "npm:^3.0.0"
- cytoscape: "npm:^3.28.1"
- cytoscape-cose-bilkent: "npm:^4.1.0"
- d3: "npm:^7.4.0"
- d3-sankey: "npm:^0.12.3"
- dagre-d3-es: "npm:7.0.10"
- dayjs: "npm:^1.11.7"
- dompurify: "npm:^3.0.5 <3.1.7"
- elkjs: "npm:^0.9.0"
- katex: "npm:^0.16.9"
- khroma: "npm:^2.0.0"
- lodash-es: "npm:^4.17.21"
- mdast-util-from-markdown: "npm:^1.3.0"
- non-layered-tidy-tree-layout: "npm:^2.0.2"
- stylis: "npm:^4.1.3"
- ts-dedent: "npm:^2.2.0"
- uuid: "npm:^9.0.0"
- web-worker: "npm:^1.2.0"
- checksum: 10c0/5f60222b34f4d27f18575f95a428e80135f0bbb3c1aade8de65e8d6c30a4f28a22f0547fcdb01d9bfcad95715631e8dc84017b7dd297bbb292ff3465dc887a16
- languageName: node
- linkType: hard
-
-"mermaid@npm:^11.9.0":
- version: 11.9.0
- resolution: "mermaid@npm:11.9.0"
- dependencies:
- "@braintree/sanitize-url": "npm:^7.0.4"
- "@iconify/utils": "npm:^2.1.33"
- "@mermaid-js/parser": "npm:^0.6.2"
- "@types/d3": "npm:^7.4.3"
- cytoscape: "npm:^3.29.3"
- cytoscape-cose-bilkent: "npm:^4.1.0"
- cytoscape-fcose: "npm:^2.2.0"
- d3: "npm:^7.9.0"
- d3-sankey: "npm:^0.12.3"
- dagre-d3-es: "npm:7.0.11"
- dayjs: "npm:^1.11.13"
- dompurify: "npm:^3.2.5"
- katex: "npm:^0.16.22"
- khroma: "npm:^2.1.0"
- lodash-es: "npm:^4.17.21"
- marked: "npm:^16.0.0"
- roughjs: "npm:^4.6.6"
- stylis: "npm:^4.3.6"
- ts-dedent: "npm:^2.2.0"
- uuid: "npm:^11.1.0"
- checksum: 10c0/f3420d0fd8919b31e36354cbf0ddd26398898c960e0bcb0e52aceae657245fcf1e5fe3e28651bff83c9b1fb8b6d3e07fc8b26d111ef3159fcf780d53ce40a437
- languageName: node
- linkType: hard
-
-"micromark-core-commonmark@npm:^1.0.0, micromark-core-commonmark@npm:^1.0.1":
- version: 1.1.0
- resolution: "micromark-core-commonmark@npm:1.1.0"
- dependencies:
- decode-named-character-reference: "npm:^1.0.0"
- micromark-factory-destination: "npm:^1.0.0"
- micromark-factory-label: "npm:^1.0.0"
- micromark-factory-space: "npm:^1.0.0"
- micromark-factory-title: "npm:^1.0.0"
- micromark-factory-whitespace: "npm:^1.0.0"
- micromark-util-character: "npm:^1.0.0"
- micromark-util-chunked: "npm:^1.0.0"
- micromark-util-classify-character: "npm:^1.0.0"
- micromark-util-html-tag-name: "npm:^1.0.0"
- micromark-util-normalize-identifier: "npm:^1.0.0"
- micromark-util-resolve-all: "npm:^1.0.0"
- micromark-util-subtokenize: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.1"
- uvu: "npm:^0.5.0"
- checksum: 10c0/b3bf7b7004ce7dbb3ae151dcca4db1d12546f1b943affb2418da4b90b9ce59357373c433ee2eea4c868aee0791dafa355aeed19f5ef2b0acaf271f32f1ecbe6a
- languageName: node
- linkType: hard
-
-"micromark-core-commonmark@npm:^2.0.0":
- version: 2.0.3
- resolution: "micromark-core-commonmark@npm:2.0.3"
- dependencies:
- decode-named-character-reference: "npm:^1.0.0"
- devlop: "npm:^1.0.0"
- micromark-factory-destination: "npm:^2.0.0"
- micromark-factory-label: "npm:^2.0.0"
- micromark-factory-space: "npm:^2.0.0"
- micromark-factory-title: "npm:^2.0.0"
- micromark-factory-whitespace: "npm:^2.0.0"
- micromark-util-character: "npm:^2.0.0"
- micromark-util-chunked: "npm:^2.0.0"
- micromark-util-classify-character: "npm:^2.0.0"
- micromark-util-html-tag-name: "npm:^2.0.0"
- micromark-util-normalize-identifier: "npm:^2.0.0"
- micromark-util-resolve-all: "npm:^2.0.0"
- micromark-util-subtokenize: "npm:^2.0.0"
- micromark-util-symbol: "npm:^2.0.0"
- micromark-util-types: "npm:^2.0.0"
- checksum: 10c0/bd4a794fdc9e88dbdf59eaf1c507ddf26e5f7ddf4e52566c72239c0f1b66adbcd219ba2cd42350debbe24471434d5f5e50099d2b3f4e5762ca222ba8e5b549ee
- languageName: node
- linkType: hard
-
-"micromark-extension-gfm-autolink-literal@npm:^1.0.0":
- version: 1.0.5
- resolution: "micromark-extension-gfm-autolink-literal@npm:1.0.5"
- dependencies:
- micromark-util-character: "npm:^1.0.0"
- micromark-util-sanitize-uri: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- checksum: 10c0/4964a52605ac36d24501d427e2d173fa39b5e0402275cb45068eba4898f4cb9cc57f7007b21b7514f0ab5f7b371b1701a5156a10b6ac8e77a7f36e830cf481d4
- languageName: node
- linkType: hard
-
-"micromark-extension-gfm-autolink-literal@npm:^2.0.0":
- version: 2.1.0
- resolution: "micromark-extension-gfm-autolink-literal@npm:2.1.0"
- dependencies:
- micromark-util-character: "npm:^2.0.0"
- micromark-util-sanitize-uri: "npm:^2.0.0"
- micromark-util-symbol: "npm:^2.0.0"
- micromark-util-types: "npm:^2.0.0"
- checksum: 10c0/84e6fbb84ea7c161dfa179665dc90d51116de4c28f3e958260c0423e5a745372b7dcbc87d3cde98213b532e6812f847eef5ae561c9397d7f7da1e59872ef3efe
- languageName: node
- linkType: hard
-
-"micromark-extension-gfm-footnote@npm:^1.0.0":
- version: 1.1.2
- resolution: "micromark-extension-gfm-footnote@npm:1.1.2"
- dependencies:
- micromark-core-commonmark: "npm:^1.0.0"
- micromark-factory-space: "npm:^1.0.0"
- micromark-util-character: "npm:^1.0.0"
- micromark-util-normalize-identifier: "npm:^1.0.0"
- micromark-util-sanitize-uri: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- uvu: "npm:^0.5.0"
- checksum: 10c0/b8090876cc3da5436c6253b0b40e39ceaa470c2429f699c19ee4163cef3102c4cd16c4ac2ec8caf916037fad310cfb52a9ef182c75d50fca7419ba08faad9b39
- languageName: node
- linkType: hard
-
-"micromark-extension-gfm-footnote@npm:^2.0.0":
- version: 2.1.0
- resolution: "micromark-extension-gfm-footnote@npm:2.1.0"
- dependencies:
- devlop: "npm:^1.0.0"
- micromark-core-commonmark: "npm:^2.0.0"
- micromark-factory-space: "npm:^2.0.0"
- micromark-util-character: "npm:^2.0.0"
- micromark-util-normalize-identifier: "npm:^2.0.0"
- micromark-util-sanitize-uri: "npm:^2.0.0"
- micromark-util-symbol: "npm:^2.0.0"
- micromark-util-types: "npm:^2.0.0"
- checksum: 10c0/d172e4218968b7371b9321af5cde8c77423f73b233b2b0fcf3ff6fd6f61d2e0d52c49123a9b7910612478bf1f0d5e88c75a3990dd68f70f3933fe812b9f77edc
- languageName: node
- linkType: hard
-
-"micromark-extension-gfm-strikethrough@npm:^1.0.0":
- version: 1.0.7
- resolution: "micromark-extension-gfm-strikethrough@npm:1.0.7"
- dependencies:
- micromark-util-chunked: "npm:^1.0.0"
- micromark-util-classify-character: "npm:^1.0.0"
- micromark-util-resolve-all: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- uvu: "npm:^0.5.0"
- checksum: 10c0/b45fe93a7a412fc44bae7a183b92a988e17b49ed9d683bd80ee4dde96d462e1ca6b316dd64bda7759e4086d6d8686790a711e53c244f1f4d2b37e1cfe852884d
- languageName: node
- linkType: hard
-
-"micromark-extension-gfm-strikethrough@npm:^2.0.0":
- version: 2.1.0
- resolution: "micromark-extension-gfm-strikethrough@npm:2.1.0"
- dependencies:
- devlop: "npm:^1.0.0"
- micromark-util-chunked: "npm:^2.0.0"
- micromark-util-classify-character: "npm:^2.0.0"
- micromark-util-resolve-all: "npm:^2.0.0"
- micromark-util-symbol: "npm:^2.0.0"
- micromark-util-types: "npm:^2.0.0"
- checksum: 10c0/ef4f248b865bdda71303b494671b7487808a340b25552b11ca6814dff3fcfaab9be8d294643060bbdb50f79313e4a686ab18b99cbe4d3ee8a4170fcd134234fb
- languageName: node
- linkType: hard
-
-"micromark-extension-gfm-table@npm:^1.0.0":
- version: 1.0.7
- resolution: "micromark-extension-gfm-table@npm:1.0.7"
- dependencies:
- micromark-factory-space: "npm:^1.0.0"
- micromark-util-character: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- uvu: "npm:^0.5.0"
- checksum: 10c0/38b5af80ecab8206845a057338235bee6f47fb6cb904208be4b76e87906765821683e25bef85dfa485809f931eaf8cd55f16cd2f4d6e33b84f56edfaf1dfb129
- languageName: node
- linkType: hard
-
-"micromark-extension-gfm-table@npm:^2.0.0":
- version: 2.1.1
- resolution: "micromark-extension-gfm-table@npm:2.1.1"
- dependencies:
- devlop: "npm:^1.0.0"
- micromark-factory-space: "npm:^2.0.0"
- micromark-util-character: "npm:^2.0.0"
- micromark-util-symbol: "npm:^2.0.0"
- micromark-util-types: "npm:^2.0.0"
- checksum: 10c0/04bc00e19b435fa0add62cd029d8b7eb6137522f77832186b1d5ef34544a9bd030c9cf85e92ddfcc5c31f6f0a58a43d4b96dba4fc21316037c734630ee12c912
- languageName: node
- linkType: hard
-
-"micromark-extension-gfm-tagfilter@npm:^1.0.0":
- version: 1.0.2
- resolution: "micromark-extension-gfm-tagfilter@npm:1.0.2"
- dependencies:
- micromark-util-types: "npm:^1.0.0"
- checksum: 10c0/7e1bf278255cf2a8d2dda9de84bc238b39c53100e25ba8d7168220d5b00dc74869a6cb038fbf2e76b8ae89efc66906762311797a906d7d9cdd71e07bfe1ed505
- languageName: node
- linkType: hard
-
-"micromark-extension-gfm-tagfilter@npm:^2.0.0":
- version: 2.0.0
- resolution: "micromark-extension-gfm-tagfilter@npm:2.0.0"
- dependencies:
- micromark-util-types: "npm:^2.0.0"
- checksum: 10c0/995558843fff137ae4e46aecb878d8a4691cdf23527dcf1e2f0157d66786be9f7bea0109c52a8ef70e68e3f930af811828ba912239438e31a9cfb9981f44d34d
- languageName: node
- linkType: hard
-
-"micromark-extension-gfm-task-list-item@npm:^1.0.0":
- version: 1.0.5
- resolution: "micromark-extension-gfm-task-list-item@npm:1.0.5"
- dependencies:
- micromark-factory-space: "npm:^1.0.0"
- micromark-util-character: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- uvu: "npm:^0.5.0"
- checksum: 10c0/2179742fa2cbb243cc06bd9e43fbb94cd98e4814c9d368ddf8b4b5afa0348023f335626ae955e89d679e2c2662a7f82c315117a3b060c87bdb4420fee5a219d1
- languageName: node
- linkType: hard
-
-"micromark-extension-gfm-task-list-item@npm:^2.0.0":
- version: 2.1.0
- resolution: "micromark-extension-gfm-task-list-item@npm:2.1.0"
- dependencies:
- devlop: "npm:^1.0.0"
- micromark-factory-space: "npm:^2.0.0"
- micromark-util-character: "npm:^2.0.0"
- micromark-util-symbol: "npm:^2.0.0"
- micromark-util-types: "npm:^2.0.0"
- checksum: 10c0/78aa537d929e9309f076ba41e5edc99f78d6decd754b6734519ccbbfca8abd52e1c62df68d41a6ae64d2a3fc1646cea955893c79680b0b4385ced4c52296181f
- languageName: node
- linkType: hard
-
-"micromark-extension-gfm@npm:^2.0.0":
- version: 2.0.3
- resolution: "micromark-extension-gfm@npm:2.0.3"
- dependencies:
- micromark-extension-gfm-autolink-literal: "npm:^1.0.0"
- micromark-extension-gfm-footnote: "npm:^1.0.0"
- micromark-extension-gfm-strikethrough: "npm:^1.0.0"
- micromark-extension-gfm-table: "npm:^1.0.0"
- micromark-extension-gfm-tagfilter: "npm:^1.0.0"
- micromark-extension-gfm-task-list-item: "npm:^1.0.0"
- micromark-util-combine-extensions: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- checksum: 10c0/53056376d14caf3fab2cc44881c1ad49d975776cc2267bca74abda2cb31f2a77ec0fb2bdb2dd97565f0d9943ad915ff192b89c1cee5d9d727569a5e38505799b
- languageName: node
- linkType: hard
-
-"micromark-extension-gfm@npm:^3.0.0":
- version: 3.0.0
- resolution: "micromark-extension-gfm@npm:3.0.0"
- dependencies:
- micromark-extension-gfm-autolink-literal: "npm:^2.0.0"
- micromark-extension-gfm-footnote: "npm:^2.0.0"
- micromark-extension-gfm-strikethrough: "npm:^2.0.0"
- micromark-extension-gfm-table: "npm:^2.0.0"
- micromark-extension-gfm-tagfilter: "npm:^2.0.0"
- micromark-extension-gfm-task-list-item: "npm:^2.0.0"
- micromark-util-combine-extensions: "npm:^2.0.0"
- micromark-util-types: "npm:^2.0.0"
- checksum: 10c0/970e28df6ebdd7c7249f52a0dda56e0566fbfa9ae56c8eeeb2445d77b6b89d44096880cd57a1c01e7821b1f4e31009109fbaca4e89731bff7b83b8519690e5d9
- languageName: node
- linkType: hard
-
-"micromark-extension-math@npm:^2.0.0":
- version: 2.1.2
- resolution: "micromark-extension-math@npm:2.1.2"
- dependencies:
- "@types/katex": "npm:^0.16.0"
- katex: "npm:^0.16.0"
- micromark-factory-space: "npm:^1.0.0"
- micromark-util-character: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- uvu: "npm:^0.5.0"
- checksum: 10c0/5d40ffc93862498cbcbc9c96a40a05150b878c3d86ab25bc771dec005d286f4381578ccee3f421ecfd9db259298a89a37a5b6b48529842240d34f8acd8edffb5
- languageName: node
- linkType: hard
-
-"micromark-extension-mdx-expression@npm:^1.0.0":
- version: 1.0.8
- resolution: "micromark-extension-mdx-expression@npm:1.0.8"
- dependencies:
- "@types/estree": "npm:^1.0.0"
- micromark-factory-mdx-expression: "npm:^1.0.0"
- micromark-factory-space: "npm:^1.0.0"
- micromark-util-character: "npm:^1.0.0"
- micromark-util-events-to-acorn: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- uvu: "npm:^0.5.0"
- checksum: 10c0/99e2997a54caafc4258979c0591b3fe8e31018079df833d559768092fec41e57a71225d423f4179cea4e8bc1af2f52f5c9ae640673619d8fe142ded875240da3
- languageName: node
- linkType: hard
-
-"micromark-extension-mdx-jsx@npm:^1.0.0":
- version: 1.0.5
- resolution: "micromark-extension-mdx-jsx@npm:1.0.5"
- dependencies:
- "@types/acorn": "npm:^4.0.0"
- "@types/estree": "npm:^1.0.0"
- estree-util-is-identifier-name: "npm:^2.0.0"
- micromark-factory-mdx-expression: "npm:^1.0.0"
- micromark-factory-space: "npm:^1.0.0"
- micromark-util-character: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- uvu: "npm:^0.5.0"
- vfile-message: "npm:^3.0.0"
- checksum: 10c0/1b4bfbe60b9cabfabfb870f70ded8da0caacbaa3be6bdf07f6db25cc5a14c6bc970c34c60e5c80da1e97766064a117feb8160b6d661d69e530a4cc7ec97305de
- languageName: node
- linkType: hard
-
-"micromark-extension-mdx-md@npm:^1.0.0":
- version: 1.0.1
- resolution: "micromark-extension-mdx-md@npm:1.0.1"
- dependencies:
- micromark-util-types: "npm:^1.0.0"
- checksum: 10c0/9ad70b3a5e842fd7ebd93c8c48a32fd3d05fe77be06a08ef32462ea53e97d8f297e2c1c4b30a6929dbd05125279fe98bb04e9cc0bb686c691bdcf7d36c6e51b0
- languageName: node
- linkType: hard
-
-"micromark-extension-mdxjs-esm@npm:^1.0.0":
- version: 1.0.5
- resolution: "micromark-extension-mdxjs-esm@npm:1.0.5"
- dependencies:
- "@types/estree": "npm:^1.0.0"
- micromark-core-commonmark: "npm:^1.0.0"
- micromark-util-character: "npm:^1.0.0"
- micromark-util-events-to-acorn: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- unist-util-position-from-estree: "npm:^1.1.0"
- uvu: "npm:^0.5.0"
- vfile-message: "npm:^3.0.0"
- checksum: 10c0/612028bced78e882641a43c78fc4813a573b383dc0a7b90db75ed88b37bf5b5997dc7ead4a1011315b34f17bc76b7f4419de6ad9532a088102ab1eea0245d380
- languageName: node
- linkType: hard
-
-"micromark-extension-mdxjs@npm:^1.0.0":
- version: 1.0.1
- resolution: "micromark-extension-mdxjs@npm:1.0.1"
- dependencies:
- acorn: "npm:^8.0.0"
- acorn-jsx: "npm:^5.0.0"
- micromark-extension-mdx-expression: "npm:^1.0.0"
- micromark-extension-mdx-jsx: "npm:^1.0.0"
- micromark-extension-mdx-md: "npm:^1.0.0"
- micromark-extension-mdxjs-esm: "npm:^1.0.0"
- micromark-util-combine-extensions: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- checksum: 10c0/3f123e4afea9674c96934c9ea6a057ec9e5584992c50c36c173a2e331d272b1f4e2a8552364a0e2cb50703d0218831fdae1a17b563f0009aac6a35350e6a7b77
- languageName: node
- linkType: hard
-
-"micromark-factory-destination@npm:^1.0.0":
- version: 1.1.0
- resolution: "micromark-factory-destination@npm:1.1.0"
- dependencies:
- micromark-util-character: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- checksum: 10c0/71ebd9089bf0c9689b98ef42215c04032ae2701ae08c3546b663628553255dca18e5310dbdacddad3acd8de4f12a789835fff30dadc4da3c4e30387a75e6b488
- languageName: node
- linkType: hard
-
-"micromark-factory-destination@npm:^2.0.0":
- version: 2.0.1
- resolution: "micromark-factory-destination@npm:2.0.1"
- dependencies:
- micromark-util-character: "npm:^2.0.0"
- micromark-util-symbol: "npm:^2.0.0"
- micromark-util-types: "npm:^2.0.0"
- checksum: 10c0/bbafcf869cee5bf511161354cb87d61c142592fbecea051000ff116068dc85216e6d48519d147890b9ea5d7e2864a6341c0c09d9948c203bff624a80a476023c
- languageName: node
- linkType: hard
-
-"micromark-factory-label@npm:^1.0.0":
- version: 1.1.0
- resolution: "micromark-factory-label@npm:1.1.0"
- dependencies:
- micromark-util-character: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- uvu: "npm:^0.5.0"
- checksum: 10c0/5e2cd2d8214bb92a34dfcedf9c7aecf565e3648650a3a6a0495ededf15f2318dd214dc069e3026402792cd5839d395313f8ef9c2e86ca34a8facaa0f75a77753
- languageName: node
- linkType: hard
-
-"micromark-factory-label@npm:^2.0.0":
- version: 2.0.1
- resolution: "micromark-factory-label@npm:2.0.1"
- dependencies:
- devlop: "npm:^1.0.0"
- micromark-util-character: "npm:^2.0.0"
- micromark-util-symbol: "npm:^2.0.0"
- micromark-util-types: "npm:^2.0.0"
- checksum: 10c0/0137716b4ecb428114165505e94a2f18855c8bbea21b07a8b5ce514b32a595ed789d2b967125718fc44c4197ceaa48f6609d58807a68e778138d2e6b91b824e8
- languageName: node
- linkType: hard
-
-"micromark-factory-mdx-expression@npm:^1.0.0":
- version: 1.0.9
- resolution: "micromark-factory-mdx-expression@npm:1.0.9"
- dependencies:
- "@types/estree": "npm:^1.0.0"
- micromark-util-character: "npm:^1.0.0"
- micromark-util-events-to-acorn: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- unist-util-position-from-estree: "npm:^1.0.0"
- uvu: "npm:^0.5.0"
- vfile-message: "npm:^3.0.0"
- checksum: 10c0/b28bd8e072f37ca91446fe8d113e4ae64baaef013b0cde4aa224add0ee40963ce3584b9709f7662d30491f875ae7104b897d37efa26cdaecf25082ed5bac7b8c
- languageName: node
- linkType: hard
-
-"micromark-factory-space@npm:^1.0.0":
- version: 1.1.0
- resolution: "micromark-factory-space@npm:1.1.0"
- dependencies:
- micromark-util-character: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- checksum: 10c0/3da81187ce003dd4178c7adc4674052fb8befc8f1a700ae4c8227755f38581a4ae963866dc4857488d62d1dc9837606c9f2f435fa1332f62a0f1c49b83c6a822
- languageName: node
- linkType: hard
-
-"micromark-factory-space@npm:^2.0.0":
- version: 2.0.1
- resolution: "micromark-factory-space@npm:2.0.1"
- dependencies:
- micromark-util-character: "npm:^2.0.0"
- micromark-util-types: "npm:^2.0.0"
- checksum: 10c0/f9ed43f1c0652d8d898de0ac2be3f77f776fffe7dd96bdbba1e02d7ce33d3853c6ff5daa52568fc4fa32cdf3a62d86b85ead9b9189f7211e1d69ff2163c450fb
- languageName: node
- linkType: hard
-
-"micromark-factory-title@npm:^1.0.0":
- version: 1.1.0
- resolution: "micromark-factory-title@npm:1.1.0"
- dependencies:
- micromark-factory-space: "npm:^1.0.0"
- micromark-util-character: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- checksum: 10c0/cf8c687d1d5c3928846a4791d4a7e2f1d7bdd2397051e20d60f06b7565a48bf85198ab6f85735e997ab3f0cbb80b8b6391f4f7ebc0aae2f2f8c3a08541257bf6
- languageName: node
- linkType: hard
-
-"micromark-factory-title@npm:^2.0.0":
- version: 2.0.1
- resolution: "micromark-factory-title@npm:2.0.1"
- dependencies:
- micromark-factory-space: "npm:^2.0.0"
- micromark-util-character: "npm:^2.0.0"
- micromark-util-symbol: "npm:^2.0.0"
- micromark-util-types: "npm:^2.0.0"
- checksum: 10c0/e72fad8d6e88823514916890099a5af20b6a9178ccf78e7e5e05f4de99bb8797acb756257d7a3a57a53854cb0086bf8aab15b1a9e9db8982500dd2c9ff5948b6
- languageName: node
- linkType: hard
-
-"micromark-factory-whitespace@npm:^1.0.0":
- version: 1.1.0
- resolution: "micromark-factory-whitespace@npm:1.1.0"
- dependencies:
- micromark-factory-space: "npm:^1.0.0"
- micromark-util-character: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- checksum: 10c0/7248cc4534f9befb38c6f398b6e38efd3199f1428fc214c9cb7ed5b6e9fa7a82c0d8cdfa9bcacde62887c9a7c8c46baf5c318b2ae8f701afbccc8ad702e92dce
- languageName: node
- linkType: hard
-
-"micromark-factory-whitespace@npm:^2.0.0":
- version: 2.0.1
- resolution: "micromark-factory-whitespace@npm:2.0.1"
- dependencies:
- micromark-factory-space: "npm:^2.0.0"
- micromark-util-character: "npm:^2.0.0"
- micromark-util-symbol: "npm:^2.0.0"
- micromark-util-types: "npm:^2.0.0"
- checksum: 10c0/20a1ec58698f24b766510a309b23a10175034fcf1551eaa9da3adcbed3e00cd53d1ebe5f030cf873f76a1cec3c34eb8c50cc227be3344caa9ed25d56cf611224
- languageName: node
- linkType: hard
-
-"micromark-util-character@npm:^1.0.0":
- version: 1.2.0
- resolution: "micromark-util-character@npm:1.2.0"
- dependencies:
- micromark-util-symbol: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- checksum: 10c0/3390a675a50731b58a8e5493cd802e190427f10fa782079b455b00f6b54e406e36882df7d4a3bd32b709f7a2c3735b4912597ebc1c0a99566a8d8d0b816e2cd4
- languageName: node
- linkType: hard
-
-"micromark-util-character@npm:^2.0.0":
- version: 2.1.1
- resolution: "micromark-util-character@npm:2.1.1"
- dependencies:
- micromark-util-symbol: "npm:^2.0.0"
- micromark-util-types: "npm:^2.0.0"
- checksum: 10c0/d3fe7a5e2c4060fc2a076f9ce699c82a2e87190a3946e1e5eea77f563869b504961f5668d9c9c014724db28ac32fa909070ea8b30c3a39bd0483cc6c04cc76a1
- languageName: node
- linkType: hard
-
-"micromark-util-chunked@npm:^1.0.0":
- version: 1.1.0
- resolution: "micromark-util-chunked@npm:1.1.0"
- dependencies:
- micromark-util-symbol: "npm:^1.0.0"
- checksum: 10c0/59534cf4aaf481ed58d65478d00eae0080df9b5816673f79b5ddb0cea263e5a9ee9cbb6cc565daf1eb3c8c4ff86fc4e25d38a0577539655cda823a4249efd358
- languageName: node
- linkType: hard
-
-"micromark-util-chunked@npm:^2.0.0":
- version: 2.0.1
- resolution: "micromark-util-chunked@npm:2.0.1"
- dependencies:
- micromark-util-symbol: "npm:^2.0.0"
- checksum: 10c0/b68c0c16fe8106949537bdcfe1be9cf36c0ccd3bc54c4007003cb0984c3750b6cdd0fd77d03f269a3382b85b0de58bde4f6eedbe7ecdf7244759112289b1ab56
- languageName: node
- linkType: hard
-
-"micromark-util-classify-character@npm:^1.0.0":
- version: 1.1.0
- resolution: "micromark-util-classify-character@npm:1.1.0"
- dependencies:
- micromark-util-character: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- checksum: 10c0/3266453dc0fdaf584e24c9b3c91d1ed180f76b5856699c51fd2549305814fcab7ec52afb4d3e83d002a9115cd2d2b2ffdc9c0b38ed85120822bf515cc00636ec
- languageName: node
- linkType: hard
-
-"micromark-util-classify-character@npm:^2.0.0":
- version: 2.0.1
- resolution: "micromark-util-classify-character@npm:2.0.1"
- dependencies:
- micromark-util-character: "npm:^2.0.0"
- micromark-util-symbol: "npm:^2.0.0"
- micromark-util-types: "npm:^2.0.0"
- checksum: 10c0/8a02e59304005c475c332f581697e92e8c585bcd45d5d225a66c1c1b14ab5a8062705188c2ccec33cc998d33502514121478b2091feddbc751887fc9c290ed08
- languageName: node
- linkType: hard
-
-"micromark-util-combine-extensions@npm:^1.0.0":
- version: 1.1.0
- resolution: "micromark-util-combine-extensions@npm:1.1.0"
- dependencies:
- micromark-util-chunked: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- checksum: 10c0/0bc572fab3fe77f533c29aa1b75cb847b9fc9455f67a98623ef9740b925c0b0426ad9f09bbb56f1e844ea9ebada7873d1f06d27f7c979a917692b273c4b69e31
- languageName: node
- linkType: hard
-
-"micromark-util-combine-extensions@npm:^2.0.0":
- version: 2.0.1
- resolution: "micromark-util-combine-extensions@npm:2.0.1"
- dependencies:
- micromark-util-chunked: "npm:^2.0.0"
- micromark-util-types: "npm:^2.0.0"
- checksum: 10c0/f15e282af24c8372cbb10b9b0b3e2c0aa681fea0ca323a44d6bc537dc1d9382c819c3689f14eaa000118f5a163245358ce6276b2cda9a84439cdb221f5d86ae7
- languageName: node
- linkType: hard
-
-"micromark-util-decode-numeric-character-reference@npm:^1.0.0":
- version: 1.1.0
- resolution: "micromark-util-decode-numeric-character-reference@npm:1.1.0"
- dependencies:
- micromark-util-symbol: "npm:^1.0.0"
- checksum: 10c0/64ef2575e3fc2426976c19e16973348f20b59ddd5543f1467ac2e251f29e0a91f12089703d29ae985b0b9a408ee0d72f06d04ed3920811aa2402aabca3bdf9e4
- languageName: node
- linkType: hard
-
-"micromark-util-decode-numeric-character-reference@npm:^2.0.0":
- version: 2.0.2
- resolution: "micromark-util-decode-numeric-character-reference@npm:2.0.2"
- dependencies:
- micromark-util-symbol: "npm:^2.0.0"
- checksum: 10c0/9c8a9f2c790e5593ffe513901c3a110e9ec8882a08f466da014112a25e5059b51551ca0aeb7ff494657d86eceb2f02ee556c6558b8d66aadc61eae4a240da0df
- languageName: node
- linkType: hard
-
-"micromark-util-decode-string@npm:^1.0.0":
- version: 1.1.0
- resolution: "micromark-util-decode-string@npm:1.1.0"
- dependencies:
- decode-named-character-reference: "npm:^1.0.0"
- micromark-util-character: "npm:^1.0.0"
- micromark-util-decode-numeric-character-reference: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- checksum: 10c0/757a0aaa5ad6c50c7480bd75371d407ac75f5022cd4404aba07adadf1448189502aea9bb7b2d09d25e18745e0abf72b95506b6beb184bcccabe919e48e3a5df7
- languageName: node
- linkType: hard
-
-"micromark-util-decode-string@npm:^2.0.0":
- version: 2.0.1
- resolution: "micromark-util-decode-string@npm:2.0.1"
- dependencies:
- decode-named-character-reference: "npm:^1.0.0"
- micromark-util-character: "npm:^2.0.0"
- micromark-util-decode-numeric-character-reference: "npm:^2.0.0"
- micromark-util-symbol: "npm:^2.0.0"
- checksum: 10c0/f24d75b2e5310be6e7b6dee532e0d17d3bf46996841d6295f2a9c87a2046fff4ab603c52ab9d7a7a6430a8b787b1574ae895849c603d262d1b22eef71736b5cb
- languageName: node
- linkType: hard
-
-"micromark-util-encode@npm:^1.0.0":
- version: 1.1.0
- resolution: "micromark-util-encode@npm:1.1.0"
- checksum: 10c0/9878c9bc96999d45626a7597fffac85348ea842dce75d2417345cbf070a9941c62477bd0963bef37d4f0fd29f2982be6ddf416d62806f00ccb334af9d6ee87e7
- languageName: node
- linkType: hard
-
-"micromark-util-encode@npm:^2.0.0":
- version: 2.0.1
- resolution: "micromark-util-encode@npm:2.0.1"
- checksum: 10c0/b2b29f901093845da8a1bf997ea8b7f5e061ffdba85070dfe14b0197c48fda64ffcf82bfe53c90cf9dc185e69eef8c5d41cae3ba918b96bc279326921b59008a
- languageName: node
- linkType: hard
-
-"micromark-util-events-to-acorn@npm:^1.0.0":
- version: 1.2.3
- resolution: "micromark-util-events-to-acorn@npm:1.2.3"
- dependencies:
- "@types/acorn": "npm:^4.0.0"
- "@types/estree": "npm:^1.0.0"
- "@types/unist": "npm:^2.0.0"
- estree-util-visit: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- uvu: "npm:^0.5.0"
- vfile-message: "npm:^3.0.0"
- checksum: 10c0/cd3af7365806a0b22efb83cb7726cb835725c0bc22e04f7ea83f2f38a09e7132413eff6ab6d53652b969a7ec30e442731c3abbbe8a74dc2081c51fd10223c269
- languageName: node
- linkType: hard
-
-"micromark-util-html-tag-name@npm:^1.0.0":
- version: 1.2.0
- resolution: "micromark-util-html-tag-name@npm:1.2.0"
- checksum: 10c0/15421869678d36b4fe51df453921e8186bff514a14e9f79f32b7e1cdd67874e22a66ad34a7f048dd132cbbbfc7c382ae2f777a2bfd1f245a47705dc1c6d4f199
- languageName: node
- linkType: hard
-
-"micromark-util-html-tag-name@npm:^2.0.0":
- version: 2.0.1
- resolution: "micromark-util-html-tag-name@npm:2.0.1"
- checksum: 10c0/ae80444db786fde908e9295f19a27a4aa304171852c77414516418650097b8afb401961c9edb09d677b06e97e8370cfa65638dde8438ebd41d60c0a8678b85b9
- languageName: node
- linkType: hard
-
-"micromark-util-normalize-identifier@npm:^1.0.0":
- version: 1.1.0
- resolution: "micromark-util-normalize-identifier@npm:1.1.0"
- dependencies:
- micromark-util-symbol: "npm:^1.0.0"
- checksum: 10c0/a9657321a2392584e4d978061882117a84db7d2c2c1c052c0f5d25da089d463edb9f956d5beaf7f5768984b6f72d046d59b5972951ec7bf25397687a62b8278a
- languageName: node
- linkType: hard
-
-"micromark-util-normalize-identifier@npm:^2.0.0":
- version: 2.0.1
- resolution: "micromark-util-normalize-identifier@npm:2.0.1"
- dependencies:
- micromark-util-symbol: "npm:^2.0.0"
- checksum: 10c0/5299265fa360769fc499a89f40142f10a9d4a5c3dd8e6eac8a8ef3c2e4a6570e4c009cf75ea46dce5ee31c01f25587bde2f4a5cc0a935584ae86dd857f2babbd
- languageName: node
- linkType: hard
-
-"micromark-util-resolve-all@npm:^1.0.0":
- version: 1.1.0
- resolution: "micromark-util-resolve-all@npm:1.1.0"
- dependencies:
- micromark-util-types: "npm:^1.0.0"
- checksum: 10c0/b5c95484c06e87bbbb60d8430eb030a458733a5270409f4c67892d1274737087ca6a7ca888987430e57cf1dcd44bb16390d3b3936a2bf07f7534ec8f52ce43c9
- languageName: node
- linkType: hard
-
-"micromark-util-resolve-all@npm:^2.0.0":
- version: 2.0.1
- resolution: "micromark-util-resolve-all@npm:2.0.1"
- dependencies:
- micromark-util-types: "npm:^2.0.0"
- checksum: 10c0/bb6ca28764696bb479dc44a2d5b5fe003e7177aeae1d6b0d43f24cc223bab90234092d9c3ce4a4d2b8df095ccfd820537b10eb96bb7044d635f385d65a4c984a
- languageName: node
- linkType: hard
-
-"micromark-util-sanitize-uri@npm:^1.0.0, micromark-util-sanitize-uri@npm:^1.1.0":
- version: 1.2.0
- resolution: "micromark-util-sanitize-uri@npm:1.2.0"
- dependencies:
- micromark-util-character: "npm:^1.0.0"
- micromark-util-encode: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- checksum: 10c0/dbdb98248e9f0408c7a00f1c1cd805775b41d213defd659533835f34b38da38e8f990bf7b3f782e96bffbc549aec9c3ecdab197d4ad5adbfe08f814a70327b6e
- languageName: node
- linkType: hard
-
-"micromark-util-sanitize-uri@npm:^2.0.0":
- version: 2.0.1
- resolution: "micromark-util-sanitize-uri@npm:2.0.1"
- dependencies:
- micromark-util-character: "npm:^2.0.0"
- micromark-util-encode: "npm:^2.0.0"
- micromark-util-symbol: "npm:^2.0.0"
- checksum: 10c0/60e92166e1870fd4f1961468c2651013ff760617342918e0e0c3c4e872433aa2e60c1e5a672bfe5d89dc98f742d6b33897585cf86ae002cda23e905a3c02527c
- languageName: node
- linkType: hard
-
-"micromark-util-subtokenize@npm:^1.0.0":
- version: 1.1.0
- resolution: "micromark-util-subtokenize@npm:1.1.0"
- dependencies:
- micromark-util-chunked: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.0"
- uvu: "npm:^0.5.0"
- checksum: 10c0/f292b1b162845db50d36255c9d4c4c6d47931fbca3ac98a80c7e536d2163233fd662f8ca0479ee2b80f145c66a1394c7ed17dfce801439741211015e77e3901e
- languageName: node
- linkType: hard
-
-"micromark-util-subtokenize@npm:^2.0.0":
- version: 2.1.0
- resolution: "micromark-util-subtokenize@npm:2.1.0"
- dependencies:
- devlop: "npm:^1.0.0"
- micromark-util-chunked: "npm:^2.0.0"
- micromark-util-symbol: "npm:^2.0.0"
- micromark-util-types: "npm:^2.0.0"
- checksum: 10c0/bee69eece4393308e657c293ba80d92ebcb637e5f55e21dcf9c3fa732b91a8eda8ac248d76ff375e675175bfadeae4712e5158ef97eef1111789da1ce7ab5067
- languageName: node
- linkType: hard
-
-"micromark-util-symbol@npm:^1.0.0":
- version: 1.1.0
- resolution: "micromark-util-symbol@npm:1.1.0"
- checksum: 10c0/10ceaed33a90e6bfd3a5d57053dbb53f437d4809cc11430b5a09479c0ba601577059be9286df4a7eae6e350a60a2575dc9fa9d9872b5b8d058c875e075c33803
- languageName: node
- linkType: hard
-
-"micromark-util-symbol@npm:^2.0.0":
- version: 2.0.1
- resolution: "micromark-util-symbol@npm:2.0.1"
- checksum: 10c0/f2d1b207771e573232436618e78c5e46cd4b5c560dd4a6d63863d58018abbf49cb96ec69f7007471e51434c60de3c9268ef2bf46852f26ff4aacd10f9da16fe9
- languageName: node
- linkType: hard
-
-"micromark-util-types@npm:^1.0.0, micromark-util-types@npm:^1.0.1":
- version: 1.1.0
- resolution: "micromark-util-types@npm:1.1.0"
- checksum: 10c0/a9749cb0a12a252ff536baabcb7012421b6fad4d91a5fdd80d7b33dc7b4c22e2d0c4637dfe5b902d00247fe6c9b01f4a24fce6b572b16ccaa4da90e6ce2a11e4
- languageName: node
- linkType: hard
-
-"micromark-util-types@npm:^2.0.0":
- version: 2.0.2
- resolution: "micromark-util-types@npm:2.0.2"
- checksum: 10c0/c8c15b96c858db781c4393f55feec10004bf7df95487636c9a9f7209e51002a5cca6a047c5d2a5dc669ff92da20e57aaa881e81a268d9ccadb647f9dce305298
- languageName: node
- linkType: hard
-
-"micromark@npm:^3.0.0":
- version: 3.2.0
- resolution: "micromark@npm:3.2.0"
- dependencies:
- "@types/debug": "npm:^4.0.0"
- debug: "npm:^4.0.0"
- decode-named-character-reference: "npm:^1.0.0"
- micromark-core-commonmark: "npm:^1.0.1"
- micromark-factory-space: "npm:^1.0.0"
- micromark-util-character: "npm:^1.0.0"
- micromark-util-chunked: "npm:^1.0.0"
- micromark-util-combine-extensions: "npm:^1.0.0"
- micromark-util-decode-numeric-character-reference: "npm:^1.0.0"
- micromark-util-encode: "npm:^1.0.0"
- micromark-util-normalize-identifier: "npm:^1.0.0"
- micromark-util-resolve-all: "npm:^1.0.0"
- micromark-util-sanitize-uri: "npm:^1.0.0"
- micromark-util-subtokenize: "npm:^1.0.0"
- micromark-util-symbol: "npm:^1.0.0"
- micromark-util-types: "npm:^1.0.1"
- uvu: "npm:^0.5.0"
- checksum: 10c0/f243e805d1b3cc699fddae2de0b1492bc82462f1a709d7ae5c82039f88b1e009c959100184717e748be057b5f88603289d5681679a4e6fbabcd037beb34bc744
- languageName: node
- linkType: hard
-
-"micromark@npm:^4.0.0":
- version: 4.0.2
- resolution: "micromark@npm:4.0.2"
- dependencies:
- "@types/debug": "npm:^4.0.0"
- debug: "npm:^4.0.0"
- decode-named-character-reference: "npm:^1.0.0"
- devlop: "npm:^1.0.0"
- micromark-core-commonmark: "npm:^2.0.0"
- micromark-factory-space: "npm:^2.0.0"
- micromark-util-character: "npm:^2.0.0"
- micromark-util-chunked: "npm:^2.0.0"
- micromark-util-combine-extensions: "npm:^2.0.0"
- micromark-util-decode-numeric-character-reference: "npm:^2.0.0"
- micromark-util-encode: "npm:^2.0.0"
- micromark-util-normalize-identifier: "npm:^2.0.0"
- micromark-util-resolve-all: "npm:^2.0.0"
- micromark-util-sanitize-uri: "npm:^2.0.0"
- micromark-util-subtokenize: "npm:^2.0.0"
- micromark-util-symbol: "npm:^2.0.0"
- micromark-util-types: "npm:^2.0.0"
- checksum: 10c0/07462287254219d6eda6eac8a3cebaff2994e0575499e7088027b825105e096e4f51e466b14b2a81b71933a3b6c48ee069049d87bc2c2127eee50d9cc69e8af6
- languageName: node
- linkType: hard
-
-"micromatch@npm:^4.0.4, micromatch@npm:^4.0.5, micromatch@npm:^4.0.8":
- version: 4.0.8
- resolution: "micromatch@npm:4.0.8"
- dependencies:
- braces: "npm:^3.0.3"
- picomatch: "npm:^2.3.1"
- checksum: 10c0/166fa6eb926b9553f32ef81f5f531d27b4ce7da60e5baf8c021d043b27a388fb95e46a8038d5045877881e673f8134122b59624d5cecbd16eb50a42e7a6b5ca8
- languageName: node
- linkType: hard
-
-"mime-db@npm:1.52.0":
- version: 1.52.0
- resolution: "mime-db@npm:1.52.0"
- checksum: 10c0/0557a01deebf45ac5f5777fe7740b2a5c309c6d62d40ceab4e23da9f821899ce7a900b7ac8157d4548ddbb7beffe9abc621250e6d182b0397ec7f10c7b91a5aa
- languageName: node
- linkType: hard
-
-"mime-types@npm:^2.1.12":
- version: 2.1.35
- resolution: "mime-types@npm:2.1.35"
- dependencies:
- mime-db: "npm:1.52.0"
- checksum: 10c0/82fb07ec56d8ff1fc999a84f2f217aa46cb6ed1033fefaabd5785b9a974ed225c90dc72fff460259e66b95b73648596dbcc50d51ed69cdf464af2d237d3149b2
- languageName: node
- linkType: hard
-
-"mimic-fn@npm:^2.1.0":
- version: 2.1.0
- resolution: "mimic-fn@npm:2.1.0"
- checksum: 10c0/b26f5479d7ec6cc2bce275a08f146cf78f5e7b661b18114e2506dd91ec7ec47e7a25bf4360e5438094db0560bcc868079fb3b1fb3892b833c1ecbf63f80c95a4
- languageName: node
- linkType: hard
-
-"mimic-function@npm:^5.0.0":
- version: 5.0.1
- resolution: "mimic-function@npm:5.0.1"
- checksum: 10c0/f3d9464dd1816ecf6bdf2aec6ba32c0728022039d992f178237d8e289b48764fee4131319e72eedd4f7f094e22ded0af836c3187a7edc4595d28dd74368fd81d
- languageName: node
- linkType: hard
-
-"min-indent@npm:^1.0.0":
- version: 1.0.1
- resolution: "min-indent@npm:1.0.1"
- checksum: 10c0/7e207bd5c20401b292de291f02913230cb1163abca162044f7db1d951fa245b174dc00869d40dd9a9f32a885ad6a5f3e767ee104cf278f399cb4e92d3f582d5c
- languageName: node
- linkType: hard
-
-"minimatch@npm:9.0.3":
- version: 9.0.3
- resolution: "minimatch@npm:9.0.3"
- dependencies:
- brace-expansion: "npm:^2.0.1"
- checksum: 10c0/85f407dcd38ac3e180f425e86553911d101455ca3ad5544d6a7cec16286657e4f8a9aa6695803025c55e31e35a91a2252b5dc8e7d527211278b8b65b4dbd5eac
- languageName: node
- linkType: hard
-
-"minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2":
- version: 3.1.2
- resolution: "minimatch@npm:3.1.2"
- dependencies:
- brace-expansion: "npm:^1.1.7"
- checksum: 10c0/0262810a8fc2e72cca45d6fd86bd349eee435eb95ac6aa45c9ea2180e7ee875ef44c32b55b5973ceabe95ea12682f6e3725cbb63d7a2d1da3ae1163c8b210311
- languageName: node
- linkType: hard
-
-"minimatch@npm:^9.0.1, minimatch@npm:^9.0.4":
- version: 9.0.5
- resolution: "minimatch@npm:9.0.5"
- dependencies:
- brace-expansion: "npm:^2.0.1"
- checksum: 10c0/de96cf5e35bdf0eab3e2c853522f98ffbe9a36c37797778d2665231ec1f20a9447a7e567cb640901f89e4daaa95ae5d70c65a9e8aa2bb0019b6facbc3c0575ed
- languageName: node
- linkType: hard
-
-"minimist@npm:^1.2.0, minimist@npm:^1.2.5, minimist@npm:^1.2.6, minimist@npm:^1.2.8":
- version: 1.2.8
- resolution: "minimist@npm:1.2.8"
- checksum: 10c0/19d3fcdca050087b84c2029841a093691a91259a47def2f18222f41e7645a0b7c44ef4b40e88a1e58a40c84d2ef0ee6047c55594d298146d0eb3f6b737c20ce6
- languageName: node
- linkType: hard
-
-"minipass-collect@npm:^2.0.1":
- version: 2.0.1
- resolution: "minipass-collect@npm:2.0.1"
- dependencies:
- minipass: "npm:^7.0.3"
- checksum: 10c0/5167e73f62bb74cc5019594709c77e6a742051a647fe9499abf03c71dca75515b7959d67a764bdc4f8b361cf897fbf25e2d9869ee039203ed45240f48b9aa06e
- languageName: node
- linkType: hard
-
-"minipass-fetch@npm:^4.0.0":
- version: 4.0.1
- resolution: "minipass-fetch@npm:4.0.1"
- dependencies:
- encoding: "npm:^0.1.13"
- minipass: "npm:^7.0.3"
- minipass-sized: "npm:^1.0.3"
- minizlib: "npm:^3.0.1"
- dependenciesMeta:
- encoding:
- optional: true
- checksum: 10c0/a3147b2efe8e078c9bf9d024a0059339c5a09c5b1dded6900a219c218cc8b1b78510b62dae556b507304af226b18c3f1aeb1d48660283602d5b6586c399eed5c
- languageName: node
- linkType: hard
-
-"minipass-flush@npm:^1.0.5":
- version: 1.0.5
- resolution: "minipass-flush@npm:1.0.5"
- dependencies:
- minipass: "npm:^3.0.0"
- checksum: 10c0/2a51b63feb799d2bb34669205eee7c0eaf9dce01883261a5b77410c9408aa447e478efd191b4de6fc1101e796ff5892f8443ef20d9544385819093dbb32d36bd
- languageName: node
- linkType: hard
-
-"minipass-pipeline@npm:^1.2.4":
- version: 1.2.4
- resolution: "minipass-pipeline@npm:1.2.4"
- dependencies:
- minipass: "npm:^3.0.0"
- checksum: 10c0/cbda57cea20b140b797505dc2cac71581a70b3247b84480c1fed5ca5ba46c25ecc25f68bfc9e6dcb1a6e9017dab5c7ada5eab73ad4f0a49d84e35093e0c643f2
- languageName: node
- linkType: hard
-
-"minipass-sized@npm:^1.0.3":
- version: 1.0.3
- resolution: "minipass-sized@npm:1.0.3"
- dependencies:
- minipass: "npm:^3.0.0"
- checksum: 10c0/298f124753efdc745cfe0f2bdfdd81ba25b9f4e753ca4a2066eb17c821f25d48acea607dfc997633ee5bf7b6dfffb4eee4f2051eb168663f0b99fad2fa4829cb
- languageName: node
- linkType: hard
-
-"minipass@npm:^3.0.0":
- version: 3.3.6
- resolution: "minipass@npm:3.3.6"
- dependencies:
- yallist: "npm:^4.0.0"
- checksum: 10c0/a114746943afa1dbbca8249e706d1d38b85ed1298b530f5808ce51f8e9e941962e2a5ad2e00eae7dd21d8a4aae6586a66d4216d1a259385e9d0358f0c1eba16c
- languageName: node
- linkType: hard
-
-"minipass@npm:^5.0.0 || ^6.0.2 || ^7.0.0, minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.0.4, minipass@npm:^7.1.2":
- version: 7.1.2
- resolution: "minipass@npm:7.1.2"
- checksum: 10c0/b0fd20bb9fb56e5fa9a8bfac539e8915ae07430a619e4b86ff71f5fc757ef3924b23b2c4230393af1eda647ed3d75739e4e0acb250a6b1eb277cf7f8fe449557
- languageName: node
- linkType: hard
-
-"minizlib@npm:^3.0.1":
- version: 3.0.2
- resolution: "minizlib@npm:3.0.2"
- dependencies:
- minipass: "npm:^7.1.2"
- checksum: 10c0/9f3bd35e41d40d02469cb30470c55ccc21cae0db40e08d1d0b1dff01cc8cc89a6f78e9c5d2b7c844e485ec0a8abc2238111213fdc5b2038e6d1012eacf316f78
- languageName: node
- linkType: hard
-
-"mkdirp@npm:^3.0.1":
- version: 3.0.1
- resolution: "mkdirp@npm:3.0.1"
- bin:
- mkdirp: dist/cjs/src/bin.js
- checksum: 10c0/9f2b975e9246351f5e3a40dcfac99fcd0baa31fbfab615fe059fb11e51f10e4803c63de1f384c54d656e4db31d000e4767e9ef076a22e12a641357602e31d57d
- languageName: node
- linkType: hard
-
-"mlly@npm:^1.7.4":
- version: 1.7.4
- resolution: "mlly@npm:1.7.4"
- dependencies:
- acorn: "npm:^8.14.0"
- pathe: "npm:^2.0.1"
- pkg-types: "npm:^1.3.0"
- ufo: "npm:^1.5.4"
- checksum: 10c0/69e738218a13d6365caf930e0ab4e2b848b84eec261597df9788cefb9930f3e40667be9cb58a4718834ba5f97a6efeef31d3b5a95f4388143fd4e0d0deff72ff
- languageName: node
- linkType: hard
-
-"mri@npm:^1.1.0":
- version: 1.2.0
- resolution: "mri@npm:1.2.0"
- checksum: 10c0/a3d32379c2554cf7351db6237ddc18dc9e54e4214953f3da105b97dc3babe0deb3ffe99cf409b38ea47cc29f9430561ba6b53b24ab8f9ce97a4b50409e4a50e7
- languageName: node
- linkType: hard
-
-"ms@npm:2.0.0":
- version: 2.0.0
- resolution: "ms@npm:2.0.0"
- checksum: 10c0/f8fda810b39fd7255bbdc451c46286e549794fcc700dc9cd1d25658bbc4dc2563a5de6fe7c60f798a16a60c6ceb53f033cb353f493f0cf63e5199b702943159d
- languageName: node
- linkType: hard
-
-"ms@npm:^2.1.1, ms@npm:^2.1.3":
- version: 2.1.3
- resolution: "ms@npm:2.1.3"
- checksum: 10c0/d924b57e7312b3b63ad21fc5b3dc0af5e78d61a1fc7cfb5457edaf26326bf62be5307cc87ffb6862ef1c2b33b0233cdb5d4f01c4c958cc0d660948b65a287a48
- languageName: node
- linkType: hard
-
-"mute-stream@npm:1.0.0":
- version: 1.0.0
- resolution: "mute-stream@npm:1.0.0"
- checksum: 10c0/dce2a9ccda171ec979a3b4f869a102b1343dee35e920146776780de182f16eae459644d187e38d59a3d37adf85685e1c17c38cf7bfda7e39a9880f7a1d10a74c
- languageName: node
- linkType: hard
-
-"mz@npm:^2.7.0":
- version: 2.7.0
- resolution: "mz@npm:2.7.0"
- dependencies:
- any-promise: "npm:^1.0.0"
- object-assign: "npm:^4.0.1"
- thenify-all: "npm:^1.0.0"
- checksum: 10c0/103114e93f87362f0b56ab5b2e7245051ad0276b646e3902c98397d18bb8f4a77f2ea4a2c9d3ad516034ea3a56553b60d3f5f78220001ca4c404bd711bd0af39
- languageName: node
- linkType: hard
-
-"nanoid@npm:^3.3.6, nanoid@npm:^3.3.8":
- version: 3.3.9
- resolution: "nanoid@npm:3.3.9"
- bin:
- nanoid: bin/nanoid.cjs
- checksum: 10c0/4515abe53db7b150cf77074558efc20d8e916d6910d557b5ce72e8bbf6f8e7554d3d7a0d180bfa65e5d8e99aa51b207aa8a3bf5f3b56233897b146d592e30b24
- languageName: node
- linkType: hard
-
-"nanoid@npm:^5.0.1":
- version: 5.1.3
- resolution: "nanoid@npm:5.1.3"
- bin:
- nanoid: bin/nanoid.js
- checksum: 10c0/632ab0e758f8cdd3d14835b2c094e7320cdb92c2404e4bc6cd864765d8fab76647e73ee664a7d11b1a5b5c7e04b8c030d6719d2b61f8b1295a5fb64a9d779a8b
- languageName: node
- linkType: hard
-
-"napi-postinstall@npm:^0.2.2":
- version: 0.2.3
- resolution: "napi-postinstall@npm:0.2.3"
- bin:
- napi-postinstall: lib/cli.js
- checksum: 10c0/125cb677d59f284e61cd9b4cd840cf735edd4c325ffc54af4fad16c8726642ffeddaa63c5ca3533b5e7023be4d8e9ff223484c5eea2a8efe2e2498fd063cabbd
- languageName: node
- linkType: hard
-
-"natural-compare@npm:^1.4.0":
- version: 1.4.0
- resolution: "natural-compare@npm:1.4.0"
- checksum: 10c0/f5f9a7974bfb28a91afafa254b197f0f22c684d4a1731763dda960d2c8e375b36c7d690e0d9dc8fba774c537af14a7e979129bca23d88d052fbeb9466955e447
- languageName: node
- linkType: hard
-
-"negotiator@npm:^1.0.0":
- version: 1.0.0
- resolution: "negotiator@npm:1.0.0"
- checksum: 10c0/4c559dd52669ea48e1914f9d634227c561221dd54734070791f999c52ed0ff36e437b2e07d5c1f6e32909fc625fe46491c16e4a8f0572567d4dd15c3a4fda04b
- languageName: node
- linkType: hard
-
-"neo-async@npm:^2.6.2":
- version: 2.6.2
- resolution: "neo-async@npm:2.6.2"
- checksum: 10c0/c2f5a604a54a8ec5438a342e1f356dff4bc33ccccdb6dc668d94fe8e5eccfc9d2c2eea6064b0967a767ba63b33763f51ccf2cd2441b461a7322656c1f06b3f5d
- languageName: node
- linkType: hard
-
-"next-mdx-remote@npm:^4.2.1":
- version: 4.4.1
- resolution: "next-mdx-remote@npm:4.4.1"
- dependencies:
- "@mdx-js/mdx": "npm:^2.2.1"
- "@mdx-js/react": "npm:^2.2.1"
- vfile: "npm:^5.3.0"
- vfile-matter: "npm:^3.0.1"
- peerDependencies:
- react: ">=16.x <=18.x"
- react-dom: ">=16.x <=18.x"
- checksum: 10c0/d48ad271f58312d11f392b0fbd7b2dbc5990cc82fcb6d28f687875a52b28b695c0700b93f197c72910a4c73da0a1fe4867db95315bc2ee7f0fc1743279f41b80
- languageName: node
- linkType: hard
-
-"next-seo@npm:^6.0.0, next-seo@npm:^6.5.0":
- version: 6.6.0
- resolution: "next-seo@npm:6.6.0"
- peerDependencies:
- next: ^8.1.1-canary.54 || >=9.0.0
- react: ">=16.0.0"
- react-dom: ">=16.0.0"
- checksum: 10c0/60eff5b6fdd83306d26968dfc23b5df502bf014b771b0910bf6cfec944de6f262d7d872ae3155717a31a1dd51ae48db007ce4c0f78f8b435deff37bdc63beb76
- languageName: node
- linkType: hard
-
-"next-sitemap@npm:^4.2.3":
- version: 4.2.3
- resolution: "next-sitemap@npm:4.2.3"
- dependencies:
- "@corex/deepmerge": "npm:^4.0.43"
- "@next/env": "npm:^13.4.3"
- fast-glob: "npm:^3.2.12"
- minimist: "npm:^1.2.8"
- peerDependencies:
- next: "*"
- bin:
- next-sitemap: bin/next-sitemap.mjs
- next-sitemap-cjs: bin/next-sitemap.cjs
- checksum: 10c0/8a367c9db84ca249797ec900d06c267434265bf635a82bc0896d35bc0ce85eee0cf115d4340baa93dd20fde081e513115d38776b5e8a5b3fb604c7b34a8542ea
- languageName: node
- linkType: hard
-
-"next-themes@npm:^0.2.1":
- version: 0.2.1
- resolution: "next-themes@npm:0.2.1"
- peerDependencies:
- next: "*"
- react: "*"
- react-dom: "*"
- checksum: 10c0/979dec0a2de049ce7d1b5da835e7f7dc3b7ec83ba9e464348f497a52a6a6e5b5c395c97f071f66a63f50f22cce89fb6d19061ec7e75643b0eab215b21794bde7
- languageName: node
- linkType: hard
-
-"next@npm:^14.1.4":
- version: 14.2.28
- resolution: "next@npm:14.2.28"
- dependencies:
- "@next/env": "npm:14.2.28"
- "@next/swc-darwin-arm64": "npm:14.2.28"
- "@next/swc-darwin-x64": "npm:14.2.28"
- "@next/swc-linux-arm64-gnu": "npm:14.2.28"
- "@next/swc-linux-arm64-musl": "npm:14.2.28"
- "@next/swc-linux-x64-gnu": "npm:14.2.28"
- "@next/swc-linux-x64-musl": "npm:14.2.28"
- "@next/swc-win32-arm64-msvc": "npm:14.2.28"
- "@next/swc-win32-ia32-msvc": "npm:14.2.28"
- "@next/swc-win32-x64-msvc": "npm:14.2.28"
- "@swc/helpers": "npm:0.5.5"
- busboy: "npm:1.6.0"
- caniuse-lite: "npm:^1.0.30001579"
- graceful-fs: "npm:^4.2.11"
- postcss: "npm:8.4.31"
- styled-jsx: "npm:5.1.1"
- peerDependencies:
- "@opentelemetry/api": ^1.1.0
- "@playwright/test": ^1.41.2
- react: ^18.2.0
- react-dom: ^18.2.0
- sass: ^1.3.0
- dependenciesMeta:
- "@next/swc-darwin-arm64":
- optional: true
- "@next/swc-darwin-x64":
- optional: true
- "@next/swc-linux-arm64-gnu":
- optional: true
- "@next/swc-linux-arm64-musl":
- optional: true
- "@next/swc-linux-x64-gnu":
- optional: true
- "@next/swc-linux-x64-musl":
- optional: true
- "@next/swc-win32-arm64-msvc":
- optional: true
- "@next/swc-win32-ia32-msvc":
- optional: true
- "@next/swc-win32-x64-msvc":
- optional: true
- peerDependenciesMeta:
- "@opentelemetry/api":
- optional: true
- "@playwright/test":
- optional: true
- sass:
- optional: true
- bin:
- next: dist/bin/next
- checksum: 10c0/c3300970c7d633cfde371e59ef3f1b08bd5403b7f5b43bc07ec16e17d8d82b993115c61cca003cec3e8dd3fe72d1fbe2bb366f76a8e91e39c80b0f9fe7cc41df
- languageName: node
- linkType: hard
-
-"nextra-theme-docs@npm:^2.13.4":
- version: 2.13.4
- resolution: "nextra-theme-docs@npm:2.13.4"
- dependencies:
- "@headlessui/react": "npm:^1.7.17"
- "@popperjs/core": "npm:^2.11.8"
- clsx: "npm:^2.0.0"
- escape-string-regexp: "npm:^5.0.0"
- flexsearch: "npm:^0.7.31"
- focus-visible: "npm:^5.2.0"
- git-url-parse: "npm:^13.1.0"
- intersection-observer: "npm:^0.12.2"
- match-sorter: "npm:^6.3.1"
- next-seo: "npm:^6.0.0"
- next-themes: "npm:^0.2.1"
- scroll-into-view-if-needed: "npm:^3.1.0"
- zod: "npm:^3.22.3"
- peerDependencies:
- next: ">=9.5.3"
- nextra: 2.13.4
- react: ">=16.13.1"
- react-dom: ">=16.13.1"
- checksum: 10c0/3c8711391a771878370db9e71296d700f30fdcc31a1c739eac1f586b12b0d7960326f5e4a75e1b7c3ffc16734bc2c98347b001734e6e607f0f89efa2ac0e84d2
- languageName: node
- linkType: hard
-
-"nextra@npm:^2.13.4":
- version: 2.13.4
- resolution: "nextra@npm:2.13.4"
- dependencies:
- "@headlessui/react": "npm:^1.7.17"
- "@mdx-js/mdx": "npm:^2.3.0"
- "@mdx-js/react": "npm:^2.3.0"
- "@napi-rs/simple-git": "npm:^0.1.9"
- "@theguild/remark-mermaid": "npm:^0.0.5"
- "@theguild/remark-npm2yarn": "npm:^0.2.0"
- clsx: "npm:^2.0.0"
- github-slugger: "npm:^2.0.0"
- graceful-fs: "npm:^4.2.11"
- gray-matter: "npm:^4.0.3"
- katex: "npm:^0.16.9"
- lodash.get: "npm:^4.4.2"
- next-mdx-remote: "npm:^4.2.1"
- p-limit: "npm:^3.1.0"
- rehype-katex: "npm:^7.0.0"
- rehype-pretty-code: "npm:0.9.11"
- rehype-raw: "npm:^7.0.0"
- remark-gfm: "npm:^3.0.1"
- remark-math: "npm:^5.1.1"
- remark-reading-time: "npm:^2.0.1"
- shiki: "npm:^0.14.3"
- slash: "npm:^3.0.0"
- title: "npm:^3.5.3"
- unist-util-remove: "npm:^4.0.0"
- unist-util-visit: "npm:^5.0.0"
- zod: "npm:^3.22.3"
- peerDependencies:
- next: ">=9.5.3"
- react: ">=16.13.1"
- react-dom: ">=16.13.1"
- checksum: 10c0/68941552f83639ae818e27b1cfbfef4031362c95bb5c80188cabe29ccd700e0889e20d90cde621d79e151fdf02713b096cfaa42b9304946133b82c223d2e01e3
- languageName: node
- linkType: hard
-
-"no-case@npm:^3.0.4":
- version: 3.0.4
- resolution: "no-case@npm:3.0.4"
- dependencies:
- lower-case: "npm:^2.0.2"
- tslib: "npm:^2.0.3"
- checksum: 10c0/8ef545f0b3f8677c848f86ecbd42ca0ff3cd9dd71c158527b344c69ba14710d816d8489c746b6ca225e7b615108938a0bda0a54706f8c255933703ac1cf8e703
- languageName: node
- linkType: hard
-
-"node-addon-api@npm:^7.0.0":
- version: 7.1.1
- resolution: "node-addon-api@npm:7.1.1"
- dependencies:
- node-gyp: "npm:latest"
- checksum: 10c0/fb32a206276d608037fa1bcd7e9921e177fe992fc610d098aa3128baca3c0050fc1e014fa007e9b3874cf865ddb4f5bd9f43ccb7cbbbe4efaff6a83e920b17e9
- languageName: node
- linkType: hard
-
-"node-domexception@npm:1.0.0":
- version: 1.0.0
- resolution: "node-domexception@npm:1.0.0"
- checksum: 10c0/5e5d63cda29856402df9472335af4bb13875e1927ad3be861dc5ebde38917aecbf9ae337923777af52a48c426b70148815e890a5d72760f1b4d758cc671b1a2b
- languageName: node
- linkType: hard
-
-"node-fetch@npm:^2.0.0":
- version: 2.7.0
- resolution: "node-fetch@npm:2.7.0"
- dependencies:
- whatwg-url: "npm:^5.0.0"
- peerDependencies:
- encoding: ^0.1.0
- peerDependenciesMeta:
- encoding:
- optional: true
- checksum: 10c0/b55786b6028208e6fbe594ccccc213cab67a72899c9234eb59dba51062a299ea853210fcf526998eaa2867b0963ad72338824450905679ff0fa304b8c5093ae8
- languageName: node
- linkType: hard
-
-"node-gyp@npm:latest":
- version: 11.2.0
- resolution: "node-gyp@npm:11.2.0"
- dependencies:
- env-paths: "npm:^2.2.0"
- exponential-backoff: "npm:^3.1.1"
- graceful-fs: "npm:^4.2.6"
- make-fetch-happen: "npm:^14.0.3"
- nopt: "npm:^8.0.0"
- proc-log: "npm:^5.0.0"
- semver: "npm:^7.3.5"
- tar: "npm:^7.4.3"
- tinyglobby: "npm:^0.2.12"
- which: "npm:^5.0.0"
- bin:
- node-gyp: bin/node-gyp.js
- checksum: 10c0/bd8d8c76b06be761239b0c8680f655f6a6e90b48e44d43415b11c16f7e8c15be346fba0cbf71588c7cdfb52c419d928a7d3db353afc1d952d19756237d8f10b9
- languageName: node
- linkType: hard
-
-"node-plop@npm:^0.32.0":
- version: 0.32.0
- resolution: "node-plop@npm:0.32.0"
- dependencies:
- "@types/inquirer": "npm:^9.0.3"
- change-case: "npm:^4.1.2"
- del: "npm:^7.1.0"
- globby: "npm:^13.2.2"
- handlebars: "npm:^4.7.8"
- inquirer: "npm:^9.2.10"
- isbinaryfile: "npm:^5.0.0"
- lodash.get: "npm:^4.4.2"
- lower-case: "npm:^2.0.2"
- mkdirp: "npm:^3.0.1"
- resolve: "npm:^1.22.4"
- title-case: "npm:^3.0.3"
- upper-case: "npm:^2.0.2"
- checksum: 10c0/83babd504c4d5f84638c8d1638f99d6d3cd3615162df5be118163c4231b56e09388032db40034ec8fd4c93ef2e8d75d50b7b4d90a3150358554b759663051b2a
- languageName: node
- linkType: hard
-
-"node-releases@npm:^2.0.19":
- version: 2.0.19
- resolution: "node-releases@npm:2.0.19"
- checksum: 10c0/52a0dbd25ccf545892670d1551690fe0facb6a471e15f2cfa1b20142a5b255b3aa254af5f59d6ecb69c2bec7390bc643c43aa63b13bf5e64b6075952e716b1aa
- languageName: node
- linkType: hard
-
-"non-layered-tidy-tree-layout@npm:^2.0.2":
- version: 2.0.2
- resolution: "non-layered-tidy-tree-layout@npm:2.0.2"
- checksum: 10c0/73856e9959667193e733a7ef2b06a69421f4d9d7428a3982ce39763cd979a04eed0007f2afb3414afa3f6dc4dc6b5c850c2af9aa71a974475236a465093ec9c7
- languageName: node
- linkType: hard
-
-"nopt@npm:^8.0.0":
- version: 8.1.0
- resolution: "nopt@npm:8.1.0"
- dependencies:
- abbrev: "npm:^3.0.0"
- bin:
- nopt: bin/nopt.js
- checksum: 10c0/62e9ea70c7a3eb91d162d2c706b6606c041e4e7b547cbbb48f8b3695af457dd6479904d7ace600856bf923dd8d1ed0696f06195c8c20f02ac87c1da0e1d315ef
- languageName: node
- linkType: hard
-
-"normalize-path@npm:^3.0.0, normalize-path@npm:~3.0.0":
- version: 3.0.0
- resolution: "normalize-path@npm:3.0.0"
- checksum: 10c0/e008c8142bcc335b5e38cf0d63cfd39d6cf2d97480af9abdbe9a439221fd4d749763bab492a8ee708ce7a194bb00c9da6d0a115018672310850489137b3da046
- languageName: node
- linkType: hard
-
-"normalize-range@npm:^0.1.2":
- version: 0.1.2
- resolution: "normalize-range@npm:0.1.2"
- checksum: 10c0/bf39b73a63e0a42ad1a48c2bd1bda5a07ede64a7e2567307a407674e595bcff0fa0d57e8e5f1e7fa5e91000797c7615e13613227aaaa4d6d6e87f5bd5cc95de6
- languageName: node
- linkType: hard
-
-"npm-run-path@npm:^2.0.0":
- version: 2.0.2
- resolution: "npm-run-path@npm:2.0.2"
- dependencies:
- path-key: "npm:^2.0.0"
- checksum: 10c0/95549a477886f48346568c97b08c4fda9cdbf7ce8a4fbc2213f36896d0d19249e32d68d7451bdcbca8041b5fba04a6b2c4a618beaf19849505c05b700740f1de
- languageName: node
- linkType: hard
-
-"npm-to-yarn@npm:^2.1.0":
- version: 2.2.1
- resolution: "npm-to-yarn@npm:2.2.1"
- checksum: 10c0/65c696a3e595facad802b6b13c04e504806ea88fd4f87ab758f8042c19f65b4c4822815a47095df944b0809a95e574c27323c33cca5533f8454515eaa6e14fac
- languageName: node
- linkType: hard
-
-"object-assign@npm:^4.0.1, object-assign@npm:^4.1.1":
- version: 4.1.1
- resolution: "object-assign@npm:4.1.1"
- checksum: 10c0/1f4df9945120325d041ccf7b86f31e8bcc14e73d29171e37a7903050e96b81323784ec59f93f102ec635bcf6fa8034ba3ea0a8c7e69fa202b87ae3b6cec5a414
- languageName: node
- linkType: hard
-
-"object-hash@npm:^3.0.0":
- version: 3.0.0
- resolution: "object-hash@npm:3.0.0"
- checksum: 10c0/a06844537107b960c1c8b96cd2ac8592a265186bfa0f6ccafe0d34eabdb526f6fa81da1f37c43df7ed13b12a4ae3457a16071603bcd39d8beddb5f08c37b0f47
- languageName: node
- linkType: hard
-
-"object-inspect@npm:^1.13.3":
- version: 1.13.4
- resolution: "object-inspect@npm:1.13.4"
- checksum: 10c0/d7f8711e803b96ea3191c745d6f8056ce1f2496e530e6a19a0e92d89b0fa3c76d910c31f0aa270432db6bd3b2f85500a376a83aaba849a8d518c8845b3211692
- languageName: node
- linkType: hard
-
-"object-keys@npm:^1.1.1":
- version: 1.1.1
- resolution: "object-keys@npm:1.1.1"
- checksum: 10c0/b11f7ccdbc6d406d1f186cdadb9d54738e347b2692a14439ca5ac70c225fa6db46db809711b78589866d47b25fc3e8dee0b4c722ac751e11180f9380e3d8601d
- languageName: node
- linkType: hard
-
-"object.assign@npm:^4.1.4, object.assign@npm:^4.1.7":
- version: 4.1.7
- resolution: "object.assign@npm:4.1.7"
- dependencies:
- call-bind: "npm:^1.0.8"
- call-bound: "npm:^1.0.3"
- define-properties: "npm:^1.2.1"
- es-object-atoms: "npm:^1.0.0"
- has-symbols: "npm:^1.1.0"
- object-keys: "npm:^1.1.1"
- checksum: 10c0/3b2732bd860567ea2579d1567525168de925a8d852638612846bd8082b3a1602b7b89b67b09913cbb5b9bd6e95923b2ae73580baa9d99cb4e990564e8cbf5ddc
- languageName: node
- linkType: hard
-
-"object.defaults@npm:^1.1.0":
- version: 1.1.0
- resolution: "object.defaults@npm:1.1.0"
- dependencies:
- array-each: "npm:^1.0.1"
- array-slice: "npm:^1.0.0"
- for-own: "npm:^1.0.0"
- isobject: "npm:^3.0.0"
- checksum: 10c0/9ed5c41ce500c2dce2e6f8baa71b0e73b013dcd57c02e545dd85b46e52140af707e2b05c31f6126209f8b15709f10817ddbe6fb5c13f8d873d811694f28ee3fd
- languageName: node
- linkType: hard
-
-"object.entries@npm:^1.1.9":
- version: 1.1.9
- resolution: "object.entries@npm:1.1.9"
- dependencies:
- call-bind: "npm:^1.0.8"
- call-bound: "npm:^1.0.4"
- define-properties: "npm:^1.2.1"
- es-object-atoms: "npm:^1.1.1"
- checksum: 10c0/d4b8c1e586650407da03370845f029aa14076caca4e4d4afadbc69cfb5b78035fd3ee7be417141abdb0258fa142e59b11923b4c44d8b1255b28f5ffcc50da7db
- languageName: node
- linkType: hard
-
-"object.fromentries@npm:^2.0.8":
- version: 2.0.8
- resolution: "object.fromentries@npm:2.0.8"
- dependencies:
- call-bind: "npm:^1.0.7"
- define-properties: "npm:^1.2.1"
- es-abstract: "npm:^1.23.2"
- es-object-atoms: "npm:^1.0.0"
- checksum: 10c0/cd4327e6c3369cfa805deb4cbbe919bfb7d3aeebf0bcaba291bb568ea7169f8f8cdbcabe2f00b40db0c20cd20f08e11b5f3a5a36fb7dd3fe04850c50db3bf83b
- languageName: node
- linkType: hard
-
-"object.groupby@npm:^1.0.3":
- version: 1.0.3
- resolution: "object.groupby@npm:1.0.3"
- dependencies:
- call-bind: "npm:^1.0.7"
- define-properties: "npm:^1.2.1"
- es-abstract: "npm:^1.23.2"
- checksum: 10c0/60d0455c85c736fbfeda0217d1a77525956f76f7b2495edeca9e9bbf8168a45783199e77b894d30638837c654d0cc410e0e02cbfcf445bc8de71c3da1ede6a9c
- languageName: node
- linkType: hard
-
-"object.map@npm:^1.0.1":
- version: 1.0.1
- resolution: "object.map@npm:1.0.1"
- dependencies:
- for-own: "npm:^1.0.0"
- make-iterator: "npm:^1.0.0"
- checksum: 10c0/f5dff48d3aa6604e8c1983c988a1314b8858181cbedc1671a83c8db6f247a97f31a7acb7ec1b85a72a785149bc34ffbd284d953d902fef7a3c19e2064959a0aa
- languageName: node
- linkType: hard
-
-"object.pick@npm:^1.3.0":
- version: 1.3.0
- resolution: "object.pick@npm:1.3.0"
- dependencies:
- isobject: "npm:^3.0.1"
- checksum: 10c0/cd316ec986e49895a28f2df9182de9cdeee57cd2a952c122aacc86344c28624fe002d9affc4f48b5014ec7c033da9942b08821ddb44db8c5bac5b3ec54bdc31e
- languageName: node
- linkType: hard
-
-"object.values@npm:^1.1.6, object.values@npm:^1.2.0, object.values@npm:^1.2.1":
- version: 1.2.1
- resolution: "object.values@npm:1.2.1"
- dependencies:
- call-bind: "npm:^1.0.8"
- call-bound: "npm:^1.0.3"
- define-properties: "npm:^1.2.1"
- es-object-atoms: "npm:^1.0.0"
- checksum: 10c0/3c47814fdc64842ae3d5a74bc9d06bdd8d21563c04d9939bf6716a9c00596a4ebc342552f8934013d1ec991c74e3671b26710a0c51815f0b603795605ab6b2c9
- languageName: node
- linkType: hard
-
-"once@npm:^1.3.0":
- version: 1.4.0
- resolution: "once@npm:1.4.0"
- dependencies:
- wrappy: "npm:1"
- checksum: 10c0/5d48aca287dfefabd756621c5dfce5c91a549a93e9fdb7b8246bc4c4790aa2ec17b34a260530474635147aeb631a2dcc8b32c613df0675f96041cbb8244517d0
- languageName: node
- linkType: hard
-
-"onetime@npm:^5.1.0":
- version: 5.1.2
- resolution: "onetime@npm:5.1.2"
- dependencies:
- mimic-fn: "npm:^2.1.0"
- checksum: 10c0/ffcef6fbb2692c3c40749f31ea2e22677a876daea92959b8a80b521d95cca7a668c884d8b2045d1d8ee7d56796aa405c405462af112a1477594cc63531baeb8f
- languageName: node
- linkType: hard
-
-"onetime@npm:^7.0.0":
- version: 7.0.0
- resolution: "onetime@npm:7.0.0"
- dependencies:
- mimic-function: "npm:^5.0.0"
- checksum: 10c0/5cb9179d74b63f52a196a2e7037ba2b9a893245a5532d3f44360012005c9cadb60851d56716ebff18a6f47129dab7168022445df47c2aff3b276d92585ed1221
- languageName: node
- linkType: hard
-
-"openapi-types@npm:^12.1.3":
- version: 12.1.3
- resolution: "openapi-types@npm:12.1.3"
- checksum: 10c0/4ad4eb91ea834c237edfa6ab31394e87e00c888fc2918009763389c00d02342345195d6f302d61c3fd807f17723cd48df29b47b538b68375b3827b3758cd520f
- languageName: node
- linkType: hard
-
-"optionator@npm:^0.9.3":
- version: 0.9.4
- resolution: "optionator@npm:0.9.4"
- dependencies:
- deep-is: "npm:^0.1.3"
- fast-levenshtein: "npm:^2.0.6"
- levn: "npm:^0.4.1"
- prelude-ls: "npm:^1.2.1"
- type-check: "npm:^0.4.0"
- word-wrap: "npm:^1.2.5"
- checksum: 10c0/4afb687a059ee65b61df74dfe87d8d6815cd6883cb8b3d5883a910df72d0f5d029821f37025e4bccf4048873dbdb09acc6d303d27b8f76b1a80dd5a7d5334675
- languageName: node
- linkType: hard
-
-"ora@npm:^5.4.1":
- version: 5.4.1
- resolution: "ora@npm:5.4.1"
- dependencies:
- bl: "npm:^4.1.0"
- chalk: "npm:^4.1.0"
- cli-cursor: "npm:^3.1.0"
- cli-spinners: "npm:^2.5.0"
- is-interactive: "npm:^1.0.0"
- is-unicode-supported: "npm:^0.1.0"
- log-symbols: "npm:^4.1.0"
- strip-ansi: "npm:^6.0.0"
- wcwidth: "npm:^1.0.1"
- checksum: 10c0/10ff14aace236d0e2f044193362b22edce4784add08b779eccc8f8ef97195cae1248db8ec1ec5f5ff076f91acbe573f5f42a98c19b78dba8c54eefff983cae85
- languageName: node
- linkType: hard
-
-"ora@npm:^8.0.0":
- version: 8.2.0
- resolution: "ora@npm:8.2.0"
- dependencies:
- chalk: "npm:^5.3.0"
- cli-cursor: "npm:^5.0.0"
- cli-spinners: "npm:^2.9.2"
- is-interactive: "npm:^2.0.0"
- is-unicode-supported: "npm:^2.0.0"
- log-symbols: "npm:^6.0.0"
- stdin-discarder: "npm:^0.2.2"
- string-width: "npm:^7.2.0"
- strip-ansi: "npm:^7.1.0"
- checksum: 10c0/7d9291255db22e293ea164f520b6042a3e906576ab06c9cf408bf9ef5664ba0a9f3bd258baa4ada058cfcc2163ef9b6696d51237a866682ce33295349ba02c3a
- languageName: node
- linkType: hard
-
-"os-tmpdir@npm:~1.0.2":
- version: 1.0.2
- resolution: "os-tmpdir@npm:1.0.2"
- checksum: 10c0/f438450224f8e2687605a8dd318f0db694b6293c5d835ae509a69e97c8de38b6994645337e5577f5001115470414638978cc49da1cdcc25106dad8738dc69990
- languageName: node
- linkType: hard
-
-"own-keys@npm:^1.0.1":
- version: 1.0.1
- resolution: "own-keys@npm:1.0.1"
- dependencies:
- get-intrinsic: "npm:^1.2.6"
- object-keys: "npm:^1.1.1"
- safe-push-apply: "npm:^1.0.0"
- checksum: 10c0/6dfeb3455bff92ec3f16a982d4e3e65676345f6902d9f5ded1d8265a6318d0200ce461956d6d1c70053c7fe9f9fe65e552faac03f8140d37ef0fdd108e67013a
- languageName: node
- linkType: hard
-
-"p-finally@npm:^1.0.0":
- version: 1.0.0
- resolution: "p-finally@npm:1.0.0"
- checksum: 10c0/6b8552339a71fe7bd424d01d8451eea92d379a711fc62f6b2fe64cad8a472c7259a236c9a22b4733abca0b5666ad503cb497792a0478c5af31ded793d00937e7
- languageName: node
- linkType: hard
-
-"p-limit@npm:^3.0.2, p-limit@npm:^3.1.0":
- version: 3.1.0
- resolution: "p-limit@npm:3.1.0"
- dependencies:
- yocto-queue: "npm:^0.1.0"
- checksum: 10c0/9db675949dbdc9c3763c89e748d0ef8bdad0afbb24d49ceaf4c46c02c77d30db4e0652ed36d0a0a7a95154335fab810d95c86153105bb73b3a90448e2bb14e1a
- languageName: node
- linkType: hard
-
-"p-locate@npm:^5.0.0":
- version: 5.0.0
- resolution: "p-locate@npm:5.0.0"
- dependencies:
- p-limit: "npm:^3.0.2"
- checksum: 10c0/2290d627ab7903b8b70d11d384fee714b797f6040d9278932754a6860845c4d3190603a0772a663c8cb5a7b21d1b16acb3a6487ebcafa9773094edc3dfe6009a
- languageName: node
- linkType: hard
-
-"p-map@npm:^5.5.0":
- version: 5.5.0
- resolution: "p-map@npm:5.5.0"
- dependencies:
- aggregate-error: "npm:^4.0.0"
- checksum: 10c0/410bce846b1e3db6bb2ccab6248372ecf4e635fc2b31331c8f56478e73fec9e146e8b4547585e635703160a3d252a6a65b8f855834aebc2c3408eb5789630cc4
- languageName: node
- linkType: hard
-
-"p-map@npm:^7.0.2":
- version: 7.0.3
- resolution: "p-map@npm:7.0.3"
- checksum: 10c0/46091610da2b38ce47bcd1d8b4835a6fa4e832848a6682cf1652bc93915770f4617afc844c10a77d1b3e56d2472bb2d5622353fa3ead01a7f42b04fc8e744a5c
- languageName: node
- linkType: hard
-
-"package-json-from-dist@npm:^1.0.0":
- version: 1.0.1
- resolution: "package-json-from-dist@npm:1.0.1"
- checksum: 10c0/62ba2785eb655fec084a257af34dbe24292ab74516d6aecef97ef72d4897310bc6898f6c85b5cd22770eaa1ce60d55a0230e150fb6a966e3ecd6c511e23d164b
- languageName: node
- linkType: hard
-
-"package-manager-detector@npm:^1.3.0":
- version: 1.3.0
- resolution: "package-manager-detector@npm:1.3.0"
- checksum: 10c0/b4b54a81a3230edd66564a59ff6a2233086961e36ba91a28a0f6d6932a8dec36618ace50e8efec9c4d8c6aa9828e98814557a39fb6b106c161434ccb44a80e1c
- languageName: node
- linkType: hard
-
-"packrup@npm:^0.1.2":
- version: 0.1.2
- resolution: "packrup@npm:0.1.2"
- checksum: 10c0/8236a89e02a86a1539ee7ff920050544f2abcdc74d1a4c16c6182ad23ca36b8b686adb2203f08ae23f422852d856ff7213e18411a7a3f1ac90b1f850b0b6e86d
- languageName: node
- linkType: hard
-
-"param-case@npm:^3.0.4":
- version: 3.0.4
- resolution: "param-case@npm:3.0.4"
- dependencies:
- dot-case: "npm:^3.0.4"
- tslib: "npm:^2.0.3"
- checksum: 10c0/ccc053f3019f878eca10e70ec546d92f51a592f762917dafab11c8b532715dcff58356118a6f350976e4ab109e321756f05739643ed0ca94298e82291e6f9e76
- languageName: node
- linkType: hard
-
-"parent-module@npm:^1.0.0":
- version: 1.0.1
- resolution: "parent-module@npm:1.0.1"
- dependencies:
- callsites: "npm:^3.0.0"
- checksum: 10c0/c63d6e80000d4babd11978e0d3fee386ca7752a02b035fd2435960ffaa7219dc42146f07069fb65e6e8bf1caef89daf9af7535a39bddf354d78bf50d8294f556
- languageName: node
- linkType: hard
-
-"parse-entities@npm:^4.0.0":
- version: 4.0.2
- resolution: "parse-entities@npm:4.0.2"
- dependencies:
- "@types/unist": "npm:^2.0.0"
- character-entities-legacy: "npm:^3.0.0"
- character-reference-invalid: "npm:^2.0.0"
- decode-named-character-reference: "npm:^1.0.0"
- is-alphanumerical: "npm:^2.0.0"
- is-decimal: "npm:^2.0.0"
- is-hexadecimal: "npm:^2.0.0"
- checksum: 10c0/a13906b1151750b78ed83d386294066daf5fb559e08c5af9591b2d98cc209123103016a01df776f65f8219ad26652d6d6b210d0974d452049cddfc53a8916c34
- languageName: node
- linkType: hard
-
-"parse-filepath@npm:^1.0.2":
- version: 1.0.2
- resolution: "parse-filepath@npm:1.0.2"
- dependencies:
- is-absolute: "npm:^1.0.0"
- map-cache: "npm:^0.2.0"
- path-root: "npm:^0.1.1"
- checksum: 10c0/37bbd225fa864257246777efbdf72a9305c4ae12110bf467d11994e93f8be60dd309dcef68124a2c78c5d3b4e64e1c36fcc2560e2ea93fd97767831e7a446805
- languageName: node
- linkType: hard
-
-"parse-ms@npm:^3.0.0":
- version: 3.0.0
- resolution: "parse-ms@npm:3.0.0"
- checksum: 10c0/056b4a32a9d3749f3f4cfffefb45c45540491deaa8e1d8ad43c2ddde7ba04edd076bd1b298f521238bb5fb084a9b2c4a2ebb78aefa651afbc4c2b0af4232fc54
- languageName: node
- linkType: hard
-
-"parse-numeric-range@npm:^1.3.0":
- version: 1.3.0
- resolution: "parse-numeric-range@npm:1.3.0"
- checksum: 10c0/53465afaa92111e86697281b684aa4574427360889cc23a1c215488c06b72441febdbf09f47ab0bef9a0c701e059629f3eebd2fe6fb241a254ad7a7a642aebe8
- languageName: node
- linkType: hard
-
-"parse-passwd@npm:^1.0.0":
- version: 1.0.0
- resolution: "parse-passwd@npm:1.0.0"
- checksum: 10c0/1c05c05f95f184ab9ca604841d78e4fe3294d46b8e3641d305dcc28e930da0e14e602dbda9f3811cd48df5b0e2e27dbef7357bf0d7c40e41b18c11c3a8b8d17b
- languageName: node
- linkType: hard
-
-"parse-path@npm:^7.0.0":
- version: 7.1.0
- resolution: "parse-path@npm:7.1.0"
- dependencies:
- protocols: "npm:^2.0.0"
- checksum: 10c0/8c8c8b3019323d686e7b1cd6fd9653bc233404403ad68827836fbfe59dfe26aaef64ed4e0396d0e20c4a7e1469312ec969a679618960e79d5e7c652dc0da5a0f
- languageName: node
- linkType: hard
-
-"parse-url@npm:^8.1.0":
- version: 8.1.0
- resolution: "parse-url@npm:8.1.0"
- dependencies:
- parse-path: "npm:^7.0.0"
- checksum: 10c0/68b95afdf4bbf72e57c7ab66f8757c935fff888f7e2b0f1e06098b4faa19e06b6b743bddaed5bc8df4f0c2de6fc475355d787373b2fdd40092be9e4e4b996648
- languageName: node
- linkType: hard
-
-"parse5@npm:^7.0.0":
- version: 7.2.1
- resolution: "parse5@npm:7.2.1"
- dependencies:
- entities: "npm:^4.5.0"
- checksum: 10c0/829d37a0c709215a887e410a7118d754f8e1afd7edb529db95bc7bbf8045fb0266a7b67801331d8e8d9d073ea75793624ec27ce9ff3b96862c3b9008f4d68e80
- languageName: node
- linkType: hard
-
-"pascal-case@npm:^3.1.2":
- version: 3.1.2
- resolution: "pascal-case@npm:3.1.2"
- dependencies:
- no-case: "npm:^3.0.4"
- tslib: "npm:^2.0.3"
- checksum: 10c0/05ff7c344809fd272fc5030ae0ee3da8e4e63f36d47a1e0a4855ca59736254192c5a27b5822ed4bae96e54048eec5f6907713cfcfff7cdf7a464eaf7490786d8
- languageName: node
- linkType: hard
-
-"path-case@npm:^3.0.4":
- version: 3.0.4
- resolution: "path-case@npm:3.0.4"
- dependencies:
- dot-case: "npm:^3.0.4"
- tslib: "npm:^2.0.3"
- checksum: 10c0/b6b14637228a558793f603aaeb2fcd981e738b8b9319421b713532fba96d75aa94024b9f6b9ae5aa33d86755144a5b36697d28db62ae45527dbd672fcc2cf0b7
- languageName: node
- linkType: hard
-
-"path-data-parser@npm:0.1.0, path-data-parser@npm:^0.1.0":
- version: 0.1.0
- resolution: "path-data-parser@npm:0.1.0"
- checksum: 10c0/ba22d54669a8bc4a3df27431fe667900685585d1196085b803d0aa4066b83e709bbf2be7c1d2b56e706b49cc698231d55947c22abbfc4843ca424bbf8c985745
- languageName: node
- linkType: hard
-
-"path-exists@npm:^4.0.0":
- version: 4.0.0
- resolution: "path-exists@npm:4.0.0"
- checksum: 10c0/8c0bd3f5238188197dc78dced15207a4716c51cc4e3624c44fc97acf69558f5ebb9a2afff486fe1b4ee148e0c133e96c5e11a9aa5c48a3006e3467da070e5e1b
- languageName: node
- linkType: hard
-
-"path-is-absolute@npm:^1.0.0":
- version: 1.0.1
- resolution: "path-is-absolute@npm:1.0.1"
- checksum: 10c0/127da03c82172a2a50099cddbf02510c1791fc2cc5f7713ddb613a56838db1e8168b121a920079d052e0936c23005562059756d653b7c544c53185efe53be078
- languageName: node
- linkType: hard
-
-"path-key@npm:^2.0.0":
- version: 2.0.1
- resolution: "path-key@npm:2.0.1"
- checksum: 10c0/dd2044f029a8e58ac31d2bf34c34b93c3095c1481942960e84dd2faa95bbb71b9b762a106aead0646695330936414b31ca0bd862bf488a937ad17c8c5d73b32b
- languageName: node
- linkType: hard
-
-"path-key@npm:^3.1.0":
- version: 3.1.1
- resolution: "path-key@npm:3.1.1"
- checksum: 10c0/748c43efd5a569c039d7a00a03b58eecd1d75f3999f5a28303d75f521288df4823bc057d8784eb72358b2895a05f29a070bc9f1f17d28226cc4e62494cc58c4c
- languageName: node
- linkType: hard
-
-"path-parse@npm:^1.0.7":
- version: 1.0.7
- resolution: "path-parse@npm:1.0.7"
- checksum: 10c0/11ce261f9d294cc7a58d6a574b7f1b935842355ec66fba3c3fd79e0f036462eaf07d0aa95bb74ff432f9afef97ce1926c720988c6a7451d8a584930ae7de86e1
- languageName: node
- linkType: hard
-
-"path-root-regex@npm:^0.1.0":
- version: 0.1.2
- resolution: "path-root-regex@npm:0.1.2"
- checksum: 10c0/27651a234f280c70d982dd25c35550f74a4284cde6b97237aab618cb4b5745682d18cdde1160617bb4a4b6b8aec4fbc911c4a2ad80d01fa4c7ee74dae7af2337
- languageName: node
- linkType: hard
-
-"path-root@npm:^0.1.1":
- version: 0.1.1
- resolution: "path-root@npm:0.1.1"
- dependencies:
- path-root-regex: "npm:^0.1.0"
- checksum: 10c0/aed5cd290df84c46c7730f6a363e95e47a23929b51ab068a3818d69900da3e89dc154cdfd0c45c57b2e02f40c094351bc862db70c2cb00b7e6bd47039a227813
- languageName: node
- linkType: hard
-
-"path-scurry@npm:^1.10.1, path-scurry@npm:^1.11.1":
- version: 1.11.1
- resolution: "path-scurry@npm:1.11.1"
- dependencies:
- lru-cache: "npm:^10.2.0"
- minipass: "npm:^5.0.0 || ^6.0.2 || ^7.0.0"
- checksum: 10c0/32a13711a2a505616ae1cc1b5076801e453e7aae6ac40ab55b388bb91b9d0547a52f5aaceff710ea400205f18691120d4431e520afbe4266b836fadede15872d
- languageName: node
- linkType: hard
-
-"path-type@npm:^4.0.0":
- version: 4.0.0
- resolution: "path-type@npm:4.0.0"
- checksum: 10c0/666f6973f332f27581371efaf303fd6c272cc43c2057b37aa99e3643158c7e4b2626549555d88626e99ea9e046f82f32e41bbde5f1508547e9a11b149b52387c
- languageName: node
- linkType: hard
-
-"path@npm:^0.12.7":
- version: 0.12.7
- resolution: "path@npm:0.12.7"
- dependencies:
- process: "npm:^0.11.1"
- util: "npm:^0.10.3"
- checksum: 10c0/f795ce5438a988a590c7b6dfd450ec9baa1c391a8be4c2dea48baa6e0f5b199e56cd83b8c9ebf3991b81bea58236d2c32bdafe2c17a2e70c3a2e4c69891ade59
- languageName: node
- linkType: hard
-
-"pathe@npm:^2.0.1, pathe@npm:^2.0.3":
- version: 2.0.3
- resolution: "pathe@npm:2.0.3"
- checksum: 10c0/c118dc5a8b5c4166011b2b70608762e260085180bb9e33e80a50dcdb1e78c010b1624f4280c492c92b05fc276715a4c357d1f9edc570f8f1b3d90b6839ebaca1
- languageName: node
- linkType: hard
-
-"pathval@npm:^2.0.0":
- version: 2.0.0
- resolution: "pathval@npm:2.0.0"
- checksum: 10c0/602e4ee347fba8a599115af2ccd8179836a63c925c23e04bd056d0674a64b39e3a081b643cc7bc0b84390517df2d800a46fcc5598d42c155fe4977095c2f77c5
- languageName: node
- linkType: hard
-
-"periscopic@npm:^3.0.0":
- version: 3.1.0
- resolution: "periscopic@npm:3.1.0"
- dependencies:
- "@types/estree": "npm:^1.0.0"
- estree-walker: "npm:^3.0.0"
- is-reference: "npm:^3.0.0"
- checksum: 10c0/fb5ce7cd810c49254cdf1cd3892811e6dd1a1dfbdf5f10a0a33fb7141baac36443c4cad4f0e2b30abd4eac613f6ab845c2bc1b7ce66ae9694c7321e6ada5bd96
- languageName: node
- linkType: hard
-
-"picocolors@npm:^1.0.0, picocolors@npm:^1.1.1":
- version: 1.1.1
- resolution: "picocolors@npm:1.1.1"
- checksum: 10c0/e2e3e8170ab9d7c7421969adaa7e1b31434f789afb9b3f115f6b96d91945041ac3ceb02e9ec6fe6510ff036bcc0bf91e69a1772edc0b707e12b19c0f2d6bcf58
- languageName: node
- linkType: hard
-
-"picomatch@npm:^2.0.4, picomatch@npm:^2.2.1, picomatch@npm:^2.3.1":
- version: 2.3.1
- resolution: "picomatch@npm:2.3.1"
- checksum: 10c0/26c02b8d06f03206fc2ab8d16f19960f2ff9e81a658f831ecb656d8f17d9edc799e8364b1f4a7873e89d9702dff96204be0fa26fe4181f6843f040f819dac4be
- languageName: node
- linkType: hard
-
-"picomatch@npm:^4.0.2":
- version: 4.0.2
- resolution: "picomatch@npm:4.0.2"
- checksum: 10c0/7c51f3ad2bb42c776f49ebf964c644958158be30d0a510efd5a395e8d49cb5acfed5b82c0c5b365523ce18e6ab85013c9ebe574f60305892ec3fa8eee8304ccc
- languageName: node
- linkType: hard
-
-"pify@npm:^2.3.0":
- version: 2.3.0
- resolution: "pify@npm:2.3.0"
- checksum: 10c0/551ff8ab830b1052633f59cb8adc9ae8407a436e06b4a9718bcb27dc5844b83d535c3a8512b388b6062af65a98c49bdc0dd523d8b2617b188f7c8fee457158dc
- languageName: node
- linkType: hard
-
-"pirates@npm:^4.0.1":
- version: 4.0.6
- resolution: "pirates@npm:4.0.6"
- checksum: 10c0/00d5fa51f8dded94d7429700fb91a0c1ead00ae2c7fd27089f0c5b63e6eca36197fe46384631872690a66f390c5e27198e99006ab77ae472692ab9c2ca903f36
- languageName: node
- linkType: hard
-
-"pkg-types@npm:^1.3.0":
- version: 1.3.1
- resolution: "pkg-types@npm:1.3.1"
- dependencies:
- confbox: "npm:^0.1.8"
- mlly: "npm:^1.7.4"
- pathe: "npm:^2.0.1"
- checksum: 10c0/19e6cb8b66dcc66c89f2344aecfa47f2431c988cfa3366bdfdcfb1dd6695f87dcce37fbd90fe9d1605e2f4440b77f391e83c23255347c35cf84e7fd774d7fcea
- languageName: node
- linkType: hard
-
-"pkg-types@npm:^2.0.1":
- version: 2.2.0
- resolution: "pkg-types@npm:2.2.0"
- dependencies:
- confbox: "npm:^0.2.2"
- exsolve: "npm:^1.0.7"
- pathe: "npm:^2.0.3"
- checksum: 10c0/df14eada1aeaaf73f72d3ec08d360bbfb44f2dfec5612358e0ce30f306a395a51fc7bfa96a2ca6ba005e9f56ddb1d2ee5b4cdd2e7b87ff075e5bf52e6fbc1cd6
- languageName: node
- linkType: hard
-
-"plop-helper-date@npm:^1.0.0":
- version: 1.0.0
- resolution: "plop-helper-date@npm:1.0.0"
- dependencies:
- date-fns: "npm:^2.15.0"
- checksum: 10c0/db330cfa74241c73022de028ab8fd8bc04e07be9355b1c41266ab6570b7e864fa48de1c78c84a42ef96dc166700fd358ebd70d39c0b5b57df5b9272786cf16bf
- languageName: node
- linkType: hard
-
-"plop@npm:^4.0.1":
- version: 4.0.1
- resolution: "plop@npm:4.0.1"
- dependencies:
- "@types/liftoff": "npm:^4.0.3"
- chalk: "npm:^5.3.0"
- interpret: "npm:^3.1.1"
- liftoff: "npm:^4.0.0"
- minimist: "npm:^1.2.8"
- node-plop: "npm:^0.32.0"
- ora: "npm:^8.0.0"
- v8flags: "npm:^4.0.1"
- bin:
- plop: bin/plop.js
- checksum: 10c0/2143c028f35a9bc14ac7d7195dcd3fbe2369a6957fb5a5fbdd3a60e9d2a16ccad73deccf829fa04e8dee647cdaeae1066d84e6c3c5958caf3a3a5314a781aa7c
- languageName: node
- linkType: hard
-
-"points-on-curve@npm:0.2.0, points-on-curve@npm:^0.2.0":
- version: 0.2.0
- resolution: "points-on-curve@npm:0.2.0"
- checksum: 10c0/f0d92343fcc2ad1f48334633e580574c1e0e28038a756133e171e537f270d6d64203feada5ee556e36f448a1b46e0306dee07b30f589f4e3ad720f6ee38ef48c
- languageName: node
- linkType: hard
-
-"points-on-path@npm:^0.2.1":
- version: 0.2.1
- resolution: "points-on-path@npm:0.2.1"
- dependencies:
- path-data-parser: "npm:0.1.0"
- points-on-curve: "npm:0.2.0"
- checksum: 10c0/a7010340f9f196976f61838e767bb7b0b7f6273ab4fb9eb37c61001fe26fbfc3fcd63c96d5e85b9a4ab579213ab366f2ddaaf60e2a9253e2b91a62db33f395ba
- languageName: node
- linkType: hard
-
-"possible-typed-array-names@npm:^1.0.0":
- version: 1.1.0
- resolution: "possible-typed-array-names@npm:1.1.0"
- checksum: 10c0/c810983414142071da1d644662ce4caebce890203eb2bc7bf119f37f3fe5796226e117e6cca146b521921fa6531072674174a3325066ac66fce089a53e1e5196
- languageName: node
- linkType: hard
-
-"postcss-import@npm:^15.1.0":
- version: 15.1.0
- resolution: "postcss-import@npm:15.1.0"
- dependencies:
- postcss-value-parser: "npm:^4.0.0"
- read-cache: "npm:^1.0.0"
- resolve: "npm:^1.1.7"
- peerDependencies:
- postcss: ^8.0.0
- checksum: 10c0/518aee5c83ea6940e890b0be675a2588db68b2582319f48c3b4e06535a50ea6ee45f7e63e4309f8754473245c47a0372632378d1d73d901310f295a92f26f17b
- languageName: node
- linkType: hard
-
-"postcss-js@npm:^4.0.1":
- version: 4.0.1
- resolution: "postcss-js@npm:4.0.1"
- dependencies:
- camelcase-css: "npm:^2.0.1"
- peerDependencies:
- postcss: ^8.4.21
- checksum: 10c0/af35d55cb873b0797d3b42529514f5318f447b134541844285c9ac31a17497297eb72296902967911bb737a75163441695737300ce2794e3bd8c70c13a3b106e
- languageName: node
- linkType: hard
-
-"postcss-load-config@npm:^4.0.2":
- version: 4.0.2
- resolution: "postcss-load-config@npm:4.0.2"
- dependencies:
- lilconfig: "npm:^3.0.0"
- yaml: "npm:^2.3.4"
- peerDependencies:
- postcss: ">=8.0.9"
- ts-node: ">=9.0.0"
- peerDependenciesMeta:
- postcss:
- optional: true
- ts-node:
- optional: true
- checksum: 10c0/3d7939acb3570b0e4b4740e483d6e555a3e2de815219cb8a3c8fc03f575a6bde667443aa93369c0be390af845cb84471bf623e24af833260de3a105b78d42519
- languageName: node
- linkType: hard
-
-"postcss-nested@npm:^6.0.1, postcss-nested@npm:^6.2.0":
- version: 6.2.0
- resolution: "postcss-nested@npm:6.2.0"
- dependencies:
- postcss-selector-parser: "npm:^6.1.1"
- peerDependencies:
- postcss: ^8.2.14
- checksum: 10c0/7f9c3f2d764191a39364cbdcec350f26a312431a569c9ef17408021424726b0d67995ff5288405e3724bb7152a4c92f73c027e580ec91e798800ed3c52e2bc6e
- languageName: node
- linkType: hard
-
-"postcss-selector-parser@npm:^6.1.1, postcss-selector-parser@npm:^6.1.2":
- version: 6.1.2
- resolution: "postcss-selector-parser@npm:6.1.2"
- dependencies:
- cssesc: "npm:^3.0.0"
- util-deprecate: "npm:^1.0.2"
- checksum: 10c0/523196a6bd8cf660bdf537ad95abd79e546d54180f9afb165a4ab3e651ac705d0f8b8ce6b3164fb9e3279ce482c5f751a69eb2d3a1e8eb0fd5e82294fb3ef13e
- languageName: node
- linkType: hard
-
-"postcss-value-parser@npm:^4.0.0, postcss-value-parser@npm:^4.2.0":
- version: 4.2.0
- resolution: "postcss-value-parser@npm:4.2.0"
- checksum: 10c0/f4142a4f56565f77c1831168e04e3effd9ffcc5aebaf0f538eee4b2d465adfd4b85a44257bb48418202a63806a7da7fe9f56c330aebb3cac898e46b4cbf49161
- languageName: node
- linkType: hard
-
-"postcss@npm:8.4.31":
- version: 8.4.31
- resolution: "postcss@npm:8.4.31"
- dependencies:
- nanoid: "npm:^3.3.6"
- picocolors: "npm:^1.0.0"
- source-map-js: "npm:^1.0.2"
- checksum: 10c0/748b82e6e5fc34034dcf2ae88ea3d11fd09f69b6c50ecdd3b4a875cfc7cdca435c958b211e2cb52355422ab6fccb7d8f2f2923161d7a1b281029e4a913d59acf
- languageName: node
- linkType: hard
-
-"postcss@npm:^8, postcss@npm:^8.4.43, postcss@npm:^8.4.47":
- version: 8.5.3
- resolution: "postcss@npm:8.5.3"
- dependencies:
- nanoid: "npm:^3.3.8"
- picocolors: "npm:^1.1.1"
- source-map-js: "npm:^1.2.1"
- checksum: 10c0/b75510d7b28c3ab728c8733dd01538314a18c52af426f199a3c9177e63eb08602a3938bfb66b62dc01350b9aed62087eabbf229af97a1659eb8d3513cec823b3
- languageName: node
- linkType: hard
-
-"posthog-js@npm:^1.194.6":
- version: 1.240.6
- resolution: "posthog-js@npm:1.240.6"
- dependencies:
- core-js: "npm:^3.38.1"
- fflate: "npm:^0.4.8"
- preact: "npm:^10.19.3"
- web-vitals: "npm:^4.2.4"
- peerDependencies:
- "@rrweb/types": 2.0.0-alpha.17
- rrweb-snapshot: 2.0.0-alpha.17
- peerDependenciesMeta:
- "@rrweb/types":
- optional: true
- rrweb-snapshot:
- optional: true
- checksum: 10c0/9231ac2e715cc8804b825b478d14d76e409e74622d6b94d4c306891cb437c3e2576ebcd5e77cc82d15105e2d7cb11490ecbb77bfc790658752bda968ca0a717b
- languageName: node
- linkType: hard
-
-"preact@npm:^10.19.3":
- version: 10.26.4
- resolution: "preact@npm:10.26.4"
- checksum: 10c0/8abf64ec6f9773f0c4fb3746b7caa3d83e2de4d464928e7f64fc779c96ef9e135d23c1ade8d0923c9191f6d203d9f22bb92d8a50dc0f4f310073dfaa51a56922
- languageName: node
- linkType: hard
-
-"prelude-ls@npm:^1.2.1":
- version: 1.2.1
- resolution: "prelude-ls@npm:1.2.1"
- checksum: 10c0/b00d617431e7886c520a6f498a2e14c75ec58f6d93ba48c3b639cf241b54232d90daa05d83a9e9b9fef6baa63cb7e1e4602c2372fea5bc169668401eb127d0cd
- languageName: node
- linkType: hard
-
-"prettier@npm:^3.2.5":
- version: 3.5.3
- resolution: "prettier@npm:3.5.3"
- bin:
- prettier: bin/prettier.cjs
- checksum: 10c0/3880cb90b9dc0635819ab52ff571518c35bd7f15a6e80a2054c05dbc8a3aa6e74f135519e91197de63705bcb38388ded7e7230e2178432a1468005406238b877
- languageName: node
- linkType: hard
-
-"pretty-bytes@npm:^6.1.1":
- version: 6.1.1
- resolution: "pretty-bytes@npm:6.1.1"
- checksum: 10c0/c7a660b933355f3b4587ad3f001c266a8dd6afd17db9f89ebc50812354bb142df4b9600396ba5999bdb1f9717300387dc311df91895c5f0f2a1780e22495b5f8
- languageName: node
- linkType: hard
-
-"pretty-format@npm:^27.0.2":
- version: 27.5.1
- resolution: "pretty-format@npm:27.5.1"
- dependencies:
- ansi-regex: "npm:^5.0.1"
- ansi-styles: "npm:^5.0.0"
- react-is: "npm:^17.0.1"
- checksum: 10c0/0cbda1031aa30c659e10921fa94e0dd3f903ecbbbe7184a729ad66f2b6e7f17891e8c7d7654c458fa4ccb1a411ffb695b4f17bbcd3fe075fabe181027c4040ed
- languageName: node
- linkType: hard
-
-"pretty-ms@npm:^8.0.0":
- version: 8.0.0
- resolution: "pretty-ms@npm:8.0.0"
- dependencies:
- parse-ms: "npm:^3.0.0"
- checksum: 10c0/e960d633ecca45445cf5c6dffc0f5e4bef6744c92449ab0e8c6c704800675ab71e181c5e02ece5265e02137a33e313d3f3e355fbf8ea30b4b5b23de423329f8d
- languageName: node
- linkType: hard
-
-"prismjs@npm:^1.29.0":
- version: 1.30.0
- resolution: "prismjs@npm:1.30.0"
- checksum: 10c0/f56205bfd58ef71ccfcbcb691fd0eb84adc96c6ff21b0b69fc6fdcf02be42d6ef972ba4aed60466310de3d67733f6a746f89f2fb79c00bf217406d465b3e8f23
- languageName: node
- linkType: hard
-
-"proc-log@npm:^5.0.0":
- version: 5.0.0
- resolution: "proc-log@npm:5.0.0"
- checksum: 10c0/bbe5edb944b0ad63387a1d5b1911ae93e05ce8d0f60de1035b218cdcceedfe39dbd2c697853355b70f1a090f8f58fe90da487c85216bf9671f9499d1a897e9e3
- languageName: node
- linkType: hard
-
-"process@npm:^0.11.1":
- version: 0.11.10
- resolution: "process@npm:0.11.10"
- checksum: 10c0/40c3ce4b7e6d4b8c3355479df77aeed46f81b279818ccdc500124e6a5ab882c0cc81ff7ea16384873a95a74c4570b01b120f287abbdd4c877931460eca6084b3
- languageName: node
- linkType: hard
-
-"promise-retry@npm:^2.0.1":
- version: 2.0.1
- resolution: "promise-retry@npm:2.0.1"
- dependencies:
- err-code: "npm:^2.0.2"
- retry: "npm:^0.12.0"
- checksum: 10c0/9c7045a1a2928094b5b9b15336dcd2a7b1c052f674550df63cc3f36cd44028e5080448175b6f6ca32b642de81150f5e7b1a98b728f15cb069f2dd60ac2616b96
- languageName: node
- linkType: hard
-
-"prop-types@npm:^15.8.1":
- version: 15.8.1
- resolution: "prop-types@npm:15.8.1"
- dependencies:
- loose-envify: "npm:^1.4.0"
- object-assign: "npm:^4.1.1"
- react-is: "npm:^16.13.1"
- checksum: 10c0/59ece7ca2fb9838031d73a48d4becb9a7cc1ed10e610517c7d8f19a1e02fa47f7c27d557d8a5702bec3cfeccddc853579832b43f449e54635803f277b1c78077
- languageName: node
- linkType: hard
-
-"property-information@npm:^6.0.0":
- version: 6.5.0
- resolution: "property-information@npm:6.5.0"
- checksum: 10c0/981e0f9cc2e5acdb414a6fd48a99dd0fd3a4079e7a91ab41cf97a8534cf43e0e0bc1ffada6602a1b3d047a33db8b5fc2ef46d863507eda712d5ceedac443f0ef
- languageName: node
- linkType: hard
-
-"property-information@npm:^7.0.0":
- version: 7.1.0
- resolution: "property-information@npm:7.1.0"
- checksum: 10c0/e0fe22cff26103260ad0e82959229106563fa115a54c4d6c183f49d88054e489cc9f23452d3ad584179dc13a8b7b37411a5df873746b5e4086c865874bfa968e
- languageName: node
- linkType: hard
-
-"protocols@npm:^2.0.0, protocols@npm:^2.0.1":
- version: 2.0.2
- resolution: "protocols@npm:2.0.2"
- checksum: 10c0/b87d78c1fcf038d33691da28447ce94011d5c7f0c7fd25bcb5fb4d975991c99117873200c84f4b6a9d7f8b9092713a064356236960d1473a7d6fcd4228897b60
- languageName: node
- linkType: hard
-
-"proxy-from-env@npm:^1.1.0":
- version: 1.1.0
- resolution: "proxy-from-env@npm:1.1.0"
- checksum: 10c0/fe7dd8b1bdbbbea18d1459107729c3e4a2243ca870d26d34c2c1bcd3e4425b7bcc5112362df2d93cc7fb9746f6142b5e272fd1cc5c86ddf8580175186f6ad42b
- languageName: node
- linkType: hard
-
-"pseudomap@npm:^1.0.2":
- version: 1.0.2
- resolution: "pseudomap@npm:1.0.2"
- checksum: 10c0/5a91ce114c64ed3a6a553aa7d2943868811377388bb31447f9d8028271bae9b05b340fe0b6961a64e45b9c72946aeb0a4ab635e8f7cb3715ffd0ff2beeb6a679
- languageName: node
- linkType: hard
-
-"punycode@npm:^2.1.0":
- version: 2.3.1
- resolution: "punycode@npm:2.3.1"
- checksum: 10c0/14f76a8206bc3464f794fb2e3d3cc665ae416c01893ad7a02b23766eb07159144ee612ad67af5e84fa4479ccfe67678c4feb126b0485651b302babf66f04f9e9
- languageName: node
- linkType: hard
-
-"quansync@npm:^0.2.8":
- version: 0.2.10
- resolution: "quansync@npm:0.2.10"
- checksum: 10c0/f86f1d644f812a3a7c42de79eb401c47a5a67af82a9adff8a8afb159325e03e00f77cebbf42af6340a0bd47bd0c1fbe999e7caf7e1bbb30d7acb00c8729b7530
- languageName: node
- linkType: hard
-
-"queue-microtask@npm:^1.2.2":
- version: 1.2.3
- resolution: "queue-microtask@npm:1.2.3"
- checksum: 10c0/900a93d3cdae3acd7d16f642c29a642aea32c2026446151f0778c62ac089d4b8e6c986811076e1ae180a694cedf077d453a11b58ff0a865629a4f82ab558e102
- languageName: node
- linkType: hard
-
-"react-dom@npm:^18":
- version: 18.3.1
- resolution: "react-dom@npm:18.3.1"
- dependencies:
- loose-envify: "npm:^1.1.0"
- scheduler: "npm:^0.23.2"
- peerDependencies:
- react: ^18.3.1
- checksum: 10c0/a752496c1941f958f2e8ac56239172296fcddce1365ce45222d04a1947e0cc5547df3e8447f855a81d6d39f008d7c32eab43db3712077f09e3f67c4874973e85
- languageName: node
- linkType: hard
-
-"react-hook-form@npm:^7.51.1":
- version: 7.54.2
- resolution: "react-hook-form@npm:7.54.2"
- peerDependencies:
- react: ^16.8.0 || ^17 || ^18 || ^19
- checksum: 10c0/6eebead2900e3d369a989e7a20429f390dc75b3897142aa3107f1f6dabb9ae64fed201ea98cdcd8676e40466c97748aeb0c0d83264f5bd3a84dbc0b8e4863415
- languageName: node
- linkType: hard
-
-"react-icons@npm:^5.0.1":
- version: 5.5.0
- resolution: "react-icons@npm:5.5.0"
- peerDependencies:
- react: "*"
- checksum: 10c0/a24309bfc993c19cbcbfc928157e53a137851822779977b9588f6dd41ffc4d11ebc98b447f4039b0d309a858f0a42980f6bfb4477fb19f9f2d1bc2e190fcf79c
- languageName: node
- linkType: hard
-
-"react-is@npm:^16.13.1":
- version: 16.13.1
- resolution: "react-is@npm:16.13.1"
- checksum: 10c0/33977da7a5f1a287936a0c85639fec6ca74f4f15ef1e59a6bc20338fc73dc69555381e211f7a3529b8150a1f71e4225525b41b60b52965bda53ce7d47377ada1
- languageName: node
- linkType: hard
-
-"react-is@npm:^17.0.1":
- version: 17.0.2
- resolution: "react-is@npm:17.0.2"
- checksum: 10c0/2bdb6b93fbb1820b024b496042cce405c57e2f85e777c9aabd55f9b26d145408f9f74f5934676ffdc46f3dcff656d78413a6e43968e7b3f92eea35b3052e9053
- languageName: node
- linkType: hard
-
-"react-markdown@npm:^9.0.1":
- version: 9.1.0
- resolution: "react-markdown@npm:9.1.0"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- "@types/mdast": "npm:^4.0.0"
- devlop: "npm:^1.0.0"
- hast-util-to-jsx-runtime: "npm:^2.0.0"
- html-url-attributes: "npm:^3.0.0"
- mdast-util-to-hast: "npm:^13.0.0"
- remark-parse: "npm:^11.0.0"
- remark-rehype: "npm:^11.0.0"
- unified: "npm:^11.0.0"
- unist-util-visit: "npm:^5.0.0"
- vfile: "npm:^6.0.0"
- peerDependencies:
- "@types/react": ">=18"
- react: ">=18"
- checksum: 10c0/5bd645d39379f776d64588105f4060c390c3c8e4ff048552c9fa0ad31b756bb3ff7c11081542dc58d840ccf183a6dd4fd4d4edab44d8c24dee8b66551a5fd30d
- languageName: node
- linkType: hard
-
-"react-remove-scroll-bar@npm:^2.3.7":
- version: 2.3.8
- resolution: "react-remove-scroll-bar@npm:2.3.8"
- dependencies:
- react-style-singleton: "npm:^2.2.2"
- tslib: "npm:^2.0.0"
- peerDependencies:
- "@types/react": "*"
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/9a0675c66cbb52c325bdbfaed80987a829c4504cefd8ff2dd3b6b3afc9a1500b8ec57b212e92c1fb654396d07bbe18830a8146fe77677d2a29ce40b5e1f78654
- languageName: node
- linkType: hard
-
-"react-remove-scroll@npm:^2.6.3":
- version: 2.6.3
- resolution: "react-remove-scroll@npm:2.6.3"
- dependencies:
- react-remove-scroll-bar: "npm:^2.3.7"
- react-style-singleton: "npm:^2.2.3"
- tslib: "npm:^2.1.0"
- use-callback-ref: "npm:^1.3.3"
- use-sidecar: "npm:^1.1.3"
- peerDependencies:
- "@types/react": "*"
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/068e9704ff26816fffc4c8903e2c6c8df7291ee08615d7c1ab0cf8751f7080e2c5a5d78ef5d908b11b9cfc189f176d312e44cb02ea291ca0466d8283b479b438
- languageName: node
- linkType: hard
-
-"react-share@npm:^5.1.0":
- version: 5.2.2
- resolution: "react-share@npm:5.2.2"
- dependencies:
- classnames: "npm:^2.3.2"
- jsonp: "npm:^0.2.1"
- peerDependencies:
- react: ^17 || ^18 || ^19
- checksum: 10c0/39db916c6263da49dbdf0854c7b86329df021bea7ad264c692d7b39c3e08f227a79d73a651cea05d9864380ed5b770d613c98bae0db335576377faf7c48e411c
- languageName: node
- linkType: hard
-
-"react-style-singleton@npm:^2.2.2, react-style-singleton@npm:^2.2.3":
- version: 2.2.3
- resolution: "react-style-singleton@npm:2.2.3"
- dependencies:
- get-nonce: "npm:^1.0.0"
- tslib: "npm:^2.0.0"
- peerDependencies:
- "@types/react": "*"
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/841938ff16d16a6b76895f4cb2e1fea957e5fe3b30febbf03a54892dae1c9153f2383e231dea0b3ba41192ad2f2849448fa859caccd288943bce32639e971bee
- languageName: node
- linkType: hard
-
-"react-tweet@npm:^3.2.0":
- version: 3.2.2
- resolution: "react-tweet@npm:3.2.2"
- dependencies:
- "@swc/helpers": "npm:^0.5.3"
- clsx: "npm:^2.0.0"
- swr: "npm:^2.2.4"
- peerDependencies:
- react: ^18.0.0 || ^19.0.0
- react-dom: ^18.0.0 || ^19.0.0
- checksum: 10c0/bec5ad7139e0f1eb768dfb583250dfa515e930dae030d0dbc9fce186788e01c2e841903d46c46eb8de065999adf764894c9453d3196bb83159b3ff92621e2639
- languageName: node
- linkType: hard
-
-"react@npm:^18":
- version: 18.3.1
- resolution: "react@npm:18.3.1"
- dependencies:
- loose-envify: "npm:^1.1.0"
- checksum: 10c0/283e8c5efcf37802c9d1ce767f302dd569dd97a70d9bb8c7be79a789b9902451e0d16334b05d73299b20f048cbc3c7d288bbbde10b701fa194e2089c237dbea3
- languageName: node
- linkType: hard
-
-"read-cache@npm:^1.0.0":
- version: 1.0.0
- resolution: "read-cache@npm:1.0.0"
- dependencies:
- pify: "npm:^2.3.0"
- checksum: 10c0/90cb2750213c7dd7c80cb420654344a311fdec12944e81eb912cd82f1bc92aea21885fa6ce442e3336d9fccd663b8a7a19c46d9698e6ca55620848ab932da814
- languageName: node
- linkType: hard
-
-"readable-stream@npm:^3.4.0":
- version: 3.6.2
- resolution: "readable-stream@npm:3.6.2"
- dependencies:
- inherits: "npm:^2.0.3"
- string_decoder: "npm:^1.1.1"
- util-deprecate: "npm:^1.0.1"
- checksum: 10c0/e37be5c79c376fdd088a45fa31ea2e423e5d48854be7a22a58869b4e84d25047b193f6acb54f1012331e1bcd667ffb569c01b99d36b0bd59658fb33f513511b7
- languageName: node
- linkType: hard
-
-"readdirp@npm:^4.0.1":
- version: 4.1.2
- resolution: "readdirp@npm:4.1.2"
- checksum: 10c0/60a14f7619dec48c9c850255cd523e2717001b0e179dc7037cfa0895da7b9e9ab07532d324bfb118d73a710887d1e35f79c495fa91582784493e085d18c72c62
- languageName: node
- linkType: hard
-
-"readdirp@npm:~3.6.0":
- version: 3.6.0
- resolution: "readdirp@npm:3.6.0"
- dependencies:
- picomatch: "npm:^2.2.1"
- checksum: 10c0/6fa848cf63d1b82ab4e985f4cf72bd55b7dcfd8e0a376905804e48c3634b7e749170940ba77b32804d5fe93b3cc521aa95a8d7e7d725f830da6d93f3669ce66b
- languageName: node
- linkType: hard
-
-"reading-time@npm:^1.3.0":
- version: 1.5.0
- resolution: "reading-time@npm:1.5.0"
- checksum: 10c0/0f730852fd4fb99e5f78c5b0cf36ab8c3fa15db96f87d9563843f6fd07a47864273ade539ebb184b785b728cde81a70283aa2d9b80cba5ca03b81868be03cabc
- languageName: node
- linkType: hard
-
-"rechoir@npm:^0.8.0":
- version: 0.8.0
- resolution: "rechoir@npm:0.8.0"
- dependencies:
- resolve: "npm:^1.20.0"
- checksum: 10c0/1a30074124a22abbd5d44d802dac26407fa72a0a95f162aa5504ba8246bc5452f8b1a027b154d9bdbabcd8764920ff9333d934c46a8f17479c8912e92332f3ff
- languageName: node
- linkType: hard
-
-"redent@npm:^3.0.0":
- version: 3.0.0
- resolution: "redent@npm:3.0.0"
- dependencies:
- indent-string: "npm:^4.0.0"
- strip-indent: "npm:^3.0.0"
- checksum: 10c0/d64a6b5c0b50eb3ddce3ab770f866658a2b9998c678f797919ceb1b586bab9259b311407280bd80b804e2a7c7539b19238ae6a2a20c843f1a7fcff21d48c2eae
- languageName: node
- linkType: hard
-
-"reflect.getprototypeof@npm:^1.0.6, reflect.getprototypeof@npm:^1.0.9":
- version: 1.0.10
- resolution: "reflect.getprototypeof@npm:1.0.10"
- dependencies:
- call-bind: "npm:^1.0.8"
- define-properties: "npm:^1.2.1"
- es-abstract: "npm:^1.23.9"
- es-errors: "npm:^1.3.0"
- es-object-atoms: "npm:^1.0.0"
- get-intrinsic: "npm:^1.2.7"
- get-proto: "npm:^1.0.1"
- which-builtin-type: "npm:^1.2.1"
- checksum: 10c0/7facec28c8008876f8ab98e80b7b9cb4b1e9224353fd4756dda5f2a4ab0d30fa0a5074777c6df24e1e0af463a2697513b0a11e548d99cf52f21f7bc6ba48d3ac
- languageName: node
- linkType: hard
-
-"regexp.prototype.flags@npm:^1.5.3":
- version: 1.5.4
- resolution: "regexp.prototype.flags@npm:1.5.4"
- dependencies:
- call-bind: "npm:^1.0.8"
- define-properties: "npm:^1.2.1"
- es-errors: "npm:^1.3.0"
- get-proto: "npm:^1.0.1"
- gopd: "npm:^1.2.0"
- set-function-name: "npm:^2.0.2"
- checksum: 10c0/83b88e6115b4af1c537f8dabf5c3744032cb875d63bc05c288b1b8c0ef37cbe55353f95d8ca817e8843806e3e150b118bc624e4279b24b4776b4198232735a77
- languageName: node
- linkType: hard
-
-"rehype-external-links@npm:^3.0.0":
- version: 3.0.0
- resolution: "rehype-external-links@npm:3.0.0"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- "@ungap/structured-clone": "npm:^1.0.0"
- hast-util-is-element: "npm:^3.0.0"
- is-absolute-url: "npm:^4.0.0"
- space-separated-tokens: "npm:^2.0.0"
- unist-util-visit: "npm:^5.0.0"
- checksum: 10c0/486b5db73d8fe72611d62b4eb0b56ec71025ea32bba764ad54473f714ca627be75e057ac29243763f85a77c3810f31727ce3e03c975b3803c1c98643d038e9ae
- languageName: node
- linkType: hard
-
-"rehype-format@npm:^5.0.0":
- version: 5.0.1
- resolution: "rehype-format@npm:5.0.1"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- hast-util-format: "npm:^1.0.0"
- checksum: 10c0/e87aac3e318ef96688785e108315b23762681f1a834ae52ac449b9787ff63e8435aceb70354fb629d2d733daca4f65889ddcdf0cd44b684ea4f481e8fac750e3
- languageName: node
- linkType: hard
-
-"rehype-highlight@npm:^7.0.0":
- version: 7.0.2
- resolution: "rehype-highlight@npm:7.0.2"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- hast-util-to-text: "npm:^4.0.0"
- lowlight: "npm:^3.0.0"
- unist-util-visit: "npm:^5.0.0"
- vfile: "npm:^6.0.0"
- checksum: 10c0/b62effff554f9a3f2ad8688c675bc7580e6dcf20a6988f86a25e95f1adea2f4900f8a13f96ec7db6a543314aed28267e4057f8dbc71c02a76a9511a716e88da2
- languageName: node
- linkType: hard
-
-"rehype-katex@npm:^7.0.0":
- version: 7.0.1
- resolution: "rehype-katex@npm:7.0.1"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- "@types/katex": "npm:^0.16.0"
- hast-util-from-html-isomorphic: "npm:^2.0.0"
- hast-util-to-text: "npm:^4.0.0"
- katex: "npm:^0.16.0"
- unist-util-visit-parents: "npm:^6.0.0"
- vfile: "npm:^6.0.0"
- checksum: 10c0/73c770319536128b75055d904d06951789d00a0552c11724c0dac2e244dcb21041630552d118a11cc42233fdcd1bfee525e78a0020fde635bd916cceb281dfb1
- languageName: node
- linkType: hard
-
-"rehype-pretty-code@npm:0.9.11":
- version: 0.9.11
- resolution: "rehype-pretty-code@npm:0.9.11"
- dependencies:
- "@types/hast": "npm:^2.0.0"
- hash-obj: "npm:^4.0.0"
- parse-numeric-range: "npm:^1.3.0"
- peerDependencies:
- shiki: "*"
- checksum: 10c0/10d9b87df6b9a963f6e650b90908347e6cce8f521bbc220ee3a101e82025d7721e2c108d90922f1a16f9d08a1b18f898ec241a12a12f5e931548e3fb528039d9
- languageName: node
- linkType: hard
-
-"rehype-raw@npm:^7.0.0":
- version: 7.0.0
- resolution: "rehype-raw@npm:7.0.0"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- hast-util-raw: "npm:^9.0.0"
- vfile: "npm:^6.0.0"
- checksum: 10c0/1435b4b6640a5bc3abe3b2133885c4dbff5ef2190ef9cfe09d6a63f74dd7d7ffd0cede70603278560ccf1acbfb9da9faae4b68065a28bc5aa88ad18e40f32d52
- languageName: node
- linkType: hard
-
-"rehype-sanitize@npm:^6.0.0":
- version: 6.0.0
- resolution: "rehype-sanitize@npm:6.0.0"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- hast-util-sanitize: "npm:^5.0.0"
- checksum: 10c0/43d6c056e63c994cf56e5ee0e157052d2030dc5ac160845ee494af9a26e5906bf5ec5af56c7d90c99f9c4dc0091e45a48a168618135fb6c64a76481ad3c449e9
- languageName: node
- linkType: hard
-
-"rehype-stringify@npm:^10.0.0":
- version: 10.0.1
- resolution: "rehype-stringify@npm:10.0.1"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- hast-util-to-html: "npm:^9.0.0"
- unified: "npm:^11.0.0"
- checksum: 10c0/c643ae3a4862465033e0f1e9f664433767279b4ee9296570746970a79940417ec1fb1997a513659aab97063cf971c5d97e0af8129f590719f01628c8aa480765
- languageName: node
- linkType: hard
-
-"remark-gfm@npm:^3.0.1":
- version: 3.0.1
- resolution: "remark-gfm@npm:3.0.1"
- dependencies:
- "@types/mdast": "npm:^3.0.0"
- mdast-util-gfm: "npm:^2.0.0"
- micromark-extension-gfm: "npm:^2.0.0"
- unified: "npm:^10.0.0"
- checksum: 10c0/53c4e82204f82f81949a170efdeb49d3c45137b7bca06a7ff857a483aac1a44b55ef0de8fb1bbe4f1292f2a378058e2e42e644f2c61f3e0cdc3e56afa4ec2a2c
- languageName: node
- linkType: hard
-
-"remark-gfm@npm:^4.0.0":
- version: 4.0.1
- resolution: "remark-gfm@npm:4.0.1"
- dependencies:
- "@types/mdast": "npm:^4.0.0"
- mdast-util-gfm: "npm:^3.0.0"
- micromark-extension-gfm: "npm:^3.0.0"
- remark-parse: "npm:^11.0.0"
- remark-stringify: "npm:^11.0.0"
- unified: "npm:^11.0.0"
- checksum: 10c0/427ecc6af3e76222662061a5f670a3e4e33ec5fffe2cabf04034da6a3f9a1bda1fc023e838a636385ba314e66e2bebbf017ca61ebea357eb0f5200fe0625a4b7
- languageName: node
- linkType: hard
-
-"remark-math@npm:^5.1.1":
- version: 5.1.1
- resolution: "remark-math@npm:5.1.1"
- dependencies:
- "@types/mdast": "npm:^3.0.0"
- mdast-util-math: "npm:^2.0.0"
- micromark-extension-math: "npm:^2.0.0"
- unified: "npm:^10.0.0"
- checksum: 10c0/e61e314398e65d1ef9343cce37bdb8e94697772d53f1b9e48f815cece35033b4d41db81766696135558c6de40f2ad86877b49891daec6c7b1453dba0e034a9dc
- languageName: node
- linkType: hard
-
-"remark-mdx@npm:^2.0.0":
- version: 2.3.0
- resolution: "remark-mdx@npm:2.3.0"
- dependencies:
- mdast-util-mdx: "npm:^2.0.0"
- micromark-extension-mdxjs: "npm:^1.0.0"
- checksum: 10c0/2688bbf03094a9cd17cc86afb6cf0270e86ffc696a2fe25ccb1befb84eb0864d281388dc560b585e05e20f94a994c9fa88492430d2ba703a2fef6918bca4c36b
- languageName: node
- linkType: hard
-
-"remark-parse@npm:^10.0.0":
- version: 10.0.2
- resolution: "remark-parse@npm:10.0.2"
- dependencies:
- "@types/mdast": "npm:^3.0.0"
- mdast-util-from-markdown: "npm:^1.0.0"
- unified: "npm:^10.0.0"
- checksum: 10c0/30cb8f2790380b1c7370a1c66cda41f33a7dc196b9e440a00e2675037bca55aea868165a8204e0cdbacc27ef4a3bdb7d45879826bd6efa07d9fdf328cb67a332
- languageName: node
- linkType: hard
-
-"remark-parse@npm:^11.0.0":
- version: 11.0.0
- resolution: "remark-parse@npm:11.0.0"
- dependencies:
- "@types/mdast": "npm:^4.0.0"
- mdast-util-from-markdown: "npm:^2.0.0"
- micromark-util-types: "npm:^2.0.0"
- unified: "npm:^11.0.0"
- checksum: 10c0/6eed15ddb8680eca93e04fcb2d1b8db65a743dcc0023f5007265dda558b09db595a087f622062ccad2630953cd5cddc1055ce491d25a81f3317c858348a8dd38
- languageName: node
- linkType: hard
-
-"remark-reading-time@npm:^2.0.1":
- version: 2.0.1
- resolution: "remark-reading-time@npm:2.0.1"
- dependencies:
- estree-util-is-identifier-name: "npm:^2.0.0"
- estree-util-value-to-estree: "npm:^1.3.0"
- reading-time: "npm:^1.3.0"
- unist-util-visit: "npm:^3.1.0"
- checksum: 10c0/9efab1883a326964822442af234c3e7776596267431edae42ac3717887af60a1cd145d07cb8a0329fb5e4cab92ae4b3ca9dc058ee453139aa2978dc4c56c4527
- languageName: node
- linkType: hard
-
-"remark-rehype@npm:^10.0.0":
- version: 10.1.0
- resolution: "remark-rehype@npm:10.1.0"
- dependencies:
- "@types/hast": "npm:^2.0.0"
- "@types/mdast": "npm:^3.0.0"
- mdast-util-to-hast: "npm:^12.1.0"
- unified: "npm:^10.0.0"
- checksum: 10c0/803e658c9b51a9b53ee2ada42ff82e8e570444bb97c873e0d602c2d8dcb69a774fd22bd6f26643dfd5ab4c181059ea6c9fb9a99a2d7f9665f3f11bef1a1489bd
- languageName: node
- linkType: hard
-
-"remark-rehype@npm:^11.0.0, remark-rehype@npm:^11.1.0":
- version: 11.1.1
- resolution: "remark-rehype@npm:11.1.1"
- dependencies:
- "@types/hast": "npm:^3.0.0"
- "@types/mdast": "npm:^4.0.0"
- mdast-util-to-hast: "npm:^13.0.0"
- unified: "npm:^11.0.0"
- vfile: "npm:^6.0.0"
- checksum: 10c0/68f986e8ee758d415e93babda2a0d89477c15b7c200edc23b8b1d914dd6e963c5fc151a11cbbbcfa7dd237367ff3ef86e302be90f31f37a17b0748668bd8c65b
- languageName: node
- linkType: hard
-
-"remark-stringify@npm:^11.0.0":
- version: 11.0.0
- resolution: "remark-stringify@npm:11.0.0"
- dependencies:
- "@types/mdast": "npm:^4.0.0"
- mdast-util-to-markdown: "npm:^2.0.0"
- unified: "npm:^11.0.0"
- checksum: 10c0/0cdb37ce1217578f6f847c7ec9f50cbab35df5b9e3903d543e74b405404e67c07defcb23cd260a567b41b769400f6de03c2c3d9cd6ae7a6707d5c8d89ead489f
- languageName: node
- linkType: hard
-
-"remove-accents@npm:0.5.0":
- version: 0.5.0
- resolution: "remove-accents@npm:0.5.0"
- checksum: 10c0/a75321aa1b53d9abe82637115a492770bfe42bb38ed258be748bf6795871202bc8b4badff22013494a7029f5a241057ad8d3f72adf67884dbe15a9e37e87adc4
- languageName: node
- linkType: hard
-
-"require-from-string@npm:^2.0.2":
- version: 2.0.2
- resolution: "require-from-string@npm:2.0.2"
- checksum: 10c0/aaa267e0c5b022fc5fd4eef49d8285086b15f2a1c54b28240fdf03599cbd9c26049fee3eab894f2e1f6ca65e513b030a7c264201e3f005601e80c49fb2937ce2
- languageName: node
- linkType: hard
-
-"resolve-dir@npm:^1.0.0, resolve-dir@npm:^1.0.1":
- version: 1.0.1
- resolution: "resolve-dir@npm:1.0.1"
- dependencies:
- expand-tilde: "npm:^2.0.0"
- global-modules: "npm:^1.0.0"
- checksum: 10c0/8197ed13e4a51d9cd786ef6a09fc83450db016abe7ef3311ca39389b3e508d77c26fe0cf0483a9b407b8caa2764bb5ccc52cf6a017ded91492a416475a56066f
- languageName: node
- linkType: hard
-
-"resolve-from@npm:^4.0.0":
- version: 4.0.0
- resolution: "resolve-from@npm:4.0.0"
- checksum: 10c0/8408eec31a3112ef96e3746c37be7d64020cda07c03a920f5024e77290a218ea758b26ca9529fd7b1ad283947f34b2291c1c0f6aa0ed34acfdda9c6014c8d190
- languageName: node
- linkType: hard
-
-"resolve-pkg-maps@npm:^1.0.0":
- version: 1.0.0
- resolution: "resolve-pkg-maps@npm:1.0.0"
- checksum: 10c0/fb8f7bbe2ca281a73b7ef423a1cbc786fb244bd7a95cbe5c3fba25b27d327150beca8ba02f622baea65919a57e061eb5005204daa5f93ed590d9b77463a567ab
- languageName: node
- linkType: hard
-
-"resolve@npm:^1.1.7, resolve@npm:^1.20.0, resolve@npm:^1.22.4, resolve@npm:^1.22.8":
- version: 1.22.10
- resolution: "resolve@npm:1.22.10"
- dependencies:
- is-core-module: "npm:^2.16.0"
- path-parse: "npm:^1.0.7"
- supports-preserve-symlinks-flag: "npm:^1.0.0"
- bin:
- resolve: bin/resolve
- checksum: 10c0/8967e1f4e2cc40f79b7e080b4582b9a8c5ee36ffb46041dccb20e6461161adf69f843b43067b4a375de926a2cd669157e29a29578191def399dd5ef89a1b5203
- languageName: node
- linkType: hard
-
-"resolve@npm:^2.0.0-next.5":
- version: 2.0.0-next.5
- resolution: "resolve@npm:2.0.0-next.5"
- dependencies:
- is-core-module: "npm:^2.13.0"
- path-parse: "npm:^1.0.7"
- supports-preserve-symlinks-flag: "npm:^1.0.0"
- bin:
- resolve: bin/resolve
- checksum: 10c0/a6c33555e3482ea2ec4c6e3d3bf0d78128abf69dca99ae468e64f1e30acaa318fd267fb66c8836b04d558d3e2d6ed875fe388067e7d8e0de647d3c21af21c43a
- languageName: node
- linkType: hard
-
-"resolve@patch:resolve@npm%3A^1.1.7#optional!builtin, resolve@patch:resolve@npm%3A^1.20.0#optional!builtin, resolve@patch:resolve@npm%3A^1.22.4#optional!builtin, resolve@patch:resolve@npm%3A^1.22.8#optional!builtin":
- version: 1.22.10
- resolution: "resolve@patch:resolve@npm%3A1.22.10#optional!builtin::version=1.22.10&hash=c3c19d"
- dependencies:
- is-core-module: "npm:^2.16.0"
- path-parse: "npm:^1.0.7"
- supports-preserve-symlinks-flag: "npm:^1.0.0"
- bin:
- resolve: bin/resolve
- checksum: 10c0/52a4e505bbfc7925ac8f4cd91fd8c4e096b6a89728b9f46861d3b405ac9a1ccf4dcbf8befb4e89a2e11370dacd0160918163885cbc669369590f2f31f4c58939
- languageName: node
- linkType: hard
-
-"resolve@patch:resolve@npm%3A^2.0.0-next.5#optional!builtin":
- version: 2.0.0-next.5
- resolution: "resolve@patch:resolve@npm%3A2.0.0-next.5#optional!builtin::version=2.0.0-next.5&hash=c3c19d"
- dependencies:
- is-core-module: "npm:^2.13.0"
- path-parse: "npm:^1.0.7"
- supports-preserve-symlinks-flag: "npm:^1.0.0"
- bin:
- resolve: bin/resolve
- checksum: 10c0/78ad6edb8309a2bfb720c2c1898f7907a37f858866ce11a5974643af1203a6a6e05b2fa9c53d8064a673a447b83d42569260c306d43628bff5bb101969708355
- languageName: node
- linkType: hard
-
-"restore-cursor@npm:^3.1.0":
- version: 3.1.0
- resolution: "restore-cursor@npm:3.1.0"
- dependencies:
- onetime: "npm:^5.1.0"
- signal-exit: "npm:^3.0.2"
- checksum: 10c0/8051a371d6aa67ff21625fa94e2357bd81ffdc96267f3fb0fc4aaf4534028343836548ef34c240ffa8c25b280ca35eb36be00b3cb2133fa4f51896d7e73c6b4f
- languageName: node
- linkType: hard
-
-"restore-cursor@npm:^5.0.0":
- version: 5.1.0
- resolution: "restore-cursor@npm:5.1.0"
- dependencies:
- onetime: "npm:^7.0.0"
- signal-exit: "npm:^4.1.0"
- checksum: 10c0/c2ba89131eea791d1b25205bdfdc86699767e2b88dee2a590b1a6caa51737deac8bad0260a5ded2f7c074b7db2f3a626bcf1fcf3cdf35974cbeea5e2e6764f60
- languageName: node
- linkType: hard
-
-"retry@npm:^0.12.0":
- version: 0.12.0
- resolution: "retry@npm:0.12.0"
- checksum: 10c0/59933e8501727ba13ad73ef4a04d5280b3717fd650408460c987392efe9d7be2040778ed8ebe933c5cbd63da3dcc37919c141ef8af0a54a6e4fca5a2af177bfe
- languageName: node
- linkType: hard
-
-"reusify@npm:^1.0.4":
- version: 1.1.0
- resolution: "reusify@npm:1.1.0"
- checksum: 10c0/4eff0d4a5f9383566c7d7ec437b671cc51b25963bd61bf127c3f3d3f68e44a026d99b8d2f1ad344afff8d278a8fe70a8ea092650a716d22287e8bef7126bb2fa
- languageName: node
- linkType: hard
-
-"rimraf@npm:^3.0.2":
- version: 3.0.2
- resolution: "rimraf@npm:3.0.2"
- dependencies:
- glob: "npm:^7.1.3"
- bin:
- rimraf: bin.js
- checksum: 10c0/9cb7757acb489bd83757ba1a274ab545eafd75598a9d817e0c3f8b164238dd90eba50d6b848bd4dcc5f3040912e882dc7ba71653e35af660d77b25c381d402e8
- languageName: node
- linkType: hard
-
-"robust-predicates@npm:^3.0.2":
- version: 3.0.2
- resolution: "robust-predicates@npm:3.0.2"
- checksum: 10c0/4ecd53649f1c2d49529c85518f2fa69ffb2f7a4453f7fd19c042421c7b4d76c3efb48bc1c740c8f7049346d7cb58cf08ee0c9adaae595cc23564d360adb1fde4
- languageName: node
- linkType: hard
-
-"rollup@npm:^4.20.0":
- version: 4.40.2
- resolution: "rollup@npm:4.40.2"
- dependencies:
- "@rollup/rollup-android-arm-eabi": "npm:4.40.2"
- "@rollup/rollup-android-arm64": "npm:4.40.2"
- "@rollup/rollup-darwin-arm64": "npm:4.40.2"
- "@rollup/rollup-darwin-x64": "npm:4.40.2"
- "@rollup/rollup-freebsd-arm64": "npm:4.40.2"
- "@rollup/rollup-freebsd-x64": "npm:4.40.2"
- "@rollup/rollup-linux-arm-gnueabihf": "npm:4.40.2"
- "@rollup/rollup-linux-arm-musleabihf": "npm:4.40.2"
- "@rollup/rollup-linux-arm64-gnu": "npm:4.40.2"
- "@rollup/rollup-linux-arm64-musl": "npm:4.40.2"
- "@rollup/rollup-linux-loongarch64-gnu": "npm:4.40.2"
- "@rollup/rollup-linux-powerpc64le-gnu": "npm:4.40.2"
- "@rollup/rollup-linux-riscv64-gnu": "npm:4.40.2"
- "@rollup/rollup-linux-riscv64-musl": "npm:4.40.2"
- "@rollup/rollup-linux-s390x-gnu": "npm:4.40.2"
- "@rollup/rollup-linux-x64-gnu": "npm:4.40.2"
- "@rollup/rollup-linux-x64-musl": "npm:4.40.2"
- "@rollup/rollup-win32-arm64-msvc": "npm:4.40.2"
- "@rollup/rollup-win32-ia32-msvc": "npm:4.40.2"
- "@rollup/rollup-win32-x64-msvc": "npm:4.40.2"
- "@types/estree": "npm:1.0.7"
- fsevents: "npm:~2.3.2"
- dependenciesMeta:
- "@rollup/rollup-android-arm-eabi":
- optional: true
- "@rollup/rollup-android-arm64":
- optional: true
- "@rollup/rollup-darwin-arm64":
- optional: true
- "@rollup/rollup-darwin-x64":
- optional: true
- "@rollup/rollup-freebsd-arm64":
- optional: true
- "@rollup/rollup-freebsd-x64":
- optional: true
- "@rollup/rollup-linux-arm-gnueabihf":
- optional: true
- "@rollup/rollup-linux-arm-musleabihf":
- optional: true
- "@rollup/rollup-linux-arm64-gnu":
- optional: true
- "@rollup/rollup-linux-arm64-musl":
- optional: true
- "@rollup/rollup-linux-loongarch64-gnu":
- optional: true
- "@rollup/rollup-linux-powerpc64le-gnu":
- optional: true
- "@rollup/rollup-linux-riscv64-gnu":
- optional: true
- "@rollup/rollup-linux-riscv64-musl":
- optional: true
- "@rollup/rollup-linux-s390x-gnu":
- optional: true
- "@rollup/rollup-linux-x64-gnu":
- optional: true
- "@rollup/rollup-linux-x64-musl":
- optional: true
- "@rollup/rollup-win32-arm64-msvc":
- optional: true
- "@rollup/rollup-win32-ia32-msvc":
- optional: true
- "@rollup/rollup-win32-x64-msvc":
- optional: true
- fsevents:
- optional: true
- bin:
- rollup: dist/bin/rollup
- checksum: 10c0/cbe9b766891da74fbf7c3b50420bb75102e5c59afc0ea45751f7e43a581d2cd93367763f521f820b72e341cf1f6b9951fbdcd3be67a1b0aa774b754525a8b9c7
- languageName: node
- linkType: hard
-
-"roughjs@npm:^4.6.6":
- version: 4.6.6
- resolution: "roughjs@npm:4.6.6"
- dependencies:
- hachure-fill: "npm:^0.5.2"
- path-data-parser: "npm:^0.1.0"
- points-on-curve: "npm:^0.2.0"
- points-on-path: "npm:^0.2.1"
- checksum: 10c0/68c11bf4516aa014cef2fe52426a9bab237c2f500d13e1a4f13b523cb5723667bf2d92b9619325efdc5bc2a193588ff5af8d51683df17cfb8720e96fe2b92b0c
- languageName: node
- linkType: hard
-
-"run-async@npm:^3.0.0":
- version: 3.0.0
- resolution: "run-async@npm:3.0.0"
- checksum: 10c0/b18b562ae37c3020083dcaae29642e4cc360c824fbfb6b7d50d809a9d5227bb986152d09310255842c8dce40526e82ca768f02f00806c91ba92a8dfa6159cb85
- languageName: node
- linkType: hard
-
-"run-parallel@npm:^1.1.9":
- version: 1.2.0
- resolution: "run-parallel@npm:1.2.0"
- dependencies:
- queue-microtask: "npm:^1.2.2"
- checksum: 10c0/200b5ab25b5b8b7113f9901bfe3afc347e19bb7475b267d55ad0eb86a62a46d77510cb0f232507c9e5d497ebda569a08a9867d0d14f57a82ad5564d991588b39
- languageName: node
- linkType: hard
-
-"rw@npm:1":
- version: 1.3.3
- resolution: "rw@npm:1.3.3"
- checksum: 10c0/b1e1ef37d1e79d9dc7050787866e30b6ddcb2625149276045c262c6b4d53075ddc35f387a856a8e76f0d0df59f4cd58fe24707e40797ebee66e542b840ed6a53
- languageName: node
- linkType: hard
-
-"rxjs@npm:^7.2.0, rxjs@npm:^7.8.1":
- version: 7.8.2
- resolution: "rxjs@npm:7.8.2"
- dependencies:
- tslib: "npm:^2.1.0"
- checksum: 10c0/1fcd33d2066ada98ba8f21fcbbcaee9f0b271de1d38dc7f4e256bfbc6ffcdde68c8bfb69093de7eeb46f24b1fb820620bf0223706cff26b4ab99a7ff7b2e2c45
- languageName: node
- linkType: hard
-
-"sade@npm:^1.7.3":
- version: 1.8.1
- resolution: "sade@npm:1.8.1"
- dependencies:
- mri: "npm:^1.1.0"
- checksum: 10c0/da8a3a5d667ad5ce3bf6d4f054bbb9f711103e5df21003c5a5c1a8a77ce12b640ed4017dd423b13c2307ea7e645adee7c2ae3afe8051b9db16a6f6d3da3f90b1
- languageName: node
- linkType: hard
-
-"safe-array-concat@npm:^1.1.3":
- version: 1.1.3
- resolution: "safe-array-concat@npm:1.1.3"
- dependencies:
- call-bind: "npm:^1.0.8"
- call-bound: "npm:^1.0.2"
- get-intrinsic: "npm:^1.2.6"
- has-symbols: "npm:^1.1.0"
- isarray: "npm:^2.0.5"
- checksum: 10c0/43c86ffdddc461fb17ff8a17c5324f392f4868f3c7dd2c6a5d9f5971713bc5fd755667212c80eab9567595f9a7509cc2f83e590ddaebd1bd19b780f9c79f9a8d
- languageName: node
- linkType: hard
-
-"safe-buffer@npm:~5.2.0":
- version: 5.2.1
- resolution: "safe-buffer@npm:5.2.1"
- checksum: 10c0/6501914237c0a86e9675d4e51d89ca3c21ffd6a31642efeba25ad65720bce6921c9e7e974e5be91a786b25aa058b5303285d3c15dbabf983a919f5f630d349f3
- languageName: node
- linkType: hard
-
-"safe-push-apply@npm:^1.0.0":
- version: 1.0.0
- resolution: "safe-push-apply@npm:1.0.0"
- dependencies:
- es-errors: "npm:^1.3.0"
- isarray: "npm:^2.0.5"
- checksum: 10c0/831f1c9aae7436429e7862c7e46f847dfe490afac20d0ee61bae06108dbf5c745a0de3568ada30ccdd3eeb0864ca8331b2eef703abd69bfea0745b21fd320750
- languageName: node
- linkType: hard
-
-"safe-regex-test@npm:^1.0.3, safe-regex-test@npm:^1.1.0":
- version: 1.1.0
- resolution: "safe-regex-test@npm:1.1.0"
- dependencies:
- call-bound: "npm:^1.0.2"
- es-errors: "npm:^1.3.0"
- is-regex: "npm:^1.2.1"
- checksum: 10c0/f2c25281bbe5d39cddbbce7f86fca5ea9b3ce3354ea6cd7c81c31b006a5a9fff4286acc5450a3b9122c56c33eba69c56b9131ad751457b2b4a585825e6a10665
- languageName: node
- linkType: hard
-
-"safer-buffer@npm:>= 2.1.2 < 3, safer-buffer@npm:>= 2.1.2 < 3.0.0":
- version: 2.1.2
- resolution: "safer-buffer@npm:2.1.2"
- checksum: 10c0/7e3c8b2e88a1841c9671094bbaeebd94448111dd90a81a1f606f3f67708a6ec57763b3b47f06da09fc6054193e0e6709e77325415dc8422b04497a8070fa02d4
- languageName: node
- linkType: hard
-
-"sass@npm:^1.72.0":
- version: 1.88.0
- resolution: "sass@npm:1.88.0"
- dependencies:
- "@parcel/watcher": "npm:^2.4.1"
- chokidar: "npm:^4.0.0"
- immutable: "npm:^5.0.2"
- source-map-js: "npm:>=0.6.2 <2.0.0"
- dependenciesMeta:
- "@parcel/watcher":
- optional: true
- bin:
- sass: sass.js
- checksum: 10c0/dcb16dc29116bfa5a90485d24fd8020d2b0d95155bd2e31285901588729343b59fefe44365c5f146b2ba5a9ebadef90b23a7220b902507bdbd91ca2ba0a0b688
- languageName: node
- linkType: hard
-
-"scheduler@npm:^0.23.2":
- version: 0.23.2
- resolution: "scheduler@npm:0.23.2"
- dependencies:
- loose-envify: "npm:^1.1.0"
- checksum: 10c0/26383305e249651d4c58e6705d5f8425f153211aef95f15161c151f7b8de885f24751b377e4a0b3dd42cce09aad3f87a61dab7636859c0d89b7daf1a1e2a5c78
- languageName: node
- linkType: hard
-
-"scroll-into-view-if-needed@npm:^3.1.0":
- version: 3.1.0
- resolution: "scroll-into-view-if-needed@npm:3.1.0"
- dependencies:
- compute-scroll-into-view: "npm:^3.0.2"
- checksum: 10c0/1f46b090e1e04fcfdef1e384f6d7e615f9f84d4176faf4dbba7347cc0a6e491e5d578eaf4dbe9618dd3d8d38efafde58535b3e00f2a21ce4178c14be364850ff
- languageName: node
- linkType: hard
-
-"section-matter@npm:^1.0.0":
- version: 1.0.0
- resolution: "section-matter@npm:1.0.0"
- dependencies:
- extend-shallow: "npm:^2.0.1"
- kind-of: "npm:^6.0.0"
- checksum: 10c0/8007f91780adc5aaa781a848eaae50b0f680bbf4043b90cf8a96778195b8fab690c87fe7a989e02394ce69890e330811ec8dab22397d384673ce59f7d750641d
- languageName: node
- linkType: hard
-
-"semver@npm:^6.3.1":
- version: 6.3.1
- resolution: "semver@npm:6.3.1"
- bin:
- semver: bin/semver.js
- checksum: 10c0/e3d79b609071caa78bcb6ce2ad81c7966a46a7431d9d58b8800cfa9cb6a63699b3899a0e4bcce36167a284578212d9ae6942b6929ba4aa5015c079a67751d42d
- languageName: node
- linkType: hard
-
-"semver@npm:^7.3.5":
- version: 7.7.2
- resolution: "semver@npm:7.7.2"
- bin:
- semver: bin/semver.js
- checksum: 10c0/aca305edfbf2383c22571cb7714f48cadc7ac95371b4b52362fb8eeffdfbc0de0669368b82b2b15978f8848f01d7114da65697e56cd8c37b0dab8c58e543f9ea
- languageName: node
- linkType: hard
-
-"semver@npm:^7.5.4, semver@npm:^7.6.3, semver@npm:^7.7.1":
- version: 7.7.1
- resolution: "semver@npm:7.7.1"
- bin:
- semver: bin/semver.js
- checksum: 10c0/fd603a6fb9c399c6054015433051bdbe7b99a940a8fb44b85c2b524c4004b023d7928d47cb22154f8d054ea7ee8597f586605e05b52047f048278e4ac56ae958
- languageName: node
- linkType: hard
-
-"sentence-case@npm:^3.0.4":
- version: 3.0.4
- resolution: "sentence-case@npm:3.0.4"
- dependencies:
- no-case: "npm:^3.0.4"
- tslib: "npm:^2.0.3"
- upper-case-first: "npm:^2.0.2"
- checksum: 10c0/9a90527a51300cf5faea7fae0c037728f9ddcff23ac083883774c74d180c0a03c31aab43d5c3347512e8c1b31a0d4712512ec82beb71aa79b85149f9abeb5467
- languageName: node
- linkType: hard
-
-"set-function-length@npm:^1.2.2":
- version: 1.2.2
- resolution: "set-function-length@npm:1.2.2"
- dependencies:
- define-data-property: "npm:^1.1.4"
- es-errors: "npm:^1.3.0"
- function-bind: "npm:^1.1.2"
- get-intrinsic: "npm:^1.2.4"
- gopd: "npm:^1.0.1"
- has-property-descriptors: "npm:^1.0.2"
- checksum: 10c0/82850e62f412a258b71e123d4ed3873fa9377c216809551192bb6769329340176f109c2eeae8c22a8d386c76739855f78e8716515c818bcaef384b51110f0f3c
- languageName: node
- linkType: hard
-
-"set-function-name@npm:^2.0.2":
- version: 2.0.2
- resolution: "set-function-name@npm:2.0.2"
- dependencies:
- define-data-property: "npm:^1.1.4"
- es-errors: "npm:^1.3.0"
- functions-have-names: "npm:^1.2.3"
- has-property-descriptors: "npm:^1.0.2"
- checksum: 10c0/fce59f90696c450a8523e754abb305e2b8c73586452619c2bad5f7bf38c7b6b4651895c9db895679c5bef9554339cf3ef1c329b66ece3eda7255785fbe299316
- languageName: node
- linkType: hard
-
-"set-proto@npm:^1.0.0":
- version: 1.0.0
- resolution: "set-proto@npm:1.0.0"
- dependencies:
- dunder-proto: "npm:^1.0.1"
- es-errors: "npm:^1.3.0"
- es-object-atoms: "npm:^1.0.0"
- checksum: 10c0/ca5c3ccbba479d07c30460e367e66337cec825560b11e8ba9c5ebe13a2a0d6021ae34eddf94ff3dfe17a3104dc1f191519cb6c48378b503e5c3f36393938776a
- languageName: node
- linkType: hard
-
-"sharp@npm:^0.33.3":
- version: 0.33.5
- resolution: "sharp@npm:0.33.5"
- dependencies:
- "@img/sharp-darwin-arm64": "npm:0.33.5"
- "@img/sharp-darwin-x64": "npm:0.33.5"
- "@img/sharp-libvips-darwin-arm64": "npm:1.0.4"
- "@img/sharp-libvips-darwin-x64": "npm:1.0.4"
- "@img/sharp-libvips-linux-arm": "npm:1.0.5"
- "@img/sharp-libvips-linux-arm64": "npm:1.0.4"
- "@img/sharp-libvips-linux-s390x": "npm:1.0.4"
- "@img/sharp-libvips-linux-x64": "npm:1.0.4"
- "@img/sharp-libvips-linuxmusl-arm64": "npm:1.0.4"
- "@img/sharp-libvips-linuxmusl-x64": "npm:1.0.4"
- "@img/sharp-linux-arm": "npm:0.33.5"
- "@img/sharp-linux-arm64": "npm:0.33.5"
- "@img/sharp-linux-s390x": "npm:0.33.5"
- "@img/sharp-linux-x64": "npm:0.33.5"
- "@img/sharp-linuxmusl-arm64": "npm:0.33.5"
- "@img/sharp-linuxmusl-x64": "npm:0.33.5"
- "@img/sharp-wasm32": "npm:0.33.5"
- "@img/sharp-win32-ia32": "npm:0.33.5"
- "@img/sharp-win32-x64": "npm:0.33.5"
- color: "npm:^4.2.3"
- detect-libc: "npm:^2.0.3"
- semver: "npm:^7.6.3"
- dependenciesMeta:
- "@img/sharp-darwin-arm64":
- optional: true
- "@img/sharp-darwin-x64":
- optional: true
- "@img/sharp-libvips-darwin-arm64":
- optional: true
- "@img/sharp-libvips-darwin-x64":
- optional: true
- "@img/sharp-libvips-linux-arm":
- optional: true
- "@img/sharp-libvips-linux-arm64":
- optional: true
- "@img/sharp-libvips-linux-s390x":
- optional: true
- "@img/sharp-libvips-linux-x64":
- optional: true
- "@img/sharp-libvips-linuxmusl-arm64":
- optional: true
- "@img/sharp-libvips-linuxmusl-x64":
- optional: true
- "@img/sharp-linux-arm":
- optional: true
- "@img/sharp-linux-arm64":
- optional: true
- "@img/sharp-linux-s390x":
- optional: true
- "@img/sharp-linux-x64":
- optional: true
- "@img/sharp-linuxmusl-arm64":
- optional: true
- "@img/sharp-linuxmusl-x64":
- optional: true
- "@img/sharp-wasm32":
- optional: true
- "@img/sharp-win32-ia32":
- optional: true
- "@img/sharp-win32-x64":
- optional: true
- checksum: 10c0/6b81421ddfe6ee524d8d77e325c5e147fef22884e1c7b1656dfd89a88d7025894115da02d5f984261bf2e6daa16f98cadd1721c4ba408b4212b1d2a60f233484
- languageName: node
- linkType: hard
-
-"shebang-command@npm:^1.2.0":
- version: 1.2.0
- resolution: "shebang-command@npm:1.2.0"
- dependencies:
- shebang-regex: "npm:^1.0.0"
- checksum: 10c0/7b20dbf04112c456b7fc258622dafd566553184ac9b6938dd30b943b065b21dabd3776460df534cc02480db5e1b6aec44700d985153a3da46e7db7f9bd21326d
- languageName: node
- linkType: hard
-
-"shebang-command@npm:^2.0.0":
- version: 2.0.0
- resolution: "shebang-command@npm:2.0.0"
- dependencies:
- shebang-regex: "npm:^3.0.0"
- checksum: 10c0/a41692e7d89a553ef21d324a5cceb5f686d1f3c040759c50aab69688634688c5c327f26f3ecf7001ebfd78c01f3c7c0a11a7c8bfd0a8bc9f6240d4f40b224e4e
- languageName: node
- linkType: hard
-
-"shebang-regex@npm:^1.0.0":
- version: 1.0.0
- resolution: "shebang-regex@npm:1.0.0"
- checksum: 10c0/9abc45dee35f554ae9453098a13fdc2f1730e525a5eb33c51f096cc31f6f10a4b38074c1ebf354ae7bffa7229506083844008dfc3bb7818228568c0b2dc1fff2
- languageName: node
- linkType: hard
-
-"shebang-regex@npm:^3.0.0":
- version: 3.0.0
- resolution: "shebang-regex@npm:3.0.0"
- checksum: 10c0/1dbed0726dd0e1152a92696c76c7f06084eb32a90f0528d11acd764043aacf76994b2fb30aa1291a21bd019d6699164d048286309a278855ee7bec06cf6fb690
- languageName: node
- linkType: hard
-
-"shiki@npm:^0.14.3":
- version: 0.14.7
- resolution: "shiki@npm:0.14.7"
- dependencies:
- ansi-sequence-parser: "npm:^1.1.0"
- jsonc-parser: "npm:^3.2.0"
- vscode-oniguruma: "npm:^1.7.0"
- vscode-textmate: "npm:^8.0.0"
- checksum: 10c0/5c7fcbb870d0facccc7ae2f3410a28121f8e0b3f298e4e956de817ad6ab60a4c7e20a9184edfe50a93447addbb88b95b69e6ef88ac16ac6ca3e94c50771a6459
- languageName: node
- linkType: hard
-
-"side-channel-list@npm:^1.0.0":
- version: 1.0.0
- resolution: "side-channel-list@npm:1.0.0"
- dependencies:
- es-errors: "npm:^1.3.0"
- object-inspect: "npm:^1.13.3"
- checksum: 10c0/644f4ac893456c9490ff388bf78aea9d333d5e5bfc64cfb84be8f04bf31ddc111a8d4b83b85d7e7e8a7b845bc185a9ad02c052d20e086983cf59f0be517d9b3d
- languageName: node
- linkType: hard
-
-"side-channel-map@npm:^1.0.1":
- version: 1.0.1
- resolution: "side-channel-map@npm:1.0.1"
- dependencies:
- call-bound: "npm:^1.0.2"
- es-errors: "npm:^1.3.0"
- get-intrinsic: "npm:^1.2.5"
- object-inspect: "npm:^1.13.3"
- checksum: 10c0/010584e6444dd8a20b85bc926d934424bd809e1a3af941cace229f7fdcb751aada0fb7164f60c2e22292b7fa3c0ff0bce237081fd4cdbc80de1dc68e95430672
- languageName: node
- linkType: hard
-
-"side-channel-weakmap@npm:^1.0.2":
- version: 1.0.2
- resolution: "side-channel-weakmap@npm:1.0.2"
- dependencies:
- call-bound: "npm:^1.0.2"
- es-errors: "npm:^1.3.0"
- get-intrinsic: "npm:^1.2.5"
- object-inspect: "npm:^1.13.3"
- side-channel-map: "npm:^1.0.1"
- checksum: 10c0/71362709ac233e08807ccd980101c3e2d7efe849edc51455030327b059f6c4d292c237f94dc0685031dd11c07dd17a68afde235d6cf2102d949567f98ab58185
- languageName: node
- linkType: hard
-
-"side-channel@npm:^1.1.0":
- version: 1.1.0
- resolution: "side-channel@npm:1.1.0"
- dependencies:
- es-errors: "npm:^1.3.0"
- object-inspect: "npm:^1.13.3"
- side-channel-list: "npm:^1.0.0"
- side-channel-map: "npm:^1.0.1"
- side-channel-weakmap: "npm:^1.0.2"
- checksum: 10c0/cb20dad41eb032e6c24c0982e1e5a24963a28aa6122b4f05b3f3d6bf8ae7fd5474ef382c8f54a6a3ab86e0cac4d41a23bd64ede3970e5bfb50326ba02a7996e6
- languageName: node
- linkType: hard
-
-"signal-exit@npm:^3.0.0, signal-exit@npm:^3.0.2":
- version: 3.0.7
- resolution: "signal-exit@npm:3.0.7"
- checksum: 10c0/25d272fa73e146048565e08f3309d5b942c1979a6f4a58a8c59d5fa299728e9c2fcd1a759ec870863b1fd38653670240cd420dad2ad9330c71f36608a6a1c912
- languageName: node
- linkType: hard
-
-"signal-exit@npm:^4.0.1, signal-exit@npm:^4.1.0":
- version: 4.1.0
- resolution: "signal-exit@npm:4.1.0"
- checksum: 10c0/41602dce540e46d599edba9d9860193398d135f7ff72cab629db5171516cfae628d21e7bfccde1bbfdf11c48726bc2a6d1a8fb8701125852fbfda7cf19c6aa83
- languageName: node
- linkType: hard
-
-"simple-swizzle@npm:^0.2.2":
- version: 0.2.2
- resolution: "simple-swizzle@npm:0.2.2"
- dependencies:
- is-arrayish: "npm:^0.3.1"
- checksum: 10c0/df5e4662a8c750bdba69af4e8263c5d96fe4cd0f9fe4bdfa3cbdeb45d2e869dff640beaaeb1ef0e99db4d8d2ec92f85508c269f50c972174851bc1ae5bd64308
- languageName: node
- linkType: hard
-
-"slash@npm:^3.0.0":
- version: 3.0.0
- resolution: "slash@npm:3.0.0"
- checksum: 10c0/e18488c6a42bdfd4ac5be85b2ced3ccd0224773baae6ad42cfbb9ec74fc07f9fa8396bd35ee638084ead7a2a0818eb5e7151111544d4731ce843019dab4be47b
- languageName: node
- linkType: hard
-
-"slash@npm:^4.0.0":
- version: 4.0.0
- resolution: "slash@npm:4.0.0"
- checksum: 10c0/b522ca75d80d107fd30d29df0549a7b2537c83c4c4ecd12cd7d4ea6c8aaca2ab17ada002e7a1d78a9d736a0261509f26ea5b489082ee443a3a810586ef8eff18
- languageName: node
- linkType: hard
-
-"smart-buffer@npm:^4.2.0":
- version: 4.2.0
- resolution: "smart-buffer@npm:4.2.0"
- checksum: 10c0/a16775323e1404dd43fabafe7460be13a471e021637bc7889468eb45ce6a6b207261f454e4e530a19500cc962c4cc5348583520843b363f4193cee5c00e1e539
- languageName: node
- linkType: hard
-
-"snake-case@npm:^3.0.4":
- version: 3.0.4
- resolution: "snake-case@npm:3.0.4"
- dependencies:
- dot-case: "npm:^3.0.4"
- tslib: "npm:^2.0.3"
- checksum: 10c0/ab19a913969f58f4474fe9f6e8a026c8a2142a01f40b52b79368068343177f818cdfef0b0c6b9558f298782441d5ca8ed5932eb57822439fad791d866e62cecd
- languageName: node
- linkType: hard
-
-"socks-proxy-agent@npm:^8.0.3":
- version: 8.0.5
- resolution: "socks-proxy-agent@npm:8.0.5"
- dependencies:
- agent-base: "npm:^7.1.2"
- debug: "npm:^4.3.4"
- socks: "npm:^2.8.3"
- checksum: 10c0/5d2c6cecba6821389aabf18728325730504bf9bb1d9e342e7987a5d13badd7a98838cc9a55b8ed3cb866ad37cc23e1086f09c4d72d93105ce9dfe76330e9d2a6
- languageName: node
- linkType: hard
-
-"socks@npm:^2.8.3":
- version: 2.8.6
- resolution: "socks@npm:2.8.6"
- dependencies:
- ip-address: "npm:^9.0.5"
- smart-buffer: "npm:^4.2.0"
- checksum: 10c0/15b95db4caa359c80bfa880ff3e58f3191b9ffa4313570e501a60ee7575f51e4be664a296f4ee5c2c40544da179db6140be53433ce41ec745f9d51f342557514
- languageName: node
- linkType: hard
-
-"sort-keys@npm:^5.0.0":
- version: 5.1.0
- resolution: "sort-keys@npm:5.1.0"
- dependencies:
- is-plain-obj: "npm:^4.0.0"
- checksum: 10c0/fdb7aeb02368ad91b2ea947b59f3c95d80f8c71bbcb5741ebd55852994f54a129af3b3663b280951566fe5897de056428810dbb58c61db831e588c0ac110f2b0
- languageName: node
- linkType: hard
-
-"source-map-js@npm:>=0.6.2 <2.0.0, source-map-js@npm:^1.0.2, source-map-js@npm:^1.2.1":
- version: 1.2.1
- resolution: "source-map-js@npm:1.2.1"
- checksum: 10c0/7bda1fc4c197e3c6ff17de1b8b2c20e60af81b63a52cb32ec5a5d67a20a7d42651e2cb34ebe93833c5a2a084377e17455854fee3e21e7925c64a51b6a52b0faf
- languageName: node
- linkType: hard
-
-"source-map@npm:^0.6.1":
- version: 0.6.1
- resolution: "source-map@npm:0.6.1"
- checksum: 10c0/ab55398007c5e5532957cb0beee2368529618ac0ab372d789806f5718123cc4367d57de3904b4e6a4170eb5a0b0f41373066d02ca0735a0c4d75c7d328d3e011
- languageName: node
- linkType: hard
-
-"source-map@npm:^0.7.0":
- version: 0.7.4
- resolution: "source-map@npm:0.7.4"
- checksum: 10c0/dc0cf3768fe23c345ea8760487f8c97ef6fca8a73c83cd7c9bf2fde8bc2c34adb9c0824d6feb14bc4f9e37fb522e18af621543f1289038a66ac7586da29aa7dc
- languageName: node
- linkType: hard
-
-"space-separated-tokens@npm:^2.0.0":
- version: 2.0.2
- resolution: "space-separated-tokens@npm:2.0.2"
- checksum: 10c0/6173e1d903dca41dcab6a2deed8b4caf61bd13b6d7af8374713500570aa929ff9414ae09a0519f4f8772df993300305a395d4871f35bc4ca72b6db57e1f30af8
- languageName: node
- linkType: hard
-
-"sprintf-js@npm:^1.1.3":
- version: 1.1.3
- resolution: "sprintf-js@npm:1.1.3"
- checksum: 10c0/09270dc4f30d479e666aee820eacd9e464215cdff53848b443964202bf4051490538e5dd1b42e1a65cf7296916ca17640aebf63dae9812749c7542ee5f288dec
- languageName: node
- linkType: hard
-
-"sprintf-js@npm:~1.0.2":
- version: 1.0.3
- resolution: "sprintf-js@npm:1.0.3"
- checksum: 10c0/ecadcfe4c771890140da5023d43e190b7566d9cf8b2d238600f31bec0fc653f328da4450eb04bd59a431771a8e9cc0e118f0aa3974b683a4981b4e07abc2a5bb
- languageName: node
- linkType: hard
-
-"ssri@npm:^12.0.0":
- version: 12.0.0
- resolution: "ssri@npm:12.0.0"
- dependencies:
- minipass: "npm:^7.0.3"
- checksum: 10c0/caddd5f544b2006e88fa6b0124d8d7b28208b83c72d7672d5ade44d794525d23b540f3396108c4eb9280dcb7c01f0bef50682f5b4b2c34291f7c5e211fd1417d
- languageName: node
- linkType: hard
-
-"stable-hash@npm:^0.0.5":
- version: 0.0.5
- resolution: "stable-hash@npm:0.0.5"
- checksum: 10c0/ca670cb6d172f1c834950e4ec661e2055885df32fee3ebf3647c5df94993b7c2666a5dbc1c9a62ee11fc5c24928579ec5e81bb5ad31971d355d5a341aab493b3
- languageName: node
- linkType: hard
-
-"stdin-discarder@npm:^0.2.2":
- version: 0.2.2
- resolution: "stdin-discarder@npm:0.2.2"
- checksum: 10c0/c78375e82e956d7a64be6e63c809c7f058f5303efcaf62ea48350af072bacdb99c06cba39209b45a071c1acbd49116af30df1df9abb448df78a6005b72f10537
- languageName: node
- linkType: hard
-
-"streamsearch@npm:^1.1.0":
- version: 1.1.0
- resolution: "streamsearch@npm:1.1.0"
- checksum: 10c0/fbd9aecc2621364384d157f7e59426f4bfd385e8b424b5aaa79c83a6f5a1c8fd2e4e3289e95de1eb3511cb96bb333d6281a9919fafce760e4edb35b2cd2facab
- languageName: node
- linkType: hard
-
-"string-width-cjs@npm:string-width@^4.2.0, string-width@npm:^4.1.0, string-width@npm:^4.2.3":
- version: 4.2.3
- resolution: "string-width@npm:4.2.3"
- dependencies:
- emoji-regex: "npm:^8.0.0"
- is-fullwidth-code-point: "npm:^3.0.0"
- strip-ansi: "npm:^6.0.1"
- checksum: 10c0/1e525e92e5eae0afd7454086eed9c818ee84374bb80328fc41217ae72ff5f065ef1c9d7f72da41de40c75fa8bb3dee63d92373fd492c84260a552c636392a47b
- languageName: node
- linkType: hard
-
-"string-width@npm:^5.0.1, string-width@npm:^5.1.2":
- version: 5.1.2
- resolution: "string-width@npm:5.1.2"
- dependencies:
- eastasianwidth: "npm:^0.2.0"
- emoji-regex: "npm:^9.2.2"
- strip-ansi: "npm:^7.0.1"
- checksum: 10c0/ab9c4264443d35b8b923cbdd513a089a60de339216d3b0ed3be3ba57d6880e1a192b70ae17225f764d7adbf5994e9bb8df253a944736c15a0240eff553c678ca
- languageName: node
- linkType: hard
-
-"string-width@npm:^7.2.0":
- version: 7.2.0
- resolution: "string-width@npm:7.2.0"
- dependencies:
- emoji-regex: "npm:^10.3.0"
- get-east-asian-width: "npm:^1.0.0"
- strip-ansi: "npm:^7.1.0"
- checksum: 10c0/eb0430dd43f3199c7a46dcbf7a0b34539c76fe3aa62763d0b0655acdcbdf360b3f66f3d58ca25ba0205f42ea3491fa00f09426d3b7d3040e506878fc7664c9b9
- languageName: node
- linkType: hard
-
-"string.prototype.includes@npm:^2.0.1":
- version: 2.0.1
- resolution: "string.prototype.includes@npm:2.0.1"
- dependencies:
- call-bind: "npm:^1.0.7"
- define-properties: "npm:^1.2.1"
- es-abstract: "npm:^1.23.3"
- checksum: 10c0/25ce9c9b49128352a2618fbe8758b46f945817a58a4420f4799419e40a8d28f116e176c7590d767d5327a61e75c8f32c86171063f48e389b9fdd325f1bd04ee5
- languageName: node
- linkType: hard
-
-"string.prototype.matchall@npm:^4.0.12":
- version: 4.0.12
- resolution: "string.prototype.matchall@npm:4.0.12"
- dependencies:
- call-bind: "npm:^1.0.8"
- call-bound: "npm:^1.0.3"
- define-properties: "npm:^1.2.1"
- es-abstract: "npm:^1.23.6"
- es-errors: "npm:^1.3.0"
- es-object-atoms: "npm:^1.0.0"
- get-intrinsic: "npm:^1.2.6"
- gopd: "npm:^1.2.0"
- has-symbols: "npm:^1.1.0"
- internal-slot: "npm:^1.1.0"
- regexp.prototype.flags: "npm:^1.5.3"
- set-function-name: "npm:^2.0.2"
- side-channel: "npm:^1.1.0"
- checksum: 10c0/1a53328ada73f4a77f1fdf1c79414700cf718d0a8ef6672af5603e709d26a24f2181208144aed7e858b1bcc1a0d08567a570abfb45567db4ae47637ed2c2f85c
- languageName: node
- linkType: hard
-
-"string.prototype.repeat@npm:^1.0.0":
- version: 1.0.0
- resolution: "string.prototype.repeat@npm:1.0.0"
- dependencies:
- define-properties: "npm:^1.1.3"
- es-abstract: "npm:^1.17.5"
- checksum: 10c0/94c7978566cffa1327d470fd924366438af9b04b497c43a9805e476e2e908aa37a1fd34cc0911156c17556dab62159d12c7b92b3cc304c3e1281fe4c8e668f40
- languageName: node
- linkType: hard
-
-"string.prototype.trim@npm:^1.2.10":
- version: 1.2.10
- resolution: "string.prototype.trim@npm:1.2.10"
- dependencies:
- call-bind: "npm:^1.0.8"
- call-bound: "npm:^1.0.2"
- define-data-property: "npm:^1.1.4"
- define-properties: "npm:^1.2.1"
- es-abstract: "npm:^1.23.5"
- es-object-atoms: "npm:^1.0.0"
- has-property-descriptors: "npm:^1.0.2"
- checksum: 10c0/8a8854241c4b54a948e992eb7dd6b8b3a97185112deb0037a134f5ba57541d8248dd610c966311887b6c2fd1181a3877bffb14d873ce937a344535dabcc648f8
- languageName: node
- linkType: hard
-
-"string.prototype.trimend@npm:^1.0.8, string.prototype.trimend@npm:^1.0.9":
- version: 1.0.9
- resolution: "string.prototype.trimend@npm:1.0.9"
- dependencies:
- call-bind: "npm:^1.0.8"
- call-bound: "npm:^1.0.2"
- define-properties: "npm:^1.2.1"
- es-object-atoms: "npm:^1.0.0"
- checksum: 10c0/59e1a70bf9414cb4c536a6e31bef5553c8ceb0cf44d8b4d0ed65c9653358d1c64dd0ec203b100df83d0413bbcde38b8c5d49e14bc4b86737d74adc593a0d35b6
- languageName: node
- linkType: hard
-
-"string.prototype.trimstart@npm:^1.0.8":
- version: 1.0.8
- resolution: "string.prototype.trimstart@npm:1.0.8"
- dependencies:
- call-bind: "npm:^1.0.7"
- define-properties: "npm:^1.2.1"
- es-object-atoms: "npm:^1.0.0"
- checksum: 10c0/d53af1899959e53c83b64a5fd120be93e067da740e7e75acb433849aa640782fb6c7d4cd5b84c954c84413745a3764df135a8afeb22908b86a835290788d8366
- languageName: node
- linkType: hard
-
-"string_decoder@npm:^1.1.1":
- version: 1.3.0
- resolution: "string_decoder@npm:1.3.0"
- dependencies:
- safe-buffer: "npm:~5.2.0"
- checksum: 10c0/810614ddb030e271cd591935dcd5956b2410dd079d64ff92a1844d6b7588bf992b3e1b69b0f4d34a3e06e0bd73046ac646b5264c1987b20d0601f81ef35d731d
- languageName: node
- linkType: hard
-
-"stringify-entities@npm:^4.0.0":
- version: 4.0.4
- resolution: "stringify-entities@npm:4.0.4"
- dependencies:
- character-entities-html4: "npm:^2.0.0"
- character-entities-legacy: "npm:^3.0.0"
- checksum: 10c0/537c7e656354192406bdd08157d759cd615724e9d0873602d2c9b2f6a5c0a8d0b1d73a0a08677848105c5eebac6db037b57c0b3a4ec86331117fa7319ed50448
- languageName: node
- linkType: hard
-
-"stringify-object@npm:3.3.0":
- version: 3.3.0
- resolution: "stringify-object@npm:3.3.0"
- dependencies:
- get-own-enumerable-property-symbols: "npm:^3.0.0"
- is-obj: "npm:^1.0.1"
- is-regexp: "npm:^1.0.0"
- checksum: 10c0/ba8078f84128979ee24b3de9a083489cbd3c62cb8572a061b47d4d82601a8ae4b4d86fa8c54dd955593da56bb7c16a6de51c27221fdc6b7139bb4f29d815f35b
- languageName: node
- linkType: hard
-
-"strip-ansi-cjs@npm:strip-ansi@^6.0.1, strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1":
- version: 6.0.1
- resolution: "strip-ansi@npm:6.0.1"
- dependencies:
- ansi-regex: "npm:^5.0.1"
- checksum: 10c0/1ae5f212a126fe5b167707f716942490e3933085a5ff6c008ab97ab2f272c8025d3aa218b7bd6ab25729ca20cc81cddb252102f8751e13482a5199e873680952
- languageName: node
- linkType: hard
-
-"strip-ansi@npm:^7.0.1, strip-ansi@npm:^7.1.0":
- version: 7.1.0
- resolution: "strip-ansi@npm:7.1.0"
- dependencies:
- ansi-regex: "npm:^6.0.1"
- checksum: 10c0/a198c3762e8832505328cbf9e8c8381de14a4fa50a4f9b2160138158ea88c0f5549fb50cb13c651c3088f47e63a108b34622ec18c0499b6c8c3a5ddf6b305ac4
- languageName: node
- linkType: hard
-
-"strip-bom-string@npm:^1.0.0":
- version: 1.0.0
- resolution: "strip-bom-string@npm:1.0.0"
- checksum: 10c0/5c5717e2643225aa6a6d659d34176ab2657037f1fe2423ac6fcdb488f135e14fef1022030e426d8b4d0989e09adbd5c3288d5d3b9c632abeefd2358dfc512bca
- languageName: node
- linkType: hard
-
-"strip-bom@npm:^3.0.0":
- version: 3.0.0
- resolution: "strip-bom@npm:3.0.0"
- checksum: 10c0/51201f50e021ef16672593d7434ca239441b7b760e905d9f33df6e4f3954ff54ec0e0a06f100d028af0982d6f25c35cd5cda2ce34eaebccd0250b8befb90d8f1
- languageName: node
- linkType: hard
-
-"strip-eof@npm:^1.0.0":
- version: 1.0.0
- resolution: "strip-eof@npm:1.0.0"
- checksum: 10c0/f336beed8622f7c1dd02f2cbd8422da9208fae81daf184f73656332899978919d5c0ca84dc6cfc49ad1fc4dd7badcde5412a063cf4e0d7f8ed95a13a63f68f45
- languageName: node
- linkType: hard
-
-"strip-indent@npm:^3.0.0":
- version: 3.0.0
- resolution: "strip-indent@npm:3.0.0"
- dependencies:
- min-indent: "npm:^1.0.0"
- checksum: 10c0/ae0deaf41c8d1001c5d4fbe16cb553865c1863da4fae036683b474fa926af9fc121e155cb3fc57a68262b2ae7d5b8420aa752c97a6428c315d00efe2a3875679
- languageName: node
- linkType: hard
-
-"strip-json-comments@npm:^3.1.1":
- version: 3.1.1
- resolution: "strip-json-comments@npm:3.1.1"
- checksum: 10c0/9681a6257b925a7fa0f285851c0e613cc934a50661fa7bb41ca9cbbff89686bb4a0ee366e6ecedc4daafd01e83eee0720111ab294366fe7c185e935475ebcecd
- languageName: node
- linkType: hard
-
-"style-mod@npm:^4.0.0, style-mod@npm:^4.1.0":
- version: 4.1.2
- resolution: "style-mod@npm:4.1.2"
- checksum: 10c0/ad4d870b3642b0e42ecc7be0e106dd14b7af11985e34fee8de34e5e38c3214bfc96fa7055acea86d75a3a59ddea3f6a8c6641001a66494d7df72d09685e3fadb
- languageName: node
- linkType: hard
-
-"style-to-js@npm:^1.0.0":
- version: 1.1.16
- resolution: "style-to-js@npm:1.1.16"
- dependencies:
- style-to-object: "npm:1.0.8"
- checksum: 10c0/578a4dff804539ec7e64d3cc8d327540befb9ad30e3cd0b6b0392f93f793f3a028f90084a9aaff088bffb87818fa2c6c153f0df576f61f9ab0b0938b582bcac7
- languageName: node
- linkType: hard
-
-"style-to-object@npm:1.0.8":
- version: 1.0.8
- resolution: "style-to-object@npm:1.0.8"
- dependencies:
- inline-style-parser: "npm:0.2.4"
- checksum: 10c0/daa6646b1ff18258c0ca33ed281fbe73485c8391192db1b56ce89d40c93ea64507a41e8701d0dadfe771bc2f540c46c9b295135f71584c8e5cb23d6a19be9430
- languageName: node
- linkType: hard
-
-"style-to-object@npm:^0.4.1":
- version: 0.4.4
- resolution: "style-to-object@npm:0.4.4"
- dependencies:
- inline-style-parser: "npm:0.1.1"
- checksum: 10c0/3a733080da66952881175b17d65f92985cf94c1ca358a92cf21b114b1260d49b94a404ed79476047fb95698d64c7e366ca7443f0225939e2fb34c38bbc9c7639
- languageName: node
- linkType: hard
-
-"styled-jsx@npm:5.1.1":
- version: 5.1.1
- resolution: "styled-jsx@npm:5.1.1"
- dependencies:
- client-only: "npm:0.0.1"
- peerDependencies:
- react: ">= 16.8.0 || 17.x.x || ^18.0.0-0"
- peerDependenciesMeta:
- "@babel/core":
- optional: true
- babel-plugin-macros:
- optional: true
- checksum: 10c0/42655cdadfa5388f8a48bb282d6b450df7d7b8cf066ac37038bd0499d3c9f084815ebd9ff9dfa12a218fd4441338851db79603498d7557207009c1cf4d609835
- languageName: node
- linkType: hard
-
-"stylis@npm:^4.1.3, stylis@npm:^4.3.6":
- version: 4.3.6
- resolution: "stylis@npm:4.3.6"
- checksum: 10c0/e736d484983a34f7c65d362c67dc79b7bce388054b261c2b7b23d02eaaf280617033f65d44b1ea341854f4331a5074b885668ac8741f98c13a6cfd6443ae85d0
- languageName: node
- linkType: hard
-
-"sucrase@npm:^3.35.0":
- version: 3.35.0
- resolution: "sucrase@npm:3.35.0"
- dependencies:
- "@jridgewell/gen-mapping": "npm:^0.3.2"
- commander: "npm:^4.0.0"
- glob: "npm:^10.3.10"
- lines-and-columns: "npm:^1.1.6"
- mz: "npm:^2.7.0"
- pirates: "npm:^4.0.1"
- ts-interface-checker: "npm:^0.1.9"
- bin:
- sucrase: bin/sucrase
- sucrase-node: bin/sucrase-node
- checksum: 10c0/ac85f3359d2c2ecbf5febca6a24ae9bf96c931f05fde533c22a94f59c6a74895e5d5f0e871878dfd59c2697a75ebb04e4b2224ef0bfc24ca1210735c2ec191ef
- languageName: node
- linkType: hard
-
-"supports-color@npm:^4.0.0":
- version: 4.5.0
- resolution: "supports-color@npm:4.5.0"
- dependencies:
- has-flag: "npm:^2.0.0"
- checksum: 10c0/2dc369eeac73954e87037dea1ebae0238b2abc0a39d7e35aa60eb8a84cc8d1dcade8b62e010597f5859f94c937e992abe6a6195460855fcc5e51f8cfc7fcc72a
- languageName: node
- linkType: hard
-
-"supports-color@npm:^7.1.0":
- version: 7.2.0
- resolution: "supports-color@npm:7.2.0"
- dependencies:
- has-flag: "npm:^4.0.0"
- checksum: 10c0/afb4c88521b8b136b5f5f95160c98dee7243dc79d5432db7efc27efb219385bbc7d9427398e43dd6cc730a0f87d5085ce1652af7efbe391327bc0a7d0f7fc124
- languageName: node
- linkType: hard
-
-"supports-preserve-symlinks-flag@npm:^1.0.0":
- version: 1.0.0
- resolution: "supports-preserve-symlinks-flag@npm:1.0.0"
- checksum: 10c0/6c4032340701a9950865f7ae8ef38578d8d7053f5e10518076e6554a9381fa91bd9c6850193695c141f32b21f979c985db07265a758867bac95de05f7d8aeb39
- languageName: node
- linkType: hard
-
-"swr@npm:^2.2.4":
- version: 2.3.3
- resolution: "swr@npm:2.3.3"
- dependencies:
- dequal: "npm:^2.0.3"
- use-sync-external-store: "npm:^1.4.0"
- peerDependencies:
- react: ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- checksum: 10c0/882fc8291912860e0c50eae3470ebf0cd58b0144cb12adcc4b14c5cef913ea06479043830508d8b0b3d4061d99ad8dd52485c9c879fbd4e9b893484e6d8da9e3
- languageName: node
- linkType: hard
-
-"tailwind-merge@npm:^2.2.2, tailwind-merge@npm:^2.3.0":
- version: 2.6.0
- resolution: "tailwind-merge@npm:2.6.0"
- checksum: 10c0/fc8a5535524de9f4dacf1c16ab298581c7bb757d68a95faaf28942b1c555a619bba9d4c6726fe83986e44973b315410c1a5226e5354c30ba82353bd6d2288fa5
- languageName: node
- linkType: hard
-
-"tailwindcss@npm:^3.3.0":
- version: 3.4.17
- resolution: "tailwindcss@npm:3.4.17"
- dependencies:
- "@alloc/quick-lru": "npm:^5.2.0"
- arg: "npm:^5.0.2"
- chokidar: "npm:^3.6.0"
- didyoumean: "npm:^1.2.2"
- dlv: "npm:^1.1.3"
- fast-glob: "npm:^3.3.2"
- glob-parent: "npm:^6.0.2"
- is-glob: "npm:^4.0.3"
- jiti: "npm:^1.21.6"
- lilconfig: "npm:^3.1.3"
- micromatch: "npm:^4.0.8"
- normalize-path: "npm:^3.0.0"
- object-hash: "npm:^3.0.0"
- picocolors: "npm:^1.1.1"
- postcss: "npm:^8.4.47"
- postcss-import: "npm:^15.1.0"
- postcss-js: "npm:^4.0.1"
- postcss-load-config: "npm:^4.0.2"
- postcss-nested: "npm:^6.2.0"
- postcss-selector-parser: "npm:^6.1.2"
- resolve: "npm:^1.22.8"
- sucrase: "npm:^3.35.0"
- bin:
- tailwind: lib/cli.js
- tailwindcss: lib/cli.js
- checksum: 10c0/cc42c6e7fdf88a5507a0d7fea37f1b4122bec158977f8c017b2ae6828741f9e6f8cb90282c6bf2bd5951fd1220a53e0a50ca58f5c1c00eb7f5d9f8b80dc4523c
- languageName: node
- linkType: hard
-
-"tar@npm:^7.4.3":
- version: 7.4.3
- resolution: "tar@npm:7.4.3"
- dependencies:
- "@isaacs/fs-minipass": "npm:^4.0.0"
- chownr: "npm:^3.0.0"
- minipass: "npm:^7.1.2"
- minizlib: "npm:^3.0.1"
- mkdirp: "npm:^3.0.1"
- yallist: "npm:^5.0.0"
- checksum: 10c0/d4679609bb2a9b48eeaf84632b6d844128d2412b95b6de07d53d8ee8baf4ca0857c9331dfa510390a0727b550fd543d4d1a10995ad86cdf078423fbb8d99831d
- languageName: node
- linkType: hard
-
-"text-table@npm:^0.2.0":
- version: 0.2.0
- resolution: "text-table@npm:0.2.0"
- checksum: 10c0/02805740c12851ea5982686810702e2f14369a5f4c5c40a836821e3eefc65ffeec3131ba324692a37608294b0fd8c1e55a2dd571ffed4909822787668ddbee5c
- languageName: node
- linkType: hard
-
-"thenify-all@npm:^1.0.0":
- version: 1.6.0
- resolution: "thenify-all@npm:1.6.0"
- dependencies:
- thenify: "npm:>= 3.1.0 < 4"
- checksum: 10c0/9b896a22735e8122754fe70f1d65f7ee691c1d70b1f116fda04fea103d0f9b356e3676cb789506e3909ae0486a79a476e4914b0f92472c2e093d206aed4b7d6b
- languageName: node
- linkType: hard
-
-"thenify@npm:>= 3.1.0 < 4":
- version: 3.3.1
- resolution: "thenify@npm:3.3.1"
- dependencies:
- any-promise: "npm:^1.0.0"
- checksum: 10c0/f375aeb2b05c100a456a30bc3ed07ef03a39cbdefe02e0403fb714b8c7e57eeaad1a2f5c4ecfb9ce554ce3db9c2b024eba144843cd9e344566d9fcee73b04767
- languageName: node
- linkType: hard
-
-"third-party-capital@npm:1.0.20":
- version: 1.0.20
- resolution: "third-party-capital@npm:1.0.20"
- checksum: 10c0/7f45ff156ec9d7e2957a5b39061be22b780ffbd2d93c127252d908e2bff6cdd09f827a95909d457c8096e036f155006a38e355a06ee11cb6d63c7f4b150bbfb0
- languageName: node
- linkType: hard
-
-"tinyexec@npm:^1.0.1":
- version: 1.0.1
- resolution: "tinyexec@npm:1.0.1"
- checksum: 10c0/e1ec3c8194a0427ce001ba69fd933d0c957e2b8994808189ed8020d3e0c01299aea8ecf0083cc514ecbf90754695895f2b5c0eac07eb2d0c406f7d4fbb8feade
- languageName: node
- linkType: hard
-
-"tinyglobby@npm:^0.2.12":
- version: 0.2.14
- resolution: "tinyglobby@npm:0.2.14"
- dependencies:
- fdir: "npm:^6.4.4"
- picomatch: "npm:^4.0.2"
- checksum: 10c0/f789ed6c924287a9b7d3612056ed0cda67306cd2c80c249fd280cf1504742b12583a2089b61f4abbd24605f390809017240e250241f09938054c9b363e51c0a6
- languageName: node
- linkType: hard
-
-"tinyglobby@npm:^0.2.13":
- version: 0.2.13
- resolution: "tinyglobby@npm:0.2.13"
- dependencies:
- fdir: "npm:^6.4.4"
- picomatch: "npm:^4.0.2"
- checksum: 10c0/ef07dfaa7b26936601d3f6d999f7928a4d1c6234c5eb36896bb88681947c0d459b7ebe797022400e555fe4b894db06e922b95d0ce60cb05fd827a0a66326b18c
- languageName: node
- linkType: hard
-
-"tinyrainbow@npm:^1.2.0":
- version: 1.2.0
- resolution: "tinyrainbow@npm:1.2.0"
- checksum: 10c0/7f78a4b997e5ba0f5ecb75e7ed786f30bab9063716e7dff24dd84013fb338802e43d176cb21ed12480561f5649a82184cf31efb296601a29d38145b1cdb4c192
- languageName: node
- linkType: hard
-
-"tinyspy@npm:^3.0.0":
- version: 3.0.2
- resolution: "tinyspy@npm:3.0.2"
- checksum: 10c0/55ffad24e346622b59292e097c2ee30a63919d5acb7ceca87fc0d1c223090089890587b426e20054733f97a58f20af2c349fb7cc193697203868ab7ba00bcea0
- languageName: node
- linkType: hard
-
-"title-case@npm:^3.0.3":
- version: 3.0.3
- resolution: "title-case@npm:3.0.3"
- dependencies:
- tslib: "npm:^2.0.3"
- checksum: 10c0/face56f686060f777b43a180d371407124d201eb4238c19d9e97030fd54859696ca4e2ca499cc232f8700f24f2414cc08aab9fdf6d39acff055dd825a4d86d6a
- languageName: node
- linkType: hard
-
-"title@npm:^3.5.3":
- version: 3.5.3
- resolution: "title@npm:3.5.3"
- dependencies:
- arg: "npm:1.0.0"
- chalk: "npm:2.3.0"
- clipboardy: "npm:1.2.2"
- titleize: "npm:1.0.0"
- bin:
- title: bin/title.js
- checksum: 10c0/9334ff46f49c215a108adbb3ab39bd946dfd1a669b999ad173ff61aa7598a17718f954462d8ebf8fb3ea643b5c37f2f7a163310d186acb18a101c028248d3b15
- languageName: node
- linkType: hard
-
-"titleize@npm:1.0.0":
- version: 1.0.0
- resolution: "titleize@npm:1.0.0"
- checksum: 10c0/7c542bdc5754406839fc61e1a43803cb460cb0b5472f7cecf267bd9498e72d549d7f5cdfadd72ec20c3bb0783d52f4c72fe68e104cecd84195b29a5ffe836510
- languageName: node
- linkType: hard
-
-"tmp@npm:^0.0.33":
- version: 0.0.33
- resolution: "tmp@npm:0.0.33"
- dependencies:
- os-tmpdir: "npm:~1.0.2"
- checksum: 10c0/69863947b8c29cabad43fe0ce65cec5bb4b481d15d4b4b21e036b060b3edbf3bc7a5541de1bacb437bb3f7c4538f669752627fdf9b4aaf034cebd172ba373408
- languageName: node
- linkType: hard
-
-"to-regex-range@npm:^5.0.1":
- version: 5.0.1
- resolution: "to-regex-range@npm:5.0.1"
- dependencies:
- is-number: "npm:^7.0.0"
- checksum: 10c0/487988b0a19c654ff3e1961b87f471702e708fa8a8dd02a298ef16da7206692e8552a0250e8b3e8759270f62e9d8314616f6da274734d3b558b1fc7b7724e892
- languageName: node
- linkType: hard
-
-"tr46@npm:~0.0.3":
- version: 0.0.3
- resolution: "tr46@npm:0.0.3"
- checksum: 10c0/047cb209a6b60c742f05c9d3ace8fa510bff609995c129a37ace03476a9b12db4dbf975e74600830ef0796e18882b2381fb5fb1f6b4f96b832c374de3ab91a11
- languageName: node
- linkType: hard
-
-"trim-lines@npm:^3.0.0":
- version: 3.0.1
- resolution: "trim-lines@npm:3.0.1"
- checksum: 10c0/3a1611fa9e52aa56a94c69951a9ea15b8aaad760eaa26c56a65330dc8adf99cb282fc07cc9d94968b7d4d88003beba220a7278bbe2063328eb23fb56f9509e94
- languageName: node
- linkType: hard
-
-"trough@npm:^2.0.0":
- version: 2.2.0
- resolution: "trough@npm:2.2.0"
- checksum: 10c0/58b671fc970e7867a48514168894396dd94e6d9d6456aca427cc299c004fe67f35ed7172a36449086b2edde10e78a71a284ec0076809add6834fb8f857ccb9b0
- languageName: node
- linkType: hard
-
-"ts-api-utils@npm:^1.0.1":
- version: 1.4.3
- resolution: "ts-api-utils@npm:1.4.3"
- peerDependencies:
- typescript: ">=4.2.0"
- checksum: 10c0/e65dc6e7e8141140c23e1dc94984bf995d4f6801919c71d6dc27cf0cd51b100a91ffcfe5217626193e5bea9d46831e8586febdc7e172df3f1091a7384299e23a
- languageName: node
- linkType: hard
-
-"ts-dedent@npm:^2.2.0":
- version: 2.2.0
- resolution: "ts-dedent@npm:2.2.0"
- checksum: 10c0/175adea838468cc2ff7d5e97f970dcb798bbcb623f29c6088cb21aa2880d207c5784be81ab1741f56b9ac37840cbaba0c0d79f7f8b67ffe61c02634cafa5c303
- languageName: node
- linkType: hard
-
-"ts-interface-checker@npm:^0.1.9":
- version: 0.1.13
- resolution: "ts-interface-checker@npm:0.1.13"
- checksum: 10c0/232509f1b84192d07b81d1e9b9677088e590ac1303436da1e92b296e9be8e31ea042e3e1fd3d29b1742ad2c959e95afe30f63117b8f1bc3a3850070a5142fea7
- languageName: node
- linkType: hard
-
-"tsconfig-paths@npm:^3.15.0":
- version: 3.15.0
- resolution: "tsconfig-paths@npm:3.15.0"
- dependencies:
- "@types/json5": "npm:^0.0.29"
- json5: "npm:^1.0.2"
- minimist: "npm:^1.2.6"
- strip-bom: "npm:^3.0.0"
- checksum: 10c0/5b4f301a2b7a3766a986baf8fc0e177eb80bdba6e396792ff92dc23b5bca8bb279fc96517dcaaef63a3b49bebc6c4c833653ec58155780bc906bdbcf7dda0ef5
- languageName: node
- linkType: hard
-
-"tslib@npm:^2.0.0, tslib@npm:^2.0.3, tslib@npm:^2.1.0, tslib@npm:^2.4.0, tslib@npm:^2.8.0":
- version: 2.8.1
- resolution: "tslib@npm:2.8.1"
- checksum: 10c0/9c4759110a19c53f992d9aae23aac5ced636e99887b51b9e61def52611732872ff7668757d4e4c61f19691e36f4da981cd9485e869b4a7408d689f6bf1f14e62
- languageName: node
- linkType: hard
-
-"type-check@npm:^0.4.0, type-check@npm:~0.4.0":
- version: 0.4.0
- resolution: "type-check@npm:0.4.0"
- dependencies:
- prelude-ls: "npm:^1.2.1"
- checksum: 10c0/7b3fd0ed43891e2080bf0c5c504b418fbb3e5c7b9708d3d015037ba2e6323a28152ec163bcb65212741fa5d2022e3075ac3c76440dbd344c9035f818e8ecee58
- languageName: node
- linkType: hard
-
-"type-fest@npm:^0.20.2":
- version: 0.20.2
- resolution: "type-fest@npm:0.20.2"
- checksum: 10c0/dea9df45ea1f0aaa4e2d3bed3f9a0bfe9e5b2592bddb92eb1bf06e50bcf98dbb78189668cd8bc31a0511d3fc25539b4cd5c704497e53e93e2d40ca764b10bfc3
- languageName: node
- linkType: hard
-
-"type-fest@npm:^0.21.3":
- version: 0.21.3
- resolution: "type-fest@npm:0.21.3"
- checksum: 10c0/902bd57bfa30d51d4779b641c2bc403cdf1371fb9c91d3c058b0133694fcfdb817aef07a47f40faf79039eecbaa39ee9d3c532deff244f3a19ce68cea71a61e8
- languageName: node
- linkType: hard
-
-"type-fest@npm:^1.0.2":
- version: 1.4.0
- resolution: "type-fest@npm:1.4.0"
- checksum: 10c0/a3c0f4ee28ff6ddf800d769eafafcdeab32efa38763c1a1b8daeae681920f6e345d7920bf277245235561d8117dab765cb5f829c76b713b4c9de0998a5397141
- languageName: node
- linkType: hard
-
-"typed-array-buffer@npm:^1.0.3":
- version: 1.0.3
- resolution: "typed-array-buffer@npm:1.0.3"
- dependencies:
- call-bound: "npm:^1.0.3"
- es-errors: "npm:^1.3.0"
- is-typed-array: "npm:^1.1.14"
- checksum: 10c0/1105071756eb248774bc71646bfe45b682efcad93b55532c6ffa4518969fb6241354e4aa62af679ae83899ec296d69ef88f1f3763657cdb3a4d29321f7b83079
- languageName: node
- linkType: hard
-
-"typed-array-byte-length@npm:^1.0.3":
- version: 1.0.3
- resolution: "typed-array-byte-length@npm:1.0.3"
- dependencies:
- call-bind: "npm:^1.0.8"
- for-each: "npm:^0.3.3"
- gopd: "npm:^1.2.0"
- has-proto: "npm:^1.2.0"
- is-typed-array: "npm:^1.1.14"
- checksum: 10c0/6ae083c6f0354f1fce18b90b243343b9982affd8d839c57bbd2c174a5d5dc71be9eb7019ffd12628a96a4815e7afa85d718d6f1e758615151d5f35df841ffb3e
- languageName: node
- linkType: hard
-
-"typed-array-byte-offset@npm:^1.0.4":
- version: 1.0.4
- resolution: "typed-array-byte-offset@npm:1.0.4"
- dependencies:
- available-typed-arrays: "npm:^1.0.7"
- call-bind: "npm:^1.0.8"
- for-each: "npm:^0.3.3"
- gopd: "npm:^1.2.0"
- has-proto: "npm:^1.2.0"
- is-typed-array: "npm:^1.1.15"
- reflect.getprototypeof: "npm:^1.0.9"
- checksum: 10c0/3d805b050c0c33b51719ee52de17c1cd8e6a571abdf0fffb110e45e8dd87a657e8b56eee94b776b13006d3d347a0c18a730b903cf05293ab6d92e99ff8f77e53
- languageName: node
- linkType: hard
-
-"typed-array-length@npm:^1.0.7":
- version: 1.0.7
- resolution: "typed-array-length@npm:1.0.7"
- dependencies:
- call-bind: "npm:^1.0.7"
- for-each: "npm:^0.3.3"
- gopd: "npm:^1.0.1"
- is-typed-array: "npm:^1.1.13"
- possible-typed-array-names: "npm:^1.0.0"
- reflect.getprototypeof: "npm:^1.0.6"
- checksum: 10c0/e38f2ae3779584c138a2d8adfa8ecf749f494af3cd3cdafe4e688ce51418c7d2c5c88df1bd6be2bbea099c3f7cea58c02ca02ed438119e91f162a9de23f61295
- languageName: node
- linkType: hard
-
-"typescript@npm:^5":
- version: 5.8.3
- resolution: "typescript@npm:5.8.3"
- bin:
- tsc: bin/tsc
- tsserver: bin/tsserver
- checksum: 10c0/5f8bb01196e542e64d44db3d16ee0e4063ce4f3e3966df6005f2588e86d91c03e1fb131c2581baf0fb65ee79669eea6e161cd448178986587e9f6844446dbb48
- languageName: node
- linkType: hard
-
-"typescript@patch:typescript@npm%3A^5#optional!builtin":
- version: 5.8.3
- resolution: "typescript@patch:typescript@npm%3A5.8.3#optional!builtin::version=5.8.3&hash=5786d5"
- bin:
- tsc: bin/tsc
- tsserver: bin/tsserver
- checksum: 10c0/39117e346ff8ebd87ae1510b3a77d5d92dae5a89bde588c747d25da5c146603a99c8ee588c7ef80faaf123d89ed46f6dbd918d534d641083177d5fac38b8a1cb
- languageName: node
- linkType: hard
-
-"ufo@npm:^1.5.4":
- version: 1.6.1
- resolution: "ufo@npm:1.6.1"
- checksum: 10c0/5a9f041e5945fba7c189d5410508cbcbefef80b253ed29aa2e1f8a2b86f4bd51af44ee18d4485e6d3468c92be9bf4a42e3a2b72dcaf27ce39ce947ec994f1e6b
- languageName: node
- linkType: hard
-
-"uglify-js@npm:^3.1.4":
- version: 3.19.3
- resolution: "uglify-js@npm:3.19.3"
- bin:
- uglifyjs: bin/uglifyjs
- checksum: 10c0/83b0a90eca35f778e07cad9622b80c448b6aad457c9ff8e568afed978212b42930a95f9e1be943a1ffa4258a3340fbb899f41461131c05bb1d0a9c303aed8479
- languageName: node
- linkType: hard
-
-"unbox-primitive@npm:^1.1.0":
- version: 1.1.0
- resolution: "unbox-primitive@npm:1.1.0"
- dependencies:
- call-bound: "npm:^1.0.3"
- has-bigints: "npm:^1.0.2"
- has-symbols: "npm:^1.1.0"
- which-boxed-primitive: "npm:^1.1.1"
- checksum: 10c0/7dbd35ab02b0e05fe07136c72cb9355091242455473ec15057c11430129bab38b7b3624019b8778d02a881c13de44d63cd02d122ee782fb519e1de7775b5b982
- languageName: node
- linkType: hard
-
-"unc-path-regex@npm:^0.1.2":
- version: 0.1.2
- resolution: "unc-path-regex@npm:0.1.2"
- checksum: 10c0/bf9c781c4e2f38e6613ea17a51072e4b416840fbe6eeb244597ce9b028fac2fb6cfd3dde1f14111b02c245e665dc461aab8168ecc30b14364d02caa37f812996
- languageName: node
- linkType: hard
-
-"undici-types@npm:~6.19.2":
- version: 6.19.8
- resolution: "undici-types@npm:6.19.8"
- checksum: 10c0/078afa5990fba110f6824823ace86073b4638f1d5112ee26e790155f481f2a868cc3e0615505b6f4282bdf74a3d8caad715fd809e870c2bb0704e3ea6082f344
- languageName: node
- linkType: hard
-
-"undici-types@npm:~6.21.0":
- version: 6.21.0
- resolution: "undici-types@npm:6.21.0"
- checksum: 10c0/c01ed51829b10aa72fc3ce64b747f8e74ae9b60eafa19a7b46ef624403508a54c526ffab06a14a26b3120d055e1104d7abe7c9017e83ced038ea5cf52f8d5e04
- languageName: node
- linkType: hard
-
-"unhead@npm:^1.8.3":
- version: 1.11.20
- resolution: "unhead@npm:1.11.20"
- dependencies:
- "@unhead/dom": "npm:1.11.20"
- "@unhead/schema": "npm:1.11.20"
- "@unhead/shared": "npm:1.11.20"
- hookable: "npm:^5.5.3"
- checksum: 10c0/cce50a79509984679d3b8f7a2299f7ec7e252c8efdac76e9156ffa816c04c53ff25e526ead88df4cb67dc016b98c37adec8c3e93b7322a972561d3f4cd1c21d8
- languageName: node
- linkType: hard
-
-"unified@npm:^10.0.0":
- version: 10.1.2
- resolution: "unified@npm:10.1.2"
- dependencies:
- "@types/unist": "npm:^2.0.0"
- bail: "npm:^2.0.0"
- extend: "npm:^3.0.0"
- is-buffer: "npm:^2.0.0"
- is-plain-obj: "npm:^4.0.0"
- trough: "npm:^2.0.0"
- vfile: "npm:^5.0.0"
- checksum: 10c0/da9195e3375a74ab861a65e1d7b0454225d17a61646697911eb6b3e97de41091930ed3d167eb11881d4097c51deac407091d39ddd1ee8bf1fde3f946844a17a7
- languageName: node
- linkType: hard
-
-"unified@npm:^11.0.0, unified@npm:^11.0.4":
- version: 11.0.5
- resolution: "unified@npm:11.0.5"
- dependencies:
- "@types/unist": "npm:^3.0.0"
- bail: "npm:^2.0.0"
- devlop: "npm:^1.0.0"
- extend: "npm:^3.0.0"
- is-plain-obj: "npm:^4.0.0"
- trough: "npm:^2.0.0"
- vfile: "npm:^6.0.0"
- checksum: 10c0/53c8e685f56d11d9d458a43e0e74328a4d6386af51c8ac37a3dcabec74ce5026da21250590d4aff6733ccd7dc203116aae2b0769abc18cdf9639a54ae528dfc9
- languageName: node
- linkType: hard
-
-"unique-filename@npm:^4.0.0":
- version: 4.0.0
- resolution: "unique-filename@npm:4.0.0"
- dependencies:
- unique-slug: "npm:^5.0.0"
- checksum: 10c0/38ae681cceb1408ea0587b6b01e29b00eee3c84baee1e41fd5c16b9ed443b80fba90c40e0ba69627e30855570a34ba8b06702d4a35035d4b5e198bf5a64c9ddc
- languageName: node
- linkType: hard
-
-"unique-slug@npm:^5.0.0":
- version: 5.0.0
- resolution: "unique-slug@npm:5.0.0"
- dependencies:
- imurmurhash: "npm:^0.1.4"
- checksum: 10c0/d324c5a44887bd7e105ce800fcf7533d43f29c48757ac410afd42975de82cc38ea2035c0483f4de82d186691bf3208ef35c644f73aa2b1b20b8e651be5afd293
- languageName: node
- linkType: hard
-
-"unist-util-find-after@npm:^5.0.0":
- version: 5.0.0
- resolution: "unist-util-find-after@npm:5.0.0"
- dependencies:
- "@types/unist": "npm:^3.0.0"
- unist-util-is: "npm:^6.0.0"
- checksum: 10c0/a7cea473c4384df8de867c456b797ff1221b20f822e1af673ff5812ed505358b36f47f3b084ac14c3622cb879ed833b71b288e8aa71025352a2aab4c2925a6eb
- languageName: node
- linkType: hard
-
-"unist-util-generated@npm:^2.0.0":
- version: 2.0.1
- resolution: "unist-util-generated@npm:2.0.1"
- checksum: 10c0/6f052dd47a7280785f3787f52cdfe8819e1de50317a1bcf7c9346c63268cf2cebc61a5980e7ca734a54735e27dbb73091aa0361a98504ab7f9409fb75f1b16bb
- languageName: node
- linkType: hard
-
-"unist-util-is@npm:^5.0.0":
- version: 5.2.1
- resolution: "unist-util-is@npm:5.2.1"
- dependencies:
- "@types/unist": "npm:^2.0.0"
- checksum: 10c0/a2376910b832bb10653d2167c3cd85b3610a5fd53f5169834c08b3c3a720fae9043d75ad32d727eedfc611491966c26a9501d428ec62467edc17f270feb5410b
- languageName: node
- linkType: hard
-
-"unist-util-is@npm:^6.0.0":
- version: 6.0.0
- resolution: "unist-util-is@npm:6.0.0"
- dependencies:
- "@types/unist": "npm:^3.0.0"
- checksum: 10c0/9419352181eaa1da35eca9490634a6df70d2217815bb5938a04af3a662c12c5607a2f1014197ec9c426fbef18834f6371bfdb6f033040fa8aa3e965300d70e7e
- languageName: node
- linkType: hard
-
-"unist-util-position-from-estree@npm:^1.0.0, unist-util-position-from-estree@npm:^1.1.0":
- version: 1.1.2
- resolution: "unist-util-position-from-estree@npm:1.1.2"
- dependencies:
- "@types/unist": "npm:^2.0.0"
- checksum: 10c0/1d95d0b2b05efcec07a4e6745a6950cd498f6100fb900615b252937baed5140df1c6319b9a67364c8a6bd891c58b3c9a52a22e8e1d3422c50bb785d7e3ad7484
- languageName: node
- linkType: hard
-
-"unist-util-position@npm:^4.0.0":
- version: 4.0.4
- resolution: "unist-util-position@npm:4.0.4"
- dependencies:
- "@types/unist": "npm:^2.0.0"
- checksum: 10c0/e506d702e25a0fb47a64502054f709a6ff5db98993bf139eec868cd11eb7de34392b781c6c2002e2c24d97aa398c14b32a47076129f36e4b894a2c1351200888
- languageName: node
- linkType: hard
-
-"unist-util-position@npm:^5.0.0":
- version: 5.0.0
- resolution: "unist-util-position@npm:5.0.0"
- dependencies:
- "@types/unist": "npm:^3.0.0"
- checksum: 10c0/dde3b31e314c98f12b4dc6402f9722b2bf35e96a4f2d463233dd90d7cde2d4928074a7a11eff0a5eb1f4e200f27fc1557e0a64a7e8e4da6558542f251b1b7400
- languageName: node
- linkType: hard
-
-"unist-util-remove-position@npm:^4.0.0":
- version: 4.0.2
- resolution: "unist-util-remove-position@npm:4.0.2"
- dependencies:
- "@types/unist": "npm:^2.0.0"
- unist-util-visit: "npm:^4.0.0"
- checksum: 10c0/17371b1e53c52d1b00656c9c6fe1bb044846e7067022195823ed3d1a8d8b965d4f9a79b286b8a841e68731b4ec93afd563b81ae92151f80c28534ba51e9dc18f
- languageName: node
- linkType: hard
-
-"unist-util-remove-position@npm:^5.0.0":
- version: 5.0.0
- resolution: "unist-util-remove-position@npm:5.0.0"
- dependencies:
- "@types/unist": "npm:^3.0.0"
- unist-util-visit: "npm:^5.0.0"
- checksum: 10c0/e8c76da4399446b3da2d1c84a97c607b37d03d1d92561e14838cbe4fdcb485bfc06c06cfadbb808ccb72105a80643976d0660d1fe222ca372203075be9d71105
- languageName: node
- linkType: hard
-
-"unist-util-remove@npm:^4.0.0":
- version: 4.0.0
- resolution: "unist-util-remove@npm:4.0.0"
- dependencies:
- "@types/unist": "npm:^3.0.0"
- unist-util-is: "npm:^6.0.0"
- unist-util-visit-parents: "npm:^6.0.0"
- checksum: 10c0/30f3ed31095dd7f3109266d39c514fab5f2da3fb656d5f78a0e3e7700f219760f2f4d8286c810ae43c241fee3f0a8dd40f8d1e5ebeee3cb810581d5e7e8d4f7d
- languageName: node
- linkType: hard
-
-"unist-util-stringify-position@npm:^3.0.0":
- version: 3.0.3
- resolution: "unist-util-stringify-position@npm:3.0.3"
- dependencies:
- "@types/unist": "npm:^2.0.0"
- checksum: 10c0/14550027825230528f6437dad7f2579a841780318569851291be6c8a970bae6f65a7feb24dabbcfce0e5e68cacae85bf12cbda3f360f7c873b4db602bdf7bb21
- languageName: node
- linkType: hard
-
-"unist-util-stringify-position@npm:^4.0.0":
- version: 4.0.0
- resolution: "unist-util-stringify-position@npm:4.0.0"
- dependencies:
- "@types/unist": "npm:^3.0.0"
- checksum: 10c0/dfe1dbe79ba31f589108cb35e523f14029b6675d741a79dea7e5f3d098785045d556d5650ec6a8338af11e9e78d2a30df12b1ee86529cded1098da3f17ee999e
- languageName: node
- linkType: hard
-
-"unist-util-visit-parents@npm:^4.0.0":
- version: 4.1.1
- resolution: "unist-util-visit-parents@npm:4.1.1"
- dependencies:
- "@types/unist": "npm:^2.0.0"
- unist-util-is: "npm:^5.0.0"
- checksum: 10c0/f84b544a111af5a17f2b80c462da9f7fdcb46a69f85ab317d2d9ddca766c00e2ceea6c76c0960e58ef4607aad89661c99eccf290973b453e15dd1621c57079d4
- languageName: node
- linkType: hard
-
-"unist-util-visit-parents@npm:^5.0.0, unist-util-visit-parents@npm:^5.1.1":
- version: 5.1.3
- resolution: "unist-util-visit-parents@npm:5.1.3"
- dependencies:
- "@types/unist": "npm:^2.0.0"
- unist-util-is: "npm:^5.0.0"
- checksum: 10c0/f6829bfd8f2eddf63a32e2c302cd50978ef0c194b792c6fe60c2b71dfd7232415a3c5941903972543e9d34e6a8ea69dee9ccd95811f4a795495ed2ae855d28d0
- languageName: node
- linkType: hard
-
-"unist-util-visit-parents@npm:^6.0.0":
- version: 6.0.1
- resolution: "unist-util-visit-parents@npm:6.0.1"
- dependencies:
- "@types/unist": "npm:^3.0.0"
- unist-util-is: "npm:^6.0.0"
- checksum: 10c0/51b1a5b0aa23c97d3e03e7288f0cdf136974df2217d0999d3de573c05001ef04cccd246f51d2ebdfb9e8b0ed2704451ad90ba85ae3f3177cf9772cef67f56206
- languageName: node
- linkType: hard
-
-"unist-util-visit@npm:^3.1.0":
- version: 3.1.0
- resolution: "unist-util-visit@npm:3.1.0"
- dependencies:
- "@types/unist": "npm:^2.0.0"
- unist-util-is: "npm:^5.0.0"
- unist-util-visit-parents: "npm:^4.0.0"
- checksum: 10c0/9b92ea4e6debadbb77f2c7a0ab8c8b7c63781b2f2050563c971687df368f6f6fe932d864442347a685f0dc56b570a55e5d7ffeb87a452489100640cf280dc8da
- languageName: node
- linkType: hard
-
-"unist-util-visit@npm:^4.0.0":
- version: 4.1.2
- resolution: "unist-util-visit@npm:4.1.2"
- dependencies:
- "@types/unist": "npm:^2.0.0"
- unist-util-is: "npm:^5.0.0"
- unist-util-visit-parents: "npm:^5.1.1"
- checksum: 10c0/56a1f49a4d8e321e75b3c7821d540a45165a031dd06324bb0e8c75e7737bc8d73bdddbf0b0ca82000f9708a4c36861c6ebe88d01f7cf00e925f5d75f13a3a017
- languageName: node
- linkType: hard
-
-"unist-util-visit@npm:^5.0.0":
- version: 5.0.0
- resolution: "unist-util-visit@npm:5.0.0"
- dependencies:
- "@types/unist": "npm:^3.0.0"
- unist-util-is: "npm:^6.0.0"
- unist-util-visit-parents: "npm:^6.0.0"
- checksum: 10c0/51434a1d80252c1540cce6271a90fd1a106dbe624997c09ed8879279667fb0b2d3a685e02e92bf66598dcbe6cdffa7a5f5fb363af8fdf90dda6c855449ae39a5
- languageName: node
- linkType: hard
-
-"unrs-resolver@npm:^1.6.2":
- version: 1.7.2
- resolution: "unrs-resolver@npm:1.7.2"
- dependencies:
- "@unrs/resolver-binding-darwin-arm64": "npm:1.7.2"
- "@unrs/resolver-binding-darwin-x64": "npm:1.7.2"
- "@unrs/resolver-binding-freebsd-x64": "npm:1.7.2"
- "@unrs/resolver-binding-linux-arm-gnueabihf": "npm:1.7.2"
- "@unrs/resolver-binding-linux-arm-musleabihf": "npm:1.7.2"
- "@unrs/resolver-binding-linux-arm64-gnu": "npm:1.7.2"
- "@unrs/resolver-binding-linux-arm64-musl": "npm:1.7.2"
- "@unrs/resolver-binding-linux-ppc64-gnu": "npm:1.7.2"
- "@unrs/resolver-binding-linux-riscv64-gnu": "npm:1.7.2"
- "@unrs/resolver-binding-linux-riscv64-musl": "npm:1.7.2"
- "@unrs/resolver-binding-linux-s390x-gnu": "npm:1.7.2"
- "@unrs/resolver-binding-linux-x64-gnu": "npm:1.7.2"
- "@unrs/resolver-binding-linux-x64-musl": "npm:1.7.2"
- "@unrs/resolver-binding-wasm32-wasi": "npm:1.7.2"
- "@unrs/resolver-binding-win32-arm64-msvc": "npm:1.7.2"
- "@unrs/resolver-binding-win32-ia32-msvc": "npm:1.7.2"
- "@unrs/resolver-binding-win32-x64-msvc": "npm:1.7.2"
- napi-postinstall: "npm:^0.2.2"
- dependenciesMeta:
- "@unrs/resolver-binding-darwin-arm64":
- optional: true
- "@unrs/resolver-binding-darwin-x64":
- optional: true
- "@unrs/resolver-binding-freebsd-x64":
- optional: true
- "@unrs/resolver-binding-linux-arm-gnueabihf":
- optional: true
- "@unrs/resolver-binding-linux-arm-musleabihf":
- optional: true
- "@unrs/resolver-binding-linux-arm64-gnu":
- optional: true
- "@unrs/resolver-binding-linux-arm64-musl":
- optional: true
- "@unrs/resolver-binding-linux-ppc64-gnu":
- optional: true
- "@unrs/resolver-binding-linux-riscv64-gnu":
- optional: true
- "@unrs/resolver-binding-linux-riscv64-musl":
- optional: true
- "@unrs/resolver-binding-linux-s390x-gnu":
- optional: true
- "@unrs/resolver-binding-linux-x64-gnu":
- optional: true
- "@unrs/resolver-binding-linux-x64-musl":
- optional: true
- "@unrs/resolver-binding-wasm32-wasi":
- optional: true
- "@unrs/resolver-binding-win32-arm64-msvc":
- optional: true
- "@unrs/resolver-binding-win32-ia32-msvc":
- optional: true
- "@unrs/resolver-binding-win32-x64-msvc":
- optional: true
- checksum: 10c0/c293db95c59b08e33f3bfb00042120fb90fd5448bd1790cd2dc779a13eb6062dddf04a91b72c73d3635b0c539552435675ce816fa52e66bb0cd7b7e5a2f6399c
- languageName: node
- linkType: hard
-
-"update-browserslist-db@npm:^1.1.3":
- version: 1.1.3
- resolution: "update-browserslist-db@npm:1.1.3"
- dependencies:
- escalade: "npm:^3.2.0"
- picocolors: "npm:^1.1.1"
- peerDependencies:
- browserslist: ">= 4.21.0"
- bin:
- update-browserslist-db: cli.js
- checksum: 10c0/682e8ecbf9de474a626f6462aa85927936cdd256fe584c6df2508b0df9f7362c44c957e9970df55dfe44d3623807d26316ea2c7d26b80bb76a16c56c37233c32
- languageName: node
- linkType: hard
-
-"upper-case-first@npm:^2.0.2":
- version: 2.0.2
- resolution: "upper-case-first@npm:2.0.2"
- dependencies:
- tslib: "npm:^2.0.3"
- checksum: 10c0/ccad6a0b143310ebfba2b5841f30bef71246297385f1329c022c902b2b5fc5aee009faf1ac9da5ab3ba7f615b88f5dc1cd80461b18a8f38cb1d4c3eb92538ea9
- languageName: node
- linkType: hard
-
-"upper-case@npm:^2.0.2":
- version: 2.0.2
- resolution: "upper-case@npm:2.0.2"
- dependencies:
- tslib: "npm:^2.0.3"
- checksum: 10c0/5ac176c9d3757abb71400df167f9abb46d63152d5797c630d1a9f083fbabd89711fb4b3dc6de06ff0138fe8946fa5b8518b4fcdae9ca8a3e341417075beae069
- languageName: node
- linkType: hard
-
-"uri-js@npm:^4.2.2":
- version: 4.4.1
- resolution: "uri-js@npm:4.4.1"
- dependencies:
- punycode: "npm:^2.1.0"
- checksum: 10c0/4ef57b45aa820d7ac6496e9208559986c665e49447cb072744c13b66925a362d96dd5a46c4530a6b8e203e5db5fe849369444440cb22ecfc26c679359e5dfa3c
- languageName: node
- linkType: hard
-
-"use-callback-ref@npm:^1.3.3":
- version: 1.3.3
- resolution: "use-callback-ref@npm:1.3.3"
- dependencies:
- tslib: "npm:^2.0.0"
- peerDependencies:
- "@types/react": "*"
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/f887488c6e6075cdad4962979da1714b217bcb1ee009a9e57ce9a844bcfc4c3a99e93983dfc2e5af9e0913824d24e730090ff255e902c516dcb58d2d3837e01c
- languageName: node
- linkType: hard
-
-"use-sidecar@npm:^1.1.3":
- version: 1.1.3
- resolution: "use-sidecar@npm:1.1.3"
- dependencies:
- detect-node-es: "npm:^1.1.0"
- tslib: "npm:^2.0.0"
- peerDependencies:
- "@types/react": "*"
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- "@types/react":
- optional: true
- checksum: 10c0/161599bf921cfaa41c85d2b01c871975ee99260f3e874c2d41c05890d41170297bdcf314bc5185e7a700de2034ac5b888e3efc8e9f35724f4918f53538d717c9
- languageName: node
- linkType: hard
-
-"use-sync-external-store@npm:^1.4.0":
- version: 1.4.0
- resolution: "use-sync-external-store@npm:1.4.0"
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- checksum: 10c0/ec011a5055962c0f6b509d6e78c0b143f8cd069890ae370528753053c55e3b360d3648e76cfaa854faa7a59eb08d6c5fb1015e60ffde9046d32f5b2a295acea5
- languageName: node
- linkType: hard
-
-"util-deprecate@npm:^1.0.1, util-deprecate@npm:^1.0.2":
- version: 1.0.2
- resolution: "util-deprecate@npm:1.0.2"
- checksum: 10c0/41a5bdd214df2f6c3ecf8622745e4a366c4adced864bc3c833739791aeeeb1838119af7daed4ba36428114b5c67dcda034a79c882e97e43c03e66a4dd7389942
- languageName: node
- linkType: hard
-
-"util@npm:^0.10.3":
- version: 0.10.4
- resolution: "util@npm:0.10.4"
- dependencies:
- inherits: "npm:2.0.3"
- checksum: 10c0/d29f6893e406b63b088ce9924da03201df89b31490d4d011f1c07a386ea4b3dbe907464c274023c237da470258e1805d806c7e4009a5974cd6b1d474b675852a
- languageName: node
- linkType: hard
-
-"uuid@npm:^11.1.0":
- version: 11.1.0
- resolution: "uuid@npm:11.1.0"
- bin:
- uuid: dist/esm/bin/uuid
- checksum: 10c0/34aa51b9874ae398c2b799c88a127701408cd581ee89ec3baa53509dd8728cbb25826f2a038f9465f8b7be446f0fbf11558862965b18d21c993684297628d4d3
- languageName: node
- linkType: hard
-
-"uuid@npm:^9.0.0":
- version: 9.0.1
- resolution: "uuid@npm:9.0.1"
- bin:
- uuid: dist/bin/uuid
- checksum: 10c0/1607dd32ac7fc22f2d8f77051e6a64845c9bce5cd3dd8aa0070c074ec73e666a1f63c7b4e0f4bf2bc8b9d59dc85a15e17807446d9d2b17c8485fbc2147b27f9b
- languageName: node
- linkType: hard
-
-"uvu@npm:^0.5.0":
- version: 0.5.6
- resolution: "uvu@npm:0.5.6"
- dependencies:
- dequal: "npm:^2.0.0"
- diff: "npm:^5.0.0"
- kleur: "npm:^4.0.3"
- sade: "npm:^1.7.3"
- bin:
- uvu: bin.js
- checksum: 10c0/ad32eb5f7d94bdeb71f80d073003f0138e24f61ed68cecc8e15d2f30838f44c9670577bb1775c8fac894bf93d1bc1583d470a9195e49bfa6efa14cc6f4942bff
- languageName: node
- linkType: hard
-
-"v8flags@npm:^4.0.1":
- version: 4.0.1
- resolution: "v8flags@npm:4.0.1"
- checksum: 10c0/59500e19ff9e7b4e2f09bcfe12d16d9443bf36a0e9b65b5fa6688f12c4b3f833d99ecd8debdbe856c047080bd0a73bd2ca5066f524efb1a87fdca6c1e0aecd74
- languageName: node
- linkType: hard
-
-"vfile-location@npm:^5.0.0":
- version: 5.0.3
- resolution: "vfile-location@npm:5.0.3"
- dependencies:
- "@types/unist": "npm:^3.0.0"
- vfile: "npm:^6.0.0"
- checksum: 10c0/1711f67802a5bc175ea69750d59863343ed43d1b1bb25c0a9063e4c70595e673e53e2ed5cdbb6dcdc370059b31605144d95e8c061b9361bcc2b036b8f63a4966
- languageName: node
- linkType: hard
-
-"vfile-matter@npm:^3.0.1":
- version: 3.0.1
- resolution: "vfile-matter@npm:3.0.1"
- dependencies:
- "@types/js-yaml": "npm:^4.0.0"
- is-buffer: "npm:^2.0.0"
- js-yaml: "npm:^4.0.0"
- checksum: 10c0/45ff9b49e7a5817b646d76f14d2486e12a93a16951bd8cfa6c64f0c78c4e56e48d30a0542a980bc9c7aae1bb430d457f9dfc2677e514d66cc2976ab31f10403a
- languageName: node
- linkType: hard
-
-"vfile-message@npm:^3.0.0":
- version: 3.1.4
- resolution: "vfile-message@npm:3.1.4"
- dependencies:
- "@types/unist": "npm:^2.0.0"
- unist-util-stringify-position: "npm:^3.0.0"
- checksum: 10c0/c4ccf9c0ced92d657846fd067fefcf91c5832cdbe2ecc431bb67886e8c959bf7fc05a9dbbca5551bc34c9c87a0a73854b4249f65c64ddfebc4d59ea24a18b996
- languageName: node
- linkType: hard
-
-"vfile-message@npm:^4.0.0":
- version: 4.0.2
- resolution: "vfile-message@npm:4.0.2"
- dependencies:
- "@types/unist": "npm:^3.0.0"
- unist-util-stringify-position: "npm:^4.0.0"
- checksum: 10c0/07671d239a075f888b78f318bc1d54de02799db4e9dce322474e67c35d75ac4a5ac0aaf37b18801d91c9f8152974ea39678aa72d7198758b07f3ba04fb7d7514
- languageName: node
- linkType: hard
-
-"vfile@npm:^5.0.0, vfile@npm:^5.3.0":
- version: 5.3.7
- resolution: "vfile@npm:5.3.7"
- dependencies:
- "@types/unist": "npm:^2.0.0"
- is-buffer: "npm:^2.0.0"
- unist-util-stringify-position: "npm:^3.0.0"
- vfile-message: "npm:^3.0.0"
- checksum: 10c0/c36bd4c3f16ec0c6cbad0711ca99200316bbf849d6b07aa4cb5d9062cc18ae89249fe62af9521926e9659c0e6bc5c2c1da0fe26b41fb71e757438297e1a41da4
- languageName: node
- linkType: hard
-
-"vfile@npm:^6.0.0":
- version: 6.0.3
- resolution: "vfile@npm:6.0.3"
- dependencies:
- "@types/unist": "npm:^3.0.0"
- vfile-message: "npm:^4.0.0"
- checksum: 10c0/e5d9eb4810623f23758cfc2205323e33552fb5972e5c2e6587babe08fe4d24859866277404fb9e2a20afb71013860d96ec806cb257536ae463c87d70022ab9ef
- languageName: node
- linkType: hard
-
-"vite@npm:^5.1.6":
- version: 5.4.19
- resolution: "vite@npm:5.4.19"
- dependencies:
- esbuild: "npm:^0.21.3"
- fsevents: "npm:~2.3.3"
- postcss: "npm:^8.4.43"
- rollup: "npm:^4.20.0"
- peerDependencies:
- "@types/node": ^18.0.0 || >=20.0.0
- less: "*"
- lightningcss: ^1.21.0
- sass: "*"
- sass-embedded: "*"
- stylus: "*"
- sugarss: "*"
- terser: ^5.4.0
- dependenciesMeta:
- fsevents:
- optional: true
- peerDependenciesMeta:
- "@types/node":
- optional: true
- less:
- optional: true
- lightningcss:
- optional: true
- sass:
- optional: true
- sass-embedded:
- optional: true
- stylus:
- optional: true
- sugarss:
- optional: true
- terser:
- optional: true
- bin:
- vite: bin/vite.js
- checksum: 10c0/c97601234dba482cea5290f2a2ea0fcd65e1fab3df06718ea48adc8ceb14bc3129508216c4989329c618f6a0470b42f439677a207aef62b0c76f445091c2d89e
- languageName: node
- linkType: hard
-
-"vscode-jsonrpc@npm:8.2.0":
- version: 8.2.0
- resolution: "vscode-jsonrpc@npm:8.2.0"
- checksum: 10c0/0789c227057a844f5ead55c84679206227a639b9fb76e881185053abc4e9848aa487245966cc2393fcb342c4541241b015a1a2559fddd20ac1e68945c95344e6
- languageName: node
- linkType: hard
-
-"vscode-languageserver-protocol@npm:3.17.5":
- version: 3.17.5
- resolution: "vscode-languageserver-protocol@npm:3.17.5"
- dependencies:
- vscode-jsonrpc: "npm:8.2.0"
- vscode-languageserver-types: "npm:3.17.5"
- checksum: 10c0/5f38fd80da9868d706eaa4a025f4aff9c3faad34646bcde1426f915cbd8d7e8b6c3755ce3fef6eebd256ba3145426af1085305f8a76e34276d2e95aaf339a90b
- languageName: node
- linkType: hard
-
-"vscode-languageserver-textdocument@npm:~1.0.11":
- version: 1.0.12
- resolution: "vscode-languageserver-textdocument@npm:1.0.12"
- checksum: 10c0/534349894b059602c4d97615a1147b6c4c031141c2093e59657f54e38570f5989c21b376836f13b9375419869242e9efb4066643208b21ab1e1dee111a0f00fb
- languageName: node
- linkType: hard
-
-"vscode-languageserver-types@npm:3.17.5":
- version: 3.17.5
- resolution: "vscode-languageserver-types@npm:3.17.5"
- checksum: 10c0/1e1260de79a2cc8de3e46f2e0182cdc94a7eddab487db5a3bd4ee716f67728e685852707d72c059721ce500447be9a46764a04f0611e94e4321ffa088eef36f8
- languageName: node
- linkType: hard
-
-"vscode-languageserver@npm:~9.0.1":
- version: 9.0.1
- resolution: "vscode-languageserver@npm:9.0.1"
- dependencies:
- vscode-languageserver-protocol: "npm:3.17.5"
- bin:
- installServerIntoExtension: bin/installServerIntoExtension
- checksum: 10c0/8a0838d77c98a211c76e54bd3a6249fc877e4e1a73322673fb0e921168d8e91de4f170f1d4ff7e8b6289d0698207afc6aba6662d4c1cd8e4bd7cae96afd6b0c2
- languageName: node
- linkType: hard
-
-"vscode-oniguruma@npm:^1.7.0":
- version: 1.7.0
- resolution: "vscode-oniguruma@npm:1.7.0"
- checksum: 10c0/bef0073c665ddf8c86e51da94529c905856559e9aba97a9882f951acd572da560384775941ab6e7e8db94d9c578b25fefb951e4b73c37e8712e16b0231de2689
- languageName: node
- linkType: hard
-
-"vscode-textmate@npm:^8.0.0":
- version: 8.0.0
- resolution: "vscode-textmate@npm:8.0.0"
- checksum: 10c0/836f7fe73fc94998a38ca193df48173a2b6eab08b4943d83c8cac9a2a0c3546cfdab4cf1b10b890ec4a4374c5bee03a885ef0e83e7fd2bd618cf00781c017c04
- languageName: node
- linkType: hard
-
-"vscode-uri@npm:~3.0.8":
- version: 3.0.8
- resolution: "vscode-uri@npm:3.0.8"
- checksum: 10c0/f7f217f526bf109589969fe6e66b71e70b937de1385a1d7bb577ca3ee7c5e820d3856a86e9ff2fa9b7a0bc56a3dd8c3a9a557d3fedd7df414bc618d5e6b567f9
- languageName: node
- linkType: hard
-
-"vue-demi@npm:>=0.13.0, vue-demi@npm:>=0.14.8":
- version: 0.14.10
- resolution: "vue-demi@npm:0.14.10"
- peerDependencies:
- "@vue/composition-api": ^1.0.0-rc.1
- vue: ^3.0.0-0 || ^2.6.0
- peerDependenciesMeta:
- "@vue/composition-api":
- optional: true
- bin:
- vue-demi-fix: bin/vue-demi-fix.js
- vue-demi-switch: bin/vue-demi-switch.js
- checksum: 10c0/a9ed8712fa36d01bc13c39757f95f30cebf42d557b99e94bff86d8660c81f2911b41220f7affc023d1ffcc19e13999e4a83019991e264787cca2c616e83aea48
- languageName: node
- linkType: hard
-
-"w3c-keyname@npm:^2.2.4":
- version: 2.2.8
- resolution: "w3c-keyname@npm:2.2.8"
- checksum: 10c0/37cf335c90efff31672ebb345577d681e2177f7ff9006a9ad47c68c5a9d265ba4a7b39d6c2599ceea639ca9315584ce4bd9c9fbf7a7217bfb7a599e71943c4c4
- languageName: node
- linkType: hard
-
-"wcwidth@npm:^1.0.1":
- version: 1.0.1
- resolution: "wcwidth@npm:1.0.1"
- dependencies:
- defaults: "npm:^1.0.3"
- checksum: 10c0/5b61ca583a95e2dd85d7078400190efd452e05751a64accb8c06ce4db65d7e0b0cde9917d705e826a2e05cc2548f61efde115ffa374c3e436d04be45c889e5b4
- languageName: node
- linkType: hard
-
-"web-namespaces@npm:^2.0.0":
- version: 2.0.1
- resolution: "web-namespaces@npm:2.0.1"
- checksum: 10c0/df245f466ad83bd5cd80bfffc1674c7f64b7b84d1de0e4d2c0934fb0782e0a599164e7197a4bce310ee3342fd61817b8047ff04f076a1ce12dd470584142a4bd
- languageName: node
- linkType: hard
-
-"web-streams-polyfill@npm:4.0.0-beta.3":
- version: 4.0.0-beta.3
- resolution: "web-streams-polyfill@npm:4.0.0-beta.3"
- checksum: 10c0/a9596779db2766990117ed3a158e0b0e9f69b887a6d6ba0779940259e95f99dc3922e534acc3e5a117b5f5905300f527d6fbf8a9f0957faf1d8e585ce3452e8e
- languageName: node
- linkType: hard
-
-"web-vitals@npm:^4.2.4":
- version: 4.2.4
- resolution: "web-vitals@npm:4.2.4"
- checksum: 10c0/383c9281d5b556bcd190fde3c823aeb005bb8cf82e62c75b47beb411014a4ed13fa5c5e0489ed0f1b8d501cd66b0bebcb8624c1a75750bd5df13e2a3b1b2d194
- languageName: node
- linkType: hard
-
-"web-worker@npm:^1.2.0":
- version: 1.5.0
- resolution: "web-worker@npm:1.5.0"
- checksum: 10c0/d42744757422803c73ca64fa51e1ce994354ace4b8438b3f740425a05afeb8df12dd5dadbf6b0839a08dbda56c470d7943c0383854c4fb1ae40ab874eb10427a
- languageName: node
- linkType: hard
-
-"webidl-conversions@npm:^3.0.0":
- version: 3.0.1
- resolution: "webidl-conversions@npm:3.0.1"
- checksum: 10c0/5612d5f3e54760a797052eb4927f0ddc01383550f542ccd33d5238cfd65aeed392a45ad38364970d0a0f4fea32e1f4d231b3d8dac4a3bdd385e5cf802ae097db
- languageName: node
- linkType: hard
-
-"whatwg-url@npm:^5.0.0":
- version: 5.0.0
- resolution: "whatwg-url@npm:5.0.0"
- dependencies:
- tr46: "npm:~0.0.3"
- webidl-conversions: "npm:^3.0.0"
- checksum: 10c0/1588bed84d10b72d5eec1d0faa0722ba1962f1821e7539c535558fb5398d223b0c50d8acab950b8c488b4ba69043fd833cc2697056b167d8ad46fac3995a55d5
- languageName: node
- linkType: hard
-
-"which-boxed-primitive@npm:^1.1.0, which-boxed-primitive@npm:^1.1.1":
- version: 1.1.1
- resolution: "which-boxed-primitive@npm:1.1.1"
- dependencies:
- is-bigint: "npm:^1.1.0"
- is-boolean-object: "npm:^1.2.1"
- is-number-object: "npm:^1.1.1"
- is-string: "npm:^1.1.1"
- is-symbol: "npm:^1.1.1"
- checksum: 10c0/aceea8ede3b08dede7dce168f3883323f7c62272b49801716e8332ff750e7ae59a511ae088840bc6874f16c1b7fd296c05c949b0e5b357bfe3c431b98c417abe
- languageName: node
- linkType: hard
-
-"which-builtin-type@npm:^1.2.1":
- version: 1.2.1
- resolution: "which-builtin-type@npm:1.2.1"
- dependencies:
- call-bound: "npm:^1.0.2"
- function.prototype.name: "npm:^1.1.6"
- has-tostringtag: "npm:^1.0.2"
- is-async-function: "npm:^2.0.0"
- is-date-object: "npm:^1.1.0"
- is-finalizationregistry: "npm:^1.1.0"
- is-generator-function: "npm:^1.0.10"
- is-regex: "npm:^1.2.1"
- is-weakref: "npm:^1.0.2"
- isarray: "npm:^2.0.5"
- which-boxed-primitive: "npm:^1.1.0"
- which-collection: "npm:^1.0.2"
- which-typed-array: "npm:^1.1.16"
- checksum: 10c0/8dcf323c45e5c27887800df42fbe0431d0b66b1163849bb7d46b5a730ad6a96ee8bfe827d078303f825537844ebf20c02459de41239a0a9805e2fcb3cae0d471
- languageName: node
- linkType: hard
-
-"which-collection@npm:^1.0.2":
- version: 1.0.2
- resolution: "which-collection@npm:1.0.2"
- dependencies:
- is-map: "npm:^2.0.3"
- is-set: "npm:^2.0.3"
- is-weakmap: "npm:^2.0.2"
- is-weakset: "npm:^2.0.3"
- checksum: 10c0/3345fde20964525a04cdf7c4a96821f85f0cc198f1b2ecb4576e08096746d129eb133571998fe121c77782ac8f21cbd67745a3d35ce100d26d4e684c142ea1f2
- languageName: node
- linkType: hard
-
-"which-typed-array@npm:^1.1.16, which-typed-array@npm:^1.1.18":
- version: 1.1.19
- resolution: "which-typed-array@npm:1.1.19"
- dependencies:
- available-typed-arrays: "npm:^1.0.7"
- call-bind: "npm:^1.0.8"
- call-bound: "npm:^1.0.4"
- for-each: "npm:^0.3.5"
- get-proto: "npm:^1.0.1"
- gopd: "npm:^1.2.0"
- has-tostringtag: "npm:^1.0.2"
- checksum: 10c0/702b5dc878addafe6c6300c3d0af5983b175c75fcb4f2a72dfc3dd38d93cf9e89581e4b29c854b16ea37e50a7d7fca5ae42ece5c273d8060dcd603b2404bbb3f
- languageName: node
- linkType: hard
-
-"which@npm:^1.2.14, which@npm:^1.2.9":
- version: 1.3.1
- resolution: "which@npm:1.3.1"
- dependencies:
- isexe: "npm:^2.0.0"
- bin:
- which: ./bin/which
- checksum: 10c0/e945a8b6bbf6821aaaef7f6e0c309d4b615ef35699576d5489b4261da9539f70393c6b2ce700ee4321c18f914ebe5644bc4631b15466ffbaad37d83151f6af59
- languageName: node
- linkType: hard
-
-"which@npm:^2.0.1":
- version: 2.0.2
- resolution: "which@npm:2.0.2"
- dependencies:
- isexe: "npm:^2.0.0"
- bin:
- node-which: ./bin/node-which
- checksum: 10c0/66522872a768b60c2a65a57e8ad184e5372f5b6a9ca6d5f033d4b0dc98aff63995655a7503b9c0a2598936f532120e81dd8cc155e2e92ed662a2b9377cc4374f
- languageName: node
- linkType: hard
-
-"which@npm:^5.0.0":
- version: 5.0.0
- resolution: "which@npm:5.0.0"
- dependencies:
- isexe: "npm:^3.1.1"
- bin:
- node-which: bin/which.js
- checksum: 10c0/e556e4cd8b7dbf5df52408c9a9dd5ac6518c8c5267c8953f5b0564073c66ed5bf9503b14d876d0e9c7844d4db9725fb0dcf45d6e911e17e26ab363dc3965ae7b
- languageName: node
- linkType: hard
-
-"word-wrap@npm:^1.2.5":
- version: 1.2.5
- resolution: "word-wrap@npm:1.2.5"
- checksum: 10c0/e0e4a1ca27599c92a6ca4c32260e8a92e8a44f4ef6ef93f803f8ed823f486e0889fc0b93be4db59c8d51b3064951d25e43d434e95dc8c960cc3a63d65d00ba20
- languageName: node
- linkType: hard
-
-"wordwrap@npm:^1.0.0":
- version: 1.0.0
- resolution: "wordwrap@npm:1.0.0"
- checksum: 10c0/7ed2e44f3c33c5c3e3771134d2b0aee4314c9e49c749e37f464bf69f2bcdf0cbf9419ca638098e2717cff4875c47f56a007532f6111c3319f557a2ca91278e92
- languageName: node
- linkType: hard
+# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
+# yarn lockfile v1
+
+
+"@adobe/css-tools@^4.4.0":
+ version "4.4.4"
+ resolved "https://registry.yarnpkg.com/@adobe/css-tools/-/css-tools-4.4.4.tgz#2856c55443d3d461693f32d2b96fb6ea92e1ffa9"
+ integrity sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==
+
+"@alloc/quick-lru@^5.2.0":
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/@alloc/quick-lru/-/quick-lru-5.2.0.tgz#7bf68b20c0a350f936915fcae06f58e32007ce30"
+ integrity sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==
+
+"@antfu/install-pkg@^1.1.0":
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/@antfu/install-pkg/-/install-pkg-1.1.0.tgz#78fa036be1a6081b5a77a5cf59f50c7752b6ba26"
+ integrity sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==
+ dependencies:
+ package-manager-detector "^1.3.0"
+ tinyexec "^1.0.1"
+
+"@antfu/utils@^9.2.0":
+ version "9.2.1"
+ resolved "https://registry.yarnpkg.com/@antfu/utils/-/utils-9.2.1.tgz#0a73683cf0a8c4cd38397b002439488229651cdb"
+ integrity sha512-TMilPqXyii1AsiEii6l6ubRzbo76p6oshUSYPaKsmXDavyMLqjzVDkcp3pHp5ELMUNJHATcEOGxKTTsX9yYhGg==
+
+"@babel/code-frame@^7.10.4":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.27.1.tgz#200f715e66d52a23b221a9435534a91cc13ad5be"
+ integrity sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==
+ dependencies:
+ "@babel/helper-validator-identifier" "^7.27.1"
+ js-tokens "^4.0.0"
+ picocolors "^1.1.1"
+
+"@babel/helper-validator-identifier@^7.27.1":
+ version "7.27.1"
+ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz#a7054dcc145a967dd4dc8fee845a57c1316c9df8"
+ integrity sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==
+
+"@babel/runtime@^7.12.5", "@babel/runtime@^7.21.0", "@babel/runtime@^7.23.8":
+ version "7.28.4"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.28.4.tgz#a70226016fabe25c5783b2f22d3e1c9bc5ca3326"
+ integrity sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==
+
+"@braintree/sanitize-url@^6.0.1":
+ version "6.0.4"
+ resolved "https://registry.yarnpkg.com/@braintree/sanitize-url/-/sanitize-url-6.0.4.tgz#923ca57e173c6b232bbbb07347b1be982f03e783"
+ integrity sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==
+
+"@braintree/sanitize-url@^7.1.1":
+ version "7.1.1"
+ resolved "https://registry.yarnpkg.com/@braintree/sanitize-url/-/sanitize-url-7.1.1.tgz#15e19737d946559289b915e5dad3b4c28407735e"
+ integrity sha512-i1L7noDNxtFyL5DmZafWy1wRVhGehQmzZaz1HiN5e7iylJMSZR7ekOV7NsIqa5qBldlLrsKv4HbgFUVlQrz8Mw==
+
+"@chevrotain/cst-dts-gen@11.0.3":
+ version "11.0.3"
+ resolved "https://registry.yarnpkg.com/@chevrotain/cst-dts-gen/-/cst-dts-gen-11.0.3.tgz#5e0863cc57dc45e204ccfee6303225d15d9d4783"
+ integrity sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ==
+ dependencies:
+ "@chevrotain/gast" "11.0.3"
+ "@chevrotain/types" "11.0.3"
+ lodash-es "4.17.21"
+
+"@chevrotain/gast@11.0.3":
+ version "11.0.3"
+ resolved "https://registry.yarnpkg.com/@chevrotain/gast/-/gast-11.0.3.tgz#e84d8880323fe8cbe792ef69ce3ffd43a936e818"
+ integrity sha512-+qNfcoNk70PyS/uxmj3li5NiECO+2YKZZQMbmjTqRI3Qchu8Hig/Q9vgkHpI3alNjr7M+a2St5pw5w5F6NL5/Q==
+ dependencies:
+ "@chevrotain/types" "11.0.3"
+ lodash-es "4.17.21"
+
+"@chevrotain/regexp-to-ast@11.0.3":
+ version "11.0.3"
+ resolved "https://registry.yarnpkg.com/@chevrotain/regexp-to-ast/-/regexp-to-ast-11.0.3.tgz#11429a81c74a8e6a829271ce02fc66166d56dcdb"
+ integrity sha512-1fMHaBZxLFvWI067AVbGJav1eRY7N8DDvYCTwGBiE/ytKBgP8azTdgyrKyWZ9Mfh09eHWb5PgTSO8wi7U824RA==
+
+"@chevrotain/types@11.0.3":
+ version "11.0.3"
+ resolved "https://registry.yarnpkg.com/@chevrotain/types/-/types-11.0.3.tgz#f8a03914f7b937f594f56eb89312b3b8f1c91848"
+ integrity sha512-gsiM3G8b58kZC2HaWR50gu6Y1440cHiJ+i3JUvcp/35JchYejb2+5MVeJK0iKThYpAa/P2PYFV4hoi44HD+aHQ==
+
+"@chevrotain/utils@11.0.3":
+ version "11.0.3"
+ resolved "https://registry.yarnpkg.com/@chevrotain/utils/-/utils-11.0.3.tgz#e39999307b102cff3645ec4f5b3665f5297a2224"
+ integrity sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ==
+
+"@code-hike/lighter@0.7.0":
+ version "0.7.0"
+ resolved "https://registry.yarnpkg.com/@code-hike/lighter/-/lighter-0.7.0.tgz#7bb7d59631237d7d2e82434c3ea6fe1875813cb0"
+ integrity sha512-64O07rIORKQLB+5T/GKAmKcD9sC0N9yHFJXa0Hs+0Aee1G+I4bSXxTccuDFP6c/G/3h5Pk7yv7PoX9/SpzaeiQ==
+
+"@code-hike/mdx@^0.9.0":
+ version "0.9.0"
+ resolved "https://registry.yarnpkg.com/@code-hike/mdx/-/mdx-0.9.0.tgz#fe592887dc91b46374d9f7c176eb07e65fd9e2e3"
+ integrity sha512-0wg68ZCjVWAkWT4gBUZJ8Mwktjen/XeWyqBQCrhA2IZSbZZnMYsEI6JJEFb/nZoNI3comB3JdxPLykZRq3qT2A==
+ dependencies:
+ "@code-hike/lighter" "0.7.0"
+ node-fetch "^2.0.0"
+
+"@codemirror/autocomplete@^6.0.0", "@codemirror/autocomplete@^6.12.0":
+ version "6.18.7"
+ resolved "https://registry.yarnpkg.com/@codemirror/autocomplete/-/autocomplete-6.18.7.tgz#9c90d91bb331248820622a751e3ab7d411be5682"
+ integrity sha512-8EzdeIoWPJDsMBwz3zdzwXnUpCzMiCyz5/A3FIPpriaclFCGDkAzK13sMcnsu5rowqiyeQN2Vs2TsOcoDPZirQ==
+ dependencies:
+ "@codemirror/language" "^6.0.0"
+ "@codemirror/state" "^6.0.0"
+ "@codemirror/view" "^6.17.0"
+ "@lezer/common" "^1.0.0"
+
+"@codemirror/commands@^6.0.0", "@codemirror/commands@^6.3.3":
+ version "6.8.1"
+ resolved "https://registry.yarnpkg.com/@codemirror/commands/-/commands-6.8.1.tgz#639f5559d2f33f2582a2429c58cb0c1b925c7a30"
+ integrity sha512-KlGVYufHMQzxbdQONiLyGQDUW0itrLZwq3CcY7xpv9ZLRHqzkBSoteocBHtMCoY7/Ci4xhzSrToIeLg7FxHuaw==
+ dependencies:
+ "@codemirror/language" "^6.0.0"
+ "@codemirror/state" "^6.4.0"
+ "@codemirror/view" "^6.27.0"
+ "@lezer/common" "^1.1.0"
+
+"@codemirror/lang-css@^6.0.0", "@codemirror/lang-css@^6.2.1":
+ version "6.3.1"
+ resolved "https://registry.yarnpkg.com/@codemirror/lang-css/-/lang-css-6.3.1.tgz#763ca41aee81bb2431be55e3cfcc7cc8e91421a3"
+ integrity sha512-kr5fwBGiGtmz6l0LSJIbno9QrifNMUusivHbnA1H6Dmqy4HZFte3UAICix1VuKo0lMPKQr2rqB+0BkKi/S3Ejg==
+ dependencies:
+ "@codemirror/autocomplete" "^6.0.0"
+ "@codemirror/language" "^6.0.0"
+ "@codemirror/state" "^6.0.0"
+ "@lezer/common" "^1.0.2"
+ "@lezer/css" "^1.1.7"
+
+"@codemirror/lang-html@^6.4.8":
+ version "6.4.10"
+ resolved "https://registry.yarnpkg.com/@codemirror/lang-html/-/lang-html-6.4.10.tgz#e9d222e147b91003cd6b4680d81fc829c9107be5"
+ integrity sha512-h/SceTVsN5r+WE+TVP2g3KDvNoSzbSrtZXCKo4vkKdbfT5t4otuVgngGdFukOO/rwRD2++pCxoh6xD4TEVMkQA==
+ dependencies:
+ "@codemirror/autocomplete" "^6.0.0"
+ "@codemirror/lang-css" "^6.0.0"
+ "@codemirror/lang-javascript" "^6.0.0"
+ "@codemirror/language" "^6.4.0"
+ "@codemirror/state" "^6.0.0"
+ "@codemirror/view" "^6.17.0"
+ "@lezer/common" "^1.0.0"
+ "@lezer/css" "^1.1.0"
+ "@lezer/html" "^1.3.0"
+
+"@codemirror/lang-javascript@^6.0.0":
+ version "6.2.4"
+ resolved "https://registry.yarnpkg.com/@codemirror/lang-javascript/-/lang-javascript-6.2.4.tgz#eef2227d1892aae762f3a0f212f72bec868a02c5"
+ integrity sha512-0WVmhp1QOqZ4Rt6GlVGwKJN3KW7Xh4H2q8ZZNGZaP6lRdxXJzmjm4FqvmOojVj6khWJHIb9sp7U/72W7xQgqAA==
+ dependencies:
+ "@codemirror/autocomplete" "^6.0.0"
+ "@codemirror/language" "^6.6.0"
+ "@codemirror/lint" "^6.0.0"
+ "@codemirror/state" "^6.0.0"
+ "@codemirror/view" "^6.17.0"
+ "@lezer/common" "^1.0.0"
+ "@lezer/javascript" "^1.0.0"
+
+"@codemirror/lang-json@^6.0.0":
+ version "6.0.2"
+ resolved "https://registry.yarnpkg.com/@codemirror/lang-json/-/lang-json-6.0.2.tgz#054b160671306667e25d80385286049841836179"
+ integrity sha512-x2OtO+AvwEHrEwR0FyyPtfDUiloG3rnVTSZV1W8UteaLL8/MajQd8DpvUb2YVzC+/T18aSDv0H9mu+xw0EStoQ==
+ dependencies:
+ "@codemirror/language" "^6.0.0"
+ "@lezer/json" "^1.0.0"
+
+"@codemirror/lang-yaml@^6.0.0":
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/@codemirror/lang-yaml/-/lang-yaml-6.1.2.tgz#c84280c68fa7af456a355d91183b5e537e9b7038"
+ integrity sha512-dxrfG8w5Ce/QbT7YID7mWZFKhdhsaTNOYjOkSIMt1qmC4VQnXSDSYVHHHn8k6kJUfIhtLo8t1JJgltlxWdsITw==
+ dependencies:
+ "@codemirror/autocomplete" "^6.0.0"
+ "@codemirror/language" "^6.0.0"
+ "@codemirror/state" "^6.0.0"
+ "@lezer/common" "^1.2.0"
+ "@lezer/highlight" "^1.2.0"
+ "@lezer/lr" "^1.0.0"
+ "@lezer/yaml" "^1.0.0"
+
+"@codemirror/language@^6.0.0", "@codemirror/language@^6.10.1", "@codemirror/language@^6.4.0", "@codemirror/language@^6.6.0":
+ version "6.11.3"
+ resolved "https://registry.yarnpkg.com/@codemirror/language/-/language-6.11.3.tgz#8e6632df566a7ed13a1bd307f9837765bb1abfdd"
+ integrity sha512-9HBM2XnwDj7fnu0551HkGdrUrrqmYq/WC5iv6nbY2WdicXdGbhR/gfbZOH73Aqj4351alY1+aoG9rCNfiwS1RA==
+ dependencies:
+ "@codemirror/state" "^6.0.0"
+ "@codemirror/view" "^6.23.0"
+ "@lezer/common" "^1.1.0"
+ "@lezer/highlight" "^1.0.0"
+ "@lezer/lr" "^1.0.0"
+ style-mod "^4.0.0"
+
+"@codemirror/lint@^6.0.0":
+ version "6.8.5"
+ resolved "https://registry.yarnpkg.com/@codemirror/lint/-/lint-6.8.5.tgz#9edaa808e764e28e07665b015951934c8ec3a418"
+ integrity sha512-s3n3KisH7dx3vsoeGMxsbRAgKe4O1vbrnKBClm99PU0fWxmxsx5rR2PfqQgIt+2MMJBHbiJ5rfIdLYfB9NNvsA==
+ dependencies:
+ "@codemirror/state" "^6.0.0"
+ "@codemirror/view" "^6.35.0"
+ crelt "^1.0.5"
+
+"@codemirror/search@^6.0.0":
+ version "6.5.11"
+ resolved "https://registry.yarnpkg.com/@codemirror/search/-/search-6.5.11.tgz#a324ffee36e032b7f67aa31c4fb9f3e6f9f3ed63"
+ integrity sha512-KmWepDE6jUdL6n8cAAqIpRmLPBZ5ZKnicE8oGU/s3QrAVID+0VhLFrzUucVKHG5035/BSykhExDL/Xm7dHthiA==
+ dependencies:
+ "@codemirror/state" "^6.0.0"
+ "@codemirror/view" "^6.0.0"
+ crelt "^1.0.5"
+
+"@codemirror/state@^6.0.0", "@codemirror/state@^6.4.0", "@codemirror/state@^6.5.0":
+ version "6.5.2"
+ resolved "https://registry.yarnpkg.com/@codemirror/state/-/state-6.5.2.tgz#8eca3a64212a83367dc85475b7d78d5c9b7076c6"
+ integrity sha512-FVqsPqtPWKVVL3dPSxy8wEF/ymIEuVzF1PK3VbUgrxXpJUSHQWWZz4JMToquRxnkw+36LTamCZG2iua2Ptq0fA==
+ dependencies:
+ "@marijn/find-cluster-break" "^1.0.0"
+
+"@codemirror/view@^6.0.0", "@codemirror/view@^6.17.0", "@codemirror/view@^6.23.0", "@codemirror/view@^6.23.1", "@codemirror/view@^6.27.0", "@codemirror/view@^6.35.0":
+ version "6.38.3"
+ resolved "https://registry.yarnpkg.com/@codemirror/view/-/view-6.38.3.tgz#6b31d5d5c67a51615dd345184159630b763804b1"
+ integrity sha512-x2t87+oqwB1mduiQZ6huIghjMt4uZKFEdj66IcXw7+a5iBEvv9lh7EWDRHI7crnD4BMGpnyq/RzmCGbiEZLcvQ==
+ dependencies:
+ "@codemirror/state" "^6.5.0"
+ crelt "^1.0.6"
+ style-mod "^4.1.0"
+ w3c-keyname "^2.2.4"
+
+"@corex/deepmerge@^4.0.43":
+ version "4.0.43"
+ resolved "https://registry.yarnpkg.com/@corex/deepmerge/-/deepmerge-4.0.43.tgz#9bd42559ebb41cc5a7fb7cfeea5f231c20977dca"
+ integrity sha512-N8uEMrMPL0cu/bdboEWpQYb/0i2K5Qn8eCsxzOmxSggJbbQte7ljMRoXm917AbntqTGOzdTu+vP3KOOzoC70HQ==
+
+"@emnapi/core@^1.4.3":
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/@emnapi/core/-/core-1.5.0.tgz#85cd84537ec989cebb2343606a1ee663ce4edaf0"
+ integrity sha512-sbP8GzB1WDzacS8fgNPpHlp6C9VZe+SJP3F90W9rLemaQj2PzIuTEl1qDOYQf58YIpyjViI24y9aPWCjEzY2cg==
+ dependencies:
+ "@emnapi/wasi-threads" "1.1.0"
+ tslib "^2.4.0"
+
+"@emnapi/runtime@^1.2.0", "@emnapi/runtime@^1.4.3":
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/@emnapi/runtime/-/runtime-1.5.0.tgz#9aebfcb9b17195dce3ab53c86787a6b7d058db73"
+ integrity sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==
+ dependencies:
+ tslib "^2.4.0"
+
+"@emnapi/wasi-threads@1.1.0":
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz#60b2102fddc9ccb78607e4a3cf8403ea69be41bf"
+ integrity sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==
+ dependencies:
+ tslib "^2.4.0"
+
+"@esbuild/aix-ppc64@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f"
+ integrity sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==
+
+"@esbuild/android-arm64@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz#09d9b4357780da9ea3a7dfb833a1f1ff439b4052"
+ integrity sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==
+
+"@esbuild/android-arm@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz#9b04384fb771926dfa6d7ad04324ecb2ab9b2e28"
+ integrity sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==
+
+"@esbuild/android-x64@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz#29918ec2db754cedcb6c1b04de8cd6547af6461e"
+ integrity sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==
+
+"@esbuild/darwin-arm64@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz#e495b539660e51690f3928af50a76fb0a6ccff2a"
+ integrity sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==
+
+"@esbuild/darwin-x64@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz#c13838fa57372839abdddc91d71542ceea2e1e22"
+ integrity sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==
+
+"@esbuild/freebsd-arm64@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz#646b989aa20bf89fd071dd5dbfad69a3542e550e"
+ integrity sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==
+
+"@esbuild/freebsd-x64@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz#aa615cfc80af954d3458906e38ca22c18cf5c261"
+ integrity sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==
+
+"@esbuild/linux-arm64@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz#70ac6fa14f5cb7e1f7f887bcffb680ad09922b5b"
+ integrity sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==
+
+"@esbuild/linux-arm@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz#fc6fd11a8aca56c1f6f3894f2bea0479f8f626b9"
+ integrity sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==
+
+"@esbuild/linux-ia32@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz#3271f53b3f93e3d093d518d1649d6d68d346ede2"
+ integrity sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==
+
+"@esbuild/linux-loong64@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz#ed62e04238c57026aea831c5a130b73c0f9f26df"
+ integrity sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==
+
+"@esbuild/linux-mips64el@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz#e79b8eb48bf3b106fadec1ac8240fb97b4e64cbe"
+ integrity sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==
+
+"@esbuild/linux-ppc64@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz#5f2203860a143b9919d383ef7573521fb154c3e4"
+ integrity sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==
+
+"@esbuild/linux-riscv64@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz#07bcafd99322d5af62f618cb9e6a9b7f4bb825dc"
+ integrity sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==
+
+"@esbuild/linux-s390x@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz#b7ccf686751d6a3e44b8627ababc8be3ef62d8de"
+ integrity sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==
+
+"@esbuild/linux-x64@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz#6d8f0c768e070e64309af8004bb94e68ab2bb3b0"
+ integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==
+
+"@esbuild/netbsd-x64@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz#bbe430f60d378ecb88decb219c602667387a6047"
+ integrity sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==
+
+"@esbuild/openbsd-x64@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz#99d1cf2937279560d2104821f5ccce220cb2af70"
+ integrity sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==
+
+"@esbuild/sunos-x64@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz#08741512c10d529566baba837b4fe052c8f3487b"
+ integrity sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==
+
+"@esbuild/win32-arm64@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz#675b7385398411240735016144ab2e99a60fc75d"
+ integrity sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==
+
+"@esbuild/win32-ia32@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz#1bfc3ce98aa6ca9a0969e4d2af72144c59c1193b"
+ integrity sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==
+
+"@esbuild/win32-x64@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz#acad351d582d157bb145535db2a6ff53dd514b5c"
+ integrity sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==
+
+"@eslint-community/eslint-utils@^4.2.0":
+ version "4.9.0"
+ resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz#7308df158e064f0dd8b8fdb58aa14fa2a7f913b3"
+ integrity sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==
+ dependencies:
+ eslint-visitor-keys "^3.4.3"
+
+"@eslint-community/regexpp@^4.6.1":
+ version "4.12.1"
+ resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.12.1.tgz#cfc6cffe39df390a3841cde2abccf92eaa7ae0e0"
+ integrity sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==
+
+"@eslint/eslintrc@^2.1.4":
+ version "2.1.4"
+ resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad"
+ integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==
+ dependencies:
+ ajv "^6.12.4"
+ debug "^4.3.2"
+ espree "^9.6.0"
+ globals "^13.19.0"
+ ignore "^5.2.0"
+ import-fresh "^3.2.1"
+ js-yaml "^4.1.0"
+ minimatch "^3.1.2"
+ strip-json-comments "^3.1.1"
+
+"@eslint/js@8.57.1":
+ version "8.57.1"
+ resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.1.tgz#de633db3ec2ef6a3c89e2f19038063e8a122e2c2"
+ integrity sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==
+
+"@floating-ui/core@^1.7.3":
+ version "1.7.3"
+ resolved "https://registry.yarnpkg.com/@floating-ui/core/-/core-1.7.3.tgz#462d722f001e23e46d86fd2bd0d21b7693ccb8b7"
+ integrity sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==
+ dependencies:
+ "@floating-ui/utils" "^0.2.10"
+
+"@floating-ui/dom@^1.7.4":
+ version "1.7.4"
+ resolved "https://registry.yarnpkg.com/@floating-ui/dom/-/dom-1.7.4.tgz#ee667549998745c9c3e3e84683b909c31d6c9a77"
+ integrity sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==
+ dependencies:
+ "@floating-ui/core" "^1.7.3"
+ "@floating-ui/utils" "^0.2.10"
+
+"@floating-ui/react-dom@^2.0.0":
+ version "2.1.6"
+ resolved "https://registry.yarnpkg.com/@floating-ui/react-dom/-/react-dom-2.1.6.tgz#189f681043c1400561f62972f461b93f01bf2231"
+ integrity sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw==
+ dependencies:
+ "@floating-ui/dom" "^1.7.4"
+
+"@floating-ui/utils@^0.2.10", "@floating-ui/utils@^0.2.2":
+ version "0.2.10"
+ resolved "https://registry.yarnpkg.com/@floating-ui/utils/-/utils-0.2.10.tgz#a2a1e3812d14525f725d011a73eceb41fef5bc1c"
+ integrity sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==
+
+"@floating-ui/vue@^1.0.2":
+ version "1.1.9"
+ resolved "https://registry.yarnpkg.com/@floating-ui/vue/-/vue-1.1.9.tgz#508c386bd3d595247f1dda8dbca00b76fe8fcaf9"
+ integrity sha512-BfNqNW6KA83Nexspgb9DZuz578R7HT8MZw1CfK9I6Ah4QReNWEJsXWHN+SdmOVLNGmTPDi+fDT535Df5PzMLbQ==
+ dependencies:
+ "@floating-ui/dom" "^1.7.4"
+ "@floating-ui/utils" "^0.2.10"
+ vue-demi ">=0.13.0"
+
+"@headlessui/react@^1.7.17":
+ version "1.7.19"
+ resolved "https://registry.yarnpkg.com/@headlessui/react/-/react-1.7.19.tgz#91c78cf5fcb254f4a0ebe96936d48421caf75f40"
+ integrity sha512-Ll+8q3OlMJfJbAKM/+/Y2q6PPYbryqNTXDbryx7SXLIDamkF6iQFbriYHga0dY44PvDhvvBWCx1Xj4U5+G4hOw==
+ dependencies:
+ "@tanstack/react-virtual" "^3.0.0-beta.60"
+ client-only "^0.0.1"
+
+"@headlessui/vue@^1.7.20":
+ version "1.7.23"
+ resolved "https://registry.yarnpkg.com/@headlessui/vue/-/vue-1.7.23.tgz#7fe19dbeca35de9e6270c82c78c4864e6a6f7391"
+ integrity sha512-JzdCNqurrtuu0YW6QaDtR2PIYCKPUWq28csDyMvN4zmGccmE7lz40Is6hc3LA4HFeCI7sekZ/PQMTNmn9I/4Wg==
+ dependencies:
+ "@tanstack/vue-virtual" "^3.0.0-beta.60"
+
+"@humanwhocodes/config-array@^0.13.0":
+ version "0.13.0"
+ resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.13.0.tgz#fb907624df3256d04b9aa2df50d7aa97ec648748"
+ integrity sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==
+ dependencies:
+ "@humanwhocodes/object-schema" "^2.0.3"
+ debug "^4.3.1"
+ minimatch "^3.0.5"
+
+"@humanwhocodes/module-importer@^1.0.1":
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c"
+ integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==
+
+"@humanwhocodes/momoa@^3.0.1":
+ version "3.3.9"
+ resolved "https://registry.yarnpkg.com/@humanwhocodes/momoa/-/momoa-3.3.9.tgz#513ff7fb5e3ce08fb5ddbd3a5730e195cab2dd36"
+ integrity sha512-LHw6Op4bJb3/3KZgOgwflJx5zY9XOy0NU1NuyUFKGdTwHYmP+PbnQGCYQJ8NVNlulLfQish34b0VuUlLYP3AXA==
+
+"@humanwhocodes/object-schema@^2.0.3":
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz#4a2868d75d6d6963e423bcf90b7fd1be343409d3"
+ integrity sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==
+
+"@iconify/types@^2.0.0":
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/@iconify/types/-/types-2.0.0.tgz#ab0e9ea681d6c8a1214f30cd741fe3a20cc57f57"
+ integrity sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==
+
+"@iconify/utils@^3.0.1":
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/@iconify/utils/-/utils-3.0.2.tgz#9599607f20690cd3e7a5d2d459af0eb81a89dc2b"
+ integrity sha512-EfJS0rLfVuRuJRn4psJHtK2A9TqVnkxPpHY6lYHiB9+8eSuudsxbwMiavocG45ujOo6FJ+CIRlRnlOGinzkaGQ==
+ dependencies:
+ "@antfu/install-pkg" "^1.1.0"
+ "@antfu/utils" "^9.2.0"
+ "@iconify/types" "^2.0.0"
+ debug "^4.4.1"
+ globals "^15.15.0"
+ kolorist "^1.8.0"
+ local-pkg "^1.1.1"
+ mlly "^1.7.4"
+
+"@img/sharp-darwin-arm64@0.33.5":
+ version "0.33.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz#ef5b5a07862805f1e8145a377c8ba6e98813ca08"
+ integrity sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==
+ optionalDependencies:
+ "@img/sharp-libvips-darwin-arm64" "1.0.4"
+
+"@img/sharp-darwin-x64@0.33.5":
+ version "0.33.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz#e03d3451cd9e664faa72948cc70a403ea4063d61"
+ integrity sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==
+ optionalDependencies:
+ "@img/sharp-libvips-darwin-x64" "1.0.4"
+
+"@img/sharp-libvips-darwin-arm64@1.0.4":
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz#447c5026700c01a993c7804eb8af5f6e9868c07f"
+ integrity sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==
+
+"@img/sharp-libvips-darwin-x64@1.0.4":
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz#e0456f8f7c623f9dbfbdc77383caa72281d86062"
+ integrity sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==
+
+"@img/sharp-libvips-linux-arm64@1.0.4":
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz#979b1c66c9a91f7ff2893556ef267f90ebe51704"
+ integrity sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==
+
+"@img/sharp-libvips-linux-arm@1.0.5":
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz#99f922d4e15216ec205dcb6891b721bfd2884197"
+ integrity sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==
+
+"@img/sharp-libvips-linux-s390x@1.0.4":
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz#f8a5eb1f374a082f72b3f45e2fb25b8118a8a5ce"
+ integrity sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==
+
+"@img/sharp-libvips-linux-x64@1.0.4":
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz#d4c4619cdd157774906e15770ee119931c7ef5e0"
+ integrity sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==
+
+"@img/sharp-libvips-linuxmusl-arm64@1.0.4":
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz#166778da0f48dd2bded1fa3033cee6b588f0d5d5"
+ integrity sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==
+
+"@img/sharp-libvips-linuxmusl-x64@1.0.4":
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz#93794e4d7720b077fcad3e02982f2f1c246751ff"
+ integrity sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==
+
+"@img/sharp-linux-arm64@0.33.5":
+ version "0.33.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz#edb0697e7a8279c9fc829a60fc35644c4839bb22"
+ integrity sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==
+ optionalDependencies:
+ "@img/sharp-libvips-linux-arm64" "1.0.4"
+
+"@img/sharp-linux-arm@0.33.5":
+ version "0.33.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz#422c1a352e7b5832842577dc51602bcd5b6f5eff"
+ integrity sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==
+ optionalDependencies:
+ "@img/sharp-libvips-linux-arm" "1.0.5"
+
+"@img/sharp-linux-s390x@0.33.5":
+ version "0.33.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz#f5c077926b48e97e4a04d004dfaf175972059667"
+ integrity sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==
+ optionalDependencies:
+ "@img/sharp-libvips-linux-s390x" "1.0.4"
+
+"@img/sharp-linux-x64@0.33.5":
+ version "0.33.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz#d806e0afd71ae6775cc87f0da8f2d03a7c2209cb"
+ integrity sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==
+ optionalDependencies:
+ "@img/sharp-libvips-linux-x64" "1.0.4"
+
+"@img/sharp-linuxmusl-arm64@0.33.5":
+ version "0.33.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz#252975b915894fb315af5deea174651e208d3d6b"
+ integrity sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==
+ optionalDependencies:
+ "@img/sharp-libvips-linuxmusl-arm64" "1.0.4"
+
+"@img/sharp-linuxmusl-x64@0.33.5":
+ version "0.33.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz#3f4609ac5d8ef8ec7dadee80b560961a60fd4f48"
+ integrity sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==
+ optionalDependencies:
+ "@img/sharp-libvips-linuxmusl-x64" "1.0.4"
+
+"@img/sharp-wasm32@0.33.5":
+ version "0.33.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz#6f44f3283069d935bb5ca5813153572f3e6f61a1"
+ integrity sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==
+ dependencies:
+ "@emnapi/runtime" "^1.2.0"
+
+"@img/sharp-win32-ia32@0.33.5":
+ version "0.33.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz#1a0c839a40c5351e9885628c85f2e5dfd02b52a9"
+ integrity sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==
+
+"@img/sharp-win32-x64@0.33.5":
+ version "0.33.5"
+ resolved "https://registry.yarnpkg.com/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz#56f00962ff0c4e0eb93d34a047d29fa995e3e342"
+ integrity sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==
+
+"@inquirer/external-editor@^1.0.2":
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/@inquirer/external-editor/-/external-editor-1.0.2.tgz#dc16e7064c46c53be09918db639ff780718c071a"
+ integrity sha512-yy9cOoBnx58TlsPrIxauKIFQTiyH+0MK4e97y4sV9ERbI+zDxw7i2hxHLCIEGIE/8PPvDxGhgzIOTSOWcs6/MQ==
+ dependencies:
+ chardet "^2.1.0"
+ iconv-lite "^0.7.0"
+
+"@inquirer/figures@^1.0.3":
+ version "1.0.13"
+ resolved "https://registry.yarnpkg.com/@inquirer/figures/-/figures-1.0.13.tgz#ad0afd62baab1c23175115a9b62f511b6a751e45"
+ integrity sha512-lGPVU3yO9ZNqA7vTYz26jny41lE7yoQansmqdMLBEfqaGsmdg7V3W9mK9Pvb5IL4EVZ9GnSDGMO/cJXud5dMaw==
+
+"@isaacs/cliui@^8.0.2":
+ version "8.0.2"
+ resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550"
+ integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==
+ dependencies:
+ string-width "^5.1.2"
+ string-width-cjs "npm:string-width@^4.2.0"
+ strip-ansi "^7.0.1"
+ strip-ansi-cjs "npm:strip-ansi@^6.0.1"
+ wrap-ansi "^8.1.0"
+ wrap-ansi-cjs "npm:wrap-ansi@^7.0.0"
+
+"@jridgewell/gen-mapping@^0.3.2":
+ version "0.3.13"
+ resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz#6342a19f44347518c93e43b1ac69deb3c4656a1f"
+ integrity sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==
+ dependencies:
+ "@jridgewell/sourcemap-codec" "^1.5.0"
+ "@jridgewell/trace-mapping" "^0.3.24"
+
+"@jridgewell/resolve-uri@^3.1.0":
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6"
+ integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==
+
+"@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.5.0":
+ version "1.5.5"
+ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz#6912b00d2c631c0d15ce1a7ab57cd657f2a8f8ba"
+ integrity sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==
+
+"@jridgewell/trace-mapping@^0.3.24":
+ version "0.3.31"
+ resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz#db15d6781c931f3a251a3dac39501c98a6082fd0"
+ integrity sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==
+ dependencies:
+ "@jridgewell/resolve-uri" "^3.1.0"
+ "@jridgewell/sourcemap-codec" "^1.4.14"
+
+"@lezer/common@^1.0.0", "@lezer/common@^1.0.2", "@lezer/common@^1.1.0", "@lezer/common@^1.2.0", "@lezer/common@^1.2.1":
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/@lezer/common/-/common-1.2.3.tgz#138fcddab157d83da557554851017c6c1e5667fd"
+ integrity sha512-w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA==
+
+"@lezer/css@^1.1.0", "@lezer/css@^1.1.7":
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/@lezer/css/-/css-1.3.0.tgz#296f298814782c2fad42a936f3510042cdcd2034"
+ integrity sha512-pBL7hup88KbI7hXnZV3PQsn43DHy6TWyzuyk2AO9UyoXcDltvIdqWKE1dLL/45JVZ+YZkHe1WVHqO6wugZZWcw==
+ dependencies:
+ "@lezer/common" "^1.2.0"
+ "@lezer/highlight" "^1.0.0"
+ "@lezer/lr" "^1.3.0"
+
+"@lezer/highlight@^1.0.0", "@lezer/highlight@^1.1.3", "@lezer/highlight@^1.2.0":
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/@lezer/highlight/-/highlight-1.2.1.tgz#596fa8f9aeb58a608be0a563e960c373cbf23f8b"
+ integrity sha512-Z5duk4RN/3zuVO7Jq0pGLJ3qynpxUVsh7IbUbGj88+uV2ApSAn6kWg2au3iJb+0Zi7kKtqffIESgNcRXWZWmSA==
+ dependencies:
+ "@lezer/common" "^1.0.0"
+
+"@lezer/html@^1.3.0":
+ version "1.3.10"
+ resolved "https://registry.yarnpkg.com/@lezer/html/-/html-1.3.10.tgz#1be9a029a6fe835c823b20a98a449a630416b2af"
+ integrity sha512-dqpT8nISx/p9Do3AchvYGV3qYc4/rKr3IBZxlHmpIKam56P47RSHkSF5f13Vu9hebS1jM0HmtJIwLbWz1VIY6w==
+ dependencies:
+ "@lezer/common" "^1.2.0"
+ "@lezer/highlight" "^1.0.0"
+ "@lezer/lr" "^1.0.0"
+
+"@lezer/javascript@^1.0.0":
+ version "1.5.4"
+ resolved "https://registry.yarnpkg.com/@lezer/javascript/-/javascript-1.5.4.tgz#11746955f957d33c0933f17d7594db54a8b4beea"
+ integrity sha512-vvYx3MhWqeZtGPwDStM2dwgljd5smolYD2lR2UyFcHfxbBQebqx8yjmFmxtJ/E6nN6u1D9srOiVWm3Rb4tmcUA==
+ dependencies:
+ "@lezer/common" "^1.2.0"
+ "@lezer/highlight" "^1.1.3"
+ "@lezer/lr" "^1.3.0"
+
+"@lezer/json@^1.0.0":
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/@lezer/json/-/json-1.0.3.tgz#e773a012ad0088fbf07ce49cfba875cc9e5bc05f"
+ integrity sha512-BP9KzdF9Y35PDpv04r0VeSTKDeox5vVr3efE7eBbx3r4s3oNLfunchejZhjArmeieBH+nVOpgIiBJpEAv8ilqQ==
+ dependencies:
+ "@lezer/common" "^1.2.0"
+ "@lezer/highlight" "^1.0.0"
+ "@lezer/lr" "^1.0.0"
+
+"@lezer/lr@^1.0.0", "@lezer/lr@^1.3.0", "@lezer/lr@^1.4.0":
+ version "1.4.2"
+ resolved "https://registry.yarnpkg.com/@lezer/lr/-/lr-1.4.2.tgz#931ea3dea8e9de84e90781001dae30dea9ff1727"
+ integrity sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==
+ dependencies:
+ "@lezer/common" "^1.0.0"
+
+"@lezer/yaml@^1.0.0":
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/@lezer/yaml/-/yaml-1.0.3.tgz#b23770ab42b390056da6b187d861b998fd60b1ff"
+ integrity sha512-GuBLekbw9jDBDhGur82nuwkxKQ+a3W5H0GfaAthDXcAu+XdpS43VlnxA9E9hllkpSP5ellRDKjLLj7Lu9Wr6xA==
+ dependencies:
+ "@lezer/common" "^1.2.0"
+ "@lezer/highlight" "^1.0.0"
+ "@lezer/lr" "^1.4.0"
+
+"@marijn/find-cluster-break@^1.0.0":
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/@marijn/find-cluster-break/-/find-cluster-break-1.0.2.tgz#775374306116d51c0c500b8c4face0f9a04752d8"
+ integrity sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g==
+
+"@mdx-js/mdx@^2.2.1", "@mdx-js/mdx@^2.3.0":
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-2.3.0.tgz#d65d8c3c28f3f46bb0e7cb3bf7613b39980671a9"
+ integrity sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==
+ dependencies:
+ "@types/estree-jsx" "^1.0.0"
+ "@types/mdx" "^2.0.0"
+ estree-util-build-jsx "^2.0.0"
+ estree-util-is-identifier-name "^2.0.0"
+ estree-util-to-js "^1.1.0"
+ estree-walker "^3.0.0"
+ hast-util-to-estree "^2.0.0"
+ markdown-extensions "^1.0.0"
+ periscopic "^3.0.0"
+ remark-mdx "^2.0.0"
+ remark-parse "^10.0.0"
+ remark-rehype "^10.0.0"
+ unified "^10.0.0"
+ unist-util-position-from-estree "^1.0.0"
+ unist-util-stringify-position "^3.0.0"
+ unist-util-visit "^4.0.0"
+ vfile "^5.0.0"
+
+"@mdx-js/react@^2.2.1", "@mdx-js/react@^2.3.0":
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/@mdx-js/react/-/react-2.3.0.tgz#4208bd6d70f0d0831def28ef28c26149b03180b3"
+ integrity sha512-zQH//gdOmuu7nt2oJR29vFhDv88oGPmVw6BggmrHeMI+xgEkp1B2dX9/bMBSYtK0dyLX/aOmesKS09g222K1/g==
+ dependencies:
+ "@types/mdx" "^2.0.0"
+ "@types/react" ">=16"
+
+"@mermaid-js/parser@^0.6.2":
+ version "0.6.2"
+ resolved "https://registry.yarnpkg.com/@mermaid-js/parser/-/parser-0.6.2.tgz#6d505a33acb52ddeb592c596b14f9d92a30396a9"
+ integrity sha512-+PO02uGF6L6Cs0Bw8RpGhikVvMWEysfAyl27qTlroUB8jSWr1lL0Sf6zi78ZxlSnmgSY2AMMKVgghnN9jTtwkQ==
+ dependencies:
+ langium "3.3.1"
+
+"@napi-rs/simple-git-android-arm-eabi@0.1.22":
+ version "0.1.22"
+ resolved "https://registry.yarnpkg.com/@napi-rs/simple-git-android-arm-eabi/-/simple-git-android-arm-eabi-0.1.22.tgz#f2d240dc87e924a8ca4428fa68b121e8697f1765"
+ integrity sha512-JQZdnDNm8o43A5GOzwN/0Tz3CDBQtBUNqzVwEopm32uayjdjxev1Csp1JeaqF3v9djLDIvsSE39ecsN2LhCKKQ==
+
+"@napi-rs/simple-git-android-arm64@0.1.22":
+ version "0.1.22"
+ resolved "https://registry.yarnpkg.com/@napi-rs/simple-git-android-arm64/-/simple-git-android-arm64-0.1.22.tgz#80432fe8ccca85764ca773bd605f456de02e3159"
+ integrity sha512-46OZ0SkhnvM+fapWjzg/eqbJvClxynUpWYyYBn4jAj7GQs1/Yyc8431spzDmkA8mL0M7Xo8SmbkzTDE7WwYAfg==
+
+"@napi-rs/simple-git-darwin-arm64@0.1.22":
+ version "0.1.22"
+ resolved "https://registry.yarnpkg.com/@napi-rs/simple-git-darwin-arm64/-/simple-git-darwin-arm64-0.1.22.tgz#cc9730b7895318519a941f8e42d22ec6e458a3f3"
+ integrity sha512-zH3h0C8Mkn9//MajPI6kHnttywjsBmZ37fhLX/Fiw5XKu84eHA6dRyVtMzoZxj6s+bjNTgaMgMUucxPn9ktxTQ==
+
+"@napi-rs/simple-git-darwin-x64@0.1.22":
+ version "0.1.22"
+ resolved "https://registry.yarnpkg.com/@napi-rs/simple-git-darwin-x64/-/simple-git-darwin-x64-0.1.22.tgz#216d9472db2f5e261e4b2879eef571e24ff05258"
+ integrity sha512-GZN7lRAkGKB6PJxWsoyeYJhh85oOOjVNyl+/uipNX8bR+mFDCqRsCE3rRCFGV9WrZUHXkcuRL2laIRn7lLi3ag==
+
+"@napi-rs/simple-git-freebsd-x64@0.1.22":
+ version "0.1.22"
+ resolved "https://registry.yarnpkg.com/@napi-rs/simple-git-freebsd-x64/-/simple-git-freebsd-x64-0.1.22.tgz#a526ebf45fa955b6523b0194d4e702c830503536"
+ integrity sha512-xyqX1C5I0WBrUgZONxHjZH5a4LqQ9oki3SKFAVpercVYAcx3pq6BkZy1YUOP4qx78WxU1CCNfHBN7V+XO7D99A==
+
+"@napi-rs/simple-git-linux-arm-gnueabihf@0.1.22":
+ version "0.1.22"
+ resolved "https://registry.yarnpkg.com/@napi-rs/simple-git-linux-arm-gnueabihf/-/simple-git-linux-arm-gnueabihf-0.1.22.tgz#54aad93e1391bb242b14ab194b30efca1f53d798"
+ integrity sha512-4LOtbp9ll93B9fxRvXiUJd1/RM3uafMJE7dGBZGKWBMGM76+BAcCEUv2BY85EfsU/IgopXI6n09TycRfPWOjxA==
+
+"@napi-rs/simple-git-linux-arm64-gnu@0.1.22":
+ version "0.1.22"
+ resolved "https://registry.yarnpkg.com/@napi-rs/simple-git-linux-arm64-gnu/-/simple-git-linux-arm64-gnu-0.1.22.tgz#1f022edd88904b8e6d58b81b792a3b45f378ab74"
+ integrity sha512-GVOjP/JjCzbQ0kSqao7ctC/1sodVtv5VF57rW9BFpo2y6tEYPCqHnkQkTpieuwMNe+TVOhBUC1+wH0d9/knIHg==
+
+"@napi-rs/simple-git-linux-arm64-musl@0.1.22":
+ version "0.1.22"
+ resolved "https://registry.yarnpkg.com/@napi-rs/simple-git-linux-arm64-musl/-/simple-git-linux-arm64-musl-0.1.22.tgz#68fc72bd7d6dec9154b9fb0a6ad48bd99eb0c5a2"
+ integrity sha512-MOs7fPyJiU/wqOpKzAOmOpxJ/TZfP4JwmvPad/cXTOWYwwyppMlXFRms3i98EU3HOazI/wMU2Ksfda3+TBluWA==
+
+"@napi-rs/simple-git-linux-ppc64-gnu@0.1.22":
+ version "0.1.22"
+ resolved "https://registry.yarnpkg.com/@napi-rs/simple-git-linux-ppc64-gnu/-/simple-git-linux-ppc64-gnu-0.1.22.tgz#19e595c5a13c95ae6a48a096ba5debf6dbc896ed"
+ integrity sha512-L59dR30VBShRUIZ5/cQHU25upNgKS0AMQ7537J6LCIUEFwwXrKORZKJ8ceR+s3Sr/4jempWVvMdjEpFDE4HYww==
+
+"@napi-rs/simple-git-linux-s390x-gnu@0.1.22":
+ version "0.1.22"
+ resolved "https://registry.yarnpkg.com/@napi-rs/simple-git-linux-s390x-gnu/-/simple-git-linux-s390x-gnu-0.1.22.tgz#399c7c6a1050ae382c61b276f898155636c83faf"
+ integrity sha512-4FHkPlCSIZUGC6HiADffbe6NVoTBMd65pIwcd40IDbtFKOgFMBA+pWRqKiQ21FERGH16Zed7XHJJoY3jpOqtmQ==
+
+"@napi-rs/simple-git-linux-x64-gnu@0.1.22":
+ version "0.1.22"
+ resolved "https://registry.yarnpkg.com/@napi-rs/simple-git-linux-x64-gnu/-/simple-git-linux-x64-gnu-0.1.22.tgz#8f74a3a42d6b9e5d50e3f3ff68aeebc5d3768d9d"
+ integrity sha512-Ei1tM5Ho/dwknF3pOzqkNW9Iv8oFzRxE8uOhrITcdlpxRxVrBVptUF6/0WPdvd7R9747D/q61QG/AVyWsWLFKw==
+
+"@napi-rs/simple-git-linux-x64-musl@0.1.22":
+ version "0.1.22"
+ resolved "https://registry.yarnpkg.com/@napi-rs/simple-git-linux-x64-musl/-/simple-git-linux-x64-musl-0.1.22.tgz#71e311b95d07c15c74075b487c6cfa56ac99733c"
+ integrity sha512-zRYxg7it0p3rLyEJYoCoL2PQJNgArVLyNavHW03TFUAYkYi5bxQ/UFNVpgxMaXohr5yu7qCBqeo9j4DWeysalg==
+
+"@napi-rs/simple-git-win32-arm64-msvc@0.1.22":
+ version "0.1.22"
+ resolved "https://registry.yarnpkg.com/@napi-rs/simple-git-win32-arm64-msvc/-/simple-git-win32-arm64-msvc-0.1.22.tgz#01b948b52217ae79e3c80bccd9b05ae728c37ce4"
+ integrity sha512-XGFR1fj+Y9cWACcovV2Ey/R2xQOZKs8t+7KHPerYdJ4PtjVzGznI4c2EBHXtdOIYvkw7tL5rZ7FN1HJKdD5Quw==
+
+"@napi-rs/simple-git-win32-ia32-msvc@0.1.22":
+ version "0.1.22"
+ resolved "https://registry.yarnpkg.com/@napi-rs/simple-git-win32-ia32-msvc/-/simple-git-win32-ia32-msvc-0.1.22.tgz#3ec733ade79fc50050c9268c7ec163118e4bf1a2"
+ integrity sha512-Gqr9Y0gs6hcNBA1IXBpoqTFnnIoHuZGhrYqaZzEvGMLrTrpbXrXVEtX3DAAD2RLc1b87CPcJ49a7sre3PU3Rfw==
+
+"@napi-rs/simple-git-win32-x64-msvc@0.1.22":
+ version "0.1.22"
+ resolved "https://registry.yarnpkg.com/@napi-rs/simple-git-win32-x64-msvc/-/simple-git-win32-x64-msvc-0.1.22.tgz#aee122d7aa030f45775bfd8abff49ffe12b89eb7"
+ integrity sha512-hQjcreHmUcpw4UrtkOron1/TQObfe484lxiXFLLUj7aWnnnOVs1mnXq5/Bo9+3NYZldFpFRJPdPBeHCisXkKJg==
+
+"@napi-rs/simple-git@^0.1.9":
+ version "0.1.22"
+ resolved "https://registry.yarnpkg.com/@napi-rs/simple-git/-/simple-git-0.1.22.tgz#00a2520aedcfc73b65bb8147fde352c78da27423"
+ integrity sha512-bMVoAKhpjTOPHkW/lprDPwv5aD4R4C3Irt8vn+SKA9wudLe9COLxOhurrKRsxmZccUbWXRF7vukNeGUAj5P8kA==
+ optionalDependencies:
+ "@napi-rs/simple-git-android-arm-eabi" "0.1.22"
+ "@napi-rs/simple-git-android-arm64" "0.1.22"
+ "@napi-rs/simple-git-darwin-arm64" "0.1.22"
+ "@napi-rs/simple-git-darwin-x64" "0.1.22"
+ "@napi-rs/simple-git-freebsd-x64" "0.1.22"
+ "@napi-rs/simple-git-linux-arm-gnueabihf" "0.1.22"
+ "@napi-rs/simple-git-linux-arm64-gnu" "0.1.22"
+ "@napi-rs/simple-git-linux-arm64-musl" "0.1.22"
+ "@napi-rs/simple-git-linux-ppc64-gnu" "0.1.22"
+ "@napi-rs/simple-git-linux-s390x-gnu" "0.1.22"
+ "@napi-rs/simple-git-linux-x64-gnu" "0.1.22"
+ "@napi-rs/simple-git-linux-x64-musl" "0.1.22"
+ "@napi-rs/simple-git-win32-arm64-msvc" "0.1.22"
+ "@napi-rs/simple-git-win32-ia32-msvc" "0.1.22"
+ "@napi-rs/simple-git-win32-x64-msvc" "0.1.22"
+
+"@napi-rs/wasm-runtime@^0.2.11":
+ version "0.2.12"
+ resolved "https://registry.yarnpkg.com/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz#3e78a8b96e6c33a6c517e1894efbd5385a7cb6f2"
+ integrity sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==
+ dependencies:
+ "@emnapi/core" "^1.4.3"
+ "@emnapi/runtime" "^1.4.3"
+ "@tybys/wasm-util" "^0.10.0"
+
+"@next/env@14.2.32":
+ version "14.2.32"
+ resolved "https://registry.yarnpkg.com/@next/env/-/env-14.2.32.tgz#6d1107e2b7cc8649ff3730b8b46deb4e8a6d38fa"
+ integrity sha512-n9mQdigI6iZ/DF6pCTwMKeWgF2e8lg7qgt5M7HXMLtyhZYMnf/u905M18sSpPmHL9MKp9JHo56C6jrD2EvWxng==
+
+"@next/env@^13.4.3":
+ version "13.5.11"
+ resolved "https://registry.yarnpkg.com/@next/env/-/env-13.5.11.tgz#6712d907e2682199aa1e8229b5ce028ee5a8001b"
+ integrity sha512-fbb2C7HChgM7CemdCY+y3N1n8pcTKdqtQLbC7/EQtPdLvlMUT9JX/dBYl8MMZAtYG4uVMyPFHXckb68q/NRwqg==
+
+"@next/eslint-plugin-next@14.1.4":
+ version "14.1.4"
+ resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-14.1.4.tgz#d7372b5ffede0e466af8af2ff534386418827fc8"
+ integrity sha512-n4zYNLSyCo0Ln5b7qxqQeQ34OZKXwgbdcx6kmkQbywr+0k6M3Vinft0T72R6CDAcDrne2IAgSud4uWCzFgc5HA==
+ dependencies:
+ glob "10.3.10"
+
+"@next/swc-darwin-arm64@14.2.32":
+ version "14.2.32"
+ resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.32.tgz#83482a7282df899b73d916e02b02a189771e706c"
+ integrity sha512-osHXveM70zC+ilfuFa/2W6a1XQxJTvEhzEycnjUaVE8kpUS09lDpiDDX2YLdyFCzoUbvbo5r0X1Kp4MllIOShw==
+
+"@next/swc-darwin-x64@14.2.32":
+ version "14.2.32"
+ resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.32.tgz#1a9eb676a014e1fc999251f10288c25a0f81d6d1"
+ integrity sha512-P9NpCAJuOiaHHpqtrCNncjqtSBi1f6QUdHK/+dNabBIXB2RUFWL19TY1Hkhu74OvyNQEYEzzMJCMQk5agjw1Qg==
+
+"@next/swc-linux-arm64-gnu@14.2.32":
+ version "14.2.32"
+ resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.32.tgz#7713a49abd555d6f698e766b1631b67d881b4ee4"
+ integrity sha512-v7JaO0oXXt6d+cFjrrKqYnR2ubrD+JYP7nQVRZgeo5uNE5hkCpWnHmXm9vy3g6foMO8SPwL0P3MPw1c+BjbAzA==
+
+"@next/swc-linux-arm64-musl@14.2.32":
+ version "14.2.32"
+ resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.32.tgz#327efdffe97e56f5389a7889cdedbd676fdbb519"
+ integrity sha512-tA6sIKShXtSJBTH88i0DRd6I9n3ZTirmwpwAqH5zdJoQF7/wlJXR8DkPmKwYl5mFWhEKr5IIa3LfpMW9RRwKmQ==
+
+"@next/swc-linux-x64-gnu@14.2.32":
+ version "14.2.32"
+ resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.32.tgz#a3e7444613d0fe5c8ea4ead08d6a9c818246758c"
+ integrity sha512-7S1GY4TdnlGVIdeXXKQdDkfDysoIVFMD0lJuVVMeb3eoVjrknQ0JNN7wFlhCvea0hEk0Sd4D1hedVChDKfV2jw==
+
+"@next/swc-linux-x64-musl@14.2.32":
+ version "14.2.32"
+ resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.32.tgz#a2ec5b0a06c740d6740c938b1d4a614f1a13f018"
+ integrity sha512-OHHC81P4tirVa6Awk6eCQ6RBfWl8HpFsZtfEkMpJ5GjPsJ3nhPe6wKAJUZ/piC8sszUkAgv3fLflgzPStIwfWg==
+
+"@next/swc-win32-arm64-msvc@14.2.32":
+ version "14.2.32"
+ resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.32.tgz#b4d3e47c6b276fc4711deb978d04015d029d198d"
+ integrity sha512-rORQjXsAFeX6TLYJrCG5yoIDj+NKq31Rqwn8Wpn/bkPNy5rTHvOXkW8mLFonItS7QC6M+1JIIcLe+vOCTOYpvg==
+
+"@next/swc-win32-ia32-msvc@14.2.32":
+ version "14.2.32"
+ resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.2.32.tgz#d1f1f854a1fbbaeefa8f81271437448653f33494"
+ integrity sha512-jHUeDPVHrgFltqoAqDB6g6OStNnFxnc7Aks3p0KE0FbwAvRg6qWKYF5mSTdCTxA3axoSAUwxYdILzXJfUwlHhA==
+
+"@next/swc-win32-x64-msvc@14.2.32":
+ version "14.2.32"
+ resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.32.tgz#8212d681cf6858a9e3204728f8f2b161000683ed"
+ integrity sha512-2N0lSoU4GjfLSO50wvKpMQgKd4HdI2UHEhQPPPnlgfBJlOgJxkjpkYBqzk08f1gItBB6xF/n+ykso2hgxuydsA==
+
+"@next/third-parties@^14.1.4":
+ version "14.2.32"
+ resolved "https://registry.yarnpkg.com/@next/third-parties/-/third-parties-14.2.32.tgz#50c70f02149ab45787c19e6147014af18c525bfb"
+ integrity sha512-11I+hStPj41OLUew6pXAvSX6aUGF7vN1Ie8072o3jSA3wQC1hjwkcL/pKiIGe6eVkymBLxG/cSkyQOs+NQ2tLg==
+ dependencies:
+ third-party-capital "1.0.20"
+
+"@nodelib/fs.scandir@2.1.5":
+ version "2.1.5"
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
+ integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
+ dependencies:
+ "@nodelib/fs.stat" "2.0.5"
+ run-parallel "^1.1.9"
+
+"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
+ integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
+
+"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8":
+ version "1.2.8"
+ resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
+ integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
+ dependencies:
+ "@nodelib/fs.scandir" "2.1.5"
+ fastq "^1.6.0"
+
+"@nolyfill/is-core-module@1.0.39":
+ version "1.0.39"
+ resolved "https://registry.yarnpkg.com/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz#3dc35ba0f1e66b403c00b39344f870298ebb1c8e"
+ integrity sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==
+
+"@parcel/watcher-android-arm64@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.1.tgz#507f836d7e2042f798c7d07ad19c3546f9848ac1"
+ integrity sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==
+
+"@parcel/watcher-darwin-arm64@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.1.tgz#3d26dce38de6590ef79c47ec2c55793c06ad4f67"
+ integrity sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==
+
+"@parcel/watcher-darwin-x64@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.1.tgz#99f3af3869069ccf774e4ddfccf7e64fd2311ef8"
+ integrity sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==
+
+"@parcel/watcher-freebsd-x64@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.1.tgz#14d6857741a9f51dfe51d5b08b7c8afdbc73ad9b"
+ integrity sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==
+
+"@parcel/watcher-linux-arm-glibc@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.1.tgz#43c3246d6892381db473bb4f663229ad20b609a1"
+ integrity sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==
+
+"@parcel/watcher-linux-arm-musl@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.1.tgz#663750f7090bb6278d2210de643eb8a3f780d08e"
+ integrity sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==
+
+"@parcel/watcher-linux-arm64-glibc@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.1.tgz#ba60e1f56977f7e47cd7e31ad65d15fdcbd07e30"
+ integrity sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==
+
+"@parcel/watcher-linux-arm64-musl@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.1.tgz#f7fbcdff2f04c526f96eac01f97419a6a99855d2"
+ integrity sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==
+
+"@parcel/watcher-linux-x64-glibc@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.1.tgz#4d2ea0f633eb1917d83d483392ce6181b6a92e4e"
+ integrity sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==
+
+"@parcel/watcher-linux-x64-musl@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.1.tgz#277b346b05db54f55657301dd77bdf99d63606ee"
+ integrity sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==
+
+"@parcel/watcher-win32-arm64@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.1.tgz#7e9e02a26784d47503de1d10e8eab6cceb524243"
+ integrity sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==
+
+"@parcel/watcher-win32-ia32@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.1.tgz#2d0f94fa59a873cdc584bf7f6b1dc628ddf976e6"
+ integrity sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==
+
+"@parcel/watcher-win32-x64@2.5.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.1.tgz#ae52693259664ba6f2228fa61d7ee44b64ea0947"
+ integrity sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==
+
+"@parcel/watcher@^2.4.1":
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/@parcel/watcher/-/watcher-2.5.1.tgz#342507a9cfaaf172479a882309def1e991fb1200"
+ integrity sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==
+ dependencies:
+ detect-libc "^1.0.3"
+ is-glob "^4.0.3"
+ micromatch "^4.0.5"
+ node-addon-api "^7.0.0"
+ optionalDependencies:
+ "@parcel/watcher-android-arm64" "2.5.1"
+ "@parcel/watcher-darwin-arm64" "2.5.1"
+ "@parcel/watcher-darwin-x64" "2.5.1"
+ "@parcel/watcher-freebsd-x64" "2.5.1"
+ "@parcel/watcher-linux-arm-glibc" "2.5.1"
+ "@parcel/watcher-linux-arm-musl" "2.5.1"
+ "@parcel/watcher-linux-arm64-glibc" "2.5.1"
+ "@parcel/watcher-linux-arm64-musl" "2.5.1"
+ "@parcel/watcher-linux-x64-glibc" "2.5.1"
+ "@parcel/watcher-linux-x64-musl" "2.5.1"
+ "@parcel/watcher-win32-arm64" "2.5.1"
+ "@parcel/watcher-win32-ia32" "2.5.1"
+ "@parcel/watcher-win32-x64" "2.5.1"
+
+"@pkgjs/parseargs@^0.11.0":
+ version "0.11.0"
+ resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
+ integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
+
+"@popperjs/core@^2.11.8":
+ version "2.11.8"
+ resolved "https://registry.yarnpkg.com/@popperjs/core/-/core-2.11.8.tgz#6b79032e760a0899cd4204710beede972a3a185f"
+ integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==
+
+"@posthog/core@1.1.0":
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/@posthog/core/-/core-1.1.0.tgz#bf9e3fa76c6e05daad09eceb07b04c7e3b1b346a"
+ integrity sha512-igElrcnRPJh2nWYACschjH4OwGwzSa6xVFzRDVzpnjirUivdJ8nv4hE+H31nvwE56MFhvvglfHuotnWLMcRW7w==
+
+"@radix-ui/primitive@1.1.3":
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/@radix-ui/primitive/-/primitive-1.1.3.tgz#e2dbc13bdc5e4168f4334f75832d7bdd3e2de5ba"
+ integrity sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==
+
+"@radix-ui/react-arrow@1.1.7":
+ version "1.1.7"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-arrow/-/react-arrow-1.1.7.tgz#e14a2657c81d961598c5e72b73dd6098acc04f09"
+ integrity sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==
+ dependencies:
+ "@radix-ui/react-primitive" "2.1.3"
+
+"@radix-ui/react-compose-refs@1.1.2":
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz#a2c4c47af6337048ee78ff6dc0d090b390d2bb30"
+ integrity sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==
+
+"@radix-ui/react-context@1.1.2":
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-context/-/react-context-1.1.2.tgz#61628ef269a433382c364f6f1e3788a6dc213a36"
+ integrity sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==
+
+"@radix-ui/react-dialog@^1.0.5":
+ version "1.1.15"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-dialog/-/react-dialog-1.1.15.tgz#1de3d7a7e9a17a9874d29c07f5940a18a119b632"
+ integrity sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==
+ dependencies:
+ "@radix-ui/primitive" "1.1.3"
+ "@radix-ui/react-compose-refs" "1.1.2"
+ "@radix-ui/react-context" "1.1.2"
+ "@radix-ui/react-dismissable-layer" "1.1.11"
+ "@radix-ui/react-focus-guards" "1.1.3"
+ "@radix-ui/react-focus-scope" "1.1.7"
+ "@radix-ui/react-id" "1.1.1"
+ "@radix-ui/react-portal" "1.1.9"
+ "@radix-ui/react-presence" "1.1.5"
+ "@radix-ui/react-primitive" "2.1.3"
+ "@radix-ui/react-slot" "1.2.3"
+ "@radix-ui/react-use-controllable-state" "1.2.2"
+ aria-hidden "^1.2.4"
+ react-remove-scroll "^2.6.3"
+
+"@radix-ui/react-dismissable-layer@1.1.11":
+ version "1.1.11"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.1.11.tgz#e33ab6f6bdaa00f8f7327c408d9f631376b88b37"
+ integrity sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==
+ dependencies:
+ "@radix-ui/primitive" "1.1.3"
+ "@radix-ui/react-compose-refs" "1.1.2"
+ "@radix-ui/react-primitive" "2.1.3"
+ "@radix-ui/react-use-callback-ref" "1.1.1"
+ "@radix-ui/react-use-escape-keydown" "1.1.1"
+
+"@radix-ui/react-focus-guards@1.1.3":
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-focus-guards/-/react-focus-guards-1.1.3.tgz#2a5669e464ad5fde9f86d22f7fdc17781a4dfa7f"
+ integrity sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==
+
+"@radix-ui/react-focus-scope@1.1.7":
+ version "1.1.7"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-focus-scope/-/react-focus-scope-1.1.7.tgz#dfe76fc103537d80bf42723a183773fd07bfb58d"
+ integrity sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==
+ dependencies:
+ "@radix-ui/react-compose-refs" "1.1.2"
+ "@radix-ui/react-primitive" "2.1.3"
+ "@radix-ui/react-use-callback-ref" "1.1.1"
+
+"@radix-ui/react-icons@^1.3.0":
+ version "1.3.2"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-icons/-/react-icons-1.3.2.tgz#09be63d178262181aeca5fb7f7bc944b10a7f441"
+ integrity sha512-fyQIhGDhzfc9pK2kH6Pl9c4BDJGfMkPqkyIgYDthyNYoNg3wVhoJMMh19WS4Up/1KMPFVpNsT2q3WmXn2N1m6g==
+
+"@radix-ui/react-id@1.1.1":
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-id/-/react-id-1.1.1.tgz#1404002e79a03fe062b7e3864aa01e24bd1471f7"
+ integrity sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==
+ dependencies:
+ "@radix-ui/react-use-layout-effect" "1.1.1"
+
+"@radix-ui/react-popper@1.2.8":
+ version "1.2.8"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-popper/-/react-popper-1.2.8.tgz#a79f39cdd2b09ab9fb50bf95250918422c4d9602"
+ integrity sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==
+ dependencies:
+ "@floating-ui/react-dom" "^2.0.0"
+ "@radix-ui/react-arrow" "1.1.7"
+ "@radix-ui/react-compose-refs" "1.1.2"
+ "@radix-ui/react-context" "1.1.2"
+ "@radix-ui/react-primitive" "2.1.3"
+ "@radix-ui/react-use-callback-ref" "1.1.1"
+ "@radix-ui/react-use-layout-effect" "1.1.1"
+ "@radix-ui/react-use-rect" "1.1.1"
+ "@radix-ui/react-use-size" "1.1.1"
+ "@radix-ui/rect" "1.1.1"
+
+"@radix-ui/react-portal@1.1.9":
+ version "1.1.9"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-portal/-/react-portal-1.1.9.tgz#14c3649fe48ec474ac51ed9f2b9f5da4d91c4472"
+ integrity sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==
+ dependencies:
+ "@radix-ui/react-primitive" "2.1.3"
+ "@radix-ui/react-use-layout-effect" "1.1.1"
+
+"@radix-ui/react-presence@1.1.5":
+ version "1.1.5"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-presence/-/react-presence-1.1.5.tgz#5d8f28ac316c32f078afce2996839250c10693db"
+ integrity sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==
+ dependencies:
+ "@radix-ui/react-compose-refs" "1.1.2"
+ "@radix-ui/react-use-layout-effect" "1.1.1"
+
+"@radix-ui/react-primitive@2.1.3":
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-primitive/-/react-primitive-2.1.3.tgz#db9b8bcff49e01be510ad79893fb0e4cda50f1bc"
+ integrity sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==
+ dependencies:
+ "@radix-ui/react-slot" "1.2.3"
+
+"@radix-ui/react-slot@1.2.3":
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-slot/-/react-slot-1.2.3.tgz#502d6e354fc847d4169c3bc5f189de777f68cfe1"
+ integrity sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==
+ dependencies:
+ "@radix-ui/react-compose-refs" "1.1.2"
+
+"@radix-ui/react-tooltip@^1.0.7":
+ version "1.2.8"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-tooltip/-/react-tooltip-1.2.8.tgz#3f50267e25bccfc9e20bb3036bfd9ab4c2c30c2c"
+ integrity sha512-tY7sVt1yL9ozIxvmbtN5qtmH2krXcBCfjEiCgKGLqunJHvgvZG2Pcl2oQ3kbcZARb1BGEHdkLzcYGO8ynVlieg==
+ dependencies:
+ "@radix-ui/primitive" "1.1.3"
+ "@radix-ui/react-compose-refs" "1.1.2"
+ "@radix-ui/react-context" "1.1.2"
+ "@radix-ui/react-dismissable-layer" "1.1.11"
+ "@radix-ui/react-id" "1.1.1"
+ "@radix-ui/react-popper" "1.2.8"
+ "@radix-ui/react-portal" "1.1.9"
+ "@radix-ui/react-presence" "1.1.5"
+ "@radix-ui/react-primitive" "2.1.3"
+ "@radix-ui/react-slot" "1.2.3"
+ "@radix-ui/react-use-controllable-state" "1.2.2"
+ "@radix-ui/react-visually-hidden" "1.2.3"
+
+"@radix-ui/react-use-callback-ref@1.1.1":
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.1.tgz#62a4dba8b3255fdc5cc7787faeac1c6e4cc58d40"
+ integrity sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==
+
+"@radix-ui/react-use-controllable-state@1.2.2":
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.2.2.tgz#905793405de57d61a439f4afebbb17d0645f3190"
+ integrity sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==
+ dependencies:
+ "@radix-ui/react-use-effect-event" "0.0.2"
+ "@radix-ui/react-use-layout-effect" "1.1.1"
+
+"@radix-ui/react-use-effect-event@0.0.2":
+ version "0.0.2"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-use-effect-event/-/react-use-effect-event-0.0.2.tgz#090cf30d00a4c7632a15548512e9152217593907"
+ integrity sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==
+ dependencies:
+ "@radix-ui/react-use-layout-effect" "1.1.1"
+
+"@radix-ui/react-use-escape-keydown@1.1.1":
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.1.1.tgz#b3fed9bbea366a118f40427ac40500aa1423cc29"
+ integrity sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==
+ dependencies:
+ "@radix-ui/react-use-callback-ref" "1.1.1"
+
+"@radix-ui/react-use-layout-effect@1.1.1":
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.1.tgz#0c4230a9eed49d4589c967e2d9c0d9d60a23971e"
+ integrity sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==
+
+"@radix-ui/react-use-rect@1.1.1":
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-use-rect/-/react-use-rect-1.1.1.tgz#01443ca8ed071d33023c1113e5173b5ed8769152"
+ integrity sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==
+ dependencies:
+ "@radix-ui/rect" "1.1.1"
+
+"@radix-ui/react-use-size@1.1.1":
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-use-size/-/react-use-size-1.1.1.tgz#6de276ffbc389a537ffe4316f5b0f24129405b37"
+ integrity sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==
+ dependencies:
+ "@radix-ui/react-use-layout-effect" "1.1.1"
+
+"@radix-ui/react-visually-hidden@1.2.3":
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.2.3.tgz#a8c38c8607735dc9f05c32f87ab0f9c2b109efbf"
+ integrity sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==
+ dependencies:
+ "@radix-ui/react-primitive" "2.1.3"
+
+"@radix-ui/rect@1.1.1":
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/@radix-ui/rect/-/rect-1.1.1.tgz#78244efe12930c56fd255d7923865857c41ac8cb"
+ integrity sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==
+
+"@replit/codemirror-css-color-picker@^6.1.0":
+ version "6.3.0"
+ resolved "https://registry.yarnpkg.com/@replit/codemirror-css-color-picker/-/codemirror-css-color-picker-6.3.0.tgz#069835261d2b7b7ff5cb5f3ce354253d6e7e1100"
+ integrity sha512-19biDANghUm7Fz7L1SNMIhK48tagaWuCOHj4oPPxc7hxPGkTVY2lU/jVZ8tsbTKQPVG7BO2CBDzs7CBwb20t4A==
+
+"@rollup/rollup-android-arm-eabi@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.52.1.tgz#91d050b46ac5fc17e44e8cb766ef4ffd8d303b33"
+ integrity sha512-sifE8uDpDvortUdi3xFevQ9WN5L3orrglg7iO/DhIpSVCwJOxBs9k9JzCC76KEZkLY4UkHWj+KESdFhlsNmDLw==
+
+"@rollup/rollup-android-arm64@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.52.1.tgz#7bfe518ed5ef666ee7843b3f780fd5b2a1e28691"
+ integrity sha512-s83W/rRAPshsyzH9cS0CPKZVLlo2GGRt/1BocbR64DIyr2tMN1f2OZEjbFUnkAA2ewfbd+9waSYS0vbrlsG3qg==
+
+"@rollup/rollup-darwin-arm64@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.1.tgz#dc5a9fdc7b95bbda66c3836b3dacab677fc895aa"
+ integrity sha512-lJkbZBREVUY9Vdw6DrzCysWv9Trcl7SyNxPRQMqvt6V/xmQC140aOcSkyWzwQ9t+s3ojvvWYZMpSazAbSTNfSA==
+
+"@rollup/rollup-darwin-x64@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.52.1.tgz#ebd7e19a99a0ba616ac257eb4ee116dcb228e117"
+ integrity sha512-cw852iGDmvuXeOz2lwpocEL9wkHg3TBZRdAbwmra/YJ5KVxaj7nDdYJ9P0OAVxsbsKa0hFML+dwRHA02kB8Q+g==
+
+"@rollup/rollup-freebsd-arm64@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.52.1.tgz#6fc826181f0114ce7ecdb5e4b87885fd2453c76f"
+ integrity sha512-nLezpaKL1jY63BunCbeA7B7B/5i4DQifNRBfzZ0+p3BxRejeKdzP7T3rfD5YpNy3+RysFy8Zw3EAnvXyrbZzqQ==
+
+"@rollup/rollup-freebsd-x64@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.52.1.tgz#8bacf64318cf43d2d344b5a840a57c85fe2a7bd0"
+ integrity sha512-USdXZmfo+t4DoUC02UotEf7e6ADsaQ1pvOtOZV2iT2wEmB6y7iMJA0MsIZTbp27enq9v+YK43s3ztYPVy0T2bA==
+
+"@rollup/rollup-linux-arm-gnueabihf@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.52.1.tgz#37641d8216ada0d876d6ba73629d8ae9c6f4aa63"
+ integrity sha512-n3YunK17pY3BuZhLNTcRCT83JkFRfBKnG4R2vROUZvxLJlYkIQXfDGQRVZ7ZZBp1INxXm4fzT4jrd6Tm5DMZ7g==
+
+"@rollup/rollup-linux-arm-musleabihf@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.52.1.tgz#9bb6119444e758fa97c33d480f3433ed38874f58"
+ integrity sha512-45geWgFvA+SKw49tRkHI7xBizBZc6bismWIg+zqwK1OZN0hqMXe39BExVu45o768KDoM7XGoZ1pDE9opiHKKag==
+
+"@rollup/rollup-linux-arm64-gnu@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.52.1.tgz#7618598822f80f0943ab81f7b1c5a9b32c66dfe9"
+ integrity sha512-7m2ybyIOd5j/U43JSfMblwiZG69yAfuvg6TXhHvOtoQMjw6Or48FmgUxyAZ4ZzH7isxfMyr8M26m0pBkoAIEdQ==
+
+"@rollup/rollup-linux-arm64-musl@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.52.1.tgz#9e9b16e4928b6b01dd7c7f2ca6ce729eb7c990fa"
+ integrity sha512-qnmMzRpkKG1T1EzKVtA/8Q0YAYalRN+h+WzWcbyD0SqjVwxmqrPj/TuuH30TwUp6X2UaUhfWSHccMgF+T6jDpw==
+
+"@rollup/rollup-linux-loong64-gnu@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.52.1.tgz#17507e14f903f1553a7a752cb25a0c8e6795df6d"
+ integrity sha512-5Fc7jWzggy8RXJTew+8FoUXwpvJIuwOcYEMSJxs/9MB+oG/C4NRM23Xg+vW173sQz0H6RSViMmoKJih/hVQQow==
+
+"@rollup/rollup-linux-ppc64-gnu@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.52.1.tgz#6e10d80f8c7d03e40dd4afe76d72df2cd817a298"
+ integrity sha512-DxnsniAn/iv23PtQhOU0l+cXAG3IvWkzEOc9t4THzWJs/NKpF955GnbYKo6PwqwlcbxO/ARn4B8IMg4ghW+DOw==
+
+"@rollup/rollup-linux-riscv64-gnu@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.52.1.tgz#336c0ba79146ef8e942657073243c9b68b8bad34"
+ integrity sha512-xAlxc3PeGHNpLmisSs8UpFm/A8aPOVeoHhWePEH0rDVFCC4uwWx4W1ecq/oYT2gjkRtVBxD1GjjNYJQrN9fX4A==
+
+"@rollup/rollup-linux-riscv64-musl@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.52.1.tgz#73c0819b5d1d21c0de5077329496c55cd993c177"
+ integrity sha512-b5xbekmUtAkPY3TqrYMvbAltNNmpMApdMDxjYiaUQ8k1ep0iS/900CJEZq/RPd5gXF59Lp+me1wXbkW1xpxw4g==
+
+"@rollup/rollup-linux-s390x-gnu@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.52.1.tgz#1a497d513e9fd9979c865c400bd62b6951fdb0b1"
+ integrity sha512-CcNQx6CuvJH/SMt3dElyqrCK7BCCAOQtdobJIVhJ7AaA5nrE0RkNHTVzDyXkYqkgoMjuF2p0tEchX7YuOeal4w==
+
+"@rollup/rollup-linux-x64-gnu@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.1.tgz#2080cbbfc751472cd836df6f8100fd77130a9963"
+ integrity sha512-xsKzVShwurM4JjGyMo/n4lb13mzpfDmg0yWiMlO65XSkhIpWnGnE4z66y9leVALb3M7sWiNluCKUv2ZZ0DWy1w==
+
+"@rollup/rollup-linux-x64-musl@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.52.1.tgz#28626be0d6542da1a8c9a95178b80cf96d369aea"
+ integrity sha512-AtzCeCyU6wYbJq7akOX3oZmc1pcY6yNYYC+HbjAcnjB63hXc22AX6nWtoU9TOJw3EQRxCLIubwGmnSrk66khpQ==
+
+"@rollup/rollup-openharmony-arm64@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.52.1.tgz#fda5b6bb92f20043d4fec802846de744c32782dd"
+ integrity sha512-pZb5K1hqS6MmdSgNUfWIzemPNNwmg5n7HhZHSyClwGd/IoQCiTjUGs09O/lxOZLHlltqUyVl0Y/4dcd8j90FEw==
+
+"@rollup/rollup-win32-arm64-msvc@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.52.1.tgz#53b53fe23b8fd6921f9b1381d444b50c770b57b2"
+ integrity sha512-A6hkNBmS3yahy06sFIouOjC5MO/ciPSBxdbWdGIk7ue3lhR1wJ9mJ27kZFK/N8ZOLwO1YdymYhhfI3gGHHpliA==
+
+"@rollup/rollup-win32-ia32-msvc@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.52.1.tgz#1b75ee53f67dac521f2d7f8bba11b41c19206131"
+ integrity sha512-HRNyKIYDpuC7FIVJ8kH1RFGoEp4beASrjKksx3f2Oa82pLxNVhBIM1gC7WEd7z9djZ0OW6o9qhXFo7gAU4QCWw==
+
+"@rollup/rollup-win32-x64-gnu@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.52.1.tgz#eff093f0c7e8473baa1596f593f327fc1cc04f0a"
+ integrity sha512-rkpnc4BKw8QoP9yynwLJqjVgmkko8yjqEHHYlUPv/xznRb3mQ7iN7fpc5fOqCFtYCeEyilBAun5a4wKLLKYX2g==
+
+"@rollup/rollup-win32-x64-msvc@4.52.1":
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.52.1.tgz#7a09da992034a6cbab3462377f8a2ed26087c816"
+ integrity sha512-ZzNEDNx/4sWP94UNAc6OfVNJFM2G4vz6IcIhBJv8BYyLeGNQldV5Dn22+i8Y7yn4a7unFjdAX/1nwNBfc7tUcg==
+
+"@rtsao/scc@^1.1.0":
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/@rtsao/scc/-/scc-1.1.0.tgz#927dd2fae9bc3361403ac2c7a00c32ddce9ad7e8"
+ integrity sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==
+
+"@rushstack/eslint-patch@^1.3.3":
+ version "1.12.0"
+ resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.12.0.tgz#326a7b46f6d4cfa54ae25bb888551697873069b4"
+ integrity sha512-5EwMtOqvJMMa3HbmxLlF74e+3/HhwBTMcvt3nqVJgGCozO6hzIPOBlwm8mGVNR9SN2IJpxSnlxczyDjcn7qIyw==
+
+"@scalar/api-client@1.2.39":
+ version "1.2.39"
+ resolved "https://registry.yarnpkg.com/@scalar/api-client/-/api-client-1.2.39.tgz#49bf83b4093f2b6e7b7ae4f259249c22f0d4e4df"
+ integrity sha512-2+XZ3ifIqjwmKiZot7hMJ38urbb/N2rd+8qqY3pqOAenI/pYIRaTfsOVut1LTRK60oPNl2APqd3ei7K1B5zmrg==
+ dependencies:
+ "@floating-ui/vue" "^1.0.2"
+ "@headlessui/vue" "^1.7.20"
+ "@scalar/components" "0.8.0"
+ "@scalar/openapi-parser" "^0.3.2"
+ "@scalar/themes" "0.7.11"
+ "@scalar/use-codemirror" "0.10.5"
+ "@scalar/use-modal" "0.3.3"
+ "@scalar/use-toasts" "0.6.7"
+ "@scalar/use-tooltip" "0.6.2"
+ "@vueuse/core" "^10.9.0"
+ axios "^1.6.8"
+ httpsnippet-lite "^3.0.5"
+ nanoid "^5.0.1"
+ pretty-bytes "^6.1.1"
+ pretty-ms "^8.0.0"
+
+"@scalar/api-reference-react@^0.1.31":
+ version "0.1.98"
+ resolved "https://registry.yarnpkg.com/@scalar/api-reference-react/-/api-reference-react-0.1.98.tgz#d5427bb98bdcf6b0ee8dcd2892891da2e4a43a97"
+ integrity sha512-XGw0CBxmSRPhUpvAKC2xMzL4ulhJL9F3thCCELnBMIFyEx5F43T714RE4ks/uijyDurF7AiW86u6Jud4R7v9kg==
+ dependencies:
+ "@scalar/api-reference" "1.22.56"
+
+"@scalar/api-reference@1.22.56":
+ version "1.22.56"
+ resolved "https://registry.yarnpkg.com/@scalar/api-reference/-/api-reference-1.22.56.tgz#e6a4e0c41ed0fb65c20a8bfb1f57749cbef130b4"
+ integrity sha512-UZll5kOW9i7g2oAGnQc2XR1kzf+vtSlLt9clErH5yTRGSASuzuOD2HWxhavu+7EhGzAgJcat6NYY3LI9voCOsw==
+ dependencies:
+ "@headlessui/vue" "^1.7.20"
+ "@scalar/api-client" "1.2.39"
+ "@scalar/components" "0.8.0"
+ "@scalar/oas-utils" "0.1.16"
+ "@scalar/openapi-parser" "^0.3.2"
+ "@scalar/snippetz" "^0.1.6"
+ "@scalar/themes" "0.7.11"
+ "@scalar/use-modal" "0.3.3"
+ "@scalar/use-toasts" "0.6.7"
+ "@scalar/use-tooltip" "0.6.2"
+ "@unhead/schema" "^1.9.5"
+ "@vcarl/remark-headings" "^0.1.0"
+ "@vueuse/core" "^10.9.0"
+ axios "^1.6.8"
+ fuse.js "^6.6.2"
+ github-slugger "^2.0.0"
+ httpsnippet-lite "^3.0.5"
+ postcss-nested "^6.0.1"
+ prismjs "^1.29.0"
+ rehype-external-links "^3.0.0"
+ rehype-format "^5.0.0"
+ rehype-highlight "^7.0.0"
+ rehype-raw "^7.0.0"
+ rehype-sanitize "^6.0.0"
+ rehype-stringify "^10.0.0"
+ remark-gfm "^4.0.0"
+ remark-parse "^11.0.0"
+ remark-rehype "^11.1.0"
+ remark-stringify "^11.0.0"
+ unhead "^1.8.3"
+ unified "^11.0.4"
+
+"@scalar/components@0.8.0":
+ version "0.8.0"
+ resolved "https://registry.yarnpkg.com/@scalar/components/-/components-0.8.0.tgz#f5d0ec36f33527ccb8e8dff5be09a61d76574b95"
+ integrity sha512-n2qgwoSiFF0ZlTqqXbSwiVBy5Zvm8e8XL6gdB6ZikPVuhK0Ci9SVMalqOrJMaP9YvYSasecNKFMU6Zr9dgWjKQ==
+ dependencies:
+ "@floating-ui/utils" "^0.2.2"
+ "@floating-ui/vue" "^1.0.2"
+ "@headlessui/vue" "^1.7.20"
+ "@scalar/oas-utils" "0.1.16"
+ "@storybook/test" "^8.0.8"
+ "@vueuse/core" "^10.9.0"
+ cva "1.0.0-beta.1"
+ nanoid "^5.0.1"
+ prismjs "^1.29.0"
+ tailwind-merge "^2.3.0"
+
+"@scalar/oas-utils@0.1.16":
+ version "0.1.16"
+ resolved "https://registry.yarnpkg.com/@scalar/oas-utils/-/oas-utils-0.1.16.tgz#fd20d9a9689522ce3c15c5b7f952b4c42c503f72"
+ integrity sha512-zEKm81WJdBiTXoNVB5oB6L3XOEdiJIxj3pVfDYDrtGVObp5vV+iZh+f0O0HdnUt4TxpyXxLWW6iVnrxAOle9fA==
+ dependencies:
+ yaml "^2.4.1"
+
+"@scalar/openapi-parser@^0.3.2":
+ version "0.3.2"
+ resolved "https://registry.yarnpkg.com/@scalar/openapi-parser/-/openapi-parser-0.3.2.tgz#9a3d38f14ae5a0d607a43960d88396de4b171926"
+ integrity sha512-o38wF1rKqCc7R0zFMta5rPTiY4cWwVcZPJkV1OCcnPsF2eE79uPkhYU2j/kdocJXVwMqqAe9a6+0o4R8YjgPVw==
+ dependencies:
+ "@humanwhocodes/momoa" "^3.0.1"
+ "@types/node" "^20.11.26"
+ ajv "^8.12.0"
+ ajv-draft-04 "^1.0.0"
+ ajv-formats "^2.1.1"
+ js-yaml "^4.1.0"
+ jsonpointer "^5.0.1"
+ leven "^4.0.0"
+ openapi-types "^12.1.3"
+ vite "^5.1.6"
+ yaml "^2.4.1"
+
+"@scalar/snippetz-core@0.1.4":
+ version "0.1.4"
+ resolved "https://registry.yarnpkg.com/@scalar/snippetz-core/-/snippetz-core-0.1.4.tgz#4e93b90d592bc65ee9ea871db7bb83816bbba562"
+ integrity sha512-NMnDzl5dHgUj0k8ZtfssDfy6wv1wO/M+GhpdGr/4OH3m8UZB27CZ3hM7wXh+fm75hZO5XIBsANW20kJVnzpaHg==
+ dependencies:
+ "@types/har-format" "^1.2.15"
+
+"@scalar/snippetz-plugin-js-fetch@0.1.1":
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/@scalar/snippetz-plugin-js-fetch/-/snippetz-plugin-js-fetch-0.1.1.tgz#061794bf577313c6cb7a347eb14d980a9f5fd53f"
+ integrity sha512-9ODfi0OaEvZHdCe09c91eH1R5QPynL+FPxtYuK/9K5ElRE2NqxYysri9AsgOhr1Fqhpy5qKzDj4Gi5FHsJSGXw==
+ dependencies:
+ "@scalar/snippetz-core" "0.1.4"
+
+"@scalar/snippetz-plugin-js-ofetch@^0.1.1":
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/@scalar/snippetz-plugin-js-ofetch/-/snippetz-plugin-js-ofetch-0.1.1.tgz#4d8ae6e32c36f2e101fb8a0dfd7be2c38a5809d5"
+ integrity sha512-fPIJlY4q1j5gbnsYSxix0IJ7hqcvm8Ly7iVoK66vaL738AIMiGZMhGKtLrTVPad77PimwO+jeq5iDIZ495UY7Q==
+ dependencies:
+ "@scalar/snippetz-core" "0.1.4"
+
+"@scalar/snippetz-plugin-node-fetch@0.1.2":
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/@scalar/snippetz-plugin-node-fetch/-/snippetz-plugin-node-fetch-0.1.2.tgz#f15ebcf55c916e8ba8951204c4093e00cd54e569"
+ integrity sha512-kD6erA6aAqjHkj+JrJQKqrqcH4fnCrLi2uYw16CmELIGtqVHFau7ew2c087y4OQTltdi5rEk2zj5zOBu9yaS3Q==
+ dependencies:
+ "@scalar/snippetz-core" "0.1.4"
+
+"@scalar/snippetz-plugin-node-ofetch@^0.1.1":
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/@scalar/snippetz-plugin-node-ofetch/-/snippetz-plugin-node-ofetch-0.1.1.tgz#ab849f1bd5b289da5b35f00982a7f3866d021f26"
+ integrity sha512-9NpvdMKebg82FkVWoWyOxd1JXAB8KNxmrsFFwQKNjhAw0A5hjNR5oW9lD+FtB1Laupg2FNtw9dcCydnF+LcCWw==
+ dependencies:
+ "@scalar/snippetz-core" "0.1.4"
+
+"@scalar/snippetz-plugin-node-undici@0.1.6":
+ version "0.1.6"
+ resolved "https://registry.yarnpkg.com/@scalar/snippetz-plugin-node-undici/-/snippetz-plugin-node-undici-0.1.6.tgz#2b8b3502fb7c388005c5c5d850300f591865c24c"
+ integrity sha512-CivUl7wgZ6vlUb01FMdqOt/NVyOWqT0iHZRp5YlPp1pflXZLnAyi5antUTtBEUHUtHM2EO/WR7vx4kRsPcrgLg==
+ dependencies:
+ "@scalar/snippetz-core" "0.1.4"
+
+"@scalar/snippetz@^0.1.6":
+ version "0.1.6"
+ resolved "https://registry.yarnpkg.com/@scalar/snippetz/-/snippetz-0.1.6.tgz#f7fa34c49c921637d7a2823b7b5fd779152f126e"
+ integrity sha512-z3DEpT/FIZq9yeHL/tz2v6WvdHIiZ4uvK96RdeTPKUUJ0IXvA5vONG3PF5LE0Q/408PCzWsZpGs9f97ztaeJSQ==
+ dependencies:
+ "@scalar/snippetz-core" "0.1.4"
+ "@scalar/snippetz-plugin-js-fetch" "0.1.1"
+ "@scalar/snippetz-plugin-js-ofetch" "^0.1.1"
+ "@scalar/snippetz-plugin-node-fetch" "0.1.2"
+ "@scalar/snippetz-plugin-node-ofetch" "^0.1.1"
+ "@scalar/snippetz-plugin-node-undici" "0.1.6"
+
+"@scalar/themes@0.7.11":
+ version "0.7.11"
+ resolved "https://registry.yarnpkg.com/@scalar/themes/-/themes-0.7.11.tgz#618011694d2872183284e296ac7946fc6b5bd9b7"
+ integrity sha512-JakLxHhNnL0scW+29tZutkndVVS82bhaZcbAZxbu6PwIy2DJ5v5fOtcuRyGwyKlmF5G2grQl4yhlkHrIzSiF+g==
+
+"@scalar/use-codemirror@0.10.5":
+ version "0.10.5"
+ resolved "https://registry.yarnpkg.com/@scalar/use-codemirror/-/use-codemirror-0.10.5.tgz#c3b3ef9c18498d9dd9d09eca12b9df0150f93208"
+ integrity sha512-P7WTP061bIbGUMbtUG9pwIyItSxSbXljmWTFkqyq47qQOiDEG3cKXczjCapPn6LMR26s4m3mWAm4kl08dx0hQg==
+ dependencies:
+ "@codemirror/autocomplete" "^6.12.0"
+ "@codemirror/commands" "^6.3.3"
+ "@codemirror/lang-css" "^6.2.1"
+ "@codemirror/lang-html" "^6.4.8"
+ "@codemirror/lang-json" "^6.0.0"
+ "@codemirror/lang-yaml" "^6.0.0"
+ "@codemirror/language" "^6.10.1"
+ "@codemirror/state" "^6.4.0"
+ "@codemirror/view" "^6.23.1"
+ "@lezer/common" "^1.2.1"
+ "@lezer/highlight" "^1.2.0"
+ "@lezer/lr" "^1.4.0"
+ "@replit/codemirror-css-color-picker" "^6.1.0"
+ "@uiw/codemirror-themes" "^4.21.21"
+ codemirror "^6.0.0"
+ optionalDependencies:
+ y-codemirror.next "^0.3.2"
+
+"@scalar/use-modal@0.3.3":
+ version "0.3.3"
+ resolved "https://registry.yarnpkg.com/@scalar/use-modal/-/use-modal-0.3.3.tgz#743279d33525e213f491febbe114691660116cc0"
+ integrity sha512-j+o3RDeRoYT875oSSa8SytKwDPRMdL74Av9r9lwH95Fwk+IGC/B9Gc8dxtdncKmJBRvTk18nWVEoDn7JZ+CwaA==
+
+"@scalar/use-toasts@0.6.7":
+ version "0.6.7"
+ resolved "https://registry.yarnpkg.com/@scalar/use-toasts/-/use-toasts-0.6.7.tgz#a5c168e1c05f02cdd49ae0f5475a086cfc3ddde1"
+ integrity sha512-KRaSZ0WgH/745c8ckHo4qGAWWUcp/cU1QgpvLbAnI6qvye/EOxK0PQ5glJVci7w/T1XsAutP5OQ/TlaR7CB6Sw==
+
+"@scalar/use-tooltip@0.6.2":
+ version "0.6.2"
+ resolved "https://registry.yarnpkg.com/@scalar/use-tooltip/-/use-tooltip-0.6.2.tgz#36d4ac594ff2842eacab497fd7caf0e7c1203518"
+ integrity sha512-ntiHkA1A/4DHS7ISqIsE4az0AvG3LovwwJpX6LcnsiezwGfIswe6DSSwX2T0OIOO1n1Amg2/VhGFg+xOyWGOKQ==
+
+"@sindresorhus/merge-streams@^2.1.0":
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz#719df7fb41766bc143369eaa0dd56d8dc87c9958"
+ integrity sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==
+
+"@storybook/global@^5.0.0":
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/@storybook/global/-/global-5.0.0.tgz#b793d34b94f572c1d7d9e0f44fac4e0dbc9572ed"
+ integrity sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==
+
+"@storybook/instrumenter@8.6.14":
+ version "8.6.14"
+ resolved "https://registry.yarnpkg.com/@storybook/instrumenter/-/instrumenter-8.6.14.tgz#85bf47e34348f17dfbb99080312eefb2f535bd65"
+ integrity sha512-iG4MlWCcz1L7Yu8AwgsnfVAmMbvyRSk700Mfy2g4c8y5O+Cv1ejshE1LBBsCwHgkuqU0H4R0qu4g23+6UnUemQ==
+ dependencies:
+ "@storybook/global" "^5.0.0"
+ "@vitest/utils" "^2.1.1"
+
+"@storybook/test@^8.0.8":
+ version "8.6.14"
+ resolved "https://registry.yarnpkg.com/@storybook/test/-/test-8.6.14.tgz#7b90708f13adabdac0fe8d08889d763608f6a481"
+ integrity sha512-GkPNBbbZmz+XRdrhMtkxPotCLOQ1BaGNp/gFZYdGDk2KmUWBKmvc5JxxOhtoXM2703IzNFlQHSSNnhrDZYuLlw==
+ dependencies:
+ "@storybook/global" "^5.0.0"
+ "@storybook/instrumenter" "8.6.14"
+ "@testing-library/dom" "10.4.0"
+ "@testing-library/jest-dom" "6.5.0"
+ "@testing-library/user-event" "14.5.2"
+ "@vitest/expect" "2.0.5"
+ "@vitest/spy" "2.0.5"
+
+"@swc/counter@^0.1.3":
+ version "0.1.3"
+ resolved "https://registry.yarnpkg.com/@swc/counter/-/counter-0.1.3.tgz#cc7463bd02949611c6329596fccd2b0ec782b0e9"
+ integrity sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==
+
+"@swc/helpers@0.5.5":
+ version "0.5.5"
+ resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.5.tgz#12689df71bfc9b21c4f4ca00ae55f2f16c8b77c0"
+ integrity sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==
+ dependencies:
+ "@swc/counter" "^0.1.3"
+ tslib "^2.4.0"
+
+"@swc/helpers@^0.5.3":
+ version "0.5.17"
+ resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.5.17.tgz#5a7be95ac0f0bf186e7e6e890e7a6f6cda6ce971"
+ integrity sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==
+ dependencies:
+ tslib "^2.8.0"
+
+"@tanstack/react-virtual@^3.0.0-beta.60":
+ version "3.13.12"
+ resolved "https://registry.yarnpkg.com/@tanstack/react-virtual/-/react-virtual-3.13.12.tgz#d372dc2783739cc04ec1a728ca8203937687a819"
+ integrity sha512-Gd13QdxPSukP8ZrkbgS2RwoZseTTbQPLnQEn7HY/rqtM+8Zt95f7xKC7N0EsKs7aoz0WzZ+fditZux+F8EzYxA==
+ dependencies:
+ "@tanstack/virtual-core" "3.13.12"
+
+"@tanstack/virtual-core@3.13.12":
+ version "3.13.12"
+ resolved "https://registry.yarnpkg.com/@tanstack/virtual-core/-/virtual-core-3.13.12.tgz#1dff176df9cc8f93c78c5e46bcea11079b397578"
+ integrity sha512-1YBOJfRHV4sXUmWsFSf5rQor4Ss82G8dQWLRbnk3GA4jeP8hQt1hxXh0tmflpC0dz3VgEv/1+qwPyLeWkQuPFA==
+
+"@tanstack/vue-virtual@^3.0.0-beta.60":
+ version "3.13.12"
+ resolved "https://registry.yarnpkg.com/@tanstack/vue-virtual/-/vue-virtual-3.13.12.tgz#a66daac9e6822ce4bcba76a3954937440697c264"
+ integrity sha512-vhF7kEU9EXWXh+HdAwKJ2m3xaOnTTmgcdXcF2pim8g4GvI7eRrk2YRuV5nUlZnd/NbCIX4/Ja2OZu5EjJL06Ww==
+ dependencies:
+ "@tanstack/virtual-core" "3.13.12"
+
+"@testing-library/dom@10.4.0":
+ version "10.4.0"
+ resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-10.4.0.tgz#82a9d9462f11d240ecadbf406607c6ceeeff43a8"
+ integrity sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==
+ dependencies:
+ "@babel/code-frame" "^7.10.4"
+ "@babel/runtime" "^7.12.5"
+ "@types/aria-query" "^5.0.1"
+ aria-query "5.3.0"
+ chalk "^4.1.0"
+ dom-accessibility-api "^0.5.9"
+ lz-string "^1.5.0"
+ pretty-format "^27.0.2"
+
+"@testing-library/jest-dom@6.5.0":
+ version "6.5.0"
+ resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-6.5.0.tgz#50484da3f80fb222a853479f618a9ce5c47bfe54"
+ integrity sha512-xGGHpBXYSHUUr6XsKBfs85TWlYKpTc37cSBBVrXcib2MkHLboWlkClhWF37JKlDb9KEq3dHs+f2xR7XJEWGBxA==
+ dependencies:
+ "@adobe/css-tools" "^4.4.0"
+ aria-query "^5.0.0"
+ chalk "^3.0.0"
+ css.escape "^1.5.1"
+ dom-accessibility-api "^0.6.3"
+ lodash "^4.17.21"
+ redent "^3.0.0"
+
+"@testing-library/user-event@14.5.2":
+ version "14.5.2"
+ resolved "https://registry.yarnpkg.com/@testing-library/user-event/-/user-event-14.5.2.tgz#db7257d727c891905947bd1c1a99da20e03c2ebd"
+ integrity sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==
+
+"@theguild/remark-mermaid@^0.0.5":
+ version "0.0.5"
+ resolved "https://registry.yarnpkg.com/@theguild/remark-mermaid/-/remark-mermaid-0.0.5.tgz#0f95671d247381f416e528e937be08bb7a695224"
+ integrity sha512-e+ZIyJkEv9jabI4m7q29wZtZv+2iwPGsXJ2d46Zi7e+QcFudiyuqhLhHG/3gX3ZEB+hxTch+fpItyMS8jwbIcw==
+ dependencies:
+ mermaid "^10.2.2"
+ unist-util-visit "^5.0.0"
+
+"@theguild/remark-mermaid@^0.0.6":
+ version "0.0.6"
+ resolved "https://registry.yarnpkg.com/@theguild/remark-mermaid/-/remark-mermaid-0.0.6.tgz#937406e74d37dc3d750fdd097b02cd0a0e7ca570"
+ integrity sha512-WaOOaSz2tEmsE8SFL4WCiTRzwMlOIkKONnlc6DjKbqaJr+lVGlm0aWZAVTuvvVEebgmLzaFvmPUVf2M2GWwsJQ==
+ dependencies:
+ mermaid "^10.2.2"
+ unist-util-visit "^5.0.0"
+
+"@theguild/remark-npm2yarn@^0.2.0":
+ version "0.2.1"
+ resolved "https://registry.yarnpkg.com/@theguild/remark-npm2yarn/-/remark-npm2yarn-0.2.1.tgz#63bf5a8c85d7fe505d4808812dbc56d9c2ce00f8"
+ integrity sha512-jUTFWwDxtLEFtGZh/TW/w30ySaDJ8atKWH8dq2/IiQF61dPrGfETpl0WxD0VdBfuLOeU14/kop466oBSRO/5CA==
+ dependencies:
+ npm-to-yarn "^2.1.0"
+ unist-util-visit "^5.0.0"
+
+"@tybys/wasm-util@^0.10.0":
+ version "0.10.1"
+ resolved "https://registry.yarnpkg.com/@tybys/wasm-util/-/wasm-util-0.10.1.tgz#ecddd3205cf1e2d5274649ff0eedd2991ed7f414"
+ integrity sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==
+ dependencies:
+ tslib "^2.4.0"
+
+"@types/acorn@^4.0.0":
+ version "4.0.6"
+ resolved "https://registry.yarnpkg.com/@types/acorn/-/acorn-4.0.6.tgz#d61ca5480300ac41a7d973dd5b84d0a591154a22"
+ integrity sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==
+ dependencies:
+ "@types/estree" "*"
+
+"@types/aria-query@^5.0.1":
+ version "5.0.4"
+ resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-5.0.4.tgz#1a31c3d378850d2778dabb6374d036dcba4ba708"
+ integrity sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==
+
+"@types/d3-array@*":
+ version "3.2.2"
+ resolved "https://registry.yarnpkg.com/@types/d3-array/-/d3-array-3.2.2.tgz#e02151464d02d4a1b44646d0fcdb93faf88fde8c"
+ integrity sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==
+
+"@types/d3-axis@*":
+ version "3.0.6"
+ resolved "https://registry.yarnpkg.com/@types/d3-axis/-/d3-axis-3.0.6.tgz#e760e5765b8188b1defa32bc8bb6062f81e4c795"
+ integrity sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==
+ dependencies:
+ "@types/d3-selection" "*"
+
+"@types/d3-brush@*":
+ version "3.0.6"
+ resolved "https://registry.yarnpkg.com/@types/d3-brush/-/d3-brush-3.0.6.tgz#c2f4362b045d472e1b186cdbec329ba52bdaee6c"
+ integrity sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==
+ dependencies:
+ "@types/d3-selection" "*"
+
+"@types/d3-chord@*":
+ version "3.0.6"
+ resolved "https://registry.yarnpkg.com/@types/d3-chord/-/d3-chord-3.0.6.tgz#1706ca40cf7ea59a0add8f4456efff8f8775793d"
+ integrity sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==
+
+"@types/d3-color@*":
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/@types/d3-color/-/d3-color-3.1.3.tgz#368c961a18de721da8200e80bf3943fb53136af2"
+ integrity sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==
+
+"@types/d3-contour@*":
+ version "3.0.6"
+ resolved "https://registry.yarnpkg.com/@types/d3-contour/-/d3-contour-3.0.6.tgz#9ada3fa9c4d00e3a5093fed0356c7ab929604231"
+ integrity sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==
+ dependencies:
+ "@types/d3-array" "*"
+ "@types/geojson" "*"
+
+"@types/d3-delaunay@*":
+ version "6.0.4"
+ resolved "https://registry.yarnpkg.com/@types/d3-delaunay/-/d3-delaunay-6.0.4.tgz#185c1a80cc807fdda2a3fe960f7c11c4a27952e1"
+ integrity sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==
+
+"@types/d3-dispatch@*":
+ version "3.0.7"
+ resolved "https://registry.yarnpkg.com/@types/d3-dispatch/-/d3-dispatch-3.0.7.tgz#ef004d8a128046cfce434d17182f834e44ef95b2"
+ integrity sha512-5o9OIAdKkhN1QItV2oqaE5KMIiXAvDWBDPrD85e58Qlz1c1kI/J0NcqbEG88CoTwJrYe7ntUCVfeUl2UJKbWgA==
+
+"@types/d3-drag@*":
+ version "3.0.7"
+ resolved "https://registry.yarnpkg.com/@types/d3-drag/-/d3-drag-3.0.7.tgz#b13aba8b2442b4068c9a9e6d1d82f8bcea77fc02"
+ integrity sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==
+ dependencies:
+ "@types/d3-selection" "*"
+
+"@types/d3-dsv@*":
+ version "3.0.7"
+ resolved "https://registry.yarnpkg.com/@types/d3-dsv/-/d3-dsv-3.0.7.tgz#0a351f996dc99b37f4fa58b492c2d1c04e3dac17"
+ integrity sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==
+
+"@types/d3-ease@*":
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/@types/d3-ease/-/d3-ease-3.0.2.tgz#e28db1bfbfa617076f7770dd1d9a48eaa3b6c51b"
+ integrity sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==
+
+"@types/d3-fetch@*":
+ version "3.0.7"
+ resolved "https://registry.yarnpkg.com/@types/d3-fetch/-/d3-fetch-3.0.7.tgz#c04a2b4f23181aa376f30af0283dbc7b3b569980"
+ integrity sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==
+ dependencies:
+ "@types/d3-dsv" "*"
+
+"@types/d3-force@*":
+ version "3.0.10"
+ resolved "https://registry.yarnpkg.com/@types/d3-force/-/d3-force-3.0.10.tgz#6dc8fc6e1f35704f3b057090beeeb7ac674bff1a"
+ integrity sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==
+
+"@types/d3-format@*":
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/@types/d3-format/-/d3-format-3.0.4.tgz#b1e4465644ddb3fdf3a263febb240a6cd616de90"
+ integrity sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==
+
+"@types/d3-geo@*":
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/@types/d3-geo/-/d3-geo-3.1.0.tgz#b9e56a079449174f0a2c8684a9a4df3f60522440"
+ integrity sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==
+ dependencies:
+ "@types/geojson" "*"
+
+"@types/d3-hierarchy@*":
+ version "3.1.7"
+ resolved "https://registry.yarnpkg.com/@types/d3-hierarchy/-/d3-hierarchy-3.1.7.tgz#6023fb3b2d463229f2d680f9ac4b47466f71f17b"
+ integrity sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==
+
+"@types/d3-interpolate@*":
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz#412b90e84870285f2ff8a846c6eb60344f12a41c"
+ integrity sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==
+ dependencies:
+ "@types/d3-color" "*"
+
+"@types/d3-path@*":
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/@types/d3-path/-/d3-path-3.1.1.tgz#f632b380c3aca1dba8e34aa049bcd6a4af23df8a"
+ integrity sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==
+
+"@types/d3-polygon@*":
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/@types/d3-polygon/-/d3-polygon-3.0.2.tgz#dfae54a6d35d19e76ac9565bcb32a8e54693189c"
+ integrity sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==
+
+"@types/d3-quadtree@*":
+ version "3.0.6"
+ resolved "https://registry.yarnpkg.com/@types/d3-quadtree/-/d3-quadtree-3.0.6.tgz#d4740b0fe35b1c58b66e1488f4e7ed02952f570f"
+ integrity sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==
+
+"@types/d3-random@*":
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/@types/d3-random/-/d3-random-3.0.3.tgz#ed995c71ecb15e0cd31e22d9d5d23942e3300cfb"
+ integrity sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==
+
+"@types/d3-scale-chromatic@*", "@types/d3-scale-chromatic@^3.0.0":
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz#dc6d4f9a98376f18ea50bad6c39537f1b5463c39"
+ integrity sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ==
+
+"@types/d3-scale@*", "@types/d3-scale@^4.0.3":
+ version "4.0.9"
+ resolved "https://registry.yarnpkg.com/@types/d3-scale/-/d3-scale-4.0.9.tgz#57a2f707242e6fe1de81ad7bfcccaaf606179afb"
+ integrity sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==
+ dependencies:
+ "@types/d3-time" "*"
+
+"@types/d3-selection@*":
+ version "3.0.11"
+ resolved "https://registry.yarnpkg.com/@types/d3-selection/-/d3-selection-3.0.11.tgz#bd7a45fc0a8c3167a631675e61bc2ca2b058d4a3"
+ integrity sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==
+
+"@types/d3-shape@*":
+ version "3.1.7"
+ resolved "https://registry.yarnpkg.com/@types/d3-shape/-/d3-shape-3.1.7.tgz#2b7b423dc2dfe69c8c93596e673e37443348c555"
+ integrity sha512-VLvUQ33C+3J+8p+Daf+nYSOsjB4GXp19/S/aGo60m9h1v6XaxjiT82lKVWJCfzhtuZ3yD7i/TPeC/fuKLLOSmg==
+ dependencies:
+ "@types/d3-path" "*"
+
+"@types/d3-time-format@*":
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/@types/d3-time-format/-/d3-time-format-4.0.3.tgz#d6bc1e6b6a7db69cccfbbdd4c34b70632d9e9db2"
+ integrity sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==
+
+"@types/d3-time@*":
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/@types/d3-time/-/d3-time-3.0.4.tgz#8472feecd639691450dd8000eb33edd444e1323f"
+ integrity sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==
+
+"@types/d3-timer@*":
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/@types/d3-timer/-/d3-timer-3.0.2.tgz#70bbda77dc23aa727413e22e214afa3f0e852f70"
+ integrity sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==
+
+"@types/d3-transition@*":
+ version "3.0.9"
+ resolved "https://registry.yarnpkg.com/@types/d3-transition/-/d3-transition-3.0.9.tgz#1136bc57e9ddb3c390dccc9b5ff3b7d2b8d94706"
+ integrity sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==
+ dependencies:
+ "@types/d3-selection" "*"
+
+"@types/d3-zoom@*":
+ version "3.0.8"
+ resolved "https://registry.yarnpkg.com/@types/d3-zoom/-/d3-zoom-3.0.8.tgz#dccb32d1c56b1e1c6e0f1180d994896f038bc40b"
+ integrity sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==
+ dependencies:
+ "@types/d3-interpolate" "*"
+ "@types/d3-selection" "*"
+
+"@types/d3@^7.4.3":
+ version "7.4.3"
+ resolved "https://registry.yarnpkg.com/@types/d3/-/d3-7.4.3.tgz#d4550a85d08f4978faf0a4c36b848c61eaac07e2"
+ integrity sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==
+ dependencies:
+ "@types/d3-array" "*"
+ "@types/d3-axis" "*"
+ "@types/d3-brush" "*"
+ "@types/d3-chord" "*"
+ "@types/d3-color" "*"
+ "@types/d3-contour" "*"
+ "@types/d3-delaunay" "*"
+ "@types/d3-dispatch" "*"
+ "@types/d3-drag" "*"
+ "@types/d3-dsv" "*"
+ "@types/d3-ease" "*"
+ "@types/d3-fetch" "*"
+ "@types/d3-force" "*"
+ "@types/d3-format" "*"
+ "@types/d3-geo" "*"
+ "@types/d3-hierarchy" "*"
+ "@types/d3-interpolate" "*"
+ "@types/d3-path" "*"
+ "@types/d3-polygon" "*"
+ "@types/d3-quadtree" "*"
+ "@types/d3-random" "*"
+ "@types/d3-scale" "*"
+ "@types/d3-scale-chromatic" "*"
+ "@types/d3-selection" "*"
+ "@types/d3-shape" "*"
+ "@types/d3-time" "*"
+ "@types/d3-time-format" "*"
+ "@types/d3-timer" "*"
+ "@types/d3-transition" "*"
+ "@types/d3-zoom" "*"
+
+"@types/debug@^4.0.0":
+ version "4.1.12"
+ resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.12.tgz#a155f21690871953410df4b6b6f53187f0500917"
+ integrity sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==
+ dependencies:
+ "@types/ms" "*"
+
+"@types/estree-jsx@^1.0.0":
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/@types/estree-jsx/-/estree-jsx-1.0.5.tgz#858a88ea20f34fe65111f005a689fa1ebf70dc18"
+ integrity sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==
+ dependencies:
+ "@types/estree" "*"
+
+"@types/estree@*", "@types/estree@1.0.8", "@types/estree@^1.0.0", "@types/estree@^1.0.6":
+ version "1.0.8"
+ resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.8.tgz#958b91c991b1867ced318bedea0e215ee050726e"
+ integrity sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==
+
+"@types/fined@*":
+ version "1.1.5"
+ resolved "https://registry.yarnpkg.com/@types/fined/-/fined-1.1.5.tgz#504b87a0de8813e06e7d226f34c1cefb70d9afb0"
+ integrity sha512-2N93vadEGDFhASTIRbizbl4bNqpMOId5zZfj6hHqYZfEzEfO9onnU4Im8xvzo8uudySDveDHBOOSlTWf38ErfQ==
+
+"@types/geojson@*":
+ version "7946.0.16"
+ resolved "https://registry.yarnpkg.com/@types/geojson/-/geojson-7946.0.16.tgz#8ebe53d69efada7044454e3305c19017d97ced2a"
+ integrity sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==
+
+"@types/har-format@^1.2.10", "@types/har-format@^1.2.15":
+ version "1.2.16"
+ resolved "https://registry.yarnpkg.com/@types/har-format/-/har-format-1.2.16.tgz#b71ede8681400cc08b3685f061c31e416cf94944"
+ integrity sha512-fluxdy7ryD3MV6h8pTfTYpy/xQzCFC7m89nOH9y94cNqJ1mDIDPut7MnRHI3F6qRmh/cT2fUjG1MLdCNb4hE9A==
+
+"@types/hast@^2.0.0":
+ version "2.3.10"
+ resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.10.tgz#5c9d9e0b304bbb8879b857225c5ebab2d81d7643"
+ integrity sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==
+ dependencies:
+ "@types/unist" "^2"
+
+"@types/hast@^3.0.0":
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/@types/hast/-/hast-3.0.4.tgz#1d6b39993b82cea6ad783945b0508c25903e15aa"
+ integrity sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==
+ dependencies:
+ "@types/unist" "*"
+
+"@types/inquirer@^9.0.9":
+ version "9.0.9"
+ resolved "https://registry.yarnpkg.com/@types/inquirer/-/inquirer-9.0.9.tgz#c659dffbb8c2dab112324c7ae19b3303a972a96d"
+ integrity sha512-/mWx5136gts2Z2e5izdoRCo46lPp5TMs9R15GTSsgg/XnZyxDWVqoVU3R9lWnccKpqwsJLvRoxbCjoJtZB7DSw==
+ dependencies:
+ "@types/through" "*"
+ rxjs "^7.2.0"
+
+"@types/js-yaml@^4.0.0":
+ version "4.0.9"
+ resolved "https://registry.yarnpkg.com/@types/js-yaml/-/js-yaml-4.0.9.tgz#cd82382c4f902fed9691a2ed79ec68c5898af4c2"
+ integrity sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==
+
+"@types/json5@^0.0.29":
+ version "0.0.29"
+ resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
+ integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==
+
+"@types/katex@^0.16.0":
+ version "0.16.7"
+ resolved "https://registry.yarnpkg.com/@types/katex/-/katex-0.16.7.tgz#03ab680ab4fa4fbc6cb46ecf987ecad5d8019868"
+ integrity sha512-HMwFiRujE5PjrgwHQ25+bsLJgowjGjm5Z8FVSf0N6PwgJrwxH0QxzHYDcKsTfV3wva0vzrpqMTJS2jXPr5BMEQ==
+
+"@types/liftoff@^4.0.3":
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/@types/liftoff/-/liftoff-4.0.3.tgz#ebac04d98b65e0aeff7cc31655cb6d060a3d8146"
+ integrity sha512-UgbL2kR5pLrWICvr8+fuSg0u43LY250q7ZMkC+XKC3E+rs/YBDEnQIzsnhU5dYsLlwMi3R75UvCL87pObP1sxw==
+ dependencies:
+ "@types/fined" "*"
+ "@types/node" "*"
+
+"@types/mdast@^3.0.0":
+ version "3.0.15"
+ resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.15.tgz#49c524a263f30ffa28b71ae282f813ed000ab9f5"
+ integrity sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==
+ dependencies:
+ "@types/unist" "^2"
+
+"@types/mdast@^4.0.0":
+ version "4.0.4"
+ resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-4.0.4.tgz#7ccf72edd2f1aa7dd3437e180c64373585804dd6"
+ integrity sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==
+ dependencies:
+ "@types/unist" "*"
+
+"@types/mdx@^2.0.0":
+ version "2.0.13"
+ resolved "https://registry.yarnpkg.com/@types/mdx/-/mdx-2.0.13.tgz#68f6877043d377092890ff5b298152b0a21671bd"
+ integrity sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==
+
+"@types/ms@*":
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/@types/ms/-/ms-2.1.0.tgz#052aa67a48eccc4309d7f0191b7e41434b90bb78"
+ integrity sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==
+
+"@types/node@*":
+ version "24.5.2"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-24.5.2.tgz#52ceb83f50fe0fcfdfbd2a9fab6db2e9e7ef6446"
+ integrity sha512-FYxk1I7wPv3K2XBaoyH2cTnocQEu8AOZ60hPbsyukMPLv5/5qr7V1i8PLHdl6Zf87I+xZXFvPCXYjiTFq+YSDQ==
+ dependencies:
+ undici-types "~7.12.0"
+
+"@types/node@^20", "@types/node@^20.11.26":
+ version "20.19.17"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-20.19.17.tgz#41b52697373aef8a43b3b92f33b43f329b2d674b"
+ integrity sha512-gfehUI8N1z92kygssiuWvLiwcbOB3IRktR6hTDgJlXMYh5OvkPSRmgfoBUmfZt+vhwJtX7v1Yw4KvvAf7c5QKQ==
+ dependencies:
+ undici-types "~6.21.0"
+
+"@types/prop-types@*":
+ version "15.7.15"
+ resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.15.tgz#e6e5a86d602beaca71ce5163fadf5f95d70931c7"
+ integrity sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==
+
+"@types/react-dom@^18":
+ version "18.3.7"
+ resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.3.7.tgz#b89ddf2cd83b4feafcc4e2ea41afdfb95a0d194f"
+ integrity sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==
+
+"@types/react@>=16":
+ version "19.1.13"
+ resolved "https://registry.yarnpkg.com/@types/react/-/react-19.1.13.tgz#fc650ffa680d739a25a530f5d7ebe00cdd771883"
+ integrity sha512-hHkbU/eoO3EG5/MZkuFSKmYqPbSVk5byPFa3e7y/8TybHiLMACgI8seVYlicwk7H5K/rI2px9xrQp/C+AUDTiQ==
+ dependencies:
+ csstype "^3.0.2"
+
+"@types/react@^18":
+ version "18.3.24"
+ resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.24.tgz#f6a5a4c613242dfe3af0dcee2b4ec47b92d9b6bd"
+ integrity sha512-0dLEBsA1kI3OezMBF8nSsb7Nk19ZnsyE1LLhB8r27KbgU5H4pvuqZLdtE+aUkJVoXgTVuA+iLIwmZ0TuK4tx6A==
+ dependencies:
+ "@types/prop-types" "*"
+ csstype "^3.0.2"
+
+"@types/through@*":
+ version "0.0.33"
+ resolved "https://registry.yarnpkg.com/@types/through/-/through-0.0.33.tgz#14ebf599320e1c7851e7d598149af183c6b9ea56"
+ integrity sha512-HsJ+z3QuETzP3cswwtzt2vEIiHBk/dCcHGhbmG5X3ecnwFD/lPrMpliGXxSCg03L9AhrdwA4Oz/qfspkDW+xGQ==
+ dependencies:
+ "@types/node" "*"
+
+"@types/trusted-types@^2.0.7":
+ version "2.0.7"
+ resolved "https://registry.yarnpkg.com/@types/trusted-types/-/trusted-types-2.0.7.tgz#baccb07a970b91707df3a3e8ba6896c57ead2d11"
+ integrity sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==
+
+"@types/unist@*", "@types/unist@^3.0.0":
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/@types/unist/-/unist-3.0.3.tgz#acaab0f919ce69cce629c2d4ed2eb4adc1b6c20c"
+ integrity sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==
+
+"@types/unist@^2", "@types/unist@^2.0.0":
+ version "2.0.11"
+ resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.11.tgz#11af57b127e32487774841f7a4e54eab166d03c4"
+ integrity sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==
+
+"@types/web-bluetooth@^0.0.20":
+ version "0.0.20"
+ resolved "https://registry.yarnpkg.com/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz#f066abfcd1cbe66267cdbbf0de010d8a41b41597"
+ integrity sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==
+
+"@typescript-eslint/parser@^5.4.2 || ^6.0.0":
+ version "6.21.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.21.0.tgz#af8fcf66feee2edc86bc5d1cf45e33b0630bf35b"
+ integrity sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==
+ dependencies:
+ "@typescript-eslint/scope-manager" "6.21.0"
+ "@typescript-eslint/types" "6.21.0"
+ "@typescript-eslint/typescript-estree" "6.21.0"
+ "@typescript-eslint/visitor-keys" "6.21.0"
+ debug "^4.3.4"
+
+"@typescript-eslint/scope-manager@6.21.0":
+ version "6.21.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz#ea8a9bfc8f1504a6ac5d59a6df308d3a0630a2b1"
+ integrity sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==
+ dependencies:
+ "@typescript-eslint/types" "6.21.0"
+ "@typescript-eslint/visitor-keys" "6.21.0"
+
+"@typescript-eslint/types@6.21.0":
+ version "6.21.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.21.0.tgz#205724c5123a8fef7ecd195075fa6e85bac3436d"
+ integrity sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==
+
+"@typescript-eslint/typescript-estree@6.21.0":
+ version "6.21.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz#c47ae7901db3b8bddc3ecd73daff2d0895688c46"
+ integrity sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==
+ dependencies:
+ "@typescript-eslint/types" "6.21.0"
+ "@typescript-eslint/visitor-keys" "6.21.0"
+ debug "^4.3.4"
+ globby "^11.1.0"
+ is-glob "^4.0.3"
+ minimatch "9.0.3"
+ semver "^7.5.4"
+ ts-api-utils "^1.0.1"
+
+"@typescript-eslint/visitor-keys@6.21.0":
+ version "6.21.0"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz#87a99d077aa507e20e238b11d56cc26ade45fe47"
+ integrity sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==
+ dependencies:
+ "@typescript-eslint/types" "6.21.0"
+ eslint-visitor-keys "^3.4.1"
+
+"@uiw/codemirror-themes@^4.21.21":
+ version "4.25.2"
+ resolved "https://registry.yarnpkg.com/@uiw/codemirror-themes/-/codemirror-themes-4.25.2.tgz#905ebd0a9d71f496b8feabae8e6c4c7abae204cd"
+ integrity sha512-WFYxW3OlCkMomXQBlQdGj1JZ011UNCa7xYdmgYqywVc4E8f5VgIzRwCZSBNVjpWGGDBOjc+Z6F65l7gttP16pg==
+ dependencies:
+ "@codemirror/language" "^6.0.0"
+ "@codemirror/state" "^6.0.0"
+ "@codemirror/view" "^6.0.0"
+
+"@ungap/structured-clone@^1.0.0", "@ungap/structured-clone@^1.2.0":
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.3.0.tgz#d06bbb384ebcf6c505fde1c3d0ed4ddffe0aaff8"
+ integrity sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==
+
+"@unhead/dom@1.11.20":
+ version "1.11.20"
+ resolved "https://registry.yarnpkg.com/@unhead/dom/-/dom-1.11.20.tgz#b777f439e1c5f80ebcceb89aa45c45e877013c62"
+ integrity sha512-jgfGYdOH+xHJF/j8gudjsYu3oIjFyXhCWcgKaw3vQnT616gSqyqnGQGOItL+BQtQZACKNISwIfx5PuOtztMKLA==
+ dependencies:
+ "@unhead/schema" "1.11.20"
+ "@unhead/shared" "1.11.20"
+
+"@unhead/schema@1.11.20", "@unhead/schema@^1.9.5":
+ version "1.11.20"
+ resolved "https://registry.yarnpkg.com/@unhead/schema/-/schema-1.11.20.tgz#e4341832a203b990380df906391e9039501257fa"
+ integrity sha512-0zWykKAaJdm+/Y7yi/Yds20PrUK7XabLe9c3IRcjnwYmSWY6z0Cr19VIs3ozCj8P+GhR+/TI2mwtGlueCEYouA==
+ dependencies:
+ hookable "^5.5.3"
+ zhead "^2.2.4"
+
+"@unhead/shared@1.11.20":
+ version "1.11.20"
+ resolved "https://registry.yarnpkg.com/@unhead/shared/-/shared-1.11.20.tgz#593926bff62d88cda9a19b9d41d2bcdb3ed08da4"
+ integrity sha512-1MOrBkGgkUXS+sOKz/DBh4U20DNoITlJwpmvSInxEUNhghSNb56S0RnaHRq0iHkhrO/cDgz2zvfdlRpoPLGI3w==
+ dependencies:
+ "@unhead/schema" "1.11.20"
+ packrup "^0.1.2"
+
+"@unrs/resolver-binding-android-arm-eabi@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.11.1.tgz#9f5b04503088e6a354295e8ea8fe3cb99e43af81"
+ integrity sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==
+
+"@unrs/resolver-binding-android-arm64@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.11.1.tgz#7414885431bd7178b989aedc4d25cccb3865bc9f"
+ integrity sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==
+
+"@unrs/resolver-binding-darwin-arm64@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.11.1.tgz#b4a8556f42171fb9c9f7bac8235045e82aa0cbdf"
+ integrity sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==
+
+"@unrs/resolver-binding-darwin-x64@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.11.1.tgz#fd4d81257b13f4d1a083890a6a17c00de571f0dc"
+ integrity sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==
+
+"@unrs/resolver-binding-freebsd-x64@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.11.1.tgz#d2513084d0f37c407757e22f32bd924a78cfd99b"
+ integrity sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==
+
+"@unrs/resolver-binding-linux-arm-gnueabihf@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.11.1.tgz#844d2605d057488d77fab09705f2866b86164e0a"
+ integrity sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==
+
+"@unrs/resolver-binding-linux-arm-musleabihf@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.11.1.tgz#204892995cefb6bd1d017d52d097193bc61ddad3"
+ integrity sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==
+
+"@unrs/resolver-binding-linux-arm64-gnu@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.11.1.tgz#023eb0c3aac46066a10be7a3f362e7b34f3bdf9d"
+ integrity sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==
+
+"@unrs/resolver-binding-linux-arm64-musl@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.11.1.tgz#9e6f9abb06424e3140a60ac996139786f5d99be0"
+ integrity sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==
+
+"@unrs/resolver-binding-linux-ppc64-gnu@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.11.1.tgz#b111417f17c9d1b02efbec8e08398f0c5527bb44"
+ integrity sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==
+
+"@unrs/resolver-binding-linux-riscv64-gnu@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.11.1.tgz#92ffbf02748af3e99873945c9a8a5ead01d508a9"
+ integrity sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==
+
+"@unrs/resolver-binding-linux-riscv64-musl@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.11.1.tgz#0bec6f1258fc390e6b305e9ff44256cb207de165"
+ integrity sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==
+
+"@unrs/resolver-binding-linux-s390x-gnu@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.11.1.tgz#577843a084c5952f5906770633ccfb89dac9bc94"
+ integrity sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==
+
+"@unrs/resolver-binding-linux-x64-gnu@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.11.1.tgz#36fb318eebdd690f6da32ac5e0499a76fa881935"
+ integrity sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==
+
+"@unrs/resolver-binding-linux-x64-musl@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.11.1.tgz#bfb9af75f783f98f6a22c4244214efe4df1853d6"
+ integrity sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==
+
+"@unrs/resolver-binding-wasm32-wasi@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.11.1.tgz#752c359dd875684b27429500d88226d7cc72f71d"
+ integrity sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==
+ dependencies:
+ "@napi-rs/wasm-runtime" "^0.2.11"
+
+"@unrs/resolver-binding-win32-arm64-msvc@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.11.1.tgz#ce5735e600e4c2fbb409cd051b3b7da4a399af35"
+ integrity sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==
+
+"@unrs/resolver-binding-win32-ia32-msvc@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.11.1.tgz#72fc57bc7c64ec5c3de0d64ee0d1810317bc60a6"
+ integrity sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==
+
+"@unrs/resolver-binding-win32-x64-msvc@1.11.1":
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.11.1.tgz#538b1e103bf8d9864e7b85cc96fa8d6fb6c40777"
+ integrity sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==
+
+"@vcarl/remark-headings@^0.1.0":
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/@vcarl/remark-headings/-/remark-headings-0.1.0.tgz#b5831c3f16d8b2570872f554ba509437ec507a1e"
+ integrity sha512-ffQxJUcapJ9Bk+fiGN49YJ9RaYMibrSTSezB1Fcrtu+0YSZxA3bsaLlIv1u/4sjPIeW/BKrs4xtMT3l3P9Ba5Q==
+ dependencies:
+ mdast-util-to-string "^3.1.0"
+ unist-util-visit "^4.0.0"
+
+"@vitest/expect@2.0.5":
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/@vitest/expect/-/expect-2.0.5.tgz#f3745a6a2c18acbea4d39f5935e913f40d26fa86"
+ integrity sha512-yHZtwuP7JZivj65Gxoi8upUN2OzHTi3zVfjwdpu2WrvCZPLwsJ2Ey5ILIPccoW23dd/zQBlJ4/dhi7DWNyXCpA==
+ dependencies:
+ "@vitest/spy" "2.0.5"
+ "@vitest/utils" "2.0.5"
+ chai "^5.1.1"
+ tinyrainbow "^1.2.0"
+
+"@vitest/pretty-format@2.0.5":
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/@vitest/pretty-format/-/pretty-format-2.0.5.tgz#91d2e6d3a7235c742e1a6cc50e7786e2f2979b1e"
+ integrity sha512-h8k+1oWHfwTkyTkb9egzwNMfJAEx4veaPSnMeKbVSjp4euqGSbQlm5+6VHwTr7u4FJslVVsUG5nopCaAYdOmSQ==
+ dependencies:
+ tinyrainbow "^1.2.0"
+
+"@vitest/pretty-format@2.1.9":
+ version "2.1.9"
+ resolved "https://registry.yarnpkg.com/@vitest/pretty-format/-/pretty-format-2.1.9.tgz#434ff2f7611689f9ce70cd7d567eceb883653fdf"
+ integrity sha512-KhRIdGV2U9HOUzxfiHmY8IFHTdqtOhIzCpd8WRdJiE7D/HUcZVD0EgQCVjm+Q9gkUXWgBvMmTtZgIG48wq7sOQ==
+ dependencies:
+ tinyrainbow "^1.2.0"
+
+"@vitest/spy@2.0.5":
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/@vitest/spy/-/spy-2.0.5.tgz#590fc07df84a78b8e9dd976ec2090920084a2b9f"
+ integrity sha512-c/jdthAhvJdpfVuaexSrnawxZz6pywlTPe84LUB2m/4t3rl2fTo9NFGBG4oWgaD+FTgDDV8hJ/nibT7IfH3JfA==
+ dependencies:
+ tinyspy "^3.0.0"
+
+"@vitest/utils@2.0.5":
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/@vitest/utils/-/utils-2.0.5.tgz#6f8307a4b6bc6ceb9270007f73c67c915944e926"
+ integrity sha512-d8HKbqIcya+GR67mkZbrzhS5kKhtp8dQLcmRZLGTscGVg7yImT82cIrhtn2L8+VujWcy6KZweApgNmPsTAO/UQ==
+ dependencies:
+ "@vitest/pretty-format" "2.0.5"
+ estree-walker "^3.0.3"
+ loupe "^3.1.1"
+ tinyrainbow "^1.2.0"
+
+"@vitest/utils@^2.1.1":
+ version "2.1.9"
+ resolved "https://registry.yarnpkg.com/@vitest/utils/-/utils-2.1.9.tgz#4f2486de8a54acf7ecbf2c5c24ad7994a680a6c1"
+ integrity sha512-v0psaMSkNJ3A2NMrUEHFRzJtDPFn+/VWZ5WxImB21T9fjucJRmS7xCS3ppEnARb9y11OAzaD+P2Ps+b+BGX5iQ==
+ dependencies:
+ "@vitest/pretty-format" "2.1.9"
+ loupe "^3.1.2"
+ tinyrainbow "^1.2.0"
+
+"@vueuse/core@^10.9.0":
+ version "10.11.1"
+ resolved "https://registry.yarnpkg.com/@vueuse/core/-/core-10.11.1.tgz#15d2c0b6448d2212235b23a7ba29c27173e0c2c6"
+ integrity sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==
+ dependencies:
+ "@types/web-bluetooth" "^0.0.20"
+ "@vueuse/metadata" "10.11.1"
+ "@vueuse/shared" "10.11.1"
+ vue-demi ">=0.14.8"
+
+"@vueuse/metadata@10.11.1":
+ version "10.11.1"
+ resolved "https://registry.yarnpkg.com/@vueuse/metadata/-/metadata-10.11.1.tgz#209db7bb5915aa172a87510b6de2ca01cadbd2a7"
+ integrity sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==
+
+"@vueuse/shared@10.11.1":
+ version "10.11.1"
+ resolved "https://registry.yarnpkg.com/@vueuse/shared/-/shared-10.11.1.tgz#62b84e3118ae6e1f3ff38f4fbe71b0c5d0f10938"
+ integrity sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==
+ dependencies:
+ vue-demi ">=0.14.8"
+
+acorn-jsx@^5.0.0, acorn-jsx@^5.3.2:
+ version "5.3.2"
+ resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
+ integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
+
+acorn@^8.0.0, acorn@^8.15.0, acorn@^8.9.0:
+ version "8.15.0"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.15.0.tgz#a360898bc415edaac46c8241f6383975b930b816"
+ integrity sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==
+
+ajv-draft-04@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz#3b64761b268ba0b9e668f0b41ba53fce0ad77fc8"
+ integrity sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==
+
+ajv-formats@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520"
+ integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==
+ dependencies:
+ ajv "^8.0.0"
+
+ajv@^6.12.4:
+ version "6.12.6"
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
+ integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
+ dependencies:
+ fast-deep-equal "^3.1.1"
+ fast-json-stable-stringify "^2.0.0"
+ json-schema-traverse "^0.4.1"
+ uri-js "^4.2.2"
+
+ajv@^8.0.0, ajv@^8.12.0:
+ version "8.17.1"
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.17.1.tgz#37d9a5c776af6bc92d7f4f9510eba4c0a60d11a6"
+ integrity sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==
+ dependencies:
+ fast-deep-equal "^3.1.3"
+ fast-uri "^3.0.1"
+ json-schema-traverse "^1.0.0"
+ require-from-string "^2.0.2"
+
+ansi-escapes@^4.3.2:
+ version "4.3.2"
+ resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"
+ integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==
+ dependencies:
+ type-fest "^0.21.3"
+
+ansi-regex@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
+ integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
+
+ansi-regex@^6.0.1:
+ version "6.2.2"
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.2.2.tgz#60216eea464d864597ce2832000738a0589650c1"
+ integrity sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==
+
+ansi-sequence-parser@^1.1.0:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/ansi-sequence-parser/-/ansi-sequence-parser-1.1.3.tgz#f2cefb8b681aeb72b7cd50aebc00d509eba64d4c"
+ integrity sha512-+fksAx9eG3Ab6LDnLs3ZqZa8KVJ/jYnX+D4Qe1azX+LFGFAXqynCQLOdLpNYN/l9e7l6hMWwZbrnctqr6eSQSw==
+
+ansi-styles@^3.1.0:
+ version "3.2.1"
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
+ integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
+ dependencies:
+ color-convert "^1.9.0"
+
+ansi-styles@^4.0.0, ansi-styles@^4.1.0:
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
+ integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
+ dependencies:
+ color-convert "^2.0.1"
+
+ansi-styles@^5.0.0:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b"
+ integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==
+
+ansi-styles@^6.1.0:
+ version "6.2.3"
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.3.tgz#c044d5dcc521a076413472597a1acb1f103c4041"
+ integrity sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==
+
+any-promise@^1.0.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f"
+ integrity sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==
+
+anymatch@~3.1.2:
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
+ integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
+ dependencies:
+ normalize-path "^3.0.0"
+ picomatch "^2.0.4"
+
+arch@^2.1.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11"
+ integrity sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==
+
+arg@1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/arg/-/arg-1.0.0.tgz#444d885a4e25b121640b55155ef7cd03975d6050"
+ integrity sha512-Wk7TEzl1KqvTGs/uyhmHO/3XLd3t1UeU4IstvPXVzGPM522cTjqjNZ99esCkcL52sjqjo8e8CTBcWhkxvGzoAw==
+
+arg@^5.0.2:
+ version "5.0.2"
+ resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c"
+ integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==
+
+argparse@^1.0.7:
+ version "1.0.10"
+ resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
+ integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
+ dependencies:
+ sprintf-js "~1.0.2"
+
+argparse@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
+ integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
+
+aria-hidden@^1.2.4:
+ version "1.2.6"
+ resolved "https://registry.yarnpkg.com/aria-hidden/-/aria-hidden-1.2.6.tgz#73051c9b088114c795b1ea414e9c0fff874ffc1a"
+ integrity sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==
+ dependencies:
+ tslib "^2.0.0"
+
+aria-query@5.3.0:
+ version "5.3.0"
+ resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.3.0.tgz#650c569e41ad90b51b3d7df5e5eed1c7549c103e"
+ integrity sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==
+ dependencies:
+ dequal "^2.0.3"
+
+aria-query@^5.0.0, aria-query@^5.3.2:
+ version "5.3.2"
+ resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.3.2.tgz#93f81a43480e33a338f19163a3d10a50c01dcd59"
+ integrity sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==
+
+array-buffer-byte-length@^1.0.1, array-buffer-byte-length@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz#384d12a37295aec3769ab022ad323a18a51ccf8b"
+ integrity sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==
+ dependencies:
+ call-bound "^1.0.3"
+ is-array-buffer "^3.0.5"
+
+array-each@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/array-each/-/array-each-1.0.1.tgz#a794af0c05ab1752846ee753a1f211a05ba0c44f"
+ integrity sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==
+
+array-includes@^3.1.6, array-includes@^3.1.8, array-includes@^3.1.9:
+ version "3.1.9"
+ resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.9.tgz#1f0ccaa08e90cdbc3eb433210f903ad0f17c3f3a"
+ integrity sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==
+ dependencies:
+ call-bind "^1.0.8"
+ call-bound "^1.0.4"
+ define-properties "^1.2.1"
+ es-abstract "^1.24.0"
+ es-object-atoms "^1.1.1"
+ get-intrinsic "^1.3.0"
+ is-string "^1.1.1"
+ math-intrinsics "^1.1.0"
+
+array-slice@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-1.1.0.tgz#e368ea15f89bc7069f7ffb89aec3a6c7d4ac22d4"
+ integrity sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==
+
+array-union@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
+ integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
+
+array.prototype.findlast@^1.2.5:
+ version "1.2.5"
+ resolved "https://registry.yarnpkg.com/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz#3e4fbcb30a15a7f5bf64cf2faae22d139c2e4904"
+ integrity sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==
+ dependencies:
+ call-bind "^1.0.7"
+ define-properties "^1.2.1"
+ es-abstract "^1.23.2"
+ es-errors "^1.3.0"
+ es-object-atoms "^1.0.0"
+ es-shim-unscopables "^1.0.2"
+
+array.prototype.findlastindex@^1.2.6:
+ version "1.2.6"
+ resolved "https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz#cfa1065c81dcb64e34557c9b81d012f6a421c564"
+ integrity sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==
+ dependencies:
+ call-bind "^1.0.8"
+ call-bound "^1.0.4"
+ define-properties "^1.2.1"
+ es-abstract "^1.23.9"
+ es-errors "^1.3.0"
+ es-object-atoms "^1.1.1"
+ es-shim-unscopables "^1.1.0"
+
+array.prototype.flat@^1.3.1, array.prototype.flat@^1.3.3:
+ version "1.3.3"
+ resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz#534aaf9e6e8dd79fb6b9a9917f839ef1ec63afe5"
+ integrity sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==
+ dependencies:
+ call-bind "^1.0.8"
+ define-properties "^1.2.1"
+ es-abstract "^1.23.5"
+ es-shim-unscopables "^1.0.2"
+
+array.prototype.flatmap@^1.3.2, array.prototype.flatmap@^1.3.3:
+ version "1.3.3"
+ resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz#712cc792ae70370ae40586264629e33aab5dd38b"
+ integrity sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==
+ dependencies:
+ call-bind "^1.0.8"
+ define-properties "^1.2.1"
+ es-abstract "^1.23.5"
+ es-shim-unscopables "^1.0.2"
+
+array.prototype.tosorted@^1.1.4:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz#fe954678ff53034e717ea3352a03f0b0b86f7ffc"
+ integrity sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==
+ dependencies:
+ call-bind "^1.0.7"
+ define-properties "^1.2.1"
+ es-abstract "^1.23.3"
+ es-errors "^1.3.0"
+ es-shim-unscopables "^1.0.2"
+
+arraybuffer.prototype.slice@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz#9d760d84dbdd06d0cbf92c8849615a1a7ab3183c"
+ integrity sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==
+ dependencies:
+ array-buffer-byte-length "^1.0.1"
+ call-bind "^1.0.8"
+ define-properties "^1.2.1"
+ es-abstract "^1.23.5"
+ es-errors "^1.3.0"
+ get-intrinsic "^1.2.6"
+ is-array-buffer "^3.0.4"
+
+assertion-error@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/assertion-error/-/assertion-error-2.0.1.tgz#f641a196b335690b1070bf00b6e7593fec190bf7"
+ integrity sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==
+
+ast-types-flow@^0.0.8:
+ version "0.0.8"
+ resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.8.tgz#0a85e1c92695769ac13a428bb653e7538bea27d6"
+ integrity sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==
+
+astring@^1.8.0:
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/astring/-/astring-1.9.0.tgz#cc73e6062a7eb03e7d19c22d8b0b3451fd9bfeef"
+ integrity sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==
+
+astro-mermaid@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/astro-mermaid/-/astro-mermaid-1.0.4.tgz#5b79db776bb3abfd864ccc719f711f0c2c7e5a6f"
+ integrity sha512-2M4bVjqLpDB2EZ4EfD6Utzs7VEEORmlt5hNZcMK54IcKWzflohKvowCzg79RHoAdu30W8a4aECAExH8mF7wG4w==
+ dependencies:
+ mdast-util-to-string "^4.0.0"
+ unist-util-visit "^5.0.0"
+
+async-function@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/async-function/-/async-function-1.0.0.tgz#509c9fca60eaf85034c6829838188e4e4c8ffb2b"
+ integrity sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==
+
+asynckit@^0.4.0:
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
+ integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==
+
+autoprefixer@^10.0.1:
+ version "10.4.21"
+ resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.21.tgz#77189468e7a8ad1d9a37fbc08efc9f480cf0a95d"
+ integrity sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==
+ dependencies:
+ browserslist "^4.24.4"
+ caniuse-lite "^1.0.30001702"
+ fraction.js "^4.3.7"
+ normalize-range "^0.1.2"
+ picocolors "^1.1.1"
+ postcss-value-parser "^4.2.0"
+
+available-typed-arrays@^1.0.7:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz#a5cc375d6a03c2efc87a553f3e0b1522def14846"
+ integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==
+ dependencies:
+ possible-typed-array-names "^1.0.0"
+
+axe-core@^4.10.0:
+ version "4.10.3"
+ resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.10.3.tgz#04145965ac7894faddbac30861e5d8f11bfd14fc"
+ integrity sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg==
+
+axios@^1.6.8:
+ version "1.12.2"
+ resolved "https://registry.yarnpkg.com/axios/-/axios-1.12.2.tgz#6c307390136cf7a2278d09cec63b136dfc6e6da7"
+ integrity sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==
+ dependencies:
+ follow-redirects "^1.15.6"
+ form-data "^4.0.4"
+ proxy-from-env "^1.1.0"
+
+axobject-query@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-4.1.0.tgz#28768c76d0e3cff21bc62a9e2d0b6ac30042a1ee"
+ integrity sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==
+
+bail@^2.0.0:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/bail/-/bail-2.0.2.tgz#d26f5cd8fe5d6f832a31517b9f7c356040ba6d5d"
+ integrity sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==
+
+balanced-match@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
+ integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
+
+base64-js@^1.3.1:
+ version "1.5.1"
+ resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
+ integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
+
+baseline-browser-mapping@^2.8.3:
+ version "2.8.6"
+ resolved "https://registry.yarnpkg.com/baseline-browser-mapping/-/baseline-browser-mapping-2.8.6.tgz#c37dea4291ed8d01682f85661dbe87967028642e"
+ integrity sha512-wrH5NNqren/QMtKUEEJf7z86YjfqW/2uw3IL3/xpqZUC95SSVIFXYQeeGjL6FT/X68IROu6RMehZQS5foy2BXw==
+
+binary-extensions@^2.0.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522"
+ integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==
+
+bl@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a"
+ integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==
+ dependencies:
+ buffer "^5.5.0"
+ inherits "^2.0.4"
+ readable-stream "^3.4.0"
+
+brace-expansion@^1.1.7:
+ version "1.1.12"
+ resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.12.tgz#ab9b454466e5a8cc3a187beaad580412a9c5b843"
+ integrity sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==
+ dependencies:
+ balanced-match "^1.0.0"
+ concat-map "0.0.1"
+
+brace-expansion@^2.0.1:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.2.tgz#54fc53237a613d854c7bd37463aad17df87214e7"
+ integrity sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==
+ dependencies:
+ balanced-match "^1.0.0"
+
+braces@^3.0.3, braces@~3.0.2:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789"
+ integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==
+ dependencies:
+ fill-range "^7.1.1"
+
+browserslist@^4.24.4:
+ version "4.26.2"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.26.2.tgz#7db3b3577ec97f1140a52db4936654911078cef3"
+ integrity sha512-ECFzp6uFOSB+dcZ5BK/IBaGWssbSYBHvuMeMt3MMFyhI0Z8SqGgEkBLARgpRH3hutIgPVsALcMwbDrJqPxQ65A==
+ dependencies:
+ baseline-browser-mapping "^2.8.3"
+ caniuse-lite "^1.0.30001741"
+ electron-to-chromium "^1.5.218"
+ node-releases "^2.0.21"
+ update-browserslist-db "^1.1.3"
+
+buffer@^5.5.0:
+ version "5.7.1"
+ resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0"
+ integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==
+ dependencies:
+ base64-js "^1.3.1"
+ ieee754 "^1.1.13"
+
+busboy@1.6.0:
+ version "1.6.0"
+ resolved "https://registry.yarnpkg.com/busboy/-/busboy-1.6.0.tgz#966ea36a9502e43cdb9146962523b92f531f6893"
+ integrity sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==
+ dependencies:
+ streamsearch "^1.1.0"
+
+call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz#4b5428c222be985d79c3d82657479dbe0b59b2d6"
+ integrity sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==
+ dependencies:
+ es-errors "^1.3.0"
+ function-bind "^1.1.2"
+
+call-bind@^1.0.7, call-bind@^1.0.8:
+ version "1.0.8"
+ resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.8.tgz#0736a9660f537e3388826f440d5ec45f744eaa4c"
+ integrity sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==
+ dependencies:
+ call-bind-apply-helpers "^1.0.0"
+ es-define-property "^1.0.0"
+ get-intrinsic "^1.2.4"
+ set-function-length "^1.2.2"
+
+call-bound@^1.0.2, call-bound@^1.0.3, call-bound@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/call-bound/-/call-bound-1.0.4.tgz#238de935d2a2a692928c538c7ccfa91067fd062a"
+ integrity sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==
+ dependencies:
+ call-bind-apply-helpers "^1.0.2"
+ get-intrinsic "^1.3.0"
+
+callsites@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
+ integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
+
+camelcase-css@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5"
+ integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==
+
+caniuse-lite@^1.0.30001579, caniuse-lite@^1.0.30001702, caniuse-lite@^1.0.30001741:
+ version "1.0.30001743"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001743.tgz#50ff91a991220a1ee2df5af00650dd5c308ea7cd"
+ integrity sha512-e6Ojr7RV14Un7dz6ASD0aZDmQPT/A+eZU+nuTNfjqmRrmkmQlnTNWH0SKmqagx9PeW87UVqapSurtAXifmtdmw==
+
+ccount@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/ccount/-/ccount-2.0.1.tgz#17a3bf82302e0870d6da43a01311a8bc02a3ecf5"
+ integrity sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==
+
+chai@^5.1.1:
+ version "5.3.3"
+ resolved "https://registry.yarnpkg.com/chai/-/chai-5.3.3.tgz#dd3da955e270916a4bd3f625f4b919996ada7e06"
+ integrity sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==
+ dependencies:
+ assertion-error "^2.0.1"
+ check-error "^2.1.1"
+ deep-eql "^5.0.1"
+ loupe "^3.1.0"
+ pathval "^2.0.0"
+
+chalk@2.3.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba"
+ integrity sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==
+ dependencies:
+ ansi-styles "^3.1.0"
+ escape-string-regexp "^1.0.5"
+ supports-color "^4.0.0"
+
+chalk@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4"
+ integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==
+ dependencies:
+ ansi-styles "^4.1.0"
+ supports-color "^7.1.0"
+
+chalk@^4.0.0, chalk@^4.1.0:
+ version "4.1.2"
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
+ integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
+ dependencies:
+ ansi-styles "^4.1.0"
+ supports-color "^7.1.0"
+
+change-case@^5.4.4:
+ version "5.4.4"
+ resolved "https://registry.yarnpkg.com/change-case/-/change-case-5.4.4.tgz#0d52b507d8fb8f204343432381d1a6d7bff97a02"
+ integrity sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==
+
+character-entities-html4@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-2.1.0.tgz#1f1adb940c971a4b22ba39ddca6b618dc6e56b2b"
+ integrity sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==
+
+character-entities-legacy@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz#76bc83a90738901d7bc223a9e93759fdd560125b"
+ integrity sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==
+
+character-entities@^2.0.0:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-2.0.2.tgz#2d09c2e72cd9523076ccb21157dff66ad43fcc22"
+ integrity sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==
+
+character-reference-invalid@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz#85c66b041e43b47210faf401278abf808ac45cb9"
+ integrity sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==
+
+chardet@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/chardet/-/chardet-2.1.0.tgz#1007f441a1ae9f9199a4a67f6e978fb0aa9aa3fe"
+ integrity sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==
+
+check-error@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/check-error/-/check-error-2.1.1.tgz#87eb876ae71ee388fa0471fe423f494be1d96ccc"
+ integrity sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==
+
+chevrotain-allstar@~0.3.0:
+ version "0.3.1"
+ resolved "https://registry.yarnpkg.com/chevrotain-allstar/-/chevrotain-allstar-0.3.1.tgz#b7412755f5d83cc139ab65810cdb00d8db40e6ca"
+ integrity sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw==
+ dependencies:
+ lodash-es "^4.17.21"
+
+chevrotain@~11.0.3:
+ version "11.0.3"
+ resolved "https://registry.yarnpkg.com/chevrotain/-/chevrotain-11.0.3.tgz#88ffc1fb4b5739c715807eaeedbbf200e202fc1b"
+ integrity sha512-ci2iJH6LeIkvP9eJW6gpueU8cnZhv85ELY8w8WiFtNjMHA5ad6pQLaJo9mEly/9qUyCpvqX8/POVUTf18/HFdw==
+ dependencies:
+ "@chevrotain/cst-dts-gen" "11.0.3"
+ "@chevrotain/gast" "11.0.3"
+ "@chevrotain/regexp-to-ast" "11.0.3"
+ "@chevrotain/types" "11.0.3"
+ "@chevrotain/utils" "11.0.3"
+ lodash-es "4.17.21"
+
+chokidar@^3.6.0:
+ version "3.6.0"
+ resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.6.0.tgz#197c6cc669ef2a8dc5e7b4d97ee4e092c3eb0d5b"
+ integrity sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==
+ dependencies:
+ anymatch "~3.1.2"
+ braces "~3.0.2"
+ glob-parent "~5.1.2"
+ is-binary-path "~2.1.0"
+ is-glob "~4.0.1"
+ normalize-path "~3.0.0"
+ readdirp "~3.6.0"
+ optionalDependencies:
+ fsevents "~2.3.2"
+
+chokidar@^4.0.0:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-4.0.3.tgz#7be37a4c03c9aee1ecfe862a4a23b2c70c205d30"
+ integrity sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==
+ dependencies:
+ readdirp "^4.0.1"
+
+class-variance-authority@^0.7.1:
+ version "0.7.1"
+ resolved "https://registry.yarnpkg.com/class-variance-authority/-/class-variance-authority-0.7.1.tgz#4008a798a0e4553a781a57ac5177c9fb5d043787"
+ integrity sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==
+ dependencies:
+ clsx "^2.1.1"
+
+classnames@^2.3.2:
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.5.1.tgz#ba774c614be0f016da105c858e7159eae8e7687b"
+ integrity sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow==
+
+cli-cursor@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307"
+ integrity sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==
+ dependencies:
+ restore-cursor "^3.1.0"
+
+cli-spinners@^2.5.0:
+ version "2.9.2"
+ resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz#1773a8f4b9c4d6ac31563df53b3fc1d79462fe41"
+ integrity sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==
+
+cli-width@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-4.1.0.tgz#42daac41d3c254ef38ad8ac037672130173691c5"
+ integrity sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==
+
+client-only@0.0.1, client-only@^0.0.1:
+ version "0.0.1"
+ resolved "https://registry.yarnpkg.com/client-only/-/client-only-0.0.1.tgz#38bba5d403c41ab150bff64a95c85013cf73bca1"
+ integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==
+
+clipboardy@1.2.2:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/clipboardy/-/clipboardy-1.2.2.tgz#2ce320b9ed9be1514f79878b53ff9765420903e2"
+ integrity sha512-16KrBOV7bHmHdxcQiCvfUFYVFyEah4FI8vYT1Fr7CGSA4G+xBWMEfUEQJS1hxeHGtI9ju1Bzs9uXSbj5HZKArw==
+ dependencies:
+ arch "^2.1.0"
+ execa "^0.8.0"
+
+clone@^1.0.2:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
+ integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==
+
+clsx@2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/clsx/-/clsx-2.0.0.tgz#12658f3fd98fafe62075595a5c30e43d18f3d00b"
+ integrity sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==
+
+clsx@^2.0.0, clsx@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/clsx/-/clsx-2.1.1.tgz#eed397c9fd8bd882bfb18deab7102049a2f32999"
+ integrity sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==
+
+codemirror@^6.0.0:
+ version "6.0.2"
+ resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-6.0.2.tgz#4d3fea1ad60b6753f97ca835f2f48c6936a8946e"
+ integrity sha512-VhydHotNW5w1UGK0Qj96BwSk/Zqbp9WbnyK2W/eVMv4QyF41INRGpjUhFJY7/uDNuudSc33a/PKr4iDqRduvHw==
+ dependencies:
+ "@codemirror/autocomplete" "^6.0.0"
+ "@codemirror/commands" "^6.0.0"
+ "@codemirror/language" "^6.0.0"
+ "@codemirror/lint" "^6.0.0"
+ "@codemirror/search" "^6.0.0"
+ "@codemirror/state" "^6.0.0"
+ "@codemirror/view" "^6.0.0"
+
+color-convert@^1.9.0:
+ version "1.9.3"
+ resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
+ integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
+ dependencies:
+ color-name "1.1.3"
+
+color-convert@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
+ integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
+ dependencies:
+ color-name "~1.1.4"
+
+color-name@1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
+ integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
+
+color-name@^1.0.0, color-name@~1.1.4:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
+ integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
+
+color-string@^1.9.0:
+ version "1.9.1"
+ resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.9.1.tgz#4467f9146f036f855b764dfb5bf8582bf342c7a4"
+ integrity sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==
+ dependencies:
+ color-name "^1.0.0"
+ simple-swizzle "^0.2.2"
+
+color@^4.2.3:
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/color/-/color-4.2.3.tgz#d781ecb5e57224ee43ea9627560107c0e0c6463a"
+ integrity sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==
+ dependencies:
+ color-convert "^2.0.1"
+ color-string "^1.9.0"
+
+combined-stream@^1.0.8:
+ version "1.0.8"
+ resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
+ integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
+ dependencies:
+ delayed-stream "~1.0.0"
+
+comma-separated-tokens@^2.0.0:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz#4e89c9458acb61bc8fef19f4529973b2392839ee"
+ integrity sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==
+
+commander@7:
+ version "7.2.0"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7"
+ integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
+
+commander@^4.0.0:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
+ integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==
+
+commander@^8.3.0:
+ version "8.3.0"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-8.3.0.tgz#4837ea1b2da67b9c616a67afbb0fafee567bca66"
+ integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==
+
+compute-scroll-into-view@^3.0.2:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/compute-scroll-into-view/-/compute-scroll-into-view-3.1.1.tgz#02c3386ec531fb6a9881967388e53e8564f3e9aa"
+ integrity sha512-VRhuHOLoKYOy4UbilLbUzbYg93XLjv2PncJC50EuTWPA3gaja1UjBsUP/D/9/juV3vQFr6XBEzn9KCAHdUvOHw==
+
+concat-map@0.0.1:
+ version "0.0.1"
+ resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
+ integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
+
+confbox@^0.1.8:
+ version "0.1.8"
+ resolved "https://registry.yarnpkg.com/confbox/-/confbox-0.1.8.tgz#820d73d3b3c82d9bd910652c5d4d599ef8ff8b06"
+ integrity sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==
+
+confbox@^0.2.2:
+ version "0.2.2"
+ resolved "https://registry.yarnpkg.com/confbox/-/confbox-0.2.2.tgz#8652f53961c74d9e081784beed78555974a9c110"
+ integrity sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==
+
+core-js@^3.38.1:
+ version "3.45.1"
+ resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.45.1.tgz#5810e04a1b4e9bc5ddaa4dd12e702ff67300634d"
+ integrity sha512-L4NPsJlCfZsPeXukyzHFlg/i7IIVwHSItR0wg0FLNqYClJ4MQYTYLbC7EkjKYRLZF2iof2MUgN0EGy7MdQFChg==
+
+cose-base@^1.0.0:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/cose-base/-/cose-base-1.0.3.tgz#650334b41b869578a543358b80cda7e0abe0a60a"
+ integrity sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==
+ dependencies:
+ layout-base "^1.0.0"
+
+cose-base@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/cose-base/-/cose-base-2.2.0.tgz#1c395c35b6e10bb83f9769ca8b817d614add5c01"
+ integrity sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g==
+ dependencies:
+ layout-base "^2.0.0"
+
+crelt@^1.0.5, crelt@^1.0.6:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/crelt/-/crelt-1.0.6.tgz#7cc898ea74e190fb6ef9dae57f8f81cf7302df72"
+ integrity sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==
+
+cross-spawn@^5.0.1:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
+ integrity sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==
+ dependencies:
+ lru-cache "^4.0.1"
+ shebang-command "^1.2.0"
+ which "^1.2.9"
+
+cross-spawn@^7.0.2, cross-spawn@^7.0.6:
+ version "7.0.6"
+ resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f"
+ integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==
+ dependencies:
+ path-key "^3.1.0"
+ shebang-command "^2.0.0"
+ which "^2.0.1"
+
+css.escape@^1.5.1:
+ version "1.5.1"
+ resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb"
+ integrity sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==
+
+cssesc@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
+ integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
+
+csstype@^3.0.2:
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81"
+ integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==
+
+cva@1.0.0-beta.1:
+ version "1.0.0-beta.1"
+ resolved "https://registry.yarnpkg.com/cva/-/cva-1.0.0-beta.1.tgz#ad5ad2cc744ccf50d6b70f72645a60f9dfd86e8c"
+ integrity sha512-gznFqTgERU9q4wg7jfgqtt34+RUt9S5t0xDAAEuDwQEAXEgjdDkKXpLLNjwSxsB4Ln/sqWJEH7yhE8Ny0mxd0w==
+ dependencies:
+ clsx "2.0.0"
+
+cytoscape-cose-bilkent@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/cytoscape-cose-bilkent/-/cytoscape-cose-bilkent-4.1.0.tgz#762fa121df9930ffeb51a495d87917c570ac209b"
+ integrity sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==
+ dependencies:
+ cose-base "^1.0.0"
+
+cytoscape-fcose@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/cytoscape-fcose/-/cytoscape-fcose-2.2.0.tgz#e4d6f6490df4fab58ae9cea9e5c3ab8d7472f471"
+ integrity sha512-ki1/VuRIHFCzxWNrsshHYPs6L7TvLu3DL+TyIGEsRcvVERmxokbf5Gdk7mFxZnTdiGtnA4cfSmjZJMviqSuZrQ==
+ dependencies:
+ cose-base "^2.2.0"
+
+cytoscape@^3.28.1, cytoscape@^3.29.3:
+ version "3.33.1"
+ resolved "https://registry.yarnpkg.com/cytoscape/-/cytoscape-3.33.1.tgz#449e05d104b760af2912ab76482d24c01cdd4c97"
+ integrity sha512-iJc4TwyANnOGR1OmWhsS9ayRS3s+XQ185FmuHObThD+5AeJCakAAbWv8KimMTt08xCCLNgneQwFp+JRJOr9qGQ==
+
+"d3-array@1 - 2":
+ version "2.12.1"
+ resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-2.12.1.tgz#e20b41aafcdffdf5d50928004ececf815a465e81"
+ integrity sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==
+ dependencies:
+ internmap "^1.0.0"
+
+"d3-array@2 - 3", "d3-array@2.10.0 - 3", "d3-array@2.5.0 - 3", d3-array@3, d3-array@^3.2.0:
+ version "3.2.4"
+ resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-3.2.4.tgz#15fec33b237f97ac5d7c986dc77da273a8ed0bb5"
+ integrity sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==
+ dependencies:
+ internmap "1 - 2"
+
+d3-axis@3:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/d3-axis/-/d3-axis-3.0.0.tgz#c42a4a13e8131d637b745fc2973824cfeaf93322"
+ integrity sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==
+
+d3-brush@3:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/d3-brush/-/d3-brush-3.0.0.tgz#6f767c4ed8dcb79de7ede3e1c0f89e63ef64d31c"
+ integrity sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==
+ dependencies:
+ d3-dispatch "1 - 3"
+ d3-drag "2 - 3"
+ d3-interpolate "1 - 3"
+ d3-selection "3"
+ d3-transition "3"
+
+d3-chord@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-chord/-/d3-chord-3.0.1.tgz#d156d61f485fce8327e6abf339cb41d8cbba6966"
+ integrity sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==
+ dependencies:
+ d3-path "1 - 3"
+
+"d3-color@1 - 3", d3-color@3:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/d3-color/-/d3-color-3.1.0.tgz#395b2833dfac71507f12ac2f7af23bf819de24e2"
+ integrity sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==
+
+d3-contour@4:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/d3-contour/-/d3-contour-4.0.2.tgz#bb92063bc8c5663acb2422f99c73cbb6c6ae3bcc"
+ integrity sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==
+ dependencies:
+ d3-array "^3.2.0"
+
+d3-delaunay@6:
+ version "6.0.4"
+ resolved "https://registry.yarnpkg.com/d3-delaunay/-/d3-delaunay-6.0.4.tgz#98169038733a0a5babbeda55054f795bb9e4a58b"
+ integrity sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==
+ dependencies:
+ delaunator "5"
+
+"d3-dispatch@1 - 3", d3-dispatch@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-dispatch/-/d3-dispatch-3.0.1.tgz#5fc75284e9c2375c36c839411a0cf550cbfc4d5e"
+ integrity sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==
+
+"d3-drag@2 - 3", d3-drag@3:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/d3-drag/-/d3-drag-3.0.0.tgz#994aae9cd23c719f53b5e10e3a0a6108c69607ba"
+ integrity sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==
+ dependencies:
+ d3-dispatch "1 - 3"
+ d3-selection "3"
+
+"d3-dsv@1 - 3", d3-dsv@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-dsv/-/d3-dsv-3.0.1.tgz#c63af978f4d6a0d084a52a673922be2160789b73"
+ integrity sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==
+ dependencies:
+ commander "7"
+ iconv-lite "0.6"
+ rw "1"
+
+"d3-ease@1 - 3", d3-ease@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-ease/-/d3-ease-3.0.1.tgz#9658ac38a2140d59d346160f1f6c30fda0bd12f4"
+ integrity sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==
+
+d3-fetch@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-fetch/-/d3-fetch-3.0.1.tgz#83141bff9856a0edb5e38de89cdcfe63d0a60a22"
+ integrity sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==
+ dependencies:
+ d3-dsv "1 - 3"
+
+d3-force@3:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/d3-force/-/d3-force-3.0.0.tgz#3e2ba1a61e70888fe3d9194e30d6d14eece155c4"
+ integrity sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==
+ dependencies:
+ d3-dispatch "1 - 3"
+ d3-quadtree "1 - 3"
+ d3-timer "1 - 3"
+
+"d3-format@1 - 3", d3-format@3:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/d3-format/-/d3-format-3.1.0.tgz#9260e23a28ea5cb109e93b21a06e24e2ebd55641"
+ integrity sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==
+
+d3-geo@3:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/d3-geo/-/d3-geo-3.1.1.tgz#6027cf51246f9b2ebd64f99e01dc7c3364033a4d"
+ integrity sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==
+ dependencies:
+ d3-array "2.5.0 - 3"
+
+d3-hierarchy@3:
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz#b01cd42c1eed3d46db77a5966cf726f8c09160c6"
+ integrity sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==
+
+"d3-interpolate@1 - 3", "d3-interpolate@1.2.0 - 3", d3-interpolate@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-interpolate/-/d3-interpolate-3.0.1.tgz#3c47aa5b32c5b3dfb56ef3fd4342078a632b400d"
+ integrity sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==
+ dependencies:
+ d3-color "1 - 3"
+
+d3-path@1:
+ version "1.0.9"
+ resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-1.0.9.tgz#48c050bb1fe8c262493a8caf5524e3e9591701cf"
+ integrity sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==
+
+"d3-path@1 - 3", d3-path@3, d3-path@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-3.1.0.tgz#22df939032fb5a71ae8b1800d61ddb7851c42526"
+ integrity sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==
+
+d3-polygon@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-polygon/-/d3-polygon-3.0.1.tgz#0b45d3dd1c48a29c8e057e6135693ec80bf16398"
+ integrity sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==
+
+"d3-quadtree@1 - 3", d3-quadtree@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-quadtree/-/d3-quadtree-3.0.1.tgz#6dca3e8be2b393c9a9d514dabbd80a92deef1a4f"
+ integrity sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==
+
+d3-random@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-random/-/d3-random-3.0.1.tgz#d4926378d333d9c0bfd1e6fa0194d30aebaa20f4"
+ integrity sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==
+
+d3-sankey@^0.12.3:
+ version "0.12.3"
+ resolved "https://registry.yarnpkg.com/d3-sankey/-/d3-sankey-0.12.3.tgz#b3c268627bd72e5d80336e8de6acbfec9d15d01d"
+ integrity sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==
+ dependencies:
+ d3-array "1 - 2"
+ d3-shape "^1.2.0"
+
+d3-scale-chromatic@3:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz#34c39da298b23c20e02f1a4b239bd0f22e7f1314"
+ integrity sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==
+ dependencies:
+ d3-color "1 - 3"
+ d3-interpolate "1 - 3"
+
+d3-scale@4:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/d3-scale/-/d3-scale-4.0.2.tgz#82b38e8e8ff7080764f8dcec77bd4be393689396"
+ integrity sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==
+ dependencies:
+ d3-array "2.10.0 - 3"
+ d3-format "1 - 3"
+ d3-interpolate "1.2.0 - 3"
+ d3-time "2.1.1 - 3"
+ d3-time-format "2 - 4"
+
+"d3-selection@2 - 3", d3-selection@3:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/d3-selection/-/d3-selection-3.0.0.tgz#c25338207efa72cc5b9bd1458a1a41901f1e1b31"
+ integrity sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==
+
+d3-shape@3:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-3.2.0.tgz#a1a839cbd9ba45f28674c69d7f855bcf91dfc6a5"
+ integrity sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==
+ dependencies:
+ d3-path "^3.1.0"
+
+d3-shape@^1.2.0:
+ version "1.3.7"
+ resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-1.3.7.tgz#df63801be07bc986bc54f63789b4fe502992b5d7"
+ integrity sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==
+ dependencies:
+ d3-path "1"
+
+"d3-time-format@2 - 4", d3-time-format@4:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/d3-time-format/-/d3-time-format-4.1.0.tgz#7ab5257a5041d11ecb4fe70a5c7d16a195bb408a"
+ integrity sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==
+ dependencies:
+ d3-time "1 - 3"
+
+"d3-time@1 - 3", "d3-time@2.1.1 - 3", d3-time@3:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/d3-time/-/d3-time-3.1.0.tgz#9310db56e992e3c0175e1ef385e545e48a9bb5c7"
+ integrity sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==
+ dependencies:
+ d3-array "2 - 3"
+
+"d3-timer@1 - 3", d3-timer@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-timer/-/d3-timer-3.0.1.tgz#6284d2a2708285b1abb7e201eda4380af35e63b0"
+ integrity sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==
+
+"d3-transition@2 - 3", d3-transition@3:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/d3-transition/-/d3-transition-3.0.1.tgz#6869fdde1448868077fdd5989200cb61b2a1645f"
+ integrity sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==
+ dependencies:
+ d3-color "1 - 3"
+ d3-dispatch "1 - 3"
+ d3-ease "1 - 3"
+ d3-interpolate "1 - 3"
+ d3-timer "1 - 3"
+
+d3-zoom@3:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/d3-zoom/-/d3-zoom-3.0.0.tgz#d13f4165c73217ffeaa54295cd6969b3e7aee8f3"
+ integrity sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==
+ dependencies:
+ d3-dispatch "1 - 3"
+ d3-drag "2 - 3"
+ d3-interpolate "1 - 3"
+ d3-selection "2 - 3"
+ d3-transition "2 - 3"
+
+d3@^7.4.0, d3@^7.8.2, d3@^7.9.0:
+ version "7.9.0"
+ resolved "https://registry.yarnpkg.com/d3/-/d3-7.9.0.tgz#579e7acb3d749caf8860bd1741ae8d371070cd5d"
+ integrity sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==
+ dependencies:
+ d3-array "3"
+ d3-axis "3"
+ d3-brush "3"
+ d3-chord "3"
+ d3-color "3"
+ d3-contour "4"
+ d3-delaunay "6"
+ d3-dispatch "3"
+ d3-drag "3"
+ d3-dsv "3"
+ d3-ease "3"
+ d3-fetch "3"
+ d3-force "3"
+ d3-format "3"
+ d3-geo "3"
+ d3-hierarchy "3"
+ d3-interpolate "3"
+ d3-path "3"
+ d3-polygon "3"
+ d3-quadtree "3"
+ d3-random "3"
+ d3-scale "4"
+ d3-scale-chromatic "3"
+ d3-selection "3"
+ d3-shape "3"
+ d3-time "3"
+ d3-time-format "4"
+ d3-timer "3"
+ d3-transition "3"
+ d3-zoom "3"
+
+dagre-d3-es@7.0.10:
+ version "7.0.10"
+ resolved "https://registry.yarnpkg.com/dagre-d3-es/-/dagre-d3-es-7.0.10.tgz#19800d4be674379a3cd8c86a8216a2ac6827cadc"
+ integrity sha512-qTCQmEhcynucuaZgY5/+ti3X/rnszKZhEQH/ZdWdtP1tA/y3VoHJzcVrO9pjjJCNpigfscAtoUB5ONcd2wNn0A==
+ dependencies:
+ d3 "^7.8.2"
+ lodash-es "^4.17.21"
+
+dagre-d3-es@7.0.11:
+ version "7.0.11"
+ resolved "https://registry.yarnpkg.com/dagre-d3-es/-/dagre-d3-es-7.0.11.tgz#2237e726c0577bfe67d1a7cfd2265b9ab2c15c40"
+ integrity sha512-tvlJLyQf834SylNKax8Wkzco/1ias1OPw8DcUMDE7oUIoSEW25riQVuiu/0OWEFqT0cxHT3Pa9/D82Jr47IONw==
+ dependencies:
+ d3 "^7.9.0"
+ lodash-es "^4.17.21"
+
+damerau-levenshtein@^1.0.8:
+ version "1.0.8"
+ resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7"
+ integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==
+
+data-view-buffer@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.2.tgz#211a03ba95ecaf7798a8c7198d79536211f88570"
+ integrity sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==
+ dependencies:
+ call-bound "^1.0.3"
+ es-errors "^1.3.0"
+ is-data-view "^1.0.2"
+
+data-view-byte-length@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz#9e80f7ca52453ce3e93d25a35318767ea7704735"
+ integrity sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==
+ dependencies:
+ call-bound "^1.0.3"
+ es-errors "^1.3.0"
+ is-data-view "^1.0.2"
+
+data-view-byte-offset@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz#068307f9b71ab76dbbe10291389e020856606191"
+ integrity sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==
+ dependencies:
+ call-bound "^1.0.2"
+ es-errors "^1.3.0"
+ is-data-view "^1.0.1"
+
+date-fns@^2.15.0:
+ version "2.30.0"
+ resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.30.0.tgz#f367e644839ff57894ec6ac480de40cae4b0f4d0"
+ integrity sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==
+ dependencies:
+ "@babel/runtime" "^7.21.0"
+
+date-fns@^3.6.0:
+ version "3.6.0"
+ resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-3.6.0.tgz#f20ca4fe94f8b754951b24240676e8618c0206bf"
+ integrity sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==
+
+dayjs@^1.11.18, dayjs@^1.11.7:
+ version "1.11.18"
+ resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.18.tgz#835fa712aac52ab9dec8b1494098774ed7070a11"
+ integrity sha512-zFBQ7WFRvVRhKcWoUh+ZA1g2HVgUbsZm9sbddh8EC5iv93sui8DVVz1Npvz+r6meo9VKfa8NyLWBsQK1VvIKPA==
+
+debug@^2.1.3:
+ version "2.6.9"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
+ integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
+ dependencies:
+ ms "2.0.0"
+
+debug@^3.2.7:
+ version "3.2.7"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
+ integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
+ dependencies:
+ ms "^2.1.1"
+
+debug@^4.0.0, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@^4.4.0, debug@^4.4.1:
+ version "4.4.3"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz#c6ae432d9bd9662582fce08709b038c58e9e3d6a"
+ integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==
+ dependencies:
+ ms "^2.1.3"
+
+decode-named-character-reference@^1.0.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/decode-named-character-reference/-/decode-named-character-reference-1.2.0.tgz#25c32ae6dd5e21889549d40f676030e9514cc0ed"
+ integrity sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==
+ dependencies:
+ character-entities "^2.0.0"
+
+deep-eql@^5.0.1:
+ version "5.0.2"
+ resolved "https://registry.yarnpkg.com/deep-eql/-/deep-eql-5.0.2.tgz#4b756d8d770a9257300825d52a2c2cff99c3a341"
+ integrity sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==
+
+deep-is@^0.1.3:
+ version "0.1.4"
+ resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
+ integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
+
+defaults@^1.0.3:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.4.tgz#b0b02062c1e2aa62ff5d9528f0f98baa90978d7a"
+ integrity sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==
+ dependencies:
+ clone "^1.0.2"
+
+define-data-property@^1.0.1, define-data-property@^1.1.4:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e"
+ integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==
+ dependencies:
+ es-define-property "^1.0.0"
+ es-errors "^1.3.0"
+ gopd "^1.0.1"
+
+define-properties@^1.1.3, define-properties@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c"
+ integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==
+ dependencies:
+ define-data-property "^1.0.1"
+ has-property-descriptors "^1.0.0"
+ object-keys "^1.1.1"
+
+delaunator@5:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/delaunator/-/delaunator-5.0.1.tgz#39032b08053923e924d6094fe2cde1a99cc51278"
+ integrity sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==
+ dependencies:
+ robust-predicates "^3.0.2"
+
+delayed-stream@~1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
+ integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==
+
+dequal@^2.0.0, dequal@^2.0.3:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be"
+ integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==
+
+detect-file@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7"
+ integrity sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==
+
+detect-libc@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
+ integrity sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==
+
+detect-libc@^2.0.3:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.1.0.tgz#3ca811f60a7b504b0480e5008adacc660b0b8c4f"
+ integrity sha512-vEtk+OcP7VBRtQZ1EJ3bdgzSfBjgnEalLTp5zjJrS+2Z1w2KZly4SBdac/WDU3hhsNAZ9E8SC96ME4Ey8MZ7cg==
+
+detect-node-es@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/detect-node-es/-/detect-node-es-1.1.0.tgz#163acdf643330caa0b4cd7c21e7ee7755d6fa493"
+ integrity sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==
+
+devlop@^1.0.0, devlop@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/devlop/-/devlop-1.1.0.tgz#4db7c2ca4dc6e0e834c30be70c94bbc976dc7018"
+ integrity sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==
+ dependencies:
+ dequal "^2.0.0"
+
+didyoumean@^1.2.2:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037"
+ integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==
+
+diff@^5.0.0:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/diff/-/diff-5.2.0.tgz#26ded047cd1179b78b9537d5ef725503ce1ae531"
+ integrity sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==
+
+dir-glob@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
+ integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
+ dependencies:
+ path-type "^4.0.0"
+
+dlv@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79"
+ integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==
+
+doctrine@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
+ integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
+ dependencies:
+ esutils "^2.0.2"
+
+doctrine@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
+ integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
+ dependencies:
+ esutils "^2.0.2"
+
+dom-accessibility-api@^0.5.9:
+ version "0.5.16"
+ resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz#5a7429e6066eb3664d911e33fb0e45de8eb08453"
+ integrity sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==
+
+dom-accessibility-api@^0.6.3:
+ version "0.6.3"
+ resolved "https://registry.yarnpkg.com/dom-accessibility-api/-/dom-accessibility-api-0.6.3.tgz#993e925cc1d73f2c662e7d75dd5a5445259a8fd8"
+ integrity sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==
+
+"dompurify@^3.0.5 <3.1.7":
+ version "3.1.6"
+ resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.1.6.tgz#43c714a94c6a7b8801850f82e756685300a027e2"
+ integrity sha512-cTOAhc36AalkjtBpfG6O8JimdTMWNXjiePT2xQH/ppBGi/4uIpmj8eKyIkMJErXWARyINV/sB38yf8JCLF5pbQ==
+
+dompurify@^3.2.5:
+ version "3.2.7"
+ resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.2.7.tgz#721d63913db5111dd6dfda8d3a748cfd7982d44a"
+ integrity sha512-WhL/YuveyGXJaerVlMYGWhvQswa7myDG17P7Vu65EWC05o8vfeNbvNf4d/BOvH99+ZW+LlQsc1GDKMa1vNK6dw==
+ optionalDependencies:
+ "@types/trusted-types" "^2.0.7"
+
+dunder-proto@^1.0.0, dunder-proto@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/dunder-proto/-/dunder-proto-1.0.1.tgz#d7ae667e1dc83482f8b70fd0f6eefc50da30f58a"
+ integrity sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==
+ dependencies:
+ call-bind-apply-helpers "^1.0.1"
+ es-errors "^1.3.0"
+ gopd "^1.2.0"
+
+eastasianwidth@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb"
+ integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==
+
+electron-to-chromium@^1.5.218:
+ version "1.5.222"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.222.tgz#965c93783ad989116b74593ae3068b9466fdb237"
+ integrity sha512-gA7psSwSwQRE60CEoLz6JBCQPIxNeuzB2nL8vE03GK/OHxlvykbLyeiumQy1iH5C2f3YbRAZpGCMT12a/9ih9w==
+
+elkjs@^0.9.0:
+ version "0.9.3"
+ resolved "https://registry.yarnpkg.com/elkjs/-/elkjs-0.9.3.tgz#16711f8ceb09f1b12b99e971b138a8384a529161"
+ integrity sha512-f/ZeWvW/BCXbhGEf1Ujp29EASo/lk1FDnETgNKwJrsVvGZhUWCZyg3xLJjAsxfOmt8KjswHmI5EwCQcPMpOYhQ==
+
+embla-carousel-auto-height@^8.0.0:
+ version "8.6.0"
+ resolved "https://registry.yarnpkg.com/embla-carousel-auto-height/-/embla-carousel-auto-height-8.6.0.tgz#89ea31e2119531b2a83884497a6307178e66b00c"
+ integrity sha512-/HrJQOEM6aol/oF33gd2QlINcXy3e19fJWvHDuHWp2bpyTa+2dm9tVVJak30m2Qy6QyQ6Fc8DkImtv7pxWOJUQ==
+
+embla-carousel-auto-scroll@^8.0.0:
+ version "8.6.0"
+ resolved "https://registry.yarnpkg.com/embla-carousel-auto-scroll/-/embla-carousel-auto-scroll-8.6.0.tgz#02f648acd8b184a0f3ae0f2b38a983afc16a2648"
+ integrity sha512-WT9fWhNXFpbQ6kP+aS07oF5IHYLZ1Dx4DkwgCY8Hv2ZyYd2KMCPfMV1q/cA3wFGuLO7GMgKiySLX90/pQkcOdQ==
+
+embla-carousel-autoplay@^8.0.0:
+ version "8.6.0"
+ resolved "https://registry.yarnpkg.com/embla-carousel-autoplay/-/embla-carousel-autoplay-8.6.0.tgz#bc86c97de00d52ec34b05058736ef50af6e0d0e4"
+ integrity sha512-OBu5G3nwaSXkZCo1A6LTaFMZ8EpkYbwIaH+bPqdBnDGQ2fh4+NbzjXjs2SktoPNKCtflfVMc75njaDHOYXcrsA==
+
+embla-carousel-react@^8.0.0:
+ version "8.6.0"
+ resolved "https://registry.yarnpkg.com/embla-carousel-react/-/embla-carousel-react-8.6.0.tgz#b737042a32761c38d6614593653b3ac619477bd1"
+ integrity sha512-0/PjqU7geVmo6F734pmPqpyHqiM99olvyecY7zdweCw+6tKEXnrE90pBiBbMMU8s5tICemzpQ3hi5EpxzGW+JA==
+ dependencies:
+ embla-carousel "8.6.0"
+ embla-carousel-reactive-utils "8.6.0"
+
+embla-carousel-reactive-utils@8.6.0:
+ version "8.6.0"
+ resolved "https://registry.yarnpkg.com/embla-carousel-reactive-utils/-/embla-carousel-reactive-utils-8.6.0.tgz#607f1d8ab9921c906a555c206251b2c6db687223"
+ integrity sha512-fMVUDUEx0/uIEDM0Mz3dHznDhfX+znCCDCeIophYb1QGVM7YThSWX+wz11zlYwWFOr74b4QLGg0hrGPJeG2s4A==
+
+embla-carousel@8.6.0:
+ version "8.6.0"
+ resolved "https://registry.yarnpkg.com/embla-carousel/-/embla-carousel-8.6.0.tgz#abcedff2bff36992ea8ac27cd30080ca5b6a3f58"
+ integrity sha512-SjWyZBHJPbqxHOzckOfo8lHisEaJWmwd23XppYFYVh10bU66/Pn5tkVkbkCMZVdbUE5eTCI2nD8OyIP4Z+uwkA==
+
+emoji-regex@^8.0.0:
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
+ integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
+
+emoji-regex@^9.2.2:
+ version "9.2.2"
+ resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
+ integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
+
+entities@^6.0.0:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/entities/-/entities-6.0.1.tgz#c28c34a43379ca7f61d074130b2f5f7020a30694"
+ integrity sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==
+
+es-abstract@^1.17.5, es-abstract@^1.23.2, es-abstract@^1.23.3, es-abstract@^1.23.5, es-abstract@^1.23.6, es-abstract@^1.23.9, es-abstract@^1.24.0:
+ version "1.24.0"
+ resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.24.0.tgz#c44732d2beb0acc1ed60df840869e3106e7af328"
+ integrity sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==
+ dependencies:
+ array-buffer-byte-length "^1.0.2"
+ arraybuffer.prototype.slice "^1.0.4"
+ available-typed-arrays "^1.0.7"
+ call-bind "^1.0.8"
+ call-bound "^1.0.4"
+ data-view-buffer "^1.0.2"
+ data-view-byte-length "^1.0.2"
+ data-view-byte-offset "^1.0.1"
+ es-define-property "^1.0.1"
+ es-errors "^1.3.0"
+ es-object-atoms "^1.1.1"
+ es-set-tostringtag "^2.1.0"
+ es-to-primitive "^1.3.0"
+ function.prototype.name "^1.1.8"
+ get-intrinsic "^1.3.0"
+ get-proto "^1.0.1"
+ get-symbol-description "^1.1.0"
+ globalthis "^1.0.4"
+ gopd "^1.2.0"
+ has-property-descriptors "^1.0.2"
+ has-proto "^1.2.0"
+ has-symbols "^1.1.0"
+ hasown "^2.0.2"
+ internal-slot "^1.1.0"
+ is-array-buffer "^3.0.5"
+ is-callable "^1.2.7"
+ is-data-view "^1.0.2"
+ is-negative-zero "^2.0.3"
+ is-regex "^1.2.1"
+ is-set "^2.0.3"
+ is-shared-array-buffer "^1.0.4"
+ is-string "^1.1.1"
+ is-typed-array "^1.1.15"
+ is-weakref "^1.1.1"
+ math-intrinsics "^1.1.0"
+ object-inspect "^1.13.4"
+ object-keys "^1.1.1"
+ object.assign "^4.1.7"
+ own-keys "^1.0.1"
+ regexp.prototype.flags "^1.5.4"
+ safe-array-concat "^1.1.3"
+ safe-push-apply "^1.0.0"
+ safe-regex-test "^1.1.0"
+ set-proto "^1.0.0"
+ stop-iteration-iterator "^1.1.0"
+ string.prototype.trim "^1.2.10"
+ string.prototype.trimend "^1.0.9"
+ string.prototype.trimstart "^1.0.8"
+ typed-array-buffer "^1.0.3"
+ typed-array-byte-length "^1.0.3"
+ typed-array-byte-offset "^1.0.4"
+ typed-array-length "^1.0.7"
+ unbox-primitive "^1.1.0"
+ which-typed-array "^1.1.19"
+
+es-define-property@^1.0.0, es-define-property@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.1.tgz#983eb2f9a6724e9303f61addf011c72e09e0b0fa"
+ integrity sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==
+
+es-errors@^1.3.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f"
+ integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==
+
+es-iterator-helpers@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.2.1.tgz#d1dd0f58129054c0ad922e6a9a1e65eef435fe75"
+ integrity sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==
+ dependencies:
+ call-bind "^1.0.8"
+ call-bound "^1.0.3"
+ define-properties "^1.2.1"
+ es-abstract "^1.23.6"
+ es-errors "^1.3.0"
+ es-set-tostringtag "^2.0.3"
+ function-bind "^1.1.2"
+ get-intrinsic "^1.2.6"
+ globalthis "^1.0.4"
+ gopd "^1.2.0"
+ has-property-descriptors "^1.0.2"
+ has-proto "^1.2.0"
+ has-symbols "^1.1.0"
+ internal-slot "^1.1.0"
+ iterator.prototype "^1.1.4"
+ safe-array-concat "^1.1.3"
+
+es-object-atoms@^1.0.0, es-object-atoms@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz#1c4f2c4837327597ce69d2ca190a7fdd172338c1"
+ integrity sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==
+ dependencies:
+ es-errors "^1.3.0"
+
+es-set-tostringtag@^2.0.3, es-set-tostringtag@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz#f31dbbe0c183b00a6d26eb6325c810c0fd18bd4d"
+ integrity sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==
+ dependencies:
+ es-errors "^1.3.0"
+ get-intrinsic "^1.2.6"
+ has-tostringtag "^1.0.2"
+ hasown "^2.0.2"
+
+es-shim-unscopables@^1.0.2, es-shim-unscopables@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz#438df35520dac5d105f3943d927549ea3b00f4b5"
+ integrity sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==
+ dependencies:
+ hasown "^2.0.2"
+
+es-to-primitive@^1.3.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.3.0.tgz#96c89c82cc49fd8794a24835ba3e1ff87f214e18"
+ integrity sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==
+ dependencies:
+ is-callable "^1.2.7"
+ is-date-object "^1.0.5"
+ is-symbol "^1.0.4"
+
+esbuild@^0.21.3:
+ version "0.21.5"
+ resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.21.5.tgz#9ca301b120922959b766360d8ac830da0d02997d"
+ integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==
+ optionalDependencies:
+ "@esbuild/aix-ppc64" "0.21.5"
+ "@esbuild/android-arm" "0.21.5"
+ "@esbuild/android-arm64" "0.21.5"
+ "@esbuild/android-x64" "0.21.5"
+ "@esbuild/darwin-arm64" "0.21.5"
+ "@esbuild/darwin-x64" "0.21.5"
+ "@esbuild/freebsd-arm64" "0.21.5"
+ "@esbuild/freebsd-x64" "0.21.5"
+ "@esbuild/linux-arm" "0.21.5"
+ "@esbuild/linux-arm64" "0.21.5"
+ "@esbuild/linux-ia32" "0.21.5"
+ "@esbuild/linux-loong64" "0.21.5"
+ "@esbuild/linux-mips64el" "0.21.5"
+ "@esbuild/linux-ppc64" "0.21.5"
+ "@esbuild/linux-riscv64" "0.21.5"
+ "@esbuild/linux-s390x" "0.21.5"
+ "@esbuild/linux-x64" "0.21.5"
+ "@esbuild/netbsd-x64" "0.21.5"
+ "@esbuild/openbsd-x64" "0.21.5"
+ "@esbuild/sunos-x64" "0.21.5"
+ "@esbuild/win32-arm64" "0.21.5"
+ "@esbuild/win32-ia32" "0.21.5"
+ "@esbuild/win32-x64" "0.21.5"
+
+escalade@^3.2.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.2.0.tgz#011a3f69856ba189dffa7dc8fcce99d2a87903e5"
+ integrity sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==
+
+escape-string-regexp@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
+ integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
+
+escape-string-regexp@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
+ integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
+
+escape-string-regexp@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz#4683126b500b61762f2dbebace1806e8be31b1c8"
+ integrity sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==
+
+eslint-config-next@14.1.4:
+ version "14.1.4"
+ resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-14.1.4.tgz#22f2ba4c0993e991249d863656a64c204bae542c"
+ integrity sha512-cihIahbhYAWwXJwZkAaRPpUi5t9aOi/HdfWXOjZeUOqNWXHD8X22kd1KG58Dc3MVaRx3HoR/oMGk2ltcrqDn8g==
+ dependencies:
+ "@next/eslint-plugin-next" "14.1.4"
+ "@rushstack/eslint-patch" "^1.3.3"
+ "@typescript-eslint/parser" "^5.4.2 || ^6.0.0"
+ eslint-import-resolver-node "^0.3.6"
+ eslint-import-resolver-typescript "^3.5.2"
+ eslint-plugin-import "^2.28.1"
+ eslint-plugin-jsx-a11y "^6.7.1"
+ eslint-plugin-react "^7.33.2"
+ eslint-plugin-react-hooks "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705"
+
+eslint-import-resolver-node@^0.3.6, eslint-import-resolver-node@^0.3.9:
+ version "0.3.9"
+ resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz#d4eaac52b8a2e7c3cd1903eb00f7e053356118ac"
+ integrity sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==
+ dependencies:
+ debug "^3.2.7"
+ is-core-module "^2.13.0"
+ resolve "^1.22.4"
+
+eslint-import-resolver-typescript@^3.5.2:
+ version "3.10.1"
+ resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.10.1.tgz#23dac32efa86a88e2b8232eb244ac499ad636db2"
+ integrity sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==
+ dependencies:
+ "@nolyfill/is-core-module" "1.0.39"
+ debug "^4.4.0"
+ get-tsconfig "^4.10.0"
+ is-bun-module "^2.0.0"
+ stable-hash "^0.0.5"
+ tinyglobby "^0.2.13"
+ unrs-resolver "^1.6.2"
+
+eslint-module-utils@^2.12.1:
+ version "2.12.1"
+ resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz#f76d3220bfb83c057651359295ab5854eaad75ff"
+ integrity sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==
+ dependencies:
+ debug "^3.2.7"
+
+eslint-plugin-import@^2.28.1:
+ version "2.32.0"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz#602b55faa6e4caeaa5e970c198b5c00a37708980"
+ integrity sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==
+ dependencies:
+ "@rtsao/scc" "^1.1.0"
+ array-includes "^3.1.9"
+ array.prototype.findlastindex "^1.2.6"
+ array.prototype.flat "^1.3.3"
+ array.prototype.flatmap "^1.3.3"
+ debug "^3.2.7"
+ doctrine "^2.1.0"
+ eslint-import-resolver-node "^0.3.9"
+ eslint-module-utils "^2.12.1"
+ hasown "^2.0.2"
+ is-core-module "^2.16.1"
+ is-glob "^4.0.3"
+ minimatch "^3.1.2"
+ object.fromentries "^2.0.8"
+ object.groupby "^1.0.3"
+ object.values "^1.2.1"
+ semver "^6.3.1"
+ string.prototype.trimend "^1.0.9"
+ tsconfig-paths "^3.15.0"
+
+eslint-plugin-jsx-a11y@^6.7.1:
+ version "6.10.2"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz#d2812bb23bf1ab4665f1718ea442e8372e638483"
+ integrity sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==
+ dependencies:
+ aria-query "^5.3.2"
+ array-includes "^3.1.8"
+ array.prototype.flatmap "^1.3.2"
+ ast-types-flow "^0.0.8"
+ axe-core "^4.10.0"
+ axobject-query "^4.1.0"
+ damerau-levenshtein "^1.0.8"
+ emoji-regex "^9.2.2"
+ hasown "^2.0.2"
+ jsx-ast-utils "^3.3.5"
+ language-tags "^1.0.9"
+ minimatch "^3.1.2"
+ object.fromentries "^2.0.8"
+ safe-regex-test "^1.0.3"
+ string.prototype.includes "^2.0.1"
+
+"eslint-plugin-react-hooks@^4.5.0 || 5.0.0-canary-7118f5dd7-20230705":
+ version "5.0.0-canary-7118f5dd7-20230705"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.0.0-canary-7118f5dd7-20230705.tgz#4d55c50e186f1a2b0636433d2b0b2f592ddbccfd"
+ integrity sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw==
+
+eslint-plugin-react@^7.33.2:
+ version "7.37.5"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz#2975511472bdda1b272b34d779335c9b0e877065"
+ integrity sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==
+ dependencies:
+ array-includes "^3.1.8"
+ array.prototype.findlast "^1.2.5"
+ array.prototype.flatmap "^1.3.3"
+ array.prototype.tosorted "^1.1.4"
+ doctrine "^2.1.0"
+ es-iterator-helpers "^1.2.1"
+ estraverse "^5.3.0"
+ hasown "^2.0.2"
+ jsx-ast-utils "^2.4.1 || ^3.0.0"
+ minimatch "^3.1.2"
+ object.entries "^1.1.9"
+ object.fromentries "^2.0.8"
+ object.values "^1.2.1"
+ prop-types "^15.8.1"
+ resolve "^2.0.0-next.5"
+ semver "^6.3.1"
+ string.prototype.matchall "^4.0.12"
+ string.prototype.repeat "^1.0.0"
+
+eslint-scope@^7.2.2:
+ version "7.2.2"
+ resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f"
+ integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==
+ dependencies:
+ esrecurse "^4.3.0"
+ estraverse "^5.2.0"
+
+eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3:
+ version "3.4.3"
+ resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800"
+ integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==
+
+eslint@^8:
+ version "8.57.1"
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.57.1.tgz#7df109654aba7e3bbe5c8eae533c5e461d3c6ca9"
+ integrity sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==
+ dependencies:
+ "@eslint-community/eslint-utils" "^4.2.0"
+ "@eslint-community/regexpp" "^4.6.1"
+ "@eslint/eslintrc" "^2.1.4"
+ "@eslint/js" "8.57.1"
+ "@humanwhocodes/config-array" "^0.13.0"
+ "@humanwhocodes/module-importer" "^1.0.1"
+ "@nodelib/fs.walk" "^1.2.8"
+ "@ungap/structured-clone" "^1.2.0"
+ ajv "^6.12.4"
+ chalk "^4.0.0"
+ cross-spawn "^7.0.2"
+ debug "^4.3.2"
+ doctrine "^3.0.0"
+ escape-string-regexp "^4.0.0"
+ eslint-scope "^7.2.2"
+ eslint-visitor-keys "^3.4.3"
+ espree "^9.6.1"
+ esquery "^1.4.2"
+ esutils "^2.0.2"
+ fast-deep-equal "^3.1.3"
+ file-entry-cache "^6.0.1"
+ find-up "^5.0.0"
+ glob-parent "^6.0.2"
+ globals "^13.19.0"
+ graphemer "^1.4.0"
+ ignore "^5.2.0"
+ imurmurhash "^0.1.4"
+ is-glob "^4.0.0"
+ is-path-inside "^3.0.3"
+ js-yaml "^4.1.0"
+ json-stable-stringify-without-jsonify "^1.0.1"
+ levn "^0.4.1"
+ lodash.merge "^4.6.2"
+ minimatch "^3.1.2"
+ natural-compare "^1.4.0"
+ optionator "^0.9.3"
+ strip-ansi "^6.0.1"
+ text-table "^0.2.0"
+
+espree@^9.6.0, espree@^9.6.1:
+ version "9.6.1"
+ resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f"
+ integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==
+ dependencies:
+ acorn "^8.9.0"
+ acorn-jsx "^5.3.2"
+ eslint-visitor-keys "^3.4.1"
+
+esprima@^4.0.0:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
+ integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
+
+esquery@^1.4.2:
+ version "1.6.0"
+ resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz#91419234f804d852a82dceec3e16cdc22cf9dae7"
+ integrity sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==
+ dependencies:
+ estraverse "^5.1.0"
+
+esrecurse@^4.3.0:
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
+ integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
+ dependencies:
+ estraverse "^5.2.0"
+
+estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0:
+ version "5.3.0"
+ resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
+ integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
+
+estree-util-attach-comments@^2.0.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/estree-util-attach-comments/-/estree-util-attach-comments-2.1.1.tgz#ee44f4ff6890ee7dfb3237ac7810154c94c63f84"
+ integrity sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==
+ dependencies:
+ "@types/estree" "^1.0.0"
+
+estree-util-build-jsx@^2.0.0:
+ version "2.2.2"
+ resolved "https://registry.yarnpkg.com/estree-util-build-jsx/-/estree-util-build-jsx-2.2.2.tgz#32f8a239fb40dc3f3dca75bb5dcf77a831e4e47b"
+ integrity sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==
+ dependencies:
+ "@types/estree-jsx" "^1.0.0"
+ estree-util-is-identifier-name "^2.0.0"
+ estree-walker "^3.0.0"
+
+estree-util-is-identifier-name@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz#fb70a432dcb19045e77b05c8e732f1364b4b49b2"
+ integrity sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==
+
+estree-util-is-identifier-name@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz#0b5ef4c4ff13508b34dcd01ecfa945f61fce5dbd"
+ integrity sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==
+
+estree-util-to-js@^1.1.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/estree-util-to-js/-/estree-util-to-js-1.2.0.tgz#0f80d42443e3b13bd32f7012fffa6f93603f4a36"
+ integrity sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==
+ dependencies:
+ "@types/estree-jsx" "^1.0.0"
+ astring "^1.8.0"
+ source-map "^0.7.0"
+
+estree-util-value-to-estree@^3.3.3:
+ version "3.4.0"
+ resolved "https://registry.yarnpkg.com/estree-util-value-to-estree/-/estree-util-value-to-estree-3.4.0.tgz#827122e40c3a756d3c4cf5d5d296fa06026a1a4f"
+ integrity sha512-Zlp+gxis+gCfK12d3Srl2PdX2ybsEA8ZYy6vQGVQTNNYLEGRQQ56XB64bjemN8kxIKXP1nC9ip4Z+ILy9LGzvQ==
+ dependencies:
+ "@types/estree" "^1.0.0"
+
+estree-util-visit@^1.0.0:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/estree-util-visit/-/estree-util-visit-1.2.1.tgz#8bc2bc09f25b00827294703835aabee1cc9ec69d"
+ integrity sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==
+ dependencies:
+ "@types/estree-jsx" "^1.0.0"
+ "@types/unist" "^2.0.0"
+
+estree-walker@^3.0.0, estree-walker@^3.0.3:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-3.0.3.tgz#67c3e549ec402a487b4fc193d1953a524752340d"
+ integrity sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==
+ dependencies:
+ "@types/estree" "^1.0.0"
+
+esutils@^2.0.2:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
+ integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
+
+execa@^0.8.0:
+ version "0.8.0"
+ resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da"
+ integrity sha512-zDWS+Rb1E8BlqqhALSt9kUhss8Qq4nN3iof3gsOdyINksElaPyNBtKUMTR62qhvgVWR0CqCX7sdnKe4MnUbFEA==
+ dependencies:
+ cross-spawn "^5.0.1"
+ get-stream "^3.0.0"
+ is-stream "^1.1.0"
+ npm-run-path "^2.0.0"
+ p-finally "^1.0.0"
+ signal-exit "^3.0.0"
+ strip-eof "^1.0.0"
+
+expand-tilde@^2.0.0, expand-tilde@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502"
+ integrity sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==
+ dependencies:
+ homedir-polyfill "^1.0.1"
+
+exsolve@^1.0.7:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/exsolve/-/exsolve-1.0.7.tgz#3b74e4c7ca5c5f9a19c3626ca857309fa99f9e9e"
+ integrity sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==
+
+extend-shallow@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
+ integrity sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==
+ dependencies:
+ is-extendable "^0.1.0"
+
+extend@^3.0.0, extend@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
+ integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
+
+fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
+ integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
+
+fast-glob@^3.2.12, fast-glob@^3.2.9, fast-glob@^3.3.2, fast-glob@^3.3.3:
+ version "3.3.3"
+ resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.3.tgz#d06d585ce8dba90a16b0505c543c3ccfb3aeb818"
+ integrity sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==
+ dependencies:
+ "@nodelib/fs.stat" "^2.0.2"
+ "@nodelib/fs.walk" "^1.2.3"
+ glob-parent "^5.1.2"
+ merge2 "^1.3.0"
+ micromatch "^4.0.8"
+
+fast-json-stable-stringify@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
+ integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
+
+fast-levenshtein@^2.0.6:
+ version "2.0.6"
+ resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
+ integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
+
+fast-uri@^3.0.1:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/fast-uri/-/fast-uri-3.1.0.tgz#66eecff6c764c0df9b762e62ca7edcfb53b4edfa"
+ integrity sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==
+
+fastq@^1.6.0:
+ version "1.19.1"
+ resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.19.1.tgz#d50eaba803c8846a883c16492821ebcd2cda55f5"
+ integrity sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==
+ dependencies:
+ reusify "^1.0.4"
+
+fdir@^6.5.0:
+ version "6.5.0"
+ resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.5.0.tgz#ed2ab967a331ade62f18d077dae192684d50d350"
+ integrity sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==
+
+fflate@^0.4.8:
+ version "0.4.8"
+ resolved "https://registry.yarnpkg.com/fflate/-/fflate-0.4.8.tgz#f90b82aefbd8ac174213abb338bd7ef848f0f5ae"
+ integrity sha512-FJqqoDBR00Mdj9ppamLa/Y7vxm+PRmNWA67N846RvsoYVMKB4q3y/de5PA7gUmRMYK/8CMz2GDZQmCRN1wBcWA==
+
+file-entry-cache@^6.0.1:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
+ integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
+ dependencies:
+ flat-cache "^3.0.4"
+
+fill-range@^7.1.1:
+ version "7.1.1"
+ resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292"
+ integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==
+ dependencies:
+ to-regex-range "^5.0.1"
+
+find-up@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
+ integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
+ dependencies:
+ locate-path "^6.0.0"
+ path-exists "^4.0.0"
+
+findup-sync@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-5.0.0.tgz#54380ad965a7edca00cc8f63113559aadc541bd2"
+ integrity sha512-MzwXju70AuyflbgeOhzvQWAvvQdo1XL0A9bVvlXsYcFEBM87WR4OakL4OfZq+QRmr+duJubio+UtNQCPsVESzQ==
+ dependencies:
+ detect-file "^1.0.0"
+ is-glob "^4.0.3"
+ micromatch "^4.0.4"
+ resolve-dir "^1.0.1"
+
+fined@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/fined/-/fined-2.0.0.tgz#6846563ed96879ce6de6c85c715c42250f8d8089"
+ integrity sha512-OFRzsL6ZMHz5s0JrsEr+TpdGNCtrVtnuG3x1yzGNiQHT0yaDnXAj8V/lWcpJVrnoDpcwXcASxAZYbuXda2Y82A==
+ dependencies:
+ expand-tilde "^2.0.2"
+ is-plain-object "^5.0.0"
+ object.defaults "^1.1.0"
+ object.pick "^1.3.0"
+ parse-filepath "^1.0.2"
+
+flagged-respawn@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-2.0.0.tgz#abf39719dcfe1ac06c86c9466081c541c682987b"
+ integrity sha512-Gq/a6YCi8zexmGHMuJwahTGzXlAZAOsbCVKduWXC6TlLCjjFRlExMJc4GC2NYPYZ0r/brw9P7CpRgQmlPVeOoA==
+
+flat-cache@^3.0.4:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee"
+ integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==
+ dependencies:
+ flatted "^3.2.9"
+ keyv "^4.5.3"
+ rimraf "^3.0.2"
+
+flatted@^3.2.9:
+ version "3.3.3"
+ resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.3.tgz#67c8fad95454a7c7abebf74bb78ee74a44023358"
+ integrity sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==
+
+flexsearch@^0.7.31:
+ version "0.7.43"
+ resolved "https://registry.yarnpkg.com/flexsearch/-/flexsearch-0.7.43.tgz#34f89b36278a466ce379c5bf6fb341965ed3f16c"
+ integrity sha512-c5o/+Um8aqCSOXGcZoqZOm+NqtVwNsvVpWv6lfmSclU954O3wvQKxxK8zj74fPaSJbXpSLTs4PRhh+wnoCXnKg==
+
+focus-visible@^5.2.0:
+ version "5.2.1"
+ resolved "https://registry.yarnpkg.com/focus-visible/-/focus-visible-5.2.1.tgz#38615e8be4d4df7819a0d9d92cdee4fda183ac96"
+ integrity sha512-8Bx950VD1bWTQJEH/AM6SpEk+SU55aVnp4Ujhuuxy3eMEBCRwBnTBnVXr9YAPvZL3/CNjCa8u4IWfNmEO53whA==
+
+follow-redirects@^1.15.6:
+ version "1.15.11"
+ resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.11.tgz#777d73d72a92f8ec4d2e410eb47352a56b8e8340"
+ integrity sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==
+
+for-each@^0.3.3, for-each@^0.3.5:
+ version "0.3.5"
+ resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.5.tgz#d650688027826920feeb0af747ee7b9421a41d47"
+ integrity sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==
+ dependencies:
+ is-callable "^1.2.7"
+
+for-in@^1.0.1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
+ integrity sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==
+
+for-own@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b"
+ integrity sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==
+ dependencies:
+ for-in "^1.0.1"
+
+foreground-child@^3.1.0:
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.1.tgz#32e8e9ed1b68a3497befb9ac2b6adf92a638576f"
+ integrity sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==
+ dependencies:
+ cross-spawn "^7.0.6"
+ signal-exit "^4.0.1"
+
+form-data@^4.0.4:
+ version "4.0.4"
+ resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.4.tgz#784cdcce0669a9d68e94d11ac4eea98088edd2c4"
+ integrity sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==
+ dependencies:
+ asynckit "^0.4.0"
+ combined-stream "^1.0.8"
+ es-set-tostringtag "^2.1.0"
+ hasown "^2.0.2"
+ mime-types "^2.1.12"
+
+formdata-node@^4.4.1:
+ version "4.4.1"
+ resolved "https://registry.yarnpkg.com/formdata-node/-/formdata-node-4.4.1.tgz#23f6a5cb9cb55315912cbec4ff7b0f59bbd191e2"
+ integrity sha512-0iirZp3uVDjVGt9p49aTaqjk84TrglENEDuqfdlZQ1roC9CWlPk6Avf8EEnZNcAqPonwkG35x4n3ww/1THYAeQ==
+ dependencies:
+ node-domexception "1.0.0"
+ web-streams-polyfill "4.0.0-beta.3"
+
+fraction.js@^4.3.7:
+ version "4.3.7"
+ resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.3.7.tgz#06ca0085157e42fda7f9e726e79fefc4068840f7"
+ integrity sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==
+
+framer-motion@^12.23.18:
+ version "12.23.18"
+ resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-12.23.18.tgz#a4cb09c01f84954324b530030fd6e295a97b0f7c"
+ integrity sha512-HBVXBL5x3nk/0WrYM5G4VgjBey99ytVYET5AX17s/pcnlH90cyaxVUqgoN8cpF4+PqZRVOhwWsv28F+hxA9Tzg==
+ dependencies:
+ motion-dom "^12.23.18"
+ motion-utils "^12.23.6"
+ tslib "^2.4.0"
+
+fs.realpath@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
+ integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
+
+fs@^0.0.1-security:
+ version "0.0.1-security"
+ resolved "https://registry.yarnpkg.com/fs/-/fs-0.0.1-security.tgz#8a7bd37186b6dddf3813f23858b57ecaaf5e41d4"
+ integrity sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==
+
+fsevents@~2.3.2, fsevents@~2.3.3:
+ version "2.3.3"
+ resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6"
+ integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
+
+function-bind@^1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c"
+ integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==
+
+function.prototype.name@^1.1.6, function.prototype.name@^1.1.8:
+ version "1.1.8"
+ resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.8.tgz#e68e1df7b259a5c949eeef95cdbde53edffabb78"
+ integrity sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==
+ dependencies:
+ call-bind "^1.0.8"
+ call-bound "^1.0.3"
+ define-properties "^1.2.1"
+ functions-have-names "^1.2.3"
+ hasown "^2.0.2"
+ is-callable "^1.2.7"
+
+functions-have-names@^1.2.3:
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
+ integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
+
+fuse.js@^6.6.2:
+ version "6.6.2"
+ resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-6.6.2.tgz#fe463fed4b98c0226ac3da2856a415576dc9a111"
+ integrity sha512-cJaJkxCCxC8qIIcPBF9yGxY0W/tVZS3uEISDxhYIdtk8OL93pe+6Zj7LjCqVV4dzbqcriOZ+kQ/NE4RXZHsIGA==
+
+get-intrinsic@^1.2.4, get-intrinsic@^1.2.5, get-intrinsic@^1.2.6, get-intrinsic@^1.2.7, get-intrinsic@^1.3.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz#743f0e3b6964a93a5491ed1bffaae054d7f98d01"
+ integrity sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==
+ dependencies:
+ call-bind-apply-helpers "^1.0.2"
+ es-define-property "^1.0.1"
+ es-errors "^1.3.0"
+ es-object-atoms "^1.1.1"
+ function-bind "^1.1.2"
+ get-proto "^1.0.1"
+ gopd "^1.2.0"
+ has-symbols "^1.1.0"
+ hasown "^2.0.2"
+ math-intrinsics "^1.1.0"
+
+get-nonce@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/get-nonce/-/get-nonce-1.0.1.tgz#fdf3f0278073820d2ce9426c18f07481b1e0cdf3"
+ integrity sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==
+
+get-own-enumerable-property-symbols@^3.0.0:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz#b5fde77f22cbe35f390b4e089922c50bce6ef664"
+ integrity sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==
+
+get-proto@^1.0.0, get-proto@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/get-proto/-/get-proto-1.0.1.tgz#150b3f2743869ef3e851ec0c49d15b1d14d00ee1"
+ integrity sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==
+ dependencies:
+ dunder-proto "^1.0.1"
+ es-object-atoms "^1.0.0"
+
+get-stream@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
+ integrity sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==
+
+get-symbol-description@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.1.0.tgz#7bdd54e0befe8ffc9f3b4e203220d9f1e881b6ee"
+ integrity sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==
+ dependencies:
+ call-bound "^1.0.3"
+ es-errors "^1.3.0"
+ get-intrinsic "^1.2.6"
+
+get-tsconfig@^4.10.0:
+ version "4.10.1"
+ resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.10.1.tgz#d34c1c01f47d65a606c37aa7a177bc3e56ab4b2e"
+ integrity sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==
+ dependencies:
+ resolve-pkg-maps "^1.0.0"
+
+git-up@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/git-up/-/git-up-7.0.0.tgz#bace30786e36f56ea341b6f69adfd83286337467"
+ integrity sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==
+ dependencies:
+ is-ssh "^1.4.0"
+ parse-url "^8.1.0"
+
+git-url-parse@^13.1.0:
+ version "13.1.1"
+ resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-13.1.1.tgz#664bddf0857c6a75b3c1f0ae6239abb08a1486d4"
+ integrity sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==
+ dependencies:
+ git-up "^7.0.0"
+
+github-slugger@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-2.0.0.tgz#52cf2f9279a21eb6c59dd385b410f0c0adda8f1a"
+ integrity sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==
+
+glob-parent@^5.1.2, glob-parent@~5.1.2:
+ version "5.1.2"
+ resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
+ integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
+ dependencies:
+ is-glob "^4.0.1"
+
+glob-parent@^6.0.2:
+ version "6.0.2"
+ resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3"
+ integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==
+ dependencies:
+ is-glob "^4.0.3"
+
+glob@10.3.10:
+ version "10.3.10"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.10.tgz#0351ebb809fd187fe421ab96af83d3a70715df4b"
+ integrity sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==
+ dependencies:
+ foreground-child "^3.1.0"
+ jackspeak "^2.3.5"
+ minimatch "^9.0.1"
+ minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
+ path-scurry "^1.10.1"
+
+glob@^10.3.10:
+ version "10.4.5"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-10.4.5.tgz#f4d9f0b90ffdbab09c9d77f5f29b4262517b0956"
+ integrity sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==
+ dependencies:
+ foreground-child "^3.1.0"
+ jackspeak "^3.1.2"
+ minimatch "^9.0.4"
+ minipass "^7.1.2"
+ package-json-from-dist "^1.0.0"
+ path-scurry "^1.11.1"
+
+glob@^7.1.3:
+ version "7.2.3"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
+ integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
+ dependencies:
+ fs.realpath "^1.0.0"
+ inflight "^1.0.4"
+ inherits "2"
+ minimatch "^3.1.1"
+ once "^1.3.0"
+ path-is-absolute "^1.0.0"
+
+global-modules@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea"
+ integrity sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==
+ dependencies:
+ global-prefix "^1.0.1"
+ is-windows "^1.0.1"
+ resolve-dir "^1.0.0"
+
+global-prefix@^1.0.1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe"
+ integrity sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==
+ dependencies:
+ expand-tilde "^2.0.2"
+ homedir-polyfill "^1.0.1"
+ ini "^1.3.4"
+ is-windows "^1.0.1"
+ which "^1.2.14"
+
+globals@^13.19.0:
+ version "13.24.0"
+ resolved "https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz#8432a19d78ce0c1e833949c36adb345400bb1171"
+ integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==
+ dependencies:
+ type-fest "^0.20.2"
+
+globals@^15.15.0:
+ version "15.15.0"
+ resolved "https://registry.yarnpkg.com/globals/-/globals-15.15.0.tgz#7c4761299d41c32b075715a4ce1ede7897ff72a8"
+ integrity sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==
+
+globalthis@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.4.tgz#7430ed3a975d97bfb59bcce41f5cabbafa651236"
+ integrity sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==
+ dependencies:
+ define-properties "^1.2.1"
+ gopd "^1.0.1"
+
+globby@^11.1.0:
+ version "11.1.0"
+ resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b"
+ integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==
+ dependencies:
+ array-union "^2.1.0"
+ dir-glob "^3.0.1"
+ fast-glob "^3.2.9"
+ ignore "^5.2.0"
+ merge2 "^1.4.1"
+ slash "^3.0.0"
+
+globby@^14.1.0:
+ version "14.1.0"
+ resolved "https://registry.yarnpkg.com/globby/-/globby-14.1.0.tgz#138b78e77cf5a8d794e327b15dce80bf1fb0a73e"
+ integrity sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==
+ dependencies:
+ "@sindresorhus/merge-streams" "^2.1.0"
+ fast-glob "^3.3.3"
+ ignore "^7.0.3"
+ path-type "^6.0.0"
+ slash "^5.1.0"
+ unicorn-magic "^0.3.0"
+
+gopd@^1.0.1, gopd@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.2.0.tgz#89f56b8217bdbc8802bd299df6d7f1081d7e51a1"
+ integrity sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==
+
+graceful-fs@^4.2.11:
+ version "4.2.11"
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
+ integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
+
+graphemer@^1.4.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6"
+ integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==
+
+gray-matter@^4.0.3:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/gray-matter/-/gray-matter-4.0.3.tgz#e893c064825de73ea1f5f7d88c7a9f7274288798"
+ integrity sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==
+ dependencies:
+ js-yaml "^3.13.1"
+ kind-of "^6.0.2"
+ section-matter "^1.0.0"
+ strip-bom-string "^1.0.0"
+
+hachure-fill@^0.5.2:
+ version "0.5.2"
+ resolved "https://registry.yarnpkg.com/hachure-fill/-/hachure-fill-0.5.2.tgz#d19bc4cc8750a5962b47fb1300557a85fcf934cc"
+ integrity sha512-3GKBOn+m2LX9iq+JC1064cSFprJY4jL1jCXTcpnfER5HYE2l/4EfWSGzkPa/ZDBmYI0ZOEj5VHV/eKnPGkHuOg==
+
+handlebars@^4.7.8:
+ version "4.7.8"
+ resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.8.tgz#41c42c18b1be2365439188c77c6afae71c0cd9e9"
+ integrity sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==
+ dependencies:
+ minimist "^1.2.5"
+ neo-async "^2.6.2"
+ source-map "^0.6.1"
+ wordwrap "^1.0.0"
+ optionalDependencies:
+ uglify-js "^3.1.4"
+
+has-bigints@^1.0.2:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.1.0.tgz#28607e965ac967e03cd2a2c70a2636a1edad49fe"
+ integrity sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==
+
+has-flag@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51"
+ integrity sha512-P+1n3MnwjR/Epg9BBo1KT8qbye2g2Ou4sFumihwt6I4tsUX7jnLcX4BTOSKg/B1ZrIYMN9FcEnG4x5a7NB8Eng==
+
+has-flag@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
+ integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
+
+has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854"
+ integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==
+ dependencies:
+ es-define-property "^1.0.0"
+
+has-proto@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.2.0.tgz#5de5a6eabd95fdffd9818b43055e8065e39fe9d5"
+ integrity sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==
+ dependencies:
+ dunder-proto "^1.0.0"
+
+has-symbols@^1.0.3, has-symbols@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.1.0.tgz#fc9c6a783a084951d0b971fe1018de813707a338"
+ integrity sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==
+
+has-tostringtag@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc"
+ integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==
+ dependencies:
+ has-symbols "^1.0.3"
+
+hash-obj@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/hash-obj/-/hash-obj-4.0.0.tgz#3fafeb0b5f17994441dbe04efbdee82e26b74c8c"
+ integrity sha512-FwO1BUVWkyHasWDW4S8o0ssQXjvyghLV2rfVhnN36b2bbcj45eGiuzdn9XOvOpjV3TKQD7Gm2BWNXdE9V4KKYg==
+ dependencies:
+ is-obj "^3.0.0"
+ sort-keys "^5.0.0"
+ type-fest "^1.0.2"
+
+hasown@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003"
+ integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==
+ dependencies:
+ function-bind "^1.1.2"
+
+hast-util-embedded@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/hast-util-embedded/-/hast-util-embedded-3.0.0.tgz#be4477780fbbe079cdba22982e357a0de4ba853e"
+ integrity sha512-naH8sld4Pe2ep03qqULEtvYr7EjrLK2QHY8KJR6RJkTUjPGObe1vnx585uzem2hGra+s1q08DZZpfgDVYRbaXA==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ hast-util-is-element "^3.0.0"
+
+hast-util-format@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/hast-util-format/-/hast-util-format-1.1.0.tgz#373e77382e07deb04f6676f1b4437e7d8549d985"
+ integrity sha512-yY1UDz6bC9rDvCWHpx12aIBGRG7krurX0p0Fm6pT547LwDIZZiNr8a+IHDogorAdreULSEzP82Nlv5SZkHZcjA==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ hast-util-embedded "^3.0.0"
+ hast-util-minify-whitespace "^1.0.0"
+ hast-util-phrasing "^3.0.0"
+ hast-util-whitespace "^3.0.0"
+ html-whitespace-sensitive-tag-names "^3.0.0"
+ unist-util-visit-parents "^6.0.0"
+
+hast-util-from-dom@^5.0.0:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/hast-util-from-dom/-/hast-util-from-dom-5.0.1.tgz#c3c92fbd8d4e1c1625edeb3a773952b9e4ad64a8"
+ integrity sha512-N+LqofjR2zuzTjCPzyDUdSshy4Ma6li7p/c3pA78uTwzFgENbgbUrm2ugwsOdcjI1muO+o6Dgzp9p8WHtn/39Q==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ hastscript "^9.0.0"
+ web-namespaces "^2.0.0"
+
+hast-util-from-html-isomorphic@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/hast-util-from-html-isomorphic/-/hast-util-from-html-isomorphic-2.0.0.tgz#b31baee386a899a2472326a3c5692f29f86d1d3c"
+ integrity sha512-zJfpXq44yff2hmE0XmwEOzdWin5xwH+QIhMLOScpX91e/NSGPsAzNCvLQDIEPyO2TXi+lBmU6hjLIhV8MwP2kw==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ hast-util-from-dom "^5.0.0"
+ hast-util-from-html "^2.0.0"
+ unist-util-remove-position "^5.0.0"
+
+hast-util-from-html@^2.0.0:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/hast-util-from-html/-/hast-util-from-html-2.0.3.tgz#485c74785358beb80c4ba6346299311ac4c49c82"
+ integrity sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ devlop "^1.1.0"
+ hast-util-from-parse5 "^8.0.0"
+ parse5 "^7.0.0"
+ vfile "^6.0.0"
+ vfile-message "^4.0.0"
+
+hast-util-from-parse5@^8.0.0:
+ version "8.0.3"
+ resolved "https://registry.yarnpkg.com/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz#830a35022fff28c3fea3697a98c2f4cc6b835a2e"
+ integrity sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ "@types/unist" "^3.0.0"
+ devlop "^1.0.0"
+ hastscript "^9.0.0"
+ property-information "^7.0.0"
+ vfile "^6.0.0"
+ vfile-location "^5.0.0"
+ web-namespaces "^2.0.0"
+
+hast-util-has-property@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/hast-util-has-property/-/hast-util-has-property-3.0.0.tgz#4e595e3cddb8ce530ea92f6fc4111a818d8e7f93"
+ integrity sha512-MNilsvEKLFpV604hwfhVStK0usFY/QmM5zX16bo7EjnAEGofr5YyI37kzopBlZJkHD4t887i+q/C8/tr5Q94cA==
+ dependencies:
+ "@types/hast" "^3.0.0"
+
+hast-util-is-body-ok-link@^3.0.0:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/hast-util-is-body-ok-link/-/hast-util-is-body-ok-link-3.0.1.tgz#ef63cb2f14f04ecf775139cd92bda5026380d8b4"
+ integrity sha512-0qpnzOBLztXHbHQenVB8uNuxTnm/QBFUOmdOSsEn7GnBtyY07+ENTWVFBAnXd/zEgd9/SUG3lRY7hSIBWRgGpQ==
+ dependencies:
+ "@types/hast" "^3.0.0"
+
+hast-util-is-element@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/hast-util-is-element/-/hast-util-is-element-3.0.0.tgz#6e31a6532c217e5b533848c7e52c9d9369ca0932"
+ integrity sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==
+ dependencies:
+ "@types/hast" "^3.0.0"
+
+hast-util-minify-whitespace@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/hast-util-minify-whitespace/-/hast-util-minify-whitespace-1.0.1.tgz#7588fd1a53f48f1d30406b81959dffc3650daf55"
+ integrity sha512-L96fPOVpnclQE0xzdWb/D12VT5FabA7SnZOUMtL1DbXmYiHJMXZvFkIZfiMmTCNJHUeO2K9UYNXoVyfz+QHuOw==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ hast-util-embedded "^3.0.0"
+ hast-util-is-element "^3.0.0"
+ hast-util-whitespace "^3.0.0"
+ unist-util-is "^6.0.0"
+
+hast-util-parse-selector@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz#352879fa86e25616036037dd8931fb5f34cb4a27"
+ integrity sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==
+ dependencies:
+ "@types/hast" "^3.0.0"
+
+hast-util-phrasing@^3.0.0:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/hast-util-phrasing/-/hast-util-phrasing-3.0.1.tgz#fa284c0cd4a82a0dd6020de8300a7b1ebffa1690"
+ integrity sha512-6h60VfI3uBQUxHqTyMymMZnEbNl1XmEGtOxxKYL7stY2o601COo62AWAYBQR9lZbYXYSBoxag8UpPRXK+9fqSQ==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ hast-util-embedded "^3.0.0"
+ hast-util-has-property "^3.0.0"
+ hast-util-is-body-ok-link "^3.0.0"
+ hast-util-is-element "^3.0.0"
+
+hast-util-raw@^9.0.0:
+ version "9.1.0"
+ resolved "https://registry.yarnpkg.com/hast-util-raw/-/hast-util-raw-9.1.0.tgz#79b66b26f6f68fb50dfb4716b2cdca90d92adf2e"
+ integrity sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ "@types/unist" "^3.0.0"
+ "@ungap/structured-clone" "^1.0.0"
+ hast-util-from-parse5 "^8.0.0"
+ hast-util-to-parse5 "^8.0.0"
+ html-void-elements "^3.0.0"
+ mdast-util-to-hast "^13.0.0"
+ parse5 "^7.0.0"
+ unist-util-position "^5.0.0"
+ unist-util-visit "^5.0.0"
+ vfile "^6.0.0"
+ web-namespaces "^2.0.0"
+ zwitch "^2.0.0"
+
+hast-util-sanitize@^5.0.0:
+ version "5.0.2"
+ resolved "https://registry.yarnpkg.com/hast-util-sanitize/-/hast-util-sanitize-5.0.2.tgz#edb260d94e5bba2030eb9375790a8753e5bf391f"
+ integrity sha512-3yTWghByc50aGS7JlGhk61SPenfE/p1oaFeNwkOOyrscaOkMGrcW9+Cy/QAIOBpZxP1yqDIzFMR0+Np0i0+usg==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ "@ungap/structured-clone" "^1.0.0"
+ unist-util-position "^5.0.0"
+
+hast-util-to-estree@^2.0.0:
+ version "2.3.3"
+ resolved "https://registry.yarnpkg.com/hast-util-to-estree/-/hast-util-to-estree-2.3.3.tgz#da60142ffe19a6296923ec222aba73339c8bf470"
+ integrity sha512-ihhPIUPxN0v0w6M5+IiAZZrn0LH2uZomeWwhn7uP7avZC6TE7lIiEh2yBMPr5+zi1aUCXq6VoYRgs2Bw9xmycQ==
+ dependencies:
+ "@types/estree" "^1.0.0"
+ "@types/estree-jsx" "^1.0.0"
+ "@types/hast" "^2.0.0"
+ "@types/unist" "^2.0.0"
+ comma-separated-tokens "^2.0.0"
+ estree-util-attach-comments "^2.0.0"
+ estree-util-is-identifier-name "^2.0.0"
+ hast-util-whitespace "^2.0.0"
+ mdast-util-mdx-expression "^1.0.0"
+ mdast-util-mdxjs-esm "^1.0.0"
+ property-information "^6.0.0"
+ space-separated-tokens "^2.0.0"
+ style-to-object "^0.4.1"
+ unist-util-position "^4.0.0"
+ zwitch "^2.0.0"
+
+hast-util-to-html@^9.0.0:
+ version "9.0.5"
+ resolved "https://registry.yarnpkg.com/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz#ccc673a55bb8e85775b08ac28380f72d47167005"
+ integrity sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ "@types/unist" "^3.0.0"
+ ccount "^2.0.0"
+ comma-separated-tokens "^2.0.0"
+ hast-util-whitespace "^3.0.0"
+ html-void-elements "^3.0.0"
+ mdast-util-to-hast "^13.0.0"
+ property-information "^7.0.0"
+ space-separated-tokens "^2.0.0"
+ stringify-entities "^4.0.0"
+ zwitch "^2.0.4"
+
+hast-util-to-jsx-runtime@^2.0.0:
+ version "2.3.6"
+ resolved "https://registry.yarnpkg.com/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz#ff31897aae59f62232e21594eac7ef6b63333e98"
+ integrity sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==
+ dependencies:
+ "@types/estree" "^1.0.0"
+ "@types/hast" "^3.0.0"
+ "@types/unist" "^3.0.0"
+ comma-separated-tokens "^2.0.0"
+ devlop "^1.0.0"
+ estree-util-is-identifier-name "^3.0.0"
+ hast-util-whitespace "^3.0.0"
+ mdast-util-mdx-expression "^2.0.0"
+ mdast-util-mdx-jsx "^3.0.0"
+ mdast-util-mdxjs-esm "^2.0.0"
+ property-information "^7.0.0"
+ space-separated-tokens "^2.0.0"
+ style-to-js "^1.0.0"
+ unist-util-position "^5.0.0"
+ vfile-message "^4.0.0"
+
+hast-util-to-parse5@^8.0.0:
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/hast-util-to-parse5/-/hast-util-to-parse5-8.0.0.tgz#477cd42d278d4f036bc2ea58586130f6f39ee6ed"
+ integrity sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ comma-separated-tokens "^2.0.0"
+ devlop "^1.0.0"
+ property-information "^6.0.0"
+ space-separated-tokens "^2.0.0"
+ web-namespaces "^2.0.0"
+ zwitch "^2.0.0"
+
+hast-util-to-text@^4.0.0:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/hast-util-to-text/-/hast-util-to-text-4.0.2.tgz#57b676931e71bf9cb852453678495b3080bfae3e"
+ integrity sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ "@types/unist" "^3.0.0"
+ hast-util-is-element "^3.0.0"
+ unist-util-find-after "^5.0.0"
+
+hast-util-whitespace@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-2.0.1.tgz#0ec64e257e6fc216c7d14c8a1b74d27d650b4557"
+ integrity sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==
+
+hast-util-whitespace@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz#7778ed9d3c92dd9e8c5c8f648a49c21fc51cb621"
+ integrity sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==
+ dependencies:
+ "@types/hast" "^3.0.0"
+
+hastscript@^9.0.0:
+ version "9.0.1"
+ resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-9.0.1.tgz#dbc84bef6051d40084342c229c451cd9dc567dff"
+ integrity sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ comma-separated-tokens "^2.0.0"
+ hast-util-parse-selector "^4.0.0"
+ property-information "^7.0.0"
+ space-separated-tokens "^2.0.0"
+
+highlight.js@~11.11.0:
+ version "11.11.1"
+ resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-11.11.1.tgz#fca06fa0e5aeecf6c4d437239135fabc15213585"
+ integrity sha512-Xwwo44whKBVCYoliBQwaPvtd/2tYFkRQtXDWj1nackaV2JPXx3L0+Jvd8/qCJ2p+ML0/XVkJ2q+Mr+UVdpJK5w==
+
+homedir-polyfill@^1.0.1:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8"
+ integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==
+ dependencies:
+ parse-passwd "^1.0.0"
+
+hookable@^5.5.3:
+ version "5.5.3"
+ resolved "https://registry.yarnpkg.com/hookable/-/hookable-5.5.3.tgz#6cfc358984a1ef991e2518cb9ed4a778bbd3215d"
+ integrity sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==
+
+html-url-attributes@^3.0.0:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/html-url-attributes/-/html-url-attributes-3.0.1.tgz#83b052cd5e437071b756cd74ae70f708870c2d87"
+ integrity sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==
+
+html-void-elements@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-3.0.0.tgz#fc9dbd84af9e747249034d4d62602def6517f1d7"
+ integrity sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==
+
+html-whitespace-sensitive-tag-names@^3.0.0:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/html-whitespace-sensitive-tag-names/-/html-whitespace-sensitive-tag-names-3.0.1.tgz#c35edd28205f3bf8c1fd03274608d60b923de5b2"
+ integrity sha512-q+310vW8zmymYHALr1da4HyXUQ0zgiIwIicEfotYPWGN0OJVEN/58IJ3A4GBYcEq3LGAZqKb+ugvP0GNB9CEAA==
+
+httpsnippet-lite@^3.0.5:
+ version "3.0.5"
+ resolved "https://registry.yarnpkg.com/httpsnippet-lite/-/httpsnippet-lite-3.0.5.tgz#af937fa37d3f34e333a1f68e64f906c0fe48c992"
+ integrity sha512-So4qTXY5iFj5XtFDwyz2PicUu+8NWrI8e8h+ZeZoVtMNcFQp4FFIntBHUE+JPUG6QQU8o1VHCy+X4ETRDwt9CA==
+ dependencies:
+ "@types/har-format" "^1.2.10"
+ formdata-node "^4.4.1"
+ stringify-object "3.3.0"
+
+iconv-lite@0.6:
+ version "0.6.3"
+ resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501"
+ integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==
+ dependencies:
+ safer-buffer ">= 2.1.2 < 3.0.0"
+
+iconv-lite@^0.7.0:
+ version "0.7.0"
+ resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.7.0.tgz#c50cd80e6746ca8115eb98743afa81aa0e147a3e"
+ integrity sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==
+ dependencies:
+ safer-buffer ">= 2.1.2 < 3.0.0"
+
+ieee754@^1.1.13:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
+ integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
+
+ignore@^5.2.0:
+ version "5.3.2"
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.2.tgz#3cd40e729f3643fd87cb04e50bf0eb722bc596f5"
+ integrity sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==
+
+ignore@^7.0.3:
+ version "7.0.5"
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-7.0.5.tgz#4cb5f6cd7d4c7ab0365738c7aea888baa6d7efd9"
+ integrity sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==
+
+immutable@^5.0.2:
+ version "5.1.3"
+ resolved "https://registry.yarnpkg.com/immutable/-/immutable-5.1.3.tgz#e6486694c8b76c37c063cca92399fa64098634d4"
+ integrity sha512-+chQdDfvscSF1SJqv2gn4SRO2ZyS3xL3r7IW/wWEEzrzLisnOlKiQu5ytC/BVNcS15C39WT2Hg/bjKjDMcu+zg==
+
+import-fresh@^3.2.1:
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.1.tgz#9cecb56503c0ada1f2741dbbd6546e4b13b57ccf"
+ integrity sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==
+ dependencies:
+ parent-module "^1.0.0"
+ resolve-from "^4.0.0"
+
+imurmurhash@^0.1.4:
+ version "0.1.4"
+ resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
+ integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==
+
+indent-string@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251"
+ integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==
+
+inflight@^1.0.4:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
+ integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
+ dependencies:
+ once "^1.3.0"
+ wrappy "1"
+
+inherits@2, inherits@^2.0.3, inherits@^2.0.4:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
+ integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
+
+inherits@2.0.3:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
+ integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==
+
+ini@^1.3.4:
+ version "1.3.8"
+ resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c"
+ integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==
+
+inline-style-parser@0.1.1:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.1.1.tgz#ec8a3b429274e9c0a1f1c4ffa9453a7fef72cea1"
+ integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==
+
+inline-style-parser@0.2.4:
+ version "0.2.4"
+ resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.2.4.tgz#f4af5fe72e612839fcd453d989a586566d695f22"
+ integrity sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==
+
+inquirer@^9.3.8:
+ version "9.3.8"
+ resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-9.3.8.tgz#a0c81ba04e1525776677e4e667ab117aefb19608"
+ integrity sha512-pFGGdaHrmRKMh4WoDDSowddgjT1Vkl90atobmTeSmcPGdYiwikch/m/Ef5wRaiamHejtw0cUUMMerzDUXCci2w==
+ dependencies:
+ "@inquirer/external-editor" "^1.0.2"
+ "@inquirer/figures" "^1.0.3"
+ ansi-escapes "^4.3.2"
+ cli-width "^4.1.0"
+ mute-stream "1.0.0"
+ ora "^5.4.1"
+ run-async "^3.0.0"
+ rxjs "^7.8.1"
+ string-width "^4.2.3"
+ strip-ansi "^6.0.1"
+ wrap-ansi "^6.2.0"
+ yoctocolors-cjs "^2.1.2"
+
+internal-slot@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.1.0.tgz#1eac91762947d2f7056bc838d93e13b2e9604961"
+ integrity sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==
+ dependencies:
+ es-errors "^1.3.0"
+ hasown "^2.0.2"
+ side-channel "^1.1.0"
+
+"internmap@1 - 2":
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/internmap/-/internmap-2.0.3.tgz#6685f23755e43c524e251d29cbc97248e3061009"
+ integrity sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==
+
+internmap@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/internmap/-/internmap-1.0.1.tgz#0017cc8a3b99605f0302f2b198d272e015e5df95"
+ integrity sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==
+
+interpret@^3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/interpret/-/interpret-3.1.1.tgz#5be0ceed67ca79c6c4bc5cf0d7ee843dcea110c4"
+ integrity sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==
+
+intersection-observer@^0.12.2:
+ version "0.12.2"
+ resolved "https://registry.yarnpkg.com/intersection-observer/-/intersection-observer-0.12.2.tgz#4a45349cc0cd91916682b1f44c28d7ec737dc375"
+ integrity sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==
+
+is-absolute-url@^4.0.0:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-4.0.1.tgz#16e4d487d4fded05cfe0685e53ec86804a5e94dc"
+ integrity sha512-/51/TKE88Lmm7Gc4/8btclNXWS+g50wXhYJq8HWIBAGUBnoAdRu1aXeh364t/O7wXDAcTJDP8PNuNKWUDWie+A==
+
+is-absolute@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576"
+ integrity sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==
+ dependencies:
+ is-relative "^1.0.0"
+ is-windows "^1.0.1"
+
+is-alphabetical@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-2.0.1.tgz#01072053ea7c1036df3c7d19a6daaec7f19e789b"
+ integrity sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==
+
+is-alphanumerical@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz#7c03fbe96e3e931113e57f964b0a368cc2dfd875"
+ integrity sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==
+ dependencies:
+ is-alphabetical "^2.0.0"
+ is-decimal "^2.0.0"
+
+is-array-buffer@^3.0.4, is-array-buffer@^3.0.5:
+ version "3.0.5"
+ resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.5.tgz#65742e1e687bd2cc666253068fd8707fe4d44280"
+ integrity sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==
+ dependencies:
+ call-bind "^1.0.8"
+ call-bound "^1.0.3"
+ get-intrinsic "^1.2.6"
+
+is-arrayish@^0.3.1:
+ version "0.3.4"
+ resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.4.tgz#1ee5553818511915685d33bb13d31bf854e5059d"
+ integrity sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==
+
+is-async-function@^2.0.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/is-async-function/-/is-async-function-2.1.1.tgz#3e69018c8e04e73b738793d020bfe884b9fd3523"
+ integrity sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==
+ dependencies:
+ async-function "^1.0.0"
+ call-bound "^1.0.3"
+ get-proto "^1.0.1"
+ has-tostringtag "^1.0.2"
+ safe-regex-test "^1.1.0"
+
+is-bigint@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.1.0.tgz#dda7a3445df57a42583db4228682eba7c4170672"
+ integrity sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==
+ dependencies:
+ has-bigints "^1.0.2"
+
+is-binary-path@~2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
+ integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
+ dependencies:
+ binary-extensions "^2.0.0"
+
+is-boolean-object@^1.2.1:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.2.2.tgz#7067f47709809a393c71ff5bb3e135d8a9215d9e"
+ integrity sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==
+ dependencies:
+ call-bound "^1.0.3"
+ has-tostringtag "^1.0.2"
+
+is-buffer@^2.0.0:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191"
+ integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==
+
+is-bun-module@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/is-bun-module/-/is-bun-module-2.0.0.tgz#4d7859a87c0fcac950c95e666730e745eae8bddd"
+ integrity sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==
+ dependencies:
+ semver "^7.7.1"
+
+is-callable@^1.2.7:
+ version "1.2.7"
+ resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055"
+ integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
+
+is-core-module@^2.13.0, is-core-module@^2.16.0, is-core-module@^2.16.1:
+ version "2.16.1"
+ resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.16.1.tgz#2a98801a849f43e2add644fbb6bc6229b19a4ef4"
+ integrity sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==
+ dependencies:
+ hasown "^2.0.2"
+
+is-data-view@^1.0.1, is-data-view@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.2.tgz#bae0a41b9688986c2188dda6657e56b8f9e63b8e"
+ integrity sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==
+ dependencies:
+ call-bound "^1.0.2"
+ get-intrinsic "^1.2.6"
+ is-typed-array "^1.1.13"
+
+is-date-object@^1.0.5, is-date-object@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.1.0.tgz#ad85541996fc7aa8b2729701d27b7319f95d82f7"
+ integrity sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==
+ dependencies:
+ call-bound "^1.0.2"
+ has-tostringtag "^1.0.2"
+
+is-decimal@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-2.0.1.tgz#9469d2dc190d0214fd87d78b78caecc0cc14eef7"
+ integrity sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==
+
+is-extendable@^0.1.0:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
+ integrity sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==
+
+is-extglob@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
+ integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
+
+is-finalizationregistry@^1.1.0:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz#eefdcdc6c94ddd0674d9c85887bf93f944a97c90"
+ integrity sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==
+ dependencies:
+ call-bound "^1.0.3"
+
+is-fullwidth-code-point@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
+ integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
+
+is-generator-function@^1.0.10:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.1.0.tgz#bf3eeda931201394f57b5dba2800f91a238309ca"
+ integrity sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==
+ dependencies:
+ call-bound "^1.0.3"
+ get-proto "^1.0.0"
+ has-tostringtag "^1.0.2"
+ safe-regex-test "^1.1.0"
+
+is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
+ integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
+ dependencies:
+ is-extglob "^2.1.1"
+
+is-hexadecimal@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz#86b5bf668fca307498d319dfc03289d781a90027"
+ integrity sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==
+
+is-interactive@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-interactive/-/is-interactive-1.0.0.tgz#cea6e6ae5c870a7b0a0004070b7b587e0252912e"
+ integrity sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==
+
+is-map@^2.0.3:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz#ede96b7fe1e270b3c4465e3a465658764926d62e"
+ integrity sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==
+
+is-negative-zero@^2.0.3:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747"
+ integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==
+
+is-number-object@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.1.1.tgz#144b21e95a1bc148205dcc2814a9134ec41b2541"
+ integrity sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==
+ dependencies:
+ call-bound "^1.0.3"
+ has-tostringtag "^1.0.2"
+
+is-number@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
+ integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
+
+is-obj@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
+ integrity sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg==
+
+is-obj@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-3.0.0.tgz#b0889f1f9f8cb87e87df53a8d1230a2250f8b9be"
+ integrity sha512-IlsXEHOjtKhpN8r/tRFj2nDyTmHvcfNeu/nrRIcXE17ROeatXchkojffa1SpdqW4cr/Fj6QkEf/Gn4zf6KKvEQ==
+
+is-path-inside@^3.0.3:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283"
+ integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
+
+is-plain-obj@^4.0.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-4.1.0.tgz#d65025edec3657ce032fd7db63c97883eaed71f0"
+ integrity sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==
+
+is-plain-object@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344"
+ integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==
+
+is-reference@^3.0.0:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-3.0.3.tgz#9ef7bf9029c70a67b2152da4adf57c23d718910f"
+ integrity sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==
+ dependencies:
+ "@types/estree" "^1.0.6"
+
+is-regex@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.2.1.tgz#76d70a3ed10ef9be48eb577887d74205bf0cad22"
+ integrity sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==
+ dependencies:
+ call-bound "^1.0.2"
+ gopd "^1.2.0"
+ has-tostringtag "^1.0.2"
+ hasown "^2.0.2"
+
+is-regexp@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069"
+ integrity sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA==
+
+is-relative@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d"
+ integrity sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==
+ dependencies:
+ is-unc-path "^1.0.0"
+
+is-set@^2.0.3:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.3.tgz#8ab209ea424608141372ded6e0cb200ef1d9d01d"
+ integrity sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==
+
+is-shared-array-buffer@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz#9b67844bd9b7f246ba0708c3a93e34269c774f6f"
+ integrity sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==
+ dependencies:
+ call-bound "^1.0.3"
+
+is-ssh@^1.4.0:
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/is-ssh/-/is-ssh-1.4.1.tgz#76de1cdbe8f92a8b905d1a172b6bc09704c20396"
+ integrity sha512-JNeu1wQsHjyHgn9NcWTaXq6zWSR6hqE0++zhfZlkFBbScNkyvxCdeV8sRkSBaeLKxmbpR21brail63ACNxJ0Tg==
+ dependencies:
+ protocols "^2.0.1"
+
+is-stream@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
+ integrity sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==
+
+is-string@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.1.1.tgz#92ea3f3d5c5b6e039ca8677e5ac8d07ea773cbb9"
+ integrity sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==
+ dependencies:
+ call-bound "^1.0.3"
+ has-tostringtag "^1.0.2"
+
+is-symbol@^1.0.4, is-symbol@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.1.1.tgz#f47761279f532e2b05a7024a7506dbbedacd0634"
+ integrity sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==
+ dependencies:
+ call-bound "^1.0.2"
+ has-symbols "^1.1.0"
+ safe-regex-test "^1.1.0"
+
+is-typed-array@^1.1.13, is-typed-array@^1.1.14, is-typed-array@^1.1.15:
+ version "1.1.15"
+ resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.15.tgz#4bfb4a45b61cee83a5a46fba778e4e8d59c0ce0b"
+ integrity sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==
+ dependencies:
+ which-typed-array "^1.1.16"
+
+is-unc-path@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d"
+ integrity sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==
+ dependencies:
+ unc-path-regex "^0.1.2"
+
+is-unicode-supported@^0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7"
+ integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==
+
+is-weakmap@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz#bf72615d649dfe5f699079c54b83e47d1ae19cfd"
+ integrity sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==
+
+is-weakref@^1.0.2, is-weakref@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.1.1.tgz#eea430182be8d64174bd96bffbc46f21bf3f9293"
+ integrity sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==
+ dependencies:
+ call-bound "^1.0.3"
+
+is-weakset@^2.0.3:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.4.tgz#c9f5deb0bc1906c6d6f1027f284ddf459249daca"
+ integrity sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==
+ dependencies:
+ call-bound "^1.0.3"
+ get-intrinsic "^1.2.6"
+
+is-windows@^1.0.1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
+ integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==
+
+isarray@^2.0.5:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723"
+ integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==
+
+isbinaryfile@^5.0.6:
+ version "5.0.6"
+ resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-5.0.6.tgz#01eac28867aeffaebaee7eaf21d1dd3a67d7c0c7"
+ integrity sha512-I+NmIfBHUl+r2wcDd6JwE9yWje/PIVY/R5/CmV8dXLZd5K+L9X2klAOwfAHNnondLXkbHyTAleQAWonpTJBTtw==
+
+isexe@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
+ integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
+
+isobject@^3.0.0, isobject@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
+ integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==
+
+isomorphic.js@^0.2.4:
+ version "0.2.5"
+ resolved "https://registry.yarnpkg.com/isomorphic.js/-/isomorphic.js-0.2.5.tgz#13eecf36f2dba53e85d355e11bf9d4208c6f7f88"
+ integrity sha512-PIeMbHqMt4DnUP3MA/Flc0HElYjMXArsw1qwJZcm9sqR8mq3l8NYizFMty0pWwE/tzIGH3EKK5+jes5mAr85yw==
+
+iterator.prototype@^1.1.4:
+ version "1.1.5"
+ resolved "https://registry.yarnpkg.com/iterator.prototype/-/iterator.prototype-1.1.5.tgz#12c959a29de32de0aa3bbbb801f4d777066dae39"
+ integrity sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==
+ dependencies:
+ define-data-property "^1.1.4"
+ es-object-atoms "^1.0.0"
+ get-intrinsic "^1.2.6"
+ get-proto "^1.0.0"
+ has-symbols "^1.1.0"
+ set-function-name "^2.0.2"
+
+jackspeak@^2.3.5:
+ version "2.3.6"
+ resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.3.6.tgz#647ecc472238aee4b06ac0e461acc21a8c505ca8"
+ integrity sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==
+ dependencies:
+ "@isaacs/cliui" "^8.0.2"
+ optionalDependencies:
+ "@pkgjs/parseargs" "^0.11.0"
+
+jackspeak@^3.1.2:
+ version "3.4.3"
+ resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz#8833a9d89ab4acde6188942bd1c53b6390ed5a8a"
+ integrity sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==
+ dependencies:
+ "@isaacs/cliui" "^8.0.2"
+ optionalDependencies:
+ "@pkgjs/parseargs" "^0.11.0"
+
+jiti@^1.21.6:
+ version "1.21.7"
+ resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.21.7.tgz#9dd81043424a3d28458b193d965f0d18a2300ba9"
+ integrity sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==
+
+"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
+ integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
+
+js-yaml@^3.13.1:
+ version "3.14.1"
+ resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537"
+ integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==
+ dependencies:
+ argparse "^1.0.7"
+ esprima "^4.0.0"
+
+js-yaml@^4.0.0, js-yaml@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
+ integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
+ dependencies:
+ argparse "^2.0.1"
+
+json-buffer@3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13"
+ integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==
+
+json-schema-traverse@^0.4.1:
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
+ integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
+
+json-schema-traverse@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2"
+ integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==
+
+json-stable-stringify-without-jsonify@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
+ integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==
+
+json5@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593"
+ integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==
+ dependencies:
+ minimist "^1.2.0"
+
+jsonc-parser@^3.2.0:
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.3.1.tgz#f2a524b4f7fd11e3d791e559977ad60b98b798b4"
+ integrity sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==
+
+jsonp@^0.2.1:
+ version "0.2.1"
+ resolved "https://registry.yarnpkg.com/jsonp/-/jsonp-0.2.1.tgz#a65b4fa0f10bda719a05441ea7b94c55f3e15bae"
+ integrity sha512-pfog5gdDxPdV4eP7Kg87M8/bHgshlZ5pybl+yKxAnCZ5O7lCIn7Ixydj03wOlnDQesky2BPyA91SQ+5Y/mNwzw==
+ dependencies:
+ debug "^2.1.3"
+
+jsonpointer@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-5.0.1.tgz#2110e0af0900fd37467b5907ecd13a7884a1b559"
+ integrity sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==
+
+"jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.5:
+ version "3.3.5"
+ resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz#4766bd05a8e2a11af222becd19e15575e52a853a"
+ integrity sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==
+ dependencies:
+ array-includes "^3.1.6"
+ array.prototype.flat "^1.3.1"
+ object.assign "^4.1.4"
+ object.values "^1.1.6"
+
+katex@^0.16.0, katex@^0.16.22, katex@^0.16.9:
+ version "0.16.22"
+ resolved "https://registry.yarnpkg.com/katex/-/katex-0.16.22.tgz#d2b3d66464b1e6d69e6463b28a86ced5a02c5ccd"
+ integrity sha512-XCHRdUw4lf3SKBaJe4EvgqIuWwkPSo9XoeO8GjQW94Bp7TWv9hNhzZjZ+OH9yf1UmLygb7DIT5GSFQiyt16zYg==
+ dependencies:
+ commander "^8.3.0"
+
+keyv@^4.5.3:
+ version "4.5.4"
+ resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93"
+ integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==
+ dependencies:
+ json-buffer "3.0.1"
+
+khroma@^2.0.0, khroma@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/khroma/-/khroma-2.1.0.tgz#45f2ce94ce231a437cf5b63c2e886e6eb42bbbb1"
+ integrity sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==
+
+kind-of@^6.0.0, kind-of@^6.0.2:
+ version "6.0.3"
+ resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
+ integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
+
+kleur@^4.0.3:
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780"
+ integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==
+
+kolorist@^1.8.0:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/kolorist/-/kolorist-1.8.0.tgz#edddbbbc7894bc13302cdf740af6374d4a04743c"
+ integrity sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==
+
+langium@3.3.1:
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/langium/-/langium-3.3.1.tgz#da745a40d5ad8ee565090fed52eaee643be4e591"
+ integrity sha512-QJv/h939gDpvT+9SiLVlY7tZC3xB2qK57v0J04Sh9wpMb6MP1q8gB21L3WIo8T5P1MSMg3Ep14L7KkDCFG3y4w==
+ dependencies:
+ chevrotain "~11.0.3"
+ chevrotain-allstar "~0.3.0"
+ vscode-languageserver "~9.0.1"
+ vscode-languageserver-textdocument "~1.0.11"
+ vscode-uri "~3.0.8"
+
+language-subtag-registry@^0.3.20:
+ version "0.3.23"
+ resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz#23529e04d9e3b74679d70142df3fd2eb6ec572e7"
+ integrity sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==
+
+language-tags@^1.0.9:
+ version "1.0.9"
+ resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.9.tgz#1ffdcd0ec0fafb4b1be7f8b11f306ad0f9c08777"
+ integrity sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==
+ dependencies:
+ language-subtag-registry "^0.3.20"
+
+layout-base@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/layout-base/-/layout-base-1.0.2.tgz#1291e296883c322a9dd4c5dd82063721b53e26e2"
+ integrity sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==
+
+layout-base@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/layout-base/-/layout-base-2.0.1.tgz#d0337913586c90f9c2c075292069f5c2da5dd285"
+ integrity sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg==
+
+leven@^4.0.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/leven/-/leven-4.1.0.tgz#1e37150e1711d18bb14e380a5c779995235a710e"
+ integrity sha512-KZ9W9nWDT7rF7Dazg8xyLHGLrmpgq2nVNFUckhqdW3szVP6YhCpp/RAnpmVExA9JvrMynjwSLVrEj3AepHR6ew==
+
+levn@^0.4.1:
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
+ integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
+ dependencies:
+ prelude-ls "^1.2.1"
+ type-check "~0.4.0"
+
+lib0@^0.2.42:
+ version "0.2.114"
+ resolved "https://registry.yarnpkg.com/lib0/-/lib0-0.2.114.tgz#0b0e55c3ffa8768fe3d9efca971059f465db4baf"
+ integrity sha512-gcxmNFzA4hv8UYi8j43uPlQ7CGcyMJ2KQb5kZASw6SnAKAf10hK12i2fjrS3Cl/ugZa5Ui6WwIu1/6MIXiHttQ==
+ dependencies:
+ isomorphic.js "^0.2.4"
+
+liftoff@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-5.0.1.tgz#e2329e7f1e19e98c8dba71185f2078e6dbbc5c1f"
+ integrity sha512-wwLXMbuxSF8gMvubFcFRp56lkFV69twvbU5vDPbaw+Q+/rF8j0HKjGbIdlSi+LuJm9jf7k9PB+nTxnsLMPcv2Q==
+ dependencies:
+ extend "^3.0.2"
+ findup-sync "^5.0.0"
+ fined "^2.0.0"
+ flagged-respawn "^2.0.0"
+ is-plain-object "^5.0.0"
+ rechoir "^0.8.0"
+ resolve "^1.20.0"
+
+lilconfig@^3.0.0, lilconfig@^3.1.3:
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.1.3.tgz#a1bcfd6257f9585bf5ae14ceeebb7b559025e4c4"
+ integrity sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==
+
+lines-and-columns@^1.1.6:
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632"
+ integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
+
+local-pkg@^1.1.1:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/local-pkg/-/local-pkg-1.1.2.tgz#c03d208787126445303f8161619dc701afa4abb5"
+ integrity sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==
+ dependencies:
+ mlly "^1.7.4"
+ pkg-types "^2.3.0"
+ quansync "^0.2.11"
+
+locate-path@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286"
+ integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
+ dependencies:
+ p-locate "^5.0.0"
+
+lodash-es@4.17.21, lodash-es@^4.17.21:
+ version "4.17.21"
+ resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.21.tgz#43e626c46e6591b7750beb2b50117390c609e3ee"
+ integrity sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==
+
+lodash.get@^4.4.2:
+ version "4.4.2"
+ resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99"
+ integrity sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==
+
+lodash.merge@^4.6.2:
+ version "4.6.2"
+ resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
+ integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
+
+lodash@^4.17.21:
+ version "4.17.21"
+ resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
+ integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
+
+log-symbols@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503"
+ integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==
+ dependencies:
+ chalk "^4.1.0"
+ is-unicode-supported "^0.1.0"
+
+longest-streak@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-3.1.0.tgz#62fa67cd958742a1574af9f39866364102d90cd4"
+ integrity sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==
+
+loose-envify@^1.1.0, loose-envify@^1.4.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
+ integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
+ dependencies:
+ js-tokens "^3.0.0 || ^4.0.0"
+
+loupe@^3.1.0, loupe@^3.1.1, loupe@^3.1.2:
+ version "3.2.1"
+ resolved "https://registry.yarnpkg.com/loupe/-/loupe-3.2.1.tgz#0095cf56dc5b7a9a7c08ff5b1a8796ec8ad17e76"
+ integrity sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==
+
+lowlight@^3.0.0:
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/lowlight/-/lowlight-3.3.0.tgz#007b8a5bfcfd27cc65b96246d2de3e9dd4e23c6c"
+ integrity sha512-0JNhgFoPvP6U6lE/UdVsSq99tn6DhjjpAj5MxG49ewd2mOBVtwWYIT8ClyABhq198aXXODMU6Ox8DrGy/CpTZQ==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ devlop "^1.0.0"
+ highlight.js "~11.11.0"
+
+lru-cache@^10.2.0:
+ version "10.4.3"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119"
+ integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==
+
+lru-cache@^4.0.1:
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"
+ integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==
+ dependencies:
+ pseudomap "^1.0.2"
+ yallist "^2.1.2"
+
+lucide-react@^0.522.0:
+ version "0.522.0"
+ resolved "https://registry.yarnpkg.com/lucide-react/-/lucide-react-0.522.0.tgz#c0951dd32936b6a7bcc474a829a251fede0bdfbd"
+ integrity sha512-jnJbw974yZ7rQHHEFKJOlWAefG3ATSCZHANZxIdx8Rk/16siuwjgA4fBULpXEAWx/RlTs3FzmKW/udWUuO0aRw==
+
+lz-string@^1.5.0:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.5.0.tgz#c1ab50f77887b712621201ba9fd4e3a6ed099941"
+ integrity sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==
+
+map-cache@^0.2.0:
+ version "0.2.2"
+ resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
+ integrity sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==
+
+markdown-extensions@^1.0.0:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/markdown-extensions/-/markdown-extensions-1.1.1.tgz#fea03b539faeaee9b4ef02a3769b455b189f7fc3"
+ integrity sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==
+
+markdown-table@^3.0.0:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-3.0.4.tgz#fe44d6d410ff9d6f2ea1797a3f60aa4d2b631c2a"
+ integrity sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==
+
+marked@^16.2.1:
+ version "16.3.0"
+ resolved "https://registry.yarnpkg.com/marked/-/marked-16.3.0.tgz#2f513891f867d6edc4772b4a026db9cc331eb94f"
+ integrity sha512-K3UxuKu6l6bmA5FUwYho8CfJBlsUWAooKtdGgMcERSpF7gcBUrCGsLH7wDaaNOzwq18JzSUDyoEb/YsrqMac3w==
+
+match-sorter@^6.3.1:
+ version "6.4.0"
+ resolved "https://registry.yarnpkg.com/match-sorter/-/match-sorter-6.4.0.tgz#ae9c166cb3c9efd337690b3160c0e28cb8377c13"
+ integrity sha512-d4664ahzdL1QTTvmK1iI0JsrxWeJ6gn33qkYtnPg3mcn+naBLtXSgSPOe+X2vUgtgGwaAk3eiaj7gwKjjMAq+Q==
+ dependencies:
+ "@babel/runtime" "^7.23.8"
+ remove-accents "0.5.0"
+
+math-intrinsics@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz#a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9"
+ integrity sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==
+
+mdast-util-definitions@^5.0.0:
+ version "5.1.2"
+ resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-5.1.2.tgz#9910abb60ac5d7115d6819b57ae0bcef07a3f7a7"
+ integrity sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==
+ dependencies:
+ "@types/mdast" "^3.0.0"
+ "@types/unist" "^2.0.0"
+ unist-util-visit "^4.0.0"
+
+mdast-util-find-and-replace@^2.0.0:
+ version "2.2.2"
+ resolved "https://registry.yarnpkg.com/mdast-util-find-and-replace/-/mdast-util-find-and-replace-2.2.2.tgz#cc2b774f7f3630da4bd592f61966fecade8b99b1"
+ integrity sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==
+ dependencies:
+ "@types/mdast" "^3.0.0"
+ escape-string-regexp "^5.0.0"
+ unist-util-is "^5.0.0"
+ unist-util-visit-parents "^5.0.0"
+
+mdast-util-find-and-replace@^3.0.0:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz#70a3174c894e14df722abf43bc250cbae44b11df"
+ integrity sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==
+ dependencies:
+ "@types/mdast" "^4.0.0"
+ escape-string-regexp "^5.0.0"
+ unist-util-is "^6.0.0"
+ unist-util-visit-parents "^6.0.0"
+
+mdast-util-from-markdown@^1.0.0, mdast-util-from-markdown@^1.1.0, mdast-util-from-markdown@^1.3.0:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-1.3.1.tgz#9421a5a247f10d31d2faed2a30df5ec89ceafcf0"
+ integrity sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==
+ dependencies:
+ "@types/mdast" "^3.0.0"
+ "@types/unist" "^2.0.0"
+ decode-named-character-reference "^1.0.0"
+ mdast-util-to-string "^3.1.0"
+ micromark "^3.0.0"
+ micromark-util-decode-numeric-character-reference "^1.0.0"
+ micromark-util-decode-string "^1.0.0"
+ micromark-util-normalize-identifier "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+ unist-util-stringify-position "^3.0.0"
+ uvu "^0.5.0"
+
+mdast-util-from-markdown@^2.0.0:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz#4850390ca7cf17413a9b9a0fbefcd1bc0eb4160a"
+ integrity sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==
+ dependencies:
+ "@types/mdast" "^4.0.0"
+ "@types/unist" "^3.0.0"
+ decode-named-character-reference "^1.0.0"
+ devlop "^1.0.0"
+ mdast-util-to-string "^4.0.0"
+ micromark "^4.0.0"
+ micromark-util-decode-numeric-character-reference "^2.0.0"
+ micromark-util-decode-string "^2.0.0"
+ micromark-util-normalize-identifier "^2.0.0"
+ micromark-util-symbol "^2.0.0"
+ micromark-util-types "^2.0.0"
+ unist-util-stringify-position "^4.0.0"
+
+mdast-util-gfm-autolink-literal@^1.0.0:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-1.0.3.tgz#67a13abe813d7eba350453a5333ae1bc0ec05c06"
+ integrity sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==
+ dependencies:
+ "@types/mdast" "^3.0.0"
+ ccount "^2.0.0"
+ mdast-util-find-and-replace "^2.0.0"
+ micromark-util-character "^1.0.0"
+
+mdast-util-gfm-autolink-literal@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz#abd557630337bd30a6d5a4bd8252e1c2dc0875d5"
+ integrity sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==
+ dependencies:
+ "@types/mdast" "^4.0.0"
+ ccount "^2.0.0"
+ devlop "^1.0.0"
+ mdast-util-find-and-replace "^3.0.0"
+ micromark-util-character "^2.0.0"
+
+mdast-util-gfm-footnote@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-1.0.2.tgz#ce5e49b639c44de68d5bf5399877a14d5020424e"
+ integrity sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==
+ dependencies:
+ "@types/mdast" "^3.0.0"
+ mdast-util-to-markdown "^1.3.0"
+ micromark-util-normalize-identifier "^1.0.0"
+
+mdast-util-gfm-footnote@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz#7778e9d9ca3df7238cc2bd3fa2b1bf6a65b19403"
+ integrity sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==
+ dependencies:
+ "@types/mdast" "^4.0.0"
+ devlop "^1.1.0"
+ mdast-util-from-markdown "^2.0.0"
+ mdast-util-to-markdown "^2.0.0"
+ micromark-util-normalize-identifier "^2.0.0"
+
+mdast-util-gfm-strikethrough@^1.0.0:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-1.0.3.tgz#5470eb105b483f7746b8805b9b989342085795b7"
+ integrity sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==
+ dependencies:
+ "@types/mdast" "^3.0.0"
+ mdast-util-to-markdown "^1.3.0"
+
+mdast-util-gfm-strikethrough@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz#d44ef9e8ed283ac8c1165ab0d0dfd058c2764c16"
+ integrity sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==
+ dependencies:
+ "@types/mdast" "^4.0.0"
+ mdast-util-from-markdown "^2.0.0"
+ mdast-util-to-markdown "^2.0.0"
+
+mdast-util-gfm-table@^1.0.0:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/mdast-util-gfm-table/-/mdast-util-gfm-table-1.0.7.tgz#3552153a146379f0f9c4c1101b071d70bbed1a46"
+ integrity sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==
+ dependencies:
+ "@types/mdast" "^3.0.0"
+ markdown-table "^3.0.0"
+ mdast-util-from-markdown "^1.0.0"
+ mdast-util-to-markdown "^1.3.0"
+
+mdast-util-gfm-table@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz#7a435fb6223a72b0862b33afbd712b6dae878d38"
+ integrity sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==
+ dependencies:
+ "@types/mdast" "^4.0.0"
+ devlop "^1.0.0"
+ markdown-table "^3.0.0"
+ mdast-util-from-markdown "^2.0.0"
+ mdast-util-to-markdown "^2.0.0"
+
+mdast-util-gfm-task-list-item@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-1.0.2.tgz#b280fcf3b7be6fd0cc012bbe67a59831eb34097b"
+ integrity sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==
+ dependencies:
+ "@types/mdast" "^3.0.0"
+ mdast-util-to-markdown "^1.3.0"
+
+mdast-util-gfm-task-list-item@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz#e68095d2f8a4303ef24094ab642e1047b991a936"
+ integrity sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==
+ dependencies:
+ "@types/mdast" "^4.0.0"
+ devlop "^1.0.0"
+ mdast-util-from-markdown "^2.0.0"
+ mdast-util-to-markdown "^2.0.0"
+
+mdast-util-gfm@^2.0.0:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/mdast-util-gfm/-/mdast-util-gfm-2.0.2.tgz#e92f4d8717d74bdba6de57ed21cc8b9552e2d0b6"
+ integrity sha512-qvZ608nBppZ4icQlhQQIAdc6S3Ffj9RGmzwUKUWuEICFnd1LVkN3EktF7ZHAgfcEdvZB5owU9tQgt99e2TlLjg==
+ dependencies:
+ mdast-util-from-markdown "^1.0.0"
+ mdast-util-gfm-autolink-literal "^1.0.0"
+ mdast-util-gfm-footnote "^1.0.0"
+ mdast-util-gfm-strikethrough "^1.0.0"
+ mdast-util-gfm-table "^1.0.0"
+ mdast-util-gfm-task-list-item "^1.0.0"
+ mdast-util-to-markdown "^1.0.0"
+
+mdast-util-gfm@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz#2cdf63b92c2a331406b0fb0db4c077c1b0331751"
+ integrity sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==
+ dependencies:
+ mdast-util-from-markdown "^2.0.0"
+ mdast-util-gfm-autolink-literal "^2.0.0"
+ mdast-util-gfm-footnote "^2.0.0"
+ mdast-util-gfm-strikethrough "^2.0.0"
+ mdast-util-gfm-table "^2.0.0"
+ mdast-util-gfm-task-list-item "^2.0.0"
+ mdast-util-to-markdown "^2.0.0"
+
+mdast-util-math@^2.0.0:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/mdast-util-math/-/mdast-util-math-2.0.2.tgz#19a06a81f31643f48cc805e7c31edb7ce739242c"
+ integrity sha512-8gmkKVp9v6+Tgjtq6SYx9kGPpTf6FVYRa53/DLh479aldR9AyP48qeVOgNZ5X7QUK7nOy4yw7vg6mbiGcs9jWQ==
+ dependencies:
+ "@types/mdast" "^3.0.0"
+ longest-streak "^3.0.0"
+ mdast-util-to-markdown "^1.3.0"
+
+mdast-util-mdx-expression@^1.0.0:
+ version "1.3.2"
+ resolved "https://registry.yarnpkg.com/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.2.tgz#d027789e67524d541d6de543f36d51ae2586f220"
+ integrity sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==
+ dependencies:
+ "@types/estree-jsx" "^1.0.0"
+ "@types/hast" "^2.0.0"
+ "@types/mdast" "^3.0.0"
+ mdast-util-from-markdown "^1.0.0"
+ mdast-util-to-markdown "^1.0.0"
+
+mdast-util-mdx-expression@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz#43f0abac9adc756e2086f63822a38c8d3c3a5096"
+ integrity sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==
+ dependencies:
+ "@types/estree-jsx" "^1.0.0"
+ "@types/hast" "^3.0.0"
+ "@types/mdast" "^4.0.0"
+ devlop "^1.0.0"
+ mdast-util-from-markdown "^2.0.0"
+ mdast-util-to-markdown "^2.0.0"
+
+mdast-util-mdx-jsx@^2.0.0:
+ version "2.1.4"
+ resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.1.4.tgz#7c1f07f10751a78963cfabee38017cbc8b7786d1"
+ integrity sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==
+ dependencies:
+ "@types/estree-jsx" "^1.0.0"
+ "@types/hast" "^2.0.0"
+ "@types/mdast" "^3.0.0"
+ "@types/unist" "^2.0.0"
+ ccount "^2.0.0"
+ mdast-util-from-markdown "^1.1.0"
+ mdast-util-to-markdown "^1.3.0"
+ parse-entities "^4.0.0"
+ stringify-entities "^4.0.0"
+ unist-util-remove-position "^4.0.0"
+ unist-util-stringify-position "^3.0.0"
+ vfile-message "^3.0.0"
+
+mdast-util-mdx-jsx@^3.0.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz#fd04c67a2a7499efb905a8a5c578dddc9fdada0d"
+ integrity sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==
+ dependencies:
+ "@types/estree-jsx" "^1.0.0"
+ "@types/hast" "^3.0.0"
+ "@types/mdast" "^4.0.0"
+ "@types/unist" "^3.0.0"
+ ccount "^2.0.0"
+ devlop "^1.1.0"
+ mdast-util-from-markdown "^2.0.0"
+ mdast-util-to-markdown "^2.0.0"
+ parse-entities "^4.0.0"
+ stringify-entities "^4.0.0"
+ unist-util-stringify-position "^4.0.0"
+ vfile-message "^4.0.0"
+
+mdast-util-mdx@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/mdast-util-mdx/-/mdast-util-mdx-2.0.1.tgz#49b6e70819b99bb615d7223c088d295e53bb810f"
+ integrity sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==
+ dependencies:
+ mdast-util-from-markdown "^1.0.0"
+ mdast-util-mdx-expression "^1.0.0"
+ mdast-util-mdx-jsx "^2.0.0"
+ mdast-util-mdxjs-esm "^1.0.0"
+ mdast-util-to-markdown "^1.0.0"
+
+mdast-util-mdxjs-esm@^1.0.0:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.1.tgz#645d02cd607a227b49721d146fd81796b2e2d15b"
+ integrity sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==
+ dependencies:
+ "@types/estree-jsx" "^1.0.0"
+ "@types/hast" "^2.0.0"
+ "@types/mdast" "^3.0.0"
+ mdast-util-from-markdown "^1.0.0"
+ mdast-util-to-markdown "^1.0.0"
+
+mdast-util-mdxjs-esm@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz#019cfbe757ad62dd557db35a695e7314bcc9fa97"
+ integrity sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==
+ dependencies:
+ "@types/estree-jsx" "^1.0.0"
+ "@types/hast" "^3.0.0"
+ "@types/mdast" "^4.0.0"
+ devlop "^1.0.0"
+ mdast-util-from-markdown "^2.0.0"
+ mdast-util-to-markdown "^2.0.0"
+
+mdast-util-phrasing@^3.0.0:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/mdast-util-phrasing/-/mdast-util-phrasing-3.0.1.tgz#c7c21d0d435d7fb90956038f02e8702781f95463"
+ integrity sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==
+ dependencies:
+ "@types/mdast" "^3.0.0"
+ unist-util-is "^5.0.0"
+
+mdast-util-phrasing@^4.0.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz#7cc0a8dec30eaf04b7b1a9661a92adb3382aa6e3"
+ integrity sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==
+ dependencies:
+ "@types/mdast" "^4.0.0"
+ unist-util-is "^6.0.0"
+
+mdast-util-to-hast@^12.1.0:
+ version "12.3.0"
+ resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-12.3.0.tgz#045d2825fb04374e59970f5b3f279b5700f6fb49"
+ integrity sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==
+ dependencies:
+ "@types/hast" "^2.0.0"
+ "@types/mdast" "^3.0.0"
+ mdast-util-definitions "^5.0.0"
+ micromark-util-sanitize-uri "^1.1.0"
+ trim-lines "^3.0.0"
+ unist-util-generated "^2.0.0"
+ unist-util-position "^4.0.0"
+ unist-util-visit "^4.0.0"
+
+mdast-util-to-hast@^13.0.0:
+ version "13.2.0"
+ resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz#5ca58e5b921cc0a3ded1bc02eed79a4fe4fe41f4"
+ integrity sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ "@types/mdast" "^4.0.0"
+ "@ungap/structured-clone" "^1.0.0"
+ devlop "^1.0.0"
+ micromark-util-sanitize-uri "^2.0.0"
+ trim-lines "^3.0.0"
+ unist-util-position "^5.0.0"
+ unist-util-visit "^5.0.0"
+ vfile "^6.0.0"
+
+mdast-util-to-markdown@^1.0.0, mdast-util-to-markdown@^1.3.0:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-1.5.0.tgz#c13343cb3fc98621911d33b5cd42e7d0731171c6"
+ integrity sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==
+ dependencies:
+ "@types/mdast" "^3.0.0"
+ "@types/unist" "^2.0.0"
+ longest-streak "^3.0.0"
+ mdast-util-phrasing "^3.0.0"
+ mdast-util-to-string "^3.0.0"
+ micromark-util-decode-string "^1.0.0"
+ unist-util-visit "^4.0.0"
+ zwitch "^2.0.0"
+
+mdast-util-to-markdown@^2.0.0:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz#f910ffe60897f04bb4b7e7ee434486f76288361b"
+ integrity sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==
+ dependencies:
+ "@types/mdast" "^4.0.0"
+ "@types/unist" "^3.0.0"
+ longest-streak "^3.0.0"
+ mdast-util-phrasing "^4.0.0"
+ mdast-util-to-string "^4.0.0"
+ micromark-util-classify-character "^2.0.0"
+ micromark-util-decode-string "^2.0.0"
+ unist-util-visit "^5.0.0"
+ zwitch "^2.0.0"
+
+mdast-util-to-string@^3.0.0, mdast-util-to-string@^3.1.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-3.2.0.tgz#66f7bb6324756741c5f47a53557f0cbf16b6f789"
+ integrity sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==
+ dependencies:
+ "@types/mdast" "^3.0.0"
+
+mdast-util-to-string@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz#7a5121475556a04e7eddeb67b264aae79d312814"
+ integrity sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==
+ dependencies:
+ "@types/mdast" "^4.0.0"
+
+merge2@^1.3.0, merge2@^1.4.1:
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
+ integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
+
+mermaid@^10.2.2:
+ version "10.9.4"
+ resolved "https://registry.yarnpkg.com/mermaid/-/mermaid-10.9.4.tgz#985fd4b6d73ae795b87f0b32f620a56d3d6bf1f8"
+ integrity sha512-VIG2B0R9ydvkS+wShA8sXqkzfpYglM2Qwj7VyUeqzNVqSGPoP/tcaUr3ub4ESykv8eqQJn3p99bHNvYdg3gCHQ==
+ dependencies:
+ "@braintree/sanitize-url" "^6.0.1"
+ "@types/d3-scale" "^4.0.3"
+ "@types/d3-scale-chromatic" "^3.0.0"
+ cytoscape "^3.28.1"
+ cytoscape-cose-bilkent "^4.1.0"
+ d3 "^7.4.0"
+ d3-sankey "^0.12.3"
+ dagre-d3-es "7.0.10"
+ dayjs "^1.11.7"
+ dompurify "^3.0.5 <3.1.7"
+ elkjs "^0.9.0"
+ katex "^0.16.9"
+ khroma "^2.0.0"
+ lodash-es "^4.17.21"
+ mdast-util-from-markdown "^1.3.0"
+ non-layered-tidy-tree-layout "^2.0.2"
+ stylis "^4.1.3"
+ ts-dedent "^2.2.0"
+ uuid "^9.0.0"
+ web-worker "^1.2.0"
+
+mermaid@^11.9.0:
+ version "11.12.0"
+ resolved "https://registry.yarnpkg.com/mermaid/-/mermaid-11.12.0.tgz#8e394b6214e33cb52f6e8ad9eb1fd94c67ee5638"
+ integrity sha512-ZudVx73BwrMJfCFmSSJT84y6u5brEoV8DOItdHomNLz32uBjNrelm7mg95X7g+C6UoQH/W6mBLGDEDv73JdxBg==
+ dependencies:
+ "@braintree/sanitize-url" "^7.1.1"
+ "@iconify/utils" "^3.0.1"
+ "@mermaid-js/parser" "^0.6.2"
+ "@types/d3" "^7.4.3"
+ cytoscape "^3.29.3"
+ cytoscape-cose-bilkent "^4.1.0"
+ cytoscape-fcose "^2.2.0"
+ d3 "^7.9.0"
+ d3-sankey "^0.12.3"
+ dagre-d3-es "7.0.11"
+ dayjs "^1.11.18"
+ dompurify "^3.2.5"
+ katex "^0.16.22"
+ khroma "^2.1.0"
+ lodash-es "^4.17.21"
+ marked "^16.2.1"
+ roughjs "^4.6.6"
+ stylis "^4.3.6"
+ ts-dedent "^2.2.0"
+ uuid "^11.1.0"
+
+micromark-core-commonmark@^1.0.0, micromark-core-commonmark@^1.0.1:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-1.1.0.tgz#1386628df59946b2d39fb2edfd10f3e8e0a75bb8"
+ integrity sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==
+ dependencies:
+ decode-named-character-reference "^1.0.0"
+ micromark-factory-destination "^1.0.0"
+ micromark-factory-label "^1.0.0"
+ micromark-factory-space "^1.0.0"
+ micromark-factory-title "^1.0.0"
+ micromark-factory-whitespace "^1.0.0"
+ micromark-util-character "^1.0.0"
+ micromark-util-chunked "^1.0.0"
+ micromark-util-classify-character "^1.0.0"
+ micromark-util-html-tag-name "^1.0.0"
+ micromark-util-normalize-identifier "^1.0.0"
+ micromark-util-resolve-all "^1.0.0"
+ micromark-util-subtokenize "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.1"
+ uvu "^0.5.0"
+
+micromark-core-commonmark@^2.0.0:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz#c691630e485021a68cf28dbc2b2ca27ebf678cd4"
+ integrity sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==
+ dependencies:
+ decode-named-character-reference "^1.0.0"
+ devlop "^1.0.0"
+ micromark-factory-destination "^2.0.0"
+ micromark-factory-label "^2.0.0"
+ micromark-factory-space "^2.0.0"
+ micromark-factory-title "^2.0.0"
+ micromark-factory-whitespace "^2.0.0"
+ micromark-util-character "^2.0.0"
+ micromark-util-chunked "^2.0.0"
+ micromark-util-classify-character "^2.0.0"
+ micromark-util-html-tag-name "^2.0.0"
+ micromark-util-normalize-identifier "^2.0.0"
+ micromark-util-resolve-all "^2.0.0"
+ micromark-util-subtokenize "^2.0.0"
+ micromark-util-symbol "^2.0.0"
+ micromark-util-types "^2.0.0"
+
+micromark-extension-gfm-autolink-literal@^1.0.0:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-1.0.5.tgz#5853f0e579bbd8ef9e39a7c0f0f27c5a063a66e7"
+ integrity sha512-z3wJSLrDf8kRDOh2qBtoTRD53vJ+CWIyo7uyZuxf/JAbNJjiHsOpG1y5wxk8drtv3ETAHutCu6N3thkOOgueWg==
+ dependencies:
+ micromark-util-character "^1.0.0"
+ micromark-util-sanitize-uri "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+
+micromark-extension-gfm-autolink-literal@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz#6286aee9686c4462c1e3552a9d505feddceeb935"
+ integrity sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==
+ dependencies:
+ micromark-util-character "^2.0.0"
+ micromark-util-sanitize-uri "^2.0.0"
+ micromark-util-symbol "^2.0.0"
+ micromark-util-types "^2.0.0"
+
+micromark-extension-gfm-footnote@^1.0.0:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-1.1.2.tgz#05e13034d68f95ca53c99679040bc88a6f92fe2e"
+ integrity sha512-Yxn7z7SxgyGWRNa4wzf8AhYYWNrwl5q1Z8ii+CSTTIqVkmGZF1CElX2JI8g5yGoM3GAman9/PVCUFUSJ0kB/8Q==
+ dependencies:
+ micromark-core-commonmark "^1.0.0"
+ micromark-factory-space "^1.0.0"
+ micromark-util-character "^1.0.0"
+ micromark-util-normalize-identifier "^1.0.0"
+ micromark-util-sanitize-uri "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+ uvu "^0.5.0"
+
+micromark-extension-gfm-footnote@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz#4dab56d4e398b9853f6fe4efac4fc9361f3e0750"
+ integrity sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==
+ dependencies:
+ devlop "^1.0.0"
+ micromark-core-commonmark "^2.0.0"
+ micromark-factory-space "^2.0.0"
+ micromark-util-character "^2.0.0"
+ micromark-util-normalize-identifier "^2.0.0"
+ micromark-util-sanitize-uri "^2.0.0"
+ micromark-util-symbol "^2.0.0"
+ micromark-util-types "^2.0.0"
+
+micromark-extension-gfm-strikethrough@^1.0.0:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-1.0.7.tgz#c8212c9a616fa3bf47cb5c711da77f4fdc2f80af"
+ integrity sha512-sX0FawVE1o3abGk3vRjOH50L5TTLr3b5XMqnP9YDRb34M0v5OoZhG+OHFz1OffZ9dlwgpTBKaT4XW/AsUVnSDw==
+ dependencies:
+ micromark-util-chunked "^1.0.0"
+ micromark-util-classify-character "^1.0.0"
+ micromark-util-resolve-all "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+ uvu "^0.5.0"
+
+micromark-extension-gfm-strikethrough@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz#86106df8b3a692b5f6a92280d3879be6be46d923"
+ integrity sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==
+ dependencies:
+ devlop "^1.0.0"
+ micromark-util-chunked "^2.0.0"
+ micromark-util-classify-character "^2.0.0"
+ micromark-util-resolve-all "^2.0.0"
+ micromark-util-symbol "^2.0.0"
+ micromark-util-types "^2.0.0"
+
+micromark-extension-gfm-table@^1.0.0:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/micromark-extension-gfm-table/-/micromark-extension-gfm-table-1.0.7.tgz#dcb46074b0c6254c3fc9cc1f6f5002c162968008"
+ integrity sha512-3ZORTHtcSnMQEKtAOsBQ9/oHp9096pI/UvdPtN7ehKvrmZZ2+bbWhi0ln+I9drmwXMt5boocn6OlwQzNXeVeqw==
+ dependencies:
+ micromark-factory-space "^1.0.0"
+ micromark-util-character "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+ uvu "^0.5.0"
+
+micromark-extension-gfm-table@^2.0.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz#fac70bcbf51fe65f5f44033118d39be8a9b5940b"
+ integrity sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==
+ dependencies:
+ devlop "^1.0.0"
+ micromark-factory-space "^2.0.0"
+ micromark-util-character "^2.0.0"
+ micromark-util-symbol "^2.0.0"
+ micromark-util-types "^2.0.0"
+
+micromark-extension-gfm-tagfilter@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-1.0.2.tgz#aa7c4dd92dabbcb80f313ebaaa8eb3dac05f13a7"
+ integrity sha512-5XWB9GbAUSHTn8VPU8/1DBXMuKYT5uOgEjJb8gN3mW0PNW5OPHpSdojoqf+iq1xo7vWzw/P8bAHY0n6ijpXF7g==
+ dependencies:
+ micromark-util-types "^1.0.0"
+
+micromark-extension-gfm-tagfilter@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz#f26d8a7807b5985fba13cf61465b58ca5ff7dc57"
+ integrity sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==
+ dependencies:
+ micromark-util-types "^2.0.0"
+
+micromark-extension-gfm-task-list-item@^1.0.0:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-1.0.5.tgz#b52ce498dc4c69b6a9975abafc18f275b9dde9f4"
+ integrity sha512-RMFXl2uQ0pNQy6Lun2YBYT9g9INXtWJULgbt01D/x8/6yJ2qpKyzdZD3pi6UIkzF++Da49xAelVKUeUMqd5eIQ==
+ dependencies:
+ micromark-factory-space "^1.0.0"
+ micromark-util-character "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+ uvu "^0.5.0"
+
+micromark-extension-gfm-task-list-item@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz#bcc34d805639829990ec175c3eea12bb5b781f2c"
+ integrity sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==
+ dependencies:
+ devlop "^1.0.0"
+ micromark-factory-space "^2.0.0"
+ micromark-util-character "^2.0.0"
+ micromark-util-symbol "^2.0.0"
+ micromark-util-types "^2.0.0"
+
+micromark-extension-gfm@^2.0.0:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/micromark-extension-gfm/-/micromark-extension-gfm-2.0.3.tgz#e517e8579949a5024a493e49204e884aa74f5acf"
+ integrity sha512-vb9OoHqrhCmbRidQv/2+Bc6pkP0FrtlhurxZofvOEy5o8RtuuvTq+RQ1Vw5ZDNrVraQZu3HixESqbG+0iKk/MQ==
+ dependencies:
+ micromark-extension-gfm-autolink-literal "^1.0.0"
+ micromark-extension-gfm-footnote "^1.0.0"
+ micromark-extension-gfm-strikethrough "^1.0.0"
+ micromark-extension-gfm-table "^1.0.0"
+ micromark-extension-gfm-tagfilter "^1.0.0"
+ micromark-extension-gfm-task-list-item "^1.0.0"
+ micromark-util-combine-extensions "^1.0.0"
+ micromark-util-types "^1.0.0"
+
+micromark-extension-gfm@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz#3e13376ab95dd7a5cfd0e29560dfe999657b3c5b"
+ integrity sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==
+ dependencies:
+ micromark-extension-gfm-autolink-literal "^2.0.0"
+ micromark-extension-gfm-footnote "^2.0.0"
+ micromark-extension-gfm-strikethrough "^2.0.0"
+ micromark-extension-gfm-table "^2.0.0"
+ micromark-extension-gfm-tagfilter "^2.0.0"
+ micromark-extension-gfm-task-list-item "^2.0.0"
+ micromark-util-combine-extensions "^2.0.0"
+ micromark-util-types "^2.0.0"
+
+micromark-extension-math@^2.0.0:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/micromark-extension-math/-/micromark-extension-math-2.1.2.tgz#52c70cc8266cd20ada1ef5a479bfed9a19b789bf"
+ integrity sha512-es0CcOV89VNS9wFmyn+wyFTKweXGW4CEvdaAca6SWRWPyYCbBisnjaHLjWO4Nszuiud84jCpkHsqAJoa768Pvg==
+ dependencies:
+ "@types/katex" "^0.16.0"
+ katex "^0.16.0"
+ micromark-factory-space "^1.0.0"
+ micromark-util-character "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+ uvu "^0.5.0"
+
+micromark-extension-mdx-expression@^1.0.0:
+ version "1.0.8"
+ resolved "https://registry.yarnpkg.com/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.8.tgz#5bc1f5fd90388e8293b3ef4f7c6f06c24aff6314"
+ integrity sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==
+ dependencies:
+ "@types/estree" "^1.0.0"
+ micromark-factory-mdx-expression "^1.0.0"
+ micromark-factory-space "^1.0.0"
+ micromark-util-character "^1.0.0"
+ micromark-util-events-to-acorn "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+ uvu "^0.5.0"
+
+micromark-extension-mdx-jsx@^1.0.0:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.5.tgz#e72d24b7754a30d20fb797ece11e2c4e2cae9e82"
+ integrity sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==
+ dependencies:
+ "@types/acorn" "^4.0.0"
+ "@types/estree" "^1.0.0"
+ estree-util-is-identifier-name "^2.0.0"
+ micromark-factory-mdx-expression "^1.0.0"
+ micromark-factory-space "^1.0.0"
+ micromark-util-character "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+ uvu "^0.5.0"
+ vfile-message "^3.0.0"
+
+micromark-extension-mdx-md@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.1.tgz#595d4b2f692b134080dca92c12272ab5b74c6d1a"
+ integrity sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==
+ dependencies:
+ micromark-util-types "^1.0.0"
+
+micromark-extension-mdxjs-esm@^1.0.0:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.5.tgz#e4f8be9c14c324a80833d8d3a227419e2b25dec1"
+ integrity sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==
+ dependencies:
+ "@types/estree" "^1.0.0"
+ micromark-core-commonmark "^1.0.0"
+ micromark-util-character "^1.0.0"
+ micromark-util-events-to-acorn "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+ unist-util-position-from-estree "^1.1.0"
+ uvu "^0.5.0"
+ vfile-message "^3.0.0"
+
+micromark-extension-mdxjs@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.1.tgz#f78d4671678d16395efeda85170c520ee795ded8"
+ integrity sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==
+ dependencies:
+ acorn "^8.0.0"
+ acorn-jsx "^5.0.0"
+ micromark-extension-mdx-expression "^1.0.0"
+ micromark-extension-mdx-jsx "^1.0.0"
+ micromark-extension-mdx-md "^1.0.0"
+ micromark-extension-mdxjs-esm "^1.0.0"
+ micromark-util-combine-extensions "^1.0.0"
+ micromark-util-types "^1.0.0"
+
+micromark-factory-destination@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-1.1.0.tgz#eb815957d83e6d44479b3df640f010edad667b9f"
+ integrity sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==
+ dependencies:
+ micromark-util-character "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+
+micromark-factory-destination@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz#8fef8e0f7081f0474fbdd92deb50c990a0264639"
+ integrity sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==
+ dependencies:
+ micromark-util-character "^2.0.0"
+ micromark-util-symbol "^2.0.0"
+ micromark-util-types "^2.0.0"
+
+micromark-factory-label@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-1.1.0.tgz#cc95d5478269085cfa2a7282b3de26eb2e2dec68"
+ integrity sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==
+ dependencies:
+ micromark-util-character "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+ uvu "^0.5.0"
+
+micromark-factory-label@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz#5267efa97f1e5254efc7f20b459a38cb21058ba1"
+ integrity sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==
+ dependencies:
+ devlop "^1.0.0"
+ micromark-util-character "^2.0.0"
+ micromark-util-symbol "^2.0.0"
+ micromark-util-types "^2.0.0"
+
+micromark-factory-mdx-expression@^1.0.0:
+ version "1.0.9"
+ resolved "https://registry.yarnpkg.com/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.9.tgz#57ba4571b69a867a1530f34741011c71c73a4976"
+ integrity sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==
+ dependencies:
+ "@types/estree" "^1.0.0"
+ micromark-util-character "^1.0.0"
+ micromark-util-events-to-acorn "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+ unist-util-position-from-estree "^1.0.0"
+ uvu "^0.5.0"
+ vfile-message "^3.0.0"
+
+micromark-factory-space@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-factory-space/-/micromark-factory-space-1.1.0.tgz#c8f40b0640a0150751d3345ed885a080b0d15faf"
+ integrity sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==
+ dependencies:
+ micromark-util-character "^1.0.0"
+ micromark-util-types "^1.0.0"
+
+micromark-factory-space@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz#36d0212e962b2b3121f8525fc7a3c7c029f334fc"
+ integrity sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==
+ dependencies:
+ micromark-util-character "^2.0.0"
+ micromark-util-types "^2.0.0"
+
+micromark-factory-title@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-1.1.0.tgz#dd0fe951d7a0ac71bdc5ee13e5d1465ad7f50ea1"
+ integrity sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==
+ dependencies:
+ micromark-factory-space "^1.0.0"
+ micromark-util-character "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+
+micromark-factory-title@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz#237e4aa5d58a95863f01032d9ee9b090f1de6e94"
+ integrity sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==
+ dependencies:
+ micromark-factory-space "^2.0.0"
+ micromark-util-character "^2.0.0"
+ micromark-util-symbol "^2.0.0"
+ micromark-util-types "^2.0.0"
+
+micromark-factory-whitespace@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-1.1.0.tgz#798fb7489f4c8abafa7ca77eed6b5745853c9705"
+ integrity sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==
+ dependencies:
+ micromark-factory-space "^1.0.0"
+ micromark-util-character "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+
+micromark-factory-whitespace@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz#06b26b2983c4d27bfcc657b33e25134d4868b0b1"
+ integrity sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==
+ dependencies:
+ micromark-factory-space "^2.0.0"
+ micromark-util-character "^2.0.0"
+ micromark-util-symbol "^2.0.0"
+ micromark-util-types "^2.0.0"
+
+micromark-util-character@^1.0.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-1.2.0.tgz#4fedaa3646db249bc58caeb000eb3549a8ca5dcc"
+ integrity sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==
+ dependencies:
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+
+micromark-util-character@^2.0.0:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-2.1.1.tgz#2f987831a40d4c510ac261e89852c4e9703ccda6"
+ integrity sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==
+ dependencies:
+ micromark-util-symbol "^2.0.0"
+ micromark-util-types "^2.0.0"
+
+micromark-util-chunked@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-1.1.0.tgz#37a24d33333c8c69a74ba12a14651fd9ea8a368b"
+ integrity sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==
+ dependencies:
+ micromark-util-symbol "^1.0.0"
+
+micromark-util-chunked@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz#47fbcd93471a3fccab86cff03847fc3552db1051"
+ integrity sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==
+ dependencies:
+ micromark-util-symbol "^2.0.0"
+
+micromark-util-classify-character@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-1.1.0.tgz#6a7f8c8838e8a120c8e3c4f2ae97a2bff9190e9d"
+ integrity sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==
+ dependencies:
+ micromark-util-character "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+
+micromark-util-classify-character@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz#d399faf9c45ca14c8b4be98b1ea481bced87b629"
+ integrity sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==
+ dependencies:
+ micromark-util-character "^2.0.0"
+ micromark-util-symbol "^2.0.0"
+ micromark-util-types "^2.0.0"
+
+micromark-util-combine-extensions@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.1.0.tgz#192e2b3d6567660a85f735e54d8ea6e3952dbe84"
+ integrity sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==
+ dependencies:
+ micromark-util-chunked "^1.0.0"
+ micromark-util-types "^1.0.0"
+
+micromark-util-combine-extensions@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz#2a0f490ab08bff5cc2fd5eec6dd0ca04f89b30a9"
+ integrity sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==
+ dependencies:
+ micromark-util-chunked "^2.0.0"
+ micromark-util-types "^2.0.0"
+
+micromark-util-decode-numeric-character-reference@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.1.0.tgz#b1e6e17009b1f20bc652a521309c5f22c85eb1c6"
+ integrity sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==
+ dependencies:
+ micromark-util-symbol "^1.0.0"
+
+micromark-util-decode-numeric-character-reference@^2.0.0:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz#fcf15b660979388e6f118cdb6bf7d79d73d26fe5"
+ integrity sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==
+ dependencies:
+ micromark-util-symbol "^2.0.0"
+
+micromark-util-decode-string@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-1.1.0.tgz#dc12b078cba7a3ff690d0203f95b5d5537f2809c"
+ integrity sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==
+ dependencies:
+ decode-named-character-reference "^1.0.0"
+ micromark-util-character "^1.0.0"
+ micromark-util-decode-numeric-character-reference "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+
+micromark-util-decode-string@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz#6cb99582e5d271e84efca8e61a807994d7161eb2"
+ integrity sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==
+ dependencies:
+ decode-named-character-reference "^1.0.0"
+ micromark-util-character "^2.0.0"
+ micromark-util-decode-numeric-character-reference "^2.0.0"
+ micromark-util-symbol "^2.0.0"
+
+micromark-util-encode@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-1.1.0.tgz#92e4f565fd4ccb19e0dcae1afab9a173bbeb19a5"
+ integrity sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==
+
+micromark-util-encode@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz#0d51d1c095551cfaac368326963cf55f15f540b8"
+ integrity sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==
+
+micromark-util-events-to-acorn@^1.0.0:
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.3.tgz#a4ab157f57a380e646670e49ddee97a72b58b557"
+ integrity sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==
+ dependencies:
+ "@types/acorn" "^4.0.0"
+ "@types/estree" "^1.0.0"
+ "@types/unist" "^2.0.0"
+ estree-util-visit "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+ uvu "^0.5.0"
+ vfile-message "^3.0.0"
+
+micromark-util-html-tag-name@^1.0.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.2.0.tgz#48fd7a25826f29d2f71479d3b4e83e94829b3588"
+ integrity sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==
+
+micromark-util-html-tag-name@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz#e40403096481986b41c106627f98f72d4d10b825"
+ integrity sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==
+
+micromark-util-normalize-identifier@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.1.0.tgz#7a73f824eb9f10d442b4d7f120fecb9b38ebf8b7"
+ integrity sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==
+ dependencies:
+ micromark-util-symbol "^1.0.0"
+
+micromark-util-normalize-identifier@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz#c30d77b2e832acf6526f8bf1aa47bc9c9438c16d"
+ integrity sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==
+ dependencies:
+ micromark-util-symbol "^2.0.0"
+
+micromark-util-resolve-all@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-1.1.0.tgz#4652a591ee8c8fa06714c9b54cd6c8e693671188"
+ integrity sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==
+ dependencies:
+ micromark-util-types "^1.0.0"
+
+micromark-util-resolve-all@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz#e1a2d62cdd237230a2ae11839027b19381e31e8b"
+ integrity sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==
+ dependencies:
+ micromark-util-types "^2.0.0"
+
+micromark-util-sanitize-uri@^1.0.0, micromark-util-sanitize-uri@^1.1.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.2.0.tgz#613f738e4400c6eedbc53590c67b197e30d7f90d"
+ integrity sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==
+ dependencies:
+ micromark-util-character "^1.0.0"
+ micromark-util-encode "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+
+micromark-util-sanitize-uri@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz#ab89789b818a58752b73d6b55238621b7faa8fd7"
+ integrity sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==
+ dependencies:
+ micromark-util-character "^2.0.0"
+ micromark-util-encode "^2.0.0"
+ micromark-util-symbol "^2.0.0"
+
+micromark-util-subtokenize@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-1.1.0.tgz#941c74f93a93eaf687b9054aeb94642b0e92edb1"
+ integrity sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==
+ dependencies:
+ micromark-util-chunked "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.0"
+ uvu "^0.5.0"
+
+micromark-util-subtokenize@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz#d8ade5ba0f3197a1cf6a2999fbbfe6357a1a19ee"
+ integrity sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==
+ dependencies:
+ devlop "^1.0.0"
+ micromark-util-chunked "^2.0.0"
+ micromark-util-symbol "^2.0.0"
+ micromark-util-types "^2.0.0"
+
+micromark-util-symbol@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-1.1.0.tgz#813cd17837bdb912d069a12ebe3a44b6f7063142"
+ integrity sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==
+
+micromark-util-symbol@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz#e5da494e8eb2b071a0d08fb34f6cefec6c0a19b8"
+ integrity sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==
+
+micromark-util-types@^1.0.0, micromark-util-types@^1.0.1:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-1.1.0.tgz#e6676a8cae0bb86a2171c498167971886cb7e283"
+ integrity sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==
+
+micromark-util-types@^2.0.0:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-2.0.2.tgz#f00225f5f5a0ebc3254f96c36b6605c4b393908e"
+ integrity sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==
+
+micromark@^3.0.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/micromark/-/micromark-3.2.0.tgz#1af9fef3f995ea1ea4ac9c7e2f19c48fd5c006e9"
+ integrity sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==
+ dependencies:
+ "@types/debug" "^4.0.0"
+ debug "^4.0.0"
+ decode-named-character-reference "^1.0.0"
+ micromark-core-commonmark "^1.0.1"
+ micromark-factory-space "^1.0.0"
+ micromark-util-character "^1.0.0"
+ micromark-util-chunked "^1.0.0"
+ micromark-util-combine-extensions "^1.0.0"
+ micromark-util-decode-numeric-character-reference "^1.0.0"
+ micromark-util-encode "^1.0.0"
+ micromark-util-normalize-identifier "^1.0.0"
+ micromark-util-resolve-all "^1.0.0"
+ micromark-util-sanitize-uri "^1.0.0"
+ micromark-util-subtokenize "^1.0.0"
+ micromark-util-symbol "^1.0.0"
+ micromark-util-types "^1.0.1"
+ uvu "^0.5.0"
+
+micromark@^4.0.0:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/micromark/-/micromark-4.0.2.tgz#91395a3e1884a198e62116e33c9c568e39936fdb"
+ integrity sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==
+ dependencies:
+ "@types/debug" "^4.0.0"
+ debug "^4.0.0"
+ decode-named-character-reference "^1.0.0"
+ devlop "^1.0.0"
+ micromark-core-commonmark "^2.0.0"
+ micromark-factory-space "^2.0.0"
+ micromark-util-character "^2.0.0"
+ micromark-util-chunked "^2.0.0"
+ micromark-util-combine-extensions "^2.0.0"
+ micromark-util-decode-numeric-character-reference "^2.0.0"
+ micromark-util-encode "^2.0.0"
+ micromark-util-normalize-identifier "^2.0.0"
+ micromark-util-resolve-all "^2.0.0"
+ micromark-util-sanitize-uri "^2.0.0"
+ micromark-util-subtokenize "^2.0.0"
+ micromark-util-symbol "^2.0.0"
+ micromark-util-types "^2.0.0"
+
+micromatch@^4.0.4, micromatch@^4.0.5, micromatch@^4.0.8:
+ version "4.0.8"
+ resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.8.tgz#d66fa18f3a47076789320b9b1af32bd86d9fa202"
+ integrity sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==
+ dependencies:
+ braces "^3.0.3"
+ picomatch "^2.3.1"
+
+mime-db@1.52.0:
+ version "1.52.0"
+ resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70"
+ integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==
+
+mime-types@^2.1.12:
+ version "2.1.35"
+ resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a"
+ integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==
+ dependencies:
+ mime-db "1.52.0"
+
+mimic-fn@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
+ integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
+
+min-indent@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869"
+ integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==
+
+minimatch@9.0.3:
+ version "9.0.3"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825"
+ integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==
+ dependencies:
+ brace-expansion "^2.0.1"
+
+minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2:
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
+ integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
+ dependencies:
+ brace-expansion "^1.1.7"
+
+minimatch@^9.0.1, minimatch@^9.0.4:
+ version "9.0.5"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5"
+ integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==
+ dependencies:
+ brace-expansion "^2.0.1"
+
+minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6, minimist@^1.2.8:
+ version "1.2.8"
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
+ integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
+
+"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.1.2:
+ version "7.1.2"
+ resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707"
+ integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==
+
+mlly@^1.7.4:
+ version "1.8.0"
+ resolved "https://registry.yarnpkg.com/mlly/-/mlly-1.8.0.tgz#e074612b938af8eba1eaf43299cbc89cb72d824e"
+ integrity sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==
+ dependencies:
+ acorn "^8.15.0"
+ pathe "^2.0.3"
+ pkg-types "^1.3.1"
+ ufo "^1.6.1"
+
+motion-dom@^12.23.18:
+ version "12.23.18"
+ resolved "https://registry.yarnpkg.com/motion-dom/-/motion-dom-12.23.18.tgz#5a0965010f7378762be32a06a91ba108bb3bdce7"
+ integrity sha512-9piw3uOcP6DpS0qpnDF95bLDzmgMxLOg/jghLnHwYJ0YFizzuvbH/L8106dy39JNgHYmXFUTztoP9JQvUqlBwQ==
+ dependencies:
+ motion-utils "^12.23.6"
+
+motion-utils@^12.23.6:
+ version "12.23.6"
+ resolved "https://registry.yarnpkg.com/motion-utils/-/motion-utils-12.23.6.tgz#fafef80b4ea85122dd0d6c599a0c63d72881f312"
+ integrity sha512-eAWoPgr4eFEOFfg2WjIsMoqJTW6Z8MTUCgn/GZ3VRpClWBdnbjryiA3ZSNLyxCTmCQx4RmYX6jX1iWHbenUPNQ==
+
+mri@^1.1.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b"
+ integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==
+
+ms@2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
+ integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==
+
+ms@^2.1.1, ms@^2.1.3:
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
+ integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
+
+mute-stream@1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-1.0.0.tgz#e31bd9fe62f0aed23520aa4324ea6671531e013e"
+ integrity sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==
+
+mz@^2.7.0:
+ version "2.7.0"
+ resolved "https://registry.yarnpkg.com/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32"
+ integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==
+ dependencies:
+ any-promise "^1.0.0"
+ object-assign "^4.0.1"
+ thenify-all "^1.0.0"
+
+nanoid@^3.3.11, nanoid@^3.3.6:
+ version "3.3.11"
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.11.tgz#4f4f112cefbe303202f2199838128936266d185b"
+ integrity sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==
+
+nanoid@^5.0.1:
+ version "5.1.6"
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-5.1.6.tgz#30363f664797e7d40429f6c16946d6bd7a3f26c9"
+ integrity sha512-c7+7RQ+dMB5dPwwCp4ee1/iV/q2P6aK1mTZcfr1BTuVlyW9hJYiMPybJCcnBlQtuSmTIWNeazm/zqNoZSSElBg==
+
+nanospinner@^1.2.2:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/nanospinner/-/nanospinner-1.2.2.tgz#5a38f4410b5bf7a41585964bee74d32eab3e040b"
+ integrity sha512-Zt/AmG6qRU3e+WnzGGLuMCEAO/dAu45stNbHY223tUxldaDAeE+FxSPsd9Q+j+paejmm0ZbrNVs5Sraqy3dRxA==
+ dependencies:
+ picocolors "^1.1.1"
+
+napi-postinstall@^0.3.0:
+ version "0.3.3"
+ resolved "https://registry.yarnpkg.com/napi-postinstall/-/napi-postinstall-0.3.3.tgz#93d045c6b576803ead126711d3093995198c6eb9"
+ integrity sha512-uTp172LLXSxuSYHv/kou+f6KW3SMppU9ivthaVTXian9sOt3XM/zHYHpRZiLgQoxeWfYUnslNWQHF1+G71xcow==
+
+natural-compare@^1.4.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
+ integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
+
+neo-async@^2.6.2:
+ version "2.6.2"
+ resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
+ integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
+
+next-mdx-remote@^4.2.1:
+ version "4.4.1"
+ resolved "https://registry.yarnpkg.com/next-mdx-remote/-/next-mdx-remote-4.4.1.tgz#96b16e2adc54dbcd0a7f204a9a3c3fd269d41abf"
+ integrity sha512-1BvyXaIou6xy3XoNF4yaMZUCb6vD2GTAa5ciOa6WoO+gAUTYsb1K4rI/HSC2ogAWLrb/7VSV52skz07vOzmqIQ==
+ dependencies:
+ "@mdx-js/mdx" "^2.2.1"
+ "@mdx-js/react" "^2.2.1"
+ vfile "^5.3.0"
+ vfile-matter "^3.0.1"
+
+next-seo@^6.0.0, next-seo@^6.5.0:
+ version "6.8.0"
+ resolved "https://registry.yarnpkg.com/next-seo/-/next-seo-6.8.0.tgz#0265ec75ad5ddca3d2a11dd86534a15065043651"
+ integrity sha512-zcxaV67PFXCSf8e6SXxbxPaOTgc8St/esxfsYXfQXMM24UESUVSXFm7f2A9HMkAwa0Gqn4s64HxYZAGfdF4Vhg==
+
+next-sitemap@^4.2.3:
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/next-sitemap/-/next-sitemap-4.2.3.tgz#5db3f650351a51e84b9fd6b58c5af2f9257b5058"
+ integrity sha512-vjdCxeDuWDzldhCnyFCQipw5bfpl4HmZA7uoo3GAaYGjGgfL4Cxb1CiztPuWGmS+auYs7/8OekRS8C2cjdAsjQ==
+ dependencies:
+ "@corex/deepmerge" "^4.0.43"
+ "@next/env" "^13.4.3"
+ fast-glob "^3.2.12"
+ minimist "^1.2.8"
+
+next-themes@^0.2.1:
+ version "0.2.1"
+ resolved "https://registry.yarnpkg.com/next-themes/-/next-themes-0.2.1.tgz#0c9f128e847979daf6c67f70b38e6b6567856e45"
+ integrity sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==
+
+next@^14.1.4:
+ version "14.2.32"
+ resolved "https://registry.yarnpkg.com/next/-/next-14.2.32.tgz#279b544f0c8ed023c33454ce4d563d3e05c2f3fb"
+ integrity sha512-fg5g0GZ7/nFc09X8wLe6pNSU8cLWbLRG3TZzPJ1BJvi2s9m7eF991se67wliM9kR5yLHRkyGKU49MMx58s3LJg==
+ dependencies:
+ "@next/env" "14.2.32"
+ "@swc/helpers" "0.5.5"
+ busboy "1.6.0"
+ caniuse-lite "^1.0.30001579"
+ graceful-fs "^4.2.11"
+ postcss "8.4.31"
+ styled-jsx "5.1.1"
+ optionalDependencies:
+ "@next/swc-darwin-arm64" "14.2.32"
+ "@next/swc-darwin-x64" "14.2.32"
+ "@next/swc-linux-arm64-gnu" "14.2.32"
+ "@next/swc-linux-arm64-musl" "14.2.32"
+ "@next/swc-linux-x64-gnu" "14.2.32"
+ "@next/swc-linux-x64-musl" "14.2.32"
+ "@next/swc-win32-arm64-msvc" "14.2.32"
+ "@next/swc-win32-ia32-msvc" "14.2.32"
+ "@next/swc-win32-x64-msvc" "14.2.32"
+
+nextra-theme-docs@^2.13.4:
+ version "2.13.4"
+ resolved "https://registry.yarnpkg.com/nextra-theme-docs/-/nextra-theme-docs-2.13.4.tgz#821795e149537413f459ae4b520eba1a195e5e07"
+ integrity sha512-2XOoMfwBCTYBt8ds4ZHftt9Wyf2XsykiNo02eir/XEYB+sGeUoE77kzqfidjEOKCSzOHYbK9BDMcg2+B/2vYRw==
+ dependencies:
+ "@headlessui/react" "^1.7.17"
+ "@popperjs/core" "^2.11.8"
+ clsx "^2.0.0"
+ escape-string-regexp "^5.0.0"
+ flexsearch "^0.7.31"
+ focus-visible "^5.2.0"
+ git-url-parse "^13.1.0"
+ intersection-observer "^0.12.2"
+ match-sorter "^6.3.1"
+ next-seo "^6.0.0"
+ next-themes "^0.2.1"
+ scroll-into-view-if-needed "^3.1.0"
+ zod "^3.22.3"
+
+nextra@^2.13.4:
+ version "2.13.4"
+ resolved "https://registry.yarnpkg.com/nextra/-/nextra-2.13.4.tgz#49e9f558735d86292cd8578b5a69f6d926bc2a14"
+ integrity sha512-7of2rSBxuUa3+lbMmZwG9cqgftcoNOVQLTT6Rxf3EhBR9t1EI7b43dted8YoqSNaigdE3j1CoyNkX8N/ZzlEpw==
+ dependencies:
+ "@headlessui/react" "^1.7.17"
+ "@mdx-js/mdx" "^2.3.0"
+ "@mdx-js/react" "^2.3.0"
+ "@napi-rs/simple-git" "^0.1.9"
+ "@theguild/remark-mermaid" "^0.0.5"
+ "@theguild/remark-npm2yarn" "^0.2.0"
+ clsx "^2.0.0"
+ github-slugger "^2.0.0"
+ graceful-fs "^4.2.11"
+ gray-matter "^4.0.3"
+ katex "^0.16.9"
+ lodash.get "^4.4.2"
+ next-mdx-remote "^4.2.1"
+ p-limit "^3.1.0"
+ rehype-katex "^7.0.0"
+ rehype-pretty-code "0.9.11"
+ rehype-raw "^7.0.0"
+ remark-gfm "^3.0.1"
+ remark-math "^5.1.1"
+ remark-reading-time "^2.0.1"
+ shiki "^0.14.3"
+ slash "^3.0.0"
+ title "^3.5.3"
+ unist-util-remove "^4.0.0"
+ unist-util-visit "^5.0.0"
+ zod "^3.22.3"
+
+node-addon-api@^7.0.0:
+ version "7.1.1"
+ resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-7.1.1.tgz#1aba6693b0f255258a049d621329329322aad558"
+ integrity sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==
+
+node-domexception@1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/node-domexception/-/node-domexception-1.0.0.tgz#6888db46a1f71c0b76b3f7555016b63fe64766e5"
+ integrity sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==
+
+node-fetch@^2.0.0:
+ version "2.7.0"
+ resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.7.0.tgz#d0f0fa6e3e2dc1d27efcd8ad99d550bda94d187d"
+ integrity sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==
+ dependencies:
+ whatwg-url "^5.0.0"
+
+node-plop@^0.32.2:
+ version "0.32.2"
+ resolved "https://registry.yarnpkg.com/node-plop/-/node-plop-0.32.2.tgz#47e454e3429e8044b63902361fdf1f61e693e1e2"
+ integrity sha512-q/BAUWcDHTz1lvZYoZG2mEn32W4jZ5yHEt3Gj0QZtJvnZM0ze6pEUGVdfdhgIFsuWxZM4XrFO5Fm9zsDBxPFYw==
+ dependencies:
+ "@types/inquirer" "^9.0.9"
+ change-case "^5.4.4"
+ dlv "^1.1.3"
+ globby "^14.1.0"
+ handlebars "^4.7.8"
+ inquirer "^9.3.8"
+ isbinaryfile "^5.0.6"
+ resolve "^1.22.10"
+ title-case "^4.3.2"
+
+node-releases@^2.0.21:
+ version "2.0.21"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.21.tgz#f59b018bc0048044be2d4c4c04e4c8b18160894c"
+ integrity sha512-5b0pgg78U3hwXkCM8Z9b2FJdPZlr9Psr9V2gQPESdGHqbntyFJKFW4r5TeWGFzafGY3hzs1JC62VEQMbl1JFkw==
+
+non-layered-tidy-tree-layout@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/non-layered-tidy-tree-layout/-/non-layered-tidy-tree-layout-2.0.2.tgz#57d35d13c356643fc296a55fb11ac15e74da7804"
+ integrity sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw==
+
+normalize-path@^3.0.0, normalize-path@~3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
+ integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
+
+normalize-range@^0.1.2:
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
+ integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==
+
+npm-run-path@^2.0.0:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
+ integrity sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==
+ dependencies:
+ path-key "^2.0.0"
+
+npm-to-yarn@^2.1.0:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/npm-to-yarn/-/npm-to-yarn-2.2.1.tgz#048843a6630621daffc6a239dfc89698b8abf7e8"
+ integrity sha512-O/j/ROyX0KGLG7O6Ieut/seQ0oiTpHF2tXAcFbpdTLQFiaNtkyTXXocM1fwpaa60dg1qpWj0nHlbNhx6qwuENQ==
+
+object-assign@^4.0.1, object-assign@^4.1.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
+ integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
+
+object-hash@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9"
+ integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==
+
+object-inspect@^1.13.3, object-inspect@^1.13.4:
+ version "1.13.4"
+ resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.4.tgz#8375265e21bc20d0fa582c22e1b13485d6e00213"
+ integrity sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==
+
+object-keys@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
+ integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
+
+object.assign@^4.1.4, object.assign@^4.1.7:
+ version "4.1.7"
+ resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.7.tgz#8c14ca1a424c6a561b0bb2a22f66f5049a945d3d"
+ integrity sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==
+ dependencies:
+ call-bind "^1.0.8"
+ call-bound "^1.0.3"
+ define-properties "^1.2.1"
+ es-object-atoms "^1.0.0"
+ has-symbols "^1.1.0"
+ object-keys "^1.1.1"
+
+object.defaults@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/object.defaults/-/object.defaults-1.1.0.tgz#3a7f868334b407dea06da16d88d5cd29e435fecf"
+ integrity sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==
+ dependencies:
+ array-each "^1.0.1"
+ array-slice "^1.0.0"
+ for-own "^1.0.0"
+ isobject "^3.0.0"
+
+object.entries@^1.1.9:
+ version "1.1.9"
+ resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.9.tgz#e4770a6a1444afb61bd39f984018b5bede25f8b3"
+ integrity sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==
+ dependencies:
+ call-bind "^1.0.8"
+ call-bound "^1.0.4"
+ define-properties "^1.2.1"
+ es-object-atoms "^1.1.1"
+
+object.fromentries@^2.0.8:
+ version "2.0.8"
+ resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.8.tgz#f7195d8a9b97bd95cbc1999ea939ecd1a2b00c65"
+ integrity sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==
+ dependencies:
+ call-bind "^1.0.7"
+ define-properties "^1.2.1"
+ es-abstract "^1.23.2"
+ es-object-atoms "^1.0.0"
+
+object.groupby@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.3.tgz#9b125c36238129f6f7b61954a1e7176148d5002e"
+ integrity sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==
+ dependencies:
+ call-bind "^1.0.7"
+ define-properties "^1.2.1"
+ es-abstract "^1.23.2"
+
+object.pick@^1.3.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
+ integrity sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==
+ dependencies:
+ isobject "^3.0.1"
+
+object.values@^1.1.6, object.values@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.2.1.tgz#deed520a50809ff7f75a7cfd4bc64c7a038c6216"
+ integrity sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==
+ dependencies:
+ call-bind "^1.0.8"
+ call-bound "^1.0.3"
+ define-properties "^1.2.1"
+ es-object-atoms "^1.0.0"
+
+once@^1.3.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
+ integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
+ dependencies:
+ wrappy "1"
+
+onetime@^5.1.0:
+ version "5.1.2"
+ resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
+ integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
+ dependencies:
+ mimic-fn "^2.1.0"
+
+openapi-types@^12.1.3:
+ version "12.1.3"
+ resolved "https://registry.yarnpkg.com/openapi-types/-/openapi-types-12.1.3.tgz#471995eb26c4b97b7bd356aacf7b91b73e777dd3"
+ integrity sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw==
+
+optionator@^0.9.3:
+ version "0.9.4"
+ resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz#7ea1c1a5d91d764fb282139c88fe11e182a3a734"
+ integrity sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==
+ dependencies:
+ deep-is "^0.1.3"
+ fast-levenshtein "^2.0.6"
+ levn "^0.4.1"
+ prelude-ls "^1.2.1"
+ type-check "^0.4.0"
+ word-wrap "^1.2.5"
+
+ora@^5.4.1:
+ version "5.4.1"
+ resolved "https://registry.yarnpkg.com/ora/-/ora-5.4.1.tgz#1b2678426af4ac4a509008e5e4ac9e9959db9e18"
+ integrity sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==
+ dependencies:
+ bl "^4.1.0"
+ chalk "^4.1.0"
+ cli-cursor "^3.1.0"
+ cli-spinners "^2.5.0"
+ is-interactive "^1.0.0"
+ is-unicode-supported "^0.1.0"
+ log-symbols "^4.1.0"
+ strip-ansi "^6.0.0"
+ wcwidth "^1.0.1"
+
+own-keys@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/own-keys/-/own-keys-1.0.1.tgz#e4006910a2bf913585289676eebd6f390cf51358"
+ integrity sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==
+ dependencies:
+ get-intrinsic "^1.2.6"
+ object-keys "^1.1.1"
+ safe-push-apply "^1.0.0"
+
+p-finally@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
+ integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==
+
+p-limit@^3.0.2, p-limit@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
+ integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
+ dependencies:
+ yocto-queue "^0.1.0"
+
+p-locate@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834"
+ integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==
+ dependencies:
+ p-limit "^3.0.2"
+
+package-json-from-dist@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz#4f1471a010827a86f94cfd9b0727e36d267de505"
+ integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==
+
+package-manager-detector@^1.3.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/package-manager-detector/-/package-manager-detector-1.3.0.tgz#b42d641c448826e03c2b354272456a771ce453c0"
+ integrity sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==
+
+packrup@^0.1.2:
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/packrup/-/packrup-0.1.2.tgz#7e6c50e5b79a1e68cd717e79fd06d40abb8f1583"
+ integrity sha512-ZcKU7zrr5GlonoS9cxxrb5HVswGnyj6jQvwFBa6p5VFw7G71VAHcUKL5wyZSU/ECtPM/9gacWxy2KFQKt1gMNA==
+
+parent-module@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
+ integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
+ dependencies:
+ callsites "^3.0.0"
+
+parse-entities@^4.0.0:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-4.0.2.tgz#61d46f5ed28e4ee62e9ddc43d6b010188443f159"
+ integrity sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==
+ dependencies:
+ "@types/unist" "^2.0.0"
+ character-entities-legacy "^3.0.0"
+ character-reference-invalid "^2.0.0"
+ decode-named-character-reference "^1.0.0"
+ is-alphanumerical "^2.0.0"
+ is-decimal "^2.0.0"
+ is-hexadecimal "^2.0.0"
+
+parse-filepath@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891"
+ integrity sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==
+ dependencies:
+ is-absolute "^1.0.0"
+ map-cache "^0.2.0"
+ path-root "^0.1.1"
+
+parse-ms@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/parse-ms/-/parse-ms-3.0.0.tgz#3ea24a934913345fcc3656deda72df921da3a70e"
+ integrity sha512-Tpb8Z7r7XbbtBTrM9UhpkzzaMrqA2VXMT3YChzYltwV3P3pM6t8wl7TvpMnSTosz1aQAdVib7kdoys7vYOPerw==
+
+parse-numeric-range@^1.3.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/parse-numeric-range/-/parse-numeric-range-1.3.0.tgz#7c63b61190d61e4d53a1197f0c83c47bb670ffa3"
+ integrity sha512-twN+njEipszzlMJd4ONUYgSfZPDxgHhT9Ahed5uTigpQn90FggW4SA/AIPq/6a149fTbE9qBEcSwE3FAEp6wQQ==
+
+parse-passwd@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6"
+ integrity sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==
+
+parse-path@^7.0.0:
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/parse-path/-/parse-path-7.1.0.tgz#41fb513cb122831807a4c7b29c8727947a09d8c6"
+ integrity sha512-EuCycjZtfPcjWk7KTksnJ5xPMvWGA/6i4zrLYhRG0hGvC3GPU/jGUj3Cy+ZR0v30duV3e23R95T1lE2+lsndSw==
+ dependencies:
+ protocols "^2.0.0"
+
+parse-url@^8.1.0:
+ version "8.1.0"
+ resolved "https://registry.yarnpkg.com/parse-url/-/parse-url-8.1.0.tgz#972e0827ed4b57fc85f0ea6b0d839f0d8a57a57d"
+ integrity sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==
+ dependencies:
+ parse-path "^7.0.0"
+
+parse5@^7.0.0:
+ version "7.3.0"
+ resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.3.0.tgz#d7e224fa72399c7a175099f45fc2ad024b05ec05"
+ integrity sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==
+ dependencies:
+ entities "^6.0.0"
+
+path-data-parser@0.1.0, path-data-parser@^0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/path-data-parser/-/path-data-parser-0.1.0.tgz#8f5ba5cc70fc7becb3dcefaea08e2659aba60b8c"
+ integrity sha512-NOnmBpt5Y2RWbuv0LMzsayp3lVylAHLPUTut412ZA3l+C4uw4ZVkQbjShYCQ8TCpUMdPapr4YjUqLYD6v68j+w==
+
+path-exists@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
+ integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
+
+path-is-absolute@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
+ integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
+
+path-key@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
+ integrity sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==
+
+path-key@^3.1.0:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
+ integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
+
+path-parse@^1.0.7:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
+ integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
+
+path-root-regex@^0.1.0:
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d"
+ integrity sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==
+
+path-root@^0.1.1:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7"
+ integrity sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==
+ dependencies:
+ path-root-regex "^0.1.0"
+
+path-scurry@^1.10.1, path-scurry@^1.11.1:
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2"
+ integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==
+ dependencies:
+ lru-cache "^10.2.0"
+ minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
+
+path-type@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
+ integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
+
+path-type@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/path-type/-/path-type-6.0.0.tgz#2f1bb6791a91ce99194caede5d6c5920ed81eb51"
+ integrity sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==
+
+path@^0.12.7:
+ version "0.12.7"
+ resolved "https://registry.yarnpkg.com/path/-/path-0.12.7.tgz#d4dc2a506c4ce2197eb481ebfcd5b36c0140b10f"
+ integrity sha512-aXXC6s+1w7otVF9UletFkFcDsJeO7lSZBPUQhtb5O0xJe8LtYhj/GxldoL09bBj9+ZmE2hNoHqQSFMN5fikh4Q==
+ dependencies:
+ process "^0.11.1"
+ util "^0.10.3"
+
+pathe@^2.0.1, pathe@^2.0.3:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/pathe/-/pathe-2.0.3.tgz#3ecbec55421685b70a9da872b2cff3e1cbed1716"
+ integrity sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==
+
+pathval@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/pathval/-/pathval-2.0.1.tgz#8855c5a2899af072d6ac05d11e46045ad0dc605d"
+ integrity sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==
+
+periscopic@^3.0.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/periscopic/-/periscopic-3.1.0.tgz#7e9037bf51c5855bd33b48928828db4afa79d97a"
+ integrity sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==
+ dependencies:
+ "@types/estree" "^1.0.0"
+ estree-walker "^3.0.0"
+ is-reference "^3.0.0"
+
+picocolors@^1.0.0, picocolors@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b"
+ integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==
+
+picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1:
+ version "2.3.1"
+ resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
+ integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
+
+picomatch@^4.0.3:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.3.tgz#796c76136d1eead715db1e7bad785dedd695a042"
+ integrity sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==
+
+pify@^2.3.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
+ integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==
+
+pirates@^4.0.1:
+ version "4.0.7"
+ resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.7.tgz#643b4a18c4257c8a65104b73f3049ce9a0a15e22"
+ integrity sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==
+
+pkg-types@^1.3.1:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.3.1.tgz#bd7cc70881192777eef5326c19deb46e890917df"
+ integrity sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==
+ dependencies:
+ confbox "^0.1.8"
+ mlly "^1.7.4"
+ pathe "^2.0.1"
+
+pkg-types@^2.3.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-2.3.0.tgz#037f2c19bd5402966ff6810e32706558cb5b5726"
+ integrity sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==
+ dependencies:
+ confbox "^0.2.2"
+ exsolve "^1.0.7"
+ pathe "^2.0.3"
+
+plop-helper-date@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/plop-helper-date/-/plop-helper-date-1.0.0.tgz#c795542b8a130b91494f65ea46387c266efa5ec4"
+ integrity sha512-JxRJKUICQndhuxfuJL/z7ZWL+muct8FwNK3o0Lm6EWLcoSNRP3sTIh4E86zpNvBmKUg/2Jl30NKt0NXsZ88u+Q==
+ dependencies:
+ date-fns "^2.15.0"
+
+plop@^4.0.1:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/plop/-/plop-4.0.3.tgz#a65dea8ac55fd3e3cb71332a5af7c1e84379f487"
+ integrity sha512-iDD7f+y8Ula3jpPtawc6zipkCIY4w14lynSVXv7GlRDBHRT7vzThzZaugFrXN8Zul4rekXjJmfpeqoKDOC4txg==
+ dependencies:
+ "@types/liftoff" "^4.0.3"
+ interpret "^3.1.1"
+ liftoff "^5.0.1"
+ minimist "^1.2.8"
+ nanospinner "^1.2.2"
+ node-plop "^0.32.2"
+ picocolors "^1.1.1"
+ v8flags "^4.0.1"
+
+points-on-curve@0.2.0, points-on-curve@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/points-on-curve/-/points-on-curve-0.2.0.tgz#7dbb98c43791859434284761330fa893cb81b4d1"
+ integrity sha512-0mYKnYYe9ZcqMCWhUjItv/oHjvgEsfKvnUTg8sAtnHr3GVy7rGkXCb6d5cSyqrWqL4k81b9CPg3urd+T7aop3A==
+
+points-on-path@^0.2.1:
+ version "0.2.1"
+ resolved "https://registry.yarnpkg.com/points-on-path/-/points-on-path-0.2.1.tgz#553202b5424c53bed37135b318858eacff85dd52"
+ integrity sha512-25ClnWWuw7JbWZcgqY/gJ4FQWadKxGWk+3kR/7kD0tCaDtPPMj7oHu2ToLaVhfpnHrZzYby2w6tUA0eOIuUg8g==
+ dependencies:
+ path-data-parser "0.1.0"
+ points-on-curve "0.2.0"
+
+possible-typed-array-names@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz#93e3582bc0e5426586d9d07b79ee40fc841de4ae"
+ integrity sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==
+
+postcss-import@^15.1.0:
+ version "15.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-15.1.0.tgz#41c64ed8cc0e23735a9698b3249ffdbf704adc70"
+ integrity sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==
+ dependencies:
+ postcss-value-parser "^4.0.0"
+ read-cache "^1.0.0"
+ resolve "^1.1.7"
+
+postcss-js@^4.0.1:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.1.0.tgz#003b63c6edde948766e40f3daf7e997ae43a5ce6"
+ integrity sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==
+ dependencies:
+ camelcase-css "^2.0.1"
+
+postcss-load-config@^4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-4.0.2.tgz#7159dcf626118d33e299f485d6afe4aff7c4a3e3"
+ integrity sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==
+ dependencies:
+ lilconfig "^3.0.0"
+ yaml "^2.3.4"
+
+postcss-nested@^6.0.1, postcss-nested@^6.2.0:
+ version "6.2.0"
+ resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-6.2.0.tgz#4c2d22ab5f20b9cb61e2c5c5915950784d068131"
+ integrity sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==
+ dependencies:
+ postcss-selector-parser "^6.1.1"
+
+postcss-selector-parser@^6.1.1, postcss-selector-parser@^6.1.2:
+ version "6.1.2"
+ resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz#27ecb41fb0e3b6ba7a1ec84fff347f734c7929de"
+ integrity sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==
+ dependencies:
+ cssesc "^3.0.0"
+ util-deprecate "^1.0.2"
+
+postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0:
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
+ integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
+
+postcss@8.4.31:
+ version "8.4.31"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.31.tgz#92b451050a9f914da6755af352bdc0192508656d"
+ integrity sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==
+ dependencies:
+ nanoid "^3.3.6"
+ picocolors "^1.0.0"
+ source-map-js "^1.0.2"
+
+postcss@^8, postcss@^8.4.43, postcss@^8.4.47:
+ version "8.5.6"
+ resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.6.tgz#2825006615a619b4f62a9e7426cc120b349a8f3c"
+ integrity sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==
+ dependencies:
+ nanoid "^3.3.11"
+ picocolors "^1.1.1"
+ source-map-js "^1.2.1"
+
+posthog-js@^1.194.6:
+ version "1.268.0"
+ resolved "https://registry.yarnpkg.com/posthog-js/-/posthog-js-1.268.0.tgz#fb8bd51fd3ab3ddb1f0af60125d83833810052b0"
+ integrity sha512-rEtziXONYXi+KKXBTzkxCTsHHKohLQvyAF2uEdXMwmL1vLW+f9rbroa2XuA9QUrvfboJXb5Pvysa+HnFnWnUcw==
+ dependencies:
+ "@posthog/core" "1.1.0"
+ core-js "^3.38.1"
+ fflate "^0.4.8"
+ preact "^10.19.3"
+ web-vitals "^4.2.4"
+
+preact@^10.19.3:
+ version "10.27.2"
+ resolved "https://registry.yarnpkg.com/preact/-/preact-10.27.2.tgz#19b9009c1be801a76a0aaf0fe5ba665985a09312"
+ integrity sha512-5SYSgFKSyhCbk6SrXyMpqjb5+MQBgfvEKE/OC+PujcY34sOpqtr+0AZQtPYx5IA6VxynQ7rUPCtKzyovpj9Bpg==
+
+prelude-ls@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
+ integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
+
+prettier@^3.2.5:
+ version "3.6.2"
+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.6.2.tgz#ccda02a1003ebbb2bfda6f83a074978f608b9393"
+ integrity sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==
+
+pretty-bytes@^6.1.1:
+ version "6.1.1"
+ resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-6.1.1.tgz#38cd6bb46f47afbf667c202cfc754bffd2016a3b"
+ integrity sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==
+
+pretty-format@^27.0.2:
+ version "27.5.1"
+ resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.5.1.tgz#2181879fdea51a7a5851fb39d920faa63f01d88e"
+ integrity sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==
+ dependencies:
+ ansi-regex "^5.0.1"
+ ansi-styles "^5.0.0"
+ react-is "^17.0.1"
+
+pretty-ms@^8.0.0:
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-8.0.0.tgz#a35563b2a02df01e595538f86d7de54ca23194a3"
+ integrity sha512-ASJqOugUF1bbzI35STMBUpZqdfYKlJugy6JBziGi2EE+AL5JPJGSzvpeVXojxrr0ViUYoToUjb5kjSEGf7Y83Q==
+ dependencies:
+ parse-ms "^3.0.0"
+
+prismjs@^1.29.0:
+ version "1.30.0"
+ resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.30.0.tgz#d9709969d9d4e16403f6f348c63553b19f0975a9"
+ integrity sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==
+
+process@^0.11.1:
+ version "0.11.10"
+ resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
+ integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==
+
+prop-types@^15.8.1:
+ version "15.8.1"
+ resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
+ integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
+ dependencies:
+ loose-envify "^1.4.0"
+ object-assign "^4.1.1"
+ react-is "^16.13.1"
+
+property-information@^6.0.0:
+ version "6.5.0"
+ resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.5.0.tgz#6212fbb52ba757e92ef4fb9d657563b933b7ffec"
+ integrity sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==
+
+property-information@^7.0.0:
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/property-information/-/property-information-7.1.0.tgz#b622e8646e02b580205415586b40804d3e8bfd5d"
+ integrity sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==
+
+protocols@^2.0.0, protocols@^2.0.1:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/protocols/-/protocols-2.0.2.tgz#822e8fcdcb3df5356538b3e91bfd890b067fd0a4"
+ integrity sha512-hHVTzba3wboROl0/aWRRG9dMytgH6ow//STBZh43l/wQgmMhYhOFi0EHWAPtoCz9IAUymsyP0TSBHkhgMEGNnQ==
+
+proxy-from-env@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2"
+ integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==
+
+pseudomap@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
+ integrity sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==
+
+punycode@^2.1.0:
+ version "2.3.1"
+ resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5"
+ integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==
+
+quansync@^0.2.11:
+ version "0.2.11"
+ resolved "https://registry.yarnpkg.com/quansync/-/quansync-0.2.11.tgz#f9c3adda2e1272e4f8cf3f1457b04cbdb4ee692a"
+ integrity sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==
+
+queue-microtask@^1.2.2:
+ version "1.2.3"
+ resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
+ integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
+
+react-dom@^18:
+ version "18.3.1"
+ resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.3.1.tgz#c2265d79511b57d479b3dd3fdfa51536494c5cb4"
+ integrity sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==
+ dependencies:
+ loose-envify "^1.1.0"
+ scheduler "^0.23.2"
+
+react-hook-form@^7.51.1:
+ version "7.63.0"
+ resolved "https://registry.yarnpkg.com/react-hook-form/-/react-hook-form-7.63.0.tgz#ff601754989bdd5cfc19fcbb02a3c0d4fbb29284"
+ integrity sha512-ZwueDMvUeucovM2VjkCf7zIHcs1aAlDimZu2Hvel5C5907gUzMpm4xCrQXtRzCvsBqFjonB4m3x4LzCFI1ZKWA==
+
+react-icons@^5.0.1:
+ version "5.5.0"
+ resolved "https://registry.yarnpkg.com/react-icons/-/react-icons-5.5.0.tgz#8aa25d3543ff84231685d3331164c00299cdfaf2"
+ integrity sha512-MEFcXdkP3dLo8uumGI5xN3lDFNsRtrjbOEKDLD7yv76v4wpnEq2Lt2qeHaQOr34I/wPN3s3+N08WkQ+CW37Xiw==
+
+react-is@^16.13.1:
+ version "16.13.1"
+ resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
+ integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
+
+react-is@^17.0.1:
+ version "17.0.2"
+ resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0"
+ integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==
+
+react-markdown@^9.0.1:
+ version "9.1.0"
+ resolved "https://registry.yarnpkg.com/react-markdown/-/react-markdown-9.1.0.tgz#606bd74c6af131ba382a7c1282ff506708ed2e26"
+ integrity sha512-xaijuJB0kzGiUdG7nc2MOMDUDBWPyGAjZtUrow9XxUeua8IqeP+VlIfAZ3bphpcLTnSZXz6z9jcVC/TCwbfgdw==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ "@types/mdast" "^4.0.0"
+ devlop "^1.0.0"
+ hast-util-to-jsx-runtime "^2.0.0"
+ html-url-attributes "^3.0.0"
+ mdast-util-to-hast "^13.0.0"
+ remark-parse "^11.0.0"
+ remark-rehype "^11.0.0"
+ unified "^11.0.0"
+ unist-util-visit "^5.0.0"
+ vfile "^6.0.0"
+
+react-remove-scroll-bar@^2.3.7:
+ version "2.3.8"
+ resolved "https://registry.yarnpkg.com/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.8.tgz#99c20f908ee467b385b68a3469b4a3e750012223"
+ integrity sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==
+ dependencies:
+ react-style-singleton "^2.2.2"
+ tslib "^2.0.0"
+
+react-remove-scroll@^2.6.3:
+ version "2.7.1"
+ resolved "https://registry.yarnpkg.com/react-remove-scroll/-/react-remove-scroll-2.7.1.tgz#d2101d414f6d81d7d3bf033f3c1cb4785789f753"
+ integrity sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==
+ dependencies:
+ react-remove-scroll-bar "^2.3.7"
+ react-style-singleton "^2.2.3"
+ tslib "^2.1.0"
+ use-callback-ref "^1.3.3"
+ use-sidecar "^1.1.3"
+
+react-share@^5.1.0:
+ version "5.2.2"
+ resolved "https://registry.yarnpkg.com/react-share/-/react-share-5.2.2.tgz#bd011e9c53a6adf97ef75c062a2e8b24744c4de2"
+ integrity sha512-z0nbOX6X6vHHWAvXduNkYeJUKTKNpKM5Xpmc5a2BxjJhUWl+sE7AsSEMmYEUj2DuDjZr5m7KFIGF0sQPKcUN6w==
+ dependencies:
+ classnames "^2.3.2"
+ jsonp "^0.2.1"
+
+react-style-singleton@^2.2.2, react-style-singleton@^2.2.3:
+ version "2.2.3"
+ resolved "https://registry.yarnpkg.com/react-style-singleton/-/react-style-singleton-2.2.3.tgz#4265608be69a4d70cfe3047f2c6c88b2c3ace388"
+ integrity sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==
+ dependencies:
+ get-nonce "^1.0.0"
+ tslib "^2.0.0"
+
+react-tweet@^3.2.2:
+ version "3.2.2"
+ resolved "https://registry.yarnpkg.com/react-tweet/-/react-tweet-3.2.2.tgz#b9a8fccbab469a02d87b26f3728275024f4e9574"
+ integrity sha512-hIkxAVPpN2RqWoDEbo3TTnN/pDcp9/Jb6pTgiA4EbXa9S+m2vHIvvZKHR+eS0PDIsYqe+zTmANRa5k6+/iwGog==
+ dependencies:
+ "@swc/helpers" "^0.5.3"
+ clsx "^2.0.0"
+ swr "^2.2.4"
+
+react@^18:
+ version "18.3.1"
+ resolved "https://registry.yarnpkg.com/react/-/react-18.3.1.tgz#49ab892009c53933625bd16b2533fc754cab2891"
+ integrity sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==
+ dependencies:
+ loose-envify "^1.1.0"
+
+read-cache@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774"
+ integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==
+ dependencies:
+ pify "^2.3.0"
+
+readable-stream@^3.4.0:
+ version "3.6.2"
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967"
+ integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==
+ dependencies:
+ inherits "^2.0.3"
+ string_decoder "^1.1.1"
+ util-deprecate "^1.0.1"
+
+readdirp@^4.0.1:
+ version "4.1.2"
+ resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-4.1.2.tgz#eb85801435fbf2a7ee58f19e0921b068fc69948d"
+ integrity sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==
+
+readdirp@~3.6.0:
+ version "3.6.0"
+ resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
+ integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
+ dependencies:
+ picomatch "^2.2.1"
+
+reading-time@^1.3.0:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/reading-time/-/reading-time-1.5.0.tgz#d2a7f1b6057cb2e169beaf87113cc3411b5bc5bb"
+ integrity sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==
+
+rechoir@^0.8.0:
+ version "0.8.0"
+ resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.8.0.tgz#49f866e0d32146142da3ad8f0eff352b3215ff22"
+ integrity sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==
+ dependencies:
+ resolve "^1.20.0"
+
+redent@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/redent/-/redent-3.0.0.tgz#e557b7998316bb53c9f1f56fa626352c6963059f"
+ integrity sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==
+ dependencies:
+ indent-string "^4.0.0"
+ strip-indent "^3.0.0"
+
+reflect.getprototypeof@^1.0.6, reflect.getprototypeof@^1.0.9:
+ version "1.0.10"
+ resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz#c629219e78a3316d8b604c765ef68996964e7bf9"
+ integrity sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==
+ dependencies:
+ call-bind "^1.0.8"
+ define-properties "^1.2.1"
+ es-abstract "^1.23.9"
+ es-errors "^1.3.0"
+ es-object-atoms "^1.0.0"
+ get-intrinsic "^1.2.7"
+ get-proto "^1.0.1"
+ which-builtin-type "^1.2.1"
+
+regexp.prototype.flags@^1.5.3, regexp.prototype.flags@^1.5.4:
+ version "1.5.4"
+ resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz#1ad6c62d44a259007e55b3970e00f746efbcaa19"
+ integrity sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==
+ dependencies:
+ call-bind "^1.0.8"
+ define-properties "^1.2.1"
+ es-errors "^1.3.0"
+ get-proto "^1.0.1"
+ gopd "^1.2.0"
+ set-function-name "^2.0.2"
+
+rehype-external-links@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/rehype-external-links/-/rehype-external-links-3.0.0.tgz#2b28b5cda1932f83f045b6f80a3e1b15f168c6f6"
+ integrity sha512-yp+e5N9V3C6bwBeAC4n796kc86M4gJCdlVhiMTxIrJG5UHDMh+PJANf9heqORJbt1nrCbDwIlAZKjANIaVBbvw==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ "@ungap/structured-clone" "^1.0.0"
+ hast-util-is-element "^3.0.0"
+ is-absolute-url "^4.0.0"
+ space-separated-tokens "^2.0.0"
+ unist-util-visit "^5.0.0"
+
+rehype-format@^5.0.0:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/rehype-format/-/rehype-format-5.0.1.tgz#e255e59bed0c062156aaf51c16fad5a521a1f5c8"
+ integrity sha512-zvmVru9uB0josBVpr946OR8ui7nJEdzZobwLOOqHb/OOD88W0Vk2SqLwoVOj0fM6IPCCO6TaV9CvQvJMWwukFQ==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ hast-util-format "^1.0.0"
+
+rehype-highlight@^7.0.0:
+ version "7.0.2"
+ resolved "https://registry.yarnpkg.com/rehype-highlight/-/rehype-highlight-7.0.2.tgz#997e05e3a336853f6f6b2cfc450c5dad0f960b07"
+ integrity sha512-k158pK7wdC2qL3M5NcZROZ2tR/l7zOzjxXd5VGdcfIyoijjQqpHd3JKtYSBDpDZ38UI2WJWuFAtkMDxmx5kstA==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ hast-util-to-text "^4.0.0"
+ lowlight "^3.0.0"
+ unist-util-visit "^5.0.0"
+ vfile "^6.0.0"
+
+rehype-katex@^7.0.0:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/rehype-katex/-/rehype-katex-7.0.1.tgz#832e6d7af2744a228981d1b0fe89483a9e7c93a1"
+ integrity sha512-OiM2wrZ/wuhKkigASodFoo8wimG3H12LWQaH8qSPVJn9apWKFSH3YOCtbKpBorTVw/eI7cuT21XBbvwEswbIOA==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ "@types/katex" "^0.16.0"
+ hast-util-from-html-isomorphic "^2.0.0"
+ hast-util-to-text "^4.0.0"
+ katex "^0.16.0"
+ unist-util-visit-parents "^6.0.0"
+ vfile "^6.0.0"
+
+rehype-pretty-code@0.9.11:
+ version "0.9.11"
+ resolved "https://registry.yarnpkg.com/rehype-pretty-code/-/rehype-pretty-code-0.9.11.tgz#742017cbcfd5bd85466dfedd65b33a954aff7f2a"
+ integrity sha512-Eq90eCYXQJISktfRZ8PPtwc5SUyH6fJcxS8XOMnHPUQZBtC6RYo67gGlley9X2nR8vlniPj0/7oCDEYHKQa/oA==
+ dependencies:
+ "@types/hast" "^2.0.0"
+ hash-obj "^4.0.0"
+ parse-numeric-range "^1.3.0"
+
+rehype-raw@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/rehype-raw/-/rehype-raw-7.0.0.tgz#59d7348fd5dbef3807bbaa1d443efd2dd85ecee4"
+ integrity sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ hast-util-raw "^9.0.0"
+ vfile "^6.0.0"
+
+rehype-sanitize@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/rehype-sanitize/-/rehype-sanitize-6.0.0.tgz#16e95f4a67a69cbf0f79e113c8e0df48203db73c"
+ integrity sha512-CsnhKNsyI8Tub6L4sm5ZFsme4puGfc6pYylvXo1AeqaGbjOYyzNv3qZPwvs0oMJ39eryyeOdmxwUIo94IpEhqg==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ hast-util-sanitize "^5.0.0"
+
+rehype-stringify@^10.0.0:
+ version "10.0.1"
+ resolved "https://registry.yarnpkg.com/rehype-stringify/-/rehype-stringify-10.0.1.tgz#2ec1ebc56c6aba07905d3b4470bdf0f684f30b75"
+ integrity sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ hast-util-to-html "^9.0.0"
+ unified "^11.0.0"
+
+remark-gfm@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/remark-gfm/-/remark-gfm-3.0.1.tgz#0b180f095e3036545e9dddac0e8df3fa5cfee54f"
+ integrity sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==
+ dependencies:
+ "@types/mdast" "^3.0.0"
+ mdast-util-gfm "^2.0.0"
+ micromark-extension-gfm "^2.0.0"
+ unified "^10.0.0"
+
+remark-gfm@^4.0.0:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/remark-gfm/-/remark-gfm-4.0.1.tgz#33227b2a74397670d357bf05c098eaf8513f0d6b"
+ integrity sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==
+ dependencies:
+ "@types/mdast" "^4.0.0"
+ mdast-util-gfm "^3.0.0"
+ micromark-extension-gfm "^3.0.0"
+ remark-parse "^11.0.0"
+ remark-stringify "^11.0.0"
+ unified "^11.0.0"
+
+remark-math@^5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/remark-math/-/remark-math-5.1.1.tgz#459e798d978d4ca032e745af0bac81ddcdf94964"
+ integrity sha512-cE5T2R/xLVtfFI4cCePtiRn+e6jKMtFDR3P8V3qpv8wpKjwvHoBA4eJzvX+nVrnlNy0911bdGmuspCSwetfYHw==
+ dependencies:
+ "@types/mdast" "^3.0.0"
+ mdast-util-math "^2.0.0"
+ micromark-extension-math "^2.0.0"
+ unified "^10.0.0"
+
+remark-mdx@^2.0.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-2.3.0.tgz#efe678025a8c2726681bde8bf111af4a93943db4"
+ integrity sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==
+ dependencies:
+ mdast-util-mdx "^2.0.0"
+ micromark-extension-mdxjs "^1.0.0"
+
+remark-parse@^10.0.0:
+ version "10.0.2"
+ resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-10.0.2.tgz#ca241fde8751c2158933f031a4e3efbaeb8bc262"
+ integrity sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==
+ dependencies:
+ "@types/mdast" "^3.0.0"
+ mdast-util-from-markdown "^1.0.0"
+ unified "^10.0.0"
+
+remark-parse@^11.0.0:
+ version "11.0.0"
+ resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-11.0.0.tgz#aa60743fcb37ebf6b069204eb4da304e40db45a1"
+ integrity sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==
+ dependencies:
+ "@types/mdast" "^4.0.0"
+ mdast-util-from-markdown "^2.0.0"
+ micromark-util-types "^2.0.0"
+ unified "^11.0.0"
+
+remark-reading-time@^2.0.1:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/remark-reading-time/-/remark-reading-time-2.0.2.tgz#394ec979ae3acf45655fa10fcf15078e806de694"
+ integrity sha512-ILjIuR0dQQ8pELPgaFvz7ralcSN62rD/L1pTUJgWb4gfua3ZwYEI8mnKGxEQCbrXSUF/OvycTkcUbifGOtOn5A==
+ dependencies:
+ estree-util-is-identifier-name "^2.0.0"
+ estree-util-value-to-estree "^3.3.3"
+ reading-time "^1.3.0"
+ unist-util-visit "^3.1.0"
+
+remark-rehype@^10.0.0:
+ version "10.1.0"
+ resolved "https://registry.yarnpkg.com/remark-rehype/-/remark-rehype-10.1.0.tgz#32dc99d2034c27ecaf2e0150d22a6dcccd9a6279"
+ integrity sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==
+ dependencies:
+ "@types/hast" "^2.0.0"
+ "@types/mdast" "^3.0.0"
+ mdast-util-to-hast "^12.1.0"
+ unified "^10.0.0"
+
+remark-rehype@^11.0.0, remark-rehype@^11.1.0:
+ version "11.1.2"
+ resolved "https://registry.yarnpkg.com/remark-rehype/-/remark-rehype-11.1.2.tgz#2addaadda80ca9bd9aa0da763e74d16327683b37"
+ integrity sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==
+ dependencies:
+ "@types/hast" "^3.0.0"
+ "@types/mdast" "^4.0.0"
+ mdast-util-to-hast "^13.0.0"
+ unified "^11.0.0"
+ vfile "^6.0.0"
+
+remark-stringify@^11.0.0:
+ version "11.0.0"
+ resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-11.0.0.tgz#4c5b01dd711c269df1aaae11743eb7e2e7636fd3"
+ integrity sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==
+ dependencies:
+ "@types/mdast" "^4.0.0"
+ mdast-util-to-markdown "^2.0.0"
+ unified "^11.0.0"
+
+remove-accents@0.5.0:
+ version "0.5.0"
+ resolved "https://registry.yarnpkg.com/remove-accents/-/remove-accents-0.5.0.tgz#77991f37ba212afba162e375b627631315bed687"
+ integrity sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==
+
+require-from-string@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909"
+ integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==
+
+resolve-dir@^1.0.0, resolve-dir@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43"
+ integrity sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==
+ dependencies:
+ expand-tilde "^2.0.0"
+ global-modules "^1.0.0"
+
+resolve-from@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
+ integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
+
+resolve-pkg-maps@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#616b3dc2c57056b5588c31cdf4b3d64db133720f"
+ integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==
+
+resolve@^1.1.7, resolve@^1.20.0, resolve@^1.22.10, resolve@^1.22.4, resolve@^1.22.8:
+ version "1.22.10"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.10.tgz#b663e83ffb09bbf2386944736baae803029b8b39"
+ integrity sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==
+ dependencies:
+ is-core-module "^2.16.0"
+ path-parse "^1.0.7"
+ supports-preserve-symlinks-flag "^1.0.0"
+
+resolve@^2.0.0-next.5:
+ version "2.0.0-next.5"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.5.tgz#6b0ec3107e671e52b68cd068ef327173b90dc03c"
+ integrity sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==
+ dependencies:
+ is-core-module "^2.13.0"
+ path-parse "^1.0.7"
+ supports-preserve-symlinks-flag "^1.0.0"
+
+restore-cursor@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e"
+ integrity sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==
+ dependencies:
+ onetime "^5.1.0"
+ signal-exit "^3.0.2"
+
+reusify@^1.0.4:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.1.0.tgz#0fe13b9522e1473f51b558ee796e08f11f9b489f"
+ integrity sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==
+
+rimraf@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
+ integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
+ dependencies:
+ glob "^7.1.3"
+
+robust-predicates@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/robust-predicates/-/robust-predicates-3.0.2.tgz#d5b28528c4824d20fc48df1928d41d9efa1ad771"
+ integrity sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==
+
+rollup@^4.20.0:
+ version "4.52.1"
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.52.1.tgz#ed685fa3f4abb8c45b609a6af1228dc409ca216f"
+ integrity sha512-/vFSi3I+ya/D75UZh5GxLc/6UQ+KoKPEvL9autr1yGcaeWzXBQr1tTXmNDS4FImFCPwBAvVe7j9YzR8PQ5rfqw==
+ dependencies:
+ "@types/estree" "1.0.8"
+ optionalDependencies:
+ "@rollup/rollup-android-arm-eabi" "4.52.1"
+ "@rollup/rollup-android-arm64" "4.52.1"
+ "@rollup/rollup-darwin-arm64" "4.52.1"
+ "@rollup/rollup-darwin-x64" "4.52.1"
+ "@rollup/rollup-freebsd-arm64" "4.52.1"
+ "@rollup/rollup-freebsd-x64" "4.52.1"
+ "@rollup/rollup-linux-arm-gnueabihf" "4.52.1"
+ "@rollup/rollup-linux-arm-musleabihf" "4.52.1"
+ "@rollup/rollup-linux-arm64-gnu" "4.52.1"
+ "@rollup/rollup-linux-arm64-musl" "4.52.1"
+ "@rollup/rollup-linux-loong64-gnu" "4.52.1"
+ "@rollup/rollup-linux-ppc64-gnu" "4.52.1"
+ "@rollup/rollup-linux-riscv64-gnu" "4.52.1"
+ "@rollup/rollup-linux-riscv64-musl" "4.52.1"
+ "@rollup/rollup-linux-s390x-gnu" "4.52.1"
+ "@rollup/rollup-linux-x64-gnu" "4.52.1"
+ "@rollup/rollup-linux-x64-musl" "4.52.1"
+ "@rollup/rollup-openharmony-arm64" "4.52.1"
+ "@rollup/rollup-win32-arm64-msvc" "4.52.1"
+ "@rollup/rollup-win32-ia32-msvc" "4.52.1"
+ "@rollup/rollup-win32-x64-gnu" "4.52.1"
+ "@rollup/rollup-win32-x64-msvc" "4.52.1"
+ fsevents "~2.3.2"
+
+roughjs@^4.6.6:
+ version "4.6.6"
+ resolved "https://registry.yarnpkg.com/roughjs/-/roughjs-4.6.6.tgz#1059f49a5e0c80dee541a005b20cc322b222158b"
+ integrity sha512-ZUz/69+SYpFN/g/lUlo2FXcIjRkSu3nDarreVdGGndHEBJ6cXPdKguS8JGxwj5HA5xIbVKSmLgr5b3AWxtRfvQ==
+ dependencies:
+ hachure-fill "^0.5.2"
+ path-data-parser "^0.1.0"
+ points-on-curve "^0.2.0"
+ points-on-path "^0.2.1"
+
+run-async@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/run-async/-/run-async-3.0.0.tgz#42a432f6d76c689522058984384df28be379daad"
+ integrity sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==
+
+run-parallel@^1.1.9:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
+ integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
+ dependencies:
+ queue-microtask "^1.2.2"
+
+rw@1:
+ version "1.3.3"
+ resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4"
+ integrity sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==
+
+rxjs@^7.2.0, rxjs@^7.8.1:
+ version "7.8.2"
+ resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.2.tgz#955bc473ed8af11a002a2be52071bf475638607b"
+ integrity sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==
+ dependencies:
+ tslib "^2.1.0"
+
+sade@^1.7.3:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/sade/-/sade-1.8.1.tgz#0a78e81d658d394887be57d2a409bf703a3b2701"
+ integrity sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==
+ dependencies:
+ mri "^1.1.0"
+
+safe-array-concat@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.3.tgz#c9e54ec4f603b0bbb8e7e5007a5ee7aecd1538c3"
+ integrity sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==
+ dependencies:
+ call-bind "^1.0.8"
+ call-bound "^1.0.2"
+ get-intrinsic "^1.2.6"
+ has-symbols "^1.1.0"
+ isarray "^2.0.5"
+
+safe-buffer@~5.2.0:
+ version "5.2.1"
+ resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
+ integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
+
+safe-push-apply@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/safe-push-apply/-/safe-push-apply-1.0.0.tgz#01850e981c1602d398c85081f360e4e6d03d27f5"
+ integrity sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==
+ dependencies:
+ es-errors "^1.3.0"
+ isarray "^2.0.5"
+
+safe-regex-test@^1.0.3, safe-regex-test@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.1.0.tgz#7f87dfb67a3150782eaaf18583ff5d1711ac10c1"
+ integrity sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==
+ dependencies:
+ call-bound "^1.0.2"
+ es-errors "^1.3.0"
+ is-regex "^1.2.1"
+
+"safer-buffer@>= 2.1.2 < 3.0.0":
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
+ integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
+
+sass@^1.72.0:
+ version "1.93.1"
+ resolved "https://registry.yarnpkg.com/sass/-/sass-1.93.1.tgz#94bf77eeef5fba022c7316515327e275e46b654e"
+ integrity sha512-wLAeLB7IksO2u+cCfhHqcy7/2ZUMPp/X2oV6+LjmweTqgjhOKrkaE/Q1wljxtco5EcOcupZ4c981X0gpk5Tiag==
+ dependencies:
+ chokidar "^4.0.0"
+ immutable "^5.0.2"
+ source-map-js ">=0.6.2 <2.0.0"
+ optionalDependencies:
+ "@parcel/watcher" "^2.4.1"
+
+scheduler@^0.23.2:
+ version "0.23.2"
+ resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.2.tgz#414ba64a3b282892e944cf2108ecc078d115cdc3"
+ integrity sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==
+ dependencies:
+ loose-envify "^1.1.0"
+
+scroll-into-view-if-needed@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.1.0.tgz#fa9524518c799b45a2ef6bbffb92bcad0296d01f"
+ integrity sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==
+ dependencies:
+ compute-scroll-into-view "^3.0.2"
+
+section-matter@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/section-matter/-/section-matter-1.0.0.tgz#e9041953506780ec01d59f292a19c7b850b84167"
+ integrity sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==
+ dependencies:
+ extend-shallow "^2.0.1"
+ kind-of "^6.0.0"
+
+semver@^6.3.1:
+ version "6.3.1"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4"
+ integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==
+
+semver@^7.5.4, semver@^7.6.3, semver@^7.7.1:
+ version "7.7.2"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.2.tgz#67d99fdcd35cec21e6f8b87a7fd515a33f982b58"
+ integrity sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==
+
+set-function-length@^1.2.2:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449"
+ integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==
+ dependencies:
+ define-data-property "^1.1.4"
+ es-errors "^1.3.0"
+ function-bind "^1.1.2"
+ get-intrinsic "^1.2.4"
+ gopd "^1.0.1"
+ has-property-descriptors "^1.0.2"
+
+set-function-name@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985"
+ integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==
+ dependencies:
+ define-data-property "^1.1.4"
+ es-errors "^1.3.0"
+ functions-have-names "^1.2.3"
+ has-property-descriptors "^1.0.2"
+
+set-proto@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/set-proto/-/set-proto-1.0.0.tgz#0760dbcff30b2d7e801fd6e19983e56da337565e"
+ integrity sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==
+ dependencies:
+ dunder-proto "^1.0.1"
+ es-errors "^1.3.0"
+ es-object-atoms "^1.0.0"
+
+sharp@^0.33.3:
+ version "0.33.5"
+ resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.33.5.tgz#13e0e4130cc309d6a9497596715240b2ec0c594e"
+ integrity sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==
+ dependencies:
+ color "^4.2.3"
+ detect-libc "^2.0.3"
+ semver "^7.6.3"
+ optionalDependencies:
+ "@img/sharp-darwin-arm64" "0.33.5"
+ "@img/sharp-darwin-x64" "0.33.5"
+ "@img/sharp-libvips-darwin-arm64" "1.0.4"
+ "@img/sharp-libvips-darwin-x64" "1.0.4"
+ "@img/sharp-libvips-linux-arm" "1.0.5"
+ "@img/sharp-libvips-linux-arm64" "1.0.4"
+ "@img/sharp-libvips-linux-s390x" "1.0.4"
+ "@img/sharp-libvips-linux-x64" "1.0.4"
+ "@img/sharp-libvips-linuxmusl-arm64" "1.0.4"
+ "@img/sharp-libvips-linuxmusl-x64" "1.0.4"
+ "@img/sharp-linux-arm" "0.33.5"
+ "@img/sharp-linux-arm64" "0.33.5"
+ "@img/sharp-linux-s390x" "0.33.5"
+ "@img/sharp-linux-x64" "0.33.5"
+ "@img/sharp-linuxmusl-arm64" "0.33.5"
+ "@img/sharp-linuxmusl-x64" "0.33.5"
+ "@img/sharp-wasm32" "0.33.5"
+ "@img/sharp-win32-ia32" "0.33.5"
+ "@img/sharp-win32-x64" "0.33.5"
+
+shebang-command@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
+ integrity sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==
+ dependencies:
+ shebang-regex "^1.0.0"
+
+shebang-command@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
+ integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
+ dependencies:
+ shebang-regex "^3.0.0"
+
+shebang-regex@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
+ integrity sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==
+
+shebang-regex@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
+ integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
+
+shiki@^0.14.3:
+ version "0.14.7"
+ resolved "https://registry.yarnpkg.com/shiki/-/shiki-0.14.7.tgz#c3c9e1853e9737845f1d2ef81b31bcfb07056d4e"
+ integrity sha512-dNPAPrxSc87ua2sKJ3H5dQ/6ZaY8RNnaAqK+t0eG7p0Soi2ydiqbGOTaZCqaYvA/uZYfS1LJnemt3Q+mSfcPCg==
+ dependencies:
+ ansi-sequence-parser "^1.1.0"
+ jsonc-parser "^3.2.0"
+ vscode-oniguruma "^1.7.0"
+ vscode-textmate "^8.0.0"
+
+side-channel-list@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/side-channel-list/-/side-channel-list-1.0.0.tgz#10cb5984263115d3b7a0e336591e290a830af8ad"
+ integrity sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==
+ dependencies:
+ es-errors "^1.3.0"
+ object-inspect "^1.13.3"
+
+side-channel-map@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/side-channel-map/-/side-channel-map-1.0.1.tgz#d6bb6b37902c6fef5174e5f533fab4c732a26f42"
+ integrity sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==
+ dependencies:
+ call-bound "^1.0.2"
+ es-errors "^1.3.0"
+ get-intrinsic "^1.2.5"
+ object-inspect "^1.13.3"
+
+side-channel-weakmap@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz#11dda19d5368e40ce9ec2bdc1fb0ecbc0790ecea"
+ integrity sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==
+ dependencies:
+ call-bound "^1.0.2"
+ es-errors "^1.3.0"
+ get-intrinsic "^1.2.5"
+ object-inspect "^1.13.3"
+ side-channel-map "^1.0.1"
+
+side-channel@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.1.0.tgz#c3fcff9c4da932784873335ec9765fa94ff66bc9"
+ integrity sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==
+ dependencies:
+ es-errors "^1.3.0"
+ object-inspect "^1.13.3"
+ side-channel-list "^1.0.0"
+ side-channel-map "^1.0.1"
+ side-channel-weakmap "^1.0.2"
+
+signal-exit@^3.0.0, signal-exit@^3.0.2:
+ version "3.0.7"
+ resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
+ integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
+
+signal-exit@^4.0.1:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04"
+ integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==
+
+simple-swizzle@^0.2.2:
+ version "0.2.4"
+ resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.4.tgz#a8d11a45a11600d6a1ecdff6363329e3648c3667"
+ integrity sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==
+ dependencies:
+ is-arrayish "^0.3.1"
+
+slash@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
+ integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
+
+slash@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/slash/-/slash-5.1.0.tgz#be3adddcdf09ac38eebe8dcdc7b1a57a75b095ce"
+ integrity sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==
+
+sort-keys@^5.0.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-5.1.0.tgz#50a3f3d1ad3c5a76d043e0aeeba7299241e9aa5c"
+ integrity sha512-aSbHV0DaBcr7u0PVHXzM6NbZNAtrr9sF6+Qfs9UUVG7Ll3jQ6hHi8F/xqIIcn2rvIVbr0v/2zyjSdwSV47AgLQ==
+ dependencies:
+ is-plain-obj "^4.0.0"
+
+"source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.2, source-map-js@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46"
+ integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==
+
+source-map@^0.6.1:
+ version "0.6.1"
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
+ integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
+
+source-map@^0.7.0:
+ version "0.7.6"
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.6.tgz#a3658ab87e5b6429c8a1f3ba0083d4c61ca3ef02"
+ integrity sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==
+
+space-separated-tokens@^2.0.0:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz#1ecd9d2350a3844572c3f4a312bceb018348859f"
+ integrity sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==
+
+sprintf-js@~1.0.2:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
+ integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==
+
+stable-hash@^0.0.5:
+ version "0.0.5"
+ resolved "https://registry.yarnpkg.com/stable-hash/-/stable-hash-0.0.5.tgz#94e8837aaeac5b4d0f631d2972adef2924b40269"
+ integrity sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==
+
+stop-iteration-iterator@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz#f481ff70a548f6124d0312c3aa14cbfa7aa542ad"
+ integrity sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==
+ dependencies:
+ es-errors "^1.3.0"
+ internal-slot "^1.1.0"
+
+streamsearch@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/streamsearch/-/streamsearch-1.1.0.tgz#404dd1e2247ca94af554e841a8ef0eaa238da764"
+ integrity sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==
+
+"string-width-cjs@npm:string-width@^4.2.0":
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
+ integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
+ dependencies:
+ emoji-regex "^8.0.0"
+ is-fullwidth-code-point "^3.0.0"
+ strip-ansi "^6.0.1"
+
+string-width@^4.1.0, string-width@^4.2.3:
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
+ integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
+ dependencies:
+ emoji-regex "^8.0.0"
+ is-fullwidth-code-point "^3.0.0"
+ strip-ansi "^6.0.1"
+
+string-width@^5.0.1, string-width@^5.1.2:
+ version "5.1.2"
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794"
+ integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==
+ dependencies:
+ eastasianwidth "^0.2.0"
+ emoji-regex "^9.2.2"
+ strip-ansi "^7.0.1"
+
+string.prototype.includes@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz#eceef21283640761a81dbe16d6c7171a4edf7d92"
+ integrity sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==
+ dependencies:
+ call-bind "^1.0.7"
+ define-properties "^1.2.1"
+ es-abstract "^1.23.3"
+
+string.prototype.matchall@^4.0.12:
+ version "4.0.12"
+ resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz#6c88740e49ad4956b1332a911e949583a275d4c0"
+ integrity sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==
+ dependencies:
+ call-bind "^1.0.8"
+ call-bound "^1.0.3"
+ define-properties "^1.2.1"
+ es-abstract "^1.23.6"
+ es-errors "^1.3.0"
+ es-object-atoms "^1.0.0"
+ get-intrinsic "^1.2.6"
+ gopd "^1.2.0"
+ has-symbols "^1.1.0"
+ internal-slot "^1.1.0"
+ regexp.prototype.flags "^1.5.3"
+ set-function-name "^2.0.2"
+ side-channel "^1.1.0"
+
+string.prototype.repeat@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz#e90872ee0308b29435aa26275f6e1b762daee01a"
+ integrity sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==
+ dependencies:
+ define-properties "^1.1.3"
+ es-abstract "^1.17.5"
+
+string.prototype.trim@^1.2.10:
+ version "1.2.10"
+ resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz#40b2dd5ee94c959b4dcfb1d65ce72e90da480c81"
+ integrity sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==
+ dependencies:
+ call-bind "^1.0.8"
+ call-bound "^1.0.2"
+ define-data-property "^1.1.4"
+ define-properties "^1.2.1"
+ es-abstract "^1.23.5"
+ es-object-atoms "^1.0.0"
+ has-property-descriptors "^1.0.2"
+
+string.prototype.trimend@^1.0.9:
+ version "1.0.9"
+ resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz#62e2731272cd285041b36596054e9f66569b6942"
+ integrity sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==
+ dependencies:
+ call-bind "^1.0.8"
+ call-bound "^1.0.2"
+ define-properties "^1.2.1"
+ es-object-atoms "^1.0.0"
+
+string.prototype.trimstart@^1.0.8:
+ version "1.0.8"
+ resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz#7ee834dda8c7c17eff3118472bb35bfedaa34dde"
+ integrity sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==
+ dependencies:
+ call-bind "^1.0.7"
+ define-properties "^1.2.1"
+ es-object-atoms "^1.0.0"
+
+string_decoder@^1.1.1:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
+ integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
+ dependencies:
+ safe-buffer "~5.2.0"
+
+stringify-entities@^4.0.0:
+ version "4.0.4"
+ resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-4.0.4.tgz#b3b79ef5f277cc4ac73caeb0236c5ba939b3a4f3"
+ integrity sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==
+ dependencies:
+ character-entities-html4 "^2.0.0"
+ character-entities-legacy "^3.0.0"
+
+stringify-object@3.3.0:
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629"
+ integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==
+ dependencies:
+ get-own-enumerable-property-symbols "^3.0.0"
+ is-obj "^1.0.1"
+ is-regexp "^1.0.0"
+
+"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
+ integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
+ dependencies:
+ ansi-regex "^5.0.1"
+
+strip-ansi@^6.0.0, strip-ansi@^6.0.1:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
+ integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
+ dependencies:
+ ansi-regex "^5.0.1"
+
+strip-ansi@^7.0.1:
+ version "7.1.2"
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.2.tgz#132875abde678c7ea8d691533f2e7e22bb744dba"
+ integrity sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==
+ dependencies:
+ ansi-regex "^6.0.1"
+
+strip-bom-string@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92"
+ integrity sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==
+
+strip-bom@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
+ integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==
+
+strip-eof@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
+ integrity sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==
+
+strip-indent@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001"
+ integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==
+ dependencies:
+ min-indent "^1.0.0"
+
+strip-json-comments@^3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
+ integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
+
+style-mod@^4.0.0, style-mod@^4.1.0:
+ version "4.1.2"
+ resolved "https://registry.yarnpkg.com/style-mod/-/style-mod-4.1.2.tgz#ca238a1ad4786520f7515a8539d5a63691d7bf67"
+ integrity sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==
+
+style-to-js@^1.0.0:
+ version "1.1.17"
+ resolved "https://registry.yarnpkg.com/style-to-js/-/style-to-js-1.1.17.tgz#488b1558a8c1fd05352943f088cc3ce376813d83"
+ integrity sha512-xQcBGDxJb6jjFCTzvQtfiPn6YvvP2O8U1MDIPNfJQlWMYfktPy+iGsHE7cssjs7y84d9fQaK4UF3RIJaAHSoYA==
+ dependencies:
+ style-to-object "1.0.9"
+
+style-to-object@1.0.9:
+ version "1.0.9"
+ resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-1.0.9.tgz#35c65b713f4a6dba22d3d0c61435f965423653f0"
+ integrity sha512-G4qppLgKu/k6FwRpHiGiKPaPTFcG3g4wNVX/Qsfu+RqQM30E7Tyu/TEgxcL9PNLF5pdRLwQdE3YKKf+KF2Dzlw==
+ dependencies:
+ inline-style-parser "0.2.4"
+
+style-to-object@^0.4.1:
+ version "0.4.4"
+ resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.4.4.tgz#266e3dfd56391a7eefb7770423612d043c3f33ec"
+ integrity sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==
+ dependencies:
+ inline-style-parser "0.1.1"
+
+styled-jsx@5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.1.1.tgz#839a1c3aaacc4e735fed0781b8619ea5d0009d1f"
+ integrity sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==
+ dependencies:
+ client-only "0.0.1"
+
+stylis@^4.1.3, stylis@^4.3.6:
+ version "4.3.6"
+ resolved "https://registry.yarnpkg.com/stylis/-/stylis-4.3.6.tgz#7c7b97191cb4f195f03ecab7d52f7902ed378320"
+ integrity sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==
+
+sucrase@^3.35.0:
+ version "3.35.0"
+ resolved "https://registry.yarnpkg.com/sucrase/-/sucrase-3.35.0.tgz#57f17a3d7e19b36d8995f06679d121be914ae263"
+ integrity sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==
+ dependencies:
+ "@jridgewell/gen-mapping" "^0.3.2"
+ commander "^4.0.0"
+ glob "^10.3.10"
+ lines-and-columns "^1.1.6"
+ mz "^2.7.0"
+ pirates "^4.0.1"
+ ts-interface-checker "^0.1.9"
+
+supports-color@^4.0.0:
+ version "4.5.0"
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b"
+ integrity sha512-ycQR/UbvI9xIlEdQT1TQqwoXtEldExbCEAJgRo5YXlmSKjv6ThHnP9/vwGa1gr19Gfw+LkFd7KqYMhzrRC5JYw==
+ dependencies:
+ has-flag "^2.0.0"
+
+supports-color@^7.1.0:
+ version "7.2.0"
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
+ integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
+ dependencies:
+ has-flag "^4.0.0"
+
+supports-preserve-symlinks-flag@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
+ integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
+
+swr@^2.2.4:
+ version "2.3.6"
+ resolved "https://registry.yarnpkg.com/swr/-/swr-2.3.6.tgz#5fee0ee8a0762a16871ee371075cb09422b64f50"
+ integrity sha512-wfHRmHWk/isGNMwlLGlZX5Gzz/uTgo0o2IRuTMcf4CPuPFJZlq0rDaKUx+ozB5nBOReNV1kiOyzMfj+MBMikLw==
+ dependencies:
+ dequal "^2.0.3"
+ use-sync-external-store "^1.4.0"
+
+tailwind-merge@^2.2.2, tailwind-merge@^2.3.0:
+ version "2.6.0"
+ resolved "https://registry.yarnpkg.com/tailwind-merge/-/tailwind-merge-2.6.0.tgz#ac5fb7e227910c038d458f396b7400d93a3142d5"
+ integrity sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==
+
+tailwindcss@^3.3.0:
+ version "3.4.17"
+ resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.4.17.tgz#ae8406c0f96696a631c790768ff319d46d5e5a63"
+ integrity sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==
+ dependencies:
+ "@alloc/quick-lru" "^5.2.0"
+ arg "^5.0.2"
+ chokidar "^3.6.0"
+ didyoumean "^1.2.2"
+ dlv "^1.1.3"
+ fast-glob "^3.3.2"
+ glob-parent "^6.0.2"
+ is-glob "^4.0.3"
+ jiti "^1.21.6"
+ lilconfig "^3.1.3"
+ micromatch "^4.0.8"
+ normalize-path "^3.0.0"
+ object-hash "^3.0.0"
+ picocolors "^1.1.1"
+ postcss "^8.4.47"
+ postcss-import "^15.1.0"
+ postcss-js "^4.0.1"
+ postcss-load-config "^4.0.2"
+ postcss-nested "^6.2.0"
+ postcss-selector-parser "^6.1.2"
+ resolve "^1.22.8"
+ sucrase "^3.35.0"
+
+text-table@^0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
+ integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==
+
+thenify-all@^1.0.0:
+ version "1.6.0"
+ resolved "https://registry.yarnpkg.com/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726"
+ integrity sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==
+ dependencies:
+ thenify ">= 3.1.0 < 4"
+
+"thenify@>= 3.1.0 < 4":
+ version "3.3.1"
+ resolved "https://registry.yarnpkg.com/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f"
+ integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==
+ dependencies:
+ any-promise "^1.0.0"
+
+third-party-capital@1.0.20:
+ version "1.0.20"
+ resolved "https://registry.yarnpkg.com/third-party-capital/-/third-party-capital-1.0.20.tgz#e218a929a35bf4d2245da9addb8ab978d2f41685"
+ integrity sha512-oB7yIimd8SuGptespDAZnNkzIz+NWaJCu2RMsbs4Wmp9zSDUM8Nhi3s2OOcqYuv3mN4hitXc8DVx+LyUmbUDiA==
+
+tinyexec@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/tinyexec/-/tinyexec-1.0.1.tgz#70c31ab7abbb4aea0a24f55d120e5990bfa1e0b1"
+ integrity sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==
+
+tinyglobby@^0.2.13:
+ version "0.2.15"
+ resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.15.tgz#e228dd1e638cea993d2fdb4fcd2d4602a79951c2"
+ integrity sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==
+ dependencies:
+ fdir "^6.5.0"
+ picomatch "^4.0.3"
+
+tinyrainbow@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/tinyrainbow/-/tinyrainbow-1.2.0.tgz#5c57d2fc0fb3d1afd78465c33ca885d04f02abb5"
+ integrity sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==
+
+tinyspy@^3.0.0:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/tinyspy/-/tinyspy-3.0.2.tgz#86dd3cf3d737b15adcf17d7887c84a75201df20a"
+ integrity sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==
+
+title-case@^4.3.2:
+ version "4.3.2"
+ resolved "https://registry.yarnpkg.com/title-case/-/title-case-4.3.2.tgz#498d22ca7083dcfb9add4f4b8d98c000d05fceb3"
+ integrity sha512-I/nkcBo73mO42Idfv08jhInV61IMb61OdIFxk+B4Gu1oBjWBPOLmhZdsli+oJCVaD+86pYQA93cJfFt224ZFAA==
+
+title@^3.5.3:
+ version "3.5.3"
+ resolved "https://registry.yarnpkg.com/title/-/title-3.5.3.tgz#b338d701a3d949db6b49b2c86f409f9c2f36cd91"
+ integrity sha512-20JyowYglSEeCvZv3EZ0nZ046vLarO37prvV0mbtQV7C8DJPGgN967r8SJkqd3XK3K3lD3/Iyfp3avjfil8Q2Q==
+ dependencies:
+ arg "1.0.0"
+ chalk "2.3.0"
+ clipboardy "1.2.2"
+ titleize "1.0.0"
+
+titleize@1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/titleize/-/titleize-1.0.0.tgz#7d350722061830ba6617631e0cfd3ea08398d95a"
+ integrity sha512-TARUb7z1pGvlLxgPk++7wJ6aycXF3GJ0sNSBTAsTuJrQG5QuZlkUQP+zl+nbjAh4gMX9yDw9ZYklMd7vAfJKEw==
+
+to-regex-range@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
+ integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
+ dependencies:
+ is-number "^7.0.0"
+
+tr46@~0.0.3:
+ version "0.0.3"
+ resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a"
+ integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==
+
+trim-lines@^3.0.0:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/trim-lines/-/trim-lines-3.0.1.tgz#d802e332a07df861c48802c04321017b1bd87338"
+ integrity sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==
+
+trough@^2.0.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/trough/-/trough-2.2.0.tgz#94a60bd6bd375c152c1df911a4b11d5b0256f50f"
+ integrity sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==
+
+ts-api-utils@^1.0.1:
+ version "1.4.3"
+ resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.4.3.tgz#bfc2215fe6528fecab2b0fba570a2e8a4263b064"
+ integrity sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==
+
+ts-dedent@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/ts-dedent/-/ts-dedent-2.2.0.tgz#39e4bd297cd036292ae2394eb3412be63f563bb5"
+ integrity sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==
+
+ts-interface-checker@^0.1.9:
+ version "0.1.13"
+ resolved "https://registry.yarnpkg.com/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699"
+ integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==
+
+tsconfig-paths@^3.15.0:
+ version "3.15.0"
+ resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz#5299ec605e55b1abb23ec939ef15edaf483070d4"
+ integrity sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==
+ dependencies:
+ "@types/json5" "^0.0.29"
+ json5 "^1.0.2"
+ minimist "^1.2.6"
+ strip-bom "^3.0.0"
+
+tslib@^2.0.0, tslib@^2.1.0, tslib@^2.4.0, tslib@^2.8.0:
+ version "2.8.1"
+ resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f"
+ integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==
+
+type-check@^0.4.0, type-check@~0.4.0:
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
+ integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
+ dependencies:
+ prelude-ls "^1.2.1"
+
+type-fest@^0.20.2:
+ version "0.20.2"
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
+ integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
+
+type-fest@^0.21.3:
+ version "0.21.3"
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37"
+ integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==
+
+type-fest@^1.0.2:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-1.4.0.tgz#e9fb813fe3bf1744ec359d55d1affefa76f14be1"
+ integrity sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==
+
+typed-array-buffer@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz#a72395450a4869ec033fd549371b47af3a2ee536"
+ integrity sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==
+ dependencies:
+ call-bound "^1.0.3"
+ es-errors "^1.3.0"
+ is-typed-array "^1.1.14"
+
+typed-array-byte-length@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz#8407a04f7d78684f3d252aa1a143d2b77b4160ce"
+ integrity sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==
+ dependencies:
+ call-bind "^1.0.8"
+ for-each "^0.3.3"
+ gopd "^1.2.0"
+ has-proto "^1.2.0"
+ is-typed-array "^1.1.14"
+
+typed-array-byte-offset@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz#ae3698b8ec91a8ab945016108aef00d5bff12355"
+ integrity sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==
+ dependencies:
+ available-typed-arrays "^1.0.7"
+ call-bind "^1.0.8"
+ for-each "^0.3.3"
+ gopd "^1.2.0"
+ has-proto "^1.2.0"
+ is-typed-array "^1.1.15"
+ reflect.getprototypeof "^1.0.9"
+
+typed-array-length@^1.0.7:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.7.tgz#ee4deff984b64be1e118b0de8c9c877d5ce73d3d"
+ integrity sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==
+ dependencies:
+ call-bind "^1.0.7"
+ for-each "^0.3.3"
+ gopd "^1.0.1"
+ is-typed-array "^1.1.13"
+ possible-typed-array-names "^1.0.0"
+ reflect.getprototypeof "^1.0.6"
+
+typescript@^5:
+ version "5.9.2"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.9.2.tgz#d93450cddec5154a2d5cabe3b8102b83316fb2a6"
+ integrity sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==
+
+ufo@^1.6.1:
+ version "1.6.1"
+ resolved "https://registry.yarnpkg.com/ufo/-/ufo-1.6.1.tgz#ac2db1d54614d1b22c1d603e3aef44a85d8f146b"
+ integrity sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==
+
+uglify-js@^3.1.4:
+ version "3.19.3"
+ resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.19.3.tgz#82315e9bbc6f2b25888858acd1fff8441035b77f"
+ integrity sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==
+
+unbox-primitive@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.1.0.tgz#8d9d2c9edeea8460c7f35033a88867944934d1e2"
+ integrity sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==
+ dependencies:
+ call-bound "^1.0.3"
+ has-bigints "^1.0.2"
+ has-symbols "^1.1.0"
+ which-boxed-primitive "^1.1.1"
+
+unc-path-regex@^0.1.2:
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa"
+ integrity sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==
+
+undici-types@~6.21.0:
+ version "6.21.0"
+ resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.21.0.tgz#691d00af3909be93a7faa13be61b3a5b50ef12cb"
+ integrity sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==
+
+undici-types@~7.12.0:
+ version "7.12.0"
+ resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-7.12.0.tgz#15c5c7475c2a3ba30659529f5cdb4674b622fafb"
+ integrity sha512-goOacqME2GYyOZZfb5Lgtu+1IDmAlAEu5xnD3+xTzS10hT0vzpf0SPjkXwAw9Jm+4n/mQGDP3LO8CPbYROeBfQ==
+
+unhead@^1.8.3:
+ version "1.11.20"
+ resolved "https://registry.yarnpkg.com/unhead/-/unhead-1.11.20.tgz#910af0ddaac0bca24d32b4dbe0d6291cd813b9bc"
+ integrity sha512-3AsNQC0pjwlLqEYHLjtichGWankK8yqmocReITecmpB1H0aOabeESueyy+8X1gyJx4ftZVwo9hqQ4O3fPWffCA==
+ dependencies:
+ "@unhead/dom" "1.11.20"
+ "@unhead/schema" "1.11.20"
+ "@unhead/shared" "1.11.20"
+ hookable "^5.5.3"
+
+unicorn-magic@^0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/unicorn-magic/-/unicorn-magic-0.3.0.tgz#4efd45c85a69e0dd576d25532fbfa22aa5c8a104"
+ integrity sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==
+
+unified@^10.0.0:
+ version "10.1.2"
+ resolved "https://registry.yarnpkg.com/unified/-/unified-10.1.2.tgz#b1d64e55dafe1f0b98bb6c719881103ecf6c86df"
+ integrity sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==
+ dependencies:
+ "@types/unist" "^2.0.0"
+ bail "^2.0.0"
+ extend "^3.0.0"
+ is-buffer "^2.0.0"
+ is-plain-obj "^4.0.0"
+ trough "^2.0.0"
+ vfile "^5.0.0"
+
+unified@^11.0.0, unified@^11.0.4:
+ version "11.0.5"
+ resolved "https://registry.yarnpkg.com/unified/-/unified-11.0.5.tgz#f66677610a5c0a9ee90cab2b8d4d66037026d9e1"
+ integrity sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==
+ dependencies:
+ "@types/unist" "^3.0.0"
+ bail "^2.0.0"
+ devlop "^1.0.0"
+ extend "^3.0.0"
+ is-plain-obj "^4.0.0"
+ trough "^2.0.0"
+ vfile "^6.0.0"
+
+unist-util-find-after@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/unist-util-find-after/-/unist-util-find-after-5.0.0.tgz#3fccc1b086b56f34c8b798e1ff90b5c54468e896"
+ integrity sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==
+ dependencies:
+ "@types/unist" "^3.0.0"
+ unist-util-is "^6.0.0"
+
+unist-util-generated@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-2.0.1.tgz#e37c50af35d3ed185ac6ceacb6ca0afb28a85cae"
+ integrity sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==
+
+unist-util-is@^5.0.0:
+ version "5.2.1"
+ resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-5.2.1.tgz#b74960e145c18dcb6226bc57933597f5486deae9"
+ integrity sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==
+ dependencies:
+ "@types/unist" "^2.0.0"
+
+unist-util-is@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-6.0.0.tgz#b775956486aff107a9ded971d996c173374be424"
+ integrity sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==
+ dependencies:
+ "@types/unist" "^3.0.0"
+
+unist-util-position-from-estree@^1.0.0, unist-util-position-from-estree@^1.1.0:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.2.tgz#8ac2480027229de76512079e377afbcabcfcce22"
+ integrity sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==
+ dependencies:
+ "@types/unist" "^2.0.0"
+
+unist-util-position@^4.0.0:
+ version "4.0.4"
+ resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-4.0.4.tgz#93f6d8c7d6b373d9b825844645877c127455f037"
+ integrity sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==
+ dependencies:
+ "@types/unist" "^2.0.0"
+
+unist-util-position@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-5.0.0.tgz#678f20ab5ca1207a97d7ea8a388373c9cf896be4"
+ integrity sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==
+ dependencies:
+ "@types/unist" "^3.0.0"
+
+unist-util-remove-position@^4.0.0:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-4.0.2.tgz#a89be6ea72e23b1a402350832b02a91f6a9afe51"
+ integrity sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==
+ dependencies:
+ "@types/unist" "^2.0.0"
+ unist-util-visit "^4.0.0"
+
+unist-util-remove-position@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-5.0.0.tgz#fea68a25658409c9460408bc6b4991b965b52163"
+ integrity sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==
+ dependencies:
+ "@types/unist" "^3.0.0"
+ unist-util-visit "^5.0.0"
+
+unist-util-remove@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/unist-util-remove/-/unist-util-remove-4.0.0.tgz#94b7d6bbd24e42d2f841e947ed087be5c82b222e"
+ integrity sha512-b4gokeGId57UVRX/eVKej5gXqGlc9+trkORhFJpu9raqZkZhU0zm8Doi05+HaiBsMEIJowL+2WtQ5ItjsngPXg==
+ dependencies:
+ "@types/unist" "^3.0.0"
+ unist-util-is "^6.0.0"
+ unist-util-visit-parents "^6.0.0"
+
+unist-util-stringify-position@^3.0.0:
+ version "3.0.3"
+ resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-3.0.3.tgz#03ad3348210c2d930772d64b489580c13a7db39d"
+ integrity sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==
+ dependencies:
+ "@types/unist" "^2.0.0"
+
+unist-util-stringify-position@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz#449c6e21a880e0855bf5aabadeb3a740314abac2"
+ integrity sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==
+ dependencies:
+ "@types/unist" "^3.0.0"
+
+unist-util-visit-parents@^4.0.0:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-4.1.1.tgz#e83559a4ad7e6048a46b1bdb22614f2f3f4724f2"
+ integrity sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw==
+ dependencies:
+ "@types/unist" "^2.0.0"
+ unist-util-is "^5.0.0"
+
+unist-util-visit-parents@^5.0.0, unist-util-visit-parents@^5.1.1:
+ version "5.1.3"
+ resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz#b4520811b0ca34285633785045df7a8d6776cfeb"
+ integrity sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==
+ dependencies:
+ "@types/unist" "^2.0.0"
+ unist-util-is "^5.0.0"
+
+unist-util-visit-parents@^6.0.0:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz#4d5f85755c3b8f0dc69e21eca5d6d82d22162815"
+ integrity sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==
+ dependencies:
+ "@types/unist" "^3.0.0"
+ unist-util-is "^6.0.0"
+
+unist-util-visit@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-3.1.0.tgz#9420d285e1aee938c7d9acbafc8e160186dbaf7b"
+ integrity sha512-Szoh+R/Ll68QWAyQyZZpQzZQm2UPbxibDvaY8Xc9SUtYgPsDzx5AWSk++UUt2hJuow8mvwR+rG+LQLw+KsuAKA==
+ dependencies:
+ "@types/unist" "^2.0.0"
+ unist-util-is "^5.0.0"
+ unist-util-visit-parents "^4.0.0"
+
+unist-util-visit@^4.0.0:
+ version "4.1.2"
+ resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-4.1.2.tgz#125a42d1eb876283715a3cb5cceaa531828c72e2"
+ integrity sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==
+ dependencies:
+ "@types/unist" "^2.0.0"
+ unist-util-is "^5.0.0"
+ unist-util-visit-parents "^5.1.1"
+
+unist-util-visit@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-5.0.0.tgz#a7de1f31f72ffd3519ea71814cccf5fd6a9217d6"
+ integrity sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==
+ dependencies:
+ "@types/unist" "^3.0.0"
+ unist-util-is "^6.0.0"
+ unist-util-visit-parents "^6.0.0"
+
+unrs-resolver@^1.6.2:
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/unrs-resolver/-/unrs-resolver-1.11.1.tgz#be9cd8686c99ef53ecb96df2a473c64d304048a9"
+ integrity sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==
+ dependencies:
+ napi-postinstall "^0.3.0"
+ optionalDependencies:
+ "@unrs/resolver-binding-android-arm-eabi" "1.11.1"
+ "@unrs/resolver-binding-android-arm64" "1.11.1"
+ "@unrs/resolver-binding-darwin-arm64" "1.11.1"
+ "@unrs/resolver-binding-darwin-x64" "1.11.1"
+ "@unrs/resolver-binding-freebsd-x64" "1.11.1"
+ "@unrs/resolver-binding-linux-arm-gnueabihf" "1.11.1"
+ "@unrs/resolver-binding-linux-arm-musleabihf" "1.11.1"
+ "@unrs/resolver-binding-linux-arm64-gnu" "1.11.1"
+ "@unrs/resolver-binding-linux-arm64-musl" "1.11.1"
+ "@unrs/resolver-binding-linux-ppc64-gnu" "1.11.1"
+ "@unrs/resolver-binding-linux-riscv64-gnu" "1.11.1"
+ "@unrs/resolver-binding-linux-riscv64-musl" "1.11.1"
+ "@unrs/resolver-binding-linux-s390x-gnu" "1.11.1"
+ "@unrs/resolver-binding-linux-x64-gnu" "1.11.1"
+ "@unrs/resolver-binding-linux-x64-musl" "1.11.1"
+ "@unrs/resolver-binding-wasm32-wasi" "1.11.1"
+ "@unrs/resolver-binding-win32-arm64-msvc" "1.11.1"
+ "@unrs/resolver-binding-win32-ia32-msvc" "1.11.1"
+ "@unrs/resolver-binding-win32-x64-msvc" "1.11.1"
+
+update-browserslist-db@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz#348377dd245216f9e7060ff50b15a1b740b75420"
+ integrity sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==
+ dependencies:
+ escalade "^3.2.0"
+ picocolors "^1.1.1"
+
+uri-js@^4.2.2:
+ version "4.4.1"
+ resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
+ integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
+ dependencies:
+ punycode "^2.1.0"
+
+use-callback-ref@^1.3.3:
+ version "1.3.3"
+ resolved "https://registry.yarnpkg.com/use-callback-ref/-/use-callback-ref-1.3.3.tgz#98d9fab067075841c5b2c6852090d5d0feabe2bf"
+ integrity sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==
+ dependencies:
+ tslib "^2.0.0"
+
+use-sidecar@^1.1.3:
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/use-sidecar/-/use-sidecar-1.1.3.tgz#10e7fd897d130b896e2c546c63a5e8233d00efdb"
+ integrity sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==
+ dependencies:
+ detect-node-es "^1.1.0"
+ tslib "^2.0.0"
+
+use-sync-external-store@^1.4.0:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.5.0.tgz#55122e2a3edd2a6c106174c27485e0fd59bcfca0"
+ integrity sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==
+
+util-deprecate@^1.0.1, util-deprecate@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
+ integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
+
+util@^0.10.3:
+ version "0.10.4"
+ resolved "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901"
+ integrity sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==
+ dependencies:
+ inherits "2.0.3"
+
+uuid@^11.1.0:
+ version "11.1.0"
+ resolved "https://registry.yarnpkg.com/uuid/-/uuid-11.1.0.tgz#9549028be1753bb934fc96e2bca09bb4105ae912"
+ integrity sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==
+
+uuid@^9.0.0:
+ version "9.0.1"
+ resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30"
+ integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==
+
+uvu@^0.5.0:
+ version "0.5.6"
+ resolved "https://registry.yarnpkg.com/uvu/-/uvu-0.5.6.tgz#2754ca20bcb0bb59b64e9985e84d2e81058502df"
+ integrity sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==
+ dependencies:
+ dequal "^2.0.0"
+ diff "^5.0.0"
+ kleur "^4.0.3"
+ sade "^1.7.3"
+
+v8flags@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-4.0.1.tgz#98fe6c4308317c5f394d85a435eb192490f7e132"
+ integrity sha512-fcRLaS4H/hrZk9hYwbdRM35D0U8IYMfEClhXxCivOojl+yTRAZH3Zy2sSy6qVCiGbV9YAtPssP6jaChqC9vPCg==
+
+vfile-location@^5.0.0:
+ version "5.0.3"
+ resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-5.0.3.tgz#cb9eacd20f2b6426d19451e0eafa3d0a846225c3"
+ integrity sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==
+ dependencies:
+ "@types/unist" "^3.0.0"
+ vfile "^6.0.0"
+
+vfile-matter@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/vfile-matter/-/vfile-matter-3.0.1.tgz#85e26088e43aa85c04d42ffa3693635fa2bc5624"
+ integrity sha512-CAAIDwnh6ZdtrqAuxdElUqQRQDQgbbIrYtDYI8gCjXS1qQ+1XdLoK8FIZWxJwn0/I+BkSSZpar3SOgjemQz4fg==
+ dependencies:
+ "@types/js-yaml" "^4.0.0"
+ is-buffer "^2.0.0"
+ js-yaml "^4.0.0"
+
+vfile-message@^3.0.0:
+ version "3.1.4"
+ resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-3.1.4.tgz#15a50816ae7d7c2d1fa87090a7f9f96612b59dea"
+ integrity sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==
+ dependencies:
+ "@types/unist" "^2.0.0"
+ unist-util-stringify-position "^3.0.0"
+
+vfile-message@^4.0.0:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-4.0.3.tgz#87b44dddd7b70f0641c2e3ed0864ba73e2ea8df4"
+ integrity sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==
+ dependencies:
+ "@types/unist" "^3.0.0"
+ unist-util-stringify-position "^4.0.0"
+
+vfile@^5.0.0, vfile@^5.3.0:
+ version "5.3.7"
+ resolved "https://registry.yarnpkg.com/vfile/-/vfile-5.3.7.tgz#de0677e6683e3380fafc46544cfe603118826ab7"
+ integrity sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==
+ dependencies:
+ "@types/unist" "^2.0.0"
+ is-buffer "^2.0.0"
+ unist-util-stringify-position "^3.0.0"
+ vfile-message "^3.0.0"
+
+vfile@^6.0.0:
+ version "6.0.3"
+ resolved "https://registry.yarnpkg.com/vfile/-/vfile-6.0.3.tgz#3652ab1c496531852bf55a6bac57af981ebc38ab"
+ integrity sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==
+ dependencies:
+ "@types/unist" "^3.0.0"
+ vfile-message "^4.0.0"
+
+vite@^5.1.6:
+ version "5.4.20"
+ resolved "https://registry.yarnpkg.com/vite/-/vite-5.4.20.tgz#3267a5e03f21212f44edfd72758138e8fcecd76a"
+ integrity sha512-j3lYzGC3P+B5Yfy/pfKNgVEg4+UtcIJcVRt2cDjIOmhLourAqPqf8P7acgxeiSgUB7E3p2P8/3gNIgDLpwzs4g==
+ dependencies:
+ esbuild "^0.21.3"
+ postcss "^8.4.43"
+ rollup "^4.20.0"
+ optionalDependencies:
+ fsevents "~2.3.3"
+
+vscode-jsonrpc@8.2.0:
+ version "8.2.0"
+ resolved "https://registry.yarnpkg.com/vscode-jsonrpc/-/vscode-jsonrpc-8.2.0.tgz#f43dfa35fb51e763d17cd94dcca0c9458f35abf9"
+ integrity sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==
+
+vscode-languageserver-protocol@3.17.5:
+ version "3.17.5"
+ resolved "https://registry.yarnpkg.com/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.5.tgz#864a8b8f390835572f4e13bd9f8313d0e3ac4bea"
+ integrity sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==
+ dependencies:
+ vscode-jsonrpc "8.2.0"
+ vscode-languageserver-types "3.17.5"
+
+vscode-languageserver-textdocument@~1.0.11:
+ version "1.0.12"
+ resolved "https://registry.yarnpkg.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.12.tgz#457ee04271ab38998a093c68c2342f53f6e4a631"
+ integrity sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==
+
+vscode-languageserver-types@3.17.5:
+ version "3.17.5"
+ resolved "https://registry.yarnpkg.com/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz#3273676f0cf2eab40b3f44d085acbb7f08a39d8a"
+ integrity sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==
+
+vscode-languageserver@~9.0.1:
+ version "9.0.1"
+ resolved "https://registry.yarnpkg.com/vscode-languageserver/-/vscode-languageserver-9.0.1.tgz#500aef82097eb94df90d008678b0b6b5f474015b"
+ integrity sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==
+ dependencies:
+ vscode-languageserver-protocol "3.17.5"
+
+vscode-oniguruma@^1.7.0:
+ version "1.7.0"
+ resolved "https://registry.yarnpkg.com/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz#439bfad8fe71abd7798338d1cd3dc53a8beea94b"
+ integrity sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==
+
+vscode-textmate@^8.0.0:
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-8.0.0.tgz#2c7a3b1163ef0441097e0b5d6389cd5504b59e5d"
+ integrity sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==
+
+vscode-uri@~3.0.8:
+ version "3.0.8"
+ resolved "https://registry.yarnpkg.com/vscode-uri/-/vscode-uri-3.0.8.tgz#1770938d3e72588659a172d0fd4642780083ff9f"
+ integrity sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==
+
+vue-demi@>=0.13.0, vue-demi@>=0.14.8:
+ version "0.14.10"
+ resolved "https://registry.yarnpkg.com/vue-demi/-/vue-demi-0.14.10.tgz#afc78de3d6f9e11bf78c55e8510ee12814522f04"
+ integrity sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==
+
+w3c-keyname@^2.2.4:
+ version "2.2.8"
+ resolved "https://registry.yarnpkg.com/w3c-keyname/-/w3c-keyname-2.2.8.tgz#7b17c8c6883d4e8b86ac8aba79d39e880f8869c5"
+ integrity sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==
+
+wcwidth@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/wcwidth/-/wcwidth-1.0.1.tgz#f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"
+ integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==
+ dependencies:
+ defaults "^1.0.3"
+
+web-namespaces@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-2.0.1.tgz#1010ff7c650eccb2592cebeeaf9a1b253fd40692"
+ integrity sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==
+
+web-streams-polyfill@4.0.0-beta.3:
+ version "4.0.0-beta.3"
+ resolved "https://registry.yarnpkg.com/web-streams-polyfill/-/web-streams-polyfill-4.0.0-beta.3.tgz#2898486b74f5156095e473efe989dcf185047a38"
+ integrity sha512-QW95TCTaHmsYfHDybGMwO5IJIM93I/6vTRk+daHTWFPhwh+C8Cg7j7XyKrwrj8Ib6vYXe0ocYNrmzY4xAAN6ug==
+
+web-vitals@^4.2.4:
+ version "4.2.4"
+ resolved "https://registry.yarnpkg.com/web-vitals/-/web-vitals-4.2.4.tgz#1d20bc8590a37769bd0902b289550936069184b7"
+ integrity sha512-r4DIlprAGwJ7YM11VZp4R884m0Vmgr6EAKe3P+kO0PPj3Unqyvv59rczf6UiGcb9Z8QxZVcqKNwv/g0WNdWwsw==
+
+web-worker@^1.2.0:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/web-worker/-/web-worker-1.5.0.tgz#71b2b0fbcc4293e8f0aa4f6b8a3ffebff733dcc5"
+ integrity sha512-RiMReJrTAiA+mBjGONMnjVDP2u3p9R1vkcGz6gDIrOMT3oGuYwX2WRMYI9ipkphSuE5XKEhydbhNEJh4NY9mlw==
+
+webidl-conversions@^3.0.0:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
+ integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==
+
+whatwg-url@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d"
+ integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==
+ dependencies:
+ tr46 "~0.0.3"
+ webidl-conversions "^3.0.0"
+
+which-boxed-primitive@^1.1.0, which-boxed-primitive@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz#d76ec27df7fa165f18d5808374a5fe23c29b176e"
+ integrity sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==
+ dependencies:
+ is-bigint "^1.1.0"
+ is-boolean-object "^1.2.1"
+ is-number-object "^1.1.1"
+ is-string "^1.1.1"
+ is-symbol "^1.1.1"
+
+which-builtin-type@^1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/which-builtin-type/-/which-builtin-type-1.2.1.tgz#89183da1b4907ab089a6b02029cc5d8d6574270e"
+ integrity sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==
+ dependencies:
+ call-bound "^1.0.2"
+ function.prototype.name "^1.1.6"
+ has-tostringtag "^1.0.2"
+ is-async-function "^2.0.0"
+ is-date-object "^1.1.0"
+ is-finalizationregistry "^1.1.0"
+ is-generator-function "^1.0.10"
+ is-regex "^1.2.1"
+ is-weakref "^1.0.2"
+ isarray "^2.0.5"
+ which-boxed-primitive "^1.1.0"
+ which-collection "^1.0.2"
+ which-typed-array "^1.1.16"
+
+which-collection@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.2.tgz#627ef76243920a107e7ce8e96191debe4b16c2a0"
+ integrity sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==
+ dependencies:
+ is-map "^2.0.3"
+ is-set "^2.0.3"
+ is-weakmap "^2.0.2"
+ is-weakset "^2.0.3"
+
+which-typed-array@^1.1.16, which-typed-array@^1.1.19:
+ version "1.1.19"
+ resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.19.tgz#df03842e870b6b88e117524a4b364b6fc689f956"
+ integrity sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==
+ dependencies:
+ available-typed-arrays "^1.0.7"
+ call-bind "^1.0.8"
+ call-bound "^1.0.4"
+ for-each "^0.3.5"
+ get-proto "^1.0.1"
+ gopd "^1.2.0"
+ has-tostringtag "^1.0.2"
+
+which@^1.2.14, which@^1.2.9:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
+ integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
+ dependencies:
+ isexe "^2.0.0"
+
+which@^2.0.1:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
+ integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
+ dependencies:
+ isexe "^2.0.0"
+
+word-wrap@^1.2.5:
+ version "1.2.5"
+ resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34"
+ integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==
+
+wordwrap@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
+ integrity sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==
"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
- version: 7.0.0
- resolution: "wrap-ansi@npm:7.0.0"
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
+ integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
dependencies:
- ansi-styles: "npm:^4.0.0"
- string-width: "npm:^4.1.0"
- strip-ansi: "npm:^6.0.0"
- checksum: 10c0/d15fc12c11e4cbc4044a552129ebc75ee3f57aa9c1958373a4db0292d72282f54373b536103987a4a7594db1ef6a4f10acf92978f79b98c49306a4b58c77d4da
- languageName: node
- linkType: hard
+ ansi-styles "^4.0.0"
+ string-width "^4.1.0"
+ strip-ansi "^6.0.0"
-"wrap-ansi@npm:^6.2.0":
- version: 6.2.0
- resolution: "wrap-ansi@npm:6.2.0"
+wrap-ansi@^6.2.0:
+ version "6.2.0"
+ resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
+ integrity sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==
dependencies:
- ansi-styles: "npm:^4.0.0"
- string-width: "npm:^4.1.0"
- strip-ansi: "npm:^6.0.0"
- checksum: 10c0/baad244e6e33335ea24e86e51868fe6823626e3a3c88d9a6674642afff1d34d9a154c917e74af8d845fd25d170c4ea9cf69a47133c3f3656e1252b3d462d9f6c
- languageName: node
- linkType: hard
+ ansi-styles "^4.0.0"
+ string-width "^4.1.0"
+ strip-ansi "^6.0.0"
-"wrap-ansi@npm:^8.1.0":
- version: 8.1.0
- resolution: "wrap-ansi@npm:8.1.0"
+wrap-ansi@^8.1.0:
+ version "8.1.0"
+ resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"
+ integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==
dependencies:
- ansi-styles: "npm:^6.1.0"
- string-width: "npm:^5.0.1"
- strip-ansi: "npm:^7.0.1"
- checksum: 10c0/138ff58a41d2f877eae87e3282c0630fc2789012fc1af4d6bd626eeb9a2f9a65ca92005e6e69a75c7b85a68479fe7443c7dbe1eb8fbaa681a4491364b7c55c60
- languageName: node
- linkType: hard
+ ansi-styles "^6.1.0"
+ string-width "^5.0.1"
+ strip-ansi "^7.0.1"
-"wrappy@npm:1":
- version: 1.0.2
- resolution: "wrappy@npm:1.0.2"
- checksum: 10c0/56fece1a4018c6a6c8e28fbc88c87e0fbf4ea8fd64fc6c63b18f4acc4bd13e0ad2515189786dd2c30d3eec9663d70f4ecf699330002f8ccb547e4a18231fc9f0
- languageName: node
- linkType: hard
+wrappy@1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
+ integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
-"y-codemirror.next@npm:^0.3.2":
- version: 0.3.5
- resolution: "y-codemirror.next@npm:0.3.5"
+y-codemirror.next@^0.3.2:
+ version "0.3.5"
+ resolved "https://registry.yarnpkg.com/y-codemirror.next/-/y-codemirror.next-0.3.5.tgz#4bb5c94c09cab17b6fd300e5db1d29c65e51e345"
+ integrity sha512-VluNu3e5HfEXybnypnsGwKAj+fKLd4iAnR7JuX1Sfyydmn1jCBS5wwEL/uS04Ch2ib0DnMAOF6ZRR/8kK3wyGw==
dependencies:
- lib0: "npm:^0.2.42"
- peerDependencies:
- "@codemirror/state": ^6.0.0
- "@codemirror/view": ^6.0.0
- yjs: ^13.5.6
- checksum: 10c0/2788c6d9f429e89d9b5b1c180cb712b5737cc8dd6c5654d1de3e5422ee863e1301c2a8e44273929434a55e62208ee1a6cdc02a5d354999d4a47ec1f3c8002525
- languageName: node
- linkType: hard
+ lib0 "^0.2.42"
-"yallist@npm:^2.1.2":
- version: 2.1.2
- resolution: "yallist@npm:2.1.2"
- checksum: 10c0/0b9e25aa00adf19e01d2bcd4b208aee2b0db643d9927131797b7af5ff69480fc80f1c3db738cbf3946f0bddf39d8f2d0a5709c644fd42d4aa3a4e6e786c087b5
- languageName: node
- linkType: hard
+yallist@^2.1.2:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
+ integrity sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==
-"yallist@npm:^4.0.0":
- version: 4.0.0
- resolution: "yallist@npm:4.0.0"
- checksum: 10c0/2286b5e8dbfe22204ab66e2ef5cc9bbb1e55dfc873bbe0d568aa943eb255d131890dfd5bf243637273d31119b870f49c18fcde2c6ffbb7a7a092b870dc90625a
- languageName: node
- linkType: hard
+yaml@^2.3.4, yaml@^2.4.1:
+ version "2.8.1"
+ resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.8.1.tgz#1870aa02b631f7e8328b93f8bc574fac5d6c4d79"
+ integrity sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==
-"yallist@npm:^5.0.0":
- version: 5.0.0
- resolution: "yallist@npm:5.0.0"
- checksum: 10c0/a499c81ce6d4a1d260d4ea0f6d49ab4da09681e32c3f0472dee16667ed69d01dae63a3b81745a24bd78476ec4fcf856114cb4896ace738e01da34b2c42235416
- languageName: node
- linkType: hard
+yocto-queue@^0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
+ integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
-"yaml@npm:^2.3.4, yaml@npm:^2.4.1":
- version: 2.7.0
- resolution: "yaml@npm:2.7.0"
- bin:
- yaml: bin.mjs
- checksum: 10c0/886a7d2abbd70704b79f1d2d05fe9fb0aa63aefb86e1cb9991837dced65193d300f5554747a872b4b10ae9a12bc5d5327e4d04205f70336e863e35e89d8f4ea9
- languageName: node
- linkType: hard
+yoctocolors-cjs@^2.1.2:
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/yoctocolors-cjs/-/yoctocolors-cjs-2.1.3.tgz#7e4964ea8ec422b7a40ac917d3a344cfd2304baa"
+ integrity sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==
-"yocto-queue@npm:^0.1.0":
- version: 0.1.0
- resolution: "yocto-queue@npm:0.1.0"
- checksum: 10c0/dceb44c28578b31641e13695d200d34ec4ab3966a5729814d5445b194933c096b7ced71494ce53a0e8820685d1d010df8b2422e5bf2cdea7e469d97ffbea306f
- languageName: node
- linkType: hard
+zhead@^2.2.4:
+ version "2.2.4"
+ resolved "https://registry.yarnpkg.com/zhead/-/zhead-2.2.4.tgz#87cd1e2c3d2f465fa9f43b8db23f9716dfe6bed7"
+ integrity sha512-8F0OI5dpWIA5IGG5NHUg9staDwz/ZPxZtvGVf01j7vHqSyZ0raHY+78atOVxRqb73AotX22uV1pXt3gYSstGag==
-"yoctocolors-cjs@npm:^2.1.2":
- version: 2.1.2
- resolution: "yoctocolors-cjs@npm:2.1.2"
- checksum: 10c0/a0e36eb88fea2c7981eab22d1ba45e15d8d268626e6c4143305e2c1628fa17ebfaa40cd306161a8ce04c0a60ee0262058eab12567493d5eb1409780853454c6f
- languageName: node
- linkType: hard
+zod@^3.22.3:
+ version "3.25.76"
+ resolved "https://registry.yarnpkg.com/zod/-/zod-3.25.76.tgz#26841c3f6fd22a6a2760e7ccb719179768471e34"
+ integrity sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==
-"zhead@npm:^2.2.4":
- version: 2.2.4
- resolution: "zhead@npm:2.2.4"
- checksum: 10c0/3d166fb661f1b7fdf8a0ef2222d9e574ab241e72141f2f1fda62a9250ca73aabf2eaf0d66046a3984cd24d1dd9bac231338c6271684d6b8caa6b66af7c45f275
- languageName: node
- linkType: hard
-
-"zod@npm:^3.22.3":
- version: 3.24.4
- resolution: "zod@npm:3.24.4"
- checksum: 10c0/ab3112f017562180a41a0f83d870b333677f7d6b77f106696c56894567051b91154714a088149d8387a4f50806a2520efcb666f108cd384a35c236a191186d91
- languageName: node
- linkType: hard
-
-"zwitch@npm:^2.0.0, zwitch@npm:^2.0.4":
- version: 2.0.4
- resolution: "zwitch@npm:2.0.4"
- checksum: 10c0/3c7830cdd3378667e058ffdb4cf2bb78ac5711214e2725900873accb23f3dfe5f9e7e5a06dcdc5f29605da976fc45c26d9a13ca334d6eea2245a15e77b8fc06e
- languageName: node
- linkType: hard
+zwitch@^2.0.0, zwitch@^2.0.4:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-2.0.4.tgz#c827d4b0acb76fc3e685a4c6ec2902d51070e9d7"
+ integrity sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==