diff --git a/.gitignore b/.gitignore
index 2f4231d0..c8e897af 100644
--- a/.gitignore
+++ b/.gitignore
@@ -23,4 +23,5 @@ stats
docs
.vitest-reports
-.auth
\ No newline at end of file
+.auth
+.sanity
diff --git a/apps/property-detail-app/.gitignore b/apps/property-detail-app/.gitignore
new file mode 100644
index 00000000..aa9909c0
--- /dev/null
+++ b/apps/property-detail-app/.gitignore
@@ -0,0 +1,29 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# Dependencies
+/node_modules
+/.pnp
+.pnp.js
+
+# Compiled Sanity Studio
+/dist
+
+# Temporary Sanity runtime, generated by the CLI on every dev server start
+/.sanity
+
+# Logs
+/logs
+*.log
+
+# Coverage directory used by testing tools
+/coverage
+
+# Misc
+.DS_Store
+*.pem
+
+# Typescript
+*.tsbuildinfo
+
+# Dotenv and similar local-only files
+*.local
diff --git a/apps/property-detail-app/.lintstagedrc.mjs b/apps/property-detail-app/.lintstagedrc.mjs
new file mode 100644
index 00000000..ac300caf
--- /dev/null
+++ b/apps/property-detail-app/.lintstagedrc.mjs
@@ -0,0 +1,4 @@
+// @ts-check
+import baseConfig from '../../.lintstagedrc.mjs'
+
+export default baseConfig
diff --git a/apps/property-detail-app/_intents/completeAllTasks.ts b/apps/property-detail-app/_intents/completeAllTasks.ts
new file mode 100644
index 00000000..4db888f5
--- /dev/null
+++ b/apps/property-detail-app/_intents/completeAllTasks.ts
@@ -0,0 +1,16 @@
+// import { defineIntent } from "@sanity/sdk";
+
+// some .cjs and esm issues with the old CLI, but we do have this helper
+// export default defineIntent({
+
+export default {
+ id: 'completeAllTasks',
+ action: 'edit',
+ title: 'Complete All Maintenance Tasks',
+ filters: [
+ {
+ types: ['property', 'maintenanceSchedule'],
+ },
+ ],
+ description: 'Bulk complete all tasks for a maintenance schedule without loading the main app',
+}
diff --git a/apps/property-detail-app/_intents/maintenanceList.ts b/apps/property-detail-app/_intents/maintenanceList.ts
new file mode 100644
index 00000000..aa30fdec
--- /dev/null
+++ b/apps/property-detail-app/_intents/maintenanceList.ts
@@ -0,0 +1,16 @@
+// import { defineIntent } from "@sanity/sdk";
+
+// some .cjs and esm issues with the old CLI, but we do have this helper
+// export default defineIntent({
+
+export default {
+ id: 'maintenanceList',
+ action: 'edit',
+ title: 'Maintenance List',
+ filters: [
+ {
+ types: ['property'],
+ },
+ ],
+ description: 'View and update the maintenance list for a property',
+}
diff --git a/apps/property-detail-app/eslint.config.mjs b/apps/property-detail-app/eslint.config.mjs
new file mode 100644
index 00000000..161663b1
--- /dev/null
+++ b/apps/property-detail-app/eslint.config.mjs
@@ -0,0 +1,27 @@
+// @ts-check
+import baseESLintConfig from '@repo/config-eslint'
+import reactConfig from '@repo/config-eslint/react'
+
+export default [
+ {
+ ignores: [
+ '.DS_Store',
+ '**/node_modules',
+ '**/build',
+ '**/dist',
+ '.env',
+ '.env.*',
+ '!.env.example',
+
+ // Ignore files for PNPM, NPM and YARN
+ 'pnpm-lock.yaml',
+ 'package-lock.json',
+ 'yarn.lock',
+
+ // Ignore files for Sanity TypeGen
+ 'sanity.types.ts',
+ ],
+ },
+ ...baseESLintConfig,
+ ...reactConfig,
+]
diff --git a/apps/property-detail-app/package.json b/apps/property-detail-app/package.json
new file mode 100644
index 00000000..89bdc5a8
--- /dev/null
+++ b/apps/property-detail-app/package.json
@@ -0,0 +1,39 @@
+{
+ "name": "property-detail-app",
+ "version": "1.0.0",
+ "private": true,
+ "keywords": [
+ "sanity"
+ ],
+ "license": "UNLICENSED",
+ "type": "module",
+ "main": "package.json",
+ "scripts": {
+ "build": "sanity build",
+ "dev": "sanity dev",
+ "lint": "eslint .",
+ "start": "sanity start",
+ "tsc": "tsc --noEmit"
+ },
+ "prettier": "@sanity/prettier-config",
+ "dependencies": {
+ "@sanity/sdk-react": "workspace:*",
+ "react": "^19",
+ "react-dom": "^19",
+ "react-router": "^7.5.2",
+ "styled-components": "^6.1.15"
+ },
+ "devDependencies": {
+ "@repo/config-eslint": "workspace:*",
+ "@repo/tsconfig": "workspace:*",
+ "@sanity/prettier-config": "^1.0.3",
+ "@sanity/sdk": "workspace:*",
+ "@types/react": "^19",
+ "@types/react-dom": "^19.1.2",
+ "eslint": "^9.25.1",
+ "prettier": "^3.5.3",
+ "sanity": "^3",
+ "typescript": "^5.1.6",
+ "vite": "^6.3.3"
+ }
+}
diff --git a/apps/property-detail-app/sanity.cli.ts b/apps/property-detail-app/sanity.cli.ts
new file mode 100644
index 00000000..7c1a5157
--- /dev/null
+++ b/apps/property-detail-app/sanity.cli.ts
@@ -0,0 +1,9 @@
+import {defineCliConfig} from 'sanity/cli'
+
+export default defineCliConfig({
+ app: {
+ organizationId: 'oF5P8QpKU',
+ entry: './src/App.tsx',
+ id: 'uxq5o822rvrg62hyxu16l800',
+ },
+})
diff --git a/apps/property-detail-app/src/App.css b/apps/property-detail-app/src/App.css
new file mode 100644
index 00000000..29a013f0
--- /dev/null
+++ b/apps/property-detail-app/src/App.css
@@ -0,0 +1,355 @@
+/* Container styling for the app */
+.app-container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 2rem;
+ font-family:
+ -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
+ 'Helvetica Neue', sans-serif;
+}
+
+/* Basic reset */
+* {
+ box-sizing: border-box;
+}
+
+body {
+ margin: 0;
+ padding: 0;
+ background-color: #f9f9f9;
+}
+
+.container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 20px;
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
+}
+
+h1 {
+ color: #333;
+ margin-bottom: 24px;
+}
+
+.property-count {
+ color: #666;
+ margin-bottom: 20px;
+}
+
+.property-list {
+ display: flex;
+ flex-direction: column;
+ gap: 16px;
+}
+
+.property-link {
+ text-decoration: none;
+ color: inherit;
+}
+
+.property-item {
+ border: 1px solid #e0e0e0;
+ border-radius: 8px;
+ padding: 20px;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ transition: all 0.2s ease;
+ background: white;
+}
+
+.property-item:hover {
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
+ border-color: #007bff;
+}
+
+.property-info h3 {
+ margin: 0 0 8px 0;
+ color: #333;
+ font-size: 1.2em;
+}
+
+.property-info p {
+ margin: 4px 0;
+ color: #666;
+ font-size: 0.9em;
+}
+
+.broker-name {
+ font-weight: 500;
+}
+
+.maintenance-type {
+ color: #007bff;
+ font-weight: 500;
+}
+
+.maintenance-date {
+ color: #28a745;
+}
+
+.property-arrow {
+ font-size: 1.5em;
+ color: #007bff;
+}
+
+.loading {
+ text-align: center;
+ padding: 40px;
+ color: #666;
+}
+
+.loading-item {
+ border: 1px solid #e0e0e0;
+ border-radius: 8px;
+ padding: 20px;
+ margin-bottom: 16px;
+ background: #f8f9fa;
+ color: #666;
+ text-align: center;
+}
+
+/* Maintenance page specific styles */
+.maintenance-container {
+ max-width: 800px;
+ margin: 0 auto;
+ padding: 20px;
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
+}
+
+.maintenance-header {
+ margin-bottom: 32px;
+}
+
+.back-link {
+ color: #007bff;
+ text-decoration: none;
+ font-size: 0.9em;
+ margin-bottom: 16px;
+ display: inline-block;
+}
+
+.back-link:hover {
+ text-decoration: underline;
+}
+
+.property-details {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 16px;
+ margin-top: 16px;
+}
+
+.detail-item {
+ background: #f8f9fa;
+ padding: 8px 12px;
+ border-radius: 4px;
+ font-size: 0.9em;
+}
+
+.maintenance-content {
+ display: flex;
+ flex-direction: column;
+ gap: 32px;
+}
+
+.todos-section h2,
+.notes-section h2 {
+ color: #333;
+ margin-bottom: 16px;
+}
+
+.todos-list {
+ display: flex;
+ flex-direction: column;
+ gap: 12px;
+}
+
+.loading-task {
+ padding: 12px;
+ background: #f8f9fa;
+ border-radius: 4px;
+ color: #666;
+ text-align: center;
+}
+
+.no-tasks {
+ padding: 20px;
+ text-align: center;
+ color: #666;
+ background: #f8f9fa;
+ border-radius: 8px;
+}
+
+.notes-textarea {
+ width: 100%;
+ padding: 12px;
+ border: 1px solid #ddd;
+ border-radius: 4px;
+ font-family: inherit;
+ resize: vertical;
+}
+
+.submit-section {
+ text-align: center;
+}
+
+.submit-button {
+ background: #28a745;
+ color: white;
+ border: none;
+ padding: 12px 24px;
+ border-radius: 4px;
+ font-size: 1em;
+ cursor: pointer;
+ transition: background-color 0.2s;
+}
+
+.submit-button:hover:not(:disabled) {
+ background: #218838;
+}
+
+.submit-button:disabled {
+ background: #6c757d;
+ cursor: not-allowed;
+}
+
+.submit-note {
+ margin-top: 8px;
+ color: #666;
+ font-size: 0.9em;
+}
+
+.error-message,
+.no-maintenance {
+ text-align: center;
+ padding: 40px;
+ color: #666;
+}
+
+.success-message {
+ text-align: center;
+ padding: 40px;
+}
+
+.checkmark {
+ font-size: 3em;
+ color: #28a745;
+ margin-bottom: 16px;
+}
+
+.success-button {
+ background: #007bff;
+ color: white;
+ text-decoration: none;
+ padding: 12px 24px;
+ border-radius: 4px;
+ display: inline-block;
+ transition: background-color 0.2s;
+}
+
+.success-button:hover {
+ background: #0056b3;
+}
+
+/* Enhanced Loading Fallback Styles */
+.loading-header {
+ margin-bottom: 32px;
+}
+
+.loading-title {
+ height: 32px;
+ background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
+ background-size: 200% 100%;
+ animation: shimmer 1.5s infinite;
+ border-radius: 4px;
+ margin-bottom: 12px;
+ width: 300px;
+}
+
+.loading-subtitle {
+ height: 20px;
+ background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
+ background-size: 200% 100%;
+ animation: shimmer 1.5s infinite;
+ border-radius: 4px;
+ width: 200px;
+}
+
+.loading-spinner-container {
+ text-align: center;
+ padding: 40px 0;
+ margin-bottom: 32px;
+}
+
+.loading-spinner {
+ width: 40px;
+ height: 40px;
+ border: 3px solid #e0e0e0;
+ border-top: 3px solid #007bff;
+ border-radius: 50%;
+ animation: spin 1s linear infinite;
+ margin: 0 auto 16px;
+}
+
+.loading-text {
+ color: #666;
+ font-size: 1.1em;
+ margin: 0;
+}
+
+.loading-skeleton {
+ background: #f8f9fa !important;
+ border-color: #e9ecef !important;
+ pointer-events: none;
+}
+
+.skeleton-line {
+ background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
+ background-size: 200% 100%;
+ animation: shimmer 1.5s infinite;
+ border-radius: 4px;
+ margin-bottom: 8px;
+}
+
+.skeleton-title {
+ height: 20px;
+ width: 70%;
+}
+
+.skeleton-subtitle {
+ height: 16px;
+ width: 50%;
+}
+
+.skeleton-details {
+ height: 14px;
+ width: 60%;
+}
+
+.skeleton-arrow {
+ width: 24px;
+ height: 24px;
+ background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
+ background-size: 200% 100%;
+ animation: shimmer 1.5s infinite;
+ border-radius: 50%;
+}
+
+@keyframes spin {
+ 0% {
+ transform: rotate(0deg);
+ }
+ 100% {
+ transform: rotate(360deg);
+ }
+}
+
+@keyframes shimmer {
+ 0% {
+ background-position: -200% 0;
+ }
+ 100% {
+ background-position: 200% 0;
+ }
+}
diff --git a/apps/property-detail-app/src/App.tsx b/apps/property-detail-app/src/App.tsx
new file mode 100644
index 00000000..54de17a0
--- /dev/null
+++ b/apps/property-detail-app/src/App.tsx
@@ -0,0 +1,57 @@
+import './App.css'
+
+import {type SanityConfig} from '@sanity/sdk'
+import {type IntentHandlerPayload, type IntentHandlers, SanityApp} from '@sanity/sdk-react'
+import React from 'react'
+import {BrowserRouter, useNavigate} from 'react-router'
+
+import {AppRoutes} from './AppRoutes'
+import {CompleteAllTasks} from './components/CompleteAllTasks'
+import {LoadingFallback} from './components/LoadingFallback'
+
+function AppWithRouter(): React.JSX.Element {
+ const navigate = useNavigate()
+
+ const intentHandlers: IntentHandlers = {
+ maintenanceList: {
+ type: 'async',
+ handler: async (payload: IntentHandlerPayload) => {
+ if (payload.documentHandle) {
+ navigate(`/property/${payload.documentHandle.documentId}`)
+ }
+ },
+ },
+ completeAllTasks: {
+ type: 'component',
+ handler: CompleteAllTasks,
+ // Hide the app completely for this bulk operation - shows only our component
+ hideApp: true,
+ },
+ }
+
+ const sanityConfigs: SanityConfig[] = [
+ {
+ projectId: '9wmez61s',
+ dataset: 'production',
+ auth: {
+ apiHost: 'https://api.sanity.work',
+ },
+ },
+ ]
+
+ return (
+ }>
+
+
+ )
+}
+
+function App(): React.JSX.Element {
+ return (
+
+
+
+ )
+}
+
+export default App
diff --git a/apps/property-detail-app/src/AppRoutes.tsx b/apps/property-detail-app/src/AppRoutes.tsx
new file mode 100644
index 00000000..852e0aa5
--- /dev/null
+++ b/apps/property-detail-app/src/AppRoutes.tsx
@@ -0,0 +1,14 @@
+import {type JSX} from 'react'
+import {Route, Routes} from 'react-router'
+
+import Maintenance from './Maintenance'
+import PropertyList from './PropertyList'
+
+export function AppRoutes(): JSX.Element {
+ return (
+
+ } />
+ } />
+
+ )
+}
diff --git a/apps/property-detail-app/src/Maintenance.css b/apps/property-detail-app/src/Maintenance.css
new file mode 100644
index 00000000..6e53838f
--- /dev/null
+++ b/apps/property-detail-app/src/Maintenance.css
@@ -0,0 +1,493 @@
+* {
+ box-sizing: border-box;
+ margin: 0;
+ padding: 0;
+}
+
+.maintenance-app {
+ min-height: 100vh;
+ background-color: #f9fafb;
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
+}
+
+/* Header */
+.maintenance-header {
+ background: white;
+ border-bottom: 1px solid #e5e7eb;
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
+ position: sticky;
+ top: 0;
+ z-index: 100;
+}
+
+.header-content {
+ max-width: 800px;
+ margin: 0 auto;
+ padding: 1rem 2rem;
+ display: flex;
+ align-items: center;
+ gap: 1rem;
+}
+
+.back-button {
+ background: none;
+ border: 1px solid #d1d5db;
+ padding: 0.5rem 1rem;
+ border-radius: 0.375rem;
+ cursor: pointer;
+ font-size: 0.875rem;
+ color: #374151;
+ transition: all 0.2s;
+}
+
+.back-button:hover {
+ background-color: #f3f4f6;
+ border-color: #9ca3af;
+}
+
+.header-info h1 {
+ font-size: 1.5rem;
+ font-weight: 700;
+ color: #111827;
+ margin-bottom: 0.25rem;
+}
+
+.property-info {
+ display: flex;
+ flex-direction: column;
+ gap: 0.125rem;
+}
+
+.property-address {
+ font-size: 0.875rem;
+ color: #374151;
+ font-weight: 500;
+}
+
+.broker-name {
+ font-size: 0.75rem;
+ color: #6b7280;
+}
+
+/* Main Content */
+.maintenance-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 2rem;
+}
+
+.maintenance-container {
+ display: flex;
+ flex-direction: column;
+ gap: 1.5rem;
+}
+
+/* Cards */
+.info-card,
+.checklist-card,
+.notes-card {
+ background: white;
+ border-radius: 0.5rem;
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
+ padding: 1.5rem;
+}
+
+.info-card h2 {
+ font-size: 1.25rem;
+ font-weight: 600;
+ margin-bottom: 1rem;
+ color: #111827;
+}
+
+.detail-row {
+ display: flex;
+ align-items: center;
+ gap: 0.5rem;
+ margin-bottom: 0.5rem;
+ font-size: 0.875rem;
+ color: #6b7280;
+}
+
+.icon {
+ font-size: 1rem;
+}
+
+/* Progress Bar */
+.progress-section {
+ margin-top: 1.5rem;
+ padding-top: 1.5rem;
+ border-top: 1px solid #e5e7eb;
+}
+
+.progress-header {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-bottom: 0.5rem;
+ font-size: 0.875rem;
+ color: #374151;
+}
+
+.progress-percentage {
+ font-weight: 600;
+ color: #059669;
+}
+
+.progress-bar {
+ width: 100%;
+ height: 8px;
+ background-color: #e5e7eb;
+ border-radius: 4px;
+ overflow: hidden;
+}
+
+.progress-fill {
+ height: 100%;
+ background-color: #059669;
+ transition: width 0.3s ease;
+}
+
+/* Checklist */
+.checklist-card h3 {
+ font-size: 1.125rem;
+ font-weight: 600;
+ margin-bottom: 1rem;
+ color: #111827;
+}
+
+.todo-list {
+ display: flex;
+ flex-direction: column;
+ gap: 0.75rem;
+}
+
+.todo-item {
+ display: flex;
+ flex-direction: row;
+ flex-wrap: wrap;
+ align-items: flex-start;
+ padding: 0.75rem;
+ border: 1px solid #e5e7eb;
+ border-radius: 0.375rem;
+ transition: all 0.2s;
+ gap: 1rem;
+}
+
+.todo-main {
+ display: flex;
+ align-items: center;
+ flex: 1;
+ gap: 0.75rem;
+}
+
+.todo-item:hover {
+ border-color: #d1d5db;
+ background-color: #f9fafb;
+}
+
+.todo-item.completed {
+ background-color: #f0fdf4;
+ border-color: #bbf7d0;
+}
+
+.todo-label {
+ display: flex;
+ align-items: center;
+ gap: 0.75rem;
+ cursor: pointer;
+ flex: 1;
+}
+
+.todo-checkbox {
+ display: none;
+}
+
+.checkmark {
+ width: 20px;
+ height: 20px;
+ border: 2px solid #d1d5db;
+ border-radius: 4px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ transition: all 0.2s;
+ flex-shrink: 0;
+ margin: 0;
+}
+
+.todo-checkbox:checked + .checkmark {
+ background-color: #059669;
+ border-color: #059669;
+}
+
+.todo-checkbox:checked + .checkmark::after {
+ content: '✓';
+ color: white;
+ font-size: 14px;
+ font-weight: bold;
+}
+
+.todo-text {
+ font-size: 0.875rem;
+ color: #374151;
+ transition: all 0.2s;
+ line-height: 1.25rem;
+ margin: 0;
+}
+
+.todo-item.completed .todo-text {
+ text-decoration: line-through;
+ color: #6b7280;
+}
+
+.todo-notes {
+ margin-left: 2.5rem;
+ padding-top: 0.25rem;
+ width: 100%;
+ flex-basis: 100%;
+}
+
+.todo-notes small {
+ color: #6b7280;
+ font-style: italic;
+}
+
+/* Priority Badges */
+.priority-badge {
+ padding: 0.25rem 0.75rem;
+ border-radius: 9999px;
+ font-size: 0.75rem;
+ font-weight: 500;
+ text-transform: uppercase;
+ flex-shrink: 0;
+ align-self: flex-start;
+ white-space: nowrap;
+}
+
+/* Skeleton Loading Styles */
+.skeleton-loading {
+ opacity: 0.7;
+ pointer-events: none;
+}
+
+.skeleton-loading .todo-checkbox {
+ opacity: 0.5;
+}
+
+.skeleton-loading .checkmark {
+ border-color: #e5e7eb;
+ background-color: #f3f4f6;
+}
+
+/* Updating state for optimistic updates */
+.todo-item.updating {
+ opacity: 0.8;
+ pointer-events: none;
+}
+
+.todo-item.updating .checkmark {
+ background-color: #f3f4f6;
+ border-color: #d1d5db;
+}
+
+.skeleton-text {
+ background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
+ background-size: 200% 100%;
+ animation: skeleton-shimmer 1.5s infinite ease-in-out;
+ border-radius: 0.25rem;
+ color: transparent;
+ min-height: 1.25rem;
+ display: inline-block;
+ width: 120px;
+}
+
+@keyframes skeleton-shimmer {
+ 0% {
+ background-position: 200% 0;
+ }
+ 100% {
+ background-position: -200% 0;
+ }
+}
+
+.priority-high {
+ background-color: #fee2e2;
+ color: #991b1b;
+}
+
+.priority-medium {
+ background-color: #fef3c7;
+ color: #92400e;
+}
+
+.priority-low {
+ background-color: #dbeafe;
+ color: #1e40af;
+}
+
+/* Notes */
+.notes-card h3 {
+ font-size: 1.125rem;
+ font-weight: 600;
+ margin-bottom: 1rem;
+ color: #111827;
+}
+
+.notes-textarea {
+ width: 100%;
+ padding: 0.75rem;
+ border: 1px solid #d1d5db;
+ border-radius: 0.375rem;
+ font-size: 0.875rem;
+ font-family: inherit;
+ resize: vertical;
+ min-height: 100px;
+}
+
+.notes-textarea:focus {
+ outline: none;
+ border-color: #3b82f6;
+ box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
+}
+
+/* Submit Section */
+.submit-section {
+ display: flex;
+ justify-content: center;
+ padding: 1rem 0;
+}
+
+/* Schedule State Dropdown */
+.schedule-state-dropdown {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ align-items: center;
+}
+
+.dropdown-container {
+ display: flex;
+ flex-direction: column;
+ gap: 0.5rem;
+ align-items: center;
+}
+
+.dropdown-label {
+ font-size: 0.875rem;
+ font-weight: 500;
+ color: #374151;
+}
+
+.state-select {
+ padding: 0.5rem 0.75rem;
+ border: 1px solid #d1d5db;
+ border-radius: 0.375rem;
+ font-size: 0.875rem;
+ color: #374151;
+ background-color: white;
+ cursor: pointer;
+ min-width: 150px;
+}
+
+.state-select:focus {
+ outline: none;
+ border-color: #3b82f6;
+ box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
+}
+
+.state-action-button {
+ min-width: 250px;
+}
+
+.btn {
+ padding: 0.75rem 1.5rem;
+ border: none;
+ border-radius: 0.375rem;
+ font-size: 0.875rem;
+ font-weight: 500;
+ cursor: pointer;
+ transition: all 0.2s;
+ text-align: center;
+ text-decoration: none;
+ display: inline-block;
+}
+
+.btn-primary {
+ background-color: #3b82f6;
+ color: white;
+}
+
+.btn-primary:hover:not(:disabled) {
+ background-color: #2563eb;
+}
+
+.btn-primary:disabled {
+ background-color: #9ca3af;
+ cursor: not-allowed;
+}
+
+.btn-large {
+ padding: 1rem 2rem;
+ font-size: 1rem;
+}
+
+.success-message {
+ display: flex;
+ align-items: center;
+ gap: 0.5rem;
+ padding: 1rem 1.5rem;
+ background-color: #f0fdf4;
+ border: 1px solid #bbf7d0;
+ border-radius: 0.375rem;
+ color: #166534;
+ font-weight: 500;
+}
+
+/* Error State */
+.error-state {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ min-height: 50vh;
+ text-align: center;
+ gap: 1rem;
+}
+
+.error-state h1 {
+ font-size: 1.5rem;
+ color: #374151;
+}
+
+.error-state p {
+ color: #6b7280;
+}
+
+/* Responsive */
+@media (max-width: 640px) {
+ .maintenance-content {
+ padding: 1rem;
+ }
+
+ .header-content {
+ padding: 1rem;
+ }
+
+ .header-info h1 {
+ font-size: 1.25rem;
+ }
+
+ .todo-item {
+ flex-direction: column;
+ align-items: flex-start;
+ gap: 0.5rem;
+ }
+
+ .priority-badge {
+ align-self: flex-end;
+ }
+
+ .btn-large {
+ width: 100%;
+ }
+}
diff --git a/apps/property-detail-app/src/Maintenance.tsx b/apps/property-detail-app/src/Maintenance.tsx
new file mode 100644
index 00000000..4c3663ae
--- /dev/null
+++ b/apps/property-detail-app/src/Maintenance.tsx
@@ -0,0 +1,183 @@
+import './Maintenance.css'
+
+import {useDocumentProjection} from '@sanity/sdk-react'
+import React, {Suspense, useState} from 'react'
+import {Link, useParams} from 'react-router'
+
+import {MaintenanceTask} from './components/MaintenanceTask'
+import {MaintenanceTaskSkeleton} from './components/MaintenanceTaskSkeleton'
+import {ScheduleStateDropdown} from './components/ScheduleStateDropdown'
+
+export default function MaintenanceApp(): React.ReactNode {
+ const {propertyId} = useParams<{propertyId: string}>()
+ const [notes, setNotes] = useState('')
+ const [isSubmitted] = useState(false)
+
+ // Fetch the property document
+ const {data: property} = useDocumentProjection<{
+ address: string
+ }>({
+ documentId: propertyId || '',
+ documentType: 'property',
+ projection: '{address}',
+ })
+
+ // Fetch the maintenance schedule for this property
+ const {data} = useDocumentProjection<{
+ maintenanceSchedules: Array<{
+ _id: string
+ maintenanceType: string
+ scheduledDate: string
+ status: string
+ notes?: string
+ assignedBroker: {name: string}
+ tasks: Array<{_ref: string; _key: string; _type: string}>
+ }>
+ }>({
+ documentId: propertyId || '',
+ documentType: 'property',
+ projection: `{
+ maintenanceSchedules[]->{
+ _id,
+ maintenanceType,
+ scheduledDate,
+ status,
+ notes,
+ assignedBroker->{name},
+ tasks[]
+ }
+ }`,
+ })
+
+ const currentSchedule = data?.maintenanceSchedules?.[0] // Get the latest maintenance schedule
+
+ if (!propertyId) {
+ return (
+
+
+
Property ID not found
+
+ ← Back to Property List
+
+
+
+ )
+ }
+
+ if (!property) {
+ return (
+
+
Loading property details...
+
+ )
+ }
+
+ if (!currentSchedule) {
+ return (
+
+
+
+ ← Back to Property List
+
+
{property.address}
+
+
+
No maintenance scheduled
+
There are currently no maintenance schedules for this property.
+
+
+ )
+ }
+
+ if (isSubmitted) {
+ return (
+
+
+
+ ← Back to Property List
+
+
Maintenance Completed!
+
+
+
✓
+
Great job!
+
+ The maintenance for {property.address} has been completed.
+
+
+
+ Back to Properties
+
+
+
+
+ )
+ }
+
+ return (
+
+
+
+ ← Back to Property List
+
+
{property.address}
+
+
+ Broker: {currentSchedule.assignedBroker?.name || 'No broker assigned'}
+
+
+ Type: {currentSchedule.maintenanceType}
+
+
+ Scheduled: {currentSchedule.scheduledDate}
+
+
+ Status: {currentSchedule.status}
+
+
+
+
+
+
+
Maintenance Tasks
+
+ {currentSchedule?.tasks?.map((taskRef) => (
+
}>
+
+
+ )) || (
+
+
No tasks assigned for this maintenance.
+
+ )}
+
+
+
+
+
Additional Notes
+
+
+
+
+
+
+
+ )
+}
diff --git a/apps/property-detail-app/src/PropertyList.tsx b/apps/property-detail-app/src/PropertyList.tsx
new file mode 100644
index 00000000..3480a9b3
--- /dev/null
+++ b/apps/property-detail-app/src/PropertyList.tsx
@@ -0,0 +1,87 @@
+import './App.css'
+
+import {type DocumentHandle, useDocumentProjection, useDocuments} from '@sanity/sdk-react'
+import {Suspense} from 'react'
+import {Link} from 'react-router'
+
+interface PropertyListItemProps {
+ doc: DocumentHandle<'property'>
+}
+
+function PropertyListItem({doc}: PropertyListItemProps) {
+ const {data: property} = useDocumentProjection<{
+ address: string
+ broker: {name: string}
+ maintenanceSchedules: Array<{
+ maintenanceType: string
+ scheduledDate: string
+ }>
+ }>({
+ ...doc,
+ projection: `{
+ address,
+ broker->{name},
+ maintenanceSchedules[]->{maintenanceType, scheduledDate}
+ }`,
+ })
+
+ if (!property) return null
+
+ // Get the latest maintenance schedule for this property
+ const latestMaintenance = property.maintenanceSchedules?.[0]
+
+ return (
+
+
+
+
{property.address}
+
Broker: {property.broker?.name || 'No broker assigned'}
+ {latestMaintenance && (
+ <>
+
{latestMaintenance.maintenanceType}
+
Scheduled: {latestMaintenance.scheduledDate}
+ >
+ )}
+
+
→
+
+
+ )
+}
+
+export default function PropertyList(): React.ReactElement {
+ const {
+ data: propertyHandles,
+ isPending,
+ count,
+ } = useDocuments({
+ documentType: 'property',
+ orderings: [{field: 'address', direction: 'asc'}],
+ })
+
+ if (isPending) {
+ return (
+
+
Property Maintenance List
+
Loading properties...
+
+ )
+ }
+
+ return (
+
+
Property Maintenance List
+
Total properties: {count}
+
+ {propertyHandles.map((propertyHandle) => (
+ Loading property...
}
+ >
+
+
+ ))}
+
+
+ )
+}
diff --git a/apps/property-detail-app/src/components/CompleteAllTasks.tsx b/apps/property-detail-app/src/components/CompleteAllTasks.tsx
new file mode 100644
index 00000000..c6008cef
--- /dev/null
+++ b/apps/property-detail-app/src/components/CompleteAllTasks.tsx
@@ -0,0 +1,200 @@
+import {IntentHandlerPayload, useClient} from '@sanity/sdk-react'
+import React from 'react'
+
+import {MaintenanceSchedule} from '../types'
+
+export function CompleteAllTasks({payload}: {payload: IntentHandlerPayload}): React.ReactElement {
+ const client = useClient({apiVersion: '2025-08-01'})
+ const [status, setStatus] = React.useState<'loading' | 'success' | 'error'>('loading')
+ const [taskCount, setTaskCount] = React.useState(0)
+
+ React.useEffect(() => {
+ async function completeAllTasks() {
+ try {
+ const property = await client.getDocument(payload.documentHandle.documentId)
+
+ if (!property?.['maintenanceSchedules'] || property['maintenanceSchedules'].length === 0) {
+ throw new Error('No maintenance schedules found for this property')
+ }
+
+ // Find the first active (non-completed) maintenance schedule
+ const activeSchedule = property['maintenanceSchedules'].find(
+ (schedule: MaintenanceSchedule) => schedule.status !== 'completed',
+ )
+
+ if (!activeSchedule) {
+ throw new Error('No active maintenance schedule found for this property')
+ }
+
+ // Fetch the full maintenance schedule document to get task references
+ const maintenanceSchedule = await client.getDocument(activeSchedule._ref)
+
+ if (!maintenanceSchedule?.['tasks']) {
+ throw new Error('No tasks found for maintenance schedule')
+ }
+
+ const tasks = maintenanceSchedule['tasks']
+ setTaskCount(tasks.length)
+
+ // Create a transaction to update all tasks at once
+ const transaction = client.transaction()
+
+ // Add patch for each task to mark it as completed
+ tasks.forEach((taskRef: {_ref: string}) => {
+ transaction.patch(taskRef._ref, {set: {completed: true}})
+ })
+
+ // Also mark the maintenance schedule as completed
+ transaction.patch(activeSchedule._ref, {set: {status: 'completed'}})
+
+ // Execute the transaction
+ await transaction.commit()
+
+ setStatus('success')
+ } catch (error) {
+ // eslint-disable-next-line no-console
+ console.error('Failed to complete all tasks:', error)
+ setStatus('error')
+ }
+ }
+
+ completeAllTasks()
+ }, [client, payload.documentHandle.documentId])
+
+ if (status === 'loading') {
+ return (
+
+
+
+ ⚙️
+
+
Completing all maintenance tasks...
+
Please wait while we update the tasks.
+
+
+ )
+ }
+
+ if (status === 'success') {
+ return (
+
+
+
✅
+
All Tasks Completed!
+
+ Successfully marked {taskCount} task{taskCount !== 1 ? 's' : ''} as completed.
+
+
+ View Property Details
+
+
+
+
+
+
+ )
+ }
+
+ // Error state
+ return (
+
+ )
+}
diff --git a/apps/property-detail-app/src/components/LoadingFallback.tsx b/apps/property-detail-app/src/components/LoadingFallback.tsx
new file mode 100644
index 00000000..1e0c53bd
--- /dev/null
+++ b/apps/property-detail-app/src/components/LoadingFallback.tsx
@@ -0,0 +1,31 @@
+import React from 'react'
+
+export function LoadingFallback(): React.JSX.Element {
+ return (
+
+
+
+
+
+
Loading your property data...
+
+
+ {/* Skeleton loading cards */}
+
+ {[1, 2, 3].map((index) => (
+
+ ))}
+
+
+ )
+}
diff --git a/apps/property-detail-app/src/components/MaintenanceTask.tsx b/apps/property-detail-app/src/components/MaintenanceTask.tsx
new file mode 100644
index 00000000..7e9083e4
--- /dev/null
+++ b/apps/property-detail-app/src/components/MaintenanceTask.tsx
@@ -0,0 +1,64 @@
+import {DocumentHandle, useDocument, useEditDocument} from '@sanity/sdk-react'
+
+interface MaintenanceTaskProps {
+ doc: DocumentHandle<'maintenanceTask'>
+}
+
+export function MaintenanceTask({doc}: MaintenanceTaskProps): React.ReactNode {
+ const {data: task} = useDocument<{
+ task: string
+ completed: boolean
+ priority: string
+ notes?: string
+ }>(doc)
+
+ const editTask = useEditDocument({...doc, path: 'completed'})
+
+ if (!task) return null
+
+ const handleToggle = async () => {
+ try {
+ // useDocument + useEditDocument handles optimistic updates automatically
+ await editTask(!task.completed)
+ } catch (error) {
+ // eslint-disable-next-line no-console
+ console.error('Failed to update task:', error)
+ }
+ }
+
+ const getPriorityClass = (priority: string) => {
+ switch (priority) {
+ case 'high':
+ return 'priority-high'
+ case 'medium':
+ return 'priority-medium'
+ case 'low':
+ return 'priority-low'
+ default:
+ return 'priority-medium'
+ }
+ }
+
+ return (
+
+
+
{task.priority}
+ {task.notes && (
+
+ {task.notes}
+
+ )}
+
+ )
+}
diff --git a/apps/property-detail-app/src/components/MaintenanceTaskSkeleton.tsx b/apps/property-detail-app/src/components/MaintenanceTaskSkeleton.tsx
new file mode 100644
index 00000000..b753bfd2
--- /dev/null
+++ b/apps/property-detail-app/src/components/MaintenanceTaskSkeleton.tsx
@@ -0,0 +1,14 @@
+export function MaintenanceTaskSkeleton(): React.ReactNode {
+ return (
+
+
+
medium
+
+ )
+}
diff --git a/apps/property-detail-app/src/components/ScheduleStateDropdown.tsx b/apps/property-detail-app/src/components/ScheduleStateDropdown.tsx
new file mode 100644
index 00000000..afd69e1b
--- /dev/null
+++ b/apps/property-detail-app/src/components/ScheduleStateDropdown.tsx
@@ -0,0 +1,76 @@
+import {useSendIntent} from '@sanity/sdk-react'
+import React, {useState} from 'react'
+
+interface ScheduleStateDropdownProps {
+ scheduleId: string
+ currentState: string
+}
+
+const scheduleStates = [
+ {value: 'scheduled', label: 'Scheduled'},
+ {value: 'in_progress', label: 'In Progress'},
+ {value: 'completed', label: 'Completed'},
+ {value: 'cancelled', label: 'Cancelled'},
+]
+
+export function ScheduleStateDropdown({
+ scheduleId,
+ currentState,
+}: ScheduleStateDropdownProps): React.ReactNode {
+ const [selectedState, setSelectedState] = useState(currentState)
+
+ const {sendIntent} = useSendIntent({
+ intentName: 'editScheduleState',
+ documentHandle: {
+ documentId: scheduleId,
+ documentType: 'maintenanceSchedule',
+ projectId: '9wmez61s',
+ dataset: 'production',
+ },
+ params: {
+ state: selectedState,
+ },
+ })
+
+ const handleStateChange = (event: React.ChangeEvent) => {
+ setSelectedState(event.target.value)
+ }
+
+ const handleSubmit = (e: React.MouseEvent) => {
+ e.preventDefault()
+ e.stopPropagation()
+ sendIntent()
+ }
+
+ const selectedStateLabel =
+ scheduleStates.find((state) => state.value === selectedState)?.label || 'Unknown'
+
+ return (
+
+
+
+
+
+
+
+ )
+}
diff --git a/apps/property-detail-app/src/types.ts b/apps/property-detail-app/src/types.ts
new file mode 100644
index 00000000..4e732bb4
--- /dev/null
+++ b/apps/property-detail-app/src/types.ts
@@ -0,0 +1,9 @@
+export interface MaintenanceSchedule {
+ _id: string
+ maintenanceType: string
+ scheduledDate: string
+ status: string
+ notes?: string
+ assignedBroker: {name: string}
+ tasks: Array<{_ref: string; _key: string; _type: string}>
+}
diff --git a/apps/property-detail-app/tsconfig.json b/apps/property-detail-app/tsconfig.json
new file mode 100644
index 00000000..ee702a94
--- /dev/null
+++ b/apps/property-detail-app/tsconfig.json
@@ -0,0 +1,18 @@
+{
+ "extends": "@repo/tsconfig/base.json",
+ "compilerOptions": {
+ "rootDir": "../../",
+ "baseUrl": "../../",
+ "verbatimModuleSyntax": false,
+ "noEmit": true,
+ "module": "ESNext",
+ "types": ["vite/client"],
+ "paths": {
+ "@sanity/sdk": ["./packages/core/src/_exports/index.ts"],
+ "@sanity/sdk/*": ["./packages/core/src/_exports/*"],
+ "@sanity/sdk-react": ["./packages/react/src/_exports/index.ts"],
+ "@sanity/sdk-react/*": ["./packages/react/src/_exports/*"]
+ }
+ },
+ "include": ["**/*.ts", "**/*.tsx"]
+}
diff --git a/apps/property-overview-app/.gitignore b/apps/property-overview-app/.gitignore
new file mode 100644
index 00000000..aa9909c0
--- /dev/null
+++ b/apps/property-overview-app/.gitignore
@@ -0,0 +1,29 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# Dependencies
+/node_modules
+/.pnp
+.pnp.js
+
+# Compiled Sanity Studio
+/dist
+
+# Temporary Sanity runtime, generated by the CLI on every dev server start
+/.sanity
+
+# Logs
+/logs
+*.log
+
+# Coverage directory used by testing tools
+/coverage
+
+# Misc
+.DS_Store
+*.pem
+
+# Typescript
+*.tsbuildinfo
+
+# Dotenv and similar local-only files
+*.local
diff --git a/apps/property-overview-app/.lintstagedrc.mjs b/apps/property-overview-app/.lintstagedrc.mjs
new file mode 100644
index 00000000..ac300caf
--- /dev/null
+++ b/apps/property-overview-app/.lintstagedrc.mjs
@@ -0,0 +1,4 @@
+// @ts-check
+import baseConfig from '../../.lintstagedrc.mjs'
+
+export default baseConfig
diff --git a/apps/property-overview-app/_intents/editScheduleState.ts b/apps/property-overview-app/_intents/editScheduleState.ts
new file mode 100644
index 00000000..0596d47a
--- /dev/null
+++ b/apps/property-overview-app/_intents/editScheduleState.ts
@@ -0,0 +1,11 @@
+export default {
+ id: 'editScheduleState',
+ action: 'edit',
+ title: 'Edit Schedule State',
+ filters: [
+ {
+ types: ['maintenanceSchedule'],
+ },
+ ],
+ description: 'Update the status/state of a maintenance schedule and view the updated property',
+}
diff --git a/apps/property-overview-app/eslint.config.mjs b/apps/property-overview-app/eslint.config.mjs
new file mode 100644
index 00000000..161663b1
--- /dev/null
+++ b/apps/property-overview-app/eslint.config.mjs
@@ -0,0 +1,27 @@
+// @ts-check
+import baseESLintConfig from '@repo/config-eslint'
+import reactConfig from '@repo/config-eslint/react'
+
+export default [
+ {
+ ignores: [
+ '.DS_Store',
+ '**/node_modules',
+ '**/build',
+ '**/dist',
+ '.env',
+ '.env.*',
+ '!.env.example',
+
+ // Ignore files for PNPM, NPM and YARN
+ 'pnpm-lock.yaml',
+ 'package-lock.json',
+ 'yarn.lock',
+
+ // Ignore files for Sanity TypeGen
+ 'sanity.types.ts',
+ ],
+ },
+ ...baseESLintConfig,
+ ...reactConfig,
+]
diff --git a/apps/property-overview-app/package.json b/apps/property-overview-app/package.json
new file mode 100644
index 00000000..891acb46
--- /dev/null
+++ b/apps/property-overview-app/package.json
@@ -0,0 +1,39 @@
+{
+ "name": "property-overview-app",
+ "version": "1.0.0",
+ "private": true,
+ "keywords": [
+ "sanity"
+ ],
+ "license": "UNLICENSED",
+ "type": "module",
+ "main": "package.json",
+ "scripts": {
+ "build": "sanity build",
+ "dev": "sanity dev",
+ "lint": "eslint .",
+ "start": "sanity start",
+ "tsc": "tsc --noEmit"
+ },
+ "prettier": "@sanity/prettier-config",
+ "dependencies": {
+ "@sanity/client": "^7.8.2",
+ "@sanity/sdk-react": "workspace:*",
+ "react": "^19",
+ "react-dom": "^19",
+ "react-router": "^7"
+ },
+ "devDependencies": {
+ "@repo/config-eslint": "workspace:*",
+ "@repo/tsconfig": "workspace:*",
+ "@sanity/prettier-config": "^1.0.3",
+ "@sanity/sdk": "workspace:*",
+ "@types/react": "^19",
+ "@types/react-dom": "^19.1.2",
+ "eslint": "^9.25.1",
+ "prettier": "^3.5.3",
+ "sanity": "^3",
+ "typescript": "^5.1.6",
+ "vite": "^6.3.3"
+ }
+}
diff --git a/apps/property-overview-app/sanity.cli.ts b/apps/property-overview-app/sanity.cli.ts
new file mode 100644
index 00000000..0ec6dd9f
--- /dev/null
+++ b/apps/property-overview-app/sanity.cli.ts
@@ -0,0 +1,9 @@
+import {defineCliConfig} from 'sanity/cli'
+
+export default defineCliConfig({
+ app: {
+ organizationId: 'oF5P8QpKU',
+ entry: './src/App.tsx',
+ id: 'xugh37hmtkbmj2a7bat1y3i0',
+ },
+})
diff --git a/apps/property-overview-app/src/App.css b/apps/property-overview-app/src/App.css
new file mode 100644
index 00000000..1c702c41
--- /dev/null
+++ b/apps/property-overview-app/src/App.css
@@ -0,0 +1,338 @@
+/* Global Styles */
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
+ background-color: #f5f7fa;
+ color: #333;
+}
+
+.app {
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+}
+
+/* Navbar */
+.navbar {
+ background: white;
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
+ padding: 16px 24px;
+}
+
+.navbar-brand h1 {
+ color: #333;
+ font-size: 1.5rem;
+ margin: 0;
+}
+
+/* Loading States */
+.loading-container {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ min-height: 60vh;
+ font-size: 1.1rem;
+ color: #666;
+}
+
+/* Main Content */
+.main-content {
+ flex: 1;
+ padding: 24px;
+}
+
+.content-grid {
+ display: grid;
+ grid-template-columns: 1.5fr 1fr;
+ gap: 24px;
+ height: calc(100vh - 120px); /* Full height minus navbar and padding */
+ max-width: none; /* Remove max-width to use full screen */
+ margin: 0;
+}
+
+/* Map Section */
+.map-section {
+ background: white;
+ border-radius: 8px;
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
+ overflow: hidden;
+ height: 100%; /* Take full height of grid cell */
+ display: flex;
+ flex-direction: column;
+}
+
+.map-placeholder {
+ flex: 1; /* Take all available height */
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
+ position: relative;
+ min-height: 400px; /* Minimum height fallback */
+}
+
+.map-overlay {
+ position: absolute;
+ inset: 0;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ color: white;
+ text-align: center;
+ padding: 20px;
+}
+
+.map-overlay h2 {
+ font-size: 1.5rem;
+ margin-bottom: 8px;
+}
+
+.property-markers {
+ position: absolute;
+ inset: 20px;
+ pointer-events: none;
+}
+
+.property-marker {
+ position: absolute;
+ padding: 4px 8px;
+ border-radius: 4px;
+ font-size: 0.8rem;
+ color: white;
+ font-weight: 500;
+ transform: translate(-50%, -50%);
+}
+
+.marker-available {
+ background: #28a745;
+}
+
+.marker-occupied {
+ background: #007bff;
+}
+
+.marker-maintenance {
+ background: #ffc107;
+ color: #333;
+}
+
+.marker-default {
+ background: #6c757d;
+}
+
+/* Property List */
+.property-list-section {
+ background: white;
+ border-radius: 8px;
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
+ padding: 20px;
+ height: 100%; /* Take full height of grid cell */
+ display: flex;
+ flex-direction: column;
+}
+
+.property-list-section h2 {
+ margin-bottom: 16px;
+ color: #333;
+ flex-shrink: 0; /* Don't shrink the header */
+}
+
+.property-list {
+ display: flex;
+ flex-direction: column;
+ gap: 12px;
+ flex: 1; /* Take remaining height */
+ overflow-y: auto; /* Enable scrolling when needed */
+ min-height: 0; /* Important for flex children to shrink */
+}
+
+.property-card {
+ border: 1px solid #eee;
+ border-radius: 6px;
+ padding: 16px;
+ transition: all 0.2s ease;
+ cursor: pointer;
+}
+
+.property-card:hover {
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
+ border-color: #007bff;
+}
+
+.property-header {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-bottom: 12px;
+}
+
+.property-header h3 {
+ margin: 0;
+ color: #333;
+ font-size: 1rem;
+}
+
+.property-details {
+ display: flex;
+ flex-direction: column;
+ gap: 6px;
+}
+
+.property-detail {
+ display: flex;
+ align-items: center;
+ gap: 6px;
+ font-size: 0.85rem;
+ color: #666;
+}
+
+.property-detail .icon {
+ width: 16px;
+ text-align: center;
+}
+
+/* Badges */
+.badge {
+ padding: 4px 8px;
+ border-radius: 12px;
+ font-size: 0.75rem;
+ font-weight: 500;
+ text-transform: uppercase;
+}
+
+.badge-success {
+ background: #d4edda;
+ color: #155724;
+}
+
+.badge-secondary {
+ background: #e2e3e5;
+ color: #383d41;
+}
+
+.badge-warning {
+ background: #fff3cd;
+ color: #856404;
+}
+
+.badge-info {
+ background: #d1ecf1;
+ color: #0c5460;
+}
+
+.badge-danger {
+ background: #f8d7da;
+ color: #721c24;
+}
+
+/* Modal */
+.modal-overlay {
+ position: fixed;
+ inset: 0;
+ background: rgba(0, 0, 0, 0.5);
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ z-index: 1000;
+}
+
+.modal-content {
+ background: white;
+ border-radius: 8px;
+ box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
+ max-width: 500px;
+ width: 90%;
+ max-height: 80vh;
+ overflow-y: auto;
+}
+
+.modal-header {
+ padding: 20px 20px 16px;
+ border-bottom: 1px solid #eee;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+}
+
+.modal-header h2 {
+ margin: 0;
+ color: #333;
+}
+
+.modal-close {
+ background: none;
+ border: none;
+ font-size: 1.5rem;
+ cursor: pointer;
+ color: #666;
+ padding: 4px;
+}
+
+.modal-close:hover {
+ color: #333;
+}
+
+.modal-body {
+ padding: 20px;
+}
+
+.property-details-grid {
+ display: grid;
+ gap: 12px;
+}
+
+.detail-item {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 8px 0;
+ border-bottom: 1px solid #f0f0f0;
+}
+
+.detail-item:last-child {
+ border-bottom: none;
+}
+
+/* Responsive Design */
+@media (max-width: 1024px) {
+ .content-grid {
+ grid-template-columns: 1fr;
+ gap: 16px;
+ height: auto; /* Allow natural height on mobile */
+ }
+
+ .map-section {
+ height: auto; /* Reset height for mobile */
+ }
+
+ .map-placeholder {
+ height: 300px; /* Fixed height on mobile */
+ flex: none; /* Reset flex for mobile */
+ }
+
+ .property-list-section {
+ height: auto; /* Reset height for mobile */
+ }
+
+ .property-list {
+ max-height: 400px; /* Limit height on mobile */
+ flex: none; /* Reset flex for mobile */
+ }
+}
+
+@media (max-width: 768px) {
+ .main-content {
+ padding: 16px;
+ }
+
+ .navbar {
+ padding: 12px 16px;
+ }
+
+ .property-card {
+ padding: 12px;
+ }
+}
diff --git a/apps/property-overview-app/src/App.tsx b/apps/property-overview-app/src/App.tsx
new file mode 100644
index 00000000..bfa5b954
--- /dev/null
+++ b/apps/property-overview-app/src/App.tsx
@@ -0,0 +1,59 @@
+import './App.css'
+
+import {createClient} from '@sanity/client'
+import {type SanityConfig} from '@sanity/sdk'
+import {IntentHandlerPayload, IntentHandlers, SanityApp} from '@sanity/sdk-react'
+import React from 'react'
+import {BrowserRouter} from 'react-router'
+
+import OverviewMap from './OverviewMap'
+
+function AppWithRouter(): React.JSX.Element {
+ const intentHandlers: IntentHandlers = {
+ editScheduleState: {
+ type: 'async',
+ handler: async (payload: IntentHandlerPayload) => {
+ const client = createClient({
+ projectId: '9wmez61s',
+ dataset: 'production',
+ apiVersion: '2025-08-01',
+ withCredentials: true,
+ useCdn: false,
+ apiHost: 'https://api.sanity.work',
+ })
+ await client
+ .patch(payload.documentHandle.documentId)
+ .set({status: payload.params?.['state']})
+ .commit()
+ },
+ },
+ }
+
+ const sanityConfigs: SanityConfig[] = [
+ {
+ projectId: '9wmez61s',
+ dataset: 'production',
+ auth: {
+ apiHost: 'https://api.sanity.work',
+ },
+ },
+ ]
+
+ return (
+
+ Loading...
}>
+
+
+
+ )
+}
+
+function App(): React.JSX.Element {
+ return (
+
+
+
+ )
+}
+
+export default App
diff --git a/apps/property-overview-app/src/OverviewMap.tsx b/apps/property-overview-app/src/OverviewMap.tsx
new file mode 100644
index 00000000..03c624a1
--- /dev/null
+++ b/apps/property-overview-app/src/OverviewMap.tsx
@@ -0,0 +1,381 @@
+import './app.css'
+
+import {
+ type DocumentHandle,
+ useDocumentProjection,
+ useDocuments,
+ useSendIntent,
+} from '@sanity/sdk-react'
+import {Suspense, useMemo, useState} from 'react'
+
+interface Property {
+ _id: string
+ _type: 'property'
+ address: string
+ broker: {
+ name: string
+ }
+ status: string
+ rent: number
+ bedrooms: number
+ bathrooms: number
+ location: {
+ lat: number
+ lng: number
+ }
+ tenant?: string | null
+ maintenanceSchedules?: Array<{
+ _id: string
+ maintenanceType: string
+ scheduledDate: string
+ status: string
+ }>
+}
+
+interface PropertyCardProps {
+ doc: DocumentHandle<'property'>
+}
+
+function PropertyCard({doc}: PropertyCardProps) {
+ const {sendIntent: checkMaintenance} = useSendIntent({
+ documentHandle: doc,
+ intentName: 'maintenanceList',
+ })
+ const {sendIntent: completeAllTasks} = useSendIntent({
+ documentHandle: doc,
+ intentName: 'completeAllTasks',
+ })
+
+ const {data: property} = useDocumentProjection<{
+ address: string
+ broker: {name: string}
+ status: string
+ rent: number
+ bedrooms: number
+ bathrooms: number
+ location: {lat: number; lng: number}
+ tenant?: string | null
+ maintenanceSchedules: Array<{
+ _id: string
+ maintenanceType: string
+ scheduledDate: string
+ status: string
+ }>
+ }>({
+ ...doc,
+ projection: `{
+ address,
+ broker->{name},
+ status,
+ rent,
+ bedrooms,
+ bathrooms,
+ location,
+ tenant,
+ maintenanceSchedules[]->{_id, maintenanceType, scheduledDate, status}
+ }`,
+ })
+
+ if (!property) return null
+
+ const today = new Date()
+ today.setHours(0, 0, 0, 0)
+
+ // Get the latest maintenance schedule for this property
+ const latestMaintenance = property.maintenanceSchedules?.[0]
+
+ const getMaintenanceStatus = (date: string, status: string) => {
+ // Don't show overdue badge for completed schedules
+ if (status === 'completed') {
+ return null
+ }
+
+ const maintenanceDate = new Date(date)
+ maintenanceDate.setHours(0, 0, 0, 0)
+
+ if (maintenanceDate < today) {
+ return {status: 'overdue', className: 'badge-danger'}
+ } else if (maintenanceDate.getTime() === today.getTime()) {
+ return {status: 'today', className: 'badge-warning'}
+ } else {
+ return {status: 'upcoming', className: 'badge-info'}
+ }
+ }
+
+ const getStatusBadgeClassName = (status: string) => {
+ switch (status) {
+ case 'available':
+ return 'badge-success'
+ case 'occupied':
+ return 'badge-secondary'
+ case 'maintenance':
+ return 'badge-warning'
+ default:
+ return 'badge-secondary'
+ }
+ }
+
+ const maintenanceStatus = latestMaintenance
+ ? getMaintenanceStatus(latestMaintenance.scheduledDate, latestMaintenance.status)
+ : null
+
+ const handleCheckMaintenance = (e: React.MouseEvent) => {
+ e.preventDefault()
+ e.stopPropagation()
+ checkMaintenance()
+ }
+
+ const handleCompleteAllTasks = (e: React.MouseEvent) => {
+ e.preventDefault()
+ e.stopPropagation()
+ completeAllTasks()
+ }
+
+ return (
+
+
+
{property.address}
+
+ {property.status}
+
+
+
+
+ 👤
+ {property.broker?.name || 'No broker assigned'}
+
+ {latestMaintenance && (
+ <>
+
+ 📅
+ {latestMaintenance.scheduledDate}
+ {maintenanceStatus && (
+
+ {maintenanceStatus.status}
+
+ )}
+
+
+ 🔧
+ {latestMaintenance.maintenanceType}
+
+ >
+ )}
+
+ 💰
+ ${property.rent?.toLocaleString() || 0}/month
+
+
+ 🏠
+
+ {property.bedrooms || 0} bed, {property.bathrooms || 0} bath
+
+
+ {property.tenant && (
+
+ 🏠
+ Tenant: {property.tenant}
+
+ )}
+
+
+
+
+ {property.maintenanceSchedules?.some((schedule) => schedule.status !== 'completed') && (
+
+ )}
+
+
+ )
+}
+
+export default function PropertyManagementApp(): React.JSX.Element {
+ const [selectedProperty, setSelectedProperty] = useState(null)
+
+ const {data: propertyHandles, isPending} = useDocuments({
+ documentType: 'property',
+ orderings: [{field: 'address', direction: 'asc'}],
+ })
+
+ // Filter properties based on selected broker and maintenance filter
+ // Note: In a real app, you might want to do this filtering in the GROQ query for better performance
+ const filteredProperties = useMemo(() => {
+ // For now, we'll filter on the client side for simplicity
+ // In production, consider moving filters to the useDocuments query
+ return propertyHandles
+ }, [propertyHandles])
+
+ const getStatusBadgeClassName = (status: string) => {
+ switch (status) {
+ case 'available':
+ return 'badge-success'
+ case 'occupied':
+ return 'badge-secondary'
+ case 'maintenance':
+ return 'badge-warning'
+ default:
+ return 'badge-secondary'
+ }
+ }
+
+ if (isPending) {
+ return (
+
+
Loading properties...
+
+ )
+ }
+
+ return (
+
+
+
+
+
+ {/* Map Section */}
+ {/*
+
+
+
Property Locations
+
Interactive map would be rendered here
+
+ {filteredProperties.map((propertyHandle) => (
+ Loading marker...
}
+ >
+
+
+ ))}
+
+
+
+
+
+ {/* Property List */}
+
+
Properties
+
+ {filteredProperties.map((propertyHandle) => (
+ Loading property...
}>
+
+
+ ))}
+
+
+
+
+
+ {/* Property Detail Modal */}
+ {selectedProperty && (
+ setSelectedProperty(null)}>
+
e.stopPropagation()}>
+
+
{selectedProperty.address}
+
+
+
+
+
+ Status:
+
+ {selectedProperty.status}
+
+
+
+ Rent: ${selectedProperty.rent?.toLocaleString()}
+
+
+ Bedrooms: {selectedProperty.bedrooms}
+
+
+ Bathrooms: {selectedProperty.bathrooms}
+
+
+ Broker: {selectedProperty.broker?.name}
+
+ {selectedProperty.tenant && (
+
+ Tenant: {selectedProperty.tenant}
+
+ )}
+
+
+
+
+ )}
+
+ )
+}
+
+// Helper component for property markers
+// function PropertyMarker({doc}: {doc: DocumentHandle<'property'>}) {
+// const {data: property} = useDocumentProjection<{
+// address: string
+// status: string
+// location: {lat: number; lng: number}
+// }>({
+// ...doc,
+// projection: '{address, status, location}',
+// })
+
+// if (!property) return null
+
+// const getStatusClassName = (status: string) => {
+// switch (status) {
+// case 'available':
+// return 'marker-available'
+// case 'occupied':
+// return 'marker-occupied'
+// case 'maintenance':
+// return 'marker-maintenance'
+// default:
+// return 'marker-default'
+// }
+// }
+
+// return (
+//
+// {property.address}
+//
+// )
+// }
diff --git a/apps/property-overview-app/tsconfig.json b/apps/property-overview-app/tsconfig.json
new file mode 100644
index 00000000..ee702a94
--- /dev/null
+++ b/apps/property-overview-app/tsconfig.json
@@ -0,0 +1,18 @@
+{
+ "extends": "@repo/tsconfig/base.json",
+ "compilerOptions": {
+ "rootDir": "../../",
+ "baseUrl": "../../",
+ "verbatimModuleSyntax": false,
+ "noEmit": true,
+ "module": "ESNext",
+ "types": ["vite/client"],
+ "paths": {
+ "@sanity/sdk": ["./packages/core/src/_exports/index.ts"],
+ "@sanity/sdk/*": ["./packages/core/src/_exports/*"],
+ "@sanity/sdk-react": ["./packages/react/src/_exports/index.ts"],
+ "@sanity/sdk-react/*": ["./packages/react/src/_exports/*"]
+ }
+ },
+ "include": ["**/*.ts", "**/*.tsx"]
+}
diff --git a/apps/property-studio/.gitignore b/apps/property-studio/.gitignore
new file mode 100644
index 00000000..aa9909c0
--- /dev/null
+++ b/apps/property-studio/.gitignore
@@ -0,0 +1,29 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# Dependencies
+/node_modules
+/.pnp
+.pnp.js
+
+# Compiled Sanity Studio
+/dist
+
+# Temporary Sanity runtime, generated by the CLI on every dev server start
+/.sanity
+
+# Logs
+/logs
+*.log
+
+# Coverage directory used by testing tools
+/coverage
+
+# Misc
+.DS_Store
+*.pem
+
+# Typescript
+*.tsbuildinfo
+
+# Dotenv and similar local-only files
+*.local
diff --git a/apps/property-studio/README.md b/apps/property-studio/README.md
new file mode 100644
index 00000000..daf008d5
--- /dev/null
+++ b/apps/property-studio/README.md
@@ -0,0 +1,64 @@
+# Property Studio Migration
+
+This directory contains schema types and a data migration script for your property management system.
+
+## Quick Start
+
+1. **Install dependencies:**
+
+ ```bash
+ cd apps/property-studio
+ npm install
+ ```
+
+2. **Get a Sanity API token:**
+
+ - Go to [manage.sanity.io](https://manage.sanity.io)
+ - Select your project (ID: `9wmez61s`)
+ - Navigate to API → Tokens
+ - Create a new token with **Write** permissions
+
+3. **Run the migration:**
+
+ ```bash
+ npx tsx migrate-data.ts 9wmez61s production YOUR_API_TOKEN
+ ```
+
+ Replace `YOUR_API_TOKEN` with the token you created in step 2.
+
+## What Gets Migrated
+
+The script will create:
+
+- **3 brokers** (Sarah Johnson, Mike Chen, David Rodriguez)
+- **5 properties** with full details (address, rent, bedrooms, bathrooms, location)
+- **28 maintenance tasks** distributed across properties
+- **5 maintenance schedules** linking everything together
+
+## Schema Types Created
+
+- **Property**: Address, broker, status, rent, bedrooms, bathrooms, geopoint location, tenant
+- **Broker**: Name, email, phone, license number, active status
+- **Maintenance Task**: Task description, completion status, priority level, notes
+- **Maintenance Schedule**: Property reference, maintenance type, scheduled date, assigned broker, tasks
+
+## Location Data
+
+Properties use Sanity's built-in `geopoint` type for location data:
+
+```javascript
+location: {
+ _type: "geopoint",
+ lat: 40.7128,
+ lng: -74.006
+}
+```
+
+## Troubleshooting
+
+- **"Cannot find module '@sanity/client'"**: Run `npm install` first
+- **"Project not found"**: Check your project ID
+- **"Unauthorized"**: Check your API token has write permissions
+- **"Dataset not found"**: Make sure the dataset exists (default is `production`)
+
+The script includes detailed logging showing exactly what's being created.
diff --git a/apps/property-studio/eslint.config.mjs b/apps/property-studio/eslint.config.mjs
new file mode 100644
index 00000000..1b8c8ba0
--- /dev/null
+++ b/apps/property-studio/eslint.config.mjs
@@ -0,0 +1,3 @@
+import studio from '@sanity/eslint-config-studio'
+
+export default [...studio]
diff --git a/apps/property-studio/package.json b/apps/property-studio/package.json
new file mode 100644
index 00000000..ceec43f6
--- /dev/null
+++ b/apps/property-studio/package.json
@@ -0,0 +1,40 @@
+{
+ "name": "property-intents-demo",
+ "private": true,
+ "version": "1.0.0",
+ "main": "package.json",
+ "license": "UNLICENSED",
+ "scripts": {
+ "dev": "sanity dev",
+ "start": "sanity start",
+ "build": "sanity build",
+ "deploy": "sanity deploy",
+ "deploy-graphql": "sanity graphql deploy"
+ },
+ "keywords": [
+ "sanity"
+ ],
+ "dependencies": {
+ "@csstools/css-calc": "^2.1.4",
+ "@sanity/client": "^6.0.0",
+ "@sanity/google-maps-input": "^4.1.1",
+ "@sanity/vision": "^4.3.0",
+ "react": "^19.1",
+ "react-dom": "^19.1",
+ "sanity": "^4.3.0",
+ "styled-components": "^6.1.18"
+ },
+ "devDependencies": {
+ "@sanity/eslint-config-studio": "^5.0.2",
+ "@types/react": "^19.1",
+ "eslint": "^9.28",
+ "prettier": "^3.5",
+ "typescript": "^5.8"
+ },
+ "prettier": {
+ "semi": false,
+ "printWidth": 100,
+ "bracketSpacing": false,
+ "singleQuote": true
+ }
+}
diff --git a/apps/property-studio/sanity.cli.ts b/apps/property-studio/sanity.cli.ts
new file mode 100644
index 00000000..6c61334e
--- /dev/null
+++ b/apps/property-studio/sanity.cli.ts
@@ -0,0 +1,13 @@
+import {defineCliConfig} from 'sanity/cli'
+
+export default defineCliConfig({
+ api: {
+ projectId: '9wmez61s',
+ dataset: 'production',
+ },
+ /**
+ * Enable auto-updates for studios.
+ * Learn more at https://www.sanity.io/docs/cli#auto-updates
+ */
+ autoUpdates: true,
+})
diff --git a/apps/property-studio/sanity.config.ts b/apps/property-studio/sanity.config.ts
new file mode 100644
index 00000000..8bcbe116
--- /dev/null
+++ b/apps/property-studio/sanity.config.ts
@@ -0,0 +1,22 @@
+import {defineConfig} from 'sanity'
+import {structureTool} from 'sanity/structure'
+import {visionTool} from '@sanity/vision'
+import {schemaTypes} from './schemaTypes'
+import {googleMapsInput} from '@sanity/google-maps-input'
+
+const API_KEY = 'AIzaSyDNp9K1o6TUEWsdZJdN9w6cJzPta-jIDhg'
+
+export default defineConfig({
+ name: 'default',
+ title: 'Property Intents Demo',
+
+ projectId: '9wmez61s',
+ dataset: 'production',
+ apiHost: 'https://api.sanity.work',
+
+ plugins: [structureTool(), visionTool(), googleMapsInput({apiKey: API_KEY})],
+
+ schema: {
+ types: schemaTypes,
+ },
+})
diff --git a/apps/property-studio/schemaTypes/broker.ts b/apps/property-studio/schemaTypes/broker.ts
new file mode 100644
index 00000000..e68cf4e1
--- /dev/null
+++ b/apps/property-studio/schemaTypes/broker.ts
@@ -0,0 +1,43 @@
+import {defineType, defineField} from 'sanity'
+
+export const broker = defineType({
+ name: 'broker',
+ title: 'Broker',
+ type: 'document',
+ fields: [
+ defineField({
+ name: 'name',
+ title: 'Full Name',
+ type: 'string',
+ validation: (Rule) => Rule.required(),
+ }),
+ defineField({
+ name: 'email',
+ title: 'Email',
+ type: 'string',
+ validation: (Rule) => Rule.required().email(),
+ }),
+ defineField({
+ name: 'phone',
+ title: 'Phone Number',
+ type: 'string',
+ }),
+ defineField({
+ name: 'licenseNumber',
+ title: 'License Number',
+ type: 'string',
+ }),
+ defineField({
+ name: 'active',
+ title: 'Active',
+ type: 'boolean',
+ initialValue: true,
+ }),
+ ],
+ preview: {
+ select: {
+ title: 'name',
+ subtitle: 'email',
+ },
+ },
+})
diff --git a/apps/property-studio/schemaTypes/index.ts b/apps/property-studio/schemaTypes/index.ts
new file mode 100644
index 00000000..611ee413
--- /dev/null
+++ b/apps/property-studio/schemaTypes/index.ts
@@ -0,0 +1,6 @@
+import {broker} from './broker'
+import {maintenanceSchedule} from './maintenanceSchedule'
+import {maintenanceTask} from './maintenanceTask'
+import {property} from './property'
+
+export const schemaTypes = [property, broker, maintenanceTask, maintenanceSchedule]
diff --git a/apps/property-studio/schemaTypes/maintenanceSchedule.ts b/apps/property-studio/schemaTypes/maintenanceSchedule.ts
new file mode 100644
index 00000000..3e7296dc
--- /dev/null
+++ b/apps/property-studio/schemaTypes/maintenanceSchedule.ts
@@ -0,0 +1,98 @@
+import {defineType, defineField} from 'sanity'
+
+export const maintenanceSchedule = defineType({
+ name: 'maintenanceSchedule',
+ title: 'Maintenance Schedule',
+ type: 'document',
+ fields: [
+ defineField({
+ name: 'property',
+ title: 'Property',
+ type: 'reference',
+ to: [{type: 'property'}],
+ validation: (Rule) => Rule.required(),
+ }),
+ defineField({
+ name: 'maintenanceType',
+ title: 'Maintenance Type',
+ type: 'string',
+ options: {
+ list: [
+ {title: 'HVAC Service', value: 'HVAC Service'},
+ {title: 'Plumbing Check', value: 'Plumbing Check'},
+ {title: 'Roof Inspection', value: 'Roof Inspection'},
+ {title: 'Electrical Repair', value: 'Electrical Repair'},
+ {title: 'Appliance Service', value: 'Appliance Service'},
+ {title: 'General Inspection', value: 'General Inspection'},
+ {title: 'Cleaning', value: 'Cleaning'},
+ {title: 'Landscaping', value: 'Landscaping'},
+ {title: 'Other', value: 'Other'},
+ ],
+ },
+ validation: (Rule) => Rule.required(),
+ }),
+ defineField({
+ name: 'scheduledDate',
+ title: 'Scheduled Date',
+ type: 'date',
+ validation: (Rule) => Rule.required(),
+ }),
+ defineField({
+ name: 'assignedBroker',
+ title: 'Assigned Broker',
+ type: 'reference',
+ to: [{type: 'broker'}],
+ validation: (Rule) => Rule.required(),
+ }),
+ defineField({
+ name: 'tasks',
+ title: 'Tasks',
+ type: 'array',
+ of: [{type: 'reference', to: [{type: 'maintenanceTask'}]}],
+ description: 'List of tasks to be completed for this maintenance',
+ }),
+ defineField({
+ name: 'status',
+ title: 'Status',
+ type: 'string',
+ options: {
+ list: [
+ {title: 'Scheduled', value: 'scheduled'},
+ {title: 'In Progress', value: 'in_progress'},
+ {title: 'Completed', value: 'completed'},
+ {title: 'Cancelled', value: 'cancelled'},
+ ],
+ layout: 'radio',
+ },
+ validation: (Rule) => Rule.required(),
+ initialValue: 'scheduled',
+ }),
+ defineField({
+ name: 'notes',
+ title: 'Notes',
+ type: 'text',
+ description: 'Additional notes about this maintenance schedule',
+ }),
+ defineField({
+ name: 'completedAt',
+ title: 'Completed At',
+ type: 'datetime',
+ description: 'When this maintenance was completed',
+ }),
+ ],
+ preview: {
+ select: {
+ property: 'property.address',
+ maintenanceType: 'maintenanceType',
+ scheduledDate: 'scheduledDate',
+ status: 'status',
+ },
+ prepare(selection) {
+ const {property, maintenanceType, scheduledDate, status} = selection
+ return {
+ title: `${maintenanceType || 'Maintenance'} - ${property || 'Unknown Property'}`,
+ subtitle: `${scheduledDate || 'No date'} • Status: ${status || 'scheduled'}`,
+ }
+ },
+ },
+})
diff --git a/apps/property-studio/schemaTypes/maintenanceTask.ts b/apps/property-studio/schemaTypes/maintenanceTask.ts
new file mode 100644
index 00000000..cdd6b5b1
--- /dev/null
+++ b/apps/property-studio/schemaTypes/maintenanceTask.ts
@@ -0,0 +1,62 @@
+import {defineType, defineField} from 'sanity'
+
+export const maintenanceTask = defineType({
+ name: 'maintenanceTask',
+ title: 'Maintenance Task',
+ type: 'document',
+ fields: [
+ defineField({
+ name: 'task',
+ title: 'Task Description',
+ type: 'text',
+ validation: (Rule) => Rule.required(),
+ }),
+ defineField({
+ name: 'completed',
+ title: 'Completed',
+ type: 'boolean',
+ initialValue: false,
+ }),
+ defineField({
+ name: 'priority',
+ title: 'Priority',
+ type: 'string',
+ options: {
+ list: [
+ {title: 'High', value: 'high'},
+ {title: 'Medium', value: 'medium'},
+ {title: 'Low', value: 'low'},
+ ],
+ layout: 'radio',
+ },
+ validation: (Rule) => Rule.required(),
+ initialValue: 'medium',
+ }),
+ defineField({
+ name: 'notes',
+ title: 'Notes',
+ type: 'text',
+ description: 'Additional notes or comments about this task',
+ }),
+ defineField({
+ name: 'completedAt',
+ title: 'Completed At',
+ type: 'datetime',
+ description: 'When this task was completed',
+ }),
+ ],
+ preview: {
+ select: {
+ title: 'task',
+ subtitle: 'priority',
+ completed: 'completed',
+ },
+ prepare(selection) {
+ const {title, subtitle, completed} = selection
+ return {
+ title: title || 'Untitled Task',
+ subtitle: `Priority: ${subtitle || 'medium'} ${completed ? '✅' : '⏳'}`,
+ }
+ },
+ },
+})
diff --git a/apps/property-studio/schemaTypes/property.ts b/apps/property-studio/schemaTypes/property.ts
new file mode 100644
index 00000000..765f6b5d
--- /dev/null
+++ b/apps/property-studio/schemaTypes/property.ts
@@ -0,0 +1,85 @@
+import {defineType, defineField} from 'sanity'
+
+export const property = defineType({
+ name: 'property',
+ title: 'Property',
+ type: 'document',
+ fields: [
+ defineField({
+ name: 'address',
+ title: 'Address',
+ type: 'string',
+ validation: (Rule) => Rule.required(),
+ }),
+ defineField({
+ name: 'broker',
+ title: 'Broker',
+ type: 'reference',
+ to: [{type: 'broker'}],
+ validation: (Rule) => Rule.required(),
+ }),
+ defineField({
+ name: 'status',
+ title: 'Status',
+ type: 'string',
+ options: {
+ list: [
+ {title: 'Available', value: 'available'},
+ {title: 'Occupied', value: 'occupied'},
+ {title: 'Maintenance', value: 'maintenance'},
+ ],
+ layout: 'radio',
+ },
+ validation: (Rule) => Rule.required(),
+ }),
+ defineField({
+ name: 'rent',
+ title: 'Monthly Rent',
+ type: 'number',
+ validation: (Rule) => Rule.required().min(0),
+ }),
+ defineField({
+ name: 'bedrooms',
+ title: 'Bedrooms',
+ type: 'number',
+ validation: (Rule) => Rule.required().min(0),
+ }),
+ defineField({
+ name: 'bathrooms',
+ title: 'Bathrooms',
+ type: 'number',
+ validation: (Rule) => Rule.required().min(0),
+ }),
+ defineField({
+ name: 'location',
+ title: 'Location',
+ type: 'geopoint',
+ validation: (Rule) => Rule.required(),
+ }),
+ defineField({
+ name: 'tenant',
+ title: 'Current Tenant',
+ type: 'string',
+ description: 'Name of current tenant (if occupied)',
+ }),
+ defineField({
+ name: 'maintenanceSchedules',
+ title: 'Maintenance Schedules',
+ type: 'array',
+ of: [{type: 'reference', to: [{type: 'maintenanceSchedule'}]}],
+ }),
+ ],
+ preview: {
+ select: {
+ title: 'address',
+ subtitle: 'status',
+ },
+ prepare(selection) {
+ const {title, subtitle} = selection
+ return {
+ title: title || 'Untitled Property',
+ subtitle: subtitle ? `Status: ${subtitle}` : '',
+ }
+ },
+ },
+})
diff --git a/apps/property-studio/tsconfig.json b/apps/property-studio/tsconfig.json
new file mode 100644
index 00000000..a8c164b1
--- /dev/null
+++ b/apps/property-studio/tsconfig.json
@@ -0,0 +1,17 @@
+{
+ "compilerOptions": {
+ "target": "ES2017",
+ "lib": ["dom", "dom.iterable", "esnext"],
+ "allowJs": true,
+ "skipLibCheck": true,
+ "strict": true,
+ "forceConsistentCasingInFileNames": true,
+ "module": "Preserve",
+ "moduleDetection": "force",
+ "isolatedModules": true,
+ "jsx": "preserve",
+ "incremental": true
+ },
+ "include": ["**/*.ts", "**/*.tsx"],
+ "exclude": ["node_modules"]
+}
diff --git a/package.json b/package.json
index 07f31b22..8498b8ed 100644
--- a/package.json
+++ b/package.json
@@ -45,6 +45,9 @@
"release:current-branch": "tsx scripts/release-branch.mts"
},
"prettier": "@sanity/prettier-config",
+ "dependencies": {
+ "sanity": "link:../sanity/packages/sanity"
+ },
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index bfde7afc..b7077dd7 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -7,6 +7,10 @@ settings:
importers:
.:
+ dependencies:
+ sanity:
+ specifier: link:../sanity/packages/sanity
+ version: link:../sanity/packages/sanity
devDependencies:
'@commitlint/cli':
specifier: ^19.8.0
@@ -34,7 +38,7 @@ importers:
version: link:packages/@repo/tsconfig
'@sanity/pkg-utils':
specifier: ^7.2.2
- version: 7.2.2(@types/babel__core@7.20.5)(@types/node@22.13.9)(babel-plugin-react-compiler@19.1.0-rc.1)(typescript@5.8.3)
+ version: 7.2.2(@types/babel__core@7.20.5)(@types/node@22.13.9)(typescript@5.8.3)
'@sanity/prettier-config':
specifier: ^1.0.3
version: 1.0.3(prettier@3.5.3)
@@ -43,10 +47,10 @@ importers:
version: 22.13.9
'@vitest/coverage-v8':
specifier: 3.1.2
- version: 3.1.2(vitest@3.1.2(@types/node@22.13.9)(jiti@2.4.2)(jsdom@26.1.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1))
+ version: 3.1.2(vitest@3.1.2(@types/node@22.13.9)(jiti@2.5.1)(jsdom@26.1.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))
eslint:
specifier: ^9.22.0
- version: 9.25.1(jiti@2.4.2)
+ version: 9.25.1(jiti@2.5.1)
husky:
specifier: ^9.1.6
version: 9.1.6
@@ -85,10 +89,10 @@ importers:
version: 5.8.3
vite:
specifier: ^6.3.4
- version: 6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
+ version: 6.3.4(@types/node@22.13.9)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
vitest:
specifier: ^3.1.2
- version: 3.1.2(@types/node@22.13.9)(jiti@2.4.2)(jsdom@26.1.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
+ version: 3.1.2(@types/node@22.13.9)(jiti@2.5.1)(jsdom@26.1.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
zx:
specifier: ^8.5.3
version: 8.5.3
@@ -133,7 +137,7 @@ importers:
version: 7.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
sanity:
specifier: ^3.86.1
- version: 3.87.0(@emotion/is-prop-valid@1.2.2)(@types/node@22.13.9)(@types/react@19.1.2)(immer@10.1.1)(jiti@2.4.2)(lightningcss@1.29.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
+ version: 3.99.0(@emotion/is-prop-valid@1.2.2)(@types/node@24.2.0)(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(immer@10.1.1)(jiti@2.5.1)(lightningcss@1.29.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0)
styled-components:
specifier: ^6.1.18
version: 6.1.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -155,7 +159,7 @@ importers:
version: link:../../packages/@repo/tsconfig
'@sanity/cli':
specifier: 3.88.1-typegen-experimental.0
- version: 3.88.1-typegen-experimental.0(@types/node@22.13.9)(@types/react@19.1.2)(jiti@2.4.2)(lightningcss@1.29.1)(react@18.3.1)(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ version: 3.88.1-typegen-experimental.0(@types/node@24.2.0)(@types/react@19.1.2)(jiti@2.5.1)(lightningcss@1.29.1)(react@18.3.1)(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0)
'@sanity/prettier-config':
specifier: ^1.0.3
version: 1.0.3(prettier@3.5.3)
@@ -176,19 +180,166 @@ importers:
version: 19.1.3(@types/react@19.1.2)
'@vitejs/plugin-react':
specifier: ^4.4.1
- version: 4.4.1(vite@6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1))
+ version: 4.4.1(vite@6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))
eslint:
specifier: ^9.25.1
- version: 9.25.1(jiti@2.4.2)
+ version: 9.25.1(jiti@2.5.1)
prettier:
specifier: ^3.5.3
version: 3.5.3
vite:
specifier: ^6.3.3
- version: 6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
+ version: 6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
vitest:
specifier: ^3.1.2
- version: 3.1.2(@types/node@22.13.9)(jiti@2.4.2)(jsdom@23.2.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
+ version: 3.1.2(@types/node@24.2.0)(jiti@2.5.1)(jsdom@23.2.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
+
+ apps/property-detail-app:
+ dependencies:
+ '@sanity/sdk-react':
+ specifier: workspace:*
+ version: link:../../packages/react
+ react:
+ specifier: ^19
+ version: 19.1.0
+ react-dom:
+ specifier: ^19
+ version: 19.1.0(react@19.1.0)
+ react-router:
+ specifier: ^7.5.2
+ version: 7.5.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ styled-components:
+ specifier: ^6.1.15
+ version: 6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ devDependencies:
+ '@repo/config-eslint':
+ specifier: workspace:*
+ version: link:../../packages/@repo/config-eslint
+ '@repo/tsconfig':
+ specifier: workspace:*
+ version: link:../../packages/@repo/tsconfig
+ '@sanity/prettier-config':
+ specifier: ^1.0.3
+ version: 1.0.3(prettier@3.6.2)
+ '@sanity/sdk':
+ specifier: workspace:*
+ version: link:../../packages/core
+ '@types/react':
+ specifier: ^19
+ version: 19.1.2
+ '@types/react-dom':
+ specifier: ^19.1.2
+ version: 19.1.3(@types/react@19.1.2)
+ eslint:
+ specifier: ^9.25.1
+ version: 9.25.1(jiti@2.5.1)
+ prettier:
+ specifier: ^3.5.3
+ version: 3.6.2
+ sanity:
+ specifier: ^3
+ version: 3.99.0(@emotion/is-prop-valid@1.2.2)(@types/node@24.2.0)(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(immer@10.1.1)(jiti@2.5.1)(lightningcss@1.29.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0)
+ typescript:
+ specifier: ^5.1.6
+ version: 5.8.3
+ vite:
+ specifier: ^6.3.3
+ version: 6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
+
+ apps/property-overview-app:
+ dependencies:
+ '@sanity/client':
+ specifier: ^7.8.2
+ version: 7.8.2(debug@4.4.1)
+ '@sanity/sdk-react':
+ specifier: workspace:*
+ version: link:../../packages/react
+ react:
+ specifier: ^19
+ version: 19.1.0
+ react-dom:
+ specifier: ^19
+ version: 19.1.0(react@19.1.0)
+ react-router:
+ specifier: ^7
+ version: 7.5.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ devDependencies:
+ '@repo/config-eslint':
+ specifier: workspace:*
+ version: link:../../packages/@repo/config-eslint
+ '@repo/tsconfig':
+ specifier: workspace:*
+ version: link:../../packages/@repo/tsconfig
+ '@sanity/prettier-config':
+ specifier: ^1.0.3
+ version: 1.0.3(prettier@3.6.2)
+ '@sanity/sdk':
+ specifier: workspace:*
+ version: link:../../packages/core
+ '@types/react':
+ specifier: ^19
+ version: 19.1.2
+ '@types/react-dom':
+ specifier: ^19.1.2
+ version: 19.1.3(@types/react@19.1.2)
+ eslint:
+ specifier: ^9.25.1
+ version: 9.25.1(jiti@2.5.1)
+ prettier:
+ specifier: ^3.5.3
+ version: 3.6.2
+ sanity:
+ specifier: ^3
+ version: 3.99.0(@emotion/is-prop-valid@1.2.2)(@types/node@24.2.0)(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(immer@10.1.1)(jiti@2.5.1)(lightningcss@1.29.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0)
+ typescript:
+ specifier: ^5.1.6
+ version: 5.8.3
+ vite:
+ specifier: ^6.3.3
+ version: 6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
+
+ apps/property-studio:
+ dependencies:
+ '@csstools/css-calc':
+ specifier: ^2.1.4
+ version: 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@sanity/client':
+ specifier: ^6.0.0
+ version: 6.29.1(debug@4.4.1)
+ '@sanity/google-maps-input':
+ specifier: ^4.1.1
+ version: 4.1.1(@emotion/is-prop-valid@1.2.2)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.1)(react@19.1.0)(sanity@4.3.0(@emotion/is-prop-valid@1.2.2)(@types/node@24.2.0)(@types/react@19.1.2)(immer@10.1.1)(jiti@2.5.1)(lightningcss@1.29.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0))(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))
+ '@sanity/vision':
+ specifier: ^4.3.0
+ version: 4.3.0(@babel/runtime@7.28.2)(@codemirror/lint@6.8.5)(@codemirror/theme-one-dark@6.1.3)(@emotion/is-prop-valid@1.2.2)(codemirror@6.0.2)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.1)(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))
+ react:
+ specifier: ^19.1
+ version: 19.1.0
+ react-dom:
+ specifier: ^19.1
+ version: 19.1.0(react@19.1.0)
+ sanity:
+ specifier: ^4.3.0
+ version: 4.3.0(@emotion/is-prop-valid@1.2.2)(@types/node@24.2.0)(@types/react@19.1.2)(immer@10.1.1)(jiti@2.5.1)(lightningcss@1.29.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0)
+ styled-components:
+ specifier: ^6.1.18
+ version: 6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ devDependencies:
+ '@sanity/eslint-config-studio':
+ specifier: ^5.0.2
+ version: 5.0.2(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
+ '@types/react':
+ specifier: ^19.1
+ version: 19.1.2
+ eslint:
+ specifier: ^9.28
+ version: 9.32.0(jiti@2.5.1)
+ prettier:
+ specifier: ^3.5
+ version: 3.6.2
+ typescript:
+ specifier: ^5.8
+ version: 5.8.3
packages/@repo/config-eslint:
devDependencies:
@@ -197,49 +348,49 @@ importers:
version: 9.25.1
eslint:
specifier: ^9.22.0
- version: 9.25.1(jiti@2.4.2)
+ version: 9.25.1(jiti@2.5.1)
eslint-config-prettier:
specifier: ^10.1.1
- version: 10.1.1(eslint@9.25.1(jiti@2.4.2))
+ version: 10.1.1(eslint@9.25.1(jiti@2.5.1))
eslint-config-turbo:
specifier: ^2.4.4
- version: 2.4.4(eslint@9.25.1(jiti@2.4.2))(turbo@2.5.2)
+ version: 2.4.4(eslint@9.25.1(jiti@2.5.1))(turbo@2.5.2)
eslint-import-resolver-typescript:
specifier: ^3.10.1
- version: 3.10.1(eslint-plugin-import@2.31.0)(eslint@9.25.1(jiti@2.4.2))
+ version: 3.10.1(eslint-plugin-import@2.31.0)(eslint@9.25.1(jiti@2.5.1))
eslint-plugin-import:
specifier: ^2.31.0
- version: 2.31.0(@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.25.1(jiti@2.4.2))
+ version: 2.31.0(@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.25.1(jiti@2.5.1))
eslint-plugin-prettier:
specifier: ^5.2.3
- version: 5.2.3(eslint-config-prettier@10.1.1(eslint@9.25.1(jiti@2.4.2)))(eslint@9.25.1(jiti@2.4.2))(prettier@3.6.2)
+ version: 5.2.3(eslint-config-prettier@10.1.1(eslint@9.25.1(jiti@2.5.1)))(eslint@9.25.1(jiti@2.5.1))(prettier@3.6.2)
eslint-plugin-react:
specifier: ^7.37.4
- version: 7.37.4(eslint@9.25.1(jiti@2.4.2))
+ version: 7.37.4(eslint@9.25.1(jiti@2.5.1))
eslint-plugin-react-compiler:
specifier: 19.1.0-rc.1
- version: 19.1.0-rc.1(eslint@9.25.1(jiti@2.4.2))
+ version: 19.1.0-rc.1(eslint@9.25.1(jiti@2.5.1))
eslint-plugin-react-hooks:
specifier: ^5.2.0
- version: 5.2.0(eslint@9.25.1(jiti@2.4.2))
+ version: 5.2.0(eslint@9.25.1(jiti@2.5.1))
eslint-plugin-react-refresh:
specifier: ^0.4.19
- version: 0.4.19(eslint@9.25.1(jiti@2.4.2))
+ version: 0.4.19(eslint@9.25.1(jiti@2.5.1))
eslint-plugin-simple-import-sort:
specifier: ^12.1.1
- version: 12.1.1(eslint@9.25.1(jiti@2.4.2))
+ version: 12.1.1(eslint@9.25.1(jiti@2.5.1))
eslint-plugin-tsdoc:
specifier: ^0.4.0
version: 0.4.0
eslint-plugin-unused-imports:
specifier: ^4.1.4
- version: 4.1.4(@typescript-eslint/eslint-plugin@8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2))
+ version: 4.1.4(@typescript-eslint/eslint-plugin@8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3))(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3))(eslint@9.25.1(jiti@2.5.1))
globals:
specifier: ^16.0.0
version: 16.0.0
typescript-eslint:
specifier: ^8.26.1
- version: 8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
+ version: 8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3)
packages/@repo/config-test:
devDependencies:
@@ -251,7 +402,7 @@ importers:
version: link:../dev-aliases
vitest:
specifier: ^3.1.2
- version: 3.1.2(@types/node@22.13.9)(jiti@2.4.2)(jsdom@26.1.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
+ version: 3.1.2(@types/node@24.2.0)(jiti@2.5.1)(jsdom@26.1.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
packages/@repo/dev-aliases:
devDependencies:
@@ -288,7 +439,7 @@ importers:
version: link:../tsconfig
'@sanity/pkg-utils':
specifier: ^7.2.2
- version: 7.2.2(@types/babel__core@7.20.5)(@types/node@22.13.9)(babel-plugin-react-compiler@19.1.0-rc.1)(typescript@5.8.3)
+ version: 7.2.2(@types/babel__core@7.20.5)(@types/node@22.13.9)(typescript@5.8.3)
'@types/lodash-es':
specifier: ^4.17.12
version: 4.17.12
@@ -297,7 +448,7 @@ importers:
version: 22.13.9
eslint:
specifier: ^9.22.0
- version: 9.25.1(jiti@2.4.2)
+ version: 9.25.1(jiti@2.5.1)
tsx:
specifier: ^4.7.1
version: 4.19.4
@@ -315,10 +466,10 @@ importers:
version: 4.17.12
'@vitejs/plugin-react':
specifier: ^4.4.1
- version: 4.4.1(vite@6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1))
+ version: 4.4.1(vite@6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))
eslint:
specifier: ^9.23.0
- version: 9.25.1(jiti@2.4.2)
+ version: 9.25.1(jiti@2.5.1)
lodash-es:
specifier: ^4.17.21
version: 4.17.21
@@ -327,10 +478,10 @@ importers:
version: 5.8.3
vite:
specifier: ^6.3.4
- version: 6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
+ version: 6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
vite-tsconfig-paths:
specifier: ^5.1.4
- version: 5.1.4(typescript@5.8.3)(vite@6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1))
+ version: 5.1.4(typescript@5.8.3)(vite@6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))
packages/@repo/package.config: {}
@@ -343,7 +494,7 @@ importers:
version: 0.4.1
'@sanity/client':
specifier: ^7.2.1
- version: 7.2.1(debug@4.4.1)
+ version: 7.2.1
'@sanity/comlink':
specifier: ^3.0.4
version: 3.0.4
@@ -401,7 +552,7 @@ importers:
version: 1.0.5
'@sanity/pkg-utils':
specifier: ^7.9.6
- version: 7.9.6(@types/babel__core@7.20.5)(@types/node@22.13.9)(typescript@5.8.3)
+ version: 7.9.6(@types/babel__core@7.20.5)(@types/node@24.2.0)(typescript@5.8.3)
'@sanity/prettier-config':
specifier: ^1.0.3
version: 1.0.3(prettier@3.5.3)
@@ -410,10 +561,10 @@ importers:
version: 4.17.12
'@vitest/coverage-v8':
specifier: 3.1.2
- version: 3.1.2(vitest@3.1.2(@types/node@22.13.9)(jiti@2.4.2)(jsdom@26.1.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1))
+ version: 3.1.2(vitest@3.1.2(@types/node@24.2.0)(jiti@2.5.1)(jsdom@26.1.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))
eslint:
specifier: ^9.22.0
- version: 9.25.1(jiti@2.4.2)
+ version: 9.25.1(jiti@2.5.1)
groq-js:
specifier: ^1.16.1
version: 1.16.1
@@ -422,22 +573,22 @@ importers:
version: 3.5.3
rollup-plugin-visualizer:
specifier: ^5.14.0
- version: 5.14.0(rolldown@1.0.0-beta.27)(rollup@4.45.1)
+ version: 5.14.0(rolldown@1.0.0-beta.27)(rollup@4.45.3)
typescript:
specifier: ^5.8.3
version: 5.8.3
vite:
specifier: ^6.3.4
- version: 6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
+ version: 6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
vitest:
specifier: ^3.1.2
- version: 3.1.2(@types/node@22.13.9)(jiti@2.4.2)(jsdom@26.1.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
+ version: 3.1.2(@types/node@24.2.0)(jiti@2.5.1)(jsdom@26.1.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
packages/react:
dependencies:
'@sanity/client':
specifier: ^7.2.1
- version: 7.2.1(debug@4.4.1)
+ version: 7.2.1
'@sanity/message-protocol':
specifier: ^0.12.0
version: 0.12.0
@@ -489,7 +640,7 @@ importers:
version: 3.0.4
'@sanity/pkg-utils':
specifier: ^7.2.2
- version: 7.2.2(@types/babel__core@7.20.5)(@types/node@22.13.9)(babel-plugin-react-compiler@19.1.0-rc.1)(typescript@5.8.3)
+ version: 7.2.2(@types/babel__core@7.20.5)(@types/node@24.2.0)(babel-plugin-react-compiler@19.1.0-rc.1)(typescript@5.8.3)
'@sanity/prettier-config':
specifier: ^1.0.3
version: 1.0.3(prettier@3.5.3)
@@ -507,16 +658,16 @@ importers:
version: 19.1.3(@types/react@19.1.2)
'@vitejs/plugin-react':
specifier: ^4.4.1
- version: 4.4.1(vite@6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1))
+ version: 4.4.1(vite@6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))
'@vitest/coverage-v8':
specifier: 3.1.2
- version: 3.1.2(vitest@3.1.2(@types/node@22.13.9)(jiti@2.4.2)(jsdom@25.0.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1))
+ version: 3.1.2(vitest@3.1.2(@types/node@24.2.0)(jiti@2.5.1)(jsdom@25.0.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))
babel-plugin-react-compiler:
specifier: 19.1.0-rc.1
version: 19.1.0-rc.1
eslint:
specifier: ^9.22.0
- version: 9.25.1(jiti@2.4.2)
+ version: 9.25.1(jiti@2.5.1)
jsdom:
specifier: ^25.0.1
version: 25.0.1
@@ -531,16 +682,16 @@ importers:
version: 19.1.0(react@19.1.0)
rollup-plugin-visualizer:
specifier: ^5.14.0
- version: 5.14.0(rolldown@1.0.0-beta.27)(rollup@4.45.1)
+ version: 5.14.0(rollup@4.46.2)
typescript:
specifier: ^5.8.3
version: 5.8.3
vite:
specifier: ^6.3.4
- version: 6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
+ version: 6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
vitest:
specifier: ^3.1.2
- version: 3.1.2(@types/node@22.13.9)(jiti@2.4.2)(jsdom@25.0.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
+ version: 3.1.2(@types/node@24.2.0)(jiti@2.5.1)(jsdom@25.0.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
packages:
@@ -566,12 +717,48 @@ packages:
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
+ '@architect/asap@7.0.10':
+ resolution: {integrity: sha512-oJjYDranGTCkp21bziF/fIxJfLTucitqg/ar5mmLPHyroNG3XF3SUIMvuNd1GNIe4oy40wvGEXvTToKYvUeOLA==}
+ engines: {node: '>=16'}
+
+ '@architect/hydrate@4.0.8':
+ resolution: {integrity: sha512-rf5xA9ZHWj69CPbwuQB3P0gscX+1ast0IilrqbGglZKi0DS4Xkoo6kJpUbdGfRsNAV3Of+z2GM0XLfEnuigVWg==}
+ engines: {node: '>=16'}
+ hasBin: true
+
+ '@architect/inventory@4.0.9':
+ resolution: {integrity: sha512-u2huwBc3JgiM0bGLPyBy0NjcF2mtnmFWwgFl7+E72jG3BcJl1QwQqXdaHygI2WblsH4BG8C19A47Er9QKOGdiw==}
+ engines: {node: '>=16'}
+
+ '@architect/parser@7.0.1':
+ resolution: {integrity: sha512-T4Rr/eQbtg/gPvS4HcXR7zYxLJ3gEh6pSKj0s/Y1IrvJY9QG4BDAVZgE7AYGfzqymwIF0pUI2mQ91CLi2CTnQw==}
+ engines: {node: '>=16'}
+
+ '@architect/utils@4.0.6':
+ resolution: {integrity: sha512-aa6gNNoHxgKpQrIFOa5zNW5fD10v46AE2VZNcjToxAvm//8itbIBoGw2wj8oF3gqHMKKkeLAtdO8K8tlKVN8ZA==}
+ engines: {node: '>=16'}
+
'@asamuzakjp/css-color@3.1.5':
resolution: {integrity: sha512-w7AmVyTTiU41fNLsFDf+gA2Dwtbx2EJtn2pbJNAGSRAg50loXy1uLXA3hEpD8+eydcomTurw09tq5/AyceCaGg==}
+ '@asamuzakjp/css-color@3.2.0':
+ resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==}
+
'@asamuzakjp/dom-selector@2.0.2':
resolution: {integrity: sha512-x1KXOatwofR6ZAYzXRBL5wrdV0vwNxlTCK9NCuLqAzQYARqGcvFwiJA6A1ERuh+dgeA4Dxm3JBYictIes+SqUQ==}
+ '@aws-lite/client@0.21.10':
+ resolution: {integrity: sha512-fOn3lg1ynBAxqcELRf084bNJ6gu+GGoNyC+hwitW/hg3Vc1z1ZbK5HWWTrDw8HdM/fEQ0UN++g7GXVN1GVctdQ==}
+ engines: {node: '>=16'}
+
+ '@aws-lite/s3@0.1.22':
+ resolution: {integrity: sha512-9OL95fTvHV80JvFTxLx8hhWQ6DgwHUts02KpXITA8syCDnYgua2rNcpwQ5b6GZzpL7yNXU0dud/Y6edThbffig==}
+ engines: {node: '>=16'}
+
+ '@aws-lite/ssm@0.2.5':
+ resolution: {integrity: sha512-1B8mZ79ySqlTEfSQ87KZ0XkmTOKQFMO3lUYUGUtwNTUncJINr6nhRWEjk128oBWwEQnpJ7NfpDPjdfg1ICe3xw==}
+ engines: {node: '>=16'}
+
'@babel/code-frame@7.26.2':
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
@@ -638,11 +825,22 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-create-regexp-features-plugin@7.27.1':
+ resolution: {integrity: sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-define-polyfill-provider@0.6.4':
resolution: {integrity: sha512-jljfR1rGnXXNWnmQg2K3+bvhkxB51Rl32QRaOTuwwjviGrHzIbSc8+x9CpraDtbT7mfyjXObULP4w/adunNwAw==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ '@babel/helper-define-polyfill-provider@0.6.5':
+ resolution: {integrity: sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
'@babel/helper-globals@7.28.0':
resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
engines: {node: '>=6.9.0'}
@@ -697,6 +895,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-remap-async-to-generator@7.27.1':
+ resolution: {integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-replace-supers@7.26.5':
resolution: {integrity: sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==}
engines: {node: '>=6.9.0'}
@@ -745,6 +949,10 @@ packages:
resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-wrap-function@7.27.1':
+ resolution: {integrity: sha512-NFJK2sHUvrjo8wAU/nQTWU890/zB2jj0qBcCbZbbf+005cAsv6tMjXz31fBign6M5ov1o0Bllu+9nbqkfsjjJQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helpers@7.27.0':
resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==}
engines: {node: '>=6.9.0'}
@@ -769,30 +977,60 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1':
+ resolution: {integrity: sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9':
resolution: {integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1':
+ resolution: {integrity: sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9':
resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1':
+ resolution: {integrity: sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9':
resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.13.0
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1':
+ resolution: {integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.13.0
+
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9':
resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1':
+ resolution: {integrity: sha512-6BpaYGDavZqkI6yT+KSPdpZFfpnd68UKXbcjI9pJ13pvHhPrCKWOOLp+ysvMeA+DxnhuPpgIaRpxRxo5A9t5jw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/plugin-proposal-private-methods@7.18.6':
resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==}
engines: {node: '>=6.9.0'}
@@ -812,12 +1050,24 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-syntax-import-assertions@7.27.1':
+ resolution: {integrity: sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-syntax-import-attributes@7.26.0':
resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-syntax-import-attributes@7.27.1':
+ resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-syntax-jsx@7.25.9':
resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==}
engines: {node: '>=6.9.0'}
@@ -854,138 +1104,282 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-arrow-functions@7.27.1':
+ resolution: {integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-async-generator-functions@7.26.8':
resolution: {integrity: sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-async-generator-functions@7.28.0':
+ resolution: {integrity: sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-async-to-generator@7.25.9':
resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-async-to-generator@7.27.1':
+ resolution: {integrity: sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-block-scoped-functions@7.26.5':
resolution: {integrity: sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-block-scoped-functions@7.27.1':
+ resolution: {integrity: sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-block-scoping@7.27.0':
resolution: {integrity: sha512-u1jGphZ8uDI2Pj/HJj6YQ6XQLZCNjOlprjxB5SVz6rq2T6SwAR+CdrWK0CP7F+9rDVMXdB0+r6Am5G5aobOjAQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-block-scoping@7.28.0':
+ resolution: {integrity: sha512-gKKnwjpdx5sER/wl0WN0efUBFzF/56YZO0RJrSYP4CljXnP31ByY7fol89AzomdlLNzI36AvOTmYHsnZTCkq8Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-class-properties@7.25.9':
resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-class-properties@7.27.1':
+ resolution: {integrity: sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-class-static-block@7.26.0':
resolution: {integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
+ '@babel/plugin-transform-class-static-block@7.27.1':
+ resolution: {integrity: sha512-s734HmYU78MVzZ++joYM+NkJusItbdRcbm+AGRgJCt3iA+yux0QpD9cBVdz3tKyrjVYWRl7j0mHSmv4lhV0aoA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.12.0
+
'@babel/plugin-transform-classes@7.25.9':
resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-classes@7.28.0':
+ resolution: {integrity: sha512-IjM1IoJNw72AZFlj33Cu8X0q2XK/6AaVC3jQu+cgQ5lThWD5ajnuUAml80dqRmOhmPkTH8uAwnpMu9Rvj0LTRA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-computed-properties@7.25.9':
resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-computed-properties@7.27.1':
+ resolution: {integrity: sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-destructuring@7.25.9':
resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-destructuring@7.28.0':
+ resolution: {integrity: sha512-v1nrSMBiKcodhsyJ4Gf+Z0U/yawmJDBOTpEB3mcQY52r9RIyPneGyAS/yM6seP/8I+mWI3elOMtT5dB8GJVs+A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-dotall-regex@7.25.9':
resolution: {integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-dotall-regex@7.27.1':
+ resolution: {integrity: sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-duplicate-keys@7.25.9':
resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-duplicate-keys@7.27.1':
+ resolution: {integrity: sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9':
resolution: {integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1':
+ resolution: {integrity: sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/plugin-transform-dynamic-import@7.25.9':
resolution: {integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-dynamic-import@7.27.1':
+ resolution: {integrity: sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-explicit-resource-management@7.28.0':
+ resolution: {integrity: sha512-K8nhUcn3f6iB+P3gwCv/no7OdzOZQcKchW6N389V6PD8NUWKZHzndOd9sPDVbMoBsbmjMqlB4L9fm+fEFNVlwQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-exponentiation-operator@7.26.3':
resolution: {integrity: sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-exponentiation-operator@7.27.1':
+ resolution: {integrity: sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-export-namespace-from@7.25.9':
resolution: {integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-export-namespace-from@7.27.1':
+ resolution: {integrity: sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-for-of@7.26.9':
resolution: {integrity: sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-for-of@7.27.1':
+ resolution: {integrity: sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-function-name@7.25.9':
resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-function-name@7.27.1':
+ resolution: {integrity: sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-json-strings@7.25.9':
resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-json-strings@7.27.1':
+ resolution: {integrity: sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-literals@7.25.9':
resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-literals@7.27.1':
+ resolution: {integrity: sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-logical-assignment-operators@7.25.9':
resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-logical-assignment-operators@7.27.1':
+ resolution: {integrity: sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-member-expression-literals@7.25.9':
resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-member-expression-literals@7.27.1':
+ resolution: {integrity: sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-modules-amd@7.25.9':
resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-modules-amd@7.27.1':
+ resolution: {integrity: sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-modules-commonjs@7.26.3':
resolution: {integrity: sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==}
engines: {node: '>=6.9.0'}
@@ -1004,168 +1398,336 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-modules-systemjs@7.27.1':
+ resolution: {integrity: sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-modules-umd@7.25.9':
resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-modules-umd@7.27.1':
+ resolution: {integrity: sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-named-capturing-groups-regex@7.25.9':
resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-transform-named-capturing-groups-regex@7.27.1':
+ resolution: {integrity: sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/plugin-transform-new-target@7.25.9':
resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-new-target@7.27.1':
+ resolution: {integrity: sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-nullish-coalescing-operator@7.26.6':
resolution: {integrity: sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-nullish-coalescing-operator@7.27.1':
+ resolution: {integrity: sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-numeric-separator@7.25.9':
resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-numeric-separator@7.27.1':
+ resolution: {integrity: sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-object-rest-spread@7.25.9':
resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-object-rest-spread@7.28.0':
+ resolution: {integrity: sha512-9VNGikXxzu5eCiQjdE4IZn8sb9q7Xsk5EXLDBKUYg1e/Tve8/05+KJEtcxGxAgCY5t/BpKQM+JEL/yT4tvgiUA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-object-super@7.25.9':
resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-object-super@7.27.1':
+ resolution: {integrity: sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-optional-catch-binding@7.25.9':
resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-optional-catch-binding@7.27.1':
+ resolution: {integrity: sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-optional-chaining@7.25.9':
resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-optional-chaining@7.27.1':
+ resolution: {integrity: sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-parameters@7.25.9':
resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-parameters@7.27.7':
+ resolution: {integrity: sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-private-methods@7.25.9':
resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-private-methods@7.27.1':
+ resolution: {integrity: sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-private-property-in-object@7.25.9':
resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-private-property-in-object@7.27.1':
+ resolution: {integrity: sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-property-literals@7.25.9':
resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-property-literals@7.27.1':
+ resolution: {integrity: sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-react-display-name@7.25.9':
resolution: {integrity: sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-react-display-name@7.28.0':
+ resolution: {integrity: sha512-D6Eujc2zMxKjfa4Zxl4GHMsmhKKZ9VpcqIchJLvwTxad9zWIYulwYItBovpDOoNLISpcZSXoDJ5gaGbQUDqViA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-react-jsx-development@7.25.9':
resolution: {integrity: sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-react-jsx-development@7.27.1':
+ resolution: {integrity: sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-react-jsx-self@7.25.9':
resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-react-jsx-self@7.27.1':
+ resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-react-jsx-source@7.25.9':
resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-react-jsx-source@7.27.1':
+ resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-react-jsx@7.25.9':
resolution: {integrity: sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-react-jsx@7.27.1':
+ resolution: {integrity: sha512-2KH4LWGSrJIkVf5tSiBFYuXDAoWRq2MMwgivCf+93dd0GQi8RXLjKA/0EvRnVV5G0hrHczsquXuD01L8s6dmBw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-react-pure-annotations@7.25.9':
resolution: {integrity: sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-react-pure-annotations@7.27.1':
+ resolution: {integrity: sha512-JfuinvDOsD9FVMTHpzA/pBLisxpv1aSf+OIV8lgH3MuWrks19R27e6a6DipIg4aX1Zm9Wpb04p8wljfKrVSnPA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-regenerator@7.27.0':
resolution: {integrity: sha512-LX/vCajUJQDqE7Aum/ELUMZAY19+cDpghxrnyt5I1tV6X5PyC86AOoWXWFYFeIvauyeSA6/ktn4tQVn/3ZifsA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-regenerator@7.28.1':
+ resolution: {integrity: sha512-P0QiV/taaa3kXpLY+sXla5zec4E+4t4Aqc9ggHlfZ7a2cp8/x/Gv08jfwEtn9gnnYIMvHx6aoOZ8XJL8eU71Dg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-regexp-modifiers@7.26.0':
resolution: {integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-transform-regexp-modifiers@7.27.1':
+ resolution: {integrity: sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/plugin-transform-reserved-words@7.25.9':
resolution: {integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-reserved-words@7.27.1':
+ resolution: {integrity: sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-shorthand-properties@7.25.9':
resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-shorthand-properties@7.27.1':
+ resolution: {integrity: sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-spread@7.25.9':
resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-spread@7.27.1':
+ resolution: {integrity: sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-sticky-regex@7.25.9':
resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-sticky-regex@7.27.1':
+ resolution: {integrity: sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-template-literals@7.26.8':
resolution: {integrity: sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-template-literals@7.27.1':
+ resolution: {integrity: sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-typeof-symbol@7.27.0':
resolution: {integrity: sha512-+LLkxA9rKJpNoGsbLnAgOCdESl73vwYn+V6b+5wHbrE7OGKVDPHIQvbFSzqE6rwqaCw2RE+zdJrlLkcf8YOA0w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-typeof-symbol@7.27.1':
+ resolution: {integrity: sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-typescript@7.27.0':
resolution: {integrity: sha512-fRGGjO2UEGPjvEcyAZXRXAS8AfdaQoq7HnxAbJoAoW10B9xOKesmmndJv+Sym2a+9FHWZ9KbyyLCe9s0Sn5jtg==}
engines: {node: '>=6.9.0'}
@@ -1184,30 +1746,60 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-unicode-escapes@7.27.1':
+ resolution: {integrity: sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-unicode-property-regex@7.25.9':
resolution: {integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-unicode-property-regex@7.27.1':
+ resolution: {integrity: sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-unicode-regex@7.25.9':
resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-unicode-regex@7.27.1':
+ resolution: {integrity: sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-unicode-sets-regex@7.25.9':
resolution: {integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-transform-unicode-sets-regex@7.27.1':
+ resolution: {integrity: sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/preset-env@7.26.9':
resolution: {integrity: sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/preset-env@7.28.0':
+ resolution: {integrity: sha512-VmaxeGOwuDqzLl5JUkIRM1X2Qu2uKGxHEQWh+cvvbl7JuJRgKGJSfsEF/bUaxFhJl/XAyxBe7q7qSuTbKFuCyg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/preset-modules@0.1.6-no-external-plugins':
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
@@ -1219,6 +1811,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/preset-react@7.27.1':
+ resolution: {integrity: sha512-oJHWh2gLhU9dW9HHr42q0cI0/iHHXTLGe39qvpAZZzagHy0MzYLCnCVV0symeRvzmjHyVU7mw2K06E6u/JwbhA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/preset-typescript@7.27.0':
resolution: {integrity: sha512-vxaPFfJtHhgeOVXRKuHpHPAOgymmy8V8I65T1q53R7GCZlefKeCaTyDs3zOPHTTbmquvNlQYC5klEvWsBAtrBQ==}
engines: {node: '>=6.9.0'}
@@ -1237,10 +1835,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/register@7.27.1':
+ resolution: {integrity: sha512-K13lQpoV54LATKkzBpBAEu1GGSIRzxR9f4IN4V8DCDgiUMo2UDGagEZr3lPeVNJPLkWUi5JE4hCHKneVTwQlYQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/runtime@7.27.0':
resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==}
engines: {node: '>=6.9.0'}
+ '@babel/runtime@7.28.2':
+ resolution: {integrity: sha512-KHp2IflsnGywDjBWDkR9iEqiWSpc8GIi0lgTT3mOElT0PP1tG26P4tmFI2YvAdzgq9RGyoHZQEIEdZy6Ec5xCA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/template@7.27.0':
resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==}
engines: {node: '>=6.9.0'}
@@ -1265,10 +1873,41 @@ packages:
resolution: {integrity: sha512-x0LvFTekgSX+83TI28Y9wYPUfzrnl2aT5+5QLnO6v7mSJYtEEevuDRN0F0uSHRk1G1IWZC43o00Y0xDDrpBGPQ==}
engines: {node: '>=6.9.0'}
+ '@babel/types@7.28.2':
+ resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==}
+ engines: {node: '>=6.9.0'}
+
'@bcoe/v8-coverage@1.0.2':
resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==}
engines: {node: '>=18'}
+ '@codemirror/autocomplete@6.18.6':
+ resolution: {integrity: sha512-PHHBXFomUs5DF+9tCOM/UoW6XQ4R44lLNNhRaW9PKPTU0D7lIjRg3ElxaJnTwsl/oHiR93WSXDBrekhoUGCPtg==}
+
+ '@codemirror/commands@6.8.1':
+ resolution: {integrity: sha512-KlGVYufHMQzxbdQONiLyGQDUW0itrLZwq3CcY7xpv9ZLRHqzkBSoteocBHtMCoY7/Ci4xhzSrToIeLg7FxHuaw==}
+
+ '@codemirror/lang-javascript@6.2.4':
+ resolution: {integrity: sha512-0WVmhp1QOqZ4Rt6GlVGwKJN3KW7Xh4H2q8ZZNGZaP6lRdxXJzmjm4FqvmOojVj6khWJHIb9sp7U/72W7xQgqAA==}
+
+ '@codemirror/language@6.11.2':
+ resolution: {integrity: sha512-p44TsNArL4IVXDTbapUmEkAlvWs2CFQbcfc0ymDsis1kH2wh0gcY96AS29c/vp2d0y2Tquk1EDSaawpzilUiAw==}
+
+ '@codemirror/lint@6.8.5':
+ resolution: {integrity: sha512-s3n3KisH7dx3vsoeGMxsbRAgKe4O1vbrnKBClm99PU0fWxmxsx5rR2PfqQgIt+2MMJBHbiJ5rfIdLYfB9NNvsA==}
+
+ '@codemirror/search@6.5.11':
+ resolution: {integrity: sha512-KmWepDE6jUdL6n8cAAqIpRmLPBZ5ZKnicE8oGU/s3QrAVID+0VhLFrzUucVKHG5035/BSykhExDL/Xm7dHthiA==}
+
+ '@codemirror/state@6.5.2':
+ resolution: {integrity: sha512-FVqsPqtPWKVVL3dPSxy8wEF/ymIEuVzF1PK3VbUgrxXpJUSHQWWZz4JMToquRxnkw+36LTamCZG2iua2Ptq0fA==}
+
+ '@codemirror/theme-one-dark@6.1.3':
+ resolution: {integrity: sha512-NzBdIvEJmx6fjeremiGp3t/okrLPYT0d9orIc7AFun8oZcRk58aejkqhv6spnz4MLAevrKNPMQYXEWMg4s+sKA==}
+
+ '@codemirror/view@6.38.1':
+ resolution: {integrity: sha512-RmTOkE7hRU3OVREqFVITWHz6ocgBjv08GoePscAakgVQfciA3SGCEk7mb9IzwW61cKKmlTpHXG6DUE5Ubx+MGQ==}
+
'@commitlint/cli@19.8.0':
resolution: {integrity: sha512-t/fCrLVu+Ru01h0DtlgHZXbHV2Y8gKocTR5elDOqIRUzQd0/6hpt2VIWOj9b3NDo7y4/gfxeR2zRtXq/qO6iUg==}
engines: {node: '>=v18'}
@@ -1342,12 +1981,19 @@ packages:
resolution: {integrity: sha512-JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA==}
engines: {node: '>=18'}
- '@csstools/css-calc@2.1.3':
- resolution: {integrity: sha512-XBG3talrhid44BY1x3MHzUx/aTG8+x/Zi57M4aTKK9RFB4aLlF3TTSzfzn8nWVHWL3FgAXAxmupmDd6VWww+pw==}
+ '@csstools/css-calc@2.1.4':
+ resolution: {integrity: sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==}
engines: {node: '>=18'}
peerDependencies:
- '@csstools/css-parser-algorithms': ^3.0.4
- '@csstools/css-tokenizer': ^3.0.3
+ '@csstools/css-parser-algorithms': ^3.0.5
+ '@csstools/css-tokenizer': ^3.0.4
+
+ '@csstools/css-color-parser@3.0.10':
+ resolution: {integrity: sha512-TiJ5Ajr6WRd1r8HSiwJvZBiJOqtH86aHpUjq5aEKWHiII2Qfjqd/HCWKPOW8EP4vcspXbHnXrwIDlu5savQipg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@csstools/css-parser-algorithms': ^3.0.5
+ '@csstools/css-tokenizer': ^3.0.4
'@csstools/css-color-parser@3.0.9':
resolution: {integrity: sha512-wILs5Zk7BU86UArYBJTPy/FMPPKVKHMj1ycCEyf3VUptol0JNRLFU/BZsJ4aiIHJEbSLiizzRrw8Pc1uAEDrXw==}
@@ -1362,10 +2008,26 @@ packages:
peerDependencies:
'@csstools/css-tokenizer': ^3.0.3
+ '@csstools/css-parser-algorithms@3.0.5':
+ resolution: {integrity: sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@csstools/css-tokenizer': ^3.0.4
+
'@csstools/css-tokenizer@3.0.3':
resolution: {integrity: sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==}
engines: {node: '>=18'}
+ '@csstools/css-tokenizer@3.0.4':
+ resolution: {integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==}
+ engines: {node: '>=18'}
+
+ '@date-fns/tz@1.3.1':
+ resolution: {integrity: sha512-LnBOyuj+piItX/D5BWBSckBsuZyOt7Jg2obGNiObq7qjl1A2/8F+i4RS8/MmkSdnw6hOe6afrJLCWrUWZw5Mlw==}
+
+ '@date-fns/utc@2.1.1':
+ resolution: {integrity: sha512-SlJDfG6RPeEX8wEVv6ZB3kak4MmbtyiI2qX/5zuKdordbrhB/iaJ58GVMZgJ6P1sJaM1gMgENFYYeg1JWrCFrA==}
+
'@dnd-kit/accessibility@3.1.1':
resolution: {integrity: sha512-2P+YgaXF+gRsIihwwY1gCsQSYnu9Zyj2py8kY5fFvUM1qm2WA2u639R6YNVfU4GWr+ZM5mqEsfHZZLoRONbemw==}
peerDependencies:
@@ -1430,6 +2092,12 @@ packages:
cpu: [ppc64]
os: [aix]
+ '@esbuild/aix-ppc64@0.25.8':
+ resolution: {integrity: sha512-urAvrUedIqEiFR3FYSLTWQgLu5tb+m0qZw0NBEasUeo6wuqatkMDaRT+1uABiGXEu5vqgPd7FGE1BhsAIy9QVA==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
'@esbuild/android-arm64@0.21.5':
resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
engines: {node: '>=12'}
@@ -1448,6 +2116,12 @@ packages:
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm64@0.25.8':
+ resolution: {integrity: sha512-OD3p7LYzWpLhZEyATcTSJ67qB5D+20vbtr6vHlHWSQYhKtzUYrETuWThmzFpZtFsBIxRvhO07+UgVA9m0i/O1w==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm@0.21.5':
resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
engines: {node: '>=12'}
@@ -1466,6 +2140,12 @@ packages:
cpu: [arm]
os: [android]
+ '@esbuild/android-arm@0.25.8':
+ resolution: {integrity: sha512-RONsAvGCz5oWyePVnLdZY/HHwA++nxYWIX1atInlaW6SEkwq6XkP3+cb825EUcRs5Vss/lGh/2YxAb5xqc07Uw==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-x64@0.21.5':
resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
engines: {node: '>=12'}
@@ -1484,6 +2164,12 @@ packages:
cpu: [x64]
os: [android]
+ '@esbuild/android-x64@0.25.8':
+ resolution: {integrity: sha512-yJAVPklM5+4+9dTeKwHOaA+LQkmrKFX96BM0A/2zQrbS6ENCmxc4OVoBs5dPkCCak2roAD+jKCdnmOqKszPkjA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/darwin-arm64@0.21.5':
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
engines: {node: '>=12'}
@@ -1502,6 +2188,12 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-arm64@0.25.8':
+ resolution: {integrity: sha512-Jw0mxgIaYX6R8ODrdkLLPwBqHTtYHJSmzzd+QeytSugzQ0Vg4c5rDky5VgkoowbZQahCbsv1rT1KW72MPIkevw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.21.5':
resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
engines: {node: '>=12'}
@@ -1520,6 +2212,12 @@ packages:
cpu: [x64]
os: [darwin]
+ '@esbuild/darwin-x64@0.25.8':
+ resolution: {integrity: sha512-Vh2gLxxHnuoQ+GjPNvDSDRpoBCUzY4Pu0kBqMBDlK4fuWbKgGtmDIeEC081xi26PPjn+1tct+Bh8FjyLlw1Zlg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/freebsd-arm64@0.21.5':
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
engines: {node: '>=12'}
@@ -1538,6 +2236,12 @@ packages:
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-arm64@0.25.8':
+ resolution: {integrity: sha512-YPJ7hDQ9DnNe5vxOm6jaie9QsTwcKedPvizTVlqWG9GBSq+BuyWEDazlGaDTC5NGU4QJd666V0yqCBL2oWKPfA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.21.5':
resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
engines: {node: '>=12'}
@@ -1556,6 +2260,12 @@ packages:
cpu: [x64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.25.8':
+ resolution: {integrity: sha512-MmaEXxQRdXNFsRN/KcIimLnSJrk2r5H8v+WVafRWz5xdSVmWLoITZQXcgehI2ZE6gioE6HirAEToM/RvFBeuhw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/linux-arm64@0.21.5':
resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
engines: {node: '>=12'}
@@ -1574,6 +2284,12 @@ packages:
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm64@0.25.8':
+ resolution: {integrity: sha512-WIgg00ARWv/uYLU7lsuDK00d/hHSfES5BzdWAdAig1ioV5kaFNrtK8EqGcUBJhYqotlUByUKz5Qo6u8tt7iD/w==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
'@esbuild/linux-arm@0.21.5':
resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
engines: {node: '>=12'}
@@ -1592,6 +2308,12 @@ packages:
cpu: [arm]
os: [linux]
+ '@esbuild/linux-arm@0.25.8':
+ resolution: {integrity: sha512-FuzEP9BixzZohl1kLf76KEVOsxtIBFwCaLupVuk4eFVnOZfU+Wsn+x5Ryam7nILV2pkq2TqQM9EZPsOBuMC+kg==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-ia32@0.21.5':
resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
engines: {node: '>=12'}
@@ -1610,6 +2332,12 @@ packages:
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-ia32@0.25.8':
+ resolution: {integrity: sha512-A1D9YzRX1i+1AJZuFFUMP1E9fMaYY+GnSQil9Tlw05utlE86EKTUA7RjwHDkEitmLYiFsRd9HwKBPEftNdBfjg==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-loong64@0.21.5':
resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
engines: {node: '>=12'}
@@ -1628,6 +2356,12 @@ packages:
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.25.8':
+ resolution: {integrity: sha512-O7k1J/dwHkY1RMVvglFHl1HzutGEFFZ3kNiDMSOyUrB7WcoHGf96Sh+64nTRT26l3GMbCW01Ekh/ThKM5iI7hQ==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.21.5':
resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
engines: {node: '>=12'}
@@ -1646,6 +2380,12 @@ packages:
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-mips64el@0.25.8':
+ resolution: {integrity: sha512-uv+dqfRazte3BzfMp8PAQXmdGHQt2oC/y2ovwpTteqrMx2lwaksiFZ/bdkXJC19ttTvNXBuWH53zy/aTj1FgGw==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
'@esbuild/linux-ppc64@0.21.5':
resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
engines: {node: '>=12'}
@@ -1664,6 +2404,12 @@ packages:
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-ppc64@0.25.8':
+ resolution: {integrity: sha512-GyG0KcMi1GBavP5JgAkkstMGyMholMDybAf8wF5A70CALlDM2p/f7YFE7H92eDeH/VBtFJA5MT4nRPDGg4JuzQ==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.21.5':
resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
engines: {node: '>=12'}
@@ -1682,6 +2428,12 @@ packages:
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-riscv64@0.25.8':
+ resolution: {integrity: sha512-rAqDYFv3yzMrq7GIcen3XP7TUEG/4LK86LUPMIz6RT8A6pRIDn0sDcvjudVZBiiTcZCY9y2SgYX2lgK3AF+1eg==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-s390x@0.21.5':
resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
engines: {node: '>=12'}
@@ -1700,6 +2452,12 @@ packages:
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-s390x@0.25.8':
+ resolution: {integrity: sha512-Xutvh6VjlbcHpsIIbwY8GVRbwoviWT19tFhgdA7DlenLGC/mbc3lBoVb7jxj9Z+eyGqvcnSyIltYUrkKzWqSvg==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-x64@0.21.5':
resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
engines: {node: '>=12'}
@@ -1718,6 +2476,12 @@ packages:
cpu: [x64]
os: [linux]
+ '@esbuild/linux-x64@0.25.8':
+ resolution: {integrity: sha512-ASFQhgY4ElXh3nDcOMTkQero4b1lgubskNlhIfJrsH5OKZXDpUAKBlNS0Kx81jwOBp+HCeZqmoJuihTv57/jvQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
'@esbuild/netbsd-arm64@0.25.2':
resolution: {integrity: sha512-talAIBoY5M8vHc6EeI2WW9d/CkiO9MQJ0IOWX8hrLhxGbro/vBXJvaQXefW2cP0z0nQVTdQ/eNyGFV1GSKrxfw==}
engines: {node: '>=18'}
@@ -1730,6 +2494,12 @@ packages:
cpu: [arm64]
os: [netbsd]
+ '@esbuild/netbsd-arm64@0.25.8':
+ resolution: {integrity: sha512-d1KfruIeohqAi6SA+gENMuObDbEjn22olAR7egqnkCD9DGBG0wsEARotkLgXDu6c4ncgWTZJtN5vcgxzWRMzcw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [netbsd]
+
'@esbuild/netbsd-x64@0.21.5':
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
engines: {node: '>=12'}
@@ -1748,6 +2518,12 @@ packages:
cpu: [x64]
os: [netbsd]
+ '@esbuild/netbsd-x64@0.25.8':
+ resolution: {integrity: sha512-nVDCkrvx2ua+XQNyfrujIG38+YGyuy2Ru9kKVNyh5jAys6n+l44tTtToqHjino2My8VAY6Lw9H7RI73XFi66Cg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
'@esbuild/openbsd-arm64@0.25.2':
resolution: {integrity: sha512-dcXYOC6NXOqcykeDlwId9kB6OkPUxOEqU+rkrYVqJbK2hagWOMrsTGsMr8+rW02M+d5Op5NNlgMmjzecaRf7Tg==}
engines: {node: '>=18'}
@@ -1760,6 +2536,12 @@ packages:
cpu: [arm64]
os: [openbsd]
+ '@esbuild/openbsd-arm64@0.25.8':
+ resolution: {integrity: sha512-j8HgrDuSJFAujkivSMSfPQSAa5Fxbvk4rgNAS5i3K+r8s1X0p1uOO2Hl2xNsGFppOeHOLAVgYwDVlmxhq5h+SQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
'@esbuild/openbsd-x64@0.21.5':
resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
engines: {node: '>=12'}
@@ -1778,12 +2560,24 @@ packages:
cpu: [x64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.25.8':
+ resolution: {integrity: sha512-1h8MUAwa0VhNCDp6Af0HToI2TJFAn1uqT9Al6DJVzdIBAd21m/G0Yfc77KDM3uF3T/YaOgQq3qTJHPbTOInaIQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
'@esbuild/openharmony-arm64@0.25.6':
resolution: {integrity: sha512-+SqBcAWoB1fYKmpWoQP4pGtx+pUUC//RNYhFdbcSA16617cchuryuhOCRpPsjCblKukAckWsV+aQ3UKT/RMPcA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openharmony]
+ '@esbuild/openharmony-arm64@0.25.8':
+ resolution: {integrity: sha512-r2nVa5SIK9tSWd0kJd9HCffnDHKchTGikb//9c7HX+r+wHYCpQrSgxhlY6KWV1nFo1l4KFbsMlHk+L6fekLsUg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openharmony]
+
'@esbuild/sunos-x64@0.21.5':
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
engines: {node: '>=12'}
@@ -1802,6 +2596,12 @@ packages:
cpu: [x64]
os: [sunos]
+ '@esbuild/sunos-x64@0.25.8':
+ resolution: {integrity: sha512-zUlaP2S12YhQ2UzUfcCuMDHQFJyKABkAjvO5YSndMiIkMimPmxA+BYSBikWgsRpvyxuRnow4nS5NPnf9fpv41w==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
'@esbuild/win32-arm64@0.21.5':
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
engines: {node: '>=12'}
@@ -1820,9 +2620,15 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.21.5':
- resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
- engines: {node: '>=12'}
+ '@esbuild/win32-arm64@0.25.8':
+ resolution: {integrity: sha512-YEGFFWESlPva8hGL+zvj2z/SaK+pH0SwOM0Nc/d+rVnW7GSTFlLBGzZkuSU9kFIGIo8q9X3ucpZhu8PDN5A2sQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@esbuild/win32-ia32@0.21.5':
+ resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
+ engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
@@ -1838,6 +2644,12 @@ packages:
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-ia32@0.25.8':
+ resolution: {integrity: sha512-hiGgGC6KZ5LZz58OL/+qVVoZiuZlUYlYHNAmczOm7bs2oE1XriPFi5ZHHrS8ACpV5EjySrnoCKmcbQMN+ojnHg==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-x64@0.21.5':
resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
engines: {node: '>=12'}
@@ -1856,6 +2668,12 @@ packages:
cpu: [x64]
os: [win32]
+ '@esbuild/win32-x64@0.25.8':
+ resolution: {integrity: sha512-cn3Yr7+OaaZq1c+2pe+8yxC8E144SReCQjN6/2ynubzYjvyqZjTXfQJpAcQpsdJq3My7XADANiYGHoFC69pLQw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
'@eslint-community/eslint-utils@4.4.1':
resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -1870,14 +2688,26 @@ packages:
resolution: {integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/config-array@0.21.0':
+ resolution: {integrity: sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@eslint/config-helpers@0.2.1':
resolution: {integrity: sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/config-helpers@0.3.0':
+ resolution: {integrity: sha512-ViuymvFmcJi04qdZeDc2whTHryouGcDlaxPqarTD0ZE10ISpxGUVZGZDx4w01upyIynL3iu6IXH2bS1NhclQMw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@eslint/core@0.13.0':
resolution: {integrity: sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/core@0.15.1':
+ resolution: {integrity: sha512-bkOp+iumZCCbt1K1CmWf0R9pM5yKpDv+ZXtvSyQpudrI9kuFLp+bM2WOPXImuD/ceQuaa8f5pj93Y7zyECIGNA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@eslint/eslintrc@3.3.1':
resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -1886,6 +2716,10 @@ packages:
resolution: {integrity: sha512-dEIwmjntEx8u3Uvv+kr3PDeeArL8Hw07H9kyYxCjnM9pBjfEhk6uLXSchxxzgiwtRhhzVzqmUSDFBOi1TuZ7qg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/js@9.32.0':
+ resolution: {integrity: sha512-BBpRFZK3eX6uMLKz8WxFOBIFFcGFJ/g8XuwjTHCqHROSIsopI+ddn/d5Cfh36+7+e5edVS8dbSHnBNhrLEX0zg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@eslint/object-schema@2.1.6':
resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -1894,6 +2728,10 @@ packages:
resolution: {integrity: sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/plugin-kit@0.3.4':
+ resolution: {integrity: sha512-Ul5l+lHEcw3L5+k8POx6r74mxEYKG5kOb6Xpy2gCRW6zweT6TEhAf8vhxGgjhqrd/VO/Dirhsb+1hNpD1ue9hw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@fastify/busboy@2.1.1':
resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==}
engines: {node: '>=14'}
@@ -1901,15 +2739,30 @@ packages:
'@floating-ui/core@1.6.9':
resolution: {integrity: sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==}
+ '@floating-ui/core@1.7.3':
+ resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==}
+
'@floating-ui/dom@1.6.13':
resolution: {integrity: sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==}
+ '@floating-ui/dom@1.7.3':
+ resolution: {integrity: sha512-uZA413QEpNuhtb3/iIKoYMSK07keHPYeXF02Zhd6e213j+d1NamLix/mCLxBUDW/Gx52sPH2m+chlUsyaBs/Ag==}
+
'@floating-ui/react-dom@2.1.2':
resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
+ '@floating-ui/react-dom@2.1.5':
+ resolution: {integrity: sha512-HDO/1/1oH9fjj4eLgegrlH3dklZpHtUYYFiVwMUwfGvk9jWDRWqkklA2/NFScknrcNSspbV868WjXORvreDX+Q==}
+ peerDependencies:
+ react: '>=16.8.0'
+ react-dom: '>=16.8.0'
+
+ '@floating-ui/utils@0.2.10':
+ resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
+
'@floating-ui/utils@0.2.9':
resolution: {integrity: sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==}
@@ -1961,6 +2814,24 @@ packages:
'@types/node':
optional: true
+ '@inquirer/checkbox@4.2.0':
+ resolution: {integrity: sha512-fdSw07FLJEU5vbpOPzXo5c6xmMGDzbZE2+niuDHX5N6mc6V0Ebso/q3xiHra4D73+PMsC8MJmcaZKuAAoaQsSA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
+ '@inquirer/confirm@5.1.14':
+ resolution: {integrity: sha512-5yR4IBfe0kXe59r1YCTG8WXkUbl7Z35HK87Sw+WUyGD8wNUx7JvY7laahzeytyE1oLn74bQnL7hstctQxisQ8Q==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
'@inquirer/confirm@5.1.9':
resolution: {integrity: sha512-NgQCnHqFTjF7Ys2fsqK2WtnA8X1kHyInyG+nMIuHowVTIgIuS10T4AznI/PvbqSpJqjCUqNBlKGh1v3bwLFL4w==}
engines: {node: '>=18'}
@@ -1979,6 +2850,15 @@ packages:
'@types/node':
optional: true
+ '@inquirer/core@10.1.15':
+ resolution: {integrity: sha512-8xrp836RZvKkpNbVvgWUlxjT4CraKk2q+I3Ksy+seI2zkcE+y6wNs1BVhgcv8VyImFecUhdQrYLdW32pAjwBdA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
'@inquirer/editor@4.2.10':
resolution: {integrity: sha512-5GVWJ+qeI6BzR6TIInLP9SXhWCEcvgFQYmcRG6d6RIlhFjM5TyG18paTGBgRYyEouvCmzeco47x9zX9tQEofkw==}
engines: {node: '>=18'}
@@ -1988,6 +2868,15 @@ packages:
'@types/node':
optional: true
+ '@inquirer/editor@4.2.15':
+ resolution: {integrity: sha512-wst31XT8DnGOSS4nNJDIklGKnf+8shuauVrWzgKegWUe28zfCftcWZ2vktGdzJgcylWSS2SrDnYUb6alZcwnCQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
'@inquirer/expand@4.0.12':
resolution: {integrity: sha512-jV8QoZE1fC0vPe6TnsOfig+qwu7Iza1pkXoUJ3SroRagrt2hxiL+RbM432YAihNR7m7XnU0HWl/WQ35RIGmXHw==}
engines: {node: '>=18'}
@@ -1997,10 +2886,23 @@ packages:
'@types/node':
optional: true
+ '@inquirer/expand@4.0.17':
+ resolution: {integrity: sha512-PSqy9VmJx/VbE3CT453yOfNa+PykpKg/0SYP7odez1/NWBGuDXgPhp4AeGYYKjhLn5lUUavVS/JbeYMPdH50Mw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
'@inquirer/figures@1.0.11':
resolution: {integrity: sha512-eOg92lvrn/aRUqbxRyvpEWnrvRuTYRifixHkYVpJiygTgVSBIHDqLh0SrMQXkafvULg3ck11V7xvR+zcgvpHFw==}
engines: {node: '>=18'}
+ '@inquirer/figures@1.0.13':
+ resolution: {integrity: sha512-lGPVU3yO9ZNqA7vTYz26jny41lE7yoQansmqdMLBEfqaGsmdg7V3W9mK9Pvb5IL4EVZ9GnSDGMO/cJXud5dMaw==}
+ engines: {node: '>=18'}
+
'@inquirer/input@4.1.9':
resolution: {integrity: sha512-mshNG24Ij5KqsQtOZMgj5TwEjIf+F2HOESk6bjMwGWgcH5UBe8UoljwzNFHqdMbGYbgAf6v2wU/X9CAdKJzgOA==}
engines: {node: '>=18'}
@@ -2010,6 +2912,15 @@ packages:
'@types/node':
optional: true
+ '@inquirer/input@4.2.1':
+ resolution: {integrity: sha512-tVC+O1rBl0lJpoUZv4xY+WGWY8V5b0zxU1XDsMsIHYregdh7bN5X5QnIONNBAl0K765FYlAfNHS2Bhn7SSOVow==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
'@inquirer/number@3.0.12':
resolution: {integrity: sha512-7HRFHxbPCA4e4jMxTQglHJwP+v/kpFsCf2szzfBHy98Wlc3L08HL76UDiA87TOdX5fwj2HMOLWqRWv9Pnn+Z5Q==}
engines: {node: '>=18'}
@@ -2019,6 +2930,15 @@ packages:
'@types/node':
optional: true
+ '@inquirer/number@3.0.17':
+ resolution: {integrity: sha512-GcvGHkyIgfZgVnnimURdOueMk0CztycfC8NZTiIY9arIAkeOgt6zG57G+7vC59Jns3UX27LMkPKnKWAOF5xEYg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
'@inquirer/password@4.0.12':
resolution: {integrity: sha512-FlOB0zvuELPEbnBYiPaOdJIaDzb2PmJ7ghi/SVwIHDDSQ2K4opGBkF+5kXOg6ucrtSUQdLhVVY5tycH0j0l+0g==}
engines: {node: '>=18'}
@@ -2028,6 +2948,15 @@ packages:
'@types/node':
optional: true
+ '@inquirer/password@4.0.17':
+ resolution: {integrity: sha512-DJolTnNeZ00E1+1TW+8614F7rOJJCM4y4BAGQ3Gq6kQIG+OJ4zr3GLjIjVVJCbKsk2jmkmv6v2kQuN/vriHdZA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
'@inquirer/prompts@7.5.0':
resolution: {integrity: sha512-tk8Bx7l5AX/CR0sVfGj3Xg6v7cYlFBkEahH+EgBB+cZib6Fc83dwerTbzj7f2+qKckjIUGsviWRI1d7lx6nqQA==}
engines: {node: '>=18'}
@@ -2037,6 +2966,15 @@ packages:
'@types/node':
optional: true
+ '@inquirer/prompts@7.8.0':
+ resolution: {integrity: sha512-JHwGbQ6wjf1dxxnalDYpZwZxUEosT+6CPGD9Zh4sm9WXdtUp9XODCQD3NjSTmu+0OAyxWXNOqf0spjIymJa2Tw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
'@inquirer/rawlist@4.1.0':
resolution: {integrity: sha512-6ob45Oh9pXmfprKqUiEeMz/tjtVTFQTgDDz1xAMKMrIvyrYjAmRbQZjMJfsictlL4phgjLhdLu27IkHNnNjB7g==}
engines: {node: '>=18'}
@@ -2046,6 +2984,15 @@ packages:
'@types/node':
optional: true
+ '@inquirer/rawlist@4.1.5':
+ resolution: {integrity: sha512-R5qMyGJqtDdi4Ht521iAkNqyB6p2UPuZUbMifakg1sWtu24gc2Z8CJuw8rP081OckNDMgtDCuLe42Q2Kr3BolA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
'@inquirer/search@3.0.12':
resolution: {integrity: sha512-H/kDJA3kNlnNIjB8YsaXoQI0Qccgf0Na14K1h8ExWhNmUg2E941dyFPrZeugihEa9AZNW5NdsD/NcvUME83OPQ==}
engines: {node: '>=18'}
@@ -2055,6 +3002,15 @@ packages:
'@types/node':
optional: true
+ '@inquirer/search@3.1.0':
+ resolution: {integrity: sha512-PMk1+O/WBcYJDq2H7foV0aAZSmDdkzZB9Mw2v/DmONRJopwA/128cS9M/TXWLKKdEQKZnKwBzqu2G4x/2Nqx8Q==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
'@inquirer/select@4.2.0':
resolution: {integrity: sha512-KkXQ4aSySWimpV4V/TUJWdB3tdfENZUU765GjOIZ0uPwdbGIG6jrxD4dDf1w68uP+DVtfNhr1A92B+0mbTZ8FA==}
engines: {node: '>=18'}
@@ -2064,6 +3020,15 @@ packages:
'@types/node':
optional: true
+ '@inquirer/select@4.3.1':
+ resolution: {integrity: sha512-Gfl/5sqOF5vS/LIrSndFgOh7jgoe0UXEizDqahFRkq5aJBLegZ6WjuMh/hVEJwlFQjyLq1z9fRtvUMkb7jM1LA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
'@inquirer/type@3.0.6':
resolution: {integrity: sha512-/mKVCtVpyBu3IDarv0G+59KC4stsD5mDsGpYh+GKs1NZT88Jh52+cuoA1AtLk2Q0r/quNl+1cSUyLRHBFeD0XA==}
engines: {node: '>=18'}
@@ -2073,6 +3038,15 @@ packages:
'@types/node':
optional: true
+ '@inquirer/type@3.0.8':
+ resolution: {integrity: sha512-lg9Whz8onIHRthWaN1Q9EGLa/0LFJjyM8mEUbL1eTi6yMGvBf8gvyDLtxSXztQsxMvhxxNpJYrwa1YHdq+w4Jw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
'@isaacs/cliui@8.0.2':
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
@@ -2115,6 +3089,21 @@ packages:
'@juggle/resize-observer@3.4.0':
resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
+ '@lezer/common@1.2.3':
+ resolution: {integrity: sha512-w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA==}
+
+ '@lezer/highlight@1.2.1':
+ resolution: {integrity: sha512-Z5duk4RN/3zuVO7Jq0pGLJ3qynpxUVsh7IbUbGj88+uV2ApSAn6kWg2au3iJb+0Zi7kKtqffIESgNcRXWZWmSA==}
+
+ '@lezer/javascript@1.5.1':
+ resolution: {integrity: sha512-ATOImjeVJuvgm3JQ/bpo2Tmv55HSScE2MTPnKRMRIPx2cLhHGyX2VnqpHhtIV1tVzIjZDbcWQm+NCTF40ggZVw==}
+
+ '@lezer/lr@1.4.2':
+ resolution: {integrity: sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==}
+
+ '@marijn/find-cluster-break@1.0.2':
+ resolution: {integrity: sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g==}
+
'@microsoft/api-extractor-model@7.30.5':
resolution: {integrity: sha512-0ic4rcbcDZHz833RaTZWTGu+NpNgrxVNjVaor0ZDUymfDFzjA/Uuk8hYziIUIOEOSTfmIQqyzVwlzxZxPe7tOA==}
@@ -2135,6 +3124,31 @@ packages:
'@microsoft/tsdoc@0.15.1':
resolution: {integrity: sha512-4aErSrCR/On/e5G2hDP0wjooqDdauzEbIq8hIkIe5pXV0rtWJZvdCEKL0ykZxex+IxIwBp0eGeV48hQN07dXtw==}
+ '@mux/mux-data-google-ima@0.2.8':
+ resolution: {integrity: sha512-0ZEkHdcZ6bS8QtcjFcoJeZxJTpX7qRIledf4q1trMWPznugvtajCjCM2kieK/pzkZj1JM6liDRFs1PJSfVUs2A==}
+
+ '@mux/mux-player-react@3.5.1':
+ resolution: {integrity: sha512-tm32fSo9IBA/J8AD99bp64CyBkmv8jtsn4RhSHgNufvfWJUMBFJ7cfXgLsxiG/VdegpfBLRatMC5YiuZjoZ6yg==}
+ peerDependencies:
+ '@types/react': ^17.0.0 || ^17.0.0-0 || ^18 || ^18.0.0-0 || ^19 || ^19.0.0-0
+ '@types/react-dom': '*'
+ react: ^17.0.2 || ^17.0.0-0 || ^18 || ^18.0.0-0 || ^19 || ^19.0.0-0
+ react-dom: ^17.0.2 || ^17.0.2-0 || ^18 || ^18.0.0-0 || ^19 || ^19.0.0-0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@mux/mux-player@3.5.1':
+ resolution: {integrity: sha512-PSi3mPb4LrEh4i3xUdodaEvMrbbpKbL2yaewRjsqBr3PFb+hd/Dp1KtyaAnXaBCHl09hDURUSrqYpg1cZvwDiQ==}
+
+ '@mux/mux-video@0.26.1':
+ resolution: {integrity: sha512-gkMdBAgNlB4+krANZHkQFzYWjWeNsJz69y1/hnPtmNQnpvW+O7oc71OffcZrbblyibSxWMQ6MQpYmBVjXlp6sA==}
+
+ '@mux/playback-core@0.30.1':
+ resolution: {integrity: sha512-rnO1NE9xHDyzbAkmE6ygJYcD7cyyMt7xXqWTykxlceaoSXLjUqgp42HDio7Lcidto4x/O4FIa7ztjV2aCBCXgQ==}
+
'@napi-rs/wasm-runtime@0.2.12':
resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
@@ -2161,10 +3175,18 @@ packages:
resolution: {integrity: sha512-lIzHY+JMP6evrS5E/sGijNnwrCoNtGy8703jWXcMuPOYKiFhWoAqnIm1BGgoRgmxczkbSfRsHUL/lwsSgh74Lw==}
engines: {node: '>=18.0.0'}
+ '@oclif/core@4.5.2':
+ resolution: {integrity: sha512-eQcKyrEcDYeZJKu4vUWiu0ii/1Gfev6GF4FsLSgNez5/+aQyAUCjg3ZWlurf491WiYZTXCWyKAxyPWk8DKv2MA==}
+ engines: {node: '>=18.0.0'}
+
'@oclif/plugin-help@6.2.27':
resolution: {integrity: sha512-RWSWtCFVObRmCwgxVOye3lsYbPHTnB7G4He5LEAg2tf600Sil5yXEOL/ULx1TqL/XOQxKqRvmLn/rLQOMT85YA==}
engines: {node: '>=18.0.0'}
+ '@oclif/plugin-help@6.2.32':
+ resolution: {integrity: sha512-LrmMdo9EMJciOvF8UurdoTcTMymv5npKtxMAyonZvhSvGR8YwCKnuHIh00+SO2mNtGOYam7f4xHnUmj2qmanyA==}
+ engines: {node: '>=18.0.0'}
+
'@octokit/auth-token@4.0.0':
resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==}
engines: {node: '>= 18'}
@@ -2259,24 +3281,48 @@ packages:
resolution: {integrity: sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==}
engines: {node: '>=12'}
- '@portabletext/block-tools@1.1.33':
- resolution: {integrity: sha512-6D7nq5ExziruZkPje2ZR1OlGIxAXhHM9FVVHNWtZKwBJv4gddbNhXxuTrP9ewN3ch8KZy5yW754BIQVVB6V/+w==}
+ '@portabletext/block-tools@1.1.38':
+ resolution: {integrity: sha512-Mm+8GrE0iwfUCqF5lJ8Xbt0BIRo7qdbILtK4mldKiHjliG7gX78u/qimAFPlKuozZO0Vu21beDVnEI+tZ4zbXw==}
peerDependencies:
- '@sanity/types': ^3.95.0
+ '@sanity/types': ^3.98.0 || ^4.0.0-0
'@types/react': 18 || 19
- '@portabletext/editor@1.55.8':
- resolution: {integrity: sha512-mBZArqmSOnphNJ9XDY3yPBUsBLujG8du29nHG5uF3oCodIGNZiu0/jpa32iCB+2IaTQdeP2DuCm1eCQ9oIV6Nw==}
+ '@portabletext/block-tools@2.0.5':
+ resolution: {integrity: sha512-BAeHP3TA93CMguKFSzRVkbX3ZMXlTuVLJF70vuj4Cvts6E1keKQyKb/TTs2oPw/eNUv51qG0NVyrBSsfdUVqGQ==}
+ peerDependencies:
+ '@sanity/types': ^4.2.0
+ '@types/react': ^18.3 || ^19
+
+ '@portabletext/editor@1.58.0':
+ resolution: {integrity: sha512-qlqx0VPr6VMAZR8w3v4YJTbds/g6QannBKwcuITpfv19rL0DqP/zxFS/2dtygv7kpjyWsrhgzq1zveY4qTDrVw==}
engines: {node: '>=18'}
peerDependencies:
- '@sanity/schema': ^3.95.0
- '@sanity/types': ^3.95.0
+ '@sanity/schema': ^3.98.0 || ^4.0.0-0
+ '@sanity/types': ^3.98.0 || ^4.0.0-0
react: ^16.9 || ^17 || ^18 || ^19
rxjs: ^7.8.2
+ '@portabletext/editor@2.1.7':
+ resolution: {integrity: sha512-SS3q7+RddVMnPcpVzVPVpsiKbN1pCEB/qrfcIYQjFCHmeciM8n0sd/pYumGvcgufDBHfpZAy6u0rR9TFIPtplg==}
+ engines: {node: '>=20.19'}
+ peerDependencies:
+ '@sanity/schema': ^4.2.0
+ '@sanity/types': ^4.2.0
+ react: ^18.3 || ^19
+ rxjs: ^7.8.2
+
+ '@portabletext/keyboard-shortcuts@1.1.0':
+ resolution: {integrity: sha512-krhhFXLdoSNRxPZVygdyKqNNXRGbjLjkmP7HKM/pweDlgjpIAaw9vsOtTkEdS+eFuWYQ/suj4Py2aOyAwrjKpA==}
+
+ '@portabletext/keyboard-shortcuts@1.1.1':
+ resolution: {integrity: sha512-wCoH9+D9wci5sCSAsjJRnzV769e/xYw/ZjbtOmPGncE3EcWa/7+qP8kYFRj/ptsORJw3jRZkhXiUwYkD5jaC2w==}
+
'@portabletext/patches@1.1.5':
resolution: {integrity: sha512-XO9STk1ALQFGvW+gFoY3Ay5ODdr26iRg6ajKHPDanKLko5blPmfcYBpAlfOjFVxvOdeaPmoNuccwlf/0zIp/lA==}
+ '@portabletext/patches@1.1.6':
+ resolution: {integrity: sha512-1cjL+HIZ85KxAWcFD6M6gKPAaEm1SjqvRrltBreaTlWS8tebghxJAKW47doGzwQzB1I2sG069CoGqgLcRsT8OA==}
+
'@portabletext/react@3.2.1':
resolution: {integrity: sha512-RyFLk6u2q6ZyABTdOk+xoNR2Tq/4fcQFEWayNk4Kbd3gHpUUTabqOrDMChcmG6C7YVLSpwIEBwHoBVcy4vK/hA==}
engines: {node: ^14.13.1 || >=16.0.0}
@@ -2300,6 +3346,12 @@ packages:
peerDependencies:
react: ^18 || ^19
+ '@rexxars/react-split-pane@1.0.0':
+ resolution: {integrity: sha512-Ewl8ugA2VQd+idzcg65WFbYh/oCLPOFjeDKpebexPgFDDX8ZwsHZWy5jNwiIWI8txDidVmRP98lsnmBHlIywWA==}
+ peerDependencies:
+ react: ^18 || ^19
+ react-dom: ^18 || ^19
+
'@rolldown/binding-android-arm64@1.0.0-beta.27':
resolution: {integrity: sha512-IJL3efUJmvb5MfTEi7bGK4jq3ZFAzVbSy+vmul0DcdrglUd81Tfyy7Zzq2oM0tUgmACG32d8Jz/ykbpbf+3C5A==}
cpu: [arm64]
@@ -2463,8 +3515,13 @@ packages:
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm-eabi@4.45.1':
- resolution: {integrity: sha512-NEySIFvMY0ZQO+utJkgoMiCAjMrGvnbDLHvcmlA33UXJpYBCvlBEbMMtV837uCkS+plG2umfhn0T5mMAxGrlRA==}
+ '@rollup/rollup-android-arm-eabi@4.45.3':
+ resolution: {integrity: sha512-8oQkCTve4H4B4JpmD2FV7fV2ZPTxJHN//bRhCqPUU8v6c5APlxteAXyc7BFaEb4aGpUzrPLU4PoAcGhwmRzZTA==}
+ cpu: [arm]
+ os: [android]
+
+ '@rollup/rollup-android-arm-eabi@4.46.2':
+ resolution: {integrity: sha512-Zj3Hl6sN34xJtMv7Anwb5Gu01yujyE/cLBDB2gnHTAHaWS1Z38L7kuSG+oAh0giZMqG060f/YBStXtMH6FvPMA==}
cpu: [arm]
os: [android]
@@ -2473,8 +3530,13 @@ packages:
cpu: [arm64]
os: [android]
- '@rollup/rollup-android-arm64@4.45.1':
- resolution: {integrity: sha512-ujQ+sMXJkg4LRJaYreaVx7Z/VMgBBd89wGS4qMrdtfUFZ+TSY5Rs9asgjitLwzeIbhwdEhyj29zhst3L1lKsRQ==}
+ '@rollup/rollup-android-arm64@4.45.3':
+ resolution: {integrity: sha512-StOsmdXHU2hx3UFTTs6yYxCSwSIgLsfjUBICXyWj625M32OOjakXlaZuGKL+jA3Nvv35+hMxrm/64eCoT07SYQ==}
+ cpu: [arm64]
+ os: [android]
+
+ '@rollup/rollup-android-arm64@4.46.2':
+ resolution: {integrity: sha512-nTeCWY83kN64oQ5MGz3CgtPx8NSOhC5lWtsjTs+8JAJNLcP3QbLCtDDgUKQc/Ro/frpMq4SHUaHN6AMltcEoLQ==}
cpu: [arm64]
os: [android]
@@ -2483,8 +3545,13 @@ packages:
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-arm64@4.45.1':
- resolution: {integrity: sha512-FSncqHvqTm3lC6Y13xncsdOYfxGSLnP+73k815EfNmpewPs+EyM49haPS105Rh4aF5mJKywk9X0ogzLXZzN9lA==}
+ '@rollup/rollup-darwin-arm64@4.45.3':
+ resolution: {integrity: sha512-6CfLF3eqKhCdhK0GUnR5ZS99OFz+dtOeB/uePznLKxjCsk5QjT/V0eSEBb4vj+o/ri3i35MseSEQHCLLAgClVw==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@rollup/rollup-darwin-arm64@4.46.2':
+ resolution: {integrity: sha512-HV7bW2Fb/F5KPdM/9bApunQh68YVDU8sO8BvcW9OngQVN3HHHkw99wFupuUJfGR9pYLLAjcAOA6iO+evsbBaPQ==}
cpu: [arm64]
os: [darwin]
@@ -2493,8 +3560,13 @@ packages:
cpu: [x64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.45.1':
- resolution: {integrity: sha512-2/vVn/husP5XI7Fsf/RlhDaQJ7x9zjvC81anIVbr4b/f0xtSmXQTFcGIQ/B1cXIYM6h2nAhJkdMHTnD7OtQ9Og==}
+ '@rollup/rollup-darwin-x64@4.45.3':
+ resolution: {integrity: sha512-QLWyWmAJG9elNTNLdcSXUT/M+J7DhEmvs1XPHYcgYkse3UHf9iWTJ+yTPlKMIetiQnNi+cNp+gY4gvjDpREfKw==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@rollup/rollup-darwin-x64@4.46.2':
+ resolution: {integrity: sha512-SSj8TlYV5nJixSsm/y3QXfhspSiLYP11zpfwp6G/YDXctf3Xkdnk4woJIF5VQe0of2OjzTt8EsxnJDCdHd2xMA==}
cpu: [x64]
os: [darwin]
@@ -2503,8 +3575,13 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-arm64@4.45.1':
- resolution: {integrity: sha512-4g1kaDxQItZsrkVTdYQ0bxu4ZIQ32cotoQbmsAnW1jAE4XCMbcBPDirX5fyUzdhVCKgPcrwWuucI8yrVRBw2+g==}
+ '@rollup/rollup-freebsd-arm64@4.45.3':
+ resolution: {integrity: sha512-ZOvBq+5nL0yrZIEo1eq6r7MPvkJ8kC1XATS/yHvcq3WbDNKNKBQ1uIF4hicyzDMoJt72G+sn1nKsFXpifZyRDA==}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@rollup/rollup-freebsd-arm64@4.46.2':
+ resolution: {integrity: sha512-ZyrsG4TIT9xnOlLsSSi9w/X29tCbK1yegE49RYm3tu3wF1L/B6LVMqnEWyDB26d9Ecx9zrmXCiPmIabVuLmNSg==}
cpu: [arm64]
os: [freebsd]
@@ -2513,8 +3590,13 @@ packages:
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.45.1':
- resolution: {integrity: sha512-L/6JsfiL74i3uK1Ti2ZFSNsp5NMiM4/kbbGEcOCps99aZx3g8SJMO1/9Y0n/qKlWZfn6sScf98lEOUe2mBvW9A==}
+ '@rollup/rollup-freebsd-x64@4.45.3':
+ resolution: {integrity: sha512-AYvGR07wecEnyYSovyJ71pTOulbNvsrpRpK6i/IM1b0UGX1vFx51afYuPYPxnvE9aCl5xPnhQicEvdIMxClRgQ==}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rollup/rollup-freebsd-x64@4.46.2':
+ resolution: {integrity: sha512-pCgHFoOECwVCJ5GFq8+gR8SBKnMO+xe5UEqbemxBpCKYQddRQMgomv1104RnLSg7nNvgKy05sLsY51+OVRyiVw==}
cpu: [x64]
os: [freebsd]
@@ -2523,8 +3605,13 @@ packages:
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-gnueabihf@4.45.1':
- resolution: {integrity: sha512-RkdOTu2jK7brlu+ZwjMIZfdV2sSYHK2qR08FUWcIoqJC2eywHbXr0L8T/pONFwkGukQqERDheaGTeedG+rra6Q==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.45.3':
+ resolution: {integrity: sha512-Yx8Cp38tfRRToVLuIWzBHV25/QPzpUreOPIiUuNV7KahNPurYg2pYQ4l7aYnvpvklO1riX4643bXLvDsYSBIrA==}
+ cpu: [arm]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.46.2':
+ resolution: {integrity: sha512-EtP8aquZ0xQg0ETFcxUbU71MZlHaw9MChwrQzatiE8U/bvi5uv/oChExXC4mWhjiqK7azGJBqU0tt5H123SzVA==}
cpu: [arm]
os: [linux]
@@ -2533,8 +3620,13 @@ packages:
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.45.1':
- resolution: {integrity: sha512-3kJ8pgfBt6CIIr1o+HQA7OZ9mp/zDk3ctekGl9qn/pRBgrRgfwiffaUmqioUGN9hv0OHv2gxmvdKOkARCtRb8Q==}
+ '@rollup/rollup-linux-arm-musleabihf@4.45.3':
+ resolution: {integrity: sha512-4dIYRNxlXGDKnO6qgcda6LxnObPO6r1OBU9HG8F9pAnHHLtfbiOqCzDvkeHknx+5mfFVH4tWOl+h+cHylwsPWA==}
+ cpu: [arm]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm-musleabihf@4.46.2':
+ resolution: {integrity: sha512-qO7F7U3u1nfxYRPM8HqFtLd+raev2K137dsV08q/LRKRLEc7RsiDWihUnrINdsWQxPR9jqZ8DIIZ1zJJAm5PjQ==}
cpu: [arm]
os: [linux]
@@ -2543,8 +3635,13 @@ packages:
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.45.1':
- resolution: {integrity: sha512-k3dOKCfIVixWjG7OXTCOmDfJj3vbdhN0QYEqB+OuGArOChek22hn7Uy5A/gTDNAcCy5v2YcXRJ/Qcnm4/ma1xw==}
+ '@rollup/rollup-linux-arm64-gnu@4.45.3':
+ resolution: {integrity: sha512-M6uVlWKmhLN7LguLDu6396K1W5IBlAaRonjlHQgc3s4dOGceu0FeBuvbXiUPYvup/6b5Ln7IEX7XNm68DN4vrg==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm64-gnu@4.46.2':
+ resolution: {integrity: sha512-3dRaqLfcOXYsfvw5xMrxAk9Lb1f395gkoBYzSFcc/scgRFptRXL9DOaDpMiehf9CO8ZDRJW2z45b6fpU5nwjng==}
cpu: [arm64]
os: [linux]
@@ -2553,8 +3650,13 @@ packages:
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.45.1':
- resolution: {integrity: sha512-PmI1vxQetnM58ZmDFl9/Uk2lpBBby6B6rF4muJc65uZbxCs0EA7hhKCk2PKlmZKuyVSHAyIw3+/SiuMLxKxWog==}
+ '@rollup/rollup-linux-arm64-musl@4.45.3':
+ resolution: {integrity: sha512-emaYiOTQJUd6fC9a6jcw9zIWtzaUiuBC+vomggaM4In2iOra/lA6IMHlqZqQZr08NYXrOPMVigreLMeSAwv3Uw==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm64-musl@4.46.2':
+ resolution: {integrity: sha512-fhHFTutA7SM+IrR6lIfiHskxmpmPTJUXpWIsBXpeEwNgZzZZSg/q4i6FU4J8qOGyJ0TR+wXBwx/L7Ho9z0+uDg==}
cpu: [arm64]
os: [linux]
@@ -2563,8 +3665,13 @@ packages:
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.45.1':
- resolution: {integrity: sha512-9UmI0VzGmNJ28ibHW2GpE2nF0PBQqsyiS4kcJ5vK+wuwGnV5RlqdczVocDSUfGX/Na7/XINRVoUgJyFIgipoRg==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.45.3':
+ resolution: {integrity: sha512-3P77T5AQ4UfVRJSrTKLiUZDJ6XsxeP80027bp6mOFh8sevSD038mYuIYFiUtrSJxxgFb+NgRJFF9oIa0rlUsmg==}
+ cpu: [loong64]
+ os: [linux]
+
+ '@rollup/rollup-linux-loongarch64-gnu@4.46.2':
+ resolution: {integrity: sha512-i7wfGFXu8x4+FRqPymzjD+Hyav8l95UIZ773j7J7zRYc3Xsxy2wIn4x+llpunexXe6laaO72iEjeeGyUFmjKeA==}
cpu: [loong64]
os: [linux]
@@ -2573,8 +3680,13 @@ packages:
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.45.1':
- resolution: {integrity: sha512-7nR2KY8oEOUTD3pBAxIBBbZr0U7U+R9HDTPNy+5nVVHDXI4ikYniH1oxQz9VoB5PbBU1CZuDGHkLJkd3zLMWsg==}
+ '@rollup/rollup-linux-ppc64-gnu@4.45.3':
+ resolution: {integrity: sha512-/VPH3ZVeSlmCBPhZdx/+4dMXDjaGMhDsWOBo9EwSkGbw2+OAqaslL53Ao2OqCxR0GgYjmmssJ+OoG+qYGE7IBg==}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@rollup/rollup-linux-ppc64-gnu@4.46.2':
+ resolution: {integrity: sha512-B/l0dFcHVUnqcGZWKcWBSV2PF01YUt0Rvlurci5P+neqY/yMKchGU8ullZvIv5e8Y1C6wOn+U03mrDylP5q9Yw==}
cpu: [ppc64]
os: [linux]
@@ -2583,8 +3695,13 @@ packages:
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.45.1':
- resolution: {integrity: sha512-nlcl3jgUultKROfZijKjRQLUu9Ma0PeNv/VFHkZiKbXTBQXhpytS8CIj5/NfBeECZtY2FJQubm6ltIxm/ftxpw==}
+ '@rollup/rollup-linux-riscv64-gnu@4.45.3':
+ resolution: {integrity: sha512-Hs5if0PjROl1MGMmZX3xMAIfqcGxQE2SJWUr/CpDQsOQn43Wq4IvXXxUMWtiY/BrzdqCCJlRgJ5DKxzS3qWkCw==}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@rollup/rollup-linux-riscv64-gnu@4.46.2':
+ resolution: {integrity: sha512-32k4ENb5ygtkMwPMucAb8MtV8olkPT03oiTxJbgkJa7lJ7dZMr0GCFJlyvy+K8iq7F/iuOr41ZdUHaOiqyR3iQ==}
cpu: [riscv64]
os: [linux]
@@ -2593,8 +3710,13 @@ packages:
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-riscv64-musl@4.45.1':
- resolution: {integrity: sha512-HJV65KLS51rW0VY6rvZkiieiBnurSzpzore1bMKAhunQiECPuxsROvyeaot/tcK3A3aGnI+qTHqisrpSgQrpgA==}
+ '@rollup/rollup-linux-riscv64-musl@4.45.3':
+ resolution: {integrity: sha512-Qm0WOwh3Lk388+HJFl1ILGbd2iOoQf6yl4fdGqOjBzEA+5JYbLcwd+sGsZjs5pkt8Cr/1G42EiXmlRp9ZeTvFA==}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@rollup/rollup-linux-riscv64-musl@4.46.2':
+ resolution: {integrity: sha512-t5B2loThlFEauloaQkZg9gxV05BYeITLvLkWOkRXogP4qHXLkWSbSHKM9S6H1schf/0YGP/qNKtiISlxvfmmZw==}
cpu: [riscv64]
os: [linux]
@@ -2603,8 +3725,13 @@ packages:
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.45.1':
- resolution: {integrity: sha512-NITBOCv3Qqc6hhwFt7jLV78VEO/il4YcBzoMGGNxznLgRQf43VQDae0aAzKiBeEPIxnDrACiMgbqjuihx08OOw==}
+ '@rollup/rollup-linux-s390x-gnu@4.45.3':
+ resolution: {integrity: sha512-VJdknTaYw+TqXzlh9c7vaVMh/fV2sU8Khfk4a9vAdYXJawpjf6z3U1k7vDWx2IQ9ZOPoOPxgVpDfYOYhxD7QUA==}
+ cpu: [s390x]
+ os: [linux]
+
+ '@rollup/rollup-linux-s390x-gnu@4.46.2':
+ resolution: {integrity: sha512-YKjekwTEKgbB7n17gmODSmJVUIvj8CX7q5442/CK80L8nqOUbMtf8b01QkG3jOqyr1rotrAnW6B/qiHwfcuWQA==}
cpu: [s390x]
os: [linux]
@@ -2613,8 +3740,13 @@ packages:
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.45.1':
- resolution: {integrity: sha512-+E/lYl6qu1zqgPEnTrs4WysQtvc/Sh4fC2nByfFExqgYrqkKWp1tWIbe+ELhixnenSpBbLXNi6vbEEJ8M7fiHw==}
+ '@rollup/rollup-linux-x64-gnu@4.45.3':
+ resolution: {integrity: sha512-SUDXU5YabLAMl86FpupSQQEWzVG8X0HM+Q/famnJusbPiUgQnTGuSxtxg4UAYgv1ZmRV1nioYYXsgtSokU/7+Q==}
+ cpu: [x64]
+ os: [linux]
+
+ '@rollup/rollup-linux-x64-gnu@4.46.2':
+ resolution: {integrity: sha512-Jj5a9RUoe5ra+MEyERkDKLwTXVu6s3aACP51nkfnK9wJTraCC8IMe3snOfALkrjTYd2G1ViE1hICj0fZ7ALBPA==}
cpu: [x64]
os: [linux]
@@ -2623,8 +3755,13 @@ packages:
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.45.1':
- resolution: {integrity: sha512-a6WIAp89p3kpNoYStITT9RbTbTnqarU7D8N8F2CV+4Cl9fwCOZraLVuVFvlpsW0SbIiYtEnhCZBPLoNdRkjQFw==}
+ '@rollup/rollup-linux-x64-musl@4.45.3':
+ resolution: {integrity: sha512-ezmqknOUFgZMN6wW+Avlo4sXF3Frswd+ncrwMz4duyZ5Eqd+dAYgJ+A1MY+12LNZ7XDhCiijJceueYvtnzdviw==}
+ cpu: [x64]
+ os: [linux]
+
+ '@rollup/rollup-linux-x64-musl@4.46.2':
+ resolution: {integrity: sha512-7kX69DIrBeD7yNp4A5b81izs8BqoZkCIaxQaOpumcJ1S/kmqNFjPhDu1LHeVXv0SexfHQv5cqHsxLOjETuqDuA==}
cpu: [x64]
os: [linux]
@@ -2633,8 +3770,13 @@ packages:
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-arm64-msvc@4.45.1':
- resolution: {integrity: sha512-T5Bi/NS3fQiJeYdGvRpTAP5P02kqSOpqiopwhj0uaXB6nzs5JVi2XMJb18JUSKhCOX8+UE1UKQufyD6Or48dJg==}
+ '@rollup/rollup-win32-arm64-msvc@4.45.3':
+ resolution: {integrity: sha512-1YfXoUEE++gIW66zNB9Twd0Ua5xCXpfYppFUxVT/Io5ZT3fO6Se+C/Jvmh3usaIHHyi53t3kpfjydO2GAy5eBA==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@rollup/rollup-win32-arm64-msvc@4.46.2':
+ resolution: {integrity: sha512-wiJWMIpeaak/jsbaq2HMh/rzZxHVW1rU6coyeNNpMwk5isiPjSTx0a4YLSlYDwBH/WBvLz+EtsNqQScZTLJy3g==}
cpu: [arm64]
os: [win32]
@@ -2643,8 +3785,13 @@ packages:
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.45.1':
- resolution: {integrity: sha512-lxV2Pako3ujjuUe9jiU3/s7KSrDfH6IgTSQOnDWr9aJ92YsFd7EurmClK0ly/t8dzMkDtd04g60WX6yl0sGfdw==}
+ '@rollup/rollup-win32-ia32-msvc@4.45.3':
+ resolution: {integrity: sha512-Iok2YA3PvC163rVZf2Zy81A0g88IUcSPeU5pOilcbICXre2EP1mxn1Db/l09Z/SK1vdSLtpJXAnwGuMOyf5O9g==}
+ cpu: [ia32]
+ os: [win32]
+
+ '@rollup/rollup-win32-ia32-msvc@4.46.2':
+ resolution: {integrity: sha512-gBgaUDESVzMgWZhcyjfs9QFK16D8K6QZpwAaVNJxYDLHWayOta4ZMjGm/vsAEy3hvlS2GosVFlBlP9/Wb85DqQ==}
cpu: [ia32]
os: [win32]
@@ -2653,8 +3800,13 @@ packages:
cpu: [x64]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.45.1':
- resolution: {integrity: sha512-M/fKi4sasCdM8i0aWJjCSFm2qEnYRR8AMLG2kxp6wD13+tMGA4Z1tVAuHkNRjud5SW2EM3naLuK35w9twvf6aA==}
+ '@rollup/rollup-win32-x64-msvc@4.45.3':
+ resolution: {integrity: sha512-HwHCH5GQTOeGYP5wBEBXFVhfQecwRl24Rugoqhh8YwGarsU09bHhOKuqlyW4ZolZCan3eTUax7UJbGSmKSM51A==}
+ cpu: [x64]
+ os: [win32]
+
+ '@rollup/rollup-win32-x64-msvc@4.46.2':
+ resolution: {integrity: sha512-CvUo2ixeIQGtF6WvuB87XWqPQkoFAFqW+HUo/WzHwuHDvIwZCtjdWXoYCcr06iKGydiqTclC4jU/TNObC/xKZg==}
cpu: [x64]
os: [win32]
@@ -2712,16 +3864,21 @@ packages:
'@sanity/browserslist-config@1.0.5':
resolution: {integrity: sha512-so+/UtCge8t1jq509hH0otbbptRz0zM/Aa0dh5MhMD7HGT6n2igWIL2VWH/9QR9e77Jn3dJsjz23mW1WCxT+sg==}
- '@sanity/cli@3.87.0':
- resolution: {integrity: sha512-1s03U80I2cfsrbppR/hIDj/NpqttTFy/+TzJz1xrEmLFqaeXdRefRHxmhNrCuPQ3yys8wA4sz5vSqFH3roUZ3Q==}
+ '@sanity/cli@3.88.1-typegen-experimental.0':
+ resolution: {integrity: sha512-mxLkAtlnF+bpgqegyJReauR2HyCWH+MMtICYQEnO+/nEQJ2yRLcespcOCFF501EKjkXmus7UYmMxLBmip9JpUg==}
engines: {node: '>=18'}
hasBin: true
- '@sanity/cli@3.88.1-typegen-experimental.0':
- resolution: {integrity: sha512-mxLkAtlnF+bpgqegyJReauR2HyCWH+MMtICYQEnO+/nEQJ2yRLcespcOCFF501EKjkXmus7UYmMxLBmip9JpUg==}
+ '@sanity/cli@3.99.0':
+ resolution: {integrity: sha512-4Davi8d5WCs6vK7095KW/8B1Y8VjEwIdCQR7M+MuiUiBGO1oI3unpVP4SsDsQSw51j3qt54AchM0K0Po8DzTdg==}
engines: {node: '>=18'}
hasBin: true
+ '@sanity/cli@4.3.0':
+ resolution: {integrity: sha512-nMhueHdotvt1mD5Se+/Qik4Cz9NyXm2TG865rPf9CfenBxouTG6OFYXNL8FVP9Bf2MUWdlpyTngRTNrrWYjE9w==}
+ engines: {node: '>=20.19'}
+ hasBin: true
+
'@sanity/client@6.29.1':
resolution: {integrity: sha512-BQRCMeDlBxwnMbFtB61HUxFf9aSb4HNVrpfrC7IFVqFf4cwcc3o5H8/nlrL9U3cDFedbe4W0AXt1mQzwbY/ljw==}
engines: {node: '>=14.18'}
@@ -2730,14 +3887,26 @@ packages:
resolution: {integrity: sha512-BJ3RddlStGc+PjwBwhJIvWgXJbt3+TdWm/ywWWCNruqS5aqOSvvLUFjaAXp5ci4Wy8BL/RnZ60WIeqPi67+5xw==}
engines: {node: '>=20'}
- '@sanity/codegen@3.87.0':
- resolution: {integrity: sha512-ukpEkh8RqN9zAMqofNJOvz7zRK4gp9XBRPbKUs6PRerilqN83wCCSEI4+jX0AhkzBKYvH6FAV3WKfmC9bktvYQ==}
- engines: {node: '>=18'}
+ '@sanity/client@7.8.1':
+ resolution: {integrity: sha512-jz/IizNHGrss7BG+wFzhI2l2f2avayM4dsBcxKRW4T3HSP4MP7T3oA6vgSDRX1N6KfQfFVILNq6bBE0ut8cHUA==}
+ engines: {node: '>=20'}
+
+ '@sanity/client@7.8.2':
+ resolution: {integrity: sha512-Me3/eh71VFdbSHghuea80rcDQZir/NgtwANKug/mPbbwwENYASJSEHpAy2VZwn4FyHHIR9d2pNRIyXMzGab+dQ==}
+ engines: {node: '>=20'}
'@sanity/codegen@3.88.1-typegen-experimental.0':
resolution: {integrity: sha512-9GuT4aTNA1r8F8k6Rv2H2chmatzrmdK40fo4mosDr426nSsAkTD2gl632KVjmuI6veBnfT+ecv5Q/QvmvXl4SA==}
engines: {node: '>=18'}
+ '@sanity/codegen@3.99.0':
+ resolution: {integrity: sha512-XTI6X6uFCms7PLHtCXNTLIoAbR5Mjg5yPrEn3EhHlGyNJV6CSyEOUtd+KyjrAQzC0FQPvT5aZJF1x5hVX+Cwdw==}
+ engines: {node: '>=18'}
+
+ '@sanity/codegen@4.3.0':
+ resolution: {integrity: sha512-c9SpcR3l7C1FR+03fq4A+5r+A5nGpSBy+FAqQZMgK6cpaLtMcm9CIqMYKnVQ2Nmb6PRpYztALfLRl9CMDfF1LQ==}
+ engines: {node: '>=20.19'}
+
'@sanity/color@3.0.6':
resolution: {integrity: sha512-2TjYEvOftD0v7ukx3Csdh9QIu44P2z7NDJtlC3qITJRYV36J7R6Vfd3trVhFnN77/7CZrGjqngrtohv8VqO5nw==}
engines: {node: '>=18.0.0'}
@@ -2750,6 +3919,18 @@ packages:
resolution: {integrity: sha512-2yXb7xKOkR0xW1/5/oEuPFPlitmHbdOxskDI7g/MgiezfcWaotAmAqmv9S4vugd1Z8URjWN1FAh0vL67iZowKA==}
engines: {node: '>=18'}
+ '@sanity/comlink@3.0.8':
+ resolution: {integrity: sha512-HcbOu6GkR936eOS8ezo7ext5aSp5SKH3d8fxRWrZCJU9ZejZYPb3gnZ3PW9uUp1NYh5RnMXBsUDpE1IJtpjA9g==}
+ engines: {node: '>=18'}
+
+ '@sanity/comlink@3.0.9':
+ resolution: {integrity: sha512-eF6dC1tolwhSn7x479ODSyQkSiaEDIMzL7urprzxURKfzDKqJIA8S0wexhAx53gHCF6/Odh/2IpMxf/n78U+QQ==}
+ engines: {node: '>=18'}
+
+ '@sanity/descriptors@1.1.1':
+ resolution: {integrity: sha512-pTqpyLhH3z4NDhjKHyfL+quVN0ixA8NikcdqxRmL2iqPZuJavi81eKm631PaUqJGbY1kh1+vHnO1/GgWIcjgxw==}
+ engines: {node: '>=18.0.0'}
+
'@sanity/diff-match-patch@3.2.0':
resolution: {integrity: sha512-4hPADs0qUThFZkBK/crnfKKHg71qkRowfktBljH2UIxGHHTxIzt8g8fBiXItyCjxkuNy+zpYOdRMifQNv8+Yww==}
engines: {node: '>=18.18'}
@@ -2762,26 +3943,50 @@ packages:
resolution: {integrity: sha512-oJ5kZQV6C/DAlcpRLEU7AcVWXrSPuJb3Z1TQ9tm/qZOVWJENwWln45jtepQEYolTIuGx9jUlhYUi3hGIkOt8RA==}
engines: {node: '>=18.2'}
- '@sanity/diff@3.87.0':
- resolution: {integrity: sha512-AjnPn5SJIRMLq5n/gyIFM2nUYZ+ZsyEWkUr/2PFIDhwdML8IxTLCt+NkNgR/A5aOtOfy1PZS5r54faq5W7deAw==}
+ '@sanity/diff@3.99.0':
+ resolution: {integrity: sha512-iBPPSYAv/frAY73THZOLxVCZ82s91LY/X/8/TjdtMNAON0AUjRWDfZB5wN+JieMMmgwE7WBAUi1wVjPe9ie9qQ==}
engines: {node: '>=18'}
+ '@sanity/diff@4.3.0':
+ resolution: {integrity: sha512-ENxYuxRk/wr1h8aFrzpUtVI6UR6FtWNzTAn9HTMgAU1tppVJreshpv28Ia7LASky6cMg7uU/N6Cwcs+tLr3gMg==}
+ engines: {node: '>=20.19'}
+
+ '@sanity/eslint-config-studio@5.0.2':
+ resolution: {integrity: sha512-uxa0gA+h/OwafzItTcK/XY7xnVbJTXZLPAsDHbdz1PU1LHek571r36d1A3pREl7H4fSgDnkjFV0xaB1tc9onWA==}
+ engines: {node: '>=18.18'}
+ peerDependencies:
+ eslint: ^9.0.0
+
'@sanity/eventsource@5.0.2':
resolution: {integrity: sha512-/B9PMkUvAlUrpRq0y+NzXgRv5lYCLxZNsBJD2WXVnqZYOfByL9oQBV7KiTaARuObp5hcQYuPfOAVjgXe3hrixA==}
- '@sanity/export@3.42.2':
- resolution: {integrity: sha512-3dpGwzyhMXFPdGkS28rv7nBAnCKgW+OGTVM+tO31YO9AIZJ9M016WZcYKEYhX+wCLNiGTNrqWXfac9L4Unh8fQ==}
+ '@sanity/export@3.45.2':
+ resolution: {integrity: sha512-k6b2JAgZugngKDxQYa8uV6TjWkDArhAh5e67L5DbQDqkKnFFPGQCVGv6oXH/Ni+JUvFhKGHYw/E2ksCnuMmH5A==}
engines: {node: '>=18'}
'@sanity/generate-help-url@3.0.0':
resolution: {integrity: sha512-wtMYcV5GIDIhVyF/jjmdwq1GdlK07dRL40XMns73VbrFI7FteRltxv48bhYVZPcLkRXb0SHjpDS/icj9/yzbVA==}
+ '@sanity/google-maps-input@4.1.1':
+ resolution: {integrity: sha512-z6SP2KJzF8oQu8LWgxEjiVg19fqP81MLvAA8IX+M/q+M+oVzXii3Nm7pnFjqZTegxDzA8k+ohYpXykqAbYCVKA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ react: ^18 || ^19
+ sanity: ^3.19.0 || ^4.0.0-0
+ styled-components: ^6.1
+
'@sanity/icons@3.7.0':
resolution: {integrity: sha512-MVh5C55X8Vn2oIsraSPVx4MkHvkqUimkmv7yP++IfJBCLgb38/7G2CM+GB95GTpLPRdF2m3QEwwXcaeljjqKOQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
react: ^18.3 || ^19.0.0-0
+ '@sanity/icons@3.7.4':
+ resolution: {integrity: sha512-O9MnckiDsphFwlRS8Q3kj3n+JYUZ0UzKRujnSikMZOKI0dayucRe4U2XvxikRhJnFhcEJXW2RkWJoBaCoup9Sw==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ react: ^18.3 || ^19.0.0-0
+
'@sanity/id-utils@1.0.0':
resolution: {integrity: sha512-2sb7tbdMDuUuVyocJPKG0gZBiOML/ovCe+mJiLrv1j69ODOfa2LfUjDVR+dRw/A/+XuxoJSSP8ebG7NiwTOgIA==}
engines: {node: '>=18'}
@@ -2790,13 +3995,19 @@ packages:
resolution: {integrity: sha512-JHumVRxzzaZAJyOimntdukA9TjjzsJiaiq/uUBdTknMLCNvtM6KQ5OCp6W5fIdY78uyFxtQjz+MPXwK8WBIxWg==}
engines: {node: '>=10.0.0'}
- '@sanity/import@3.38.2':
- resolution: {integrity: sha512-7KUEiksAjr+Ub+xbWbIIrNlfEesmqJcBW+n7zOr65TN8lS9WarTzIClDjbeZ13yYMS9e9FOKIzXVJC8UFwIseA==}
+ '@sanity/import@3.38.3':
+ resolution: {integrity: sha512-tWEcM5+RN+VDFuouWy6Imqmveko8tzksNYPyeMkqlkF8+s2OI2rGtMQVWvStu6zk4jVQoWXnG9hnt7TAUqKeTQ==}
engines: {node: '>=18'}
hasBin: true
- '@sanity/insert-menu@1.1.10':
- resolution: {integrity: sha512-nkcO9v8ORuuGYOQBcHJbW7ot4+ukoIn4PLJieDZGw1iNxgTXt2TKePfX72aqRUvAsvxrT1001gYoW/LBQwm6Rw==}
+ '@sanity/incompatible-plugin@1.0.5':
+ resolution: {integrity: sha512-9JGAacbElUPy9Chghd+sllIiM3jAcraZdD65bWYWUVKkghOsf1L/+jFLz1rcAuvrA9o2s7Y+T75BNcXuLwRcvw==}
+ peerDependencies:
+ react: ^16.9 || ^17 || ^18 || ^19
+ react-dom: ^16.9 || ^17 || ^18 || ^19
+
+ '@sanity/insert-menu@1.1.13':
+ resolution: {integrity: sha512-Et1eYiELFEZbo7r5+3ntmClHDH4ieCOHqd7tIigdKc6zmI7XIEfUKVkQct3of3QgXS+PQa3scd8wjLxAQgVSWw==}
engines: {node: '>=18.0.0'}
peerDependencies:
'@sanity/types': '*'
@@ -2804,35 +4015,58 @@ packages:
react-dom: ^18.3 || >=19.0.0-rc
react-is: ^18.3 || >=19.0.0-rc
- '@sanity/json-match@1.0.5':
- resolution: {integrity: sha512-skhIX8gT/hLritEBkjfc7+TBlJNu/NLisyA8noKceCk28OatFK0wX7dIuFawkt3pfhTYVomVPykAYFcIm2OqJg==}
- engines: {node: '>=18.2'}
-
- '@sanity/logos@2.1.13':
- resolution: {integrity: sha512-PKAbPbM4zn+6wHYjCVwuhmlZnFqyZ9lT/O7OT3BVd2SGAqXoZTimfBOHrVPifytuazdoQ1T2M5eYJTtW/VXLyA==}
- engines: {node: '>=14.0.0'}
+ '@sanity/insert-menu@2.0.1':
+ resolution: {integrity: sha512-PBHua3RJ+YAH71YJwDgh31XROoytl28jipaJk3H2i9Btt0GwzpyaCKaqRTNWsf4k+dQ4HMFw1URrtt4WCCQTPw==}
+ engines: {node: '>=20.19'}
peerDependencies:
- '@sanity/color': ^2.0 || ^3.0 || ^3.0.0-beta
+ '@sanity/types': '*'
react: ^18.3 || >=19.0.0-rc
+ react-dom: ^18.3 || >=19.0.0-rc
+ react-is: ^18.3 || >=19.0.0-rc
+
+ '@sanity/json-match@1.0.5':
+ resolution: {integrity: sha512-skhIX8gT/hLritEBkjfc7+TBlJNu/NLisyA8noKceCk28OatFK0wX7dIuFawkt3pfhTYVomVPykAYFcIm2OqJg==}
+ engines: {node: '>=18.2'}
+
+ '@sanity/logos@2.2.1':
+ resolution: {integrity: sha512-jz7bvoSrwTAEFw4wlgGsPDquQsBG+k//XEEJIzlLK9bBp2q3Ln6xZiUAjhhScqUa+ThrUfxjfbf7UUecOeLzEQ==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ '@sanity/color': ^2.0 || ^3.0 || ^3.0.0-beta
+ react: ^18.3 || ^19.0.0-0
+
+ '@sanity/media-library-types@1.0.0':
+ resolution: {integrity: sha512-RwBou7SybMbHkSeCn+3L/hbaFP77at3BesP67o8D8RrFiOgHX/h4ibw4yEauC1s09U9BE1MPq9K7ji+0XU57GA==}
'@sanity/message-protocol@0.12.0':
resolution: {integrity: sha512-RMRWQG5yVkCZnnBHW3qxVbZGUOeXPBzFPdD9+pynQCTVZI7zYBEzjnY8lcSYjty+0unDHqeoqMPfBXhqs0rg2g==}
engines: {node: '>=20.0.0'}
- '@sanity/message-protocol@0.9.0':
- resolution: {integrity: sha512-X8TuykbK3kEhQZlxsf9i3iWgF++chfCLjHEk6CRPcgigaOZHqrrYmQYTRlHq7G4uTMzBMWmmCN4UNE/y9iW3wg==}
+ '@sanity/message-protocol@0.13.3':
+ resolution: {integrity: sha512-ODamUtLYneiagN0x3i4QrdgD9bwSAJiL5DF+lxr5yzpR4vGSlJ+HFqJoVvLZTK/KdHBdJzmr2CMebP8hQYN36Q==}
+ engines: {node: '>=20.0.0'}
+
+ '@sanity/message-protocol@0.15.1':
+ resolution: {integrity: sha512-pVmNtWkedptGSUTqS/4hU2+7MtkH+p3aDx5qjf695KBtQVkNU/S92fONEyW1Nh2Qraksniu1GtNEM8ubabbawg==}
engines: {node: '>=20.0.0'}
- '@sanity/migrate@3.87.0':
- resolution: {integrity: sha512-u/FlHEc5PCgK75Pmt12SF7JFekMBNPYf7FFhkCuaVtwYFqk1exAVBa135Z6tVgXXnmBLj8KHkMMSL57JQne3mw==}
+ '@sanity/migrate@3.99.0':
+ resolution: {integrity: sha512-tTPwwnmS2QYTsC5ZmMvXTY7IUUVsEpSVZVL2zKx1KDbSbEz/a2MN+sqney9S5h4xHZIZ11Ju1T9N27OgkA7Ipw==}
engines: {node: '>=18'}
+ '@sanity/migrate@4.3.0':
+ resolution: {integrity: sha512-X56FECR4jPVibxFUcYoC4a2rO0zgsckQLnQC+t/IRfMJBDewQcEpFvTeC07R8PQkgOfBzYKabNALHDgWP+wIyg==}
+ engines: {node: '>=20.19'}
+
'@sanity/mutate@0.12.4':
resolution: {integrity: sha512-CBPOOTCTyHFyhBL+seWpkGKJIE6lpaFd9yIeTIDt6miluBz6W8OKTNbaU6gPzOztqrr8KbrTaROiQAaMQDndQA==}
engines: {node: '>=18'}
- '@sanity/mutator@3.87.0':
- resolution: {integrity: sha512-NGs0KSAtXKe4zfapsf0F+X3waRZ9sEMHuvdBnxx11T0mDpnAIVaacMmJxbeZ9QqJYb5R8g8GAW/x4Rlkp+zACQ==}
+ '@sanity/mutator@3.99.0':
+ resolution: {integrity: sha512-CrX2B2OXYtjFpLQeUC971XiMeyOXyDaMK5qH150qYkg6sVuIdsPjN0kXyMhWR6LuTp96blUOUNPQhkTsfAo44w==}
+
+ '@sanity/mutator@4.3.0':
+ resolution: {integrity: sha512-5cYQxPlHlQjX0m2gm8cS5zFZH8NdMJdYVeSLAg56FxG7oiojVX2nZE/831F1Ns7DgS6ltd/3xhLMv2zeITx4NQ==}
'@sanity/pkg-utils@7.2.2':
resolution: {integrity: sha512-r51X1qTPR/BB416DI3R+ea6ois6rZLm7TsRJCt/7p2NjGoWRDScjL9hgA/Y6QClcFPixnwXS9l/ah/rCv2Zp5g==}
@@ -2856,26 +4090,32 @@ packages:
babel-plugin-react-compiler:
optional: true
- '@sanity/presentation-comlink@1.0.16':
- resolution: {integrity: sha512-ff5eb9TnMM7R+X66yZ8CL06e0u7KY5taBXt8TEgVsnE/Rx6jYoDnrN002b1TBQfVH11o3QszF1QMyzN9uXgMVw==}
+ '@sanity/presentation-comlink@1.0.27':
+ resolution: {integrity: sha512-MJJ6h6yatx0KrkIl38IRSFEk0CgBVEcC0azOxI2yJY3tH9Vda8DynEGtqVsNI1snbEUZYHk3tNjk0pe9PjEBlw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@sanity/client': ^7.8.1
+
+ '@sanity/presentation-comlink@1.0.28':
+ resolution: {integrity: sha512-3LqQQ9MZy4Vut65XYsW0mPFF3gdv/8OKQy3m7zuSIc1HkQNbSLqbD+o7KaBfDnpXQxfk6HXS2zJyrJRO87us1A==}
engines: {node: '>=18'}
peerDependencies:
- '@sanity/client': ^6.29.0
+ '@sanity/client': ^7.8.2
'@sanity/prettier-config@1.0.3':
resolution: {integrity: sha512-daeoWaW67I2t3yIV1s3PI2o8+A7jZnucFQzaIphpFDhHYM/mqjNvEROka300TcZ1Csm4VyPBSvx1IQQ/FkqA5Q==}
peerDependencies:
prettier: ^3.2.5
- '@sanity/preview-url-secret@2.1.8':
- resolution: {integrity: sha512-i5moO9BYvct7SRdh+636WH5dMEUp0CDTWZW00S7aouQDpeC3FnYGch5EhQfAnWjClVSzBVEFv8rJlKjK106AOg==}
+ '@sanity/preview-url-secret@2.1.14':
+ resolution: {integrity: sha512-wjk/M0/1Ah4Kg2N4NXySvrZCI3bROTONMA5mOzeYFjnh8Ib1fMI215VJk3/hPF3PzmfRf9mt6Od3Y5N9vYRt6g==}
engines: {node: '>=18'}
peerDependencies:
- '@sanity/client': ^6.29.0
+ '@sanity/client': ^7.8.0
- '@sanity/runtime-cli@3.2.0':
- resolution: {integrity: sha512-c6H6Knr0IIsa6zQhdgRKdCNSLRscnzEdzLPxY9kO4J/Z3V3EECJYFHI0jnJj5XxsEO01GhJlchzlPAZdOloNBg==}
- engines: {node: '>=18.20.0'}
+ '@sanity/runtime-cli@10.1.2':
+ resolution: {integrity: sha512-Cfz8AVD536YnG4c6DnPFTt2Oc9jm1IDOm+T9AB96v2CXwCP4rCuVR2V9eoLybB/bAKlGNUOvhYyrRGFPgZPMVg==}
+ engines: {node: '>=20.19'}
hasBin: true
'@sanity/runtime-cli@6.1.1':
@@ -2883,13 +4123,25 @@ packages:
engines: {node: '>=18.20.0'}
hasBin: true
- '@sanity/schema@3.87.0':
- resolution: {integrity: sha512-zh1OBGgZ32Zr52LMpPFjPp2U81br7QFfcz09RABStsLBIg5KPo1ulF1WBOYBQudyZd/3wz3ArtwwcHMHy/DSjA==}
+ '@sanity/runtime-cli@9.2.0':
+ resolution: {integrity: sha512-7EJOkiOuw3HWw/JyN4jpCOXPURquLIaisjcppReTTqp/w9cw/Cbqdw+8bgQDMzZg8uphi9vOzJk5C4jx7Zg2RA==}
+ engines: {node: '>=20.11.0'}
+ hasBin: true
+
+ '@sanity/schema@3.99.0':
+ resolution: {integrity: sha512-L0b0Tl3RfoVZM5gYdG8WSLOjlGcJ/xWALz5dkx2bPgnCDVYt3YZDrVO/mzRiSor0cO8i4iU35CKS3tBuXbeZTA==}
+
+ '@sanity/schema@4.3.0':
+ resolution: {integrity: sha512-mnz/q6eNw28lpPJf6YaCNVaIDy2ZFn/NRpEU7v7euCn6Pzkybmi5pzvKC1Q+Shd/5HcPkhFtHVDziTqkH3AjWg==}
'@sanity/sdk@0.0.0-alpha.25':
resolution: {integrity: sha512-sb5IeEszGCVFF2J+EGaPe1wUuZzErUXikIYewhbPR+3uCu1096Xh8R2dBJ1ekiU8ZjUKUOrWnHWz30XdgeGGcw==}
engines: {node: '>=20.0.0'}
+ '@sanity/sdk@2.1.1':
+ resolution: {integrity: sha512-m5DrmO1eiJbFHu08X2weQxU3IKsDTRNrqdx7KsEcGcrqOj+C36En7XPVgtwtFxEurm0GimdoGuC7P9Kvhy/XEw==}
+ engines: {node: '>=20.0.0'}
+
'@sanity/telemetry@0.8.1':
resolution: {integrity: sha512-YybPb6s3IO2HmHZ4dLC3JCX+IAwAnVk5/qmhH4CWbC3iL/VsikRbz4FfOIIIt0cj2UOKrahL/wpSPBR/3quQzg==}
engines: {node: '>=16.0.0'}
@@ -2906,13 +4158,18 @@ packages:
peerDependencies:
'@types/react': 18 || 19
- '@sanity/types@3.87.0':
- resolution: {integrity: sha512-VX0Veow8vp4HPPiIVgEYrOvzmKLmjAOT2b35Twt3xlb5piXqHZpjd8AbUQtSGJ29auiCbsuEKI9bGUBmiSfeRA==}
+ '@sanity/types@3.88.1':
+ resolution: {integrity: sha512-LtgcdqiIVrrOBpO2fv51wognxS1cAtp7qPQHBRyvOhbDMgpwpu+kCvDtr6Y7J++0wZia2QFRyj1exFuvwMHdxQ==}
peerDependencies:
'@types/react': 18 || 19
- '@sanity/types@3.88.1':
- resolution: {integrity: sha512-LtgcdqiIVrrOBpO2fv51wognxS1cAtp7qPQHBRyvOhbDMgpwpu+kCvDtr6Y7J++0wZia2QFRyj1exFuvwMHdxQ==}
+ '@sanity/types@3.99.0':
+ resolution: {integrity: sha512-a766U9VSoyOSWq+RZz9wsEo/Nnn+inDkEcdGu+rHFuygdepullB/RZpF2MxNsfUMCSPnajgG1Tm9lhwbSmlySA==}
+ peerDependencies:
+ '@types/react': 18 || 19
+
+ '@sanity/types@4.3.0':
+ resolution: {integrity: sha512-QoY+8VgPK0bbTSmnhlcRUxzLhudb78ICaqRXMCMzmoR8IUoXUQaSydEW83Ar1WsG/HL0c61flJqFboRbffa6Vw==}
peerDependencies:
'@types/react': 18 || 19
@@ -2925,26 +4182,54 @@ packages:
react-is: ^18 || >=19.0.0-0
styled-components: ^5.2 || ^6
+ '@sanity/ui@2.16.12':
+ resolution: {integrity: sha512-aAlsoYPM2MyvhsUKCvYvQ65oFFQH4KktB4crN0JL81qu915XKSYoXF/E2rge8EJCjaml18X3zFJLmwuP+XaCsw==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ react: ^18 || >=19.0.0-0
+ react-dom: ^18 || >=19.0.0-0
+ react-is: ^18 || >=19.0.0-0
+ styled-components: ^5.2 || ^6
+
+ '@sanity/ui@3.0.5':
+ resolution: {integrity: sha512-TnE4FM1ROn1cq6lywJDqdYpRVhGyKXT2K8a4jFpycgX90HXg5yLMBxuzZwnzRCJr/oB+NOevWZGZZY1fSlDTKg==}
+ engines: {node: '>=20.19'}
+ peerDependencies:
+ react: ^18 || >=19.0.0-0
+ react-dom: ^18 || >=19.0.0-0
+ react-is: ^18 || >=19.0.0-0
+ styled-components: ^5.2 || ^6
+
'@sanity/util@3.68.3':
resolution: {integrity: sha512-J4Ov75oUvMqx221VEJkKNSibzF0D8VyCzejtwftW+jP80XguYFqBz7bAcTmwJ5vnxNUoAUCeAdZBoOYVpgew4g==}
engines: {node: '>=18'}
- '@sanity/util@3.87.0':
- resolution: {integrity: sha512-X8ugSF5s8yWkKYHrAKGYb1NnruuuMhjZs7qriwglEXDBrTYvOJbsKz6HpKH1skr9LFNOrr+/pwBEFMQh6+Ivzw==}
- engines: {node: '>=18'}
-
'@sanity/util@3.88.1':
resolution: {integrity: sha512-VK0d1WI5Na4RLKUvfZTNDQ9h3gmAlCdnzFoQUSeUb/1uS82RM5p9sDUWWZSmlNsqgNXqfMe9Nh8Jpx89cial3Q==}
engines: {node: '>=18'}
+ '@sanity/util@3.99.0':
+ resolution: {integrity: sha512-+yuMi2nTZfyohlS4tFryYMTG9gkjw7aToMM3A3TrtfbQPGi+9ZVBPNeer2r/uaJFChPaxEC9hZV0gXZQpPiJ0w==}
+ engines: {node: '>=18'}
+
+ '@sanity/util@4.3.0':
+ resolution: {integrity: sha512-WwZkfN98kyKOaaxNMkKLuelX5LmB1iUFVDNpDLOYEheg7gXs3ayUsVkIc6RXSMlomohpUMjw+cd0n4psugMy5A==}
+ engines: {node: '>=20.19'}
+
'@sanity/uuid@3.0.2':
resolution: {integrity: sha512-vzdhqOrX7JGbMyK40KuIwwyXHm7GMLOGuYgn3xlC09e4ZVNofUO5mgezQqnRv0JAMthIRhofqs9f6ufUjMKOvw==}
- '@sanity/visual-editing-types@1.0.15':
- resolution: {integrity: sha512-6IvdbwdBfyQJ51iIZ4pnbl6/6yDy3HpZQwk8z2TQrkw4fVYRI96Be5+jilTCj7IunzLM570zkHHnffXeHFP4Yg==}
+ '@sanity/vision@4.3.0':
+ resolution: {integrity: sha512-PWCjTrlb9TEd7Z2UYqSB860jdWrS9YsMgvt06UL0wdPyquQXoPMtytDux4psn3laCUS/G/7xXcNnxJssaITcZw==}
+ peerDependencies:
+ react: ^18 || ^19.0.0
+ styled-components: ^6.1.15
+
+ '@sanity/visual-editing-types@1.1.5':
+ resolution: {integrity: sha512-jDQyO59R9TG7QC6XQ5n8PVWCVRdebez1ws9d8j1HVmPzjIhWRkyQbA/xrfrtYDPo/vuVD8wUbkXOh1TScITVXQ==}
engines: {node: '>=18'}
peerDependencies:
- '@sanity/client': ^6.29.0
+ '@sanity/client': ^7.8.1
'@sanity/types': '*'
peerDependenciesMeta:
'@sanity/types':
@@ -3002,8 +4287,8 @@ packages:
react: '>=16.8'
react-dom: '>=16.8'
- '@tanstack/react-virtual@3.13.6':
- resolution: {integrity: sha512-WT7nWs8ximoQ0CDx/ngoFP7HbQF9Q2wQe4nh2NB+u2486eX3nZRE40P9g6ccCVq7ZfTSH5gFOuCoVH5DLNS/aA==}
+ '@tanstack/react-virtual@3.13.12':
+ resolution: {integrity: sha512-Gd13QdxPSukP8ZrkbgS2RwoZseTTbQPLnQEn7HY/rqtM+8Zt95f7xKC7N0EsKs7aoz0WzZ+fditZux+F8EzYxA==}
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
@@ -3012,8 +4297,8 @@ packages:
resolution: {integrity: sha512-ldZXEhOBb8Is7xLs01fR3YEc3DERiz5silj8tnGkFZytt1abEvl/GhUmCE0PMLaMPTa3Jk4HbKmRlHmu+gCftg==}
engines: {node: '>=12'}
- '@tanstack/virtual-core@3.13.6':
- resolution: {integrity: sha512-cnQUeWnhNP8tJ4WsGcYiX24Gjkc9ALstLbHcBj1t3E7EimN6n6kHH+DPV4PpDnuw00NApQp+ViojMj1GRdwYQg==}
+ '@tanstack/virtual-core@3.13.12':
+ resolution: {integrity: sha512-1YBOJfRHV4sXUmWsFSf5rQor4Ss82G8dQWLRbnk3GA4jeP8hQt1hxXh0tmflpC0dz3VgEv/1+qwPyLeWkQuPFA==}
'@testing-library/dom@10.4.0':
resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==}
@@ -3111,12 +4396,18 @@ packages:
'@types/node@22.13.9':
resolution: {integrity: sha512-acBjXdRJ3A6Pb3tqnw9HZmyR3Fiol3aGxRCK1x3d+6CDAMjl7I649wpSd+yNURCjbOUGu9tqtLKnTGxmK6CyGw==}
+ '@types/node@24.2.0':
+ resolution: {integrity: sha512-3xyG3pMCq3oYCNg7/ZP+E1ooTaGB4cG8JWRsqqOYQdbWNY4zbaV0Ennrd7stjiJEFZCaybcIgpTjJWHRfBSIDw==}
+
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
'@types/parse-path@7.0.3':
resolution: {integrity: sha512-LriObC2+KYZD3FzCrgWGv/qufdUy4eXrxcLgQMfYXgPbLIecKIsVBaQgUPmxSSLcjmYbDTQbMgr6qr6l/eb7Bg==}
+ '@types/prismjs@1.26.5':
+ resolution: {integrity: sha512-AUZTa7hQ2KY5L7AmtSiqxlhWxb4ina0yd8hNbl4TWuqnv/pFP0nDMb3YrfSBf4hJVGLh2YEIBfKaBW/9UEl6IQ==}
+
'@types/progress-stream@2.0.5':
resolution: {integrity: sha512-5YNriuEZkHlFHHepLIaxzq3atGeav1qCTGzB74HKWpo66qjfostF+rHc785YYYHeBytve8ZG3ejg42jEIfXNiQ==}
@@ -3146,8 +4437,8 @@ packages:
'@types/stylis@4.2.5':
resolution: {integrity: sha512-1Xve+NMN7FWjY14vLoY5tL3BVEQ/n42YLwaqJIPYhotZ9uBHt87VceMwWQpzmdEt2TNXIorIFG+YeCUUW7RInw==}
- '@types/tar-stream@3.1.3':
- resolution: {integrity: sha512-Zbnx4wpkWBMBSu5CytMbrT5ZpMiF55qgM+EpHzR4yIDu7mv52cej8hTkOc6K+LzpkOAbxwn/m7j3iO+/l42YkQ==}
+ '@types/tar-stream@3.1.4':
+ resolution: {integrity: sha512-921gW0+g29mCJX0fRvqeHzBlE/XclDaAG0Ousy1LCghsOhvaKacDeRGEVzQP9IPfKn8Vysy7FEXAIxycpc/CMg==}
'@types/tough-cookie@4.0.5':
resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==}
@@ -3167,6 +4458,9 @@ packages:
'@types/uuid@8.3.4':
resolution: {integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==}
+ '@types/which@3.0.4':
+ resolution: {integrity: sha512-liyfuo/106JdlgSchJzXEQCVArk0CvevqPote8F8HgWgJ3dRCcTHgJIsLDuee0kxk/mhbInzIZk3QWSZJ8R+2w==}
+
'@typescript-eslint/eslint-plugin@8.26.1':
resolution: {integrity: sha512-2X3mwqsj9Bd3Ciz508ZUtoQQYpOhU/kWoUqIf49H8Z0+Vbh6UF/y0OEYp0Q0axOGzaBGs7QxRwq0knSQ8khQNA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -3214,6 +4508,28 @@ packages:
resolution: {integrity: sha512-AjOC3zfnxd6S4Eiy3jwktJPclqhFHNyd8L6Gycf9WUPoKZpgM5PjkxY1X7uSy61xVpiJDhhk7XT2NVsN3ALTWg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@uiw/codemirror-extensions-basic-setup@4.24.2':
+ resolution: {integrity: sha512-wW/gjLRvVUeYyhdh2TApn25cvdcR+Rhg6R/j3eTOvXQzU1HNzNYCVH4YKVIfgtfdM/Xs+N8fkk+rbr1YvBppCg==}
+ peerDependencies:
+ '@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'
+
+ '@uiw/react-codemirror@4.24.2':
+ resolution: {integrity: sha512-kp7DhTq4RR+M2zJBQBrHn1dIkBrtOskcwJX4vVsKGByReOvfMrhqRkGTxYMRDTX6x75EG2mvBJPDKYcUQcHWBw==}
+ peerDependencies:
+ '@babel/runtime': '>=7.11.0'
+ '@codemirror/state': '>=6.0.0'
+ '@codemirror/theme-one-dark': '>=6.0.0'
+ '@codemirror/view': '>=6.0.0'
+ codemirror: '>=6.0.0'
+ react: '>=17.0.0'
+ react-dom: '>=17.0.0'
+
'@unrs/resolver-binding-darwin-arm64@1.7.2':
resolution: {integrity: sha512-vxtBno4xvowwNmO/ASL0Y45TpHqmNkAaDtz4Jqb+clmcVSSl8XCG/PNFFkGsXXXS6AMjP+ja/TtNCFFa1QwLRg==}
cpu: [arm64]
@@ -3299,12 +4615,21 @@ packages:
cpu: [x64]
os: [win32]
+ '@vercel/edge@1.2.2':
+ resolution: {integrity: sha512-1+y+f6rk0Yc9ss9bRDgz/gdpLimwoRteKHhrcgHvEpjbP1nyT3ByqEMWm2BTcpIO5UtDmIFXc8zdq4LR190PDA==}
+
'@vitejs/plugin-react@4.4.1':
resolution: {integrity: sha512-IpEm5ZmeXAP/osiBXVVP5KjFMzbWOonMs0NaQQl+xYnUAcq4oHUBsF2+p4MgKWG4YMmFYJU8A6sxRPuowllm6w==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: ^4.2.0 || ^5.0.0 || ^6.0.0
+ '@vitejs/plugin-react@4.7.0':
+ resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ peerDependencies:
+ vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
+
'@vitest/coverage-v8@3.1.2':
resolution: {integrity: sha512-XDdaDOeaTMAMYW7N63AqoK32sYUWbXnTkC6tEbVcu3RlU1bB9of32T+PGf8KZvxqLNqeXhafDFqCkwpf2+dyaQ==}
peerDependencies:
@@ -3343,15 +4668,6 @@ packages:
'@vitest/utils@3.1.2':
resolution: {integrity: sha512-5GGd0ytZ7BH3H6JTj9Kw7Prn1Nbg0wZVrIvou+UWxm54d+WoXXgAgjFJ8wn3LdagWLFSEfpPeyYrByZaGEZHLg==}
- '@xstate/react@5.0.3':
- resolution: {integrity: sha512-Zdnn0VTPcVdoaAiW0OX6Nkvdoe7SNGjfaZqM61NKhjt2aNULqiicmDu2tOd1ChzlRWYDxGTdbzVqqVyMLpoHJw==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- xstate: ^5.19.2
- peerDependenciesMeta:
- xstate:
- optional: true
-
'@xstate/react@6.0.0':
resolution: {integrity: sha512-xXlLpFJxqLhhmecAXclBECgk+B4zYSrDTl8hTfPZBogkn82OHKbm9zJxox3Z/YXoOhAQhKFTRLMYGdlbhc6T9A==}
peerDependencies:
@@ -3374,11 +4690,20 @@ packages:
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ acorn-loose@8.4.0:
+ resolution: {integrity: sha512-M0EUka6rb+QC4l9Z3T0nJEzNOO7JcoJlYMrBlyBCiFSXRyxjLKayd4TbQs2FDRWQU1h9FR7QVNHt+PEaoNL5rQ==}
+ engines: {node: '>=0.4.0'}
+
acorn@8.14.0:
resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
engines: {node: '>=0.4.0'}
hasBin: true
+ acorn@8.15.0:
+ resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
adm-zip@0.5.16:
resolution: {integrity: sha512-TGw5yVi4saajsSEgz25grObGHEUaDrniwvA2qwSC060KfqGPdglhvPMA2lPIoxs3PQIItj2iag35fONcQqgUaQ==}
engines: {node: '>=12.0'}
@@ -3451,6 +4776,9 @@ packages:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
engines: {node: '>=12'}
+ ansicolors@0.3.2:
+ resolution: {integrity: sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg==}
+
ansis@3.17.0:
resolution: {integrity: sha512-0qWUglt9JEqLFr3w1I1pbrChn1grhaiAR2ocX1PP/flRmxgtwTzPFFFnfIlD6aMOLQZgSuCRlidD70lvx8yhzg==}
engines: {node: '>=14'}
@@ -3498,6 +4826,9 @@ packages:
array-treeify@0.1.3:
resolution: {integrity: sha512-uUB7ngRUZe535QtK7VJeBIWcci58BFjT7O2of3Fkga/NPwr5vBeabMv83h1gMQVYVEyirXpp0kjqMGQftMTuiQ==}
+ array-treeify@0.1.5:
+ resolution: {integrity: sha512-Ag85dlQyM0wahhm62ZvsLDLU0TcGNXjonRWpEUvlmmaFBuJNuzoc19Gi51uMs9HXoT2zwSewk6JzxUUw8b412g==}
+
array-union@2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
@@ -3542,6 +4873,9 @@ packages:
resolution: {integrity: sha512-mfh6a7gKXE8pDlxTvqIc/syH/P3RkzbOF6LeHdcKztLEzYe6IMsRCL7N8vI7hqTGWNxpkCuuRTpT21xNWqhRtQ==}
engines: {node: '>=20.18.0'}
+ ast-types-flow@0.0.8:
+ resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
+
ast-types@0.16.1:
resolution: {integrity: sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==}
engines: {node: '>=4'}
@@ -3562,6 +4896,17 @@ packages:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
+ aws4@1.13.2:
+ resolution: {integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==}
+
+ axe-core@4.10.3:
+ resolution: {integrity: sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg==}
+ engines: {node: '>=4'}
+
+ axobject-query@4.1.0:
+ resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
+ engines: {node: '>= 0.4'}
+
b4a@1.6.7:
resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
@@ -3570,24 +4915,39 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-polyfill-corejs2@0.4.14:
+ resolution: {integrity: sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
babel-plugin-polyfill-corejs3@0.11.1:
resolution: {integrity: sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-polyfill-corejs3@0.13.0:
+ resolution: {integrity: sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
babel-plugin-polyfill-regenerator@0.6.4:
resolution: {integrity: sha512-7gD3pRadPrbjhjLyxebmx/WrFYcuSjZ0XbdUujQMZ/fcE9oeewk2U/7PCvez84UeuK3oSjmPZ0Ch0dlupQvGzw==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-polyfill-regenerator@0.6.5:
+ resolution: {integrity: sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
babel-plugin-react-compiler@19.1.0-rc.1:
resolution: {integrity: sha512-M4fpG+Hfq5gWzsJeeMErdRokzg0fdJ8IAk+JDhfB/WLT+U3WwJWR8edphypJrk447/JEvYu6DBFwsTn10bMW4Q==}
balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
- bare-events@2.5.4:
- resolution: {integrity: sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==}
+ bare-events@2.6.0:
+ resolution: {integrity: sha512-EKZ5BTXYExaNqi3I3f9RtEsaI/xBSGjE0XZCZilPzFAV/goswFHuPd9jEZlPIZ/iNZJwDSao9qRiScySz7MbQg==}
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
@@ -3626,6 +4986,9 @@ packages:
brace-expansion@2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
+ brace-expansion@2.0.2:
+ resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
+
braces@3.0.3:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
@@ -3711,6 +5074,18 @@ packages:
caniuse-lite@1.0.30001727:
resolution: {integrity: sha512-pB68nIHmbN6L/4C6MH1DokyR3bYqFwjaSs/sWDHGj4CTcFtQUQMuJftVwWkXq7mNWOybD3KhUv3oWHoGxgP14Q==}
+ cardinal@2.1.1:
+ resolution: {integrity: sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==}
+ hasBin: true
+
+ castable-video@1.1.10:
+ resolution: {integrity: sha512-/T1I0A4VG769wTEZ8gWuy1Crn9saAfRTd1UYTb8xbOPlN78+zOi/1nU2dD5koNkfE5VWvgabkIqrGKmyNXOjSQ==}
+
+ ce-la-react@0.3.0:
+ resolution: {integrity: sha512-84SEDLNHaAjykzlkqgKRq95hA3qnxrsTrwh4hTgBq6tfpINqajxz4bkz9q4orhUfpqDPQRgdCzYTF3bHcvTIlQ==}
+ peerDependencies:
+ react: '>=17.0.0'
+
chai@5.2.0:
resolution: {integrity: sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==}
engines: {node: '>=12'}
@@ -3735,15 +5110,28 @@ packages:
resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+ chalk@5.5.0:
+ resolution: {integrity: sha512-1tm8DTaJhPBG3bIkVeZt1iZM9GfSX2lzOeDVZH9R9ffRHpmHvxZ/QhgQH/aDTkswQVt+YHdXAdS/In/30OjCbg==}
+ engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+
character-entities-legacy@1.1.4:
resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==}
+ character-entities-legacy@3.0.0:
+ resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
+
character-entities@1.2.4:
resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==}
+ character-entities@2.0.2:
+ resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
+
character-reference-invalid@1.1.4:
resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==}
+ character-reference-invalid@2.0.1:
+ resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==}
+
chardet@0.7.0:
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
@@ -3809,6 +5197,9 @@ packages:
resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==}
engines: {node: '>=0.8'}
+ codemirror@6.0.2:
+ resolution: {integrity: sha512-VhydHotNW5w1UGK0Qj96BwSk/Zqbp9WbnyK2W/eVMv4QyF41INRGpjUhFJY7/uDNuudSc33a/PKr4iDqRduvHw==}
+
color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
@@ -3842,6 +5233,9 @@ packages:
comma-separated-tokens@1.0.8:
resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==}
+ comma-separated-tokens@2.0.3:
+ resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
+
commander@12.1.0:
resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==}
engines: {node: '>=18'}
@@ -3876,8 +5270,8 @@ packages:
resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==}
engines: {node: '>=8'}
- console-table-printer@2.12.1:
- resolution: {integrity: sha512-wKGOQRRvdnd89pCeH96e2Fn4wkbenSP6LMHfjfyNLMbGuHEFbMqQNuxXqd0oXG9caIOQ1FTvc5Uijp9/4jujnQ==}
+ console-table-printer@2.14.6:
+ resolution: {integrity: sha512-MCBl5HNVaFuuHW6FGbL/4fB7N/ormCy+tQ+sxTrF6QtSbSNETvPuOVbkJBhzDgYhvjWGrTma4eYJa37ZuoQsPw==}
conventional-changelog-angular@7.0.0:
resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==}
@@ -3902,6 +5296,9 @@ packages:
core-js-compat@3.42.0:
resolution: {integrity: sha512-bQasjMfyDGyaeWKBIu33lHh9qlSR0MFE/Nmc6nMjf/iU9b3rSMdAYz1Baxrv4lPdGUsTqZudHA4jIGSJy0SWZQ==}
+ core-js-compat@3.44.0:
+ resolution: {integrity: sha512-JepmAj2zfl6ogy34qfWtcE7nHKAJnKsQFRn++scjVS2bZFllwptzw61BZcZFYBPpUznLfAvh0LGhxKppk04ClA==}
+
core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@@ -3931,6 +5328,9 @@ packages:
resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==}
engines: {node: '>= 14'}
+ crelt@1.0.6:
+ resolution: {integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==}
+
cross-spawn@7.0.6:
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
engines: {node: '>= 8'}
@@ -3943,8 +5343,8 @@ packages:
resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
engines: {node: '>=4'}
- css-select@5.1.0:
- resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
+ css-select@5.2.2:
+ resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==}
css-to-react-native@3.2.0:
resolution: {integrity: sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==}
@@ -3953,8 +5353,8 @@ packages:
resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
- css-what@6.1.0:
- resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
+ css-what@6.2.2:
+ resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==}
engines: {node: '>= 6'}
css.escape@1.5.1:
@@ -3964,12 +5364,22 @@ packages:
resolution: {integrity: sha512-ZgW+Jgdd7i52AaLYCriF8Mxqft0gD/R9i9wi6RWBhs1pqdPEzPjym7rvRKi397WmQFf3SlyUsszhw+VVCbx79Q==}
engines: {node: '>=18'}
+ cssstyle@4.6.0:
+ resolution: {integrity: sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==}
+ engines: {node: '>=18'}
+
csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
+ custom-media-element@1.4.5:
+ resolution: {integrity: sha512-cjrsQufETwxjvwZbYbKBCJNvmQ2++G9AvT45zDi7NXL9k2PdVcs2h0jQz96J6G4TMKRCcEsoJ+QTgQD00Igtjw==}
+
cyclist@1.0.2:
resolution: {integrity: sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA==}
+ damerau-levenshtein@1.0.8:
+ resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
+
dargs@8.1.0:
resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==}
engines: {node: '>=12'}
@@ -4000,6 +5410,9 @@ packages:
resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
engines: {node: '>=0.11'}
+ date-fns@4.1.0:
+ resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==}
+
debounce@1.2.1:
resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==}
@@ -4048,6 +5461,12 @@ packages:
decimal.js@10.5.0:
resolution: {integrity: sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==}
+ decimal.js@10.6.0:
+ resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==}
+
+ decode-named-character-reference@1.2.0:
+ resolution: {integrity: sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==}
+
decompress-response@7.0.0:
resolution: {integrity: sha512-6IvPrADQyyPGLpMnUh6kfKiqy7SrbXbjoUuZ90WMBJKErzv2pCiwlGEXjRX9/54OnTq+XFVnkOnOMzclLI5aEA==}
engines: {node: '>=10'}
@@ -4072,6 +5491,10 @@ packages:
resolution: {integrity: sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==}
engines: {node: '>=4'}
+ deeks@3.1.0:
+ resolution: {integrity: sha512-e7oWH1LzIdv/prMQ7pmlDlaVoL64glqzvNgkgQNgyec9ORPHrT2jaOqMtRyqJuwWjtfb6v+2rk9pmaHj+F137A==}
+ engines: {node: '>= 16'}
+
deep-eql@5.0.2:
resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==}
engines: {node: '>=6'}
@@ -4137,6 +5560,10 @@ packages:
resolution: {integrity: sha512-GYqKi1aH7PJXxdhTeZBFrg8vUBeKXi+cNprXsC1kpJcbcVnV9wBsrOu1cQEdG0WeQwlfHiy3XvnKfIrJ2R0NzQ==}
hasBin: true
+ doc-path@4.1.1:
+ resolution: {integrity: sha512-h1ErTglQAVv2gCnOpD3sFS6uolDbOKHDU1BZq+Kl3npPqroU3dYL42lUgMfd5UimlwtRgp7C9dLGwqQ5D2HYgQ==}
+ engines: {node: '>=16'}
+
doctrine@2.1.0:
resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
engines: {node: '>=0.10.0'}
@@ -4160,8 +5587,8 @@ packages:
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
engines: {node: '>= 4'}
- dompurify@3.2.5:
- resolution: {integrity: sha512-mLPd29uoRe9HpvwP2TxClGQBzGXeEC/we/q+bFlmPPmj2p2Ugl3r6ATu/UU1v77DXNcehiBg9zsr1dREyA/dJQ==}
+ dompurify@3.2.6:
+ resolution: {integrity: sha512-/2GogDQlohXPZe6D6NOgQvXLPSYBqIWMnZ8zzOhn09REE4eyAzb+Hed3jhoM9OkuaJ8P6ZGTTVWQKAi8ieIzfQ==}
domutils@3.2.2:
resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
@@ -4226,6 +5653,9 @@ packages:
end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
+ end-of-stream@1.4.5:
+ resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
+
enhanced-resolve@5.18.1:
resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==}
engines: {node: '>=10.13.0'}
@@ -4234,6 +5664,10 @@ packages:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
+ entities@6.0.1:
+ resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==}
+ engines: {node: '>=0.12'}
+
env-paths@2.2.1:
resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
engines: {node: '>=6'}
@@ -4299,6 +5733,11 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ esbuild@0.25.8:
+ resolution: {integrity: sha512-vVC0USHGtMi8+R4Kz8rt6JhEWLxsv9Rnu/lGYbPR8u47B+DCBksq9JarW0zOO7bs37hyOK1l2/oqtbciutL5+Q==}
+ engines: {node: '>=18'}
+ hasBin: true
+
escalade@3.2.0:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
@@ -4370,6 +5809,12 @@ packages:
'@typescript-eslint/parser':
optional: true
+ eslint-plugin-jsx-a11y@6.10.2:
+ resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==}
+ engines: {node: '>=4.0'}
+ peerDependencies:
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9
+
eslint-plugin-prettier@5.2.3:
resolution: {integrity: sha512-qJ+y0FfCp/mQYQ/vWQ3s7eUlFEL4PyKfAJxsnYTJ4YT73nsJBWqmEpFryxV9OeUiqmsTsYJ5Y+KDNaeP31wrRw==}
engines: {node: ^14.18.0 || >=16.0.0}
@@ -4434,6 +5879,10 @@ packages:
resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ eslint-scope@8.4.0:
+ resolution: {integrity: sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
eslint-visitor-keys@3.4.3:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -4442,6 +5891,10 @@ packages:
resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ eslint-visitor-keys@4.2.1:
+ resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
eslint@9.25.1:
resolution: {integrity: sha512-E6Mtz9oGQWDCpV12319d59n4tx9zOTXSTmc8BLVxBx+G/0RdM5MvEEJLU9c0+aleoePYYgVTOsRblx433qmhWQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -4452,10 +5905,24 @@ packages:
jiti:
optional: true
+ eslint@9.32.0:
+ resolution: {integrity: sha512-LSehfdpgMeWcTZkWZVIJl+tkZ2nuSkyyB9C27MZqFWXuph7DvaowgcTvKqxvpLW1JZIk8PN7hFY3Rj9LQ7m7lg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ hasBin: true
+ peerDependencies:
+ jiti: '*'
+ peerDependenciesMeta:
+ jiti:
+ optional: true
+
espree@10.3.0:
resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ espree@10.4.0:
+ resolution: {integrity: sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
esprima@4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
engines: {node: '>=4'}
@@ -4509,6 +5976,10 @@ packages:
resolution: {integrity: sha512-l19WpE2m9hSuyP06+FbuUUf1G+R0SFLrtQfbRb9PRr+oimOfxQhgGCbVaXg5IvZyyTThJsxh6L/srkMiCeBPDA==}
engines: {node: '>=18.0.0'}
+ eventsource@4.0.0:
+ resolution: {integrity: sha512-fvIkb9qZzdMxgZrEQDyll+9oJsyaVvY92I2Re+qK0qEJ+w5s0X3dtz+M0VAPOjP1gtU3iqWyjQ0G3nvd5CLZ2g==}
+ engines: {node: '>=20.0.0'}
+
execa@2.1.0:
resolution: {integrity: sha512-Y/URAVapfbYy2Xp/gb6A0E7iR8xeqOCXsuuaoMn7A5PzrXUK84E1gyiEfq0wQd/GHA6GsoHWwhNq8anb0mleIw==}
engines: {node: ^8.12.0 || >=9.7.0}
@@ -4571,6 +6042,14 @@ packages:
picomatch:
optional: true
+ fdir@6.4.6:
+ resolution: {integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==}
+ peerDependencies:
+ picomatch: ^3 || ^4
+ peerDependenciesMeta:
+ picomatch:
+ optional: true
+
file-entry-cache@8.0.0:
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
engines: {node: '>=16.0.0'}
@@ -4629,6 +6108,9 @@ packages:
resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==}
engines: {node: '>=18'}
+ find-yarn-workspace-root2@1.2.16:
+ resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==}
+
flat-cache@4.0.1:
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
engines: {node: '>=16'}
@@ -4643,6 +6125,15 @@ packages:
resolution: {integrity: sha512-Ik/6OCk9RQQ0T5Xw+hKNLWrjSMtv51dD4GRmJjbD5a58TIEpI5a5iXagKVl3Z5UuyslMCA8Xwnu76jQob62Yhg==}
engines: {node: '>=10'}
+ follow-redirects@1.15.11:
+ resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
+ engines: {node: '>=4.0'}
+ peerDependencies:
+ debug: '*'
+ peerDependenciesMeta:
+ debug:
+ optional: true
+
follow-redirects@1.15.9:
resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
engines: {node: '>=4.0'}
@@ -4659,14 +6150,46 @@ packages:
resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
engines: {node: '>=14'}
- form-data@2.5.3:
- resolution: {integrity: sha512-XHIrMD0NpDrNM/Ckf7XJiBbLl57KEhT3+i3yY+eWm+cqYZJQTZrKo8Y8AWKnuV5GT4scfuUGt9LzNoIx3dU1nQ==}
+ form-data@2.5.5:
+ resolution: {integrity: sha512-jqdObeR2rxZZbPSGL+3VckHMYtu+f9//KXBsVny6JSX/pa38Fy+bGjuG8eW/H6USNQWhLi8Num++cU2yOCNz4A==}
engines: {node: '>= 0.12'}
form-data@4.0.1:
resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==}
engines: {node: '>= 6'}
+ form-data@4.0.4:
+ resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==}
+ engines: {node: '>= 6'}
+
+ framer-motion@12.23.11:
+ resolution: {integrity: sha512-VzNi+exyI3bn7Pzvz1Fjap1VO9gQu8mxrsSsNamMidsZ8AA8W2kQsR+YQOciEUbMtkKAWIbPHPttfn5e9jqqJQ==}
+ peerDependencies:
+ '@emotion/is-prop-valid': '*'
+ react: ^18.0.0 || ^19.0.0
+ react-dom: ^18.0.0 || ^19.0.0
+ peerDependenciesMeta:
+ '@emotion/is-prop-valid':
+ optional: true
+ react:
+ optional: true
+ react-dom:
+ optional: true
+
+ framer-motion@12.23.12:
+ resolution: {integrity: sha512-6e78rdVtnBvlEVgu6eFEAgG9v3wLnYEboM8I5O5EXvfKC8gxGQB8wXJdhkMy10iVcn05jl6CNw7/HTsTCfwcWg==}
+ peerDependencies:
+ '@emotion/is-prop-valid': '*'
+ react: ^18.0.0 || ^19.0.0
+ react-dom: ^18.0.0 || ^19.0.0
+ peerDependenciesMeta:
+ '@emotion/is-prop-valid':
+ optional: true
+ react:
+ optional: true
+ react-dom:
+ optional: true
+
framer-motion@12.6.3:
resolution: {integrity: sha512-2hsqknz23aloK85bzMc9nSR2/JP+fValQ459ZTVElFQ0xgwR2YqNjYSuDZdFBPOwVCt4Q9jgyTt6hg6sVOALzw==}
peerDependencies:
@@ -4738,10 +6261,19 @@ packages:
resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==}
engines: {node: '>=18'}
+ get-folder-size@5.0.0:
+ resolution: {integrity: sha512-+fgtvbL83tSDypEK+T411GDBQVQtxv+qtQgbV+HVa/TYubqDhNd5ghH/D6cOHY9iC5/88GtOZB7WI8PXy2A3bg==}
+ engines: {node: '>=18.11.0'}
+ hasBin: true
+
get-intrinsic@1.2.6:
resolution: {integrity: sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==}
engines: {node: '>= 0.4'}
+ get-it@8.6.10:
+ resolution: {integrity: sha512-27StIK860ZVp2bhsG/aTWpcoA4OrFxtMqBbesa5sR23m5OxfVQYCnpm2rPQeo3gs5qsUk0FdkISLgXRJ4HynNw==}
+ engines: {node: '>=14.0.0'}
+
get-it@8.6.7:
resolution: {integrity: sha512-AMEotvykAlcEPTPmYeZPqr9w3K53Ni8z1tplo1mwNS8T4i/gr5T7mSfvaLhhIQhF+0thIH901kLdDA5d5bvDGA==}
engines: {node: '>=14.0.0'}
@@ -4818,6 +6350,11 @@ packages:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
+ glob@10.3.16:
+ resolution: {integrity: sha512-JDKXl1DiuuHJ6fVS2FXjownaavciiHNUU4mOvV/B793RLh05vZL1rcPnCSaOgv1hDT6RDlY7AB7ZUvFYAtPgAw==}
+ engines: {node: '>=16 || 14 >=14.18'}
+ hasBin: true
+
glob@10.4.5:
resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
hasBin: true
@@ -4890,14 +6427,22 @@ packages:
resolution: {integrity: sha512-n22UJPBYE8CLAlTOwXTZVjFH1a5+x2hORDv13zi1gwbR23CpvSLPioNtzVovotuAciLLH/pVJe9PyKOR5MykGg==}
engines: {node: '>= 14'}
- groq@3.87.0:
- resolution: {integrity: sha512-d8RDHFXTln2ieeeTfT68JDvwRT5w07U7GJL/DRYdJnhiVNA8kAs0hbvfFVjQUQRwyMYPZvOw/EMwjh++ISbvkQ==}
- engines: {node: '>=18'}
+ groq-js@1.17.3:
+ resolution: {integrity: sha512-Z6/n5Ro246RlntMoZKTIjB3GDCFcs8NLCkIrI8AbS1Ho7yVAtNQqxxJd2W4ENk9+a03gTQYtunNGlcHJM9hhQw==}
+ engines: {node: '>= 14'}
groq@3.88.1-typegen-experimental.0:
resolution: {integrity: sha512-6TZD6H1y3P7zk0BQharjFa7BOivV9nFL6KKVZbRZRH0yOSSyu2xHglTO48b1/2mCEdYoBQpvE7rjCDUf6XmQYQ==}
engines: {node: '>=18'}
+ groq@3.99.0:
+ resolution: {integrity: sha512-ZwKAWzvVCw51yjmIf5484KgsAzZAlGTM4uy9lki4PjAYxcEME2Xf93d31LhHzgUAr2JI79H+cNKoRjDHdv1BXQ==}
+ engines: {node: '>=18'}
+
+ groq@4.3.0:
+ resolution: {integrity: sha512-DVlxad9N9vY+7h8hPo+WKDpIKtJO2XBmg6ZyJBqr4A3BLVx4SJhenTuPU18YzLqn7+ceOsIPw0RMMyD4mD04Pw==}
+ engines: {node: '>=20.19'}
+
gtoken@7.1.0:
resolution: {integrity: sha512-pCcEwRi+TKpMlxAQObHDQ56KawURgyAf6jtIY046fJ5tIv3zDe/LEIubckAO8fj6JnAxLdmWkUfNyulQ2iKdEw==}
engines: {node: '>=14.0.0'}
@@ -4943,9 +6488,15 @@ packages:
hast-util-parse-selector@2.2.5:
resolution: {integrity: sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==}
+ hast-util-parse-selector@4.0.0:
+ resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==}
+
hastscript@6.0.0:
resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==}
+ hastscript@9.0.1:
+ resolution: {integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==}
+
he@1.2.0:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
@@ -4959,6 +6510,9 @@ packages:
history@5.3.0:
resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==}
+ hls.js@1.6.8:
+ resolution: {integrity: sha512-oifhtMNYRpB1VmzH/hWd4NXziMJ1hCeA15XG1ET4jh6u4khXsYsqqvpEFWmNWS+8J6tbsv10wYq5ZiY21HG2Gg==}
+
hoist-non-react-statics@3.3.2:
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
@@ -5042,6 +6596,10 @@ packages:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
+ import-fresh@3.3.1:
+ resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
+ engines: {node: '>=6'}
+
import-lazy@4.0.0:
resolution: {integrity: sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==}
engines: {node: '>=8'}
@@ -5080,6 +6638,15 @@ packages:
'@types/node':
optional: true
+ inquirer@12.9.0:
+ resolution: {integrity: sha512-LlFVmvWVCun7uEgPB3vups9NzBrjJn48kRNtFGw3xU1H5UXExTEz/oF1JGLaB0fvlkUB+W6JfgLcSEaSdH7RPA==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+
inter-ui@4.1.0:
resolution: {integrity: sha512-lUJ5YLtpj7jWsrhTbN5w32MLOqISGFGOTMRNn+IGhLrbt67z5yvmBRoqpLCWLVlJ+l7kqnH6su4meEqvLMfAAA==}
engines: {node: '>=16.0.0'}
@@ -5091,9 +6658,15 @@ packages:
is-alphabetical@1.0.4:
resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==}
+ is-alphabetical@2.0.1:
+ resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==}
+
is-alphanumerical@1.0.4:
resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==}
+ is-alphanumerical@2.0.1:
+ resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==}
+
is-array-buffer@3.0.5:
resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==}
engines: {node: '>= 0.4'}
@@ -5128,6 +6701,10 @@ packages:
resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
engines: {node: '>= 0.4'}
+ is-core-module@2.16.1:
+ resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
+ engines: {node: '>= 0.4'}
+
is-data-view@1.0.2:
resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==}
engines: {node: '>= 0.4'}
@@ -5139,6 +6716,9 @@ packages:
is-decimal@1.0.4:
resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==}
+ is-decimal@2.0.1:
+ resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==}
+
is-deflate@1.0.0:
resolution: {integrity: sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==}
@@ -5182,6 +6762,9 @@ packages:
is-hexadecimal@1.0.4:
resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==}
+ is-hexadecimal@2.0.1:
+ resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==}
+
is-hotkey-esm@1.0.0:
resolution: {integrity: sha512-eTXNmLCPXpKEZUERK6rmFsqmL66+5iNB998JMO+/61fSxBZFuUR1qHyFyx7ocBl5Vs8qjFzRAJLACpYfhS5g5w==}
@@ -5302,6 +6885,10 @@ packages:
resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==}
engines: {node: '>=12'}
+ is-unicode-supported@2.1.0:
+ resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
+ engines: {node: '>=18'}
+
is-weakmap@2.0.2:
resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
engines: {node: '>= 0.4'}
@@ -5338,8 +6925,8 @@ packages:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'}
- isomorphic-dompurify@2.24.0:
- resolution: {integrity: sha512-SgKoDBCQveodymGMBPpzs9MOTCk4Luq0bTfwoPrUKa7q0FnCLZMtqR25Rnq228zJfMTsX1ZItiJbDtjb2lyv4A==}
+ isomorphic-dompurify@2.26.0:
+ resolution: {integrity: sha512-nZmoK4wKdzPs5USq4JHBiimjdKSVAOm2T1KyDoadtMPNXYHxiENd19ou4iU/V4juFM6LVgYQnpxCYmxqNP4Obw==}
engines: {node: '>=18'}
istanbul-lib-coverage@3.2.2:
@@ -5378,12 +6965,20 @@ packages:
resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==}
hasBin: true
+ jiti@2.5.1:
+ resolution: {integrity: sha512-twQoecYPiVA5K/h6SxtORw/Bs3ar+mLUtoPSc7iMXzQzK8d7eJ/R09wmTwAjiamETn1cXYPGfNnu7DMoHgu12w==}
+ hasBin: true
+
jju@1.4.0:
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
+ js-yaml@3.14.1:
+ resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
+ hasBin: true
+
js-yaml@4.1.0:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
@@ -5425,6 +7020,10 @@ packages:
engines: {node: '>=6'}
hasBin: true
+ json-2-csv@5.5.9:
+ resolution: {integrity: sha512-l4g6GZVHrsN+5SKkpOmGNSvho+saDZwXzj/xmcO0lJAgklzwsiqy70HS5tA9djcRvBEybZ9IF6R1MDFTEsaOGQ==}
+ engines: {node: '>= 16'}
+
json-bigint@1.0.0:
resolution: {integrity: sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==}
@@ -5509,6 +7108,17 @@ packages:
'@types/node': '>=18'
typescript: '>=5.0.4'
+ lambda-runtimes@2.0.5:
+ resolution: {integrity: sha512-6BoLX9xuvr+B/f05MOhJnzRdF8Za5YYh82n45ndun9EU3uhJv9kIwnYrOrvuA7MoGwZgCMI7RUhBRzfw/l63SQ==}
+ engines: {node: '>=14'}
+
+ language-subtag-registry@0.3.23:
+ resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
+
+ language-tags@1.0.9:
+ resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
+ engines: {node: '>=0.10'}
+
lazystream@1.0.1:
resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
engines: {node: '>= 0.6.3'}
@@ -5604,6 +7214,10 @@ packages:
resolution: {integrity: sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==}
engines: {node: '>=18.0.0'}
+ load-yaml-file@0.2.0:
+ resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==}
+ engines: {node: '>=6'}
+
locate-path@3.0.0:
resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==}
engines: {node: '>=6'}
@@ -5668,6 +7282,10 @@ packages:
resolution: {integrity: sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==}
engines: {node: '>=12'}
+ log-symbols@6.0.0:
+ resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==}
+ engines: {node: '>=18'}
+
log-update@6.1.0:
resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==}
engines: {node: '>=18'}
@@ -5747,6 +7365,12 @@ packages:
mdurl@2.0.0:
resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==}
+ media-chrome@4.11.1:
+ resolution: {integrity: sha512-+2niDc4qOwlpFAjwxg1OaizK/zKV6y7QqGm4nBFEVlSaG0ZBgOmfc4IXAPiirZqAlZGaFFUaMqCl1SpGU0/naA==}
+
+ media-tracks@0.3.3:
+ resolution: {integrity: sha512-9P2FuUHnZZ3iji+2RQk7Zkh5AmZTnOG5fODACnjhCVveX1McY3jmCRHofIEI+yTBqplz7LXy48c7fQ3Uigp88w==}
+
memorystream@0.3.1:
resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
engines: {node: '>= 0.10.0'}
@@ -5877,9 +7501,18 @@ packages:
moment@2.30.1:
resolution: {integrity: sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==}
+ motion-dom@12.23.12:
+ resolution: {integrity: sha512-RcR4fvMCTESQBD/uKQe49D5RUeDOokkGRmz4ceaJKDBgHYtZtntC/s2vLvY38gqGaytinij/yi3hMcWVcEF5Kw==}
+
+ motion-dom@12.23.9:
+ resolution: {integrity: sha512-6Sv++iWS8XMFCgU1qwKj9l4xuC47Hp4+2jvPfyTXkqDg2tTzSgX6nWKD4kNFXk0k7llO59LZTPuJigza4A2K1A==}
+
motion-dom@12.6.3:
resolution: {integrity: sha512-gRY08RjcnzgFYLemUZ1lo/e9RkBxR+6d4BRvoeZDSeArG4XQXERSPapKl3LNQRu22Sndjf1h+iavgY0O4NrYqA==}
+ motion-utils@12.23.6:
+ resolution: {integrity: sha512-eAWoPgr4eFEOFfg2WjIsMoqJTW6Z8MTUCgn/GZ3VRpClWBdnbjryiA3ZSNLyxCTmCQx4RmYX6jX1iWHbenUPNQ==}
+
motion-utils@12.6.3:
resolution: {integrity: sha512-R/b3Ia2VxtTNZ4LTEO5pKYau1OUNHOuUfxuP0WFCTDYdHkeTBR9UtxR1cc8mDmKr8PEhmmfnTKGz3rSMjNRoRg==}
@@ -5893,6 +7526,12 @@ packages:
resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==}
engines: {node: ^18.17.0 || >=20.5.0}
+ mux-embed@5.11.0:
+ resolution: {integrity: sha512-uczzXVraqMRmyYmpGh2zthTmBKvvc5D5yaVKQRgGhFOnF7E4nkhqNkdkQc4C0WTPzdqdPl5OtCelNWMF4tg5RQ==}
+
+ mux-embed@5.9.0:
+ resolution: {integrity: sha512-wmunL3uoPhma/tWy8PrDPZkvJpXvSFBwbD3KkC4PG8Ztjfb1X3hRJwGUAQyRz7z99b/ovLm2UTTitrkvStjH4w==}
+
nano-pubsub@3.0.0:
resolution: {integrity: sha512-zoTNyBafxG0+F5PP3T3j1PKMr7gedriSdYRhLFLRFCz0OnQfQ6BkVk9peXVF30hz633Bw0Zh5McleOrXPjWYCQ==}
engines: {node: '>=18'}
@@ -5968,6 +7607,9 @@ packages:
nwsapi@2.2.20:
resolution: {integrity: sha512-/ieB+mDe4MrrKMT8z+mQL8klXydZWGR5Dowt4RAGKbJ3kIGEx3X4ljUo+6V73IXtUPWgfOlU5B9MlGxFO5T+cA==}
+ nwsapi@2.2.21:
+ resolution: {integrity: sha512-o6nIY3qwiSXl7/LuOU0Dmuctd34Yay0yeuZRLFmDPrrdHpXKFndPj3hM+YEPVHYC5fx2otBx4Ilc/gyYSAUaIA==}
+
object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
@@ -6047,6 +7689,10 @@ packages:
resolution: {integrity: sha512-0TUxTiFJWv+JnjWm4o9yvuskpEJLXTcng8MJuKd+SzAzp2o+OP3HWqNhB4OdJRt1Vsd9/mR0oyaEYlOnL7XIRw==}
engines: {node: '>=16'}
+ ora@8.2.0:
+ resolution: {integrity: sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==}
+ engines: {node: '>=18'}
+
os-homedir@1.0.2:
resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==}
engines: {node: '>=0.10.0'}
@@ -6122,6 +7768,9 @@ packages:
parse-entities@2.0.0:
resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==}
+ parse-entities@4.0.2:
+ resolution: {integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==}
+
parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
@@ -6148,6 +7797,9 @@ packages:
parse5@7.2.1:
resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==}
+ parse5@7.3.0:
+ resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==}
+
path-exists@3.0.0:
resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
engines: {node: '>=4'}
@@ -6179,6 +7831,9 @@ packages:
resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==}
engines: {node: 20 || >=22}
+ path-sort@0.1.0:
+ resolution: {integrity: sha512-70MSq7edKtbODYKkqXYzSMQxtYMjDgP3K6D15Fu4KUvpyBPlxDWPvv8JI9GjNDF2K5baPHFEtlg818dOmf2ifg==}
+
path-to-regexp@6.3.0:
resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==}
@@ -6213,6 +7868,10 @@ packages:
resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
engines: {node: '>=12'}
+ picomatch@4.0.3:
+ resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
+ engines: {node: '>=12'}
+
pidtree@0.6.0:
resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==}
engines: {node: '>=0.10'}
@@ -6246,6 +7905,10 @@ packages:
resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==}
engines: {node: '>=6'}
+ pkg-dir@4.2.0:
+ resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
+ engines: {node: '>=8'}
+
pkg-dir@5.0.0:
resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==}
engines: {node: '>=10'}
@@ -6254,6 +7917,9 @@ packages:
resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==}
engines: {node: '>=8'}
+ player.style@0.1.9:
+ resolution: {integrity: sha512-aFmIhHMrnAP8YliFYFMnRw+5AlHqBvnqWy4vHGo2kFxlC+XjmTXqgg62qSxlE8ubAY83c0ViEZGYglSJi6mGCA==}
+
playwright-core@1.52.0:
resolution: {integrity: sha512-l2osTgLXSMeuLZOML9qYODUQoPPnUsKsb5/P6LJ2e6uPKXUdPK5WYhN4z03G+YNbWmGDY4YENauNu4ZKczreHg==}
engines: {node: '>=18'}
@@ -6287,6 +7953,14 @@ packages:
resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
engines: {node: ^10 || ^12 || >=14}
+ postcss@8.5.6:
+ resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
+ engines: {node: ^10 || ^12 || >=14}
+
+ preferred-pm@4.1.1:
+ resolution: {integrity: sha512-rU+ZAv1Ur9jAUZtGPebQVQPzdGhNzaEiQ7VL9+cjsAWPHFYOccNXPNiev1CCDSOg/2j7UujM7ojNhpkuILEVNQ==}
+ engines: {node: '>=18.12'}
+
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
@@ -6353,6 +8027,9 @@ packages:
property-information@5.6.0:
resolution: {integrity: sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==}
+ property-information@7.1.0:
+ resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==}
+
proto-list@1.2.4:
resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==}
@@ -6365,8 +8042,8 @@ packages:
pump@2.0.1:
resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==}
- pump@3.0.2:
- resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==}
+ pump@3.0.3:
+ resolution: {integrity: sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==}
pumpify@1.5.1:
resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==}
@@ -6403,8 +8080,8 @@ packages:
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
hasBin: true
- react-clientside-effect@1.2.7:
- resolution: {integrity: sha512-gce9m0Pk/xYYMEojRI9bgvqQAkl6hm7ozQvqWPyQx+kULiatdHgkNM1QG4DQRx5N9BAzWSCJmt9mMV8/KsdgVg==}
+ react-clientside-effect@1.2.8:
+ resolution: {integrity: sha512-ma2FePH0z3px2+WOu6h+YycZcEvFmmxIlAb62cF52bG86eMySciO/EQZeQMXd07kPCYB0a1dWDT5J+KE9mCDUw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
@@ -6463,6 +8140,22 @@ packages:
react-native:
optional: true
+ react-i18next@15.6.1:
+ resolution: {integrity: sha512-uGrzSsOUUe2sDBG/+FJq2J1MM+Y4368/QW8OLEKSFvnDflHBbZhSd1u3UkW0Z06rMhZmnB/AQrhCpYfE5/5XNg==}
+ peerDependencies:
+ i18next: '>= 23.2.3'
+ react: '>= 16.8.0'
+ react-dom: '*'
+ react-native: '*'
+ typescript: ^5
+ peerDependenciesMeta:
+ react-dom:
+ optional: true
+ react-native:
+ optional: true
+ typescript:
+ optional: true
+
react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
@@ -6472,11 +8165,20 @@ packages:
react-is@18.3.1:
resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
+ react-is@19.1.1:
+ resolution: {integrity: sha512-tr41fA15Vn8p4X9ntI+yCyeGSf1TlYaY5vlTZfQmeLBrFo3psOPX6HhTDnFNL9uj3EhP0KAQ80cugCl4b4BERA==}
+
react-refractor@2.2.0:
resolution: {integrity: sha512-UvWkBVqH/2b9nkkkt4UNFtU3aY1orQfd4plPjx5rxbefy6vGajNHU9n+tv8CbykFyVirr3vEBfN2JTxyK0d36g==}
peerDependencies:
react: '>=15.0.0'
+ react-refractor@4.0.0:
+ resolution: {integrity: sha512-2VMRH3HA/Nu+tMFzyQwdBK0my0BIZy1pkWHhjuSrplMyf8ZLx/Gw7tUXV0t2JbEsbSNHbEc9TbHhq3sUx2seVA==}
+ engines: {node: '>=20.0.0'}
+ peerDependencies:
+ react: '>=18.0.0'
+
react-refresh@0.17.0:
resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==}
engines: {node: '>=0.10.0'}
@@ -6491,8 +8193,8 @@ packages:
react-dom:
optional: true
- react-rx@4.1.28:
- resolution: {integrity: sha512-J+JGKz7muwCYF9crUoi635CxoJEEMM34KQW//5OClOt6KyMEVBPjFO7HbAZdk1umJ0hi6T4dx/9vnDZYH1ZR2g==}
+ react-rx@4.1.31:
+ resolution: {integrity: sha512-wRdAh4yQ+hQkkcHRH4CC8RnyZWtTx76lhbqCEfrdXOvl65twRuTi6vmMQM/tQj7jguiPxiVN2hEJkjXsd6pstw==}
peerDependencies:
react: ^18.3 || >=19.0.0-0
rxjs: ^7
@@ -6558,6 +8260,9 @@ packages:
resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==}
engines: {node: '>=8'}
+ redeyed@2.1.1:
+ resolution: {integrity: sha512-FNpGGo1DycYAdnrKFxCMmKYgo/mILAqtRYbkdQD8Ep/Hk2PQ5+aEAEx+IU713RTDmuBaH0c8P5ZozurNu5ObRQ==}
+
reflect.getprototypeof@1.0.9:
resolution: {integrity: sha512-r0Ay04Snci87djAsI4U+WNRcSw5S4pOH7qFjd/veA5gC7TbqESR3tcj28ia95L/fYUDw11JKP7uqUKUAfVvV5Q==}
engines: {node: '>= 0.4'}
@@ -6565,6 +8270,9 @@ packages:
refractor@3.6.0:
resolution: {integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==}
+ refractor@5.0.0:
+ resolution: {integrity: sha512-QXOrHQF5jOpjjLfiNk5GFnWhRXvxjUVnlFxkeDmewR5sXkr3iM46Zo+CnRR8B+MDVqkULW4EcLVcRBNOPXHosw==}
+
regenerate-unicode-properties@10.2.0:
resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
engines: {node: '>=4'}
@@ -6630,6 +8338,11 @@ packages:
resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==}
engines: {node: '>=10'}
+ resolve@1.22.10:
+ resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
+ engines: {node: '>= 0.4'}
+ hasBin: true
+
resolve@1.22.8:
resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
hasBin: true
@@ -6724,8 +8437,13 @@ packages:
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
- rollup@4.45.1:
- resolution: {integrity: sha512-4iya7Jb76fVpQyLoiVpzUrsjQ12r3dM7fIVz+4NwoYvZOShknRmiv+iu9CClZml5ZLGb0XMcYLutK6w9tgxHDw==}
+ rollup@4.45.3:
+ resolution: {integrity: sha512-STwyHZF3G+CrmZhB+qDiROq9s8B5PrOCYN6dtmOvwz585XBnyeHk1GTEhHJtUVb355/9uZhOazyVclTt5uahzA==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
+
+ rollup@4.46.2:
+ resolution: {integrity: sha512-WMmLFI+Boh6xbop+OAGo9cQ3OgX9MIg7xOQjn+pTCwOkk+FNDAeAemXkJ3HzDJrVXleLOFVa1ipuc1AmEx1Dwg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -6742,9 +8460,19 @@ packages:
resolution: {integrity: sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==}
engines: {node: '>=0.12.0'}
+ run-async@4.0.5:
+ resolution: {integrity: sha512-oN9GTgxUNDBumHTTDmQ8dep6VIJbgj9S3dPP+9XylVLIK4xB9XTXtKWROd5pnhdXR9k0EgO1JRcNh0T+Ny2FsA==}
+ engines: {node: '>=0.12.0'}
+
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
+ run-series@1.1.9:
+ resolution: {integrity: sha512-Arc4hUN896vjkqCYrUXquBFtRZdv1PfLbTYP71efP6butxyQ0kWpiNJyAgsxscmQg1cqvHY32/UCBzXedTpU2g==}
+
+ run-waterfall@1.1.7:
+ resolution: {integrity: sha512-iFPgh7SatHXOG1ClcpdwHI63geV3Hc/iL6crGSyBlH2PY7Rm/za+zoKz6FfY/Qlw5K7JwSol8pseO8fN6CMhhQ==}
+
rxjs-exhaustmap-with-trailing@2.1.1:
resolution: {integrity: sha512-gK7nsKyPFsbjDeJ0NYTcZYGW5TbTFjT3iACa28Pwp3fIf9wT/JUR8vdlKYCjUOZKXYnXEk8eRZ4zcQyEURosIA==}
peerDependencies:
@@ -6776,8 +8504,8 @@ packages:
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- sanity@3.87.0:
- resolution: {integrity: sha512-Rrp+5xX19c/07Chj7o01TtY8QjPQgwNSQujjf1j3sxztTb15L5lIMkoMAYbWCjF2titb+f2FNB6pTlFuJM14IA==}
+ sanity@3.99.0:
+ resolution: {integrity: sha512-uNo8bEC6w4j87d6mUMpkTIjRR/bTtF+SKmvRl0XP7ZCjds9oK2+t4txL1Rr0VmV5KnCFZJhq8sP7aVJN5PPD5w==}
engines: {node: '>=18'}
hasBin: true
peerDependencies:
@@ -6785,6 +8513,15 @@ packages:
react-dom: ^18 || ^19
styled-components: ^6.1.15
+ sanity@4.3.0:
+ resolution: {integrity: sha512-UQd0NuU4D6ybEebpUiGh1T2r/Qoi7P/fw6mVixl7tupzuRF7V7pBsrzyKiASx2izj2CVE89dbZaEdA6rH5JkjQ==}
+ engines: {node: '>=20.19'}
+ hasBin: true
+ peerDependencies:
+ react: ^18 || ^19
+ react-dom: ^18 || ^19
+ styled-components: ^6.1.15
+
saxes@6.0.0:
resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
engines: {node: '>=v12.22.7'}
@@ -6798,8 +8535,8 @@ packages:
scroll-into-view-if-needed@3.1.0:
resolution: {integrity: sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==}
- scrollmirror@1.2.1:
- resolution: {integrity: sha512-cB6Nkhi+5XEVO9jJOE5eo/0RbIYIPGYJanDRZlowwwquakJZg/l8tGKbZGoKTrPZWOg5jk+ooN2EgSm3MDQz0Q==}
+ scrollmirror@1.2.4:
+ resolution: {integrity: sha512-UkEHHOV6j5cE3IsObQRK6vO4twSuhE4vtLD4UmX+doHgrtg2jRwXkz4O6cz0jcoxK5NGU7rFjyvLcWHzw7eQ5A==}
seek-bzip@1.0.6:
resolution: {integrity: sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==}
@@ -6823,6 +8560,11 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ semver@7.7.2:
+ resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
+ engines: {node: '>=10'}
+ hasBin: true
+
serialize-javascript@6.0.2:
resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
@@ -6837,6 +8579,12 @@ packages:
resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
engines: {node: '>= 0.4'}
+ sha256-uint8array@0.10.7:
+ resolution: {integrity: sha512-1Q6JQU4tX9NqsDGodej6pkrUVQVNapLZnvkwIhddH/JqzBZF1fSaxSWNY6sziXBE8aEa2twtGkXUrwzGeZCMpQ==}
+
+ sha@3.0.0:
+ resolution: {integrity: sha512-DOYnM37cNsLNSGIG/zZWch5CKIRNoLdYUQTQlcgkRkoYIUwDYjqDyye16YcDZg/OPdcbUgTKMjc4SY6TB7ZAPw==}
+
shallow-clone@3.0.1:
resolution: {integrity: sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==}
engines: {node: '>=8'}
@@ -6885,8 +8633,8 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- simple-wcswidth@1.0.1:
- resolution: {integrity: sha512-xMO/8eNREtaROt7tJvWJqHBDTMFN4eiQ5I4JRMuilwfnFcV5W9u7RUkueNkdw0jPqGMX36iCywelS5yilTuOxg==}
+ simple-wcswidth@1.1.2:
+ resolution: {integrity: sha512-j7piyCjAeTDSjzTSQ7DokZtMNwNlEAyxqSZeCS+CXH7fJ4jx3FuJ/mTW3mE+6JLs4VJBbcll0Kjn+KXI5t21Iw==}
sisteransi@1.0.5:
resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==}
@@ -6904,8 +8652,21 @@ packages:
peerDependencies:
slate: '>=0.99.0'
- slate-react@0.117.2:
- resolution: {integrity: sha512-aubV+L842mC2WxJHnks+T6Ay5SJH0Hd5SxQYWPzll6e0vmG3m92QjGxBdn9TxvR9HgGtEilOGi4aCx4jtjUnHw==}
+ slate-dom@0.117.4:
+ resolution: {integrity: sha512-eu5MMpphkCnr22R6hgFoQt/tEaHBjSdSy7uJjPOm++hCxstoLefp04EY50A4rXBovjkYoAncb9j8QoijZd0ENA==}
+ peerDependencies:
+ slate: '>=0.99.0'
+
+ slate-react@0.117.3:
+ resolution: {integrity: sha512-jn3pJ7hRcbZ8ImkXwq/Yosfm0wnVfW/ROAjb2exK2UswuEiRV5SAVVxvEKm6l4uY+qVtXoFn3A2ajfQmJxoQTQ==}
+ peerDependencies:
+ react: '>=18.2.0'
+ react-dom: '>=18.2.0'
+ slate: '>=0.114.0'
+ slate-dom: '>=0.116.0'
+
+ slate-react@0.117.4:
+ resolution: {integrity: sha512-9ckilyUzQS1VHJnstIpgInhcWnTDgv2Cd7m1HOQVl3zasChoapPSMftzT/wl/48grZaZYZIi4xVuzGTcFRUWFg==}
peerDependencies:
react: '>=18.2.0'
react-dom: '>=18.2.0'
@@ -6915,6 +8676,9 @@ packages:
slate@0.117.2:
resolution: {integrity: sha512-vHfMHrb8WJ6TFfl7yLXT+UlTzdbUQHpAfdGV0tJfECvbRMAOwAKkjgtAMI8FBmJ1t6BKUgX3ybXk3Y2JxQ2R1w==}
+ slate@0.118.0:
+ resolution: {integrity: sha512-XAHgaoN3IikTz83DlJWZWR7e4SjuRn1Ps6I717fL7yaITF7zhZm5z8zbU+TaPlHu4APCV6TCMIF33EZdW3GqfQ==}
+
slice-ansi@5.0.0:
resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==}
engines: {node: '>=12'}
@@ -6955,6 +8719,9 @@ packages:
space-separated-tokens@1.1.5:
resolution: {integrity: sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==}
+ space-separated-tokens@2.0.2:
+ resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
+
spdx-correct@3.2.0:
resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
@@ -6994,6 +8761,10 @@ packages:
resolution: {integrity: sha512-xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ stdin-discarder@0.2.2:
+ resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
+ engines: {node: '>=18'}
+
stream-each@1.2.3:
resolution: {integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==}
@@ -7003,8 +8774,8 @@ packages:
stream-shift@1.0.3:
resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==}
- streamx@2.22.0:
- resolution: {integrity: sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==}
+ streamx@2.22.1:
+ resolution: {integrity: sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA==}
string-argv@0.3.2:
resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
@@ -7026,6 +8797,10 @@ packages:
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
engines: {node: '>=18'}
+ string.prototype.includes@2.0.1:
+ resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==}
+ engines: {node: '>= 0.4'}
+
string.prototype.matchall@4.0.12:
resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==}
engines: {node: '>= 0.4'}
@@ -7099,6 +8874,9 @@ packages:
stubs@3.0.0:
resolution: {integrity: sha512-PdHt7hHUJKxvTCgbKX9C1V/ftOcjJQgz8BZwNfV5c4B6dcGqlpelTbJ999jBGZ2jYiPAwcX5dP6oBwVlBlUbxw==}
+ style-mod@4.1.2:
+ resolution: {integrity: sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==}
+
styled-components@6.1.18:
resolution: {integrity: sha512-Mvf3gJFzZCkhjY2Y/Fx9z1m3dxbza0uI9H1CbNZm/jSHCojzJhQ0R7bByrlFJINnMzz/gPulpoFFGymNwrsMcw==}
engines: {node: '>= 16'}
@@ -7128,6 +8906,9 @@ packages:
symbol-tree@3.2.4:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
+ symlink-or-copy@1.3.1:
+ resolution: {integrity: sha512-0K91MEXFpBUaywiwSSkmKjnGcasG/rVBXFLJz5DrgGabpYD6N+3yZrfD6uUIfpuTu65DZLHi7N8CizHc07BPZA==}
+
synckit@0.9.2:
resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==}
engines: {node: ^14.18.0 || >=16.0.0}
@@ -7136,8 +8917,8 @@ packages:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
- tar-fs@2.1.2:
- resolution: {integrity: sha512-EsaAXwxmx8UB7FRKqeozqEPop69DXcmYwTQwXvyAPF352HJsPdkVhvTaDPYqfNgruveJIJy3TA2l+2zj8LJIJA==}
+ tar-fs@2.1.3:
+ resolution: {integrity: sha512-090nwYJDmlhwFwEW3QQl+vaNnxsO2yVsd45eTKRBzSzu+hlb1w2K9inVq5b0ngXuLVqQ4ApvsUHHnu/zQNkWAg==}
tar-stream@1.6.2:
resolution: {integrity: sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==}
@@ -7180,6 +8961,9 @@ packages:
through2@3.0.2:
resolution: {integrity: sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==}
+ through2@4.0.2:
+ resolution: {integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==}
+
through@2.3.8:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
@@ -7202,6 +8986,10 @@ packages:
resolution: {integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==}
engines: {node: '>=12.0.0'}
+ tinyglobby@0.2.14:
+ resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==}
+ engines: {node: '>=12.0.0'}
+
tinypool@1.0.2:
resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==}
engines: {node: ^18.0.0 || >=20.0.0}
@@ -7422,6 +9210,9 @@ packages:
undici-types@6.20.0:
resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
+ undici-types@7.10.0:
+ resolution: {integrity: sha512-t5Fy/nfn+14LuOc2KNYg75vZqClpAiqscVvMygNnlsHBFpSXdJaYtXMcdNLpl/Qvc3P2cB3s6lOV51nqsFq4ag==}
+
undici@5.29.0:
resolution: {integrity: sha512-raqeBD6NQK4SkWhQzeYKd1KmIG6dllBOTt55Rmkt4HtI9mwdWtJljnrXjAFUBLTSN67HWrOIZ3EPF4kjUw80Bg==}
engines: {node: '>=14.0'}
@@ -7453,12 +9244,21 @@ packages:
unist-util-filter@2.0.3:
resolution: {integrity: sha512-8k6Jl/KLFqIRTHydJlHh6+uFgqYHq66pV75pZgr1JwfyFSjbWb12yfb0yitW/0TbHXjr9U4G9BQpOvMANB+ExA==}
+ unist-util-filter@5.0.1:
+ resolution: {integrity: sha512-pHx7D4Zt6+TsfwylH9+lYhBhzyhEnCXs/lbq/Hstxno5z4gVdyc2WEW0asfjGKPyG4pEKrnBv5hdkO6+aRnQJw==}
+
unist-util-is@4.1.0:
resolution: {integrity: sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg==}
+ unist-util-is@6.0.0:
+ resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
+
unist-util-visit-parents@3.1.1:
resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==}
+ unist-util-visit-parents@6.0.1:
+ resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==}
+
universal-user-agent@6.0.1:
resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==}
@@ -7495,8 +9295,8 @@ packages:
url-parse@1.5.10:
resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
- urlpattern-polyfill@10.0.0:
- resolution: {integrity: sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==}
+ urlpattern-polyfill@10.1.0:
+ resolution: {integrity: sha512-IGjKp/o0NL3Bso1PymYURCJxMPNAf/ILOpendP9f5B6e1rTJgdgiOvgfoT8VxCAdY+Wisb9uhGaJJf3yZ2V9nw==}
use-callback-ref@1.3.3:
resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
@@ -7518,13 +9318,18 @@ packages:
peerDependencies:
react: ^18.3 || ^19.0.0-0
+ use-effect-event@2.0.3:
+ resolution: {integrity: sha512-fz1en+z3fYXCXx3nMB8hXDMuygBltifNKZq29zDx+xNJ+1vEs6oJlYd9sK31vxJ0YI534VUsHEBY0k2BATsmBQ==}
+ peerDependencies:
+ react: ^18.3 || ^19.0.0-0
+
use-hot-module-reload@2.0.0:
resolution: {integrity: sha512-RbL/OY1HjHNf5BYSFV3yDtQhIGKjCx9ntEjnUBYsOGc9fTo94nyFTcjtD42/twJkPgMljWpszUIpTGD3LuwHSg==}
peerDependencies:
react: '>=17.0.0'
- use-isomorphic-layout-effect@1.2.0:
- resolution: {integrity: sha512-q6ayo8DWoPZT0VdG4u3D3uxcgONP3Mevx2i2b0434cwWBoL+aelL1DzkXI6w3PhTZzUeR2kaVlZn70iCiseP6w==}
+ use-isomorphic-layout-effect@1.2.1:
+ resolution: {integrity: sha512-tpZZ+EX0gaghDAiFR37hj5MgY6ZN55kLiPkJsKxBMZ6GZdOSPJXiOzPM984oPYZ5AnehYx5WQp1+ME8I/P/pRA==}
peerDependencies:
'@types/react': '*'
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
@@ -7629,6 +9434,46 @@ packages:
yaml:
optional: true
+ vite@6.3.5:
+ resolution: {integrity: sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ jiti: '>=1.21.0'
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ sass-embedded: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
+
vitest@3.1.2:
resolution: {integrity: sha512-WaxpJe092ID1C0mr+LH9MmNrhfzi8I65EX/NRU/Ld016KqQNRgxSOlGNP1hHN+a/F8L15Mh8klwaF77zR3GeDQ==}
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
@@ -7661,6 +9506,9 @@ packages:
resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==}
engines: {node: '>=0.10.0'}
+ w3c-keyname@2.2.8:
+ resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==}
+
w3c-xmlserializer@5.0.0:
resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
engines: {node: '>=18'}
@@ -7702,6 +9550,10 @@ packages:
resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
engines: {node: '>= 0.4'}
+ which-pm@3.0.1:
+ resolution: {integrity: sha512-v2JrMq0waAI4ju1xU5x3blsxBBMgdgZve580iYMN5frDaLGjbA24fok7wKCsya8KLVO19Ju4XDc5+zTZCJkQfg==}
+ engines: {node: '>=18.12'}
+
which-typed-array@1.1.18:
resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==}
engines: {node: '>= 0.4'}
@@ -7766,6 +9618,18 @@ packages:
utf-8-validate:
optional: true
+ ws@8.18.3:
+ resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==}
+ engines: {node: '>=10.0.0'}
+ peerDependencies:
+ bufferutil: ^4.0.1
+ utf-8-validate: '>=5.0.2'
+ peerDependenciesMeta:
+ bufferutil:
+ optional: true
+ utf-8-validate:
+ optional: true
+
xdg-basedir@4.0.0:
resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==}
engines: {node: '>=8'}
@@ -7787,6 +9651,9 @@ packages:
xstate@5.20.0:
resolution: {integrity: sha512-lFQ0fLwVa0OMZnjNP8zUkt2fwIS85ZBNPvxE41APVYhYj0++aTssgmsnTAiBHdKYbgnd6+L8DRTZ9jPZAFPuyw==}
+ xstate@5.20.1:
+ resolution: {integrity: sha512-i9ZpNnm/XhCOMUxae1suT8PjYNTStZWbhmuKt4xeTPaYG5TS0Fz0i+Ka5yxoNPpaHW3VW6JIowrwFgSTZONxig==}
+
xtend@4.0.2:
resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
engines: {node: '>=0.4'}
@@ -7815,6 +9682,11 @@ packages:
engines: {node: '>= 14'}
hasBin: true
+ yaml@2.8.0:
+ resolution: {integrity: sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==}
+ engines: {node: '>= 14.6'}
+ hasBin: true
+
yargs-parser@20.2.9:
resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
engines: {node: '>=10'}
@@ -7890,6 +9762,24 @@ packages:
use-sync-external-store:
optional: true
+ zustand@5.0.7:
+ resolution: {integrity: sha512-Ot6uqHDW/O2VdYsKLLU8GQu8sCOM1LcoE8RwvLv9uuRT9s6SOHCKs0ZEOhxg+I1Ld+A1Q5lwx+UlKXXUoCZITg==}
+ engines: {node: '>=12.20.0'}
+ peerDependencies:
+ '@types/react': '>=18.0.0'
+ immer: '>=9.0.6'
+ react: '>=18.0.0'
+ use-sync-external-store: '>=1.2.0'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ immer:
+ optional: true
+ react:
+ optional: true
+ use-sync-external-store:
+ optional: true
+
zx@8.5.3:
resolution: {integrity: sha512-TsGLAt8Ngr4wDXLZmN9BT+6FWVLFbqdQ0qpXkV3tIfH7F+MgN/WUeSY7W4nNqAntjWunmnRaznpyxtJRPhCbUQ==}
engines: {node: '>= 12.17.0'}
@@ -7927,20 +9817,75 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
+ '@architect/asap@7.0.10':
+ dependencies:
+ '@aws-lite/client': 0.21.10
+ '@aws-lite/s3': 0.1.22
+
+ '@architect/hydrate@4.0.8':
+ dependencies:
+ '@architect/inventory': 4.0.9
+ '@architect/utils': 4.0.6
+ acorn-loose: 8.4.0
+ chalk: 4.1.2
+ esquery: 1.6.0
+ glob: 10.4.5
+ minimist: 1.2.8
+ run-series: 1.1.9
+ symlink-or-copy: 1.3.1
+
+ '@architect/inventory@4.0.9':
+ dependencies:
+ '@architect/asap': 7.0.10
+ '@architect/parser': 7.0.1
+ '@architect/utils': 4.0.6
+ '@aws-lite/client': 0.21.10
+ '@aws-lite/ssm': 0.2.5
+ lambda-runtimes: 2.0.5
+
+ '@architect/parser@7.0.1': {}
+
+ '@architect/utils@4.0.6':
+ dependencies:
+ '@aws-lite/client': 0.21.10
+ chalk: 4.1.2
+ glob: 10.3.16
+ path-sort: 0.1.0
+ restore-cursor: 3.1.0
+ run-series: 1.1.9
+ run-waterfall: 1.1.7
+ sha: 3.0.0
+
'@asamuzakjp/css-color@3.1.5':
dependencies:
- '@csstools/css-calc': 2.1.3(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
'@csstools/css-color-parser': 3.0.9(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
'@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
'@csstools/css-tokenizer': 3.0.3
lru-cache: 10.4.3
+ '@asamuzakjp/css-color@3.2.0':
+ dependencies:
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-color-parser': 3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+ lru-cache: 10.4.3
+
'@asamuzakjp/dom-selector@2.0.2':
dependencies:
bidi-js: 1.0.3
css-tree: 2.3.1
is-potential-custom-element-name: 1.0.1
+ '@aws-lite/client@0.21.10':
+ dependencies:
+ aws4: 1.13.2
+
+ '@aws-lite/s3@0.1.22': {}
+
+ '@aws-lite/ssm@0.2.5': {}
+
'@babel/code-frame@7.26.2':
dependencies:
'@babel/helper-validator-identifier': 7.25.9
@@ -8070,6 +10015,20 @@ snapshots:
regexpu-core: 6.2.0
semver: 6.3.1
+ '@babel/helper-create-regexp-features-plugin@7.27.0(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ regexpu-core: 6.2.0
+ semver: 6.3.1
+
+ '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-annotate-as-pure': 7.27.3
+ regexpu-core: 6.2.0
+ semver: 6.3.1
+
'@babel/helper-define-polyfill-provider@0.6.4(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8077,7 +10036,18 @@ snapshots:
'@babel/helper-plugin-utils': 7.26.5
debug: 4.4.1(supports-color@8.1.1)
lodash.debounce: 4.0.8
- resolve: 1.22.8
+ resolve: 1.22.10
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
+ debug: 4.4.1(supports-color@8.1.1)
+ lodash.debounce: 4.0.8
+ resolve: 1.22.10
transitivePeerDependencies:
- supports-color
@@ -8150,6 +10120,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-wrap-function': 7.27.1
+ '@babel/traverse': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-replace-supers@7.26.5(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8170,7 +10149,7 @@ snapshots:
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
dependencies:
- '@babel/traverse': 7.27.0
+ '@babel/traverse': 7.28.0
'@babel/types': 7.27.0
transitivePeerDependencies:
- supports-color
@@ -8196,12 +10175,20 @@ snapshots:
'@babel/helper-wrap-function@7.25.9':
dependencies:
- '@babel/template': 7.27.0
+ '@babel/template': 7.27.2
'@babel/traverse': 7.27.0
'@babel/types': 7.27.0
transitivePeerDependencies:
- supports-color
+ '@babel/helper-wrap-function@7.27.1':
+ dependencies:
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.28.0
+ '@babel/types': 7.28.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helpers@7.27.0':
dependencies:
'@babel/template': 7.27.0
@@ -8228,16 +10215,34 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/traverse': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8247,6 +10252,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.0)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8255,6 +10269,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/traverse': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8267,16 +10289,30 @@ snapshots:
dependencies:
'@babel/core': 7.26.10
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+
'@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8303,11 +10339,22 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.28.0)
+ '@babel/helper-plugin-utils': 7.26.5
+
'@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-async-generator-functions@7.26.8(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8317,6 +10364,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.0)
+ '@babel/traverse': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8326,16 +10382,35 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.26.5(@babel/core@7.26.10)':
+ '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/plugin-transform-block-scoped-functions@7.26.5(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-block-scoping@7.27.0(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-block-scoping@7.28.0(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8344,6 +10419,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0)
+ '@babel/helper-plugin-utils': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8352,6 +10435,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-class-static-block@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0)
+ '@babel/helper-plugin-utils': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8364,49 +10455,115 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-classes@7.28.0(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-globals': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.0)
+ '@babel/traverse': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
'@babel/template': 7.27.0
+ '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/template': 7.27.2
+
'@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/traverse': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
+ '@babel/plugin-transform-explicit-resource-management@7.28.0(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.0)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-for-of@7.26.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8415,6 +10572,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8424,26 +10589,55 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/traverse': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8452,6 +10646,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0)
+ '@babel/helper-plugin-utils': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8478,6 +10680,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0)
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+ '@babel/traverse': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8486,27 +10698,56 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0)
+ '@babel/helper-plugin-utils': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-nullish-coalescing-operator@7.26.6(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8514,6 +10755,17 @@ snapshots:
'@babel/helper-plugin-utils': 7.26.5
'@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10)
+ '@babel/plugin-transform-object-rest-spread@7.28.0(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.0)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.0)
+ '@babel/traverse': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8522,11 +10774,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.0)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8535,11 +10800,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8548,6 +10826,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0)
+ '@babel/helper-plugin-utils': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8557,16 +10843,35 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0)
+ '@babel/helper-plugin-utils': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-react-display-name@7.28.0(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8574,16 +10879,33 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.0)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8595,34 +10917,72 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.0)
+ '@babel/types': 7.28.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-regenerator@7.27.0(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
regenerator-transform: 0.15.2
+ '@babel/plugin-transform-regenerator@7.28.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8631,21 +10991,44 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-template-literals@7.26.8(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-typeof-symbol@7.27.0(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-typescript@7.27.0(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8673,24 +11056,47 @@ snapshots:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-create-regexp-features-plugin': 7.27.0(@babel/core@7.26.10)
'@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/preset-env@7.26.9(@babel/core@7.26.10)':
dependencies:
'@babel/compat-data': 7.26.8
@@ -8766,6 +11172,82 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/preset-env@7.28.0(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/compat-data': 7.28.0
+ '@babel/core': 7.28.0
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-validator-option': 7.27.1
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.0)
+ '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.28.0)
+ '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.0)
+ '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.28.0)
+ '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-class-static-block': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-classes': 7.28.0(@babel/core@7.28.0)
+ '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.0)
+ '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-explicit-resource-management': 7.28.0(@babel/core@7.28.0)
+ '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-object-rest-spread': 7.28.0(@babel/core@7.28.0)
+ '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.0)
+ '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-regenerator': 7.28.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.28.0)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.28.0)
+ babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.0)
+ babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.0)
+ babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.0)
+ core-js-compat: 3.44.0
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8773,6 +11255,13 @@ snapshots:
'@babel/types': 7.27.0
esutils: 2.0.3
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/types': 7.27.0
+ esutils: 2.0.3
+
'@babel/preset-react@7.26.3(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8785,6 +11274,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/preset-react@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-validator-option': 7.27.1
+ '@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.28.0)
+ '@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-react-pure-annotations': 7.27.1(@babel/core@7.28.0)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/preset-typescript@7.27.0(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
@@ -8816,10 +11317,21 @@ snapshots:
pirates: 4.0.7
source-map-support: 0.5.21
+ '@babel/register@7.27.1(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ clone-deep: 4.0.1
+ find-cache-dir: 2.1.0
+ make-dir: 2.1.0
+ pirates: 4.0.7
+ source-map-support: 0.5.21
+
'@babel/runtime@7.27.0':
dependencies:
regenerator-runtime: 0.14.1
+ '@babel/runtime@7.28.2': {}
+
'@babel/template@7.27.0':
dependencies:
'@babel/code-frame': 7.26.2
@@ -8866,8 +11378,76 @@ snapshots:
'@babel/helper-string-parser': 7.27.1
'@babel/helper-validator-identifier': 7.27.1
+ '@babel/types@7.28.2':
+ dependencies:
+ '@babel/helper-string-parser': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+
'@bcoe/v8-coverage@1.0.2': {}
+ '@codemirror/autocomplete@6.18.6':
+ dependencies:
+ '@codemirror/language': 6.11.2
+ '@codemirror/state': 6.5.2
+ '@codemirror/view': 6.38.1
+ '@lezer/common': 1.2.3
+
+ '@codemirror/commands@6.8.1':
+ dependencies:
+ '@codemirror/language': 6.11.2
+ '@codemirror/state': 6.5.2
+ '@codemirror/view': 6.38.1
+ '@lezer/common': 1.2.3
+
+ '@codemirror/lang-javascript@6.2.4':
+ dependencies:
+ '@codemirror/autocomplete': 6.18.6
+ '@codemirror/language': 6.11.2
+ '@codemirror/lint': 6.8.5
+ '@codemirror/state': 6.5.2
+ '@codemirror/view': 6.38.1
+ '@lezer/common': 1.2.3
+ '@lezer/javascript': 1.5.1
+
+ '@codemirror/language@6.11.2':
+ dependencies:
+ '@codemirror/state': 6.5.2
+ '@codemirror/view': 6.38.1
+ '@lezer/common': 1.2.3
+ '@lezer/highlight': 1.2.1
+ '@lezer/lr': 1.4.2
+ style-mod: 4.1.2
+
+ '@codemirror/lint@6.8.5':
+ dependencies:
+ '@codemirror/state': 6.5.2
+ '@codemirror/view': 6.38.1
+ crelt: 1.0.6
+
+ '@codemirror/search@6.5.11':
+ dependencies:
+ '@codemirror/state': 6.5.2
+ '@codemirror/view': 6.38.1
+ crelt: 1.0.6
+
+ '@codemirror/state@6.5.2':
+ dependencies:
+ '@marijn/find-cluster-break': 1.0.2
+
+ '@codemirror/theme-one-dark@6.1.3':
+ dependencies:
+ '@codemirror/language': 6.11.2
+ '@codemirror/state': 6.5.2
+ '@codemirror/view': 6.38.1
+ '@lezer/highlight': 1.2.1
+
+ '@codemirror/view@6.38.1':
+ dependencies:
+ '@codemirror/state': 6.5.2
+ crelt: 1.0.6
+ style-mod: 4.1.2
+ w3c-keyname: 2.2.8
+
'@commitlint/cli@19.8.0(@types/node@22.13.9)(typescript@5.8.3)':
dependencies:
'@commitlint/format': 19.8.0
@@ -8910,7 +11490,7 @@ snapshots:
'@commitlint/is-ignored@19.8.0':
dependencies:
'@commitlint/types': 19.8.0
- semver: 7.7.1
+ semver: 7.7.2
'@commitlint/lint@19.8.0':
dependencies:
@@ -8980,15 +11560,27 @@ snapshots:
'@csstools/color-helpers@5.0.2': {}
- '@csstools/css-calc@2.1.3(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)':
+ '@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)':
dependencies:
'@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
'@csstools/css-tokenizer': 3.0.3
+ '@csstools/css-calc@2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
+ dependencies:
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+
+ '@csstools/css-color-parser@3.0.10(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
+ dependencies:
+ '@csstools/color-helpers': 5.0.2
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-tokenizer': 3.0.4
+
'@csstools/css-color-parser@3.0.9(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)':
dependencies:
'@csstools/color-helpers': 5.0.2
- '@csstools/css-calc': 2.1.3(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ '@csstools/css-calc': 2.1.4(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
'@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
'@csstools/css-tokenizer': 3.0.3
@@ -8996,13 +11588,28 @@ snapshots:
dependencies:
'@csstools/css-tokenizer': 3.0.3
+ '@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4)':
+ dependencies:
+ '@csstools/css-tokenizer': 3.0.4
+
'@csstools/css-tokenizer@3.0.3': {}
+ '@csstools/css-tokenizer@3.0.4': {}
+
+ '@date-fns/tz@1.3.1': {}
+
+ '@date-fns/utc@2.1.1': {}
+
'@dnd-kit/accessibility@3.1.1(react@18.3.1)':
dependencies:
react: 18.3.1
tslib: 2.8.1
+ '@dnd-kit/accessibility@3.1.1(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ tslib: 2.8.1
+
'@dnd-kit/core@6.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@dnd-kit/accessibility': 3.1.1(react@18.3.1)
@@ -9011,6 +11618,14 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
tslib: 2.8.1
+ '@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@dnd-kit/accessibility': 3.1.1(react@19.1.0)
+ '@dnd-kit/utilities': 3.2.2(react@19.1.0)
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ tslib: 2.8.1
+
'@dnd-kit/modifiers@6.0.1(@dnd-kit/core@6.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@dnd-kit/core': 6.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -9018,6 +11633,13 @@ snapshots:
react: 18.3.1
tslib: 2.8.1
+ '@dnd-kit/modifiers@6.0.1(@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@dnd-kit/core': 6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@dnd-kit/utilities': 3.2.2(react@19.1.0)
+ react: 19.1.0
+ tslib: 2.8.1
+
'@dnd-kit/sortable@7.0.2(@dnd-kit/core@6.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@dnd-kit/core': 6.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -9025,11 +11647,23 @@ snapshots:
react: 18.3.1
tslib: 2.8.1
+ '@dnd-kit/sortable@7.0.2(@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@dnd-kit/core': 6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@dnd-kit/utilities': 3.2.2(react@19.1.0)
+ react: 19.1.0
+ tslib: 2.8.1
+
'@dnd-kit/utilities@3.2.2(react@18.3.1)':
dependencies:
react: 18.3.1
tslib: 2.8.1
+ '@dnd-kit/utilities@3.2.2(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ tslib: 2.8.1
+
'@emnapi/core@1.4.3':
dependencies:
'@emnapi/wasi-threads': 1.0.2
@@ -9063,6 +11697,9 @@ snapshots:
'@esbuild/aix-ppc64@0.25.6':
optional: true
+ '@esbuild/aix-ppc64@0.25.8':
+ optional: true
+
'@esbuild/android-arm64@0.21.5':
optional: true
@@ -9072,6 +11709,9 @@ snapshots:
'@esbuild/android-arm64@0.25.6':
optional: true
+ '@esbuild/android-arm64@0.25.8':
+ optional: true
+
'@esbuild/android-arm@0.21.5':
optional: true
@@ -9081,6 +11721,9 @@ snapshots:
'@esbuild/android-arm@0.25.6':
optional: true
+ '@esbuild/android-arm@0.25.8':
+ optional: true
+
'@esbuild/android-x64@0.21.5':
optional: true
@@ -9090,6 +11733,9 @@ snapshots:
'@esbuild/android-x64@0.25.6':
optional: true
+ '@esbuild/android-x64@0.25.8':
+ optional: true
+
'@esbuild/darwin-arm64@0.21.5':
optional: true
@@ -9099,6 +11745,9 @@ snapshots:
'@esbuild/darwin-arm64@0.25.6':
optional: true
+ '@esbuild/darwin-arm64@0.25.8':
+ optional: true
+
'@esbuild/darwin-x64@0.21.5':
optional: true
@@ -9108,6 +11757,9 @@ snapshots:
'@esbuild/darwin-x64@0.25.6':
optional: true
+ '@esbuild/darwin-x64@0.25.8':
+ optional: true
+
'@esbuild/freebsd-arm64@0.21.5':
optional: true
@@ -9117,6 +11769,9 @@ snapshots:
'@esbuild/freebsd-arm64@0.25.6':
optional: true
+ '@esbuild/freebsd-arm64@0.25.8':
+ optional: true
+
'@esbuild/freebsd-x64@0.21.5':
optional: true
@@ -9126,6 +11781,9 @@ snapshots:
'@esbuild/freebsd-x64@0.25.6':
optional: true
+ '@esbuild/freebsd-x64@0.25.8':
+ optional: true
+
'@esbuild/linux-arm64@0.21.5':
optional: true
@@ -9135,6 +11793,9 @@ snapshots:
'@esbuild/linux-arm64@0.25.6':
optional: true
+ '@esbuild/linux-arm64@0.25.8':
+ optional: true
+
'@esbuild/linux-arm@0.21.5':
optional: true
@@ -9144,6 +11805,9 @@ snapshots:
'@esbuild/linux-arm@0.25.6':
optional: true
+ '@esbuild/linux-arm@0.25.8':
+ optional: true
+
'@esbuild/linux-ia32@0.21.5':
optional: true
@@ -9153,6 +11817,9 @@ snapshots:
'@esbuild/linux-ia32@0.25.6':
optional: true
+ '@esbuild/linux-ia32@0.25.8':
+ optional: true
+
'@esbuild/linux-loong64@0.21.5':
optional: true
@@ -9162,6 +11829,9 @@ snapshots:
'@esbuild/linux-loong64@0.25.6':
optional: true
+ '@esbuild/linux-loong64@0.25.8':
+ optional: true
+
'@esbuild/linux-mips64el@0.21.5':
optional: true
@@ -9171,6 +11841,9 @@ snapshots:
'@esbuild/linux-mips64el@0.25.6':
optional: true
+ '@esbuild/linux-mips64el@0.25.8':
+ optional: true
+
'@esbuild/linux-ppc64@0.21.5':
optional: true
@@ -9180,6 +11853,9 @@ snapshots:
'@esbuild/linux-ppc64@0.25.6':
optional: true
+ '@esbuild/linux-ppc64@0.25.8':
+ optional: true
+
'@esbuild/linux-riscv64@0.21.5':
optional: true
@@ -9189,6 +11865,9 @@ snapshots:
'@esbuild/linux-riscv64@0.25.6':
optional: true
+ '@esbuild/linux-riscv64@0.25.8':
+ optional: true
+
'@esbuild/linux-s390x@0.21.5':
optional: true
@@ -9198,6 +11877,9 @@ snapshots:
'@esbuild/linux-s390x@0.25.6':
optional: true
+ '@esbuild/linux-s390x@0.25.8':
+ optional: true
+
'@esbuild/linux-x64@0.21.5':
optional: true
@@ -9207,12 +11889,18 @@ snapshots:
'@esbuild/linux-x64@0.25.6':
optional: true
+ '@esbuild/linux-x64@0.25.8':
+ optional: true
+
'@esbuild/netbsd-arm64@0.25.2':
optional: true
'@esbuild/netbsd-arm64@0.25.6':
optional: true
+ '@esbuild/netbsd-arm64@0.25.8':
+ optional: true
+
'@esbuild/netbsd-x64@0.21.5':
optional: true
@@ -9222,12 +11910,18 @@ snapshots:
'@esbuild/netbsd-x64@0.25.6':
optional: true
+ '@esbuild/netbsd-x64@0.25.8':
+ optional: true
+
'@esbuild/openbsd-arm64@0.25.2':
optional: true
'@esbuild/openbsd-arm64@0.25.6':
optional: true
+ '@esbuild/openbsd-arm64@0.25.8':
+ optional: true
+
'@esbuild/openbsd-x64@0.21.5':
optional: true
@@ -9237,9 +11931,15 @@ snapshots:
'@esbuild/openbsd-x64@0.25.6':
optional: true
+ '@esbuild/openbsd-x64@0.25.8':
+ optional: true
+
'@esbuild/openharmony-arm64@0.25.6':
optional: true
+ '@esbuild/openharmony-arm64@0.25.8':
+ optional: true
+
'@esbuild/sunos-x64@0.21.5':
optional: true
@@ -9249,6 +11949,9 @@ snapshots:
'@esbuild/sunos-x64@0.25.6':
optional: true
+ '@esbuild/sunos-x64@0.25.8':
+ optional: true
+
'@esbuild/win32-arm64@0.21.5':
optional: true
@@ -9258,6 +11961,9 @@ snapshots:
'@esbuild/win32-arm64@0.25.6':
optional: true
+ '@esbuild/win32-arm64@0.25.8':
+ optional: true
+
'@esbuild/win32-ia32@0.21.5':
optional: true
@@ -9267,6 +11973,9 @@ snapshots:
'@esbuild/win32-ia32@0.25.6':
optional: true
+ '@esbuild/win32-ia32@0.25.8':
+ optional: true
+
'@esbuild/win32-x64@0.21.5':
optional: true
@@ -9276,9 +11985,17 @@ snapshots:
'@esbuild/win32-x64@0.25.6':
optional: true
- '@eslint-community/eslint-utils@4.4.1(eslint@9.25.1(jiti@2.4.2))':
+ '@esbuild/win32-x64@0.25.8':
+ optional: true
+
+ '@eslint-community/eslint-utils@4.4.1(eslint@9.25.1(jiti@2.5.1))':
dependencies:
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.25.1(jiti@2.5.1)
+ eslint-visitor-keys: 3.4.3
+
+ '@eslint-community/eslint-utils@4.4.1(eslint@9.32.0(jiti@2.5.1))':
+ dependencies:
+ eslint: 9.32.0(jiti@2.5.1)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {}
@@ -9291,12 +12008,26 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@eslint/config-array@0.21.0':
+ dependencies:
+ '@eslint/object-schema': 2.1.6
+ debug: 4.4.1(supports-color@8.1.1)
+ minimatch: 3.1.2
+ transitivePeerDependencies:
+ - supports-color
+
'@eslint/config-helpers@0.2.1': {}
+ '@eslint/config-helpers@0.3.0': {}
+
'@eslint/core@0.13.0':
dependencies:
'@types/json-schema': 7.0.15
+ '@eslint/core@0.15.1':
+ dependencies:
+ '@types/json-schema': 7.0.15
+
'@eslint/eslintrc@3.3.1':
dependencies:
ajv: 6.12.6
@@ -9313,6 +12044,8 @@ snapshots:
'@eslint/js@9.25.1': {}
+ '@eslint/js@9.32.0': {}
+
'@eslint/object-schema@2.1.6': {}
'@eslint/plugin-kit@0.2.8':
@@ -9320,23 +12053,57 @@ snapshots:
'@eslint/core': 0.13.0
levn: 0.4.1
+ '@eslint/plugin-kit@0.3.4':
+ dependencies:
+ '@eslint/core': 0.15.1
+ levn: 0.4.1
+
'@fastify/busboy@2.1.1': {}
'@floating-ui/core@1.6.9':
dependencies:
'@floating-ui/utils': 0.2.9
+ '@floating-ui/core@1.7.3':
+ dependencies:
+ '@floating-ui/utils': 0.2.10
+
'@floating-ui/dom@1.6.13':
dependencies:
'@floating-ui/core': 1.6.9
'@floating-ui/utils': 0.2.9
+ '@floating-ui/dom@1.7.3':
+ dependencies:
+ '@floating-ui/core': 1.7.3
+ '@floating-ui/utils': 0.2.10
+
'@floating-ui/react-dom@2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@floating-ui/dom': 1.6.13
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@floating-ui/react-dom@2.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@floating-ui/dom': 1.6.13
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+
+ '@floating-ui/react-dom@2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@floating-ui/dom': 1.7.3
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ '@floating-ui/react-dom@2.1.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@floating-ui/dom': 1.7.3
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+
+ '@floating-ui/utils@0.2.10': {}
+
'@floating-ui/utils@0.2.9': {}
'@gerrit0/mini-shiki@3.3.0':
@@ -9390,27 +12157,44 @@ snapshots:
'@humanwhocodes/retry@0.4.2': {}
- '@inquirer/checkbox@4.1.5(@types/node@22.13.9)':
+ '@inquirer/checkbox@4.1.5(@types/node@24.2.0)':
+ dependencies:
+ '@inquirer/core': 10.1.10(@types/node@24.2.0)
+ '@inquirer/figures': 1.0.11
+ '@inquirer/type': 3.0.6(@types/node@24.2.0)
+ ansi-escapes: 4.3.2
+ yoctocolors-cjs: 2.1.2
+ optionalDependencies:
+ '@types/node': 24.2.0
+
+ '@inquirer/checkbox@4.2.0(@types/node@24.2.0)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.13.9)
- '@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.6(@types/node@22.13.9)
+ '@inquirer/core': 10.1.15(@types/node@24.2.0)
+ '@inquirer/figures': 1.0.13
+ '@inquirer/type': 3.0.8(@types/node@24.2.0)
ansi-escapes: 4.3.2
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 24.2.0
- '@inquirer/confirm@5.1.9(@types/node@22.13.9)':
+ '@inquirer/confirm@5.1.14(@types/node@24.2.0)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.13.9)
- '@inquirer/type': 3.0.6(@types/node@22.13.9)
+ '@inquirer/core': 10.1.15(@types/node@24.2.0)
+ '@inquirer/type': 3.0.8(@types/node@24.2.0)
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 24.2.0
+
+ '@inquirer/confirm@5.1.9(@types/node@24.2.0)':
+ dependencies:
+ '@inquirer/core': 10.1.10(@types/node@24.2.0)
+ '@inquirer/type': 3.0.6(@types/node@24.2.0)
+ optionalDependencies:
+ '@types/node': 24.2.0
- '@inquirer/core@10.1.10(@types/node@22.13.9)':
+ '@inquirer/core@10.1.10(@types/node@24.2.0)':
dependencies:
'@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.6(@types/node@22.13.9)
+ '@inquirer/type': 3.0.6(@types/node@24.2.0)
ansi-escapes: 4.3.2
cli-width: 4.1.0
mute-stream: 2.0.0
@@ -9418,93 +12202,192 @@ snapshots:
wrap-ansi: 6.2.0
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 24.2.0
+
+ '@inquirer/core@10.1.15(@types/node@24.2.0)':
+ dependencies:
+ '@inquirer/figures': 1.0.13
+ '@inquirer/type': 3.0.8(@types/node@24.2.0)
+ ansi-escapes: 4.3.2
+ cli-width: 4.1.0
+ mute-stream: 2.0.0
+ signal-exit: 4.1.0
+ wrap-ansi: 6.2.0
+ yoctocolors-cjs: 2.1.2
+ optionalDependencies:
+ '@types/node': 24.2.0
- '@inquirer/editor@4.2.10(@types/node@22.13.9)':
+ '@inquirer/editor@4.2.10(@types/node@24.2.0)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.13.9)
- '@inquirer/type': 3.0.6(@types/node@22.13.9)
+ '@inquirer/core': 10.1.10(@types/node@24.2.0)
+ '@inquirer/type': 3.0.6(@types/node@24.2.0)
external-editor: 3.1.0
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 24.2.0
+
+ '@inquirer/editor@4.2.15(@types/node@24.2.0)':
+ dependencies:
+ '@inquirer/core': 10.1.15(@types/node@24.2.0)
+ '@inquirer/type': 3.0.8(@types/node@24.2.0)
+ external-editor: 3.1.0
+ optionalDependencies:
+ '@types/node': 24.2.0
- '@inquirer/expand@4.0.12(@types/node@22.13.9)':
+ '@inquirer/expand@4.0.12(@types/node@24.2.0)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.13.9)
- '@inquirer/type': 3.0.6(@types/node@22.13.9)
+ '@inquirer/core': 10.1.10(@types/node@24.2.0)
+ '@inquirer/type': 3.0.6(@types/node@24.2.0)
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 24.2.0
+
+ '@inquirer/expand@4.0.17(@types/node@24.2.0)':
+ dependencies:
+ '@inquirer/core': 10.1.15(@types/node@24.2.0)
+ '@inquirer/type': 3.0.8(@types/node@24.2.0)
+ yoctocolors-cjs: 2.1.2
+ optionalDependencies:
+ '@types/node': 24.2.0
'@inquirer/figures@1.0.11': {}
- '@inquirer/input@4.1.9(@types/node@22.13.9)':
+ '@inquirer/figures@1.0.13': {}
+
+ '@inquirer/input@4.1.9(@types/node@24.2.0)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.13.9)
- '@inquirer/type': 3.0.6(@types/node@22.13.9)
+ '@inquirer/core': 10.1.10(@types/node@24.2.0)
+ '@inquirer/type': 3.0.6(@types/node@24.2.0)
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 24.2.0
- '@inquirer/number@3.0.12(@types/node@22.13.9)':
+ '@inquirer/input@4.2.1(@types/node@24.2.0)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.13.9)
- '@inquirer/type': 3.0.6(@types/node@22.13.9)
+ '@inquirer/core': 10.1.15(@types/node@24.2.0)
+ '@inquirer/type': 3.0.8(@types/node@24.2.0)
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 24.2.0
+
+ '@inquirer/number@3.0.12(@types/node@24.2.0)':
+ dependencies:
+ '@inquirer/core': 10.1.10(@types/node@24.2.0)
+ '@inquirer/type': 3.0.6(@types/node@24.2.0)
+ optionalDependencies:
+ '@types/node': 24.2.0
+
+ '@inquirer/number@3.0.17(@types/node@24.2.0)':
+ dependencies:
+ '@inquirer/core': 10.1.15(@types/node@24.2.0)
+ '@inquirer/type': 3.0.8(@types/node@24.2.0)
+ optionalDependencies:
+ '@types/node': 24.2.0
- '@inquirer/password@4.0.12(@types/node@22.13.9)':
+ '@inquirer/password@4.0.12(@types/node@24.2.0)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.13.9)
- '@inquirer/type': 3.0.6(@types/node@22.13.9)
+ '@inquirer/core': 10.1.10(@types/node@24.2.0)
+ '@inquirer/type': 3.0.6(@types/node@24.2.0)
ansi-escapes: 4.3.2
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 24.2.0
+
+ '@inquirer/password@4.0.17(@types/node@24.2.0)':
+ dependencies:
+ '@inquirer/core': 10.1.15(@types/node@24.2.0)
+ '@inquirer/type': 3.0.8(@types/node@24.2.0)
+ ansi-escapes: 4.3.2
+ optionalDependencies:
+ '@types/node': 24.2.0
+
+ '@inquirer/prompts@7.5.0(@types/node@24.2.0)':
+ dependencies:
+ '@inquirer/checkbox': 4.1.5(@types/node@24.2.0)
+ '@inquirer/confirm': 5.1.9(@types/node@24.2.0)
+ '@inquirer/editor': 4.2.10(@types/node@24.2.0)
+ '@inquirer/expand': 4.0.12(@types/node@24.2.0)
+ '@inquirer/input': 4.1.9(@types/node@24.2.0)
+ '@inquirer/number': 3.0.12(@types/node@24.2.0)
+ '@inquirer/password': 4.0.12(@types/node@24.2.0)
+ '@inquirer/rawlist': 4.1.0(@types/node@24.2.0)
+ '@inquirer/search': 3.0.12(@types/node@24.2.0)
+ '@inquirer/select': 4.2.0(@types/node@24.2.0)
+ optionalDependencies:
+ '@types/node': 24.2.0
+
+ '@inquirer/prompts@7.8.0(@types/node@24.2.0)':
+ dependencies:
+ '@inquirer/checkbox': 4.2.0(@types/node@24.2.0)
+ '@inquirer/confirm': 5.1.14(@types/node@24.2.0)
+ '@inquirer/editor': 4.2.15(@types/node@24.2.0)
+ '@inquirer/expand': 4.0.17(@types/node@24.2.0)
+ '@inquirer/input': 4.2.1(@types/node@24.2.0)
+ '@inquirer/number': 3.0.17(@types/node@24.2.0)
+ '@inquirer/password': 4.0.17(@types/node@24.2.0)
+ '@inquirer/rawlist': 4.1.5(@types/node@24.2.0)
+ '@inquirer/search': 3.1.0(@types/node@24.2.0)
+ '@inquirer/select': 4.3.1(@types/node@24.2.0)
+ optionalDependencies:
+ '@types/node': 24.2.0
- '@inquirer/prompts@7.5.0(@types/node@22.13.9)':
- dependencies:
- '@inquirer/checkbox': 4.1.5(@types/node@22.13.9)
- '@inquirer/confirm': 5.1.9(@types/node@22.13.9)
- '@inquirer/editor': 4.2.10(@types/node@22.13.9)
- '@inquirer/expand': 4.0.12(@types/node@22.13.9)
- '@inquirer/input': 4.1.9(@types/node@22.13.9)
- '@inquirer/number': 3.0.12(@types/node@22.13.9)
- '@inquirer/password': 4.0.12(@types/node@22.13.9)
- '@inquirer/rawlist': 4.1.0(@types/node@22.13.9)
- '@inquirer/search': 3.0.12(@types/node@22.13.9)
- '@inquirer/select': 4.2.0(@types/node@22.13.9)
+ '@inquirer/rawlist@4.1.0(@types/node@24.2.0)':
+ dependencies:
+ '@inquirer/core': 10.1.10(@types/node@24.2.0)
+ '@inquirer/type': 3.0.6(@types/node@24.2.0)
+ yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 24.2.0
- '@inquirer/rawlist@4.1.0(@types/node@22.13.9)':
+ '@inquirer/rawlist@4.1.5(@types/node@24.2.0)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.13.9)
- '@inquirer/type': 3.0.6(@types/node@22.13.9)
+ '@inquirer/core': 10.1.15(@types/node@24.2.0)
+ '@inquirer/type': 3.0.8(@types/node@24.2.0)
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 24.2.0
- '@inquirer/search@3.0.12(@types/node@22.13.9)':
+ '@inquirer/search@3.0.12(@types/node@24.2.0)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.13.9)
+ '@inquirer/core': 10.1.10(@types/node@24.2.0)
'@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.6(@types/node@22.13.9)
+ '@inquirer/type': 3.0.6(@types/node@24.2.0)
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 24.2.0
+
+ '@inquirer/search@3.1.0(@types/node@24.2.0)':
+ dependencies:
+ '@inquirer/core': 10.1.15(@types/node@24.2.0)
+ '@inquirer/figures': 1.0.13
+ '@inquirer/type': 3.0.8(@types/node@24.2.0)
+ yoctocolors-cjs: 2.1.2
+ optionalDependencies:
+ '@types/node': 24.2.0
- '@inquirer/select@4.2.0(@types/node@22.13.9)':
+ '@inquirer/select@4.2.0(@types/node@24.2.0)':
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.13.9)
+ '@inquirer/core': 10.1.10(@types/node@24.2.0)
'@inquirer/figures': 1.0.11
- '@inquirer/type': 3.0.6(@types/node@22.13.9)
+ '@inquirer/type': 3.0.6(@types/node@24.2.0)
ansi-escapes: 4.3.2
yoctocolors-cjs: 2.1.2
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 24.2.0
+
+ '@inquirer/select@4.3.1(@types/node@24.2.0)':
+ dependencies:
+ '@inquirer/core': 10.1.15(@types/node@24.2.0)
+ '@inquirer/figures': 1.0.13
+ '@inquirer/type': 3.0.8(@types/node@24.2.0)
+ ansi-escapes: 4.3.2
+ yoctocolors-cjs: 2.1.2
+ optionalDependencies:
+ '@types/node': 24.2.0
- '@inquirer/type@3.0.6(@types/node@22.13.9)':
+ '@inquirer/type@3.0.6(@types/node@24.2.0)':
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 24.2.0
+
+ '@inquirer/type@3.0.8(@types/node@24.2.0)':
+ optionalDependencies:
+ '@types/node': 24.2.0
'@isaacs/cliui@8.0.2':
dependencies:
@@ -9555,6 +12438,24 @@ snapshots:
'@juggle/resize-observer@3.4.0': {}
+ '@lezer/common@1.2.3': {}
+
+ '@lezer/highlight@1.2.1':
+ dependencies:
+ '@lezer/common': 1.2.3
+
+ '@lezer/javascript@1.5.1':
+ dependencies:
+ '@lezer/common': 1.2.3
+ '@lezer/highlight': 1.2.1
+ '@lezer/lr': 1.4.2
+
+ '@lezer/lr@1.4.2':
+ dependencies:
+ '@lezer/common': 1.2.3
+
+ '@marijn/find-cluster-break@1.0.2': {}
+
'@microsoft/api-extractor-model@7.30.5(@types/node@22.13.9)':
dependencies:
'@microsoft/tsdoc': 0.15.1
@@ -9563,11 +12464,19 @@ snapshots:
transitivePeerDependencies:
- '@types/node'
- '@microsoft/api-extractor-model@7.30.6(@types/node@22.13.9)':
+ '@microsoft/api-extractor-model@7.30.5(@types/node@24.2.0)':
+ dependencies:
+ '@microsoft/tsdoc': 0.15.1
+ '@microsoft/tsdoc-config': 0.17.1
+ '@rushstack/node-core-library': 5.13.0(@types/node@24.2.0)
+ transitivePeerDependencies:
+ - '@types/node'
+
+ '@microsoft/api-extractor-model@7.30.6(@types/node@24.2.0)':
dependencies:
'@microsoft/tsdoc': 0.15.1
'@microsoft/tsdoc-config': 0.17.1
- '@rushstack/node-core-library': 5.13.1(@types/node@22.13.9)
+ '@rushstack/node-core-library': 5.13.1(@types/node@24.2.0)
transitivePeerDependencies:
- '@types/node'
@@ -9589,15 +12498,33 @@ snapshots:
transitivePeerDependencies:
- '@types/node'
- '@microsoft/api-extractor@7.52.8(@types/node@22.13.9)':
+ '@microsoft/api-extractor@7.52.2(@types/node@24.2.0)':
+ dependencies:
+ '@microsoft/api-extractor-model': 7.30.5(@types/node@24.2.0)
+ '@microsoft/tsdoc': 0.15.1
+ '@microsoft/tsdoc-config': 0.17.1
+ '@rushstack/node-core-library': 5.13.0(@types/node@24.2.0)
+ '@rushstack/rig-package': 0.5.3
+ '@rushstack/terminal': 0.15.2(@types/node@24.2.0)
+ '@rushstack/ts-command-line': 4.23.7(@types/node@24.2.0)
+ lodash: 4.17.21
+ minimatch: 3.0.8
+ resolve: 1.22.8
+ semver: 7.5.4
+ source-map: 0.6.1
+ typescript: 5.8.2
+ transitivePeerDependencies:
+ - '@types/node'
+
+ '@microsoft/api-extractor@7.52.8(@types/node@24.2.0)':
dependencies:
- '@microsoft/api-extractor-model': 7.30.6(@types/node@22.13.9)
+ '@microsoft/api-extractor-model': 7.30.6(@types/node@24.2.0)
'@microsoft/tsdoc': 0.15.1
'@microsoft/tsdoc-config': 0.17.1
- '@rushstack/node-core-library': 5.13.1(@types/node@22.13.9)
+ '@rushstack/node-core-library': 5.13.1(@types/node@24.2.0)
'@rushstack/rig-package': 0.5.3
- '@rushstack/terminal': 0.15.3(@types/node@22.13.9)
- '@rushstack/ts-command-line': 5.0.1(@types/node@22.13.9)
+ '@rushstack/terminal': 0.15.3(@types/node@24.2.0)
+ '@rushstack/ts-command-line': 5.0.1(@types/node@24.2.0)
lodash: 4.17.21
minimatch: 3.0.8
resolve: 1.22.8
@@ -9616,6 +12543,63 @@ snapshots:
'@microsoft/tsdoc@0.15.1': {}
+ '@mux/mux-data-google-ima@0.2.8':
+ dependencies:
+ mux-embed: 5.9.0
+
+ '@mux/mux-player-react@3.5.1(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@mux/mux-player': 3.5.1(react@18.3.1)
+ '@mux/playback-core': 0.30.1
+ prop-types: 15.8.1
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ optionalDependencies:
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
+
+ '@mux/mux-player-react@3.5.1(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@mux/mux-player': 3.5.1(react@19.1.0)
+ '@mux/playback-core': 0.30.1
+ prop-types: 15.8.1
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.2
+ '@types/react-dom': 19.1.3(@types/react@19.1.2)
+
+ '@mux/mux-player@3.5.1(react@18.3.1)':
+ dependencies:
+ '@mux/mux-video': 0.26.1
+ '@mux/playback-core': 0.30.1
+ media-chrome: 4.11.1(react@18.3.1)
+ player.style: 0.1.9(react@18.3.1)
+ transitivePeerDependencies:
+ - react
+
+ '@mux/mux-player@3.5.1(react@19.1.0)':
+ dependencies:
+ '@mux/mux-video': 0.26.1
+ '@mux/playback-core': 0.30.1
+ media-chrome: 4.11.1(react@19.1.0)
+ player.style: 0.1.9(react@19.1.0)
+ transitivePeerDependencies:
+ - react
+
+ '@mux/mux-video@0.26.1':
+ dependencies:
+ '@mux/mux-data-google-ima': 0.2.8
+ '@mux/playback-core': 0.30.1
+ castable-video: 1.1.10
+ custom-media-element: 1.4.5
+ media-tracks: 0.3.3
+
+ '@mux/playback-core@0.30.1':
+ dependencies:
+ hls.js: 1.6.8
+ mux-embed: 5.11.0
+
'@napi-rs/wasm-runtime@0.2.12':
dependencies:
'@emnapi/core': 1.4.3
@@ -9665,10 +12649,35 @@ snapshots:
wordwrap: 1.0.0
wrap-ansi: 7.0.0
+ '@oclif/core@4.5.2':
+ dependencies:
+ ansi-escapes: 4.3.2
+ ansis: 3.17.0
+ clean-stack: 3.0.1
+ cli-spinners: 2.9.2
+ debug: 4.4.1(supports-color@8.1.1)
+ ejs: 3.1.10
+ get-package-type: 0.1.0
+ indent-string: 4.0.0
+ is-wsl: 2.2.0
+ lilconfig: 3.1.3
+ minimatch: 9.0.5
+ semver: 7.7.2
+ string-width: 4.2.3
+ supports-color: 8.1.1
+ tinyglobby: 0.2.14
+ widest-line: 3.1.0
+ wordwrap: 1.0.0
+ wrap-ansi: 7.0.0
+
'@oclif/plugin-help@6.2.27':
dependencies:
'@oclif/core': 4.3.0
+ '@oclif/plugin-help@6.2.32':
+ dependencies:
+ '@oclif/core': 4.3.0
+
'@octokit/auth-token@4.0.0': {}
'@octokit/core@5.2.1':
@@ -9727,17 +12736,11 @@ snapshots:
dependencies:
'@octokit/openapi-types': 24.2.0
- '@optimize-lodash/rollup-plugin@5.0.2(rollup@4.40.0)':
- dependencies:
- '@optimize-lodash/transform': 3.0.6
- '@rollup/pluginutils': 5.1.4(rollup@4.40.0)
- rollup: 4.40.0
-
- '@optimize-lodash/rollup-plugin@5.0.2(rollup@4.45.1)':
+ '@optimize-lodash/rollup-plugin@5.0.2(rollup@4.45.3)':
dependencies:
'@optimize-lodash/transform': 3.0.6
- '@rollup/pluginutils': 5.1.4(rollup@4.45.1)
- rollup: 4.45.1
+ '@rollup/pluginutils': 5.1.4(rollup@4.45.3)
+ rollup: 4.45.3
'@optimize-lodash/transform@3.0.6':
dependencies:
@@ -9773,21 +12776,29 @@ snapshots:
'@pnpm/network.ca-file': 1.0.2
config-chain: 1.1.13
- '@portabletext/block-tools@1.1.33(@sanity/types@3.87.0(@types/react@19.1.2)(debug@4.4.1))(@types/react@19.1.2)':
+ '@portabletext/block-tools@1.1.38(@sanity/types@3.99.0(@types/react@19.1.2)(debug@4.4.1))(@types/react@19.1.2)':
dependencies:
- '@sanity/types': 3.87.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/types': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
'@types/react': 19.1.2
get-random-values-esm: 1.0.2
lodash: 4.17.21
- '@portabletext/editor@1.55.8(@sanity/schema@3.87.0(@types/react@19.1.2)(debug@4.4.1))(@sanity/types@3.87.0(@types/react@19.1.2)(debug@4.4.1))(@types/react@19.1.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rxjs@7.8.2)':
+ '@portabletext/block-tools@2.0.5(@sanity/types@4.3.0(@types/react@19.1.2)(debug@4.4.1))(@types/react@19.1.2)':
dependencies:
- '@portabletext/block-tools': 1.1.33(@sanity/types@3.87.0(@types/react@19.1.2)(debug@4.4.1))(@types/react@19.1.2)
+ '@sanity/types': 4.3.0(@types/react@19.1.2)(debug@4.4.1)
+ '@types/react': 19.1.2
+ get-random-values-esm: 1.0.2
+ lodash: 4.17.21
+
+ '@portabletext/editor@1.58.0(@sanity/schema@3.99.0(@types/react@19.1.2)(debug@4.4.1))(@sanity/types@3.99.0(@types/react@19.1.2)(debug@4.4.1))(@types/react@19.1.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rxjs@7.8.2)':
+ dependencies:
+ '@portabletext/block-tools': 1.1.38(@sanity/types@3.99.0(@types/react@19.1.2)(debug@4.4.1))(@types/react@19.1.2)
+ '@portabletext/keyboard-shortcuts': 1.1.0
'@portabletext/patches': 1.1.5
'@portabletext/to-html': 2.0.14
- '@sanity/schema': 3.87.0(@types/react@19.1.2)(debug@4.4.1)
- '@sanity/types': 3.87.0(@types/react@19.1.2)(debug@4.4.1)
- '@xstate/react': 6.0.0(@types/react@19.1.2)(react@18.3.1)(xstate@5.20.0)
+ '@sanity/schema': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/types': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
+ '@xstate/react': 6.0.0(@types/react@19.1.2)(react@18.3.1)(xstate@5.20.1)
debug: 4.4.1(supports-color@8.1.1)
get-random-values-esm: 1.0.2
immer: 10.1.1
@@ -9798,25 +12809,93 @@ snapshots:
rxjs: 7.8.2
slate: 0.117.2
slate-dom: 0.116.0(slate@0.117.2)
- slate-react: 0.117.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(slate-dom@0.116.0(slate@0.117.2))(slate@0.117.2)
+ slate-react: 0.117.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(slate-dom@0.116.0(slate@0.117.2))(slate@0.117.2)
use-effect-event: 1.0.2(react@18.3.1)
- xstate: 5.20.0
+ xstate: 5.20.1
+ transitivePeerDependencies:
+ - '@types/react'
+ - react-dom
+ - supports-color
+
+ '@portabletext/editor@1.58.0(@sanity/schema@3.99.0(@types/react@19.1.2)(debug@4.4.1))(@sanity/types@3.99.0(@types/react@19.1.2)(debug@4.4.1))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)':
+ dependencies:
+ '@portabletext/block-tools': 1.1.38(@sanity/types@3.99.0(@types/react@19.1.2)(debug@4.4.1))(@types/react@19.1.2)
+ '@portabletext/keyboard-shortcuts': 1.1.0
+ '@portabletext/patches': 1.1.5
+ '@portabletext/to-html': 2.0.14
+ '@sanity/schema': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/types': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
+ '@xstate/react': 6.0.0(@types/react@19.1.2)(react@19.1.0)(xstate@5.20.1)
+ debug: 4.4.1(supports-color@8.1.1)
+ get-random-values-esm: 1.0.2
+ immer: 10.1.1
+ lodash: 4.17.21
+ lodash.startcase: 4.4.0
+ react: 19.1.0
+ react-compiler-runtime: 19.1.0-rc.2(react@19.1.0)
+ rxjs: 7.8.2
+ slate: 0.117.2
+ slate-dom: 0.116.0(slate@0.117.2)
+ slate-react: 0.117.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(slate-dom@0.116.0(slate@0.117.2))(slate@0.117.2)
+ use-effect-event: 1.0.2(react@19.1.0)
+ xstate: 5.20.1
+ transitivePeerDependencies:
+ - '@types/react'
+ - react-dom
+ - supports-color
+
+ '@portabletext/editor@2.1.7(@sanity/schema@4.3.0(@types/react@19.1.2)(debug@4.4.1))(@sanity/types@4.3.0(@types/react@19.1.2)(debug@4.4.1))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)':
+ dependencies:
+ '@portabletext/block-tools': 2.0.5(@sanity/types@4.3.0(@types/react@19.1.2)(debug@4.4.1))(@types/react@19.1.2)
+ '@portabletext/keyboard-shortcuts': 1.1.1
+ '@portabletext/patches': 1.1.6
+ '@portabletext/to-html': 2.0.14
+ '@sanity/schema': 4.3.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/types': 4.3.0(@types/react@19.1.2)(debug@4.4.1)
+ '@xstate/react': 6.0.0(@types/react@19.1.2)(react@19.1.0)(xstate@5.20.1)
+ debug: 4.4.1(supports-color@8.1.1)
+ get-random-values-esm: 1.0.2
+ immer: 10.1.1
+ lodash: 4.17.21
+ lodash.startcase: 4.4.0
+ react: 19.1.0
+ react-compiler-runtime: 19.1.0-rc.2(react@19.1.0)
+ rxjs: 7.8.2
+ slate: 0.118.0
+ slate-dom: 0.117.4(slate@0.118.0)
+ slate-react: 0.117.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(slate-dom@0.117.4(slate@0.118.0))(slate@0.118.0)
+ xstate: 5.20.1
transitivePeerDependencies:
- '@types/react'
- react-dom
- supports-color
+ '@portabletext/keyboard-shortcuts@1.1.0': {}
+
+ '@portabletext/keyboard-shortcuts@1.1.1': {}
+
'@portabletext/patches@1.1.5':
dependencies:
'@sanity/diff-match-patch': 3.2.0
lodash: 4.17.21
+ '@portabletext/patches@1.1.6':
+ dependencies:
+ '@sanity/diff-match-patch': 3.2.0
+ lodash: 4.17.21
+
'@portabletext/react@3.2.1(react@18.3.1)':
dependencies:
'@portabletext/toolkit': 2.0.17
'@portabletext/types': 2.0.13
react: 18.3.1
+ '@portabletext/react@3.2.1(react@19.1.0)':
+ dependencies:
+ '@portabletext/toolkit': 2.0.17
+ '@portabletext/types': 2.0.13
+ react: 19.1.0
+
'@portabletext/to-html@2.0.14':
dependencies:
'@portabletext/toolkit': 2.0.17
@@ -9834,6 +12913,17 @@ snapshots:
md5-o-matic: 0.1.1
react: 18.3.1
+ '@rexxars/react-json-inspector@9.0.1(react@19.1.0)':
+ dependencies:
+ debounce: 1.2.1
+ md5-o-matic: 0.1.1
+ react: 19.1.0
+
+ '@rexxars/react-split-pane@1.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+
'@rolldown/binding-android-arm64@1.0.0-beta.27':
optional: true
@@ -9880,39 +12970,35 @@ snapshots:
'@rolldown/pluginutils@1.0.0-beta.27': {}
- '@rollup/plugin-alias@5.1.1(rollup@4.40.0)':
- optionalDependencies:
- rollup: 4.40.0
-
- '@rollup/plugin-alias@5.1.1(rollup@4.45.1)':
+ '@rollup/plugin-alias@5.1.1(rollup@4.45.3)':
optionalDependencies:
- rollup: 4.45.1
+ rollup: 4.45.3
- '@rollup/plugin-babel@6.0.4(@babel/core@7.26.10)(@types/babel__core@7.20.5)(rollup@4.40.0)':
+ '@rollup/plugin-babel@6.0.4(@babel/core@7.26.10)(@types/babel__core@7.20.5)(rollup@4.45.3)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-module-imports': 7.25.9
- '@rollup/pluginutils': 5.1.4(rollup@4.40.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.45.3)
optionalDependencies:
'@types/babel__core': 7.20.5
- rollup: 4.40.0
+ rollup: 4.45.3
transitivePeerDependencies:
- supports-color
- '@rollup/plugin-babel@6.0.4(@babel/core@7.28.0)(@types/babel__core@7.20.5)(rollup@4.45.1)':
+ '@rollup/plugin-babel@6.0.4(@babel/core@7.28.0)(@types/babel__core@7.20.5)(rollup@4.45.3)':
dependencies:
'@babel/core': 7.28.0
'@babel/helper-module-imports': 7.25.9
- '@rollup/pluginutils': 5.1.4(rollup@4.45.1)
+ '@rollup/pluginutils': 5.1.4(rollup@4.45.3)
optionalDependencies:
'@types/babel__core': 7.20.5
- rollup: 4.45.1
+ rollup: 4.45.3
transitivePeerDependencies:
- supports-color
- '@rollup/plugin-commonjs@28.0.3(rollup@4.40.0)':
+ '@rollup/plugin-commonjs@28.0.3(rollup@4.45.3)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.45.3)
commondir: 1.0.1
estree-walker: 2.0.2
fdir: 6.4.4(picomatch@4.0.2)
@@ -9920,11 +13006,11 @@ snapshots:
magic-string: 0.30.17
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.40.0
+ rollup: 4.45.3
- '@rollup/plugin-commonjs@28.0.6(rollup@4.45.1)':
+ '@rollup/plugin-commonjs@28.0.6(rollup@4.45.3)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.45.1)
+ '@rollup/pluginutils': 5.1.4(rollup@4.45.3)
commondir: 1.0.1
estree-walker: 2.0.2
fdir: 6.4.4(picomatch@4.0.2)
@@ -9932,204 +13018,225 @@ snapshots:
magic-string: 0.30.17
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.45.1
-
- '@rollup/plugin-json@6.1.0(rollup@4.40.0)':
- dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.0)
- optionalDependencies:
- rollup: 4.40.0
-
- '@rollup/plugin-json@6.1.0(rollup@4.45.1)':
- dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.45.1)
- optionalDependencies:
- rollup: 4.45.1
+ rollup: 4.45.3
- '@rollup/plugin-node-resolve@16.0.1(rollup@4.40.0)':
+ '@rollup/plugin-json@6.1.0(rollup@4.45.3)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.0)
- '@types/resolve': 1.20.2
- deepmerge: 4.3.1
- is-module: 1.0.0
- resolve: 1.22.8
+ '@rollup/pluginutils': 5.1.4(rollup@4.45.3)
optionalDependencies:
- rollup: 4.40.0
+ rollup: 4.45.3
- '@rollup/plugin-node-resolve@16.0.1(rollup@4.45.1)':
+ '@rollup/plugin-node-resolve@16.0.1(rollup@4.45.3)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.45.1)
+ '@rollup/pluginutils': 5.1.4(rollup@4.45.3)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
resolve: 1.22.8
optionalDependencies:
- rollup: 4.45.1
-
- '@rollup/plugin-replace@6.0.2(rollup@4.40.0)':
- dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.40.0)
- magic-string: 0.30.17
- optionalDependencies:
- rollup: 4.40.0
+ rollup: 4.45.3
- '@rollup/plugin-replace@6.0.2(rollup@4.45.1)':
+ '@rollup/plugin-replace@6.0.2(rollup@4.45.3)':
dependencies:
- '@rollup/pluginutils': 5.1.4(rollup@4.45.1)
+ '@rollup/pluginutils': 5.1.4(rollup@4.45.3)
magic-string: 0.30.17
optionalDependencies:
- rollup: 4.45.1
+ rollup: 4.45.3
- '@rollup/plugin-terser@0.4.4(rollup@4.40.0)':
+ '@rollup/plugin-terser@0.4.4(rollup@4.45.3)':
dependencies:
serialize-javascript: 6.0.2
smob: 1.5.0
terser: 5.36.0
optionalDependencies:
- rollup: 4.40.0
-
- '@rollup/plugin-terser@0.4.4(rollup@4.45.1)':
- dependencies:
- serialize-javascript: 6.0.2
- smob: 1.5.0
- terser: 5.36.0
- optionalDependencies:
- rollup: 4.45.1
-
- '@rollup/pluginutils@5.1.4(rollup@4.40.0)':
- dependencies:
- '@types/estree': 1.0.7
- estree-walker: 2.0.2
- picomatch: 4.0.2
- optionalDependencies:
- rollup: 4.40.0
+ rollup: 4.45.3
- '@rollup/pluginutils@5.1.4(rollup@4.45.1)':
+ '@rollup/pluginutils@5.1.4(rollup@4.45.3)':
dependencies:
- '@types/estree': 1.0.7
+ '@types/estree': 1.0.8
estree-walker: 2.0.2
picomatch: 4.0.2
optionalDependencies:
- rollup: 4.45.1
+ rollup: 4.45.3
'@rollup/rollup-android-arm-eabi@4.40.0':
optional: true
- '@rollup/rollup-android-arm-eabi@4.45.1':
+ '@rollup/rollup-android-arm-eabi@4.45.3':
+ optional: true
+
+ '@rollup/rollup-android-arm-eabi@4.46.2':
optional: true
'@rollup/rollup-android-arm64@4.40.0':
optional: true
- '@rollup/rollup-android-arm64@4.45.1':
+ '@rollup/rollup-android-arm64@4.45.3':
+ optional: true
+
+ '@rollup/rollup-android-arm64@4.46.2':
optional: true
'@rollup/rollup-darwin-arm64@4.40.0':
optional: true
- '@rollup/rollup-darwin-arm64@4.45.1':
+ '@rollup/rollup-darwin-arm64@4.45.3':
+ optional: true
+
+ '@rollup/rollup-darwin-arm64@4.46.2':
optional: true
'@rollup/rollup-darwin-x64@4.40.0':
optional: true
- '@rollup/rollup-darwin-x64@4.45.1':
+ '@rollup/rollup-darwin-x64@4.45.3':
+ optional: true
+
+ '@rollup/rollup-darwin-x64@4.46.2':
optional: true
'@rollup/rollup-freebsd-arm64@4.40.0':
optional: true
- '@rollup/rollup-freebsd-arm64@4.45.1':
+ '@rollup/rollup-freebsd-arm64@4.45.3':
+ optional: true
+
+ '@rollup/rollup-freebsd-arm64@4.46.2':
optional: true
'@rollup/rollup-freebsd-x64@4.40.0':
optional: true
- '@rollup/rollup-freebsd-x64@4.45.1':
+ '@rollup/rollup-freebsd-x64@4.45.3':
+ optional: true
+
+ '@rollup/rollup-freebsd-x64@4.46.2':
optional: true
'@rollup/rollup-linux-arm-gnueabihf@4.40.0':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.45.1':
+ '@rollup/rollup-linux-arm-gnueabihf@4.45.3':
+ optional: true
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.46.2':
optional: true
'@rollup/rollup-linux-arm-musleabihf@4.40.0':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.45.1':
+ '@rollup/rollup-linux-arm-musleabihf@4.45.3':
+ optional: true
+
+ '@rollup/rollup-linux-arm-musleabihf@4.46.2':
optional: true
'@rollup/rollup-linux-arm64-gnu@4.40.0':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.45.1':
+ '@rollup/rollup-linux-arm64-gnu@4.45.3':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-gnu@4.46.2':
optional: true
'@rollup/rollup-linux-arm64-musl@4.40.0':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.45.1':
+ '@rollup/rollup-linux-arm64-musl@4.45.3':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-musl@4.46.2':
optional: true
'@rollup/rollup-linux-loongarch64-gnu@4.40.0':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.45.1':
+ '@rollup/rollup-linux-loongarch64-gnu@4.45.3':
+ optional: true
+
+ '@rollup/rollup-linux-loongarch64-gnu@4.46.2':
optional: true
'@rollup/rollup-linux-powerpc64le-gnu@4.40.0':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.45.1':
+ '@rollup/rollup-linux-ppc64-gnu@4.45.3':
+ optional: true
+
+ '@rollup/rollup-linux-ppc64-gnu@4.46.2':
optional: true
'@rollup/rollup-linux-riscv64-gnu@4.40.0':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.45.1':
+ '@rollup/rollup-linux-riscv64-gnu@4.45.3':
+ optional: true
+
+ '@rollup/rollup-linux-riscv64-gnu@4.46.2':
optional: true
'@rollup/rollup-linux-riscv64-musl@4.40.0':
optional: true
- '@rollup/rollup-linux-riscv64-musl@4.45.1':
+ '@rollup/rollup-linux-riscv64-musl@4.45.3':
+ optional: true
+
+ '@rollup/rollup-linux-riscv64-musl@4.46.2':
optional: true
'@rollup/rollup-linux-s390x-gnu@4.40.0':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.45.1':
+ '@rollup/rollup-linux-s390x-gnu@4.45.3':
+ optional: true
+
+ '@rollup/rollup-linux-s390x-gnu@4.46.2':
optional: true
'@rollup/rollup-linux-x64-gnu@4.40.0':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.45.1':
+ '@rollup/rollup-linux-x64-gnu@4.45.3':
+ optional: true
+
+ '@rollup/rollup-linux-x64-gnu@4.46.2':
optional: true
'@rollup/rollup-linux-x64-musl@4.40.0':
optional: true
- '@rollup/rollup-linux-x64-musl@4.45.1':
+ '@rollup/rollup-linux-x64-musl@4.45.3':
+ optional: true
+
+ '@rollup/rollup-linux-x64-musl@4.46.2':
optional: true
'@rollup/rollup-win32-arm64-msvc@4.40.0':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.45.1':
+ '@rollup/rollup-win32-arm64-msvc@4.45.3':
+ optional: true
+
+ '@rollup/rollup-win32-arm64-msvc@4.46.2':
optional: true
'@rollup/rollup-win32-ia32-msvc@4.40.0':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.45.1':
+ '@rollup/rollup-win32-ia32-msvc@4.45.3':
+ optional: true
+
+ '@rollup/rollup-win32-ia32-msvc@4.46.2':
optional: true
'@rollup/rollup-win32-x64-msvc@4.40.0':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.45.1':
+ '@rollup/rollup-win32-x64-msvc@4.45.3':
+ optional: true
+
+ '@rollup/rollup-win32-x64-msvc@4.46.2':
optional: true
'@rtsao/scc@1.1.0': {}
@@ -10147,7 +13254,7 @@ snapshots:
optionalDependencies:
'@types/node': 22.13.9
- '@rushstack/node-core-library@5.13.1(@types/node@22.13.9)':
+ '@rushstack/node-core-library@5.13.0(@types/node@24.2.0)':
dependencies:
ajv: 8.13.0
ajv-draft-04: 1.0.0(ajv@8.13.0)
@@ -10158,7 +13265,20 @@ snapshots:
resolve: 1.22.8
semver: 7.5.4
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 24.2.0
+
+ '@rushstack/node-core-library@5.13.1(@types/node@24.2.0)':
+ dependencies:
+ ajv: 8.13.0
+ ajv-draft-04: 1.0.0(ajv@8.13.0)
+ ajv-formats: 3.0.1(ajv@8.13.0)
+ fs-extra: 11.3.0
+ import-lazy: 4.0.0
+ jju: 1.4.0
+ resolve: 1.22.8
+ semver: 7.5.4
+ optionalDependencies:
+ '@types/node': 24.2.0
'@rushstack/rig-package@0.5.3':
dependencies:
@@ -10172,12 +13292,19 @@ snapshots:
optionalDependencies:
'@types/node': 22.13.9
- '@rushstack/terminal@0.15.3(@types/node@22.13.9)':
+ '@rushstack/terminal@0.15.2(@types/node@24.2.0)':
dependencies:
- '@rushstack/node-core-library': 5.13.1(@types/node@22.13.9)
+ '@rushstack/node-core-library': 5.13.0(@types/node@24.2.0)
supports-color: 8.1.1
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 24.2.0
+
+ '@rushstack/terminal@0.15.3(@types/node@24.2.0)':
+ dependencies:
+ '@rushstack/node-core-library': 5.13.1(@types/node@24.2.0)
+ supports-color: 8.1.1
+ optionalDependencies:
+ '@types/node': 24.2.0
'@rushstack/ts-command-line@4.23.7(@types/node@22.13.9)':
dependencies:
@@ -10188,9 +13315,18 @@ snapshots:
transitivePeerDependencies:
- '@types/node'
- '@rushstack/ts-command-line@5.0.1(@types/node@22.13.9)':
+ '@rushstack/ts-command-line@4.23.7(@types/node@24.2.0)':
+ dependencies:
+ '@rushstack/terminal': 0.15.2(@types/node@24.2.0)
+ '@types/argparse': 1.0.38
+ argparse: 1.0.10
+ string-argv: 0.3.2
+ transitivePeerDependencies:
+ - '@types/node'
+
+ '@rushstack/ts-command-line@5.0.1(@types/node@24.2.0)':
dependencies:
- '@rushstack/terminal': 0.15.3(@types/node@22.13.9)
+ '@rushstack/terminal': 0.15.3(@types/node@24.2.0)
'@types/argparse': 1.0.38
argparse: 1.0.10
string-argv: 0.3.2
@@ -10206,15 +13342,15 @@ snapshots:
'@sanity/browserslist-config@1.0.5': {}
- '@sanity/cli@3.87.0(@types/node@22.13.9)(@types/react@19.1.2)(react@18.3.1)':
+ '@sanity/cli@3.88.1-typegen-experimental.0(@types/node@24.2.0)(@types/react@19.1.2)(jiti@2.5.1)(lightningcss@1.29.1)(react@18.3.1)(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0)':
dependencies:
'@babel/traverse': 7.27.0
- '@sanity/client': 6.29.1(debug@4.4.1)
- '@sanity/codegen': 3.87.0
- '@sanity/runtime-cli': 3.2.0(@types/node@22.13.9)
+ '@sanity/client': 7.8.1(debug@4.4.1)
+ '@sanity/codegen': 3.88.1-typegen-experimental.0
+ '@sanity/runtime-cli': 6.1.1(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0)
'@sanity/telemetry': 0.8.1(react@18.3.1)
'@sanity/template-validator': 2.4.3
- '@sanity/util': 3.87.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/util': 3.88.1(@types/react@19.1.2)(debug@4.4.1)
chalk: 4.1.2
debug: 4.4.1(supports-color@8.1.1)
decompress: 4.2.1
@@ -10229,33 +13365,120 @@ snapshots:
transitivePeerDependencies:
- '@types/node'
- '@types/react'
+ - jiti
+ - less
+ - lightningcss
- react
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
- supports-color
+ - terser
+ - tsx
+ - typescript
+ - yaml
- '@sanity/cli@3.88.1-typegen-experimental.0(@types/node@22.13.9)(@types/react@19.1.2)(jiti@2.4.2)(lightningcss@1.29.1)(react@18.3.1)(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)':
+ '@sanity/cli@3.99.0(@types/node@24.2.0)(@types/react@19.1.2)(lightningcss@1.29.1)(react@18.3.1)(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0)':
dependencies:
- '@babel/traverse': 7.27.0
- '@sanity/client': 7.2.1(debug@4.4.1)
- '@sanity/codegen': 3.88.1-typegen-experimental.0
- '@sanity/runtime-cli': 6.1.1(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)
+ '@babel/traverse': 7.28.0
+ '@sanity/client': 7.8.2(debug@4.4.1)
+ '@sanity/codegen': 3.99.0
+ '@sanity/runtime-cli': 9.2.0(@types/node@24.2.0)(debug@4.4.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0)
'@sanity/telemetry': 0.8.1(react@18.3.1)
'@sanity/template-validator': 2.4.3
- '@sanity/util': 3.88.1(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/util': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
chalk: 4.1.2
debug: 4.4.1(supports-color@8.1.1)
decompress: 4.2.1
- esbuild: 0.21.5
- esbuild-register: 3.6.0(esbuild@0.21.5)
- get-it: 8.6.7(debug@4.4.1)
- groq-js: 1.16.1
+ esbuild: 0.25.6
+ esbuild-register: 3.6.0(esbuild@0.25.6)
+ get-it: 8.6.10(debug@4.4.1)
+ groq-js: 1.17.3
pkg-dir: 5.0.0
- prettier: 3.5.3
- semver: 7.7.1
+ prettier: 3.6.2
+ semver: 7.7.2
validate-npm-package-name: 3.0.0
transitivePeerDependencies:
- '@types/node'
- '@types/react'
- - jiti
+ - bufferutil
+ - less
+ - lightningcss
+ - react
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - typescript
+ - utf-8-validate
+ - yaml
+
+ '@sanity/cli@3.99.0(@types/node@24.2.0)(@types/react@19.1.2)(lightningcss@1.29.1)(react@19.1.0)(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0)':
+ dependencies:
+ '@babel/traverse': 7.28.0
+ '@sanity/client': 7.8.2(debug@4.4.1)
+ '@sanity/codegen': 3.99.0
+ '@sanity/runtime-cli': 9.2.0(@types/node@24.2.0)(debug@4.4.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0)
+ '@sanity/telemetry': 0.8.1(react@19.1.0)
+ '@sanity/template-validator': 2.4.3
+ '@sanity/util': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
+ chalk: 4.1.2
+ debug: 4.4.1(supports-color@8.1.1)
+ decompress: 4.2.1
+ esbuild: 0.25.6
+ esbuild-register: 3.6.0(esbuild@0.25.6)
+ get-it: 8.6.10(debug@4.4.1)
+ groq-js: 1.17.3
+ pkg-dir: 5.0.0
+ prettier: 3.6.2
+ semver: 7.7.2
+ validate-npm-package-name: 3.0.0
+ transitivePeerDependencies:
+ - '@types/node'
+ - '@types/react'
+ - bufferutil
+ - less
+ - lightningcss
+ - react
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - typescript
+ - utf-8-validate
+ - yaml
+
+ '@sanity/cli@4.3.0(@types/node@24.2.0)(@types/react@19.1.2)(lightningcss@1.29.1)(react@19.1.0)(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0)':
+ dependencies:
+ '@babel/traverse': 7.28.0
+ '@sanity/client': 7.8.2(debug@4.4.1)
+ '@sanity/codegen': 4.3.0
+ '@sanity/runtime-cli': 10.1.2(@types/node@24.2.0)(debug@4.4.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0)
+ '@sanity/telemetry': 0.8.1(react@19.1.0)
+ '@sanity/template-validator': 2.4.3
+ '@sanity/util': 4.3.0(@types/react@19.1.2)(debug@4.4.1)
+ chalk: 4.1.2
+ debug: 4.4.1(supports-color@8.1.1)
+ decompress: 4.2.1
+ esbuild: 0.25.8
+ esbuild-register: 3.6.0(esbuild@0.25.8)
+ get-it: 8.6.10(debug@4.4.1)
+ groq-js: 1.17.3
+ pkg-dir: 5.0.0
+ prettier: 3.6.2
+ semver: 7.7.2
+ validate-npm-package-name: 3.0.0
+ transitivePeerDependencies:
+ - '@types/node'
+ - '@types/react'
+ - bufferutil
- less
- lightningcss
- react
@@ -10267,6 +13490,7 @@ snapshots:
- terser
- tsx
- typescript
+ - utf-8-validate
- yaml
'@sanity/client@6.29.1(debug@4.4.1)':
@@ -10277,7 +13501,7 @@ snapshots:
transitivePeerDependencies:
- debug
- '@sanity/client@7.2.1(debug@4.4.1)':
+ '@sanity/client@7.2.1':
dependencies:
'@sanity/eventsource': 5.0.2
get-it: 8.6.7(debug@4.4.1)
@@ -10286,7 +13510,25 @@ snapshots:
transitivePeerDependencies:
- debug
- '@sanity/codegen@3.87.0':
+ '@sanity/client@7.8.1(debug@4.4.1)':
+ dependencies:
+ '@sanity/eventsource': 5.0.2
+ get-it: 8.6.10(debug@4.4.1)
+ nanoid: 3.3.11
+ rxjs: 7.8.2
+ transitivePeerDependencies:
+ - debug
+
+ '@sanity/client@7.8.2(debug@4.4.1)':
+ dependencies:
+ '@sanity/eventsource': 5.0.2
+ get-it: 8.6.10(debug@4.4.1)
+ nanoid: 3.3.11
+ rxjs: 7.8.2
+ transitivePeerDependencies:
+ - debug
+
+ '@sanity/codegen@3.88.1-typegen-experimental.0':
dependencies:
'@babel/core': 7.26.10
'@babel/generator': 7.27.0
@@ -10298,7 +13540,7 @@ snapshots:
'@babel/types': 7.27.0
debug: 4.4.1(supports-color@8.1.1)
globby: 11.1.0
- groq: 3.87.0
+ groq: 3.88.1-typegen-experimental.0
groq-js: 1.16.1
json5: 2.2.3
tsconfig-paths: 4.2.0
@@ -10306,23 +13548,43 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@sanity/codegen@3.88.1-typegen-experimental.0':
+ '@sanity/codegen@3.99.0':
dependencies:
- '@babel/core': 7.26.10
- '@babel/generator': 7.27.0
- '@babel/preset-env': 7.26.9(@babel/core@7.26.10)
- '@babel/preset-react': 7.26.3(@babel/core@7.26.10)
- '@babel/preset-typescript': 7.27.0(@babel/core@7.26.10)
- '@babel/register': 7.25.9(@babel/core@7.26.10)
- '@babel/traverse': 7.27.0
- '@babel/types': 7.27.0
+ '@babel/core': 7.28.0
+ '@babel/generator': 7.28.0
+ '@babel/preset-env': 7.28.0(@babel/core@7.28.0)
+ '@babel/preset-react': 7.27.1(@babel/core@7.28.0)
+ '@babel/preset-typescript': 7.27.1(@babel/core@7.28.0)
+ '@babel/register': 7.27.1(@babel/core@7.28.0)
+ '@babel/traverse': 7.28.0
+ '@babel/types': 7.28.1
debug: 4.4.1(supports-color@8.1.1)
globby: 11.1.0
- groq: 3.88.1-typegen-experimental.0
- groq-js: 1.16.1
+ groq: 3.99.0
+ groq-js: 1.17.3
json5: 2.2.3
tsconfig-paths: 4.2.0
- zod: 3.24.2
+ zod: 3.25.76
+ transitivePeerDependencies:
+ - supports-color
+
+ '@sanity/codegen@4.3.0':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/generator': 7.28.0
+ '@babel/preset-env': 7.28.0(@babel/core@7.28.0)
+ '@babel/preset-react': 7.27.1(@babel/core@7.28.0)
+ '@babel/preset-typescript': 7.27.1(@babel/core@7.28.0)
+ '@babel/register': 7.27.1(@babel/core@7.28.0)
+ '@babel/traverse': 7.28.0
+ '@babel/types': 7.28.2
+ debug: 4.4.1(supports-color@8.1.1)
+ globby: 11.1.0
+ groq: 4.3.0
+ groq-js: 1.17.3
+ json5: 2.2.3
+ tsconfig-paths: 4.2.0
+ zod: 3.25.76
transitivePeerDependencies:
- supports-color
@@ -10340,6 +13602,22 @@ snapshots:
uuid: 11.1.0
xstate: 5.20.0
+ '@sanity/comlink@3.0.8':
+ dependencies:
+ rxjs: 7.8.2
+ uuid: 11.1.0
+ xstate: 5.20.1
+
+ '@sanity/comlink@3.0.9':
+ dependencies:
+ rxjs: 7.8.2
+ uuid: 11.1.0
+ xstate: 5.20.1
+
+ '@sanity/descriptors@1.1.1':
+ dependencies:
+ sha256-uint8array: 0.10.7
+
'@sanity/diff-match-patch@3.2.0': {}
'@sanity/diff-patch@5.0.0':
@@ -10350,10 +13628,25 @@ snapshots:
dependencies:
'@sanity/diff-match-patch': 3.2.0
- '@sanity/diff@3.87.0':
+ '@sanity/diff@3.99.0':
dependencies:
'@sanity/diff-match-patch': 3.2.0
+ '@sanity/diff@4.3.0':
+ dependencies:
+ '@sanity/diff-match-patch': 3.2.0
+
+ '@sanity/eslint-config-studio@5.0.2(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)':
+ dependencies:
+ eslint: 9.32.0(jiti@2.5.1)
+ eslint-plugin-jsx-a11y: 6.10.2(eslint@9.32.0(jiti@2.5.1))
+ eslint-plugin-react: 7.37.4(eslint@9.32.0(jiti@2.5.1))
+ eslint-plugin-react-hooks: 5.2.0(eslint@9.32.0(jiti@2.5.1))
+ typescript-eslint: 8.26.1(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
'@sanity/eventsource@5.0.2':
dependencies:
'@types/event-source-polyfill': 1.0.5
@@ -10361,13 +13654,13 @@ snapshots:
event-source-polyfill: 1.0.31
eventsource: 2.0.2
- '@sanity/export@3.42.2(@types/react@19.1.2)':
+ '@sanity/export@3.45.2(@types/react@19.1.2)':
dependencies:
'@sanity/client': 6.29.1(debug@4.4.1)
'@sanity/util': 3.68.3(@types/react@19.1.2)(debug@4.4.1)
archiver: 7.0.1
debug: 4.4.1(supports-color@8.1.1)
- get-it: 8.6.7(debug@4.4.1)
+ get-it: 8.6.10(debug@4.4.1)
json-stream-stringify: 2.0.4
lodash: 4.17.21
mississippi: 4.0.0
@@ -10375,17 +13668,42 @@ snapshots:
rimraf: 6.0.1
split2: 4.2.0
tar: 7.4.3
- yaml: 2.7.1
+ yaml: 2.8.0
transitivePeerDependencies:
- '@types/react'
- supports-color
'@sanity/generate-help-url@3.0.0': {}
+ '@sanity/google-maps-input@4.1.1(@emotion/is-prop-valid@1.2.2)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.1)(react@19.1.0)(sanity@4.3.0(@emotion/is-prop-valid@1.2.2)(@types/node@24.2.0)(@types/react@19.1.2)(immer@10.1.1)(jiti@2.5.1)(lightningcss@1.29.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0))(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))':
+ dependencies:
+ '@sanity/icons': 3.7.4(react@19.1.0)
+ '@sanity/incompatible-plugin': 1.0.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@sanity/ui': 2.15.13(@emotion/is-prop-valid@1.2.2)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.1)(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))
+ react: 19.1.0
+ sanity: 4.3.0(@emotion/is-prop-valid@1.2.2)(@types/node@24.2.0)(@types/react@19.1.2)(immer@10.1.1)(jiti@2.5.1)(lightningcss@1.29.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0)
+ styled-components: 6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ transitivePeerDependencies:
+ - '@emotion/is-prop-valid'
+ - react-dom
+ - react-is
+
'@sanity/icons@3.7.0(react@18.3.1)':
dependencies:
react: 18.3.1
+ '@sanity/icons@3.7.0(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
+ '@sanity/icons@3.7.4(react@18.3.1)':
+ dependencies:
+ react: 18.3.1
+
+ '@sanity/icons@3.7.4(react@19.1.0)':
+ dependencies:
+ react: 19.1.0
+
'@sanity/id-utils@1.0.0':
dependencies:
'@sanity/uuid': 3.0.2
@@ -10394,15 +13712,15 @@ snapshots:
'@sanity/image-url@1.1.0': {}
- '@sanity/import@3.38.2(@types/react@19.1.2)':
+ '@sanity/import@3.38.3(@types/react@19.1.2)':
dependencies:
'@sanity/asset-utils': 2.2.1
'@sanity/generate-help-url': 3.0.0
- '@sanity/mutator': 3.87.0(@types/react@19.1.2)
+ '@sanity/mutator': 3.99.0(@types/react@19.1.2)
'@sanity/uuid': 3.0.2
debug: 4.4.1(supports-color@8.1.1)
file-url: 2.0.2
- get-it: 8.6.7(debug@4.4.1)
+ get-it: 8.6.10(debug@4.4.1)
get-uri: 2.0.4
gunzip-maybe: 1.4.2
is-tar: 1.0.0
@@ -10415,51 +13733,110 @@ snapshots:
pretty-ms: 7.0.1
rimraf: 6.0.1
split2: 4.2.0
- tar-fs: 2.1.2
- tinyglobby: 0.2.13
+ tar-fs: 2.1.3
+ tinyglobby: 0.2.14
transitivePeerDependencies:
- '@types/react'
- supports-color
- '@sanity/insert-menu@1.1.10(@emotion/is-prop-valid@1.2.2)(@sanity/types@3.87.0(@types/react@19.1.2)(debug@4.4.1))(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)(styled-components@6.1.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
+ '@sanity/incompatible-plugin@1.0.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- '@sanity/icons': 3.7.0(react@18.3.1)
- '@sanity/types': 3.87.0(@types/react@19.1.2)(debug@4.4.1)
- '@sanity/ui': 2.15.13(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)(styled-components@6.1.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+
+ '@sanity/insert-menu@1.1.13(@emotion/is-prop-valid@1.2.2)(@sanity/types@3.99.0(@types/react@19.1.2)(debug@4.4.1))(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)(styled-components@6.1.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
+ dependencies:
+ '@sanity/icons': 3.7.4(react@18.3.1)
+ '@sanity/types': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/ui': 2.16.12(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)(styled-components@6.1.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
lodash: 4.17.21
react: 18.3.1
- react-compiler-runtime: 19.0.0-beta-e993439-20250405(react@18.3.1)
+ react-compiler-runtime: 19.1.0-rc.2(react@18.3.1)
react-dom: 18.3.1(react@18.3.1)
react-is: 18.3.1
transitivePeerDependencies:
- '@emotion/is-prop-valid'
- styled-components
+ '@sanity/insert-menu@1.1.13(@emotion/is-prop-valid@1.2.2)(@sanity/types@3.99.0(@types/react@19.1.2)(debug@4.4.1))(react-dom@19.1.0(react@19.1.0))(react-is@18.3.1)(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))':
+ dependencies:
+ '@sanity/icons': 3.7.4(react@19.1.0)
+ '@sanity/types': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/ui': 2.16.12(@emotion/is-prop-valid@1.2.2)(react-dom@19.1.0(react@19.1.0))(react-is@18.3.1)(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))
+ lodash: 4.17.21
+ react: 19.1.0
+ react-compiler-runtime: 19.1.0-rc.2(react@19.1.0)
+ react-dom: 19.1.0(react@19.1.0)
+ react-is: 18.3.1
+ transitivePeerDependencies:
+ - '@emotion/is-prop-valid'
+ - styled-components
+
+ '@sanity/insert-menu@2.0.1(@emotion/is-prop-valid@1.2.2)(@sanity/types@4.3.0(@types/react@19.1.2)(debug@4.4.1))(react-dom@19.1.0(react@19.1.0))(react-is@19.1.1)(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))':
+ dependencies:
+ '@sanity/icons': 3.7.4(react@19.1.0)
+ '@sanity/types': 4.3.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/ui': 3.0.5(@emotion/is-prop-valid@1.2.2)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.1)(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))
+ lodash: 4.17.21
+ react: 19.1.0
+ react-compiler-runtime: 19.1.0-rc.2(react@19.1.0)
+ react-dom: 19.1.0(react@19.1.0)
+ react-is: 19.1.1
+ transitivePeerDependencies:
+ - '@emotion/is-prop-valid'
+ - styled-components
+
'@sanity/json-match@1.0.5': {}
- '@sanity/logos@2.1.13(@sanity/color@3.0.6)(react@18.3.1)':
+ '@sanity/logos@2.2.1(@sanity/color@3.0.6)(react@18.3.1)':
dependencies:
'@sanity/color': 3.0.6
react: 18.3.1
+ '@sanity/logos@2.2.1(@sanity/color@3.0.6)(react@19.1.0)':
+ dependencies:
+ '@sanity/color': 3.0.6
+ react: 19.1.0
+
+ '@sanity/media-library-types@1.0.0': {}
+
'@sanity/message-protocol@0.12.0':
dependencies:
'@sanity/comlink': 2.0.5
- '@sanity/message-protocol@0.9.0':
+ '@sanity/message-protocol@0.13.3':
dependencies:
- '@sanity/comlink': 2.0.5
+ '@sanity/comlink': 3.0.8
+
+ '@sanity/message-protocol@0.15.1':
+ dependencies:
+ '@sanity/comlink': 3.0.9
+
+ '@sanity/migrate@3.99.0(@types/react@19.1.2)':
+ dependencies:
+ '@sanity/client': 7.8.2(debug@4.4.1)
+ '@sanity/mutate': 0.12.4(debug@4.4.1)
+ '@sanity/types': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/util': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
+ arrify: 2.0.1
+ debug: 4.4.1(supports-color@8.1.1)
+ fast-fifo: 1.3.2
+ groq-js: 1.17.3
+ p-map: 7.0.3
+ transitivePeerDependencies:
+ - '@types/react'
+ - supports-color
- '@sanity/migrate@3.87.0(@types/react@19.1.2)':
+ '@sanity/migrate@4.3.0(@types/react@19.1.2)':
dependencies:
- '@sanity/client': 6.29.1(debug@4.4.1)
+ '@sanity/client': 7.8.2(debug@4.4.1)
'@sanity/mutate': 0.12.4(debug@4.4.1)
- '@sanity/types': 3.87.0(@types/react@19.1.2)(debug@4.4.1)
- '@sanity/util': 3.87.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/types': 4.3.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/util': 4.3.0(@types/react@19.1.2)(debug@4.4.1)
arrify: 2.0.1
debug: 4.4.1(supports-color@8.1.1)
fast-fifo: 1.3.2
- groq-js: 1.16.1
+ groq-js: 1.17.3
p-map: 7.0.3
transitivePeerDependencies:
- '@types/react'
@@ -10478,10 +13855,21 @@ snapshots:
transitivePeerDependencies:
- debug
- '@sanity/mutator@3.87.0(@types/react@19.1.2)':
+ '@sanity/mutator@3.99.0(@types/react@19.1.2)':
+ dependencies:
+ '@sanity/diff-match-patch': 3.2.0
+ '@sanity/types': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/uuid': 3.0.2
+ debug: 4.4.1(supports-color@8.1.1)
+ lodash: 4.17.21
+ transitivePeerDependencies:
+ - '@types/react'
+ - supports-color
+
+ '@sanity/mutator@4.3.0(@types/react@19.1.2)':
dependencies:
'@sanity/diff-match-patch': 3.2.0
- '@sanity/types': 3.87.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/types': 4.3.0(@types/react@19.1.2)(debug@4.4.1)
'@sanity/uuid': 3.0.2
debug: 4.4.1(supports-color@8.1.1)
lodash: 4.17.21
@@ -10489,21 +13877,21 @@ snapshots:
- '@types/react'
- supports-color
- '@sanity/pkg-utils@7.2.2(@types/babel__core@7.20.5)(@types/node@22.13.9)(babel-plugin-react-compiler@19.1.0-rc.1)(typescript@5.8.3)':
+ '@sanity/pkg-utils@7.2.2(@types/babel__core@7.20.5)(@types/node@22.13.9)(typescript@5.8.3)':
dependencies:
'@babel/core': 7.26.10
'@babel/preset-typescript': 7.27.0(@babel/core@7.26.10)
'@babel/types': 7.27.0
'@microsoft/api-extractor': 7.52.2(@types/node@22.13.9)
'@microsoft/tsdoc-config': 0.17.1
- '@optimize-lodash/rollup-plugin': 5.0.2(rollup@4.40.0)
- '@rollup/plugin-alias': 5.1.1(rollup@4.40.0)
- '@rollup/plugin-babel': 6.0.4(@babel/core@7.26.10)(@types/babel__core@7.20.5)(rollup@4.40.0)
- '@rollup/plugin-commonjs': 28.0.3(rollup@4.40.0)
- '@rollup/plugin-json': 6.1.0(rollup@4.40.0)
- '@rollup/plugin-node-resolve': 16.0.1(rollup@4.40.0)
- '@rollup/plugin-replace': 6.0.2(rollup@4.40.0)
- '@rollup/plugin-terser': 0.4.4(rollup@4.40.0)
+ '@optimize-lodash/rollup-plugin': 5.0.2(rollup@4.45.3)
+ '@rollup/plugin-alias': 5.1.1(rollup@4.45.3)
+ '@rollup/plugin-babel': 6.0.4(@babel/core@7.26.10)(@types/babel__core@7.20.5)(rollup@4.45.3)
+ '@rollup/plugin-commonjs': 28.0.3(rollup@4.45.3)
+ '@rollup/plugin-json': 6.1.0(rollup@4.45.3)
+ '@rollup/plugin-node-resolve': 16.0.1(rollup@4.45.3)
+ '@rollup/plugin-replace': 6.0.2(rollup@4.45.3)
+ '@rollup/plugin-terser': 0.4.4(rollup@4.45.3)
'@sanity/browserslist-config': 1.0.5
browserslist: 4.24.4
cac: 6.7.14
@@ -10519,13 +13907,62 @@ snapshots:
mkdirp: 3.0.1
outdent: 0.8.0
pkg-up: 3.1.0
- prettier: 3.5.3
+ prettier: 3.6.2
pretty-bytes: 5.6.0
prompts: 2.4.2
recast: 0.23.11
rimraf: 4.4.1
- rollup: 4.40.0
- rollup-plugin-esbuild: 6.2.1(esbuild@0.25.2)(rollup@4.40.0)
+ rollup: 4.45.3
+ rollup-plugin-esbuild: 6.2.1(esbuild@0.25.2)(rollup@4.45.3)
+ rxjs: 7.8.2
+ treeify: 1.1.0
+ typescript: 5.8.3
+ uuid: 11.1.0
+ zod: 3.24.2
+ zod-validation-error: 3.4.0(zod@3.24.2)
+ transitivePeerDependencies:
+ - '@types/babel__core'
+ - '@types/node'
+ - debug
+ - supports-color
+
+ '@sanity/pkg-utils@7.2.2(@types/babel__core@7.20.5)(@types/node@24.2.0)(babel-plugin-react-compiler@19.1.0-rc.1)(typescript@5.8.3)':
+ dependencies:
+ '@babel/core': 7.26.10
+ '@babel/preset-typescript': 7.27.0(@babel/core@7.26.10)
+ '@babel/types': 7.27.0
+ '@microsoft/api-extractor': 7.52.2(@types/node@24.2.0)
+ '@microsoft/tsdoc-config': 0.17.1
+ '@optimize-lodash/rollup-plugin': 5.0.2(rollup@4.45.3)
+ '@rollup/plugin-alias': 5.1.1(rollup@4.45.3)
+ '@rollup/plugin-babel': 6.0.4(@babel/core@7.26.10)(@types/babel__core@7.20.5)(rollup@4.45.3)
+ '@rollup/plugin-commonjs': 28.0.3(rollup@4.45.3)
+ '@rollup/plugin-json': 6.1.0(rollup@4.45.3)
+ '@rollup/plugin-node-resolve': 16.0.1(rollup@4.45.3)
+ '@rollup/plugin-replace': 6.0.2(rollup@4.45.3)
+ '@rollup/plugin-terser': 0.4.4(rollup@4.45.3)
+ '@sanity/browserslist-config': 1.0.5
+ browserslist: 4.24.4
+ cac: 6.7.14
+ chalk: 4.1.2
+ chokidar: 4.0.3
+ esbuild: 0.25.2
+ esbuild-register: 3.6.0(esbuild@0.25.2)
+ find-config: 1.0.0
+ get-latest-version: 5.1.0
+ git-url-parse: 16.0.1
+ globby: 11.1.0
+ jsonc-parser: 3.3.1
+ mkdirp: 3.0.1
+ outdent: 0.8.0
+ pkg-up: 3.1.0
+ prettier: 3.6.2
+ pretty-bytes: 5.6.0
+ prompts: 2.4.2
+ recast: 0.23.11
+ rimraf: 4.4.1
+ rollup: 4.45.3
+ rollup-plugin-esbuild: 6.2.1(esbuild@0.25.2)(rollup@4.45.3)
rxjs: 7.8.2
treeify: 1.1.0
typescript: 5.8.3
@@ -10540,21 +13977,21 @@ snapshots:
- debug
- supports-color
- '@sanity/pkg-utils@7.9.6(@types/babel__core@7.20.5)(@types/node@22.13.9)(typescript@5.8.3)':
+ '@sanity/pkg-utils@7.9.6(@types/babel__core@7.20.5)(@types/node@24.2.0)(typescript@5.8.3)':
dependencies:
'@babel/core': 7.28.0
'@babel/preset-typescript': 7.27.1(@babel/core@7.28.0)
'@babel/types': 7.28.1
- '@microsoft/api-extractor': 7.52.8(@types/node@22.13.9)
+ '@microsoft/api-extractor': 7.52.8(@types/node@24.2.0)
'@microsoft/tsdoc-config': 0.17.1
- '@optimize-lodash/rollup-plugin': 5.0.2(rollup@4.45.1)
- '@rollup/plugin-alias': 5.1.1(rollup@4.45.1)
- '@rollup/plugin-babel': 6.0.4(@babel/core@7.28.0)(@types/babel__core@7.20.5)(rollup@4.45.1)
- '@rollup/plugin-commonjs': 28.0.6(rollup@4.45.1)
- '@rollup/plugin-json': 6.1.0(rollup@4.45.1)
- '@rollup/plugin-node-resolve': 16.0.1(rollup@4.45.1)
- '@rollup/plugin-replace': 6.0.2(rollup@4.45.1)
- '@rollup/plugin-terser': 0.4.4(rollup@4.45.1)
+ '@optimize-lodash/rollup-plugin': 5.0.2(rollup@4.45.3)
+ '@rollup/plugin-alias': 5.1.1(rollup@4.45.3)
+ '@rollup/plugin-babel': 6.0.4(@babel/core@7.28.0)(@types/babel__core@7.20.5)(rollup@4.45.3)
+ '@rollup/plugin-commonjs': 28.0.6(rollup@4.45.3)
+ '@rollup/plugin-json': 6.1.0(rollup@4.45.3)
+ '@rollup/plugin-node-resolve': 16.0.1(rollup@4.45.3)
+ '@rollup/plugin-replace': 6.0.2(rollup@4.45.3)
+ '@rollup/plugin-terser': 0.4.4(rollup@4.45.3)
'@sanity/browserslist-config': 1.0.5
browserslist: 4.25.1
cac: 6.7.14
@@ -10577,8 +14014,8 @@ snapshots:
rimraf: 4.4.1
rolldown: 1.0.0-beta.27
rolldown-plugin-dts: 0.13.14(rolldown@1.0.0-beta.27)(typescript@5.8.3)
- rollup: 4.45.1
- rollup-plugin-esbuild: 6.2.1(esbuild@0.25.6)(rollup@4.45.1)
+ rollup: 4.45.3
+ rollup-plugin-esbuild: 6.2.1(esbuild@0.25.6)(rollup@4.45.3)
rxjs: 7.8.2
treeify: 1.1.0
typescript: 5.8.3
@@ -10594,11 +14031,19 @@ snapshots:
- supports-color
- vue-tsc
- '@sanity/presentation-comlink@1.0.16(@sanity/client@6.29.1)(@sanity/types@3.87.0(@types/react@19.1.2)(debug@4.4.1))':
+ '@sanity/presentation-comlink@1.0.27(@sanity/client@7.8.2(debug@4.4.1))(@sanity/types@3.99.0(@types/react@19.1.2)(debug@4.4.1))':
dependencies:
- '@sanity/client': 6.29.1(debug@4.4.1)
- '@sanity/comlink': 3.0.4
- '@sanity/visual-editing-types': 1.0.15(@sanity/client@6.29.1)(@sanity/types@3.87.0(@types/react@19.1.2)(debug@4.4.1))
+ '@sanity/client': 7.8.2(debug@4.4.1)
+ '@sanity/comlink': 3.0.8
+ '@sanity/visual-editing-types': 1.1.5(@sanity/client@7.8.2(debug@4.4.1))(@sanity/types@3.99.0(@types/react@19.1.2)(debug@4.4.1))
+ transitivePeerDependencies:
+ - '@sanity/types'
+
+ '@sanity/presentation-comlink@1.0.28(@sanity/client@7.8.2(debug@4.4.1))(@sanity/types@4.3.0(@types/react@19.1.2)(debug@4.4.1))':
+ dependencies:
+ '@sanity/client': 7.8.2(debug@4.4.1)
+ '@sanity/comlink': 3.0.9
+ '@sanity/visual-editing-types': 1.1.5(@sanity/client@7.8.2(debug@4.4.1))(@sanity/types@4.3.0(@types/react@19.1.2)(debug@4.4.1))
transitivePeerDependencies:
- '@sanity/types'
@@ -10607,12 +14052,58 @@ snapshots:
prettier: 3.5.3
prettier-plugin-packagejson: 2.5.3(prettier@3.5.3)
- '@sanity/preview-url-secret@2.1.8(@sanity/client@6.29.1)':
+ '@sanity/prettier-config@1.0.3(prettier@3.6.2)':
dependencies:
- '@sanity/client': 6.29.1(debug@4.4.1)
+ prettier: 3.6.2
+ prettier-plugin-packagejson: 2.5.3(prettier@3.6.2)
+
+ '@sanity/preview-url-secret@2.1.14(@sanity/client@7.8.2(debug@4.4.1))':
+ dependencies:
+ '@sanity/client': 7.8.2(debug@4.4.1)
'@sanity/uuid': 3.0.2
- '@sanity/runtime-cli@3.2.0(@types/node@22.13.9)':
+ '@sanity/runtime-cli@10.1.2(@types/node@24.2.0)(debug@4.4.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0)':
+ dependencies:
+ '@architect/hydrate': 4.0.8
+ '@architect/inventory': 4.0.9
+ '@oclif/core': 4.5.2
+ '@oclif/plugin-help': 6.2.32
+ '@sanity/client': 7.8.2(debug@4.4.1)
+ adm-zip: 0.5.16
+ array-treeify: 0.1.5
+ cardinal: 2.1.1
+ chalk: 5.5.0
+ eventsource: 4.0.0
+ find-up: 7.0.0
+ get-folder-size: 5.0.0
+ groq-js: 1.17.3
+ inquirer: 12.9.0(@types/node@24.2.0)
+ jiti: 2.5.1
+ mime-types: 3.0.1
+ ora: 8.2.0
+ tar-stream: 3.1.7
+ vite: 6.3.5(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
+ vite-tsconfig-paths: 5.1.4(typescript@5.8.3)(vite@6.3.5(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))
+ ws: 8.18.3
+ xdg-basedir: 5.1.0
+ transitivePeerDependencies:
+ - '@types/node'
+ - bufferutil
+ - debug
+ - less
+ - lightningcss
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - typescript
+ - utf-8-validate
+ - yaml
+
+ '@sanity/runtime-cli@6.1.1(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0)':
dependencies:
'@oclif/core': 4.3.0
'@oclif/plugin-help': 6.2.27
@@ -10621,32 +14112,55 @@ snapshots:
chalk: 5.4.1
color-json: 3.0.5
eventsource: 3.0.6
- inquirer: 12.6.0(@types/node@22.13.9)
+ find-up: 7.0.0
+ inquirer: 12.6.0(@types/node@24.2.0)
mime-types: 3.0.1
+ vite: 6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
+ vite-tsconfig-paths: 5.1.4(typescript@5.8.3)(vite@6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))
xdg-basedir: 5.1.0
yocto-spinner: 0.2.2
transitivePeerDependencies:
- '@types/node'
+ - jiti
+ - less
+ - lightningcss
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - typescript
+ - yaml
- '@sanity/runtime-cli@6.1.1(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.7.1)':
+ '@sanity/runtime-cli@9.2.0(@types/node@24.2.0)(debug@4.4.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0)':
dependencies:
+ '@architect/hydrate': 4.0.8
+ '@architect/inventory': 4.0.9
'@oclif/core': 4.3.0
- '@oclif/plugin-help': 6.2.27
+ '@oclif/plugin-help': 6.2.32
+ '@sanity/client': 7.8.2(debug@4.4.1)
adm-zip: 0.5.16
- array-treeify: 0.1.3
+ array-treeify: 0.1.5
+ cardinal: 2.1.1
chalk: 5.4.1
- color-json: 3.0.5
- eventsource: 3.0.6
+ eventsource: 4.0.0
find-up: 7.0.0
- inquirer: 12.6.0(@types/node@22.13.9)
+ groq-js: 1.17.3
+ inquirer: 12.9.0(@types/node@24.2.0)
+ jiti: 2.5.1
mime-types: 3.0.1
- vite: 6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
- vite-tsconfig-paths: 5.1.4(typescript@5.8.3)(vite@6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1))
+ ora: 8.2.0
+ tar-stream: 3.1.7
+ vite: 6.3.5(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
+ vite-tsconfig-paths: 5.1.4(typescript@5.8.3)(vite@6.3.5(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))
+ ws: 8.18.3
xdg-basedir: 5.1.0
- yocto-spinner: 0.2.2
transitivePeerDependencies:
- '@types/node'
- - jiti
+ - bufferutil
+ - debug
- less
- lightningcss
- sass
@@ -10657,14 +14171,32 @@ snapshots:
- terser
- tsx
- typescript
+ - utf-8-validate
- yaml
- '@sanity/schema@3.87.0(@types/react@19.1.2)(debug@4.4.1)':
+ '@sanity/schema@3.99.0(@types/react@19.1.2)(debug@4.4.1)':
dependencies:
+ '@sanity/descriptors': 1.1.1
'@sanity/generate-help-url': 3.0.0
- '@sanity/types': 3.87.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/types': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
arrify: 2.0.1
- groq-js: 1.16.1
+ groq-js: 1.17.3
+ humanize-list: 1.0.1
+ leven: 3.1.0
+ lodash: 4.17.21
+ object-inspect: 1.13.4
+ transitivePeerDependencies:
+ - '@types/react'
+ - debug
+ - supports-color
+
+ '@sanity/schema@4.3.0(@types/react@19.1.2)(debug@4.4.1)':
+ dependencies:
+ '@sanity/descriptors': 1.1.1
+ '@sanity/generate-help-url': 3.0.0
+ '@sanity/types': 4.3.0(@types/react@19.1.2)(debug@4.4.1)
+ arrify: 2.0.1
+ groq-js: 1.17.3
humanize-list: 1.0.1
leven: 3.1.0
lodash: 4.17.21
@@ -10677,10 +14209,10 @@ snapshots:
'@sanity/sdk@0.0.0-alpha.25(@types/react@19.1.2)(debug@4.4.1)(immer@10.1.1)(react@18.3.1)(use-sync-external-store@1.5.0(react@18.3.1))':
dependencies:
'@sanity/client': 6.29.1(debug@4.4.1)
- '@sanity/comlink': 3.0.4
+ '@sanity/comlink': 3.0.8
'@sanity/diff-match-patch': 3.2.0
'@sanity/mutate': 0.12.4(debug@4.4.1)
- '@sanity/types': 3.88.1(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/types': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
'@types/lodash-es': 4.17.12
lodash-es: 4.17.21
reselect: 5.1.1
@@ -10693,6 +14225,48 @@ snapshots:
- react
- use-sync-external-store
+ '@sanity/sdk@0.0.0-alpha.25(@types/react@19.1.2)(debug@4.4.1)(immer@10.1.1)(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0))':
+ dependencies:
+ '@sanity/client': 6.29.1(debug@4.4.1)
+ '@sanity/comlink': 3.0.8
+ '@sanity/diff-match-patch': 3.2.0
+ '@sanity/mutate': 0.12.4(debug@4.4.1)
+ '@sanity/types': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
+ '@types/lodash-es': 4.17.12
+ lodash-es: 4.17.21
+ reselect: 5.1.1
+ rxjs: 7.8.2
+ zustand: 5.0.4(@types/react@19.1.2)(immer@10.1.1)(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0))
+ transitivePeerDependencies:
+ - '@types/react'
+ - debug
+ - immer
+ - react
+ - use-sync-external-store
+
+ '@sanity/sdk@2.1.1(@types/react@19.1.2)(debug@4.4.1)(immer@10.1.1)(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0))':
+ dependencies:
+ '@sanity/bifur-client': 0.4.1
+ '@sanity/client': 7.8.2(debug@4.4.1)
+ '@sanity/comlink': 3.0.9
+ '@sanity/diff-match-patch': 3.2.0
+ '@sanity/diff-patch': 6.0.0
+ '@sanity/json-match': 1.0.5
+ '@sanity/message-protocol': 0.12.0
+ '@sanity/mutate': 0.12.4(debug@4.4.1)
+ '@sanity/types': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
+ groq: 3.88.1-typegen-experimental.0
+ lodash-es: 4.17.21
+ reselect: 5.1.1
+ rxjs: 7.8.2
+ zustand: 5.0.7(@types/react@19.1.2)(immer@10.1.1)(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0))
+ transitivePeerDependencies:
+ - '@types/react'
+ - debug
+ - immer
+ - react
+ - use-sync-external-store
+
'@sanity/telemetry@0.8.1(react@18.3.1)':
dependencies:
lodash: 4.17.21
@@ -10700,6 +14274,13 @@ snapshots:
rxjs: 7.8.2
typeid-js: 0.3.0
+ '@sanity/telemetry@0.8.1(react@19.1.0)':
+ dependencies:
+ lodash: 4.17.21
+ react: 19.1.0
+ rxjs: 7.8.2
+ typeid-js: 0.3.0
+
'@sanity/template-validator@2.4.3':
dependencies:
'@actions/core': 1.11.1
@@ -10713,16 +14294,25 @@ snapshots:
transitivePeerDependencies:
- debug
- '@sanity/types@3.87.0(@types/react@19.1.2)(debug@4.4.1)':
+ '@sanity/types@3.88.1(@types/react@19.1.2)(debug@4.4.1)':
dependencies:
- '@sanity/client': 6.29.1(debug@4.4.1)
+ '@sanity/client': 7.8.1(debug@4.4.1)
'@types/react': 19.1.2
transitivePeerDependencies:
- debug
- '@sanity/types@3.88.1(@types/react@19.1.2)(debug@4.4.1)':
+ '@sanity/types@3.99.0(@types/react@19.1.2)(debug@4.4.1)':
+ dependencies:
+ '@sanity/client': 7.8.2(debug@4.4.1)
+ '@sanity/media-library-types': 1.0.0
+ '@types/react': 19.1.2
+ transitivePeerDependencies:
+ - debug
+
+ '@sanity/types@4.3.0(@types/react@19.1.2)(debug@4.4.1)':
dependencies:
- '@sanity/client': 7.2.1(debug@4.4.1)
+ '@sanity/client': 7.8.2(debug@4.4.1)
+ '@sanity/media-library-types': 1.0.0
'@types/react': 19.1.2
transitivePeerDependencies:
- debug
@@ -10745,6 +14335,78 @@ snapshots:
transitivePeerDependencies:
- '@emotion/is-prop-valid'
+ '@sanity/ui@2.15.13(@emotion/is-prop-valid@1.2.2)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.1)(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@juggle/resize-observer': 3.4.0
+ '@sanity/color': 3.0.6
+ '@sanity/icons': 3.7.0(react@19.1.0)
+ csstype: 3.1.3
+ framer-motion: 12.6.3(@emotion/is-prop-valid@1.2.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+ react-compiler-runtime: 19.0.0-beta-e993439-20250405(react@19.1.0)
+ react-dom: 19.1.0(react@19.1.0)
+ react-is: 19.1.1
+ react-refractor: 2.2.0(react@19.1.0)
+ styled-components: 6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ use-effect-event: 1.0.2(react@19.1.0)
+ transitivePeerDependencies:
+ - '@emotion/is-prop-valid'
+
+ '@sanity/ui@2.16.12(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)(styled-components@6.1.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1))':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@juggle/resize-observer': 3.4.0
+ '@sanity/color': 3.0.6
+ '@sanity/icons': 3.7.4(react@18.3.1)
+ csstype: 3.1.3
+ framer-motion: 12.23.12(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react: 18.3.1
+ react-compiler-runtime: 19.1.0-rc.2(react@18.3.1)
+ react-dom: 18.3.1(react@18.3.1)
+ react-is: 18.3.1
+ react-refractor: 2.2.0(react@18.3.1)
+ styled-components: 6.1.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ use-effect-event: 2.0.3(react@18.3.1)
+ transitivePeerDependencies:
+ - '@emotion/is-prop-valid'
+
+ '@sanity/ui@2.16.12(@emotion/is-prop-valid@1.2.2)(react-dom@19.1.0(react@19.1.0))(react-is@18.3.1)(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@juggle/resize-observer': 3.4.0
+ '@sanity/color': 3.0.6
+ '@sanity/icons': 3.7.4(react@19.1.0)
+ csstype: 3.1.3
+ framer-motion: 12.23.12(@emotion/is-prop-valid@1.2.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+ react-compiler-runtime: 19.1.0-rc.2(react@19.1.0)
+ react-dom: 19.1.0(react@19.1.0)
+ react-is: 18.3.1
+ react-refractor: 2.2.0(react@19.1.0)
+ styled-components: 6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ use-effect-event: 2.0.3(react@19.1.0)
+ transitivePeerDependencies:
+ - '@emotion/is-prop-valid'
+
+ '@sanity/ui@3.0.5(@emotion/is-prop-valid@1.2.2)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.1)(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@juggle/resize-observer': 3.4.0
+ '@sanity/color': 3.0.6
+ '@sanity/icons': 3.7.4(react@19.1.0)
+ csstype: 3.1.3
+ framer-motion: 12.23.12(@emotion/is-prop-valid@1.2.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.1.0
+ react-compiler-runtime: 19.1.0-rc.2(react@19.1.0)
+ react-dom: 19.1.0(react@19.1.0)
+ react-is: 19.1.1
+ react-refractor: 4.0.0(react@19.1.0)
+ styled-components: 6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ use-effect-event: 2.0.3(react@19.1.0)
+ transitivePeerDependencies:
+ - '@emotion/is-prop-valid'
+
'@sanity/util@3.68.3(@types/react@19.1.2)(debug@4.4.1)':
dependencies:
'@sanity/client': 6.29.1(debug@4.4.1)
@@ -10756,10 +14418,10 @@ snapshots:
- '@types/react'
- debug
- '@sanity/util@3.87.0(@types/react@19.1.2)(debug@4.4.1)':
+ '@sanity/util@3.88.1(@types/react@19.1.2)(debug@4.4.1)':
dependencies:
- '@sanity/client': 6.29.1(debug@4.4.1)
- '@sanity/types': 3.87.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/client': 7.8.1(debug@4.4.1)
+ '@sanity/types': 3.88.1(@types/react@19.1.2)(debug@4.4.1)
get-random-values-esm: 1.0.2
moment: 2.30.1
rxjs: 7.8.2
@@ -10767,12 +14429,27 @@ snapshots:
- '@types/react'
- debug
- '@sanity/util@3.88.1(@types/react@19.1.2)(debug@4.4.1)':
+ '@sanity/util@3.99.0(@types/react@19.1.2)(debug@4.4.1)':
dependencies:
- '@sanity/client': 7.2.1(debug@4.4.1)
- '@sanity/types': 3.88.1(@types/react@19.1.2)(debug@4.4.1)
+ '@date-fns/tz': 1.3.1
+ '@date-fns/utc': 2.1.1
+ '@sanity/client': 7.8.2(debug@4.4.1)
+ '@sanity/types': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
+ date-fns: 4.1.0
+ get-random-values-esm: 1.0.2
+ rxjs: 7.8.2
+ transitivePeerDependencies:
+ - '@types/react'
+ - debug
+
+ '@sanity/util@4.3.0(@types/react@19.1.2)(debug@4.4.1)':
+ dependencies:
+ '@date-fns/tz': 1.3.1
+ '@date-fns/utc': 2.1.1
+ '@sanity/client': 7.8.2(debug@4.4.1)
+ '@sanity/types': 4.3.0(@types/react@19.1.2)(debug@4.4.1)
+ date-fns: 4.1.0
get-random-values-esm: 1.0.2
- moment: 2.30.1
rxjs: 7.8.2
transitivePeerDependencies:
- '@types/react'
@@ -10783,11 +14460,56 @@ snapshots:
'@types/uuid': 8.3.4
uuid: 8.3.2
- '@sanity/visual-editing-types@1.0.15(@sanity/client@6.29.1)(@sanity/types@3.87.0(@types/react@19.1.2)(debug@4.4.1))':
+ '@sanity/vision@4.3.0(@babel/runtime@7.28.2)(@codemirror/lint@6.8.5)(@codemirror/theme-one-dark@6.1.3)(@emotion/is-prop-valid@1.2.2)(codemirror@6.0.2)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.1)(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))':
dependencies:
- '@sanity/client': 6.29.1(debug@4.4.1)
+ '@codemirror/autocomplete': 6.18.6
+ '@codemirror/commands': 6.8.1
+ '@codemirror/lang-javascript': 6.2.4
+ '@codemirror/language': 6.11.2
+ '@codemirror/search': 6.5.11
+ '@codemirror/state': 6.5.2
+ '@codemirror/view': 6.38.1
+ '@juggle/resize-observer': 3.4.0
+ '@lezer/highlight': 1.2.1
+ '@rexxars/react-json-inspector': 9.0.1(react@19.1.0)
+ '@rexxars/react-split-pane': 1.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@sanity/color': 3.0.6
+ '@sanity/icons': 3.7.4(react@19.1.0)
+ '@sanity/ui': 3.0.5(@emotion/is-prop-valid@1.2.2)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.1)(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))
+ '@sanity/uuid': 3.0.2
+ '@uiw/react-codemirror': 4.24.2(@babel/runtime@7.28.2)(@codemirror/autocomplete@6.18.6)(@codemirror/language@6.11.2)(@codemirror/lint@6.8.5)(@codemirror/search@6.5.11)(@codemirror/state@6.5.2)(@codemirror/theme-one-dark@6.1.3)(@codemirror/view@6.38.1)(codemirror@6.0.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ is-hotkey-esm: 1.0.0
+ json-2-csv: 5.5.9
+ json5: 2.2.3
+ lodash: 4.17.21
+ quick-lru: 5.1.1
+ react: 19.1.0
+ react-compiler-runtime: 19.1.0-rc.2(react@19.1.0)
+ react-fast-compare: 3.2.2
+ react-rx: 4.1.31(react@19.1.0)(rxjs@7.8.2)
+ rxjs: 7.8.2
+ styled-components: 6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ use-effect-event: 2.0.3(react@19.1.0)
+ transitivePeerDependencies:
+ - '@babel/runtime'
+ - '@codemirror/lint'
+ - '@codemirror/theme-one-dark'
+ - '@emotion/is-prop-valid'
+ - codemirror
+ - react-dom
+ - react-is
+
+ '@sanity/visual-editing-types@1.1.5(@sanity/client@7.8.2(debug@4.4.1))(@sanity/types@3.99.0(@types/react@19.1.2)(debug@4.4.1))':
+ dependencies:
+ '@sanity/client': 7.8.2(debug@4.4.1)
+ optionalDependencies:
+ '@sanity/types': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
+
+ '@sanity/visual-editing-types@1.1.5(@sanity/client@7.8.2(debug@4.4.1))(@sanity/types@4.3.0(@types/react@19.1.2)(debug@4.4.1))':
+ dependencies:
+ '@sanity/client': 7.8.2(debug@4.4.1)
optionalDependencies:
- '@sanity/types': 3.87.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/types': 4.3.0(@types/react@19.1.2)(debug@4.4.1)
'@sentry-internal/browser-utils@8.55.0':
dependencies:
@@ -10824,6 +14546,13 @@ snapshots:
hoist-non-react-statics: 3.3.2
react: 18.3.1
+ '@sentry/react@8.55.0(react@19.1.0)':
+ dependencies:
+ '@sentry/browser': 8.55.0
+ '@sentry/core': 8.55.0
+ hoist-non-react-statics: 3.3.2
+ react: 19.1.0
+
'@shikijs/engine-oniguruma@3.3.0':
dependencies:
'@shikijs/types': 3.3.0
@@ -10850,20 +14579,32 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@tanstack/react-virtual@3.13.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@tanstack/react-table@8.21.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
- '@tanstack/virtual-core': 3.13.6
+ '@tanstack/table-core': 8.21.3
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+
+ '@tanstack/react-virtual@3.13.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@tanstack/virtual-core': 3.13.12
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@tanstack/react-virtual@3.13.12(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@tanstack/virtual-core': 3.13.12
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+
'@tanstack/table-core@8.21.3': {}
- '@tanstack/virtual-core@3.13.6': {}
+ '@tanstack/virtual-core@3.13.12': {}
'@testing-library/dom@10.4.0':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/runtime': 7.27.0
+ '@babel/code-frame': 7.27.1
+ '@babel/runtime': 7.28.2
'@types/aria-query': 5.0.4
aria-query: 5.3.0
chalk: 4.1.2
@@ -10980,10 +14721,16 @@ snapshots:
dependencies:
undici-types: 6.20.0
+ '@types/node@24.2.0':
+ dependencies:
+ undici-types: 7.10.0
+
'@types/normalize-package-data@2.4.4': {}
'@types/parse-path@7.0.3': {}
+ '@types/prismjs@1.26.5': {}
+
'@types/progress-stream@2.0.5':
dependencies:
'@types/node': 22.13.9
@@ -11005,7 +14752,7 @@ snapshots:
'@types/caseless': 0.12.5
'@types/node': 22.13.9
'@types/tough-cookie': 4.0.5
- form-data: 2.5.3
+ form-data: 2.5.5
'@types/resolve@1.20.2': {}
@@ -11015,9 +14762,9 @@ snapshots:
'@types/stylis@4.2.5': {}
- '@types/tar-stream@3.1.3':
+ '@types/tar-stream@3.1.4':
dependencies:
- '@types/node': 22.13.9
+ '@types/node': 24.2.0
'@types/tough-cookie@4.0.5': {}
@@ -11032,15 +14779,34 @@ snapshots:
'@types/uuid@8.3.4': {}
- '@typescript-eslint/eslint-plugin@8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)':
+ '@types/which@3.0.4': {}
+
+ '@typescript-eslint/eslint-plugin@8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3))(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3)':
+ dependencies:
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3)
+ '@typescript-eslint/scope-manager': 8.26.1
+ '@typescript-eslint/type-utils': 8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.26.1
+ eslint: 9.25.1(jiti@2.5.1)
+ graphemer: 1.4.0
+ ignore: 5.3.2
+ natural-compare: 1.4.0
+ ts-api-utils: 2.0.1(typescript@5.8.3)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/eslint-plugin@8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3))(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/parser': 8.26.1(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
'@typescript-eslint/scope-manager': 8.26.1
- '@typescript-eslint/type-utils': 8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/utils': 8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/type-utils': 8.26.1(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.26.1(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
'@typescript-eslint/visitor-keys': 8.26.1
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.32.0(jiti@2.5.1)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
@@ -11049,14 +14815,26 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)':
+ '@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3)':
+ dependencies:
+ '@typescript-eslint/scope-manager': 8.26.1
+ '@typescript-eslint/types': 8.26.1
+ '@typescript-eslint/typescript-estree': 8.26.1(typescript@5.8.3)
+ '@typescript-eslint/visitor-keys': 8.26.1
+ debug: 4.4.1(supports-color@8.1.1)
+ eslint: 9.25.1(jiti@2.5.1)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/parser@8.26.1(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)':
dependencies:
'@typescript-eslint/scope-manager': 8.26.1
'@typescript-eslint/types': 8.26.1
'@typescript-eslint/typescript-estree': 8.26.1(typescript@5.8.3)
'@typescript-eslint/visitor-keys': 8.26.1
debug: 4.4.1(supports-color@8.1.1)
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.32.0(jiti@2.5.1)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
@@ -11066,12 +14844,23 @@ snapshots:
'@typescript-eslint/types': 8.26.1
'@typescript-eslint/visitor-keys': 8.26.1
- '@typescript-eslint/type-utils@8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)':
+ '@typescript-eslint/type-utils@8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3)':
+ dependencies:
+ '@typescript-eslint/typescript-estree': 8.26.1(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3)
+ debug: 4.4.1(supports-color@8.1.1)
+ eslint: 9.25.1(jiti@2.5.1)
+ ts-api-utils: 2.0.1(typescript@5.8.3)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/type-utils@8.26.1(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)':
dependencies:
'@typescript-eslint/typescript-estree': 8.26.1(typescript@5.8.3)
- '@typescript-eslint/utils': 8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.26.1(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
debug: 4.4.1(supports-color@8.1.1)
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.32.0(jiti@2.5.1)
ts-api-utils: 2.0.1(typescript@5.8.3)
typescript: 5.8.3
transitivePeerDependencies:
@@ -11087,19 +14876,30 @@ snapshots:
fast-glob: 3.3.3
is-glob: 4.0.3
minimatch: 9.0.5
- semver: 7.7.1
+ semver: 7.7.2
ts-api-utils: 2.0.1(typescript@5.8.3)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)':
+ '@typescript-eslint/utils@8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.25.1(jiti@2.5.1))
+ '@typescript-eslint/scope-manager': 8.26.1
+ '@typescript-eslint/types': 8.26.1
+ '@typescript-eslint/typescript-estree': 8.26.1(typescript@5.8.3)
+ eslint: 9.25.1(jiti@2.5.1)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@typescript-eslint/utils@8.26.1(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.25.1(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.32.0(jiti@2.5.1))
'@typescript-eslint/scope-manager': 8.26.1
'@typescript-eslint/types': 8.26.1
'@typescript-eslint/typescript-estree': 8.26.1(typescript@5.8.3)
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.32.0(jiti@2.5.1)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
@@ -11109,6 +14909,33 @@ snapshots:
'@typescript-eslint/types': 8.26.1
eslint-visitor-keys: 4.2.0
+ '@uiw/codemirror-extensions-basic-setup@4.24.2(@codemirror/autocomplete@6.18.6)(@codemirror/commands@6.8.1)(@codemirror/language@6.11.2)(@codemirror/lint@6.8.5)(@codemirror/search@6.5.11)(@codemirror/state@6.5.2)(@codemirror/view@6.38.1)':
+ dependencies:
+ '@codemirror/autocomplete': 6.18.6
+ '@codemirror/commands': 6.8.1
+ '@codemirror/language': 6.11.2
+ '@codemirror/lint': 6.8.5
+ '@codemirror/search': 6.5.11
+ '@codemirror/state': 6.5.2
+ '@codemirror/view': 6.38.1
+
+ '@uiw/react-codemirror@4.24.2(@babel/runtime@7.28.2)(@codemirror/autocomplete@6.18.6)(@codemirror/language@6.11.2)(@codemirror/lint@6.8.5)(@codemirror/search@6.5.11)(@codemirror/state@6.5.2)(@codemirror/theme-one-dark@6.1.3)(@codemirror/view@6.38.1)(codemirror@6.0.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ dependencies:
+ '@babel/runtime': 7.28.2
+ '@codemirror/commands': 6.8.1
+ '@codemirror/state': 6.5.2
+ '@codemirror/theme-one-dark': 6.1.3
+ '@codemirror/view': 6.38.1
+ '@uiw/codemirror-extensions-basic-setup': 4.24.2(@codemirror/autocomplete@6.18.6)(@codemirror/commands@6.8.1)(@codemirror/language@6.11.2)(@codemirror/lint@6.8.5)(@codemirror/search@6.5.11)(@codemirror/state@6.5.2)(@codemirror/view@6.38.1)
+ codemirror: 6.0.2
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ transitivePeerDependencies:
+ - '@codemirror/autocomplete'
+ - '@codemirror/language'
+ - '@codemirror/lint'
+ - '@codemirror/search'
+
'@unrs/resolver-binding-darwin-arm64@1.7.2':
optional: true
@@ -11162,18 +14989,50 @@ snapshots:
'@unrs/resolver-binding-win32-x64-msvc@1.7.2':
optional: true
- '@vitejs/plugin-react@4.4.1(vite@6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1))':
+ '@vercel/edge@1.2.2': {}
+
+ '@vitejs/plugin-react@4.4.1(vite@6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))':
dependencies:
'@babel/core': 7.26.10
'@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.10)
'@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.10)
'@types/babel__core': 7.20.5
react-refresh: 0.17.0
- vite: 6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite: 6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@vitejs/plugin-react@4.7.0(vite@6.3.5(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.0)
+ '@rolldown/pluginutils': 1.0.0-beta.27
+ '@types/babel__core': 7.20.5
+ react-refresh: 0.17.0
+ vite: 6.3.5(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
+ transitivePeerDependencies:
+ - supports-color
+
+ '@vitest/coverage-v8@3.1.2(vitest@3.1.2(@types/node@22.13.9)(jiti@2.5.1)(jsdom@26.1.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))':
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@bcoe/v8-coverage': 1.0.2
+ debug: 4.4.1(supports-color@8.1.1)
+ istanbul-lib-coverage: 3.2.2
+ istanbul-lib-report: 3.0.1
+ istanbul-lib-source-maps: 5.0.6
+ istanbul-reports: 3.1.7
+ magic-string: 0.30.17
+ magicast: 0.3.5
+ std-env: 3.9.0
+ test-exclude: 7.0.1
+ tinyrainbow: 2.0.0
+ vitest: 3.1.2(@types/node@22.13.9)(jiti@2.5.1)(jsdom@26.1.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
transitivePeerDependencies:
- supports-color
- '@vitest/coverage-v8@3.1.2(vitest@3.1.2(@types/node@22.13.9)(jiti@2.4.2)(jsdom@25.0.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1))':
+ '@vitest/coverage-v8@3.1.2(vitest@3.1.2(@types/node@24.2.0)(jiti@2.5.1)(jsdom@25.0.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 1.0.2
@@ -11187,11 +15046,11 @@ snapshots:
std-env: 3.9.0
test-exclude: 7.0.1
tinyrainbow: 2.0.0
- vitest: 3.1.2(@types/node@22.13.9)(jiti@2.4.2)(jsdom@25.0.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
+ vitest: 3.1.2(@types/node@24.2.0)(jiti@2.5.1)(jsdom@25.0.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
transitivePeerDependencies:
- supports-color
- '@vitest/coverage-v8@3.1.2(vitest@3.1.2(@types/node@22.13.9)(jiti@2.4.2)(jsdom@26.1.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1))':
+ '@vitest/coverage-v8@3.1.2(vitest@3.1.2(@types/node@24.2.0)(jiti@2.5.1)(jsdom@26.1.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 1.0.2
@@ -11205,7 +15064,7 @@ snapshots:
std-env: 3.9.0
test-exclude: 7.0.1
tinyrainbow: 2.0.0
- vitest: 3.1.2(@types/node@22.13.9)(jiti@2.4.2)(jsdom@26.1.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
+ vitest: 3.1.2(@types/node@24.2.0)(jiti@2.5.1)(jsdom@26.1.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
transitivePeerDependencies:
- supports-color
@@ -11216,13 +15075,21 @@ snapshots:
chai: 5.2.0
tinyrainbow: 2.0.0
- '@vitest/mocker@3.1.2(vite@6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1))':
+ '@vitest/mocker@3.1.2(vite@6.3.4(@types/node@22.13.9)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))':
+ dependencies:
+ '@vitest/spy': 3.1.2
+ estree-walker: 3.0.3
+ magic-string: 0.30.17
+ optionalDependencies:
+ vite: 6.3.4(@types/node@22.13.9)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
+
+ '@vitest/mocker@3.1.2(vite@6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))':
dependencies:
'@vitest/spy': 3.1.2
estree-walker: 3.0.3
magic-string: 0.30.17
optionalDependencies:
- vite: 6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite: 6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
'@vitest/pretty-format@3.1.2':
dependencies:
@@ -11249,26 +15116,46 @@ snapshots:
loupe: 3.1.3
tinyrainbow: 2.0.0
- '@xstate/react@5.0.3(@types/react@19.1.2)(react@18.3.1)(xstate@5.20.0)':
+ '@xstate/react@6.0.0(@types/react@19.1.2)(react@18.3.1)(xstate@5.20.0)':
dependencies:
react: 18.3.1
- use-isomorphic-layout-effect: 1.2.0(@types/react@19.1.2)(react@18.3.1)
+ use-isomorphic-layout-effect: 1.2.1(@types/react@19.1.2)(react@18.3.1)
use-sync-external-store: 1.5.0(react@18.3.1)
optionalDependencies:
xstate: 5.20.0
transitivePeerDependencies:
- '@types/react'
- '@xstate/react@6.0.0(@types/react@19.1.2)(react@18.3.1)(xstate@5.20.0)':
+ '@xstate/react@6.0.0(@types/react@19.1.2)(react@18.3.1)(xstate@5.20.1)':
dependencies:
react: 18.3.1
- use-isomorphic-layout-effect: 1.2.0(@types/react@19.1.2)(react@18.3.1)
+ use-isomorphic-layout-effect: 1.2.1(@types/react@19.1.2)(react@18.3.1)
use-sync-external-store: 1.5.0(react@18.3.1)
+ optionalDependencies:
+ xstate: 5.20.1
+ transitivePeerDependencies:
+ - '@types/react'
+
+ '@xstate/react@6.0.0(@types/react@19.1.2)(react@19.1.0)(xstate@5.20.0)':
+ dependencies:
+ react: 19.1.0
+ use-isomorphic-layout-effect: 1.2.1(@types/react@19.1.2)(react@19.1.0)
+ use-sync-external-store: 1.5.0(react@19.1.0)
optionalDependencies:
xstate: 5.20.0
transitivePeerDependencies:
- '@types/react'
+ '@xstate/react@6.0.0(@types/react@19.1.2)(react@19.1.0)(xstate@5.20.1)':
+ dependencies:
+ react: 19.1.0
+ use-isomorphic-layout-effect: 1.2.1(@types/react@19.1.2)(react@19.1.0)
+ use-sync-external-store: 1.5.0(react@19.1.0)
+ optionalDependencies:
+ xstate: 5.20.1
+ transitivePeerDependencies:
+ - '@types/react'
+
JSONStream@1.3.5:
dependencies:
jsonparse: 1.3.1
@@ -11282,8 +15169,18 @@ snapshots:
dependencies:
acorn: 8.14.0
+ acorn-jsx@5.3.2(acorn@8.15.0):
+ dependencies:
+ acorn: 8.15.0
+
+ acorn-loose@8.4.0:
+ dependencies:
+ acorn: 8.15.0
+
acorn@8.14.0: {}
+ acorn@8.15.0: {}
+
adm-zip@0.5.16: {}
agent-base@6.0.2:
@@ -11354,6 +15251,8 @@ snapshots:
ansi-styles@6.2.1: {}
+ ansicolors@0.3.2: {}
+
ansis@3.17.0: {}
ansis@4.1.0: {}
@@ -11413,6 +15312,8 @@ snapshots:
array-treeify@0.1.3: {}
+ array-treeify@0.1.5: {}
+
array-union@2.1.0: {}
array.prototype.findlast@1.2.5:
@@ -11476,6 +15377,8 @@ snapshots:
'@babel/parser': 7.28.0
pathe: 2.0.3
+ ast-types-flow@0.0.8: {}
+
ast-types@0.16.1:
dependencies:
tslib: 2.8.1
@@ -11496,6 +15399,12 @@ snapshots:
dependencies:
possible-typed-array-names: 1.0.0
+ aws4@1.13.2: {}
+
+ axe-core@4.10.3: {}
+
+ axobject-query@4.1.0: {}
+
b4a@1.6.7: {}
babel-plugin-polyfill-corejs2@0.4.13(@babel/core@7.26.10):
@@ -11507,6 +15416,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.0):
+ dependencies:
+ '@babel/compat-data': 7.28.0
+ '@babel/core': 7.28.0
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.0)
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.26.10):
dependencies:
'@babel/core': 7.26.10
@@ -11515,6 +15433,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.28.0):
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.0)
+ core-js-compat: 3.44.0
+ transitivePeerDependencies:
+ - supports-color
+
babel-plugin-polyfill-regenerator@0.6.4(@babel/core@7.26.10):
dependencies:
'@babel/core': 7.26.10
@@ -11522,13 +15448,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.28.0):
+ dependencies:
+ '@babel/core': 7.28.0
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.0)
+ transitivePeerDependencies:
+ - supports-color
+
babel-plugin-react-compiler@19.1.0-rc.1:
dependencies:
'@babel/types': 7.27.0
balanced-match@1.0.2: {}
- bare-events@2.5.4:
+ bare-events@2.6.0:
optional: true
base64-js@1.5.1: {}
@@ -11573,6 +15506,10 @@ snapshots:
dependencies:
balanced-match: 1.0.2
+ brace-expansion@2.0.2:
+ dependencies:
+ balanced-match: 1.0.2
+
braces@3.0.3:
dependencies:
fill-range: 7.1.1
@@ -11659,6 +15596,23 @@ snapshots:
caniuse-lite@1.0.30001727: {}
+ cardinal@2.1.1:
+ dependencies:
+ ansicolors: 0.3.2
+ redeyed: 2.1.1
+
+ castable-video@1.1.10:
+ dependencies:
+ custom-media-element: 1.4.5
+
+ ce-la-react@0.3.0(react@18.3.1):
+ dependencies:
+ react: 18.3.1
+
+ ce-la-react@0.3.0(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+
chai@5.2.0:
dependencies:
assertion-error: 2.0.1
@@ -11687,12 +15641,20 @@ snapshots:
chalk@5.4.1: {}
+ chalk@5.5.0: {}
+
character-entities-legacy@1.1.4: {}
+ character-entities-legacy@3.0.0: {}
+
character-entities@1.2.4: {}
+ character-entities@2.0.2: {}
+
character-reference-invalid@1.1.4: {}
+ character-reference-invalid@2.0.1: {}
+
chardet@0.7.0: {}
check-error@2.1.1: {}
@@ -11758,6 +15720,16 @@ snapshots:
clone@1.0.4: {}
+ codemirror@6.0.2:
+ dependencies:
+ '@codemirror/autocomplete': 6.18.6
+ '@codemirror/commands': 6.8.1
+ '@codemirror/language': 6.11.2
+ '@codemirror/lint': 6.8.5
+ '@codemirror/search': 6.5.11
+ '@codemirror/state': 6.5.2
+ '@codemirror/view': 6.38.1
+
color-convert@1.9.3:
dependencies:
color-name: 1.1.3
@@ -11784,6 +15756,8 @@ snapshots:
comma-separated-tokens@1.0.8: {}
+ comma-separated-tokens@2.0.3: {}
+
commander@12.1.0: {}
commander@2.20.3: {}
@@ -11828,9 +15802,9 @@ snapshots:
write-file-atomic: 3.0.3
xdg-basedir: 4.0.0
- console-table-printer@2.12.1:
+ console-table-printer@2.14.6:
dependencies:
- simple-wcswidth: 1.0.1
+ simple-wcswidth: 1.1.2
conventional-changelog-angular@7.0.0:
dependencies:
@@ -11855,6 +15829,10 @@ snapshots:
dependencies:
browserslist: 4.24.4
+ core-js-compat@3.44.0:
+ dependencies:
+ browserslist: 4.25.1
+
core-util-is@1.0.3: {}
cosmiconfig-typescript-loader@6.1.0(@types/node@22.13.9)(cosmiconfig@9.0.0(typescript@5.8.3))(typescript@5.8.3):
@@ -11867,7 +15845,7 @@ snapshots:
cosmiconfig@9.0.0(typescript@5.8.3):
dependencies:
env-paths: 2.2.1
- import-fresh: 3.3.0
+ import-fresh: 3.3.1
js-yaml: 4.1.0
parse-json: 5.2.0
optionalDependencies:
@@ -11880,6 +15858,8 @@ snapshots:
crc-32: 1.2.2
readable-stream: 4.7.0
+ crelt@1.0.6: {}
+
cross-spawn@7.0.6:
dependencies:
path-key: 3.1.1
@@ -11890,10 +15870,10 @@ snapshots:
css-color-keywords@1.0.0: {}
- css-select@5.1.0:
+ css-select@5.2.2:
dependencies:
boolbase: 1.0.0
- css-what: 6.1.0
+ css-what: 6.2.2
domhandler: 5.0.3
domutils: 3.2.2
nth-check: 2.1.1
@@ -11909,7 +15889,7 @@ snapshots:
mdn-data: 2.0.30
source-map-js: 1.2.1
- css-what@6.1.0: {}
+ css-what@6.2.2: {}
css.escape@1.5.1: {}
@@ -11918,10 +15898,19 @@ snapshots:
'@asamuzakjp/css-color': 3.1.5
rrweb-cssom: 0.8.0
+ cssstyle@4.6.0:
+ dependencies:
+ '@asamuzakjp/css-color': 3.2.0
+ rrweb-cssom: 0.8.0
+
csstype@3.1.3: {}
+ custom-media-element@1.4.5: {}
+
cyclist@1.0.2: {}
+ damerau-levenshtein@1.0.8: {}
+
dargs@8.1.0: {}
data-uri-to-buffer@1.2.0: {}
@@ -11953,7 +15942,9 @@ snapshots:
date-fns@2.30.0:
dependencies:
- '@babel/runtime': 7.27.0
+ '@babel/runtime': 7.28.2
+
+ date-fns@4.1.0: {}
debounce@1.2.1: {}
@@ -11984,6 +15975,12 @@ snapshots:
decimal.js@10.5.0: {}
+ decimal.js@10.6.0: {}
+
+ decode-named-character-reference@1.2.0:
+ dependencies:
+ character-entities: 2.0.2
+
decompress-response@7.0.0:
dependencies:
mimic-response: 3.1.0
@@ -12026,6 +16023,8 @@ snapshots:
pify: 2.3.0
strip-dirs: 2.1.0
+ deeks@3.1.0: {}
+
deep-eql@5.0.2: {}
deep-extend@0.6.0: {}
@@ -12073,6 +16072,8 @@ snapshots:
direction@1.0.4: {}
+ doc-path@4.1.1: {}
+
doctrine@2.1.0:
dependencies:
esutils: 2.0.3
@@ -12095,7 +16096,7 @@ snapshots:
dependencies:
domelementtype: 2.3.0
- dompurify@3.2.5:
+ dompurify@3.2.6:
optionalDependencies:
'@types/trusted-types': 2.0.7
@@ -12123,7 +16124,7 @@ snapshots:
duplexify@3.7.1:
dependencies:
- end-of-stream: 1.4.4
+ end-of-stream: 1.4.5
inherits: 2.0.4
readable-stream: 2.3.8
stream-shift: 1.0.3
@@ -12159,6 +16160,10 @@ snapshots:
dependencies:
once: 1.4.0
+ end-of-stream@1.4.5:
+ dependencies:
+ once: 1.4.0
+
enhanced-resolve@5.18.1:
dependencies:
graceful-fs: 4.2.11
@@ -12166,6 +16171,8 @@ snapshots:
entities@4.5.0: {}
+ entities@6.0.1: {}
+
env-paths@2.2.1: {}
environment@1.1.0: {}
@@ -12291,6 +16298,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ esbuild-register@3.6.0(esbuild@0.25.8):
+ dependencies:
+ debug: 4.4.1(supports-color@8.1.1)
+ esbuild: 0.25.8
+ transitivePeerDependencies:
+ - supports-color
+
esbuild@0.21.5:
optionalDependencies:
'@esbuild/aix-ppc64': 0.21.5
@@ -12374,20 +16388,49 @@ snapshots:
'@esbuild/win32-ia32': 0.25.6
'@esbuild/win32-x64': 0.25.6
+ esbuild@0.25.8:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.25.8
+ '@esbuild/android-arm': 0.25.8
+ '@esbuild/android-arm64': 0.25.8
+ '@esbuild/android-x64': 0.25.8
+ '@esbuild/darwin-arm64': 0.25.8
+ '@esbuild/darwin-x64': 0.25.8
+ '@esbuild/freebsd-arm64': 0.25.8
+ '@esbuild/freebsd-x64': 0.25.8
+ '@esbuild/linux-arm': 0.25.8
+ '@esbuild/linux-arm64': 0.25.8
+ '@esbuild/linux-ia32': 0.25.8
+ '@esbuild/linux-loong64': 0.25.8
+ '@esbuild/linux-mips64el': 0.25.8
+ '@esbuild/linux-ppc64': 0.25.8
+ '@esbuild/linux-riscv64': 0.25.8
+ '@esbuild/linux-s390x': 0.25.8
+ '@esbuild/linux-x64': 0.25.8
+ '@esbuild/netbsd-arm64': 0.25.8
+ '@esbuild/netbsd-x64': 0.25.8
+ '@esbuild/openbsd-arm64': 0.25.8
+ '@esbuild/openbsd-x64': 0.25.8
+ '@esbuild/openharmony-arm64': 0.25.8
+ '@esbuild/sunos-x64': 0.25.8
+ '@esbuild/win32-arm64': 0.25.8
+ '@esbuild/win32-ia32': 0.25.8
+ '@esbuild/win32-x64': 0.25.8
+
escalade@3.2.0: {}
escape-string-regexp@1.0.5: {}
escape-string-regexp@4.0.0: {}
- eslint-config-prettier@10.1.1(eslint@9.25.1(jiti@2.4.2)):
+ eslint-config-prettier@10.1.1(eslint@9.25.1(jiti@2.5.1)):
dependencies:
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.25.1(jiti@2.5.1)
- eslint-config-turbo@2.4.4(eslint@9.25.1(jiti@2.4.2))(turbo@2.5.2):
+ eslint-config-turbo@2.4.4(eslint@9.25.1(jiti@2.5.1))(turbo@2.5.2):
dependencies:
- eslint: 9.25.1(jiti@2.4.2)
- eslint-plugin-turbo: 2.4.4(eslint@9.25.1(jiti@2.4.2))(turbo@2.5.2)
+ eslint: 9.25.1(jiti@2.5.1)
+ eslint-plugin-turbo: 2.4.4(eslint@9.25.1(jiti@2.5.1))(turbo@2.5.2)
turbo: 2.5.2
eslint-import-resolver-node@0.3.9:
@@ -12398,33 +16441,33 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0)(eslint@9.25.1(jiti@2.4.2)):
+ eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0)(eslint@9.25.1(jiti@2.5.1)):
dependencies:
'@nolyfill/is-core-module': 1.0.39
debug: 4.4.1(supports-color@8.1.1)
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.25.1(jiti@2.5.1)
get-tsconfig: 4.10.0
is-bun-module: 2.0.0
stable-hash: 0.0.5
tinyglobby: 0.2.13
unrs-resolver: 1.7.2
optionalDependencies:
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.25.1(jiti@2.4.2))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.25.1(jiti@2.5.1))
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.25.1(jiti@2.4.2)):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0)(eslint@9.25.1(jiti@2.5.1)))(eslint@9.25.1(jiti@2.5.1)):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
- eslint: 9.25.1(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3)
+ eslint: 9.25.1(jiti@2.5.1)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.31.0)(eslint@9.25.1(jiti@2.4.2))
+ eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.31.0)(eslint@9.25.1(jiti@2.5.1))
transitivePeerDependencies:
- supports-color
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.25.1(jiti@2.4.2)):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.25.1(jiti@2.5.1)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
@@ -12433,9 +16476,9 @@ snapshots:
array.prototype.flatmap: 1.3.3
debug: 3.2.7
doctrine: 2.1.0
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.25.1(jiti@2.5.1)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@9.25.1(jiti@2.4.2))
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.31.0)(eslint@9.25.1(jiti@2.5.1)))(eslint@9.25.1(jiti@2.5.1))
hasown: 2.0.2
is-core-module: 2.15.1
is-glob: 4.0.3
@@ -12447,42 +16490,87 @@ snapshots:
string.prototype.trimend: 1.0.9
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/parser': 8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-prettier@5.2.3(eslint-config-prettier@10.1.1(eslint@9.25.1(jiti@2.4.2)))(eslint@9.25.1(jiti@2.4.2))(prettier@3.6.2):
+ eslint-plugin-jsx-a11y@6.10.2(eslint@9.32.0(jiti@2.5.1)):
dependencies:
- eslint: 9.25.1(jiti@2.4.2)
+ aria-query: 5.3.2
+ array-includes: 3.1.8
+ array.prototype.flatmap: 1.3.3
+ ast-types-flow: 0.0.8
+ axe-core: 4.10.3
+ axobject-query: 4.1.0
+ damerau-levenshtein: 1.0.8
+ emoji-regex: 9.2.2
+ eslint: 9.32.0(jiti@2.5.1)
+ 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.1.0
+ string.prototype.includes: 2.0.1
+
+ eslint-plugin-prettier@5.2.3(eslint-config-prettier@10.1.1(eslint@9.25.1(jiti@2.5.1)))(eslint@9.25.1(jiti@2.5.1))(prettier@3.6.2):
+ dependencies:
+ eslint: 9.25.1(jiti@2.5.1)
prettier: 3.6.2
prettier-linter-helpers: 1.0.0
synckit: 0.9.2
optionalDependencies:
- eslint-config-prettier: 10.1.1(eslint@9.25.1(jiti@2.4.2))
+ eslint-config-prettier: 10.1.1(eslint@9.25.1(jiti@2.5.1))
- eslint-plugin-react-compiler@19.1.0-rc.1(eslint@9.25.1(jiti@2.4.2)):
+ eslint-plugin-react-compiler@19.1.0-rc.1(eslint@9.25.1(jiti@2.5.1)):
dependencies:
'@babel/core': 7.26.10
'@babel/parser': 7.27.0
'@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.26.10)
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.25.1(jiti@2.5.1)
hermes-parser: 0.25.1
zod: 3.24.2
zod-validation-error: 3.4.0(zod@3.24.2)
transitivePeerDependencies:
- supports-color
- eslint-plugin-react-hooks@5.2.0(eslint@9.25.1(jiti@2.4.2)):
+ eslint-plugin-react-hooks@5.2.0(eslint@9.25.1(jiti@2.5.1)):
+ dependencies:
+ eslint: 9.25.1(jiti@2.5.1)
+
+ eslint-plugin-react-hooks@5.2.0(eslint@9.32.0(jiti@2.5.1)):
+ dependencies:
+ eslint: 9.32.0(jiti@2.5.1)
+
+ eslint-plugin-react-refresh@0.4.19(eslint@9.25.1(jiti@2.5.1)):
dependencies:
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.25.1(jiti@2.5.1)
- eslint-plugin-react-refresh@0.4.19(eslint@9.25.1(jiti@2.4.2)):
+ eslint-plugin-react@7.37.4(eslint@9.25.1(jiti@2.5.1)):
dependencies:
- eslint: 9.25.1(jiti@2.4.2)
+ 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
+ eslint: 9.25.1(jiti@2.5.1)
+ estraverse: 5.3.0
+ hasown: 2.0.2
+ jsx-ast-utils: 3.3.5
+ minimatch: 3.1.2
+ object.entries: 1.1.8
+ 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-plugin-react@7.37.4(eslint@9.25.1(jiti@2.4.2)):
+ eslint-plugin-react@7.37.4(eslint@9.32.0(jiti@2.5.1)):
dependencies:
array-includes: 3.1.8
array.prototype.findlast: 1.2.5
@@ -12490,7 +16578,7 @@ snapshots:
array.prototype.tosorted: 1.1.4
doctrine: 2.1.0
es-iterator-helpers: 1.2.1
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.32.0(jiti@2.5.1)
estraverse: 5.3.0
hasown: 2.0.2
jsx-ast-utils: 3.3.5
@@ -12504,39 +16592,46 @@ snapshots:
string.prototype.matchall: 4.0.12
string.prototype.repeat: 1.0.0
- eslint-plugin-simple-import-sort@12.1.1(eslint@9.25.1(jiti@2.4.2)):
+ eslint-plugin-simple-import-sort@12.1.1(eslint@9.25.1(jiti@2.5.1)):
dependencies:
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.25.1(jiti@2.5.1)
eslint-plugin-tsdoc@0.4.0:
dependencies:
'@microsoft/tsdoc': 0.15.1
'@microsoft/tsdoc-config': 0.17.1
- eslint-plugin-turbo@2.4.4(eslint@9.25.1(jiti@2.4.2))(turbo@2.5.2):
+ eslint-plugin-turbo@2.4.4(eslint@9.25.1(jiti@2.5.1))(turbo@2.5.2):
dependencies:
dotenv: 16.0.3
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.25.1(jiti@2.5.1)
turbo: 2.5.2
- eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2)):
+ eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3))(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3))(eslint@9.25.1(jiti@2.5.1)):
dependencies:
- eslint: 9.25.1(jiti@2.4.2)
+ eslint: 9.25.1(jiti@2.5.1)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
+ '@typescript-eslint/eslint-plugin': 8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3))(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3)
eslint-scope@8.3.0:
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
+ eslint-scope@8.4.0:
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 5.3.0
+
eslint-visitor-keys@3.4.3: {}
eslint-visitor-keys@4.2.0: {}
- eslint@9.25.1(jiti@2.4.2):
+ eslint-visitor-keys@4.2.1: {}
+
+ eslint@9.25.1(jiti@2.5.1):
dependencies:
- '@eslint-community/eslint-utils': 4.4.1(eslint@9.25.1(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.25.1(jiti@2.5.1))
'@eslint-community/regexpp': 4.12.1
'@eslint/config-array': 0.20.0
'@eslint/config-helpers': 0.2.1
@@ -12572,7 +16667,49 @@ snapshots:
natural-compare: 1.4.0
optionator: 0.9.4
optionalDependencies:
- jiti: 2.4.2
+ jiti: 2.5.1
+ transitivePeerDependencies:
+ - supports-color
+
+ eslint@9.32.0(jiti@2.5.1):
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.32.0(jiti@2.5.1))
+ '@eslint-community/regexpp': 4.12.1
+ '@eslint/config-array': 0.21.0
+ '@eslint/config-helpers': 0.3.0
+ '@eslint/core': 0.15.1
+ '@eslint/eslintrc': 3.3.1
+ '@eslint/js': 9.32.0
+ '@eslint/plugin-kit': 0.3.4
+ '@humanfs/node': 0.16.6
+ '@humanwhocodes/module-importer': 1.0.1
+ '@humanwhocodes/retry': 0.4.2
+ '@types/estree': 1.0.8
+ '@types/json-schema': 7.0.15
+ ajv: 6.12.6
+ chalk: 4.1.2
+ cross-spawn: 7.0.6
+ debug: 4.4.1(supports-color@8.1.1)
+ escape-string-regexp: 4.0.0
+ eslint-scope: 8.4.0
+ eslint-visitor-keys: 4.2.1
+ espree: 10.4.0
+ esquery: 1.6.0
+ esutils: 2.0.3
+ fast-deep-equal: 3.1.3
+ file-entry-cache: 8.0.0
+ find-up: 5.0.0
+ glob-parent: 6.0.2
+ ignore: 5.3.2
+ imurmurhash: 0.1.4
+ is-glob: 4.0.3
+ json-stable-stringify-without-jsonify: 1.0.1
+ lodash.merge: 4.6.2
+ minimatch: 3.1.2
+ natural-compare: 1.4.0
+ optionator: 0.9.4
+ optionalDependencies:
+ jiti: 2.5.1
transitivePeerDependencies:
- supports-color
@@ -12582,6 +16719,12 @@ snapshots:
acorn-jsx: 5.3.2(acorn@8.14.0)
eslint-visitor-keys: 4.2.0
+ espree@10.4.0:
+ dependencies:
+ acorn: 8.15.0
+ acorn-jsx: 5.3.2(acorn@8.15.0)
+ eslint-visitor-keys: 4.2.1
+
esprima@4.0.1: {}
esquery@1.6.0:
@@ -12598,7 +16741,7 @@ snapshots:
estree-walker@3.0.3:
dependencies:
- '@types/estree': 1.0.7
+ '@types/estree': 1.0.8
esutils@2.0.3: {}
@@ -12618,6 +16761,10 @@ snapshots:
dependencies:
eventsource-parser: 3.0.1
+ eventsource@4.0.0:
+ dependencies:
+ eventsource-parser: 3.0.1
+
execa@2.1.0:
dependencies:
cross-spawn: 7.0.6
@@ -12690,6 +16837,10 @@ snapshots:
optionalDependencies:
picomatch: 4.0.2
+ fdir@6.4.6(picomatch@4.0.3):
+ optionalDependencies:
+ picomatch: 4.0.3
+
file-entry-cache@8.0.0:
dependencies:
flat-cache: 4.0.1
@@ -12744,6 +16895,11 @@ snapshots:
path-exists: 5.0.0
unicorn-magic: 0.1.0
+ find-yarn-workspace-root2@1.2.16:
+ dependencies:
+ micromatch: 4.0.8
+ pkg-dir: 4.2.0
+
flat-cache@4.0.1:
dependencies:
flatted: 3.3.2
@@ -12760,6 +16916,10 @@ snapshots:
dependencies:
tslib: 2.8.1
+ follow-redirects@1.15.11(debug@4.4.1):
+ optionalDependencies:
+ debug: 4.4.1(supports-color@8.1.1)
+
follow-redirects@1.15.9(debug@4.4.1):
optionalDependencies:
debug: 4.4.1(supports-color@8.1.1)
@@ -12773,11 +16933,12 @@ snapshots:
cross-spawn: 7.0.6
signal-exit: 4.1.0
- form-data@2.5.3:
+ form-data@2.5.5:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
es-set-tostringtag: 2.1.0
+ hasown: 2.0.2
mime-types: 2.1.35
safe-buffer: 5.2.1
@@ -12787,6 +16948,54 @@ snapshots:
combined-stream: 1.0.8
mime-types: 2.1.35
+ form-data@4.0.4:
+ dependencies:
+ asynckit: 0.4.0
+ combined-stream: 1.0.8
+ es-set-tostringtag: 2.1.0
+ hasown: 2.0.2
+ mime-types: 2.1.35
+
+ framer-motion@12.23.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ dependencies:
+ motion-dom: 12.23.9
+ motion-utils: 12.23.6
+ tslib: 2.8.1
+ optionalDependencies:
+ '@emotion/is-prop-valid': 1.2.2
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ framer-motion@12.23.11(@emotion/is-prop-valid@1.2.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ dependencies:
+ motion-dom: 12.23.9
+ motion-utils: 12.23.6
+ tslib: 2.8.1
+ optionalDependencies:
+ '@emotion/is-prop-valid': 1.2.2
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+
+ framer-motion@12.23.12(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ dependencies:
+ motion-dom: 12.23.12
+ motion-utils: 12.23.6
+ tslib: 2.8.1
+ optionalDependencies:
+ '@emotion/is-prop-valid': 1.2.2
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ framer-motion@12.23.12(@emotion/is-prop-valid@1.2.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ dependencies:
+ motion-dom: 12.23.12
+ motion-utils: 12.23.6
+ tslib: 2.8.1
+ optionalDependencies:
+ '@emotion/is-prop-valid': 1.2.2
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+
framer-motion@12.6.3(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
motion-dom: 12.6.3
@@ -12797,6 +17006,16 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ framer-motion@12.6.3(@emotion/is-prop-valid@1.2.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ dependencies:
+ motion-dom: 12.6.3
+ motion-utils: 12.6.3
+ tslib: 2.8.1
+ optionalDependencies:
+ '@emotion/is-prop-valid': 1.2.2
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+
from2@2.3.0:
dependencies:
inherits: 2.0.4
@@ -12862,6 +17081,8 @@ snapshots:
get-east-asian-width@1.3.0: {}
+ get-folder-size@5.0.0: {}
+
get-intrinsic@1.2.6:
dependencies:
call-bind-apply-helpers: 1.0.1
@@ -12875,6 +17096,17 @@ snapshots:
hasown: 2.0.2
math-intrinsics: 1.1.0
+ get-it@8.6.10(debug@4.4.1):
+ dependencies:
+ '@types/follow-redirects': 1.14.4
+ decompress-response: 7.0.0
+ follow-redirects: 1.15.11(debug@4.4.1)
+ is-retry-allowed: 2.2.0
+ through2: 4.0.2
+ tunnel-agent: 0.6.0
+ transitivePeerDependencies:
+ - debug
+
get-it@8.6.7(debug@4.4.1):
dependencies:
'@types/follow-redirects': 1.14.4
@@ -12889,7 +17121,7 @@ snapshots:
get-latest-version@5.1.0:
dependencies:
- get-it: 8.6.7(debug@4.4.1)
+ get-it: 8.6.10(debug@4.4.1)
registry-auth-token: 5.0.2
registry-url: 5.1.0
semver: 7.7.1
@@ -12915,7 +17147,7 @@ snapshots:
get-stream@5.2.0:
dependencies:
- pump: 3.0.2
+ pump: 3.0.3
get-stream@8.0.1: {}
@@ -12978,6 +17210,14 @@ snapshots:
dependencies:
is-glob: 4.0.3
+ glob@10.3.16:
+ dependencies:
+ foreground-child: 3.3.0
+ jackspeak: 3.4.3
+ minimatch: 9.0.5
+ minipass: 7.1.2
+ path-scurry: 1.11.1
+
glob@10.4.5:
dependencies:
foreground-child: 3.3.0
@@ -13070,10 +17310,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
- groq@3.87.0: {}
+ groq-js@1.17.3:
+ dependencies:
+ debug: 4.4.1(supports-color@8.1.1)
+ transitivePeerDependencies:
+ - supports-color
groq@3.88.1-typegen-experimental.0: {}
+ groq@3.99.0: {}
+
+ groq@4.3.0: {}
+
gtoken@7.1.0:
dependencies:
gaxios: 6.7.1
@@ -13119,6 +17367,10 @@ snapshots:
hast-util-parse-selector@2.2.5: {}
+ hast-util-parse-selector@4.0.0:
+ dependencies:
+ '@types/hast': 3.0.4
+
hastscript@6.0.0:
dependencies:
'@types/hast': 2.3.10
@@ -13127,6 +17379,14 @@ snapshots:
property-information: 5.6.0
space-separated-tokens: 1.1.5
+ hastscript@9.0.1:
+ dependencies:
+ '@types/hast': 3.0.4
+ comma-separated-tokens: 2.0.3
+ hast-util-parse-selector: 4.0.0
+ property-information: 7.1.0
+ space-separated-tokens: 2.0.2
+
he@1.2.0: {}
hermes-estree@0.25.1: {}
@@ -13137,7 +17397,9 @@ snapshots:
history@5.3.0:
dependencies:
- '@babel/runtime': 7.27.0
+ '@babel/runtime': 7.28.2
+
+ hls.js@1.6.8: {}
hoist-non-react-statics@3.3.2:
dependencies:
@@ -13204,7 +17466,7 @@ snapshots:
i18next@23.16.8:
dependencies:
- '@babel/runtime': 7.27.0
+ '@babel/runtime': 7.28.2
iconv-lite@0.4.24:
dependencies:
@@ -13225,6 +17487,11 @@ snapshots:
parent-module: 1.0.1
resolve-from: 4.0.0
+ import-fresh@3.3.1:
+ dependencies:
+ parent-module: 1.0.1
+ resolve-from: 4.0.0
+
import-lazy@4.0.0: {}
import-meta-resolve@4.1.0: {}
@@ -13241,17 +17508,29 @@ snapshots:
ini@4.1.1: {}
- inquirer@12.6.0(@types/node@22.13.9):
+ inquirer@12.6.0(@types/node@24.2.0):
dependencies:
- '@inquirer/core': 10.1.10(@types/node@22.13.9)
- '@inquirer/prompts': 7.5.0(@types/node@22.13.9)
- '@inquirer/type': 3.0.6(@types/node@22.13.9)
+ '@inquirer/core': 10.1.10(@types/node@24.2.0)
+ '@inquirer/prompts': 7.5.0(@types/node@24.2.0)
+ '@inquirer/type': 3.0.6(@types/node@24.2.0)
ansi-escapes: 4.3.2
mute-stream: 2.0.0
run-async: 3.0.0
rxjs: 7.8.2
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 24.2.0
+
+ inquirer@12.9.0(@types/node@24.2.0):
+ dependencies:
+ '@inquirer/core': 10.1.15(@types/node@24.2.0)
+ '@inquirer/prompts': 7.8.0(@types/node@24.2.0)
+ '@inquirer/type': 3.0.8(@types/node@24.2.0)
+ ansi-escapes: 4.3.2
+ mute-stream: 2.0.0
+ run-async: 4.0.5
+ rxjs: 7.8.2
+ optionalDependencies:
+ '@types/node': 24.2.0
inter-ui@4.1.0: {}
@@ -13263,11 +17542,18 @@ snapshots:
is-alphabetical@1.0.4: {}
+ is-alphabetical@2.0.1: {}
+
is-alphanumerical@1.0.4:
dependencies:
is-alphabetical: 1.0.4
is-decimal: 1.0.4
+ is-alphanumerical@2.0.1:
+ dependencies:
+ is-alphabetical: 2.0.1
+ is-decimal: 2.0.1
+
is-array-buffer@3.0.5:
dependencies:
call-bind: 1.0.8
@@ -13303,6 +17589,10 @@ snapshots:
dependencies:
hasown: 2.0.2
+ is-core-module@2.16.1:
+ dependencies:
+ hasown: 2.0.2
+
is-data-view@1.0.2:
dependencies:
call-bound: 1.0.3
@@ -13316,6 +17606,8 @@ snapshots:
is-decimal@1.0.4: {}
+ is-decimal@2.0.1: {}
+
is-deflate@1.0.0: {}
is-docker@2.2.1: {}
@@ -13346,6 +17638,8 @@ snapshots:
is-hexadecimal@1.0.4: {}
+ is-hexadecimal@2.0.1: {}
+
is-hotkey-esm@1.0.0: {}
is-hotkey@0.2.0: {}
@@ -13383,7 +17677,7 @@ snapshots:
is-reference@1.2.1:
dependencies:
- '@types/estree': 1.0.7
+ '@types/estree': 1.0.8
is-regex@1.2.1:
dependencies:
@@ -13437,6 +17731,8 @@ snapshots:
is-unicode-supported@1.3.0: {}
+ is-unicode-supported@2.1.0: {}
+
is-weakmap@2.0.2: {}
is-weakref@1.1.0:
@@ -13464,9 +17760,9 @@ snapshots:
isobject@3.0.1: {}
- isomorphic-dompurify@2.24.0:
+ isomorphic-dompurify@2.26.0:
dependencies:
- dompurify: 3.2.5
+ dompurify: 3.2.6
jsdom: 26.1.0
transitivePeerDependencies:
- bufferutil
@@ -13523,10 +17819,17 @@ snapshots:
jiti@2.4.2: {}
+ jiti@2.5.1: {}
+
jju@1.4.0: {}
js-tokens@4.0.0: {}
+ js-yaml@3.14.1:
+ dependencies:
+ argparse: 1.0.10
+ esprima: 4.0.1
+
js-yaml@4.1.0:
dependencies:
argparse: 2.0.1
@@ -13538,15 +17841,15 @@ snapshots:
jsdom@23.2.0:
dependencies:
'@asamuzakjp/dom-selector': 2.0.2
- cssstyle: 4.3.1
+ cssstyle: 4.6.0
data-urls: 5.0.0
- decimal.js: 10.5.0
- form-data: 4.0.1
+ decimal.js: 10.6.0
+ form-data: 4.0.4
html-encoding-sniffer: 4.0.0
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.6
is-potential-custom-element-name: 1.0.1
- parse5: 7.2.1
+ parse5: 7.3.0
rrweb-cssom: 0.6.0
saxes: 6.0.0
symbol-tree: 3.2.4
@@ -13556,7 +17859,7 @@ snapshots:
whatwg-encoding: 3.1.1
whatwg-mimetype: 4.0.0
whatwg-url: 14.2.0
- ws: 8.18.0
+ ws: 8.18.3
xml-name-validator: 5.0.0
transitivePeerDependencies:
- bufferutil
@@ -13593,15 +17896,15 @@ snapshots:
jsdom@26.1.0:
dependencies:
- cssstyle: 4.3.1
+ cssstyle: 4.6.0
data-urls: 5.0.0
- decimal.js: 10.5.0
+ decimal.js: 10.6.0
html-encoding-sniffer: 4.0.0
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.6
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.20
- parse5: 7.2.1
+ nwsapi: 2.2.21
+ parse5: 7.3.0
rrweb-cssom: 0.8.0
saxes: 6.0.0
symbol-tree: 3.2.4
@@ -13611,7 +17914,7 @@ snapshots:
whatwg-encoding: 3.1.1
whatwg-mimetype: 4.0.0
whatwg-url: 14.2.0
- ws: 8.18.0
+ ws: 8.18.3
xml-name-validator: 5.0.0
transitivePeerDependencies:
- bufferutil
@@ -13620,6 +17923,11 @@ snapshots:
jsesc@3.0.2: {}
+ json-2-csv@5.5.9:
+ dependencies:
+ deeks: 3.1.0
+ doc-path: 4.1.1
+
json-bigint@1.0.0:
dependencies:
bignumber.js: 9.3.0
@@ -13708,6 +18016,14 @@ snapshots:
zod: 3.24.2
zod-validation-error: 3.4.0(zod@3.24.2)
+ lambda-runtimes@2.0.5: {}
+
+ language-subtag-registry@0.3.23: {}
+
+ language-tags@1.0.9:
+ dependencies:
+ language-subtag-registry: 0.3.23
+
lazystream@1.0.1:
dependencies:
readable-stream: 2.3.8
@@ -13797,6 +18113,13 @@ snapshots:
rfdc: 1.4.1
wrap-ansi: 9.0.0
+ load-yaml-file@0.2.0:
+ dependencies:
+ graceful-fs: 4.2.11
+ js-yaml: 3.14.1
+ pify: 4.0.1
+ strip-bom: 3.0.0
+
locate-path@3.0.0:
dependencies:
p-locate: 3.0.0
@@ -13852,6 +18175,11 @@ snapshots:
chalk: 5.4.1
is-unicode-supported: 1.3.0
+ log-symbols@6.0.0:
+ dependencies:
+ chalk: 5.4.1
+ is-unicode-supported: 1.3.0
+
log-update@6.1.0:
dependencies:
ansi-escapes: 7.0.0
@@ -13907,7 +18235,7 @@ snapshots:
make-dir@4.0.0:
dependencies:
- semver: 7.7.1
+ semver: 7.7.2
map-obj@1.0.1: {}
@@ -13930,6 +18258,22 @@ snapshots:
mdurl@2.0.0: {}
+ media-chrome@4.11.1(react@18.3.1):
+ dependencies:
+ '@vercel/edge': 1.2.2
+ ce-la-react: 0.3.0(react@18.3.1)
+ transitivePeerDependencies:
+ - react
+
+ media-chrome@4.11.1(react@19.1.0):
+ dependencies:
+ '@vercel/edge': 1.2.2
+ ce-la-react: 0.3.0(react@19.1.0)
+ transitivePeerDependencies:
+ - react
+
+ media-tracks@0.3.3: {}
+
memorystream@0.3.1: {}
mendoza@3.0.8: {}
@@ -14002,7 +18346,7 @@ snapshots:
minimatch@5.1.6:
dependencies:
- brace-expansion: 2.0.1
+ brace-expansion: 2.0.2
minimatch@8.0.4:
dependencies:
@@ -14032,11 +18376,11 @@ snapshots:
dependencies:
concat-stream: 2.0.0
duplexify: 4.1.3
- end-of-stream: 1.4.4
+ end-of-stream: 1.4.5
flush-write-stream: 2.0.0
from2: 2.3.0
parallel-transform: 1.2.0
- pump: 3.0.2
+ pump: 3.0.3
pumpify: 1.5.1
stream-each: 1.2.3
through2: 3.0.2
@@ -14049,10 +18393,20 @@ snapshots:
moment@2.30.1: {}
+ motion-dom@12.23.12:
+ dependencies:
+ motion-utils: 12.23.6
+
+ motion-dom@12.23.9:
+ dependencies:
+ motion-utils: 12.23.6
+
motion-dom@12.6.3:
dependencies:
motion-utils: 12.6.3
+ motion-utils@12.23.6: {}
+
motion-utils@12.6.3: {}
ms@2.0.0: {}
@@ -14061,6 +18415,10 @@ snapshots:
mute-stream@2.0.0: {}
+ mux-embed@5.11.0: {}
+
+ mux-embed@5.9.0: {}
+
nano-pubsub@3.0.0: {}
nanoid@3.3.11: {}
@@ -14077,7 +18435,7 @@ snapshots:
node-html-parser@6.1.13:
dependencies:
- css-select: 5.1.0
+ css-select: 5.2.2
he: 1.2.0
node-releases@2.0.19: {}
@@ -14085,21 +18443,21 @@ snapshots:
normalize-package-data@2.5.0:
dependencies:
hosted-git-info: 2.8.9
- resolve: 1.22.8
+ resolve: 1.22.10
semver: 5.7.2
validate-npm-package-license: 3.0.4
normalize-package-data@3.0.3:
dependencies:
hosted-git-info: 4.1.0
- is-core-module: 2.15.1
- semver: 7.7.1
+ is-core-module: 2.16.1
+ semver: 7.7.2
validate-npm-package-license: 3.0.4
normalize-package-data@6.0.2:
dependencies:
hosted-git-info: 7.0.2
- semver: 7.7.1
+ semver: 7.7.2
validate-npm-package-license: 3.0.4
normalize-path@3.0.0: {}
@@ -14131,6 +18489,8 @@ snapshots:
nwsapi@2.2.20: {}
+ nwsapi@2.2.21: {}
+
object-assign@4.1.1: {}
object-inspect@1.13.4: {}
@@ -14237,6 +18597,18 @@ snapshots:
string-width: 6.1.0
strip-ansi: 7.1.0
+ ora@8.2.0:
+ dependencies:
+ chalk: 5.4.1
+ cli-cursor: 5.0.0
+ cli-spinners: 2.9.2
+ is-interactive: 2.0.0
+ is-unicode-supported: 2.1.0
+ log-symbols: 6.0.0
+ stdin-discarder: 0.2.2
+ string-width: 7.2.0
+ strip-ansi: 7.1.0
+
os-homedir@1.0.2: {}
os-tmpdir@1.0.2: {}
@@ -14304,6 +18676,16 @@ snapshots:
is-decimal: 1.0.4
is-hexadecimal: 1.0.4
+ parse-entities@4.0.2:
+ dependencies:
+ '@types/unist': 2.0.11
+ character-entities-legacy: 3.0.0
+ character-reference-invalid: 2.0.1
+ decode-named-character-reference: 1.2.0
+ is-alphanumerical: 2.0.1
+ is-decimal: 2.0.1
+ is-hexadecimal: 2.0.1
+
parse-json@5.2.0:
dependencies:
'@babel/code-frame': 7.26.2
@@ -14334,6 +18716,10 @@ snapshots:
dependencies:
entities: 4.5.0
+ parse5@7.3.0:
+ dependencies:
+ entities: 6.0.1
+
path-exists@3.0.0: {}
path-exists@4.0.0: {}
@@ -14356,6 +18742,8 @@ snapshots:
lru-cache: 11.0.2
minipass: 7.1.2
+ path-sort@0.1.0: {}
+
path-to-regexp@6.3.0: {}
path-type@4.0.0: {}
@@ -14380,6 +18768,8 @@ snapshots:
picomatch@4.0.2: {}
+ picomatch@4.0.3: {}
+
pidtree@0.6.0: {}
pify@2.3.0: {}
@@ -14400,6 +18790,10 @@ snapshots:
dependencies:
find-up: 3.0.0
+ pkg-dir@4.2.0:
+ dependencies:
+ find-up: 4.1.0
+
pkg-dir@5.0.0:
dependencies:
find-up: 5.0.0
@@ -14408,6 +18802,18 @@ snapshots:
dependencies:
find-up: 3.0.0
+ player.style@0.1.9(react@18.3.1):
+ dependencies:
+ media-chrome: 4.11.1(react@18.3.1)
+ transitivePeerDependencies:
+ - react
+
+ player.style@0.1.9(react@19.1.0):
+ dependencies:
+ media-chrome: 4.11.1(react@19.1.0)
+ transitivePeerDependencies:
+ - react
+
playwright-core@1.52.0: {}
playwright@1.52.0:
@@ -14420,7 +18826,7 @@ snapshots:
polished@4.3.1:
dependencies:
- '@babel/runtime': 7.27.0
+ '@babel/runtime': 7.28.2
possible-typed-array-names@1.0.0: {}
@@ -14438,6 +18844,18 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
+ postcss@8.5.6:
+ dependencies:
+ nanoid: 3.3.11
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+
+ preferred-pm@4.1.1:
+ dependencies:
+ find-up-simple: 1.0.1
+ find-yarn-workspace-root2: 1.2.16
+ which-pm: 3.0.1
+
prelude-ls@1.2.1: {}
prettier-linter-helpers@1.0.0:
@@ -14451,6 +18869,13 @@ snapshots:
optionalDependencies:
prettier: 3.5.3
+ prettier-plugin-packagejson@2.5.3(prettier@3.6.2):
+ dependencies:
+ sort-package-json: 2.10.1
+ synckit: 0.9.2
+ optionalDependencies:
+ prettier: 3.6.2
+
prettier@3.5.3: {}
prettier@3.6.2: {}
@@ -14497,6 +18922,8 @@ snapshots:
dependencies:
xtend: 4.0.2
+ property-information@7.1.0: {}
+
proto-list@1.2.4: {}
protocols@2.0.1: {}
@@ -14507,12 +18934,12 @@ snapshots:
pump@2.0.1:
dependencies:
- end-of-stream: 1.4.4
+ end-of-stream: 1.4.5
once: 1.4.0
- pump@3.0.2:
+ pump@3.0.3:
dependencies:
- end-of-stream: 1.4.4
+ end-of-stream: 1.4.5
once: 1.4.0
pumpify@1.5.1:
@@ -14548,15 +18975,24 @@ snapshots:
minimist: 1.2.8
strip-json-comments: 2.0.1
- react-clientside-effect@1.2.7(react@18.3.1):
+ react-clientside-effect@1.2.8(react@18.3.1):
dependencies:
- '@babel/runtime': 7.27.0
+ '@babel/runtime': 7.28.2
react: 18.3.1
+ react-clientside-effect@1.2.8(react@19.1.0):
+ dependencies:
+ '@babel/runtime': 7.28.2
+ react: 19.1.0
+
react-compiler-runtime@19.0.0-beta-e993439-20250405(react@18.3.1):
dependencies:
react: 18.3.1
+ react-compiler-runtime@19.0.0-beta-e993439-20250405(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+
react-compiler-runtime@19.1.0-rc.1(react@18.3.1):
dependencies:
react: 18.3.1
@@ -14594,31 +19030,64 @@ snapshots:
react-focus-lock@2.13.6(@types/react@19.1.2)(react@18.3.1):
dependencies:
- '@babel/runtime': 7.27.0
+ '@babel/runtime': 7.28.2
focus-lock: 1.3.6
prop-types: 15.8.1
react: 18.3.1
- react-clientside-effect: 1.2.7(react@18.3.1)
+ react-clientside-effect: 1.2.8(react@18.3.1)
use-callback-ref: 1.3.3(@types/react@19.1.2)(react@18.3.1)
use-sidecar: 1.1.3(@types/react@19.1.2)(react@18.3.1)
optionalDependencies:
'@types/react': 19.1.2
+ react-focus-lock@2.13.6(@types/react@19.1.2)(react@19.1.0):
+ dependencies:
+ '@babel/runtime': 7.28.2
+ focus-lock: 1.3.6
+ prop-types: 15.8.1
+ react: 19.1.0
+ react-clientside-effect: 1.2.8(react@19.1.0)
+ use-callback-ref: 1.3.3(@types/react@19.1.2)(react@19.1.0)
+ use-sidecar: 1.1.3(@types/react@19.1.2)(react@19.1.0)
+ optionalDependencies:
+ '@types/react': 19.1.2
+
react-i18next@14.0.2(i18next@23.16.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.27.0
+ '@babel/runtime': 7.28.2
html-parse-stringify: 3.0.1
i18next: 23.16.8
react: 18.3.1
optionalDependencies:
react-dom: 18.3.1(react@18.3.1)
+ react-i18next@14.0.2(i18next@23.16.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ dependencies:
+ '@babel/runtime': 7.28.2
+ html-parse-stringify: 3.0.1
+ i18next: 23.16.8
+ react: 19.1.0
+ optionalDependencies:
+ react-dom: 19.1.0(react@19.1.0)
+
+ react-i18next@15.6.1(i18next@23.16.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3):
+ dependencies:
+ '@babel/runtime': 7.28.2
+ html-parse-stringify: 3.0.1
+ i18next: 23.16.8
+ react: 19.1.0
+ optionalDependencies:
+ react-dom: 19.1.0(react@19.1.0)
+ typescript: 5.8.3
+
react-is@16.13.1: {}
react-is@17.0.2: {}
react-is@18.3.1: {}
+ react-is@19.1.1: {}
+
react-refractor@2.2.0(react@18.3.1):
dependencies:
react: 18.3.1
@@ -14626,6 +19095,20 @@ snapshots:
unist-util-filter: 2.0.3
unist-util-visit-parents: 3.1.1
+ react-refractor@2.2.0(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+ refractor: 3.6.0
+ unist-util-filter: 2.0.3
+ unist-util-visit-parents: 3.1.1
+
+ react-refractor@4.0.0(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+ refractor: 5.0.0
+ unist-util-filter: 5.0.1
+ unist-util-visit-parents: 6.0.1
+
react-refresh@0.17.0: {}
react-router@7.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
@@ -14637,13 +19120,30 @@ snapshots:
optionalDependencies:
react-dom: 18.3.1(react@18.3.1)
- react-rx@4.1.28(react@18.3.1)(rxjs@7.8.2):
+ react-router@7.5.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ dependencies:
+ cookie: 1.0.2
+ react: 19.1.0
+ set-cookie-parser: 2.7.1
+ turbo-stream: 2.4.0
+ optionalDependencies:
+ react-dom: 19.1.0(react@19.1.0)
+
+ react-rx@4.1.31(react@18.3.1)(rxjs@7.8.2):
dependencies:
observable-callback: 1.0.3(rxjs@7.8.2)
react: 18.3.1
- react-compiler-runtime: 19.1.0-rc.1(react@18.3.1)
+ react-compiler-runtime: 19.1.0-rc.2(react@18.3.1)
+ rxjs: 7.8.2
+ use-effect-event: 2.0.3(react@18.3.1)
+
+ react-rx@4.1.31(react@19.1.0)(rxjs@7.8.2):
+ dependencies:
+ observable-callback: 1.0.3(rxjs@7.8.2)
+ react: 19.1.0
+ react-compiler-runtime: 19.1.0-rc.2(react@19.1.0)
rxjs: 7.8.2
- use-effect-event: 1.0.2(react@18.3.1)
+ use-effect-event: 2.0.3(react@19.1.0)
react@18.3.1:
dependencies:
@@ -14737,6 +19237,10 @@ snapshots:
indent-string: 4.0.0
strip-indent: 3.0.0
+ redeyed@2.1.1:
+ dependencies:
+ esprima: 4.0.1
+
reflect.getprototypeof@1.0.9:
dependencies:
call-bind: 1.0.8
@@ -14754,6 +19258,13 @@ snapshots:
parse-entities: 2.0.0
prismjs: 1.27.0
+ refractor@5.0.0:
+ dependencies:
+ '@types/hast': 3.0.4
+ '@types/prismjs': 1.26.5
+ hastscript: 9.0.1
+ parse-entities: 4.0.2
+
regenerate-unicode-properties@10.2.0:
dependencies:
regenerate: 1.4.2
@@ -14764,7 +19275,7 @@ snapshots:
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.27.0
+ '@babel/runtime': 7.28.2
regexp.prototype.flags@1.5.3:
dependencies:
@@ -14812,6 +19323,12 @@ snapshots:
resolve.exports@2.0.3: {}
+ resolve@1.22.10:
+ dependencies:
+ is-core-module: 2.16.1
+ path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
+
resolve@1.22.8:
dependencies:
is-core-module: 2.15.1
@@ -14906,29 +19423,29 @@ snapshots:
'@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.27
'@rolldown/binding-win32-x64-msvc': 1.0.0-beta.27
- rollup-plugin-esbuild@6.2.1(esbuild@0.25.2)(rollup@4.40.0):
+ rollup-plugin-esbuild@6.2.1(esbuild@0.25.2)(rollup@4.45.3):
dependencies:
debug: 4.4.1(supports-color@8.1.1)
es-module-lexer: 1.6.0
esbuild: 0.25.2
get-tsconfig: 4.10.0
- rollup: 4.40.0
+ rollup: 4.45.3
unplugin-utils: 0.2.4
transitivePeerDependencies:
- supports-color
- rollup-plugin-esbuild@6.2.1(esbuild@0.25.6)(rollup@4.45.1):
+ rollup-plugin-esbuild@6.2.1(esbuild@0.25.6)(rollup@4.45.3):
dependencies:
debug: 4.4.1(supports-color@8.1.1)
es-module-lexer: 1.6.0
esbuild: 0.25.6
get-tsconfig: 4.10.0
- rollup: 4.45.1
+ rollup: 4.45.3
unplugin-utils: 0.2.4
transitivePeerDependencies:
- supports-color
- rollup-plugin-visualizer@5.14.0(rolldown@1.0.0-beta.27)(rollup@4.45.1):
+ rollup-plugin-visualizer@5.14.0(rolldown@1.0.0-beta.27)(rollup@4.45.3):
dependencies:
open: 8.4.2
picomatch: 4.0.2
@@ -14936,7 +19453,16 @@ snapshots:
yargs: 17.7.2
optionalDependencies:
rolldown: 1.0.0-beta.27
- rollup: 4.45.1
+ rollup: 4.45.3
+
+ rollup-plugin-visualizer@5.14.0(rollup@4.46.2):
+ dependencies:
+ open: 8.4.2
+ picomatch: 4.0.2
+ source-map: 0.7.4
+ yargs: 17.7.2
+ optionalDependencies:
+ rollup: 4.46.2
rollup@4.40.0:
dependencies:
@@ -14964,30 +19490,56 @@ snapshots:
'@rollup/rollup-win32-x64-msvc': 4.40.0
fsevents: 2.3.3
- rollup@4.45.1:
+ rollup@4.45.3:
+ dependencies:
+ '@types/estree': 1.0.8
+ optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.45.3
+ '@rollup/rollup-android-arm64': 4.45.3
+ '@rollup/rollup-darwin-arm64': 4.45.3
+ '@rollup/rollup-darwin-x64': 4.45.3
+ '@rollup/rollup-freebsd-arm64': 4.45.3
+ '@rollup/rollup-freebsd-x64': 4.45.3
+ '@rollup/rollup-linux-arm-gnueabihf': 4.45.3
+ '@rollup/rollup-linux-arm-musleabihf': 4.45.3
+ '@rollup/rollup-linux-arm64-gnu': 4.45.3
+ '@rollup/rollup-linux-arm64-musl': 4.45.3
+ '@rollup/rollup-linux-loongarch64-gnu': 4.45.3
+ '@rollup/rollup-linux-ppc64-gnu': 4.45.3
+ '@rollup/rollup-linux-riscv64-gnu': 4.45.3
+ '@rollup/rollup-linux-riscv64-musl': 4.45.3
+ '@rollup/rollup-linux-s390x-gnu': 4.45.3
+ '@rollup/rollup-linux-x64-gnu': 4.45.3
+ '@rollup/rollup-linux-x64-musl': 4.45.3
+ '@rollup/rollup-win32-arm64-msvc': 4.45.3
+ '@rollup/rollup-win32-ia32-msvc': 4.45.3
+ '@rollup/rollup-win32-x64-msvc': 4.45.3
+ fsevents: 2.3.3
+
+ rollup@4.46.2:
dependencies:
'@types/estree': 1.0.8
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.45.1
- '@rollup/rollup-android-arm64': 4.45.1
- '@rollup/rollup-darwin-arm64': 4.45.1
- '@rollup/rollup-darwin-x64': 4.45.1
- '@rollup/rollup-freebsd-arm64': 4.45.1
- '@rollup/rollup-freebsd-x64': 4.45.1
- '@rollup/rollup-linux-arm-gnueabihf': 4.45.1
- '@rollup/rollup-linux-arm-musleabihf': 4.45.1
- '@rollup/rollup-linux-arm64-gnu': 4.45.1
- '@rollup/rollup-linux-arm64-musl': 4.45.1
- '@rollup/rollup-linux-loongarch64-gnu': 4.45.1
- '@rollup/rollup-linux-powerpc64le-gnu': 4.45.1
- '@rollup/rollup-linux-riscv64-gnu': 4.45.1
- '@rollup/rollup-linux-riscv64-musl': 4.45.1
- '@rollup/rollup-linux-s390x-gnu': 4.45.1
- '@rollup/rollup-linux-x64-gnu': 4.45.1
- '@rollup/rollup-linux-x64-musl': 4.45.1
- '@rollup/rollup-win32-arm64-msvc': 4.45.1
- '@rollup/rollup-win32-ia32-msvc': 4.45.1
- '@rollup/rollup-win32-x64-msvc': 4.45.1
+ '@rollup/rollup-android-arm-eabi': 4.46.2
+ '@rollup/rollup-android-arm64': 4.46.2
+ '@rollup/rollup-darwin-arm64': 4.46.2
+ '@rollup/rollup-darwin-x64': 4.46.2
+ '@rollup/rollup-freebsd-arm64': 4.46.2
+ '@rollup/rollup-freebsd-x64': 4.46.2
+ '@rollup/rollup-linux-arm-gnueabihf': 4.46.2
+ '@rollup/rollup-linux-arm-musleabihf': 4.46.2
+ '@rollup/rollup-linux-arm64-gnu': 4.46.2
+ '@rollup/rollup-linux-arm64-musl': 4.46.2
+ '@rollup/rollup-linux-loongarch64-gnu': 4.46.2
+ '@rollup/rollup-linux-ppc64-gnu': 4.46.2
+ '@rollup/rollup-linux-riscv64-gnu': 4.46.2
+ '@rollup/rollup-linux-riscv64-musl': 4.46.2
+ '@rollup/rollup-linux-s390x-gnu': 4.46.2
+ '@rollup/rollup-linux-x64-gnu': 4.46.2
+ '@rollup/rollup-linux-x64-musl': 4.46.2
+ '@rollup/rollup-win32-arm64-msvc': 4.46.2
+ '@rollup/rollup-win32-ia32-msvc': 4.46.2
+ '@rollup/rollup-win32-x64-msvc': 4.46.2
fsevents: 2.3.3
rrweb-cssom@0.6.0: {}
@@ -14998,10 +19550,16 @@ snapshots:
run-async@3.0.0: {}
+ run-async@4.0.5: {}
+
run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
+ run-series@1.1.9: {}
+
+ run-waterfall@1.1.7: {}
+
rxjs-exhaustmap-with-trailing@2.1.1(rxjs@7.8.2):
dependencies:
rxjs: 7.8.2
@@ -15034,57 +19592,396 @@ snapshots:
safer-buffer@2.1.2: {}
- sanity@3.87.0(@emotion/is-prop-valid@1.2.2)(@types/node@22.13.9)(@types/react@19.1.2)(immer@10.1.1)(jiti@2.4.2)(lightningcss@1.29.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1):
+ sanity@3.99.0(@emotion/is-prop-valid@1.2.2)(@types/node@24.2.0)(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(immer@10.1.1)(jiti@2.5.1)(lightningcss@1.29.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(styled-components@6.1.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0):
dependencies:
'@dnd-kit/core': 6.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@dnd-kit/modifiers': 6.0.1(@dnd-kit/core@6.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
'@dnd-kit/sortable': 7.0.2(@dnd-kit/core@6.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
'@dnd-kit/utilities': 3.2.2(react@18.3.1)
'@juggle/resize-observer': 3.4.0
- '@portabletext/block-tools': 1.1.33(@sanity/types@3.87.0(@types/react@19.1.2)(debug@4.4.1))(@types/react@19.1.2)
- '@portabletext/editor': 1.55.8(@sanity/schema@3.87.0(@types/react@19.1.2)(debug@4.4.1))(@sanity/types@3.87.0(@types/react@19.1.2)(debug@4.4.1))(@types/react@19.1.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rxjs@7.8.2)
+ '@mux/mux-player-react': 3.5.1(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@portabletext/block-tools': 1.1.38(@sanity/types@3.99.0(@types/react@19.1.2)(debug@4.4.1))(@types/react@19.1.2)
+ '@portabletext/editor': 1.58.0(@sanity/schema@3.99.0(@types/react@19.1.2)(debug@4.4.1))(@sanity/types@3.99.0(@types/react@19.1.2)(debug@4.4.1))(@types/react@19.1.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rxjs@7.8.2)
'@portabletext/react': 3.2.1(react@18.3.1)
'@portabletext/toolkit': 2.0.17
- '@rexxars/react-json-inspector': 9.0.1(react@18.3.1)
+ '@rexxars/react-json-inspector': 9.0.1(react@18.3.1)
+ '@sanity/asset-utils': 2.2.1
+ '@sanity/bifur-client': 0.4.1
+ '@sanity/cli': 3.99.0(@types/node@24.2.0)(@types/react@19.1.2)(lightningcss@1.29.1)(react@18.3.1)(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0)
+ '@sanity/client': 7.8.2(debug@4.4.1)
+ '@sanity/color': 3.0.6
+ '@sanity/comlink': 3.0.8
+ '@sanity/diff': 3.99.0
+ '@sanity/diff-match-patch': 3.2.0
+ '@sanity/diff-patch': 5.0.0
+ '@sanity/eventsource': 5.0.2
+ '@sanity/export': 3.45.2(@types/react@19.1.2)
+ '@sanity/icons': 3.7.4(react@18.3.1)
+ '@sanity/id-utils': 1.0.0
+ '@sanity/image-url': 1.1.0
+ '@sanity/import': 3.38.3(@types/react@19.1.2)
+ '@sanity/insert-menu': 1.1.13(@emotion/is-prop-valid@1.2.2)(@sanity/types@3.99.0(@types/react@19.1.2)(debug@4.4.1))(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)(styled-components@6.1.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@sanity/logos': 2.2.1(@sanity/color@3.0.6)(react@18.3.1)
+ '@sanity/media-library-types': 1.0.0
+ '@sanity/message-protocol': 0.13.3
+ '@sanity/migrate': 3.99.0(@types/react@19.1.2)
+ '@sanity/mutator': 3.99.0(@types/react@19.1.2)
+ '@sanity/presentation-comlink': 1.0.27(@sanity/client@7.8.2(debug@4.4.1))(@sanity/types@3.99.0(@types/react@19.1.2)(debug@4.4.1))
+ '@sanity/preview-url-secret': 2.1.14(@sanity/client@7.8.2(debug@4.4.1))
+ '@sanity/schema': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/sdk': 0.0.0-alpha.25(@types/react@19.1.2)(debug@4.4.1)(immer@10.1.1)(react@18.3.1)(use-sync-external-store@1.5.0(react@18.3.1))
+ '@sanity/telemetry': 0.8.1(react@18.3.1)
+ '@sanity/types': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/ui': 2.16.12(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)(styled-components@6.1.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
+ '@sanity/util': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/uuid': 3.0.2
+ '@sentry/react': 8.55.0(react@18.3.1)
+ '@tanstack/react-table': 8.21.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@tanstack/react-virtual': 3.13.12(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@types/react-is': 19.0.0
+ '@types/shallow-equals': 1.0.3
+ '@types/speakingurl': 13.0.6
+ '@types/tar-stream': 3.1.4
+ '@types/use-sync-external-store': 1.5.0
+ '@types/which': 3.0.4
+ '@vitejs/plugin-react': 4.7.0(vite@6.3.5(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))
+ '@xstate/react': 6.0.0(@types/react@19.1.2)(react@18.3.1)(xstate@5.20.0)
+ archiver: 7.0.1
+ arrify: 2.0.1
+ async-mutex: 0.4.1
+ chalk: 4.1.2
+ chokidar: 3.6.0
+ classnames: 2.5.1
+ color2k: 2.0.3
+ configstore: 5.0.1
+ console-table-printer: 2.14.6
+ dataloader: 2.2.3
+ date-fns: 2.30.0
+ debug: 4.4.1(supports-color@8.1.1)
+ esbuild: 0.25.6
+ esbuild-register: 3.6.0(esbuild@0.25.6)
+ execa: 2.1.0
+ exif-component: 1.0.1
+ fast-deep-equal: 3.1.3
+ form-data: 4.0.1
+ framer-motion: 12.23.11(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ get-it: 8.6.10(debug@4.4.1)
+ get-random-values-esm: 1.0.2
+ groq-js: 1.17.3
+ gunzip-maybe: 1.4.2
+ history: 5.3.0
+ i18next: 23.16.8
+ import-fresh: 3.3.1
+ is-hotkey-esm: 1.0.0
+ is-tar: 1.0.0
+ isomorphic-dompurify: 2.26.0
+ jsdom: 23.2.0
+ jsdom-global: 3.0.2(jsdom@23.2.0)
+ json-lexer: 1.2.0
+ json-reduce: 3.0.0
+ json5: 2.2.3
+ lodash: 4.17.21
+ log-symbols: 2.2.0
+ mendoza: 3.0.8
+ module-alias: 2.2.3
+ nano-pubsub: 3.0.0
+ nanoid: 3.3.11
+ node-html-parser: 6.1.13
+ observable-callback: 1.0.3(rxjs@7.8.2)
+ oneline: 1.0.4
+ open: 8.4.2
+ p-map: 7.0.3
+ path-to-regexp: 6.3.0
+ peek-stream: 1.1.3
+ pirates: 4.0.7
+ player.style: 0.1.9(react@18.3.1)
+ pluralize-esm: 9.0.5
+ polished: 4.3.1
+ preferred-pm: 4.1.1
+ pretty-ms: 7.0.1
+ quick-lru: 5.1.1
+ raf: 3.4.1
+ react: 18.3.1
+ react-compiler-runtime: 19.1.0-rc.2(react@18.3.1)
+ react-dom: 18.3.1(react@18.3.1)
+ react-fast-compare: 3.2.2
+ react-focus-lock: 2.13.6(@types/react@19.1.2)(react@18.3.1)
+ react-i18next: 14.0.2(i18next@23.16.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-is: 18.3.1
+ react-refractor: 2.2.0(react@18.3.1)
+ react-rx: 4.1.31(react@18.3.1)(rxjs@7.8.2)
+ read-pkg-up: 7.0.1
+ refractor: 3.6.0
+ resolve-from: 5.0.0
+ resolve.exports: 2.0.3
+ rimraf: 5.0.10
+ rxjs: 7.8.2
+ rxjs-exhaustmap-with-trailing: 2.1.1(rxjs@7.8.2)
+ rxjs-mergemap-array: 0.1.0(rxjs@7.8.2)
+ scroll-into-view-if-needed: 3.1.0
+ scrollmirror: 1.2.4
+ semver: 7.7.2
+ shallow-equals: 1.0.0
+ speakingurl: 14.0.1
+ styled-components: 6.1.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ tar-fs: 2.1.3
+ tar-stream: 3.1.7
+ tinyglobby: 0.2.13
+ urlpattern-polyfill: 10.1.0
+ use-device-pixel-ratio: 1.1.2(react@18.3.1)
+ use-effect-event: 2.0.3(react@18.3.1)
+ use-hot-module-reload: 2.0.0(react@18.3.1)
+ use-sync-external-store: 1.5.0(react@18.3.1)
+ uuid: 11.1.0
+ vite: 6.3.5(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
+ which: 5.0.0
+ xstate: 5.20.0
+ yargs: 17.7.2
+ transitivePeerDependencies:
+ - '@emotion/is-prop-valid'
+ - '@types/node'
+ - '@types/react'
+ - '@types/react-dom'
+ - bufferutil
+ - canvas
+ - immer
+ - jiti
+ - less
+ - lightningcss
+ - react-native
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - typescript
+ - utf-8-validate
+ - yaml
+
+ sanity@3.99.0(@emotion/is-prop-valid@1.2.2)(@types/node@24.2.0)(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(immer@10.1.1)(jiti@2.5.1)(lightningcss@1.29.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0):
+ dependencies:
+ '@dnd-kit/core': 6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@dnd-kit/modifiers': 6.0.1(@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
+ '@dnd-kit/sortable': 7.0.2(@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
+ '@dnd-kit/utilities': 3.2.2(react@19.1.0)
+ '@juggle/resize-observer': 3.4.0
+ '@mux/mux-player-react': 3.5.1(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@portabletext/block-tools': 1.1.38(@sanity/types@3.99.0(@types/react@19.1.2)(debug@4.4.1))(@types/react@19.1.2)
+ '@portabletext/editor': 1.58.0(@sanity/schema@3.99.0(@types/react@19.1.2)(debug@4.4.1))(@sanity/types@3.99.0(@types/react@19.1.2)(debug@4.4.1))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)
+ '@portabletext/react': 3.2.1(react@19.1.0)
+ '@portabletext/toolkit': 2.0.17
+ '@rexxars/react-json-inspector': 9.0.1(react@19.1.0)
+ '@sanity/asset-utils': 2.2.1
+ '@sanity/bifur-client': 0.4.1
+ '@sanity/cli': 3.99.0(@types/node@24.2.0)(@types/react@19.1.2)(lightningcss@1.29.1)(react@19.1.0)(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0)
+ '@sanity/client': 7.8.2(debug@4.4.1)
+ '@sanity/color': 3.0.6
+ '@sanity/comlink': 3.0.8
+ '@sanity/diff': 3.99.0
+ '@sanity/diff-match-patch': 3.2.0
+ '@sanity/diff-patch': 5.0.0
+ '@sanity/eventsource': 5.0.2
+ '@sanity/export': 3.45.2(@types/react@19.1.2)
+ '@sanity/icons': 3.7.4(react@19.1.0)
+ '@sanity/id-utils': 1.0.0
+ '@sanity/image-url': 1.1.0
+ '@sanity/import': 3.38.3(@types/react@19.1.2)
+ '@sanity/insert-menu': 1.1.13(@emotion/is-prop-valid@1.2.2)(@sanity/types@3.99.0(@types/react@19.1.2)(debug@4.4.1))(react-dom@19.1.0(react@19.1.0))(react-is@18.3.1)(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))
+ '@sanity/logos': 2.2.1(@sanity/color@3.0.6)(react@19.1.0)
+ '@sanity/media-library-types': 1.0.0
+ '@sanity/message-protocol': 0.13.3
+ '@sanity/migrate': 3.99.0(@types/react@19.1.2)
+ '@sanity/mutator': 3.99.0(@types/react@19.1.2)
+ '@sanity/presentation-comlink': 1.0.27(@sanity/client@7.8.2(debug@4.4.1))(@sanity/types@3.99.0(@types/react@19.1.2)(debug@4.4.1))
+ '@sanity/preview-url-secret': 2.1.14(@sanity/client@7.8.2(debug@4.4.1))
+ '@sanity/schema': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/sdk': 0.0.0-alpha.25(@types/react@19.1.2)(debug@4.4.1)(immer@10.1.1)(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0))
+ '@sanity/telemetry': 0.8.1(react@19.1.0)
+ '@sanity/types': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/ui': 2.16.12(@emotion/is-prop-valid@1.2.2)(react-dom@19.1.0(react@19.1.0))(react-is@18.3.1)(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))
+ '@sanity/util': 3.99.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/uuid': 3.0.2
+ '@sentry/react': 8.55.0(react@19.1.0)
+ '@tanstack/react-table': 8.21.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@tanstack/react-virtual': 3.13.12(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@types/react-is': 19.0.0
+ '@types/shallow-equals': 1.0.3
+ '@types/speakingurl': 13.0.6
+ '@types/tar-stream': 3.1.4
+ '@types/use-sync-external-store': 1.5.0
+ '@types/which': 3.0.4
+ '@vitejs/plugin-react': 4.7.0(vite@6.3.5(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))
+ '@xstate/react': 6.0.0(@types/react@19.1.2)(react@19.1.0)(xstate@5.20.0)
+ archiver: 7.0.1
+ arrify: 2.0.1
+ async-mutex: 0.4.1
+ chalk: 4.1.2
+ chokidar: 3.6.0
+ classnames: 2.5.1
+ color2k: 2.0.3
+ configstore: 5.0.1
+ console-table-printer: 2.14.6
+ dataloader: 2.2.3
+ date-fns: 2.30.0
+ debug: 4.4.1(supports-color@8.1.1)
+ esbuild: 0.25.6
+ esbuild-register: 3.6.0(esbuild@0.25.6)
+ execa: 2.1.0
+ exif-component: 1.0.1
+ fast-deep-equal: 3.1.3
+ form-data: 4.0.1
+ framer-motion: 12.23.11(@emotion/is-prop-valid@1.2.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ get-it: 8.6.10(debug@4.4.1)
+ get-random-values-esm: 1.0.2
+ groq-js: 1.17.3
+ gunzip-maybe: 1.4.2
+ history: 5.3.0
+ i18next: 23.16.8
+ import-fresh: 3.3.1
+ is-hotkey-esm: 1.0.0
+ is-tar: 1.0.0
+ isomorphic-dompurify: 2.26.0
+ jsdom: 23.2.0
+ jsdom-global: 3.0.2(jsdom@23.2.0)
+ json-lexer: 1.2.0
+ json-reduce: 3.0.0
+ json5: 2.2.3
+ lodash: 4.17.21
+ log-symbols: 2.2.0
+ mendoza: 3.0.8
+ module-alias: 2.2.3
+ nano-pubsub: 3.0.0
+ nanoid: 3.3.11
+ node-html-parser: 6.1.13
+ observable-callback: 1.0.3(rxjs@7.8.2)
+ oneline: 1.0.4
+ open: 8.4.2
+ p-map: 7.0.3
+ path-to-regexp: 6.3.0
+ peek-stream: 1.1.3
+ pirates: 4.0.7
+ player.style: 0.1.9(react@19.1.0)
+ pluralize-esm: 9.0.5
+ polished: 4.3.1
+ preferred-pm: 4.1.1
+ pretty-ms: 7.0.1
+ quick-lru: 5.1.1
+ raf: 3.4.1
+ react: 19.1.0
+ react-compiler-runtime: 19.1.0-rc.2(react@19.1.0)
+ react-dom: 19.1.0(react@19.1.0)
+ react-fast-compare: 3.2.2
+ react-focus-lock: 2.13.6(@types/react@19.1.2)(react@19.1.0)
+ react-i18next: 14.0.2(i18next@23.16.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react-is: 18.3.1
+ react-refractor: 2.2.0(react@19.1.0)
+ react-rx: 4.1.31(react@19.1.0)(rxjs@7.8.2)
+ read-pkg-up: 7.0.1
+ refractor: 3.6.0
+ resolve-from: 5.0.0
+ resolve.exports: 2.0.3
+ rimraf: 5.0.10
+ rxjs: 7.8.2
+ rxjs-exhaustmap-with-trailing: 2.1.1(rxjs@7.8.2)
+ rxjs-mergemap-array: 0.1.0(rxjs@7.8.2)
+ scroll-into-view-if-needed: 3.1.0
+ scrollmirror: 1.2.4
+ semver: 7.7.2
+ shallow-equals: 1.0.0
+ speakingurl: 14.0.1
+ styled-components: 6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ tar-fs: 2.1.3
+ tar-stream: 3.1.7
+ tinyglobby: 0.2.13
+ urlpattern-polyfill: 10.1.0
+ use-device-pixel-ratio: 1.1.2(react@19.1.0)
+ use-effect-event: 2.0.3(react@19.1.0)
+ use-hot-module-reload: 2.0.0(react@19.1.0)
+ use-sync-external-store: 1.5.0(react@19.1.0)
+ uuid: 11.1.0
+ vite: 6.3.5(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
+ which: 5.0.0
+ xstate: 5.20.0
+ yargs: 17.7.2
+ transitivePeerDependencies:
+ - '@emotion/is-prop-valid'
+ - '@types/node'
+ - '@types/react'
+ - '@types/react-dom'
+ - bufferutil
+ - canvas
+ - immer
+ - jiti
+ - less
+ - lightningcss
+ - react-native
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - typescript
+ - utf-8-validate
+ - yaml
+
+ sanity@4.3.0(@emotion/is-prop-valid@1.2.2)(@types/node@24.2.0)(@types/react@19.1.2)(immer@10.1.1)(jiti@2.5.1)(lightningcss@1.29.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0):
+ dependencies:
+ '@dnd-kit/core': 6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@dnd-kit/modifiers': 6.0.1(@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
+ '@dnd-kit/sortable': 7.0.2(@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
+ '@dnd-kit/utilities': 3.2.2(react@19.1.0)
+ '@juggle/resize-observer': 3.4.0
+ '@mux/mux-player-react': 3.5.1(@types/react-dom@19.1.3(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@portabletext/block-tools': 2.0.5(@sanity/types@4.3.0(@types/react@19.1.2)(debug@4.4.1))(@types/react@19.1.2)
+ '@portabletext/editor': 2.1.7(@sanity/schema@4.3.0(@types/react@19.1.2)(debug@4.4.1))(@sanity/types@4.3.0(@types/react@19.1.2)(debug@4.4.1))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(rxjs@7.8.2)
+ '@portabletext/react': 3.2.1(react@19.1.0)
+ '@portabletext/toolkit': 2.0.17
+ '@rexxars/react-json-inspector': 9.0.1(react@19.1.0)
'@sanity/asset-utils': 2.2.1
'@sanity/bifur-client': 0.4.1
- '@sanity/cli': 3.87.0(@types/node@22.13.9)(@types/react@19.1.2)(react@18.3.1)
- '@sanity/client': 6.29.1(debug@4.4.1)
+ '@sanity/cli': 4.3.0(@types/node@24.2.0)(@types/react@19.1.2)(lightningcss@1.29.1)(react@19.1.0)(terser@5.36.0)(tsx@4.19.4)(typescript@5.8.3)(yaml@2.8.0)
+ '@sanity/client': 7.8.2(debug@4.4.1)
'@sanity/color': 3.0.6
- '@sanity/comlink': 3.0.4
- '@sanity/diff': 3.87.0
+ '@sanity/comlink': 3.0.9
+ '@sanity/diff': 4.3.0
'@sanity/diff-match-patch': 3.2.0
'@sanity/diff-patch': 5.0.0
'@sanity/eventsource': 5.0.2
- '@sanity/export': 3.42.2(@types/react@19.1.2)
- '@sanity/icons': 3.7.0(react@18.3.1)
+ '@sanity/export': 3.45.2(@types/react@19.1.2)
+ '@sanity/icons': 3.7.4(react@19.1.0)
'@sanity/id-utils': 1.0.0
'@sanity/image-url': 1.1.0
- '@sanity/import': 3.38.2(@types/react@19.1.2)
- '@sanity/insert-menu': 1.1.10(@emotion/is-prop-valid@1.2.2)(@sanity/types@3.87.0(@types/react@19.1.2)(debug@4.4.1))(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)(styled-components@6.1.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- '@sanity/logos': 2.1.13(@sanity/color@3.0.6)(react@18.3.1)
- '@sanity/message-protocol': 0.9.0
- '@sanity/migrate': 3.87.0(@types/react@19.1.2)
- '@sanity/mutator': 3.87.0(@types/react@19.1.2)
- '@sanity/presentation-comlink': 1.0.16(@sanity/client@6.29.1)(@sanity/types@3.87.0(@types/react@19.1.2)(debug@4.4.1))
- '@sanity/preview-url-secret': 2.1.8(@sanity/client@6.29.1)
- '@sanity/schema': 3.87.0(@types/react@19.1.2)(debug@4.4.1)
- '@sanity/sdk': 0.0.0-alpha.25(@types/react@19.1.2)(debug@4.4.1)(immer@10.1.1)(react@18.3.1)(use-sync-external-store@1.5.0(react@18.3.1))
- '@sanity/telemetry': 0.8.1(react@18.3.1)
- '@sanity/types': 3.87.0(@types/react@19.1.2)(debug@4.4.1)
- '@sanity/ui': 2.15.13(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)(styled-components@6.1.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1))
- '@sanity/util': 3.87.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/import': 3.38.3(@types/react@19.1.2)
+ '@sanity/insert-menu': 2.0.1(@emotion/is-prop-valid@1.2.2)(@sanity/types@4.3.0(@types/react@19.1.2)(debug@4.4.1))(react-dom@19.1.0(react@19.1.0))(react-is@19.1.1)(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))
+ '@sanity/logos': 2.2.1(@sanity/color@3.0.6)(react@19.1.0)
+ '@sanity/media-library-types': 1.0.0
+ '@sanity/message-protocol': 0.15.1
+ '@sanity/migrate': 4.3.0(@types/react@19.1.2)
+ '@sanity/mutator': 4.3.0(@types/react@19.1.2)
+ '@sanity/presentation-comlink': 1.0.28(@sanity/client@7.8.2(debug@4.4.1))(@sanity/types@4.3.0(@types/react@19.1.2)(debug@4.4.1))
+ '@sanity/preview-url-secret': 2.1.14(@sanity/client@7.8.2(debug@4.4.1))
+ '@sanity/schema': 4.3.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/sdk': 2.1.1(@types/react@19.1.2)(debug@4.4.1)(immer@10.1.1)(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0))
+ '@sanity/telemetry': 0.8.1(react@19.1.0)
+ '@sanity/types': 4.3.0(@types/react@19.1.2)(debug@4.4.1)
+ '@sanity/ui': 3.0.5(@emotion/is-prop-valid@1.2.2)(react-dom@19.1.0(react@19.1.0))(react-is@19.1.1)(react@19.1.0)(styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0))
+ '@sanity/util': 4.3.0(@types/react@19.1.2)(debug@4.4.1)
'@sanity/uuid': 3.0.2
- '@sentry/react': 8.55.0(react@18.3.1)
- '@tanstack/react-table': 8.21.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@tanstack/react-virtual': 3.13.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@sentry/react': 8.55.0(react@19.1.0)
+ '@tanstack/react-table': 8.21.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@tanstack/react-virtual': 3.13.12(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
'@types/react-is': 19.0.0
'@types/shallow-equals': 1.0.3
'@types/speakingurl': 13.0.6
- '@types/tar-stream': 3.1.3
+ '@types/tar-stream': 3.1.4
'@types/use-sync-external-store': 1.5.0
- '@vitejs/plugin-react': 4.4.1(vite@6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1))
- '@xstate/react': 5.0.3(@types/react@19.1.2)(react@18.3.1)(xstate@5.20.0)
+ '@types/which': 3.0.4
+ '@vitejs/plugin-react': 4.7.0(vite@6.3.5(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))
+ '@xstate/react': 6.0.0(@types/react@19.1.2)(react@19.1.0)(xstate@5.20.1)
archiver: 7.0.1
arrify: 2.0.1
async-mutex: 0.4.1
@@ -15093,25 +19990,27 @@ snapshots:
classnames: 2.5.1
color2k: 2.0.3
configstore: 5.0.1
- console-table-printer: 2.12.1
+ console-table-printer: 2.14.6
dataloader: 2.2.3
date-fns: 2.30.0
debug: 4.4.1(supports-color@8.1.1)
- esbuild: 0.21.5
- esbuild-register: 3.6.0(esbuild@0.21.5)
+ esbuild: 0.25.8
+ esbuild-register: 3.6.0(esbuild@0.25.8)
execa: 2.1.0
exif-component: 1.0.1
fast-deep-equal: 3.1.3
- form-data: 4.0.1
- framer-motion: 12.6.3(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- get-it: 8.6.7(debug@4.4.1)
+ form-data: 4.0.4
+ framer-motion: 12.23.12(@emotion/is-prop-valid@1.2.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ get-it: 8.6.10(debug@4.4.1)
get-random-values-esm: 1.0.2
- groq-js: 1.16.1
+ groq-js: 1.17.3
+ gunzip-maybe: 1.4.2
history: 5.3.0
i18next: 23.16.8
- import-fresh: 3.3.0
+ import-fresh: 3.3.1
is-hotkey-esm: 1.0.0
- isomorphic-dompurify: 2.24.0
+ is-tar: 1.0.0
+ isomorphic-dompurify: 2.26.0
jsdom: 23.2.0
jsdom-global: 3.0.2(jsdom@23.2.0)
json-lexer: 1.2.0
@@ -15129,23 +20028,26 @@ snapshots:
open: 8.4.2
p-map: 7.0.3
path-to-regexp: 6.3.0
+ peek-stream: 1.1.3
pirates: 4.0.7
+ player.style: 0.1.9(react@19.1.0)
pluralize-esm: 9.0.5
polished: 4.3.1
+ preferred-pm: 4.1.1
pretty-ms: 7.0.1
quick-lru: 5.1.1
raf: 3.4.1
- react: 18.3.1
- react-compiler-runtime: 19.0.0-beta-e993439-20250405(react@18.3.1)
- react-dom: 18.3.1(react@18.3.1)
+ react: 19.1.0
+ react-compiler-runtime: 19.1.0-rc.2(react@19.1.0)
+ react-dom: 19.1.0(react@19.1.0)
react-fast-compare: 3.2.2
- react-focus-lock: 2.13.6(@types/react@19.1.2)(react@18.3.1)
- react-i18next: 14.0.2(i18next@23.16.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- react-is: 18.3.1
- react-refractor: 2.2.0(react@18.3.1)
- react-rx: 4.1.28(react@18.3.1)(rxjs@7.8.2)
+ react-focus-lock: 2.13.6(@types/react@19.1.2)(react@19.1.0)
+ react-i18next: 15.6.1(i18next@23.16.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
+ react-is: 19.1.1
+ react-refractor: 4.0.0(react@19.1.0)
+ react-rx: 4.1.31(react@19.1.0)(rxjs@7.8.2)
read-pkg-up: 7.0.1
- refractor: 3.6.0
+ refractor: 5.0.0
resolve-from: 5.0.0
resolve.exports: 2.0.3
rimraf: 5.0.10
@@ -15153,26 +20055,29 @@ snapshots:
rxjs-exhaustmap-with-trailing: 2.1.1(rxjs@7.8.2)
rxjs-mergemap-array: 0.1.0(rxjs@7.8.2)
scroll-into-view-if-needed: 3.1.0
- scrollmirror: 1.2.1
- semver: 7.7.1
+ scrollmirror: 1.2.4
+ semver: 7.7.2
shallow-equals: 1.0.0
speakingurl: 14.0.1
- styled-components: 6.1.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- tar-fs: 2.1.2
+ styled-components: 6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ tar-fs: 2.1.3
tar-stream: 3.1.7
- urlpattern-polyfill: 10.0.0
- use-device-pixel-ratio: 1.1.2(react@18.3.1)
- use-effect-event: 1.0.2(react@18.3.1)
- use-hot-module-reload: 2.0.0(react@18.3.1)
- use-sync-external-store: 1.5.0(react@18.3.1)
+ tinyglobby: 0.2.14
+ urlpattern-polyfill: 10.1.0
+ use-device-pixel-ratio: 1.1.2(react@19.1.0)
+ use-effect-event: 2.0.3(react@19.1.0)
+ use-hot-module-reload: 2.0.0(react@19.1.0)
+ use-sync-external-store: 1.5.0(react@19.1.0)
uuid: 11.1.0
- vite: 6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
- xstate: 5.20.0
+ vite: 6.3.5(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
+ which: 5.0.0
+ xstate: 5.20.1
yargs: 17.7.2
transitivePeerDependencies:
- '@emotion/is-prop-valid'
- '@types/node'
- '@types/react'
+ - '@types/react-dom'
- bufferutil
- canvas
- immer
@@ -15187,6 +20092,7 @@ snapshots:
- supports-color
- terser
- tsx
+ - typescript
- utf-8-validate
- yaml
@@ -15204,7 +20110,7 @@ snapshots:
dependencies:
compute-scroll-into-view: 3.1.1
- scrollmirror@1.2.1: {}
+ scrollmirror@1.2.4: {}
seek-bzip@1.0.6:
dependencies:
@@ -15220,6 +20126,8 @@ snapshots:
semver@7.7.1: {}
+ semver@7.7.2: {}
+
serialize-javascript@6.0.2:
dependencies:
randombytes: 2.1.0
@@ -15242,6 +20150,12 @@ snapshots:
functions-have-names: 1.2.3
has-property-descriptors: 1.0.2
+ sha256-uint8array@0.10.7: {}
+
+ sha@3.0.0:
+ dependencies:
+ graceful-fs: 4.2.11
+
shallow-clone@3.0.1:
dependencies:
kind-of: 6.0.3
@@ -15292,7 +20206,7 @@ snapshots:
signal-exit@4.1.0: {}
- simple-wcswidth@1.0.1: {}
+ simple-wcswidth@1.1.2: {}
sisteransi@1.0.5: {}
@@ -15311,7 +20225,18 @@ snapshots:
slate: 0.117.2
tiny-invariant: 1.3.1
- slate-react@0.117.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(slate-dom@0.116.0(slate@0.117.2))(slate@0.117.2):
+ slate-dom@0.117.4(slate@0.118.0):
+ dependencies:
+ '@juggle/resize-observer': 3.4.0
+ direction: 1.0.4
+ is-hotkey: 0.2.0
+ is-plain-object: 5.0.0
+ lodash: 4.17.21
+ scroll-into-view-if-needed: 3.1.0
+ slate: 0.118.0
+ tiny-invariant: 1.3.1
+
+ slate-react@0.117.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(slate-dom@0.116.0(slate@0.117.2))(slate@0.117.2):
dependencies:
'@juggle/resize-observer': 3.4.0
direction: 1.0.4
@@ -15324,11 +20249,42 @@ snapshots:
slate-dom: 0.116.0(slate@0.117.2)
tiny-invariant: 1.3.1
+ slate-react@0.117.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(slate-dom@0.116.0(slate@0.117.2))(slate@0.117.2):
+ dependencies:
+ '@juggle/resize-observer': 3.4.0
+ direction: 1.0.4
+ is-hotkey: 0.2.0
+ lodash: 4.17.21
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ scroll-into-view-if-needed: 3.1.0
+ slate: 0.117.2
+ slate-dom: 0.116.0(slate@0.117.2)
+ tiny-invariant: 1.3.1
+
+ slate-react@0.117.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(slate-dom@0.117.4(slate@0.118.0))(slate@0.118.0):
+ dependencies:
+ '@juggle/resize-observer': 3.4.0
+ direction: 1.0.4
+ is-hotkey: 0.2.0
+ lodash: 4.17.21
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ scroll-into-view-if-needed: 3.1.0
+ slate: 0.118.0
+ slate-dom: 0.117.4(slate@0.118.0)
+ tiny-invariant: 1.3.1
+
slate@0.117.2:
dependencies:
immer: 10.1.1
tiny-warning: 1.0.3
+ slate@0.118.0:
+ dependencies:
+ immer: 10.1.1
+ tiny-warning: 1.0.3
+
slice-ansi@5.0.0:
dependencies:
ansi-styles: 6.2.1
@@ -15353,7 +20309,7 @@ snapshots:
git-hooks-list: 3.1.0
globby: 13.2.2
is-plain-obj: 4.1.0
- semver: 7.7.1
+ semver: 7.7.2
sort-object-keys: 1.1.3
source-map-js@1.2.1: {}
@@ -15369,6 +20325,8 @@ snapshots:
space-separated-tokens@1.1.5: {}
+ space-separated-tokens@2.0.2: {}
+
spdx-correct@3.2.0:
dependencies:
spdx-expression-parse: 3.0.1
@@ -15401,9 +20359,11 @@ snapshots:
dependencies:
bl: 5.1.0
+ stdin-discarder@0.2.2: {}
+
stream-each@1.2.3:
dependencies:
- end-of-stream: 1.4.4
+ end-of-stream: 1.4.5
stream-shift: 1.0.3
stream-events@1.0.5:
@@ -15412,12 +20372,12 @@ snapshots:
stream-shift@1.0.3: {}
- streamx@2.22.0:
+ streamx@2.22.1:
dependencies:
fast-fifo: 1.3.2
text-decoder: 1.2.3
optionalDependencies:
- bare-events: 2.5.4
+ bare-events: 2.6.0
string-argv@0.3.2: {}
@@ -15445,6 +20405,12 @@ snapshots:
get-east-asian-width: 1.3.0
strip-ansi: 7.1.0
+ string.prototype.includes@2.0.1:
+ dependencies:
+ call-bind: 1.0.8
+ define-properties: 1.2.1
+ es-abstract: 1.23.7
+
string.prototype.matchall@4.0.12:
dependencies:
call-bind: 1.0.8
@@ -15531,6 +20497,8 @@ snapshots:
stubs@3.0.0: {}
+ style-mod@4.1.2: {}
+
styled-components@6.1.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@emotion/is-prop-valid': 1.2.2
@@ -15545,6 +20513,20 @@ snapshots:
stylis: 4.3.2
tslib: 2.6.2
+ styled-components@6.1.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ dependencies:
+ '@emotion/is-prop-valid': 1.2.2
+ '@emotion/unitless': 0.8.1
+ '@types/stylis': 4.2.5
+ css-to-react-native: 3.2.0
+ csstype: 3.1.3
+ postcss: 8.4.49
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ shallowequal: 1.1.0
+ stylis: 4.3.2
+ tslib: 2.6.2
+
stylis@4.3.2: {}
supports-color@5.5.0:
@@ -15563,6 +20545,8 @@ snapshots:
symbol-tree@3.2.4: {}
+ symlink-or-copy@1.3.1: {}
+
synckit@0.9.2:
dependencies:
'@pkgr/core': 0.1.1
@@ -15570,18 +20554,18 @@ snapshots:
tapable@2.2.1: {}
- tar-fs@2.1.2:
+ tar-fs@2.1.3:
dependencies:
chownr: 1.1.4
mkdirp-classic: 0.5.3
- pump: 3.0.2
+ pump: 3.0.3
tar-stream: 2.2.0
tar-stream@1.6.2:
dependencies:
bl: 1.2.3
buffer-alloc: 1.2.0
- end-of-stream: 1.4.4
+ end-of-stream: 1.4.5
fs-constants: 1.0.0
readable-stream: 2.3.8
to-buffer: 1.1.1
@@ -15590,7 +20574,7 @@ snapshots:
tar-stream@2.2.0:
dependencies:
bl: 4.1.0
- end-of-stream: 1.4.4
+ end-of-stream: 1.4.5
fs-constants: 1.0.0
inherits: 2.0.4
readable-stream: 3.6.2
@@ -15599,7 +20583,7 @@ snapshots:
dependencies:
b4a: 1.6.7
fast-fifo: 1.3.2
- streamx: 2.22.0
+ streamx: 2.22.1
tar@7.4.3:
dependencies:
@@ -15650,6 +20634,10 @@ snapshots:
inherits: 2.0.4
readable-stream: 3.6.2
+ through2@4.0.2:
+ dependencies:
+ readable-stream: 3.6.2
+
through@2.3.8: {}
tiny-invariant@1.3.1: {}
@@ -15667,6 +20655,11 @@ snapshots:
fdir: 6.4.4(picomatch@4.0.2)
picomatch: 4.0.2
+ tinyglobby@0.2.14:
+ dependencies:
+ fdir: 6.4.6(picomatch@4.0.3)
+ picomatch: 4.0.3
+
tinypool@1.0.2: {}
tinyrainbow@2.0.0: {}
@@ -15845,12 +20838,22 @@ snapshots:
dependencies:
uuidv7: 0.4.4
- typescript-eslint@8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3):
+ typescript-eslint@8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3):
+ dependencies:
+ '@typescript-eslint/eslint-plugin': 8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3))(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3)
+ '@typescript-eslint/parser': 8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.26.1(eslint@9.25.1(jiti@2.5.1))(typescript@5.8.3)
+ eslint: 9.25.1(jiti@2.5.1)
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - supports-color
+
+ typescript-eslint@8.26.1(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/parser': 8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
- '@typescript-eslint/utils': 8.26.1(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
- eslint: 9.25.1(jiti@2.4.2)
+ '@typescript-eslint/eslint-plugin': 8.26.1(@typescript-eslint/parser@8.26.1(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3))(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
+ '@typescript-eslint/parser': 8.26.1(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.26.1(eslint@9.32.0(jiti@2.5.1))(typescript@5.8.3)
+ eslint: 9.32.0(jiti@2.5.1)
typescript: 5.8.3
transitivePeerDependencies:
- supports-color
@@ -15875,6 +20878,8 @@ snapshots:
undici-types@6.20.0: {}
+ undici-types@7.10.0: {}
+
undici@5.29.0:
dependencies:
'@fastify/busboy': 2.1.1
@@ -15900,13 +20905,28 @@ snapshots:
dependencies:
unist-util-is: 4.1.0
+ unist-util-filter@5.0.1:
+ dependencies:
+ '@types/unist': 3.0.3
+ unist-util-is: 6.0.0
+ unist-util-visit-parents: 6.0.1
+
unist-util-is@4.1.0: {}
+ unist-util-is@6.0.0:
+ dependencies:
+ '@types/unist': 3.0.3
+
unist-util-visit-parents@3.1.1:
dependencies:
'@types/unist': 2.0.11
unist-util-is: 4.1.0
+ unist-util-visit-parents@6.0.1:
+ dependencies:
+ '@types/unist': 3.0.3
+ unist-util-is: 6.0.0
+
universal-user-agent@6.0.1: {}
universalify@0.2.0: {}
@@ -15961,7 +20981,7 @@ snapshots:
querystringify: 2.2.0
requires-port: 1.0.0
- urlpattern-polyfill@10.0.0: {}
+ urlpattern-polyfill@10.1.0: {}
use-callback-ref@1.3.3(@types/react@19.1.2)(react@18.3.1):
dependencies:
@@ -15970,24 +20990,57 @@ snapshots:
optionalDependencies:
'@types/react': 19.1.2
+ use-callback-ref@1.3.3(@types/react@19.1.2)(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+ tslib: 2.8.1
+ optionalDependencies:
+ '@types/react': 19.1.2
+
use-device-pixel-ratio@1.1.2(react@18.3.1):
dependencies:
react: 18.3.1
+ use-device-pixel-ratio@1.1.2(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+
use-effect-event@1.0.2(react@18.3.1):
dependencies:
react: 18.3.1
+ use-effect-event@1.0.2(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+
+ use-effect-event@2.0.3(react@18.3.1):
+ dependencies:
+ react: 18.3.1
+
+ use-effect-event@2.0.3(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+
use-hot-module-reload@2.0.0(react@18.3.1):
dependencies:
react: 18.3.1
- use-isomorphic-layout-effect@1.2.0(@types/react@19.1.2)(react@18.3.1):
+ use-hot-module-reload@2.0.0(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+
+ use-isomorphic-layout-effect@1.2.1(@types/react@19.1.2)(react@18.3.1):
dependencies:
react: 18.3.1
optionalDependencies:
'@types/react': 19.1.2
+ use-isomorphic-layout-effect@1.2.1(@types/react@19.1.2)(react@19.1.0):
+ dependencies:
+ react: 19.1.0
+ optionalDependencies:
+ '@types/react': 19.1.2
+
use-sidecar@1.1.3(@types/react@19.1.2)(react@18.3.1):
dependencies:
detect-node-es: 1.1.0
@@ -15996,6 +21049,14 @@ snapshots:
optionalDependencies:
'@types/react': 19.1.2
+ use-sidecar@1.1.3(@types/react@19.1.2)(react@19.1.0):
+ dependencies:
+ detect-node-es: 1.1.0
+ react: 19.1.0
+ tslib: 2.8.1
+ optionalDependencies:
+ '@types/react': 19.1.2
+
use-sync-external-store@1.5.0(react@18.3.1):
dependencies:
react: 18.3.1
@@ -16003,7 +21064,6 @@ snapshots:
use-sync-external-store@1.5.0(react@19.1.0):
dependencies:
react: 19.1.0
- optional: true
user-home@2.0.0:
dependencies:
@@ -16028,13 +21088,34 @@ snapshots:
dependencies:
builtins: 1.0.3
- vite-node@3.1.2(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1):
+ vite-node@3.1.2(@types/node@22.13.9)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0):
+ dependencies:
+ cac: 6.7.14
+ debug: 4.4.1(supports-color@8.1.1)
+ es-module-lexer: 1.6.0
+ pathe: 2.0.3
+ vite: 6.3.4(@types/node@22.13.9)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
+ transitivePeerDependencies:
+ - '@types/node'
+ - jiti
+ - less
+ - lightningcss
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - yaml
+
+ vite-node@3.1.2(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0):
dependencies:
cac: 6.7.14
debug: 4.4.1(supports-color@8.1.1)
es-module-lexer: 1.6.0
pathe: 2.0.3
- vite: 6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite: 6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
transitivePeerDependencies:
- '@types/node'
- jiti
@@ -16049,18 +21130,29 @@ snapshots:
- tsx
- yaml
- vite-tsconfig-paths@5.1.4(typescript@5.8.3)(vite@6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)):
+ vite-tsconfig-paths@5.1.4(typescript@5.8.3)(vite@6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)):
dependencies:
debug: 4.4.1(supports-color@8.1.1)
globrex: 0.1.2
tsconfck: 3.1.5(typescript@5.8.3)
optionalDependencies:
- vite: 6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite: 6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
transitivePeerDependencies:
- supports-color
- typescript
- vite@6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1):
+ vite-tsconfig-paths@5.1.4(typescript@5.8.3)(vite@6.3.5(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)):
+ dependencies:
+ debug: 4.4.1(supports-color@8.1.1)
+ globrex: 0.1.2
+ tsconfck: 3.1.5(typescript@5.8.3)
+ optionalDependencies:
+ vite: 6.3.5(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ vite@6.3.4(@types/node@22.13.9)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0):
dependencies:
esbuild: 0.25.2
fdir: 6.4.4(picomatch@4.0.2)
@@ -16071,16 +21163,50 @@ snapshots:
optionalDependencies:
'@types/node': 22.13.9
fsevents: 2.3.3
- jiti: 2.4.2
+ jiti: 2.5.1
lightningcss: 1.29.1
terser: 5.36.0
tsx: 4.19.4
- yaml: 2.7.1
+ yaml: 2.8.0
+
+ vite@6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0):
+ dependencies:
+ esbuild: 0.25.2
+ fdir: 6.4.4(picomatch@4.0.2)
+ picomatch: 4.0.2
+ postcss: 8.5.3
+ rollup: 4.40.0
+ tinyglobby: 0.2.13
+ optionalDependencies:
+ '@types/node': 24.2.0
+ fsevents: 2.3.3
+ jiti: 2.5.1
+ lightningcss: 1.29.1
+ terser: 5.36.0
+ tsx: 4.19.4
+ yaml: 2.8.0
- vitest@3.1.2(@types/node@22.13.9)(jiti@2.4.2)(jsdom@23.2.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1):
+ vite@6.3.5(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0):
+ dependencies:
+ esbuild: 0.25.8
+ fdir: 6.4.6(picomatch@4.0.3)
+ picomatch: 4.0.3
+ postcss: 8.5.6
+ rollup: 4.46.2
+ tinyglobby: 0.2.14
+ optionalDependencies:
+ '@types/node': 24.2.0
+ fsevents: 2.3.3
+ jiti: 2.5.1
+ lightningcss: 1.29.1
+ terser: 5.36.0
+ tsx: 4.19.4
+ yaml: 2.8.0
+
+ vitest@3.1.2(@types/node@22.13.9)(jiti@2.5.1)(jsdom@26.1.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0):
dependencies:
'@vitest/expect': 3.1.2
- '@vitest/mocker': 3.1.2(vite@6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1))
+ '@vitest/mocker': 3.1.2(vite@6.3.4(@types/node@22.13.9)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))
'@vitest/pretty-format': 3.1.2
'@vitest/runner': 3.1.2
'@vitest/snapshot': 3.1.2
@@ -16097,11 +21223,51 @@ snapshots:
tinyglobby: 0.2.13
tinypool: 1.0.2
tinyrainbow: 2.0.0
- vite: 6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
- vite-node: 3.1.2(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite: 6.3.4(@types/node@22.13.9)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
+ vite-node: 3.1.2(@types/node@22.13.9)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 22.13.9
+ jsdom: 26.1.0
+ transitivePeerDependencies:
+ - jiti
+ - less
+ - lightningcss
+ - msw
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - yaml
+
+ vitest@3.1.2(@types/node@24.2.0)(jiti@2.5.1)(jsdom@23.2.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0):
+ dependencies:
+ '@vitest/expect': 3.1.2
+ '@vitest/mocker': 3.1.2(vite@6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))
+ '@vitest/pretty-format': 3.1.2
+ '@vitest/runner': 3.1.2
+ '@vitest/snapshot': 3.1.2
+ '@vitest/spy': 3.1.2
+ '@vitest/utils': 3.1.2
+ chai: 5.2.0
+ debug: 4.4.1(supports-color@8.1.1)
+ expect-type: 1.2.1
+ magic-string: 0.30.17
+ pathe: 2.0.3
+ std-env: 3.9.0
+ tinybench: 2.9.0
+ tinyexec: 0.3.2
+ tinyglobby: 0.2.13
+ tinypool: 1.0.2
+ tinyrainbow: 2.0.0
+ vite: 6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
+ vite-node: 3.1.2(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
+ why-is-node-running: 2.3.0
+ optionalDependencies:
+ '@types/node': 24.2.0
jsdom: 23.2.0
transitivePeerDependencies:
- jiti
@@ -16117,10 +21283,10 @@ snapshots:
- tsx
- yaml
- vitest@3.1.2(@types/node@22.13.9)(jiti@2.4.2)(jsdom@25.0.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1):
+ vitest@3.1.2(@types/node@24.2.0)(jiti@2.5.1)(jsdom@25.0.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0):
dependencies:
'@vitest/expect': 3.1.2
- '@vitest/mocker': 3.1.2(vite@6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1))
+ '@vitest/mocker': 3.1.2(vite@6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))
'@vitest/pretty-format': 3.1.2
'@vitest/runner': 3.1.2
'@vitest/snapshot': 3.1.2
@@ -16137,11 +21303,11 @@ snapshots:
tinyglobby: 0.2.13
tinypool: 1.0.2
tinyrainbow: 2.0.0
- vite: 6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
- vite-node: 3.1.2(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite: 6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
+ vite-node: 3.1.2(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 24.2.0
jsdom: 25.0.1
transitivePeerDependencies:
- jiti
@@ -16157,10 +21323,10 @@ snapshots:
- tsx
- yaml
- vitest@3.1.2(@types/node@22.13.9)(jiti@2.4.2)(jsdom@26.1.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1):
+ vitest@3.1.2(@types/node@24.2.0)(jiti@2.5.1)(jsdom@26.1.0)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0):
dependencies:
'@vitest/expect': 3.1.2
- '@vitest/mocker': 3.1.2(vite@6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1))
+ '@vitest/mocker': 3.1.2(vite@6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0))
'@vitest/pretty-format': 3.1.2
'@vitest/runner': 3.1.2
'@vitest/snapshot': 3.1.2
@@ -16177,11 +21343,11 @@ snapshots:
tinyglobby: 0.2.13
tinypool: 1.0.2
tinyrainbow: 2.0.0
- vite: 6.3.4(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
- vite-node: 3.1.2(@types/node@22.13.9)(jiti@2.4.2)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.7.1)
+ vite: 6.3.4(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
+ vite-node: 3.1.2(@types/node@24.2.0)(jiti@2.5.1)(lightningcss@1.29.1)(terser@5.36.0)(tsx@4.19.4)(yaml@2.8.0)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 22.13.9
+ '@types/node': 24.2.0
jsdom: 26.1.0
transitivePeerDependencies:
- jiti
@@ -16199,6 +21365,8 @@ snapshots:
void-elements@3.1.0: {}
+ w3c-keyname@2.2.8: {}
+
w3c-xmlserializer@5.0.0:
dependencies:
xml-name-validator: 5.0.0
@@ -16258,6 +21426,10 @@ snapshots:
is-weakmap: 2.0.2
is-weakset: 2.0.3
+ which-pm@3.0.1:
+ dependencies:
+ load-yaml-file: 0.2.0
+
which-typed-array@1.1.18:
dependencies:
available-typed-arrays: 1.0.7
@@ -16323,6 +21495,8 @@ snapshots:
ws@8.18.0: {}
+ ws@8.18.3: {}
+
xdg-basedir@4.0.0: {}
xdg-basedir@5.1.0: {}
@@ -16335,6 +21509,8 @@ snapshots:
xstate@5.20.0: {}
+ xstate@5.20.1: {}
+
xtend@4.0.2: {}
y18n@5.0.8: {}
@@ -16349,6 +21525,8 @@ snapshots:
yaml@2.7.1: {}
+ yaml@2.8.0: {}
+
yargs-parser@20.2.9: {}
yargs-parser@21.1.1: {}
@@ -16412,4 +21590,11 @@ snapshots:
react: 19.1.0
use-sync-external-store: 1.5.0(react@19.1.0)
+ zustand@5.0.7(@types/react@19.1.2)(immer@10.1.1)(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0)):
+ optionalDependencies:
+ '@types/react': 19.1.2
+ immer: 10.1.1
+ react: 19.1.0
+ use-sync-external-store: 1.5.0(react@19.1.0)
+
zx@8.5.3: {}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index c65393e6..8806309d 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -7,3 +7,6 @@ packages:
onlyBuiltDependencies:
- esbuild
+
+overrides:
+ sanity: link:../sanity/packages/sanity