diff --git a/.changeset/hot-points-crash.md b/.changeset/hot-points-crash.md
new file mode 100644
index 000000000..3094d18e1
--- /dev/null
+++ b/.changeset/hot-points-crash.md
@@ -0,0 +1,5 @@
+---
+'@tanstack/angular-virtual': minor
+---
+
+require angular 20 and up following their lts
diff --git a/benchmarks/package.json b/benchmarks/package.json
index d00a4fa2c..7bfb40c8b 100644
--- a/benchmarks/package.json
+++ b/benchmarks/package.json
@@ -24,7 +24,7 @@
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.5.2",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2"
}
}
diff --git a/docs/config.json b/docs/config.json
index b3c5f87bf..e908d013d 100644
--- a/docs/config.json
+++ b/docs/config.json
@@ -109,6 +109,10 @@
"to": "framework/angular/examples/infinite-scroll",
"label": "Infinite Scroll"
},
+ {
+ "to": "framework/angular/examples/chat",
+ "label": "Chat"
+ },
{
"to": "framework/angular/examples/smooth-scroll",
"label": "Smooth Scroll"
diff --git a/examples/angular/chat/README.md b/examples/angular/chat/README.md
new file mode 100644
index 000000000..870f2975e
--- /dev/null
+++ b/examples/angular/chat/README.md
@@ -0,0 +1,14 @@
+# TanStack Virtual Angular Chat Example
+
+Demonstrates end-anchored virtualization for chat-style UIs:
+
+- starts at the newest message
+- keeps the visible message stable when older history is prepended
+- follows appended messages only while the reader is already at the end
+- remains pinned while a dynamically measured reply streams in
+
+Run it from the repository root with:
+
+```sh
+pnpm --filter @tanstack/virtual-example-angular-chat start
+```
diff --git a/examples/angular/chat/angular.json b/examples/angular/chat/angular.json
new file mode 100644
index 000000000..58096cff1
--- /dev/null
+++ b/examples/angular/chat/angular.json
@@ -0,0 +1,53 @@
+{
+ "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
+ "version": 1,
+ "cli": {
+ "packageManager": "pnpm",
+ "analytics": false,
+ "cache": { "enabled": false }
+ },
+ "projects": {
+ "@tanstack/virtual-example-angular-chat": {
+ "projectType": "application",
+ "root": "",
+ "sourceRoot": "src",
+ "prefix": "app",
+ "architect": {
+ "build": {
+ "builder": "@angular-devkit/build-angular:application",
+ "options": {
+ "outputPath": "dist/tanstack/virtual-example-angular-chat",
+ "index": "src/index.html",
+ "browser": "src/main.ts",
+ "polyfills": ["zone.js"],
+ "tsConfig": "tsconfig.app.json",
+ "assets": [],
+ "styles": ["src/styles.css"],
+ "scripts": []
+ },
+ "configurations": {
+ "production": { "outputHashing": "all" },
+ "development": {
+ "optimization": false,
+ "extractLicenses": false,
+ "sourceMap": true
+ }
+ },
+ "defaultConfiguration": "production"
+ },
+ "serve": {
+ "builder": "@angular-devkit/build-angular:dev-server",
+ "configurations": {
+ "production": {
+ "buildTarget": "@tanstack/virtual-example-angular-chat:build:production"
+ },
+ "development": {
+ "buildTarget": "@tanstack/virtual-example-angular-chat:build:development"
+ }
+ },
+ "defaultConfiguration": "development"
+ }
+ }
+ }
+ }
+}
diff --git a/examples/angular/chat/package.json b/examples/angular/chat/package.json
new file mode 100644
index 000000000..7bca7a67c
--- /dev/null
+++ b/examples/angular/chat/package.json
@@ -0,0 +1,31 @@
+{
+ "name": "@tanstack/virtual-example-angular-chat",
+ "private": true,
+ "type": "module",
+ "scripts": {
+ "ng": "ng",
+ "start": "ng serve",
+ "build": "ng build",
+ "watch": "ng build --watch --configuration development"
+ },
+ "dependencies": {
+ "@angular/animations": "^20.0.0",
+ "@angular/common": "^20.0.0",
+ "@angular/compiler": "^20.0.0",
+ "@angular/core": "^20.0.0",
+ "@angular/forms": "^20.0.0",
+ "@angular/platform-browser": "^20.0.0",
+ "@angular/platform-browser-dynamic": "^20.0.0",
+ "@angular/router": "^20.0.0",
+ "@tanstack/angular-virtual": "^5.0.8",
+ "rxjs": "^7.8.2",
+ "tslib": "^2.8.1",
+ "zone.js": "0.15.1"
+ },
+ "devDependencies": {
+ "@angular-devkit/build-angular": "^20.0.0",
+ "@angular/cli": "^20.0.0",
+ "@angular/compiler-cli": "^20.0.0",
+ "typescript": "5.9.3"
+ }
+}
diff --git a/examples/angular/chat/src/app/app.component.ts b/examples/angular/chat/src/app/app.component.ts
new file mode 100644
index 000000000..d248c2307
--- /dev/null
+++ b/examples/angular/chat/src/app/app.component.ts
@@ -0,0 +1,226 @@
+import {
+ ChangeDetectionStrategy,
+ Component,
+ DestroyRef,
+ afterNextRender,
+ effect,
+ inject,
+ signal,
+ viewChild,
+ viewChildren,
+} from '@angular/core'
+import { injectVirtualizer } from '@tanstack/angular-virtual'
+import type { ElementRef } from '@angular/core'
+
+type Message = {
+ id: string
+ author: 'user' | 'assistant'
+ text: string
+}
+
+const replies = [
+ 'I can break that into the smallest next step and keep the current viewport pinned while this answer grows.',
+ 'Older messages are loaded above the viewport. The visible row keeps the same screen position after the prepend.',
+ 'When the thread is not at the bottom, new output waits below without pulling the reader away from history.',
+]
+
+const makeMessage = (index: number): Message => ({
+ id: `message-${index}`,
+ author: index % 4 === 0 ? 'user' : 'assistant',
+ text:
+ index % 4 === 0
+ ? `Can you check item ${index}?`
+ : `Message ${index}: ${replies[Math.abs(index) % replies.length]}`,
+})
+
+const initialMessages = Array.from({ length: 45 }, (_, index) =>
+ makeMessage(index),
+)
+
+@Component({
+ selector: 'app-root',
+ standalone: true,
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ template: `
+
+
+
+
+
+
+ @for (row of virtualizer.getVirtualItems(); track row.key) {
+
+
+
{{ messages()[row.index].author }}
+ {{ messages()[row.index].text || '...' }}
+
+
+ }
+
+
+
+
+ `,
+})
+export class AppComponent {
+ readonly messages = signal(initialMessages)
+ readonly loadingHistory = signal(false)
+
+ readonly scrollElement =
+ viewChild>('scrollElement')
+ readonly virtualItems =
+ viewChildren>('virtualItem')
+
+ private firstMessageIndex = 0
+ private nextMessageIndex = initialMessages.length
+ private autoHistoryTimer: number | undefined
+ private streamTimer: number | undefined
+ private autoHistoryEnabled = false
+
+ readonly virtualizer = injectVirtualizer(
+ () => ({
+ scrollElement: this.scrollElement(),
+ count: this.messages().length,
+ estimateSize: () => 74,
+ getItemKey: (index) => this.messages()[index].id,
+ anchorTo: 'end',
+ followOnAppend: true,
+ scrollEndThreshold: 80,
+ overscan: 6,
+ useApplicationRefTick: false,
+ }),
+ )
+
+ private readonly measureItems = effect(
+ () =>
+ this.virtualItems().forEach((element) => {
+ this.virtualizer.measureElement(element.nativeElement)
+ }),
+ { allowSignalWrites: true },
+ )
+
+ constructor() {
+ const destroyRef = inject(DestroyRef)
+
+ afterNextRender(() => {
+ this.virtualizer.scrollToEnd()
+ this.autoHistoryTimer = window.setTimeout(() => {
+ this.autoHistoryEnabled = true
+ }, 250)
+ })
+
+ destroyRef.onDestroy(() => {
+ if (this.autoHistoryTimer !== undefined) {
+ window.clearTimeout(this.autoHistoryTimer)
+ }
+ if (this.streamTimer !== undefined) {
+ window.clearInterval(this.streamTimer)
+ }
+ })
+ }
+
+ prependHistory(): void {
+ if (this.loadingHistory() || this.firstMessageIndex <= -90) return
+
+ this.loadingHistory.set(true)
+ window.setTimeout(() => {
+ const start = this.firstMessageIndex - 12
+ this.firstMessageIndex = start
+ this.messages.update((current) => [
+ ...Array.from({ length: 12 }, (_, offset) =>
+ makeMessage(start + offset),
+ ),
+ ...current,
+ ])
+ this.loadingHistory.set(false)
+ }, 180)
+ }
+
+ appendMessage(): void {
+ const next = this.nextMessageIndex
+ this.nextMessageIndex += 1
+ this.messages.update((current) => [...current, makeMessage(next)])
+ }
+
+ streamReply(): void {
+ if (this.streamTimer !== undefined) return
+
+ const id = `stream-${Date.now()}`
+ const chunks = [
+ 'Thinking through the failure mode.',
+ ' The list should follow only when it was already pinned.',
+ ' Prepends should keep the reader anchored to the same message.',
+ ' Streaming output should grow without drifting off the bottom.',
+ ]
+ let chunkIndex = 0
+
+ this.messages.update((current) => [
+ ...current,
+ { id, author: 'assistant', text: '' },
+ ])
+
+ this.streamTimer = window.setInterval(() => {
+ this.messages.update((current) =>
+ current.map((message) =>
+ message.id === id
+ ? {
+ ...message,
+ text: chunks.slice(0, chunkIndex + 1).join(''),
+ }
+ : message,
+ ),
+ )
+
+ chunkIndex += 1
+ if (chunkIndex === chunks.length) {
+ window.clearInterval(this.streamTimer)
+ this.streamTimer = undefined
+ }
+ }, 280)
+ }
+
+ onScroll(): void {
+ const scrollElement = this.scrollElement()?.nativeElement
+ if (
+ !scrollElement ||
+ !this.autoHistoryEnabled ||
+ this.virtualizer.isAtEnd(80)
+ ) {
+ return
+ }
+
+ if (scrollElement.scrollTop < 120) this.prependHistory()
+ }
+}
diff --git a/examples/angular/chat/src/index.html b/examples/angular/chat/src/index.html
new file mode 100644
index 000000000..d9493e91c
--- /dev/null
+++ b/examples/angular/chat/src/index.html
@@ -0,0 +1,12 @@
+
+
+
+
+ TanStack Virtual Angular Chat Example
+
+
+
+
+
+
+
diff --git a/examples/angular/chat/src/main.ts b/examples/angular/chat/src/main.ts
new file mode 100644
index 000000000..f0ae17820
--- /dev/null
+++ b/examples/angular/chat/src/main.ts
@@ -0,0 +1,4 @@
+import { bootstrapApplication } from '@angular/platform-browser'
+import { AppComponent } from './app/app.component'
+
+bootstrapApplication(AppComponent).catch((error) => console.error(error))
diff --git a/examples/angular/chat/src/styles.css b/examples/angular/chat/src/styles.css
new file mode 100644
index 000000000..6aaa65d03
--- /dev/null
+++ b/examples/angular/chat/src/styles.css
@@ -0,0 +1,124 @@
+* {
+ box-sizing: border-box;
+}
+
+html {
+ font-family:
+ Inter,
+ ui-sans-serif,
+ system-ui,
+ -apple-system,
+ BlinkMacSystemFont,
+ 'Segoe UI',
+ sans-serif;
+ color: #171717;
+ background: #f6f8fa;
+}
+
+body {
+ margin: 0;
+}
+
+button {
+ border: 1px solid #c6d0da;
+ border-radius: 6px;
+ background: #ffffff;
+ color: #171717;
+ cursor: pointer;
+ font: inherit;
+ font-size: 13px;
+ padding: 7px 10px;
+}
+
+button:hover {
+ background: #eef3f7;
+}
+
+.App {
+ height: 100vh;
+ display: grid;
+ grid-template-rows: auto 1fr;
+}
+
+.Toolbar {
+ align-items: center;
+ background: #ffffff;
+ border-bottom: 1px solid #d9e0e6;
+ display: flex;
+ gap: 8px;
+ justify-content: space-between;
+ padding: 10px 12px;
+}
+
+.ToolbarGroup {
+ display: flex;
+ gap: 8px;
+}
+
+.Status {
+ color: #5c6670;
+ font-size: 13px;
+}
+
+.Shell {
+ display: grid;
+ min-height: 0;
+ overflow: hidden;
+ place-items: stretch;
+}
+
+.Messages {
+ min-height: 0;
+ overflow: auto;
+ overflow-anchor: none;
+ width: 100%;
+}
+
+.MessagesSizer {
+ position: relative;
+ width: 100%;
+}
+
+.MessageRow {
+ left: 0;
+ padding: 6px 12px;
+ position: absolute;
+ top: 0;
+ width: 100%;
+}
+
+.Bubble {
+ border: 1px solid #d7dee5;
+ border-radius: 8px;
+ line-height: 1.45;
+ max-width: min(720px, 88vw);
+ padding: 10px 12px;
+ white-space: pre-wrap;
+}
+
+.Bubble-user {
+ background: #e6f3ff;
+ margin-left: auto;
+}
+
+.Bubble-assistant {
+ background: #ffffff;
+ margin-right: auto;
+}
+
+.Meta {
+ color: #637081;
+ font-size: 12px;
+ margin-bottom: 4px;
+}
+
+@media (max-width: 640px) {
+ .Toolbar {
+ align-items: stretch;
+ flex-direction: column;
+ }
+
+ .ToolbarGroup {
+ flex-wrap: wrap;
+ }
+}
diff --git a/examples/angular/chat/tsconfig.app.json b/examples/angular/chat/tsconfig.app.json
new file mode 100644
index 000000000..5b9d3c5ec
--- /dev/null
+++ b/examples/angular/chat/tsconfig.app.json
@@ -0,0 +1,9 @@
+{
+ "extends": "./tsconfig.json",
+ "compilerOptions": {
+ "outDir": "./out-tsc/app",
+ "types": []
+ },
+ "files": ["src/main.ts"],
+ "include": ["src/**/*.d.ts"]
+}
diff --git a/examples/angular/chat/tsconfig.json b/examples/angular/chat/tsconfig.json
new file mode 100644
index 000000000..57d2a58da
--- /dev/null
+++ b/examples/angular/chat/tsconfig.json
@@ -0,0 +1,29 @@
+{
+ "compileOnSave": false,
+ "compilerOptions": {
+ "outDir": "./dist/out-tsc",
+ "strict": true,
+ "noImplicitOverride": true,
+ "noPropertyAccessFromIndexSignature": true,
+ "noImplicitReturns": true,
+ "noFallthroughCasesInSwitch": true,
+ "skipLibCheck": true,
+ "esModuleInterop": true,
+ "sourceMap": true,
+ "declaration": false,
+ "experimentalDecorators": true,
+ "moduleResolution": "node",
+ "importHelpers": true,
+ "target": "ES2022",
+ "module": "ES2022",
+ "useDefineForClassFields": false,
+ "lib": ["ES2022", "dom"],
+ "paths": { "@angular/*": ["./node_modules/@angular/*"] }
+ },
+ "angularCompilerOptions": {
+ "enableI18nLegacyMessageIdFormat": false,
+ "strictInjectionParameters": true,
+ "strictInputAccessModifiers": true,
+ "strictTemplates": true
+ }
+}
diff --git a/examples/angular/dynamic/README.md b/examples/angular/dynamic/README.md
index d96974ead..827a95cf2 100644
--- a/examples/angular/dynamic/README.md
+++ b/examples/angular/dynamic/README.md
@@ -1,6 +1,6 @@
# @tanstack/virtualExampleAngularDynamic
-This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.3.0.
+This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 20.3.0.
## Development server
diff --git a/examples/angular/dynamic/package.json b/examples/angular/dynamic/package.json
index 194aaa6c6..5042b8db6 100644
--- a/examples/angular/dynamic/package.json
+++ b/examples/angular/dynamic/package.json
@@ -9,14 +9,14 @@
"watch": "ng build --watch --configuration development"
},
"dependencies": {
- "@angular/animations": "^19.0.0",
- "@angular/common": "^19.0.0",
- "@angular/compiler": "^19.0.0",
- "@angular/core": "^19.0.0",
- "@angular/forms": "^19.0.0",
- "@angular/platform-browser": "^19.0.0",
- "@angular/platform-browser-dynamic": "^19.0.0",
- "@angular/router": "^19.0.0",
+ "@angular/animations": "^20.0.0",
+ "@angular/common": "^20.0.0",
+ "@angular/compiler": "^20.0.0",
+ "@angular/core": "^20.0.0",
+ "@angular/forms": "^20.0.0",
+ "@angular/platform-browser": "^20.0.0",
+ "@angular/platform-browser-dynamic": "^20.0.0",
+ "@angular/router": "^20.0.0",
"@faker-js/faker": "^8.4.1",
"@tanstack/angular-virtual": "^5.0.8",
"rxjs": "^7.8.2",
@@ -24,9 +24,9 @@
"zone.js": "0.15.1"
},
"devDependencies": {
- "@angular-devkit/build-angular": "^19.0.0",
- "@angular/cli": "^19.0.0",
- "@angular/compiler-cli": "^19.0.0",
- "typescript": "5.6.3"
+ "@angular-devkit/build-angular": "^20.0.0",
+ "@angular/cli": "^20.0.0",
+ "@angular/compiler-cli": "^20.0.0",
+ "typescript": "5.9.3"
}
}
diff --git a/examples/angular/fixed/README.md b/examples/angular/fixed/README.md
index 36d4d18f6..e8a5aa975 100644
--- a/examples/angular/fixed/README.md
+++ b/examples/angular/fixed/README.md
@@ -1,6 +1,6 @@
# @tanstack/virtualExampleAngularFixed
-This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.3.0.
+This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 20.3.0.
## Development server
diff --git a/examples/angular/fixed/package.json b/examples/angular/fixed/package.json
index d660a7319..c1927d44d 100644
--- a/examples/angular/fixed/package.json
+++ b/examples/angular/fixed/package.json
@@ -9,23 +9,23 @@
"watch": "ng build --watch --configuration development"
},
"dependencies": {
- "@angular/animations": "^19.0.0",
- "@angular/common": "^19.0.0",
- "@angular/compiler": "^19.0.0",
- "@angular/core": "^19.0.0",
- "@angular/forms": "^19.0.0",
- "@angular/platform-browser": "^19.0.0",
- "@angular/platform-browser-dynamic": "^19.0.0",
- "@angular/router": "^19.0.0",
+ "@angular/animations": "^20.0.0",
+ "@angular/common": "^20.0.0",
+ "@angular/compiler": "^20.0.0",
+ "@angular/core": "^20.0.0",
+ "@angular/forms": "^20.0.0",
+ "@angular/platform-browser": "^20.0.0",
+ "@angular/platform-browser-dynamic": "^20.0.0",
+ "@angular/router": "^20.0.0",
"@tanstack/angular-virtual": "^5.0.8",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.1"
},
"devDependencies": {
- "@angular-devkit/build-angular": "^19.0.0",
- "@angular/cli": "^19.0.0",
- "@angular/compiler-cli": "^19.0.0",
- "typescript": "5.6.3"
+ "@angular-devkit/build-angular": "^20.0.0",
+ "@angular/cli": "^20.0.0",
+ "@angular/compiler-cli": "^20.0.0",
+ "typescript": "5.9.3"
}
}
diff --git a/examples/angular/infinite-scroll/README.md b/examples/angular/infinite-scroll/README.md
index c88691184..667de390e 100644
--- a/examples/angular/infinite-scroll/README.md
+++ b/examples/angular/infinite-scroll/README.md
@@ -1,6 +1,6 @@
# @tanstack/virtualExampleAngularInfiniteScroll
-This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.3.0.
+This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 20.3.0.
## Development server
diff --git a/examples/angular/infinite-scroll/package.json b/examples/angular/infinite-scroll/package.json
index 9a3ded3cf..fd8ea56fc 100644
--- a/examples/angular/infinite-scroll/package.json
+++ b/examples/angular/infinite-scroll/package.json
@@ -9,14 +9,14 @@
"watch": "ng build --watch --configuration development"
},
"dependencies": {
- "@angular/animations": "^19.0.0",
- "@angular/common": "^19.0.0",
- "@angular/compiler": "^19.0.0",
- "@angular/core": "^19.0.0",
- "@angular/forms": "^19.0.0",
- "@angular/platform-browser": "^19.0.0",
- "@angular/platform-browser-dynamic": "^19.0.0",
- "@angular/router": "^19.0.0",
+ "@angular/animations": "^20.0.0",
+ "@angular/common": "^20.0.0",
+ "@angular/compiler": "^20.0.0",
+ "@angular/core": "^20.0.0",
+ "@angular/forms": "^20.0.0",
+ "@angular/platform-browser": "^20.0.0",
+ "@angular/platform-browser-dynamic": "^20.0.0",
+ "@angular/router": "^20.0.0",
"@tanstack/angular-query-experimental": "5.80.7",
"@tanstack/angular-virtual": "^5.0.8",
"rxjs": "^7.8.2",
@@ -24,9 +24,9 @@
"zone.js": "0.15.1"
},
"devDependencies": {
- "@angular-devkit/build-angular": "^19.0.0",
- "@angular/cli": "^19.0.0",
- "@angular/compiler-cli": "^19.0.0",
- "typescript": "5.6.3"
+ "@angular-devkit/build-angular": "^20.0.0",
+ "@angular/cli": "^20.0.0",
+ "@angular/compiler-cli": "^20.0.0",
+ "typescript": "5.9.3"
}
}
diff --git a/examples/angular/padding/README.md b/examples/angular/padding/README.md
index 064aa3657..37eeb9497 100644
--- a/examples/angular/padding/README.md
+++ b/examples/angular/padding/README.md
@@ -1,6 +1,6 @@
# @tanstack/virtualExampleAngularPadding
-This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.3.0.
+This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 20.3.0.
## Development server
diff --git a/examples/angular/padding/package.json b/examples/angular/padding/package.json
index 373c8f9f5..68f04dc8b 100644
--- a/examples/angular/padding/package.json
+++ b/examples/angular/padding/package.json
@@ -9,23 +9,23 @@
"watch": "ng build --watch --configuration development"
},
"dependencies": {
- "@angular/animations": "^19.0.0",
- "@angular/common": "^19.0.0",
- "@angular/compiler": "^19.0.0",
- "@angular/core": "^19.0.0",
- "@angular/forms": "^19.0.0",
- "@angular/platform-browser": "^19.0.0",
- "@angular/platform-browser-dynamic": "^19.0.0",
- "@angular/router": "^19.0.0",
+ "@angular/animations": "^20.0.0",
+ "@angular/common": "^20.0.0",
+ "@angular/compiler": "^20.0.0",
+ "@angular/core": "^20.0.0",
+ "@angular/forms": "^20.0.0",
+ "@angular/platform-browser": "^20.0.0",
+ "@angular/platform-browser-dynamic": "^20.0.0",
+ "@angular/router": "^20.0.0",
"@tanstack/angular-virtual": "^5.0.8",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.1"
},
"devDependencies": {
- "@angular-devkit/build-angular": "^19.0.0",
- "@angular/cli": "^19.0.0",
- "@angular/compiler-cli": "^19.0.0",
- "typescript": "5.6.3"
+ "@angular-devkit/build-angular": "^20.0.0",
+ "@angular/cli": "^20.0.0",
+ "@angular/compiler-cli": "^20.0.0",
+ "typescript": "5.9.3"
}
}
diff --git a/examples/angular/smooth-scroll/README.md b/examples/angular/smooth-scroll/README.md
index 6958fe82f..02921b8e6 100644
--- a/examples/angular/smooth-scroll/README.md
+++ b/examples/angular/smooth-scroll/README.md
@@ -1,6 +1,6 @@
# @tanstack/virtualExampleAngularSmoothScroll
-This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.3.0.
+This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 20.3.0.
## Development server
diff --git a/examples/angular/smooth-scroll/package.json b/examples/angular/smooth-scroll/package.json
index 5a89b4a6c..59c937656 100644
--- a/examples/angular/smooth-scroll/package.json
+++ b/examples/angular/smooth-scroll/package.json
@@ -9,23 +9,23 @@
"watch": "ng build --watch --configuration development"
},
"dependencies": {
- "@angular/animations": "^19.0.0",
- "@angular/common": "^19.0.0",
- "@angular/compiler": "^19.0.0",
- "@angular/core": "^19.0.0",
- "@angular/forms": "^19.0.0",
- "@angular/platform-browser": "^19.0.0",
- "@angular/platform-browser-dynamic": "^19.0.0",
- "@angular/router": "^19.0.0",
+ "@angular/animations": "^20.0.0",
+ "@angular/common": "^20.0.0",
+ "@angular/compiler": "^20.0.0",
+ "@angular/core": "^20.0.0",
+ "@angular/forms": "^20.0.0",
+ "@angular/platform-browser": "^20.0.0",
+ "@angular/platform-browser-dynamic": "^20.0.0",
+ "@angular/router": "^20.0.0",
"@tanstack/angular-virtual": "^5.0.8",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.1"
},
"devDependencies": {
- "@angular-devkit/build-angular": "^19.0.0",
- "@angular/cli": "^19.0.0",
- "@angular/compiler-cli": "^19.0.0",
- "typescript": "5.6.3"
+ "@angular-devkit/build-angular": "^20.0.0",
+ "@angular/cli": "^20.0.0",
+ "@angular/compiler-cli": "^20.0.0",
+ "typescript": "5.9.3"
}
}
diff --git a/examples/angular/sticky/README.md b/examples/angular/sticky/README.md
index b465e5cfe..baa255c77 100644
--- a/examples/angular/sticky/README.md
+++ b/examples/angular/sticky/README.md
@@ -1,6 +1,6 @@
# @tanstack/virtualExampleAngularSticky
-This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.3.0.
+This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 20.3.0.
## Development server
diff --git a/examples/angular/sticky/package.json b/examples/angular/sticky/package.json
index a1263c163..f9e7c1946 100644
--- a/examples/angular/sticky/package.json
+++ b/examples/angular/sticky/package.json
@@ -9,14 +9,14 @@
"watch": "ng build --watch --configuration development"
},
"dependencies": {
- "@angular/animations": "^19.0.0",
- "@angular/common": "^19.0.0",
- "@angular/compiler": "^19.0.0",
- "@angular/core": "^19.0.0",
- "@angular/forms": "^19.0.0",
- "@angular/platform-browser": "^19.0.0",
- "@angular/platform-browser-dynamic": "^19.0.0",
- "@angular/router": "^19.0.0",
+ "@angular/animations": "^20.0.0",
+ "@angular/common": "^20.0.0",
+ "@angular/compiler": "^20.0.0",
+ "@angular/core": "^20.0.0",
+ "@angular/forms": "^20.0.0",
+ "@angular/platform-browser": "^20.0.0",
+ "@angular/platform-browser-dynamic": "^20.0.0",
+ "@angular/router": "^20.0.0",
"@faker-js/faker": "^8.4.1",
"@tanstack/angular-virtual": "^5.0.8",
"rxjs": "^7.8.2",
@@ -24,9 +24,9 @@
"zone.js": "0.15.1"
},
"devDependencies": {
- "@angular-devkit/build-angular": "^19.0.0",
- "@angular/cli": "^19.0.0",
- "@angular/compiler-cli": "^19.0.0",
- "typescript": "5.6.3"
+ "@angular-devkit/build-angular": "^20.0.0",
+ "@angular/cli": "^20.0.0",
+ "@angular/compiler-cli": "^20.0.0",
+ "typescript": "5.9.3"
}
}
diff --git a/examples/angular/table/README.md b/examples/angular/table/README.md
index 81e389283..d5556e838 100644
--- a/examples/angular/table/README.md
+++ b/examples/angular/table/README.md
@@ -1,6 +1,6 @@
# @tanstack/virtualExampleAngularTable
-This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.3.0.
+This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 20.3.0.
## Development server
diff --git a/examples/angular/table/package.json b/examples/angular/table/package.json
index 07285b4c2..8d65b1ca6 100644
--- a/examples/angular/table/package.json
+++ b/examples/angular/table/package.json
@@ -9,14 +9,14 @@
"watch": "ng build --watch --configuration development"
},
"dependencies": {
- "@angular/animations": "^19.0.0",
- "@angular/common": "^19.0.0",
- "@angular/compiler": "^19.0.0",
- "@angular/core": "^19.0.0",
- "@angular/forms": "^19.0.0",
- "@angular/platform-browser": "^19.0.0",
- "@angular/platform-browser-dynamic": "^19.0.0",
- "@angular/router": "^19.0.0",
+ "@angular/animations": "^20.0.0",
+ "@angular/common": "^20.0.0",
+ "@angular/compiler": "^20.0.0",
+ "@angular/core": "^20.0.0",
+ "@angular/forms": "^20.0.0",
+ "@angular/platform-browser": "^20.0.0",
+ "@angular/platform-browser-dynamic": "^20.0.0",
+ "@angular/router": "^20.0.0",
"@faker-js/faker": "^8.4.1",
"@tanstack/angular-table": "8.21.3",
"@tanstack/angular-virtual": "^5.0.8",
@@ -25,9 +25,9 @@
"zone.js": "0.15.1"
},
"devDependencies": {
- "@angular-devkit/build-angular": "^19.0.0",
- "@angular/cli": "^19.0.0",
- "@angular/compiler-cli": "^19.0.0",
- "typescript": "5.6.3"
+ "@angular-devkit/build-angular": "^20.0.0",
+ "@angular/cli": "^20.0.0",
+ "@angular/compiler-cli": "^20.0.0",
+ "typescript": "5.9.3"
}
}
diff --git a/examples/angular/variable/README.md b/examples/angular/variable/README.md
index 7ff180ffb..a8656ff80 100644
--- a/examples/angular/variable/README.md
+++ b/examples/angular/variable/README.md
@@ -1,6 +1,6 @@
# @tanstack/virtualExampleAngularVariable
-This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.3.0.
+This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 20.3.0.
## Development server
diff --git a/examples/angular/variable/package.json b/examples/angular/variable/package.json
index ca4de45ae..2ba56d256 100644
--- a/examples/angular/variable/package.json
+++ b/examples/angular/variable/package.json
@@ -9,23 +9,23 @@
"watch": "ng build --watch --configuration development"
},
"dependencies": {
- "@angular/animations": "^19.0.0",
- "@angular/common": "^19.0.0",
- "@angular/compiler": "^19.0.0",
- "@angular/core": "^19.0.0",
- "@angular/forms": "^19.0.0",
- "@angular/platform-browser": "^19.0.0",
- "@angular/platform-browser-dynamic": "^19.0.0",
- "@angular/router": "^19.0.0",
+ "@angular/animations": "^20.0.0",
+ "@angular/common": "^20.0.0",
+ "@angular/compiler": "^20.0.0",
+ "@angular/core": "^20.0.0",
+ "@angular/forms": "^20.0.0",
+ "@angular/platform-browser": "^20.0.0",
+ "@angular/platform-browser-dynamic": "^20.0.0",
+ "@angular/router": "^20.0.0",
"@tanstack/angular-virtual": "^5.0.8",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.1"
},
"devDependencies": {
- "@angular-devkit/build-angular": "^19.0.0",
- "@angular/cli": "^19.0.0",
- "@angular/compiler-cli": "^19.0.0",
- "typescript": "5.6.3"
+ "@angular-devkit/build-angular": "^20.0.0",
+ "@angular/cli": "^20.0.0",
+ "@angular/compiler-cli": "^20.0.0",
+ "typescript": "5.9.3"
}
}
diff --git a/examples/angular/window/README.md b/examples/angular/window/README.md
index c884a06de..a83f4b919 100644
--- a/examples/angular/window/README.md
+++ b/examples/angular/window/README.md
@@ -1,6 +1,6 @@
# @tanstack/virtualExampleAngularWindow
-This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.3.0.
+This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 20.3.0.
## Development server
diff --git a/examples/angular/window/package.json b/examples/angular/window/package.json
index 7cc62301c..46ecc1c83 100644
--- a/examples/angular/window/package.json
+++ b/examples/angular/window/package.json
@@ -9,23 +9,23 @@
"watch": "ng build --watch --configuration development"
},
"dependencies": {
- "@angular/animations": "^19.0.0",
- "@angular/common": "^19.0.0",
- "@angular/compiler": "^19.0.0",
- "@angular/core": "^19.0.0",
- "@angular/forms": "^19.0.0",
- "@angular/platform-browser": "^19.0.0",
- "@angular/platform-browser-dynamic": "^19.0.0",
- "@angular/router": "^19.0.0",
+ "@angular/animations": "^20.0.0",
+ "@angular/common": "^20.0.0",
+ "@angular/compiler": "^20.0.0",
+ "@angular/core": "^20.0.0",
+ "@angular/forms": "^20.0.0",
+ "@angular/platform-browser": "^20.0.0",
+ "@angular/platform-browser-dynamic": "^20.0.0",
+ "@angular/router": "^20.0.0",
"@tanstack/angular-virtual": "^5.0.8",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"zone.js": "0.15.1"
},
"devDependencies": {
- "@angular-devkit/build-angular": "^19.0.0",
- "@angular/cli": "^19.0.0",
- "@angular/compiler-cli": "^19.0.0",
- "typescript": "5.6.3"
+ "@angular-devkit/build-angular": "^20.0.0",
+ "@angular/cli": "^20.0.0",
+ "@angular/compiler-cli": "^20.0.0",
+ "typescript": "5.9.3"
}
}
diff --git a/examples/lit/dynamic/package.json b/examples/lit/dynamic/package.json
index 05ee0b8af..6a78bff52 100644
--- a/examples/lit/dynamic/package.json
+++ b/examples/lit/dynamic/package.json
@@ -15,7 +15,7 @@
},
"devDependencies": {
"@types/node": "^24.5.2",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2"
}
}
diff --git a/examples/lit/fixed/package.json b/examples/lit/fixed/package.json
index 77a7612ab..5e0ec25de 100644
--- a/examples/lit/fixed/package.json
+++ b/examples/lit/fixed/package.json
@@ -15,7 +15,7 @@
},
"devDependencies": {
"@types/node": "^24.5.2",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2"
}
}
diff --git a/examples/marko/dynamic/package.json b/examples/marko/dynamic/package.json
index 0d2e78947..57a9447cd 100644
--- a/examples/marko/dynamic/package.json
+++ b/examples/marko/dynamic/package.json
@@ -13,7 +13,7 @@
"marko": "^6.0.0"
},
"devDependencies": {
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2"
}
}
diff --git a/examples/marko/fixed/package.json b/examples/marko/fixed/package.json
index 53af2f922..5baf02fe1 100644
--- a/examples/marko/fixed/package.json
+++ b/examples/marko/fixed/package.json
@@ -13,7 +13,7 @@
"marko": "^6.0.0"
},
"devDependencies": {
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2"
}
}
diff --git a/examples/marko/grid/package.json b/examples/marko/grid/package.json
index 9a168e2c9..a45811b28 100644
--- a/examples/marko/grid/package.json
+++ b/examples/marko/grid/package.json
@@ -13,7 +13,7 @@
"marko": "^6.0.0"
},
"devDependencies": {
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2"
}
}
diff --git a/examples/marko/infinite-scroll/package.json b/examples/marko/infinite-scroll/package.json
index f7ee4d121..fe57f15a2 100644
--- a/examples/marko/infinite-scroll/package.json
+++ b/examples/marko/infinite-scroll/package.json
@@ -13,7 +13,7 @@
"marko": "^6.0.0"
},
"devDependencies": {
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2"
}
}
diff --git a/examples/marko/smooth-scroll/package.json b/examples/marko/smooth-scroll/package.json
index a4444352a..97bf7bdea 100644
--- a/examples/marko/smooth-scroll/package.json
+++ b/examples/marko/smooth-scroll/package.json
@@ -13,7 +13,7 @@
"marko": "^6.0.0"
},
"devDependencies": {
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2"
}
}
diff --git a/examples/marko/variable/package.json b/examples/marko/variable/package.json
index 68d42b832..9bc088809 100644
--- a/examples/marko/variable/package.json
+++ b/examples/marko/variable/package.json
@@ -13,7 +13,7 @@
"marko": "^6.0.0"
},
"devDependencies": {
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2"
}
}
diff --git a/examples/marko/window/package.json b/examples/marko/window/package.json
index ab7667637..ee6a51c1f 100644
--- a/examples/marko/window/package.json
+++ b/examples/marko/window/package.json
@@ -13,7 +13,7 @@
"marko": "^6.0.0"
},
"devDependencies": {
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2"
}
}
diff --git a/examples/react/chat/package.json b/examples/react/chat/package.json
index b0d13f80d..f5c938f6f 100644
--- a/examples/react/chat/package.json
+++ b/examples/react/chat/package.json
@@ -16,7 +16,7 @@
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.5.2",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2"
}
}
diff --git a/examples/react/dynamic/package.json b/examples/react/dynamic/package.json
index da9bdd16a..92164f81c 100644
--- a/examples/react/dynamic/package.json
+++ b/examples/react/dynamic/package.json
@@ -18,7 +18,7 @@
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.5.2",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2"
}
}
diff --git a/examples/react/fixed/package.json b/examples/react/fixed/package.json
index 0c75b9033..d70b797ee 100644
--- a/examples/react/fixed/package.json
+++ b/examples/react/fixed/package.json
@@ -17,7 +17,7 @@
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.5.2",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2"
}
}
diff --git a/examples/react/pretext/package.json b/examples/react/pretext/package.json
index f7b11ff1a..1106cefcb 100644
--- a/examples/react/pretext/package.json
+++ b/examples/react/pretext/package.json
@@ -18,7 +18,7 @@
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.5.2",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2"
}
}
diff --git a/examples/react/window/package.json b/examples/react/window/package.json
index 04f18cd49..9fbefbe35 100644
--- a/examples/react/window/package.json
+++ b/examples/react/window/package.json
@@ -17,7 +17,7 @@
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.5.2",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2"
}
}
diff --git a/examples/svelte/dynamic/package.json b/examples/svelte/dynamic/package.json
index a8678d25b..dd147a56a 100644
--- a/examples/svelte/dynamic/package.json
+++ b/examples/svelte/dynamic/package.json
@@ -18,7 +18,7 @@
"svelte": "^4.2.20",
"svelte-check": "^4.2.1",
"tslib": "^2.8.1",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2"
}
}
diff --git a/examples/svelte/fixed/package.json b/examples/svelte/fixed/package.json
index 3b286e124..90c2d4010 100644
--- a/examples/svelte/fixed/package.json
+++ b/examples/svelte/fixed/package.json
@@ -17,7 +17,7 @@
"svelte": "^4.2.20",
"svelte-check": "^4.2.1",
"tslib": "^2.8.1",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2"
}
}
diff --git a/examples/svelte/infinite-scroll/package.json b/examples/svelte/infinite-scroll/package.json
index a65b07e98..812f08714 100644
--- a/examples/svelte/infinite-scroll/package.json
+++ b/examples/svelte/infinite-scroll/package.json
@@ -18,7 +18,7 @@
"svelte": "^4.2.20",
"svelte-check": "^4.2.1",
"tslib": "^2.8.1",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2"
}
}
diff --git a/examples/svelte/smooth-scroll/package.json b/examples/svelte/smooth-scroll/package.json
index 624e26d2d..1a08f3b20 100644
--- a/examples/svelte/smooth-scroll/package.json
+++ b/examples/svelte/smooth-scroll/package.json
@@ -18,7 +18,7 @@
"svelte": "^4.2.20",
"svelte-check": "^4.2.1",
"tslib": "^2.8.1",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2"
}
}
diff --git a/examples/svelte/sticky/package.json b/examples/svelte/sticky/package.json
index 5182484ea..7b3f8ac70 100644
--- a/examples/svelte/sticky/package.json
+++ b/examples/svelte/sticky/package.json
@@ -19,7 +19,7 @@
"svelte": "^4.2.20",
"svelte-check": "^4.2.1",
"tslib": "^2.8.1",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2"
}
}
diff --git a/examples/svelte/table/package.json b/examples/svelte/table/package.json
index b081c03e1..02a25f58c 100644
--- a/examples/svelte/table/package.json
+++ b/examples/svelte/table/package.json
@@ -19,7 +19,7 @@
"svelte": "^4.2.20",
"svelte-check": "^4.2.1",
"tslib": "^2.8.1",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2"
}
}
diff --git a/examples/vue/dynamic/package.json b/examples/vue/dynamic/package.json
index 8c2372ac6..8b2e85896 100644
--- a/examples/vue/dynamic/package.json
+++ b/examples/vue/dynamic/package.json
@@ -15,7 +15,7 @@
"devDependencies": {
"@codesandbox/vue-preview": "^0.1.1-alpha.16",
"@vitejs/plugin-vue": "^5.2.4",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2",
"vue-tsc": "^2.2.10"
}
diff --git a/examples/vue/fixed/package.json b/examples/vue/fixed/package.json
index 8e3868ff3..88afdfe5c 100644
--- a/examples/vue/fixed/package.json
+++ b/examples/vue/fixed/package.json
@@ -14,7 +14,7 @@
"devDependencies": {
"@codesandbox/vue-preview": "^0.1.1-alpha.16",
"@vitejs/plugin-vue": "^5.2.4",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2",
"vue-tsc": "^2.2.10"
}
diff --git a/examples/vue/infinite-scroll/package.json b/examples/vue/infinite-scroll/package.json
index c68b8fb1e..da7e0000a 100644
--- a/examples/vue/infinite-scroll/package.json
+++ b/examples/vue/infinite-scroll/package.json
@@ -15,7 +15,7 @@
"devDependencies": {
"@codesandbox/vue-preview": "^0.1.1-alpha.16",
"@vitejs/plugin-vue": "^5.2.4",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2",
"vue-tsc": "^2.2.10"
}
diff --git a/examples/vue/padding/package.json b/examples/vue/padding/package.json
index a167727f5..e49737b41 100644
--- a/examples/vue/padding/package.json
+++ b/examples/vue/padding/package.json
@@ -14,7 +14,7 @@
"devDependencies": {
"@codesandbox/vue-preview": "^0.1.1-alpha.16",
"@vitejs/plugin-vue": "^5.2.4",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2",
"vue-tsc": "^2.2.10"
}
diff --git a/examples/vue/scroll-padding/package.json b/examples/vue/scroll-padding/package.json
index 6f5148b18..22c7107e9 100644
--- a/examples/vue/scroll-padding/package.json
+++ b/examples/vue/scroll-padding/package.json
@@ -15,7 +15,7 @@
"devDependencies": {
"@codesandbox/vue-preview": "^0.1.1-alpha.16",
"@vitejs/plugin-vue": "^5.2.4",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2",
"vue-tsc": "^2.2.10"
}
diff --git a/examples/vue/smooth-scroll/package.json b/examples/vue/smooth-scroll/package.json
index 3e713ef61..11720f9eb 100644
--- a/examples/vue/smooth-scroll/package.json
+++ b/examples/vue/smooth-scroll/package.json
@@ -14,7 +14,7 @@
"devDependencies": {
"@codesandbox/vue-preview": "^0.1.1-alpha.16",
"@vitejs/plugin-vue": "^5.2.4",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2",
"vue-tsc": "^2.2.10"
}
diff --git a/examples/vue/sticky/package.json b/examples/vue/sticky/package.json
index b1e9c96e1..85fb314bf 100644
--- a/examples/vue/sticky/package.json
+++ b/examples/vue/sticky/package.json
@@ -17,7 +17,7 @@
"@codesandbox/vue-preview": "^0.1.1-alpha.16",
"@types/lodash": "^4.17.17",
"@vitejs/plugin-vue": "^5.2.4",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2",
"vue-tsc": "^2.2.10"
}
diff --git a/examples/vue/table/package.json b/examples/vue/table/package.json
index ab8cb34fd..9d1f4d9f1 100644
--- a/examples/vue/table/package.json
+++ b/examples/vue/table/package.json
@@ -16,7 +16,7 @@
"devDependencies": {
"@codesandbox/vue-preview": "^0.1.1-alpha.16",
"@vitejs/plugin-vue": "^5.2.4",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2",
"vue-tsc": "^2.2.10"
}
diff --git a/examples/vue/variable/package.json b/examples/vue/variable/package.json
index 117360af6..f243ed1df 100644
--- a/examples/vue/variable/package.json
+++ b/examples/vue/variable/package.json
@@ -14,7 +14,7 @@
"devDependencies": {
"@codesandbox/vue-preview": "^0.1.1-alpha.16",
"@vitejs/plugin-vue": "^5.2.4",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2",
"vue-tsc": "^2.2.10"
}
diff --git a/package.json b/package.json
index 12010da2f..2f509d855 100644
--- a/package.json
+++ b/package.json
@@ -61,7 +61,7 @@
"publint": "^0.3.15",
"sherif": "^1.9.0",
"tinyglobby": "^0.2.15",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"vite": "^6.4.2",
"vitest": "^4.1.4"
}
diff --git a/packages/angular-virtual/package.json b/packages/angular-virtual/package.json
index 9c47d4bca..4896ded41 100644
--- a/packages/angular-virtual/package.json
+++ b/packages/angular-virtual/package.json
@@ -52,19 +52,19 @@
"@tanstack/virtual-core": "workspace:*"
},
"devDependencies": {
- "@angular-devkit/build-angular": "^19.0.0",
- "@angular/cli": "^19.0.0",
- "@angular/common": "^19.0.0",
- "@angular/compiler-cli": "^19.0.0",
- "@angular/core": "^19.0.0",
- "@angular/platform-browser": "^19.0.0",
- "@angular/router": "^19.0.0",
+ "@angular-devkit/build-angular": "^20.0.0",
+ "@angular/cli": "^20.0.0",
+ "@angular/common": "^20.0.0",
+ "@angular/compiler-cli": "^20.0.0",
+ "@angular/core": "^20.0.0",
+ "@angular/platform-browser": "^20.0.0",
+ "@angular/router": "^20.0.0",
"tslib": "^2.8.1",
- "typescript": "5.6.3",
+ "typescript": "5.9.3",
"zone.js": "0.15.1"
},
"peerDependencies": {
- "@angular/core": ">=19.0.0"
+ "@angular/core": ">=20.0.0"
},
"sideEffects": false
}
diff --git a/packages/angular-virtual/tsconfig.json b/packages/angular-virtual/tsconfig.json
index d5844eca6..45a97c94c 100644
--- a/packages/angular-virtual/tsconfig.json
+++ b/packages/angular-virtual/tsconfig.json
@@ -1,5 +1,5 @@
{
"extends": "../../tsconfig.json",
- "include": ["src", "eslint.config.js", "vite.config.ts"],
+ "include": ["src", "vite.config.ts"],
"exclude": ["**/*.spec.ts"]
}
diff --git a/packages/lit-virtual/tsconfig.json b/packages/lit-virtual/tsconfig.json
index 0f6ae1873..0476eb9a1 100644
--- a/packages/lit-virtual/tsconfig.json
+++ b/packages/lit-virtual/tsconfig.json
@@ -3,5 +3,5 @@
"compilerOptions": {
"experimentalDecorators": true
},
- "include": ["src", "eslint.config.js", "vite.config.ts"]
+ "include": ["src", "vite.config.ts"]
}
diff --git a/packages/marko-virtual/tsconfig.json b/packages/marko-virtual/tsconfig.json
index a003c8a12..0e5d559eb 100644
--- a/packages/marko-virtual/tsconfig.json
+++ b/packages/marko-virtual/tsconfig.json
@@ -3,7 +3,7 @@
"include": [
"src/**/*.ts",
"tests/**/*.ts",
- "eslint.config.js",
+
"vite.config.ts",
"vitest.config.ts"
]
diff --git a/packages/react-virtual/tsconfig.json b/packages/react-virtual/tsconfig.json
index effe33b1b..81932e769 100644
--- a/packages/react-virtual/tsconfig.json
+++ b/packages/react-virtual/tsconfig.json
@@ -3,10 +3,5 @@
"compilerOptions": {
"jsx": "react"
},
- "include": [
- "src",
- "eslint.config.js",
- "vite.config.ts",
- "playwright.config.ts"
- ]
+ "include": ["src", "vite.config.ts", "playwright.config.ts"]
}
diff --git a/packages/solid-virtual/tsconfig.json b/packages/solid-virtual/tsconfig.json
index 5f7748754..1b802b64d 100644
--- a/packages/solid-virtual/tsconfig.json
+++ b/packages/solid-virtual/tsconfig.json
@@ -4,5 +4,5 @@
"jsx": "preserve",
"jsxImportSource": "solid-js"
},
- "include": ["src", "eslint.config.js", "vite.config.ts"]
+ "include": ["src", "vite.config.ts"]
}
diff --git a/packages/svelte-virtual/tsconfig.json b/packages/svelte-virtual/tsconfig.json
index d08876c8a..be2774d24 100644
--- a/packages/svelte-virtual/tsconfig.json
+++ b/packages/svelte-virtual/tsconfig.json
@@ -4,7 +4,7 @@
"src/**/*.js",
"src/**/*.ts",
"src/**/*.svelte",
- "eslint.config.js",
+
"svelte.config.js",
"vite.config.ts"
]
diff --git a/packages/virtual-core/tsconfig.json b/packages/virtual-core/tsconfig.json
index eb6383595..b36d1bf92 100644
--- a/packages/virtual-core/tsconfig.json
+++ b/packages/virtual-core/tsconfig.json
@@ -1,4 +1,4 @@
{
"extends": "../../tsconfig.json",
- "include": ["src", "eslint.config.js", "vite.config.ts"]
+ "include": ["src", "vite.config.ts"]
}
diff --git a/packages/vue-virtual/tsconfig.json b/packages/vue-virtual/tsconfig.json
index eb6383595..b36d1bf92 100644
--- a/packages/vue-virtual/tsconfig.json
+++ b/packages/vue-virtual/tsconfig.json
@@ -1,4 +1,4 @@
{
"extends": "../../tsconfig.json",
- "include": ["src", "eslint.config.js", "vite.config.ts"]
+ "include": ["src", "vite.config.ts"]
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 3768e80bf..d1636d677 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -19,10 +19,10 @@ importers:
version: 1.56.1
'@tanstack/eslint-config':
specifier: 0.3.4
- version: 0.3.4(@typescript-eslint/utils@8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.6.3))(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.6.3)
+ version: 0.3.4(@typescript-eslint/utils@8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.9.3))(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.9.3)
'@tanstack/vite-config':
specifier: 0.4.3
- version: 0.4.3(@types/node@24.9.2)(rollup@4.59.0)(supports-color@10.2.2)(typescript@5.6.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 0.4.3(@types/node@24.9.2)(rollup@4.59.0)(supports-color@10.2.2)(typescript@5.9.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
'@testing-library/jest-dom':
specifier: ^6.6.3
version: 6.9.1
@@ -37,7 +37,7 @@ importers:
version: 27.1.0(supports-color@10.2.2)
knip:
specifier: ^5.63.1
- version: 5.66.4(@types/node@24.9.2)(typescript@5.6.3)
+ version: 5.66.4(@types/node@24.9.2)(typescript@5.9.3)
markdown-link-extractor:
specifier: ^4.0.2
version: 4.0.2
@@ -63,14 +63,14 @@ importers:
specifier: ^0.2.15
version: 0.2.15
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
vitest:
specifier: ^4.1.4
- version: 4.1.4(@types/node@24.9.2)(jsdom@27.1.0(supports-color@10.2.2))(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 4.1.4(@types/node@24.9.2)(jsdom@27.1.0(supports-color@10.2.2))(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
benchmarks:
dependencies:
@@ -94,7 +94,7 @@ importers:
version: 2.2.7(react-dom@19.2.7(react@19.2.7))(react@19.2.7)
virtua:
specifier: ^0.49.0
- version: 0.49.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(solid-js@1.9.10)(svelte@4.2.20)(vue@3.5.22(typescript@5.6.3))
+ version: 0.49.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(solid-js@1.9.10)(svelte@4.2.20)(vue@3.5.22(typescript@5.9.3))
devDependencies:
'@playwright/test':
specifier: ^1.53.1
@@ -107,40 +107,92 @@ importers:
version: 19.2.3(@types/react@19.2.16)
'@vitejs/plugin-react':
specifier: ^4.5.2
- version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 4.7.0(supports-color@10.2.2)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+
+ examples/angular/chat:
+ dependencies:
+ '@angular/animations':
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
+ '@angular/common':
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ '@angular/compiler':
+ specifier: ^20.0.0
+ version: 20.3.26
+ '@angular/core':
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)
+ '@angular/forms':
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ '@angular/platform-browser':
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
+ '@angular/platform-browser-dynamic':
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))
+ '@angular/router':
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ '@tanstack/angular-virtual':
+ specifier: ^5.0.8
+ version: link:../../../packages/angular-virtual
+ rxjs:
+ specifier: ^7.8.2
+ version: 7.8.2
+ tslib:
+ specifier: ^2.8.1
+ version: 2.8.1
+ zone.js:
+ specifier: 0.15.1
+ version: 0.15.1
+ devDependencies:
+ '@angular-devkit/build-angular':
+ specifier: ^20.0.0
+ version: 20.3.32(@angular/compiler-cli@20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.9.3)(vitest@4.1.4(@types/node@24.9.2)(jsdom@27.1.0(supports-color@10.2.2))(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)))(yaml@2.8.1)
+ '@angular/cli':
+ specifier: ^20.0.0
+ version: 20.3.32(@types/node@24.9.2)(chokidar@4.0.3)
+ '@angular/compiler-cli':
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3)
+ typescript:
+ specifier: 5.9.3
+ version: 5.9.3
examples/angular/dynamic:
dependencies:
'@angular/animations':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/common':
- specifier: ^19.0.0
- version: 19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^19.0.0
- version: 19.2.20
+ specifier: ^20.0.0
+ version: 20.3.26
'@angular/core':
- specifier: ^19.0.0
- version: 19.2.20(rxjs@7.8.2)(zone.js@0.15.1)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)
'@angular/forms':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^19.0.0
- version: 19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/platform-browser-dynamic':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@19.2.20)(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))
'@angular/router':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@faker-js/faker':
specifier: ^8.4.1
version: 8.4.1
@@ -158,44 +210,44 @@ importers:
version: 0.15.1
devDependencies:
'@angular-devkit/build-angular':
- specifier: ^19.0.0
- version: 19.2.24(@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(supports-color@10.2.2)(typescript@5.6.3))(@angular/compiler@19.2.20)(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(supports-color@10.2.2)(typescript@5.6.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(yaml@2.8.1)
+ specifier: ^20.0.0
+ version: 20.3.32(@angular/compiler-cli@20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.9.3)(vitest@4.1.4(@types/node@24.9.2)(jsdom@27.1.0(supports-color@10.2.2))(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)))(yaml@2.8.1)
'@angular/cli':
- specifier: ^19.0.0
- version: 19.2.24(@types/node@24.9.2)(chokidar@4.0.3)(supports-color@10.2.2)
+ specifier: ^20.0.0
+ version: 20.3.32(@types/node@24.9.2)(chokidar@4.0.3)
'@angular/compiler-cli':
- specifier: ^19.0.0
- version: 19.2.20(@angular/compiler@19.2.20)(supports-color@10.2.2)(typescript@5.6.3)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3)
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
examples/angular/fixed:
dependencies:
'@angular/animations':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/common':
- specifier: ^19.0.0
- version: 19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^19.0.0
- version: 19.2.20
+ specifier: ^20.0.0
+ version: 20.3.26
'@angular/core':
- specifier: ^19.0.0
- version: 19.2.20(rxjs@7.8.2)(zone.js@0.15.1)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)
'@angular/forms':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^19.0.0
- version: 19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/platform-browser-dynamic':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@19.2.20)(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))
'@angular/router':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@tanstack/angular-virtual':
specifier: ^5.0.8
version: link:../../../packages/angular-virtual
@@ -210,47 +262,47 @@ importers:
version: 0.15.1
devDependencies:
'@angular-devkit/build-angular':
- specifier: ^19.0.0
- version: 19.2.24(@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3))(@angular/compiler@19.2.20)(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.6.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(yaml@2.8.1)
+ specifier: ^20.0.0
+ version: 20.3.32(@angular/compiler-cli@20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.9.3)(vitest@4.1.4(@types/node@24.9.2)(jsdom@27.1.0(supports-color@10.2.2))(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)))(yaml@2.8.1)
'@angular/cli':
- specifier: ^19.0.0
- version: 19.2.24(@types/node@24.9.2)(chokidar@4.0.3)(supports-color@10.2.2)
+ specifier: ^20.0.0
+ version: 20.3.32(@types/node@24.9.2)(chokidar@4.0.3)
'@angular/compiler-cli':
- specifier: ^19.0.0
- version: 19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3)
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
examples/angular/infinite-scroll:
dependencies:
'@angular/animations':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/common':
- specifier: ^19.0.0
- version: 19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^19.0.0
- version: 19.2.20
+ specifier: ^20.0.0
+ version: 20.3.26
'@angular/core':
- specifier: ^19.0.0
- version: 19.2.20(rxjs@7.8.2)(zone.js@0.15.1)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)
'@angular/forms':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^19.0.0
- version: 19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/platform-browser-dynamic':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@19.2.20)(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))
'@angular/router':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@tanstack/angular-query-experimental':
specifier: 5.80.7
- version: 5.80.7(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ version: 5.80.7(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
'@tanstack/angular-virtual':
specifier: ^5.0.8
version: link:../../../packages/angular-virtual
@@ -265,44 +317,44 @@ importers:
version: 0.15.1
devDependencies:
'@angular-devkit/build-angular':
- specifier: ^19.0.0
- version: 19.2.24(@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3))(@angular/compiler@19.2.20)(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.6.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(yaml@2.8.1)
+ specifier: ^20.0.0
+ version: 20.3.32(@angular/compiler-cli@20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.9.3)(vitest@4.1.4(@types/node@24.9.2)(jsdom@27.1.0(supports-color@10.2.2))(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)))(yaml@2.8.1)
'@angular/cli':
- specifier: ^19.0.0
- version: 19.2.24(@types/node@24.9.2)(chokidar@4.0.3)(supports-color@10.2.2)
+ specifier: ^20.0.0
+ version: 20.3.32(@types/node@24.9.2)(chokidar@4.0.3)
'@angular/compiler-cli':
- specifier: ^19.0.0
- version: 19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3)
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
examples/angular/padding:
dependencies:
'@angular/animations':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/common':
- specifier: ^19.0.0
- version: 19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^19.0.0
- version: 19.2.20
+ specifier: ^20.0.0
+ version: 20.3.26
'@angular/core':
- specifier: ^19.0.0
- version: 19.2.20(rxjs@7.8.2)(zone.js@0.15.1)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)
'@angular/forms':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^19.0.0
- version: 19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/platform-browser-dynamic':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@19.2.20)(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))
'@angular/router':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@tanstack/angular-virtual':
specifier: ^5.0.8
version: link:../../../packages/angular-virtual
@@ -317,44 +369,44 @@ importers:
version: 0.15.1
devDependencies:
'@angular-devkit/build-angular':
- specifier: ^19.0.0
- version: 19.2.24(@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3))(@angular/compiler@19.2.20)(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.6.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(yaml@2.8.1)
+ specifier: ^20.0.0
+ version: 20.3.32(@angular/compiler-cli@20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.9.3)(vitest@4.1.4(@types/node@24.9.2)(jsdom@27.1.0(supports-color@10.2.2))(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)))(yaml@2.8.1)
'@angular/cli':
- specifier: ^19.0.0
- version: 19.2.24(@types/node@24.9.2)(chokidar@4.0.3)(supports-color@10.2.2)
+ specifier: ^20.0.0
+ version: 20.3.32(@types/node@24.9.2)(chokidar@4.0.3)
'@angular/compiler-cli':
- specifier: ^19.0.0
- version: 19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3)
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
examples/angular/smooth-scroll:
dependencies:
'@angular/animations':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/common':
- specifier: ^19.0.0
- version: 19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^19.0.0
- version: 19.2.20
+ specifier: ^20.0.0
+ version: 20.3.26
'@angular/core':
- specifier: ^19.0.0
- version: 19.2.20(rxjs@7.8.2)(zone.js@0.15.1)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)
'@angular/forms':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^19.0.0
- version: 19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/platform-browser-dynamic':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@19.2.20)(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))
'@angular/router':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@tanstack/angular-virtual':
specifier: ^5.0.8
version: link:../../../packages/angular-virtual
@@ -369,44 +421,44 @@ importers:
version: 0.15.1
devDependencies:
'@angular-devkit/build-angular':
- specifier: ^19.0.0
- version: 19.2.24(@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3))(@angular/compiler@19.2.20)(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.6.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(yaml@2.8.1)
+ specifier: ^20.0.0
+ version: 20.3.32(@angular/compiler-cli@20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.9.3)(vitest@4.1.4(@types/node@24.9.2)(jsdom@27.1.0(supports-color@10.2.2))(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)))(yaml@2.8.1)
'@angular/cli':
- specifier: ^19.0.0
- version: 19.2.24(@types/node@24.9.2)(chokidar@4.0.3)(supports-color@10.2.2)
+ specifier: ^20.0.0
+ version: 20.3.32(@types/node@24.9.2)(chokidar@4.0.3)
'@angular/compiler-cli':
- specifier: ^19.0.0
- version: 19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3)
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
examples/angular/sticky:
dependencies:
'@angular/animations':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/common':
- specifier: ^19.0.0
- version: 19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^19.0.0
- version: 19.2.20
+ specifier: ^20.0.0
+ version: 20.3.26
'@angular/core':
- specifier: ^19.0.0
- version: 19.2.20(rxjs@7.8.2)(zone.js@0.15.1)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)
'@angular/forms':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^19.0.0
- version: 19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/platform-browser-dynamic':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@19.2.20)(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))
'@angular/router':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@faker-js/faker':
specifier: ^8.4.1
version: 8.4.1
@@ -424,50 +476,50 @@ importers:
version: 0.15.1
devDependencies:
'@angular-devkit/build-angular':
- specifier: ^19.0.0
- version: 19.2.24(@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3))(@angular/compiler@19.2.20)(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.6.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(yaml@2.8.1)
+ specifier: ^20.0.0
+ version: 20.3.32(@angular/compiler-cli@20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.9.3)(vitest@4.1.4(@types/node@24.9.2)(jsdom@27.1.0(supports-color@10.2.2))(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)))(yaml@2.8.1)
'@angular/cli':
- specifier: ^19.0.0
- version: 19.2.24(@types/node@24.9.2)(chokidar@4.0.3)(supports-color@10.2.2)
+ specifier: ^20.0.0
+ version: 20.3.32(@types/node@24.9.2)(chokidar@4.0.3)
'@angular/compiler-cli':
- specifier: ^19.0.0
- version: 19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3)
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
examples/angular/table:
dependencies:
'@angular/animations':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/common':
- specifier: ^19.0.0
- version: 19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^19.0.0
- version: 19.2.20
+ specifier: ^20.0.0
+ version: 20.3.26
'@angular/core':
- specifier: ^19.0.0
- version: 19.2.20(rxjs@7.8.2)(zone.js@0.15.1)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)
'@angular/forms':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^19.0.0
- version: 19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/platform-browser-dynamic':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@19.2.20)(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))
'@angular/router':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@faker-js/faker':
specifier: ^8.4.1
version: 8.4.1
'@tanstack/angular-table':
specifier: 8.21.3
- version: 8.21.3(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ version: 8.21.3(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
'@tanstack/angular-virtual':
specifier: ^5.0.8
version: link:../../../packages/angular-virtual
@@ -482,44 +534,44 @@ importers:
version: 0.15.1
devDependencies:
'@angular-devkit/build-angular':
- specifier: ^19.0.0
- version: 19.2.24(@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3))(@angular/compiler@19.2.20)(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.6.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(yaml@2.8.1)
+ specifier: ^20.0.0
+ version: 20.3.32(@angular/compiler-cli@20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.9.3)(vitest@4.1.4(@types/node@24.9.2)(jsdom@27.1.0(supports-color@10.2.2))(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)))(yaml@2.8.1)
'@angular/cli':
- specifier: ^19.0.0
- version: 19.2.24(@types/node@24.9.2)(chokidar@4.0.3)(supports-color@10.2.2)
+ specifier: ^20.0.0
+ version: 20.3.32(@types/node@24.9.2)(chokidar@4.0.3)
'@angular/compiler-cli':
- specifier: ^19.0.0
- version: 19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3)
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
examples/angular/variable:
dependencies:
'@angular/animations':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/common':
- specifier: ^19.0.0
- version: 19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^19.0.0
- version: 19.2.20
+ specifier: ^20.0.0
+ version: 20.3.26
'@angular/core':
- specifier: ^19.0.0
- version: 19.2.20(rxjs@7.8.2)(zone.js@0.15.1)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)
'@angular/forms':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^19.0.0
- version: 19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/platform-browser-dynamic':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@19.2.20)(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))
'@angular/router':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@tanstack/angular-virtual':
specifier: ^5.0.8
version: link:../../../packages/angular-virtual
@@ -534,44 +586,44 @@ importers:
version: 0.15.1
devDependencies:
'@angular-devkit/build-angular':
- specifier: ^19.0.0
- version: 19.2.24(@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3))(@angular/compiler@19.2.20)(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.6.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(yaml@2.8.1)
+ specifier: ^20.0.0
+ version: 20.3.32(@angular/compiler-cli@20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.9.3)(vitest@4.1.4(@types/node@24.9.2)(jsdom@27.1.0(supports-color@10.2.2))(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)))(yaml@2.8.1)
'@angular/cli':
- specifier: ^19.0.0
- version: 19.2.24(@types/node@24.9.2)(chokidar@4.0.3)(supports-color@10.2.2)
+ specifier: ^20.0.0
+ version: 20.3.32(@types/node@24.9.2)(chokidar@4.0.3)
'@angular/compiler-cli':
- specifier: ^19.0.0
- version: 19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3)
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
examples/angular/window:
dependencies:
'@angular/animations':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/common':
- specifier: ^19.0.0
- version: 19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
'@angular/compiler':
- specifier: ^19.0.0
- version: 19.2.20
+ specifier: ^20.0.0
+ version: 20.3.26
'@angular/core':
- specifier: ^19.0.0
- version: 19.2.20(rxjs@7.8.2)(zone.js@0.15.1)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)
'@angular/forms':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@angular/platform-browser':
- specifier: ^19.0.0
- version: 19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/platform-browser-dynamic':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@19.2.20)(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))
'@angular/router':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
'@tanstack/angular-virtual':
specifier: ^5.0.8
version: link:../../../packages/angular-virtual
@@ -586,17 +638,17 @@ importers:
version: 0.15.1
devDependencies:
'@angular-devkit/build-angular':
- specifier: ^19.0.0
- version: 19.2.24(@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3))(@angular/compiler@19.2.20)(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.6.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(yaml@2.8.1)
+ specifier: ^20.0.0
+ version: 20.3.32(@angular/compiler-cli@20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.9.3)(vitest@4.1.4(@types/node@24.9.2)(jsdom@27.1.0(supports-color@10.2.2))(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)))(yaml@2.8.1)
'@angular/cli':
- specifier: ^19.0.0
- version: 19.2.24(@types/node@24.9.2)(chokidar@4.0.3)(supports-color@10.2.2)
+ specifier: ^20.0.0
+ version: 20.3.32(@types/node@24.9.2)(chokidar@4.0.3)
'@angular/compiler-cli':
- specifier: ^19.0.0
- version: 19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3)
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
examples/lit/dynamic:
dependencies:
@@ -617,11 +669,11 @@ importers:
specifier: ^24.5.2
version: 24.9.2
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/lit/fixed:
dependencies:
@@ -642,17 +694,17 @@ importers:
specifier: ^24.5.2
version: 24.9.2
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/marko/dynamic:
dependencies:
'@marko/run':
specifier: ^0.7.0
- version: 0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.25.12)(jiti@2.6.1)(less@4.2.2)(marko@6.1.8)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.25.12)(jiti@2.6.1)(less@4.4.0)(marko@6.1.8)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
'@tanstack/marko-virtual':
specifier: workspace:*
version: link:../../../packages/marko-virtual
@@ -661,17 +713,17 @@ importers:
version: 6.1.8
devDependencies:
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/marko/fixed:
dependencies:
'@marko/run':
specifier: ^0.7.0
- version: 0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.25.12)(jiti@2.6.1)(less@4.2.2)(marko@6.1.8)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.28.1)(jiti@2.6.1)(less@4.4.0)(marko@6.1.8)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
'@tanstack/marko-virtual':
specifier: workspace:*
version: link:../../../packages/marko-virtual
@@ -680,17 +732,17 @@ importers:
version: 6.1.8
devDependencies:
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/marko/grid:
dependencies:
'@marko/run':
specifier: ^0.7.0
- version: 0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.25.12)(jiti@2.6.1)(less@4.2.2)(marko@6.1.8)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.28.1)(jiti@2.6.1)(less@4.4.0)(marko@6.1.8)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
'@tanstack/marko-virtual':
specifier: workspace:*
version: link:../../../packages/marko-virtual
@@ -699,17 +751,17 @@ importers:
version: 6.1.8
devDependencies:
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/marko/infinite-scroll:
dependencies:
'@marko/run':
specifier: ^0.7.0
- version: 0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.25.12)(jiti@2.6.1)(less@4.2.2)(marko@6.1.8)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.28.1)(jiti@2.6.1)(less@4.4.0)(marko@6.1.8)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
'@tanstack/marko-virtual':
specifier: workspace:*
version: link:../../../packages/marko-virtual
@@ -718,17 +770,17 @@ importers:
version: 6.1.8
devDependencies:
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/marko/smooth-scroll:
dependencies:
'@marko/run':
specifier: ^0.7.0
- version: 0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.25.12)(jiti@2.6.1)(less@4.2.2)(marko@6.1.8)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.28.1)(jiti@2.6.1)(less@4.4.0)(marko@6.1.8)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
'@tanstack/marko-virtual':
specifier: workspace:*
version: link:../../../packages/marko-virtual
@@ -737,17 +789,17 @@ importers:
version: 6.1.8
devDependencies:
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/marko/variable:
dependencies:
'@marko/run':
specifier: ^0.7.0
- version: 0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.25.12)(jiti@2.6.1)(less@4.2.2)(marko@6.1.8)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.28.1)(jiti@2.6.1)(less@4.4.0)(marko@6.1.8)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
'@tanstack/marko-virtual':
specifier: workspace:*
version: link:../../../packages/marko-virtual
@@ -756,17 +808,17 @@ importers:
version: 6.1.8
devDependencies:
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/marko/window:
dependencies:
'@marko/run':
specifier: ^0.7.0
- version: 0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.25.12)(jiti@2.6.1)(less@4.2.2)(marko@6.1.8)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.28.1)(jiti@2.6.1)(less@4.4.0)(marko@6.1.8)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
'@tanstack/marko-virtual':
specifier: workspace:*
version: link:../../../packages/marko-virtual
@@ -775,11 +827,11 @@ importers:
version: 6.1.8
devDependencies:
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/react/chat:
dependencies:
@@ -801,13 +853,13 @@ importers:
version: 19.2.3(@types/react@19.2.16)
'@vitejs/plugin-react':
specifier: ^4.5.2
- version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/react/dynamic:
dependencies:
@@ -835,13 +887,13 @@ importers:
version: 19.2.3(@types/react@19.2.16)
'@vitejs/plugin-react':
specifier: ^4.5.2
- version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/react/fixed:
dependencies:
@@ -866,13 +918,13 @@ importers:
version: 19.2.3(@types/react@19.2.16)
'@vitejs/plugin-react':
specifier: ^4.5.2
- version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/react/infinite-scroll:
dependencies:
@@ -897,10 +949,10 @@ importers:
version: 19.2.3(@types/react@19.2.16)
'@vitejs/plugin-react':
specifier: ^4.5.2
- version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/react/padding:
dependencies:
@@ -922,10 +974,10 @@ importers:
version: 19.2.3(@types/react@19.2.16)
'@vitejs/plugin-react':
specifier: ^4.5.2
- version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/react/pretext:
dependencies:
@@ -953,13 +1005,13 @@ importers:
version: 19.2.3(@types/react@19.2.16)
'@vitejs/plugin-react':
specifier: ^4.5.2
- version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/react/scroll-padding:
dependencies:
@@ -984,10 +1036,10 @@ importers:
version: 19.2.3(@types/react@19.2.16)
'@vitejs/plugin-react':
specifier: ^4.5.2
- version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/react/smooth-scroll:
dependencies:
@@ -1009,10 +1061,10 @@ importers:
version: 19.2.3(@types/react@19.2.16)
'@vitejs/plugin-react':
specifier: ^4.5.2
- version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/react/sticky:
dependencies:
@@ -1043,10 +1095,10 @@ importers:
version: 19.2.3(@types/react@19.2.16)
'@vitejs/plugin-react':
specifier: ^4.5.2
- version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/react/table:
dependencies:
@@ -1074,10 +1126,10 @@ importers:
version: 19.2.3(@types/react@19.2.16)
'@vitejs/plugin-react':
specifier: ^4.5.2
- version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/react/variable:
dependencies:
@@ -1099,10 +1151,10 @@ importers:
version: 19.2.3(@types/react@19.2.16)
'@vitejs/plugin-react':
specifier: ^4.5.2
- version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/react/window:
dependencies:
@@ -1127,13 +1179,13 @@ importers:
version: 19.2.3(@types/react@19.2.16)
'@vitejs/plugin-react':
specifier: ^4.5.2
- version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/svelte/dynamic:
dependencies:
@@ -1146,7 +1198,7 @@ importers:
devDependencies:
'@sveltejs/vite-plugin-svelte':
specifier: ^3.1.2
- version: 3.1.2(supports-color@10.2.2)(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 3.1.2(supports-color@10.2.2)(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
'@tsconfig/svelte':
specifier: ^5.0.4
version: 5.0.5
@@ -1155,16 +1207,16 @@ importers:
version: 4.2.20
svelte-check:
specifier: ^4.2.1
- version: 4.3.3(picomatch@4.0.4)(svelte@4.2.20)(typescript@5.6.3)
+ version: 4.3.3(picomatch@4.0.4)(svelte@4.2.20)(typescript@5.9.3)
tslib:
specifier: ^2.8.1
version: 2.8.1
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/svelte/fixed:
dependencies:
@@ -1174,7 +1226,7 @@ importers:
devDependencies:
'@sveltejs/vite-plugin-svelte':
specifier: ^3.1.2
- version: 3.1.2(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 3.1.2(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
'@tsconfig/svelte':
specifier: ^5.0.4
version: 5.0.5
@@ -1183,16 +1235,16 @@ importers:
version: 4.2.20
svelte-check:
specifier: ^4.2.1
- version: 4.3.3(picomatch@4.0.4)(svelte@4.2.20)(typescript@5.6.3)
+ version: 4.3.3(picomatch@4.0.4)(svelte@4.2.20)(typescript@5.9.3)
tslib:
specifier: ^2.8.1
version: 2.8.1
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/svelte/infinite-scroll:
dependencies:
@@ -1205,7 +1257,7 @@ importers:
devDependencies:
'@sveltejs/vite-plugin-svelte':
specifier: ^3.1.2
- version: 3.1.2(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 3.1.2(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
'@tsconfig/svelte':
specifier: ^5.0.4
version: 5.0.5
@@ -1214,16 +1266,16 @@ importers:
version: 4.2.20
svelte-check:
specifier: ^4.2.1
- version: 4.3.3(picomatch@4.0.4)(svelte@4.2.20)(typescript@5.6.3)
+ version: 4.3.3(picomatch@4.0.4)(svelte@4.2.20)(typescript@5.9.3)
tslib:
specifier: ^2.8.1
version: 2.8.1
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/svelte/smooth-scroll:
dependencies:
@@ -1236,7 +1288,7 @@ importers:
devDependencies:
'@sveltejs/vite-plugin-svelte':
specifier: ^3.1.2
- version: 3.1.2(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 3.1.2(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
'@tsconfig/svelte':
specifier: ^5.0.4
version: 5.0.5
@@ -1245,16 +1297,16 @@ importers:
version: 4.2.20
svelte-check:
specifier: ^4.2.1
- version: 4.3.3(picomatch@4.0.4)(svelte@4.2.20)(typescript@5.6.3)
+ version: 4.3.3(picomatch@4.0.4)(svelte@4.2.20)(typescript@5.9.3)
tslib:
specifier: ^2.8.1
version: 2.8.1
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/svelte/sticky:
dependencies:
@@ -1270,7 +1322,7 @@ importers:
devDependencies:
'@sveltejs/vite-plugin-svelte':
specifier: ^3.1.2
- version: 3.1.2(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 3.1.2(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
'@tsconfig/svelte':
specifier: ^5.0.4
version: 5.0.5
@@ -1279,16 +1331,16 @@ importers:
version: 4.2.20
svelte-check:
specifier: ^4.2.1
- version: 4.3.3(picomatch@4.0.4)(svelte@4.2.20)(typescript@5.6.3)
+ version: 4.3.3(picomatch@4.0.4)(svelte@4.2.20)(typescript@5.9.3)
tslib:
specifier: ^2.8.1
version: 2.8.1
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/svelte/table:
dependencies:
@@ -1304,7 +1356,7 @@ importers:
devDependencies:
'@sveltejs/vite-plugin-svelte':
specifier: ^3.1.2
- version: 3.1.2(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 3.1.2(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
'@tsconfig/svelte':
specifier: ^5.0.4
version: 5.0.5
@@ -1313,16 +1365,16 @@ importers:
version: 4.2.20
svelte-check:
specifier: ^4.2.1
- version: 4.3.3(picomatch@4.0.4)(svelte@4.2.20)(typescript@5.6.3)
+ version: 4.3.3(picomatch@4.0.4)(svelte@4.2.20)(typescript@5.9.3)
tslib:
specifier: ^2.8.1
version: 2.8.1
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
examples/vue/dynamic:
dependencies:
@@ -1334,23 +1386,23 @@ importers:
version: link:../../../packages/vue-virtual
vue:
specifier: ^3.5.16
- version: 3.5.22(typescript@5.6.3)
+ version: 3.5.22(typescript@5.9.3)
devDependencies:
'@codesandbox/vue-preview':
specifier: ^0.1.1-alpha.16
version: 0.1.1-alpha.16
'@vitejs/plugin-vue':
specifier: ^5.2.4
- version: 5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.6.3))
+ version: 5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
vue-tsc:
specifier: ^2.2.10
- version: 2.2.12(typescript@5.6.3)
+ version: 2.2.12(typescript@5.9.3)
examples/vue/fixed:
dependencies:
@@ -1359,51 +1411,51 @@ importers:
version: link:../../../packages/vue-virtual
vue:
specifier: ^3.5.16
- version: 3.5.22(typescript@5.6.3)
+ version: 3.5.22(typescript@5.9.3)
devDependencies:
'@codesandbox/vue-preview':
specifier: ^0.1.1-alpha.16
version: 0.1.1-alpha.16
'@vitejs/plugin-vue':
specifier: ^5.2.4
- version: 5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.6.3))
+ version: 5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
vue-tsc:
specifier: ^2.2.10
- version: 2.2.12(typescript@5.6.3)
+ version: 2.2.12(typescript@5.9.3)
examples/vue/infinite-scroll:
dependencies:
'@tanstack/vue-query':
specifier: ^5.80.7
- version: 5.90.5(vue@3.5.22(typescript@5.6.3))
+ version: 5.90.5(vue@3.5.22(typescript@5.9.3))
'@tanstack/vue-virtual':
specifier: ^3.13.32
version: link:../../../packages/vue-virtual
vue:
specifier: ^3.5.16
- version: 3.5.22(typescript@5.6.3)
+ version: 3.5.22(typescript@5.9.3)
devDependencies:
'@codesandbox/vue-preview':
specifier: ^0.1.1-alpha.16
version: 0.1.1-alpha.16
'@vitejs/plugin-vue':
specifier: ^5.2.4
- version: 5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.6.3))
+ version: 5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
vue-tsc:
specifier: ^2.2.10
- version: 2.2.12(typescript@5.6.3)
+ version: 2.2.12(typescript@5.9.3)
examples/vue/padding:
dependencies:
@@ -1412,23 +1464,23 @@ importers:
version: link:../../../packages/vue-virtual
vue:
specifier: ^3.5.16
- version: 3.5.22(typescript@5.6.3)
+ version: 3.5.22(typescript@5.9.3)
devDependencies:
'@codesandbox/vue-preview':
specifier: ^0.1.1-alpha.16
version: 0.1.1-alpha.16
'@vitejs/plugin-vue':
specifier: ^5.2.4
- version: 5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.6.3))
+ version: 5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
vue-tsc:
specifier: ^2.2.10
- version: 2.2.12(typescript@5.6.3)
+ version: 2.2.12(typescript@5.9.3)
examples/vue/scroll-padding:
dependencies:
@@ -1437,26 +1489,26 @@ importers:
version: link:../../../packages/vue-virtual
'@vueuse/core':
specifier: ^12.8.2
- version: 12.8.2(typescript@5.6.3)
+ version: 12.8.2(typescript@5.9.3)
vue:
specifier: ^3.5.16
- version: 3.5.22(typescript@5.6.3)
+ version: 3.5.22(typescript@5.9.3)
devDependencies:
'@codesandbox/vue-preview':
specifier: ^0.1.1-alpha.16
version: 0.1.1-alpha.16
'@vitejs/plugin-vue':
specifier: ^5.2.4
- version: 5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.6.3))
+ version: 5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
vue-tsc:
specifier: ^2.2.10
- version: 2.2.12(typescript@5.6.3)
+ version: 2.2.12(typescript@5.9.3)
examples/vue/smooth-scroll:
dependencies:
@@ -1465,23 +1517,23 @@ importers:
version: link:../../../packages/vue-virtual
vue:
specifier: ^3.5.16
- version: 3.5.22(typescript@5.6.3)
+ version: 3.5.22(typescript@5.9.3)
devDependencies:
'@codesandbox/vue-preview':
specifier: ^0.1.1-alpha.16
version: 0.1.1-alpha.16
'@vitejs/plugin-vue':
specifier: ^5.2.4
- version: 5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.6.3))
+ version: 5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
vue-tsc:
specifier: ^2.2.10
- version: 2.2.12(typescript@5.6.3)
+ version: 2.2.12(typescript@5.9.3)
examples/vue/sticky:
dependencies:
@@ -1496,7 +1548,7 @@ importers:
version: 4.17.21
vue:
specifier: ^3.5.16
- version: 3.5.22(typescript@5.6.3)
+ version: 3.5.22(typescript@5.9.3)
devDependencies:
'@codesandbox/vue-preview':
specifier: ^0.1.1-alpha.16
@@ -1506,16 +1558,16 @@ importers:
version: 4.17.20
'@vitejs/plugin-vue':
specifier: ^5.2.4
- version: 5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.6.3))
+ version: 5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
vue-tsc:
specifier: ^2.2.10
- version: 2.2.12(typescript@5.6.3)
+ version: 2.2.12(typescript@5.9.3)
examples/vue/table:
dependencies:
@@ -1524,29 +1576,29 @@ importers:
version: 8.4.1
'@tanstack/vue-table':
specifier: ^8.21.3
- version: 8.21.3(vue@3.5.22(typescript@5.6.3))
+ version: 8.21.3(vue@3.5.22(typescript@5.9.3))
'@tanstack/vue-virtual':
specifier: ^3.13.32
version: link:../../../packages/vue-virtual
vue:
specifier: ^3.5.16
- version: 3.5.22(typescript@5.6.3)
+ version: 3.5.22(typescript@5.9.3)
devDependencies:
'@codesandbox/vue-preview':
specifier: ^0.1.1-alpha.16
version: 0.1.1-alpha.16
'@vitejs/plugin-vue':
specifier: ^5.2.4
- version: 5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.6.3))
+ version: 5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
vue-tsc:
specifier: ^2.2.10
- version: 2.2.12(typescript@5.6.3)
+ version: 2.2.12(typescript@5.9.3)
examples/vue/variable:
dependencies:
@@ -1555,23 +1607,23 @@ importers:
version: link:../../../packages/vue-virtual
vue:
specifier: ^3.5.16
- version: 3.5.22(typescript@5.6.3)
+ version: 3.5.22(typescript@5.9.3)
devDependencies:
'@codesandbox/vue-preview':
specifier: ^0.1.1-alpha.16
version: 0.1.1-alpha.16
'@vitejs/plugin-vue':
specifier: ^5.2.4
- version: 5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.6.3))
+ version: 5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
vite:
specifier: ^6.4.2
- version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ version: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
vue-tsc:
specifier: ^2.2.10
- version: 2.2.12(typescript@5.6.3)
+ version: 2.2.12(typescript@5.9.3)
packages/angular-virtual:
dependencies:
@@ -1580,32 +1632,32 @@ importers:
version: link:../virtual-core
devDependencies:
'@angular-devkit/build-angular':
- specifier: ^19.0.0
- version: 19.2.24(@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3))(@angular/compiler@19.2.20)(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.6.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(yaml@2.8.1)
+ specifier: ^20.0.0
+ version: 20.3.32(@angular/compiler-cli@20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.9.3)(vitest@4.1.4(@types/node@24.9.2)(jsdom@27.1.0(supports-color@10.2.2))(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)))(yaml@2.8.1)
'@angular/cli':
- specifier: ^19.0.0
- version: 19.2.24(@types/node@24.9.2)(chokidar@4.0.3)(supports-color@10.2.2)
+ specifier: ^20.0.0
+ version: 20.3.32(@types/node@24.9.2)(chokidar@4.0.3)
'@angular/common':
- specifier: ^19.0.0
- version: 19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
'@angular/compiler-cli':
- specifier: ^19.0.0
- version: 19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3)
'@angular/core':
- specifier: ^19.0.0
- version: 19.2.20(rxjs@7.8.2)(zone.js@0.15.1)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)
'@angular/platform-browser':
- specifier: ^19.0.0
- version: 19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
'@angular/router':
- specifier: ^19.0.0
- version: 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
+ specifier: ^20.0.0
+ version: 20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)
tslib:
specifier: ^2.8.1
version: 2.8.1
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.9.3
+ version: 5.9.3
zone.js:
specifier: 0.15.1
version: 0.15.1
@@ -1631,7 +1683,7 @@ importers:
devDependencies:
'@marko/vite':
specifier: ^3.0.0
- version: 3.1.6(@marko/compiler@5.39.65)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 3.1.6(@marko/compiler@5.39.65)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
'@testing-library/dom':
specifier: ^10.0.0
version: 10.4.1
@@ -1656,7 +1708,7 @@ importers:
version: 19.2.3(@types/react@19.2.16)
'@vitejs/plugin-react':
specifier: ^4.5.2
- version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
babel-plugin-react-compiler:
specifier: ^1.0.0
version: 1.0.0
@@ -1681,7 +1733,7 @@ importers:
version: 1.9.10
vite-plugin-solid:
specifier: ^2.11.6
- version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
packages/svelte-virtual:
dependencies:
@@ -1691,10 +1743,10 @@ importers:
devDependencies:
'@sveltejs/package':
specifier: ^2.3.11
- version: 2.5.4(svelte@4.2.20)(typescript@5.6.3)
+ version: 2.5.4(svelte@4.2.20)(typescript@5.9.3)
'@sveltejs/vite-plugin-svelte':
specifier: ^3.1.2
- version: 3.1.2(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ version: 3.1.2(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
svelte:
specifier: ^4.2.20
version: 4.2.20
@@ -1709,10 +1761,10 @@ importers:
devDependencies:
'@vitejs/plugin-vue':
specifier: ^5.2.4
- version: 5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.6.3))
+ version: 5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))
vue:
specifier: ^3.5.16
- version: 3.5.22(typescript@5.6.3)
+ version: 3.5.22(typescript@5.9.3)
packages:
@@ -1722,35 +1774,97 @@ packages:
'@adobe/css-tools@4.4.4':
resolution: {integrity: sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==}
+ '@algolia/abtesting@1.1.0':
+ resolution: {integrity: sha512-sEyWjw28a/9iluA37KLGu8vjxEIlb60uxznfTUmXImy7H5NvbpSO6yYgmgH5KiD7j+zTUUihiST0jEP12IoXow==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/client-abtesting@5.35.0':
+ resolution: {integrity: sha512-uUdHxbfHdoppDVflCHMxRlj49/IllPwwQ2cQ8DLC4LXr3kY96AHBpW0dMyi6ygkn2MtFCc6BxXCzr668ZRhLBQ==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/client-analytics@5.35.0':
+ resolution: {integrity: sha512-SunAgwa9CamLcRCPnPHx1V2uxdQwJGqb1crYrRWktWUdld0+B2KyakNEeVn5lln4VyeNtW17Ia7V7qBWyM/Skw==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/client-common@5.35.0':
+ resolution: {integrity: sha512-ipE0IuvHu/bg7TjT2s+187kz/E3h5ssfTtjpg1LbWMgxlgiaZIgTTbyynM7NfpSJSKsgQvCQxWjGUO51WSCu7w==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/client-insights@5.35.0':
+ resolution: {integrity: sha512-UNbCXcBpqtzUucxExwTSfAe8gknAJ485NfPN6o1ziHm6nnxx97piIbcBQ3edw823Tej2Wxu1C0xBY06KgeZ7gA==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/client-personalization@5.35.0':
+ resolution: {integrity: sha512-/KWjttZ6UCStt4QnWoDAJ12cKlQ+fkpMtyPmBgSS2WThJQdSV/4UWcqCUqGH7YLbwlj3JjNirCu3Y7uRTClxvA==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/client-query-suggestions@5.35.0':
+ resolution: {integrity: sha512-8oCuJCFf/71IYyvQQC+iu4kgViTODbXDk3m7yMctEncRSRV+u2RtDVlpGGfPlJQOrAY7OONwJlSHkmbbm2Kp/w==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/client-search@5.35.0':
+ resolution: {integrity: sha512-FfmdHTrXhIduWyyuko1YTcGLuicVbhUyRjO3HbXE4aP655yKZgdTIfMhZ/V5VY9bHuxv/fGEh3Od1Lvv2ODNTg==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/ingestion@1.35.0':
+ resolution: {integrity: sha512-gPzACem9IL1Co8mM1LKMhzn1aSJmp+Vp434An4C0OBY4uEJRcqsLN3uLBlY+bYvFg8C8ImwM9YRiKczJXRk0XA==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/monitoring@1.35.0':
+ resolution: {integrity: sha512-w9MGFLB6ashI8BGcQoVt7iLgDIJNCn4OIu0Q0giE3M2ItNrssvb8C0xuwJQyTy1OFZnemG0EB1OvXhIHOvQwWw==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/recommend@5.35.0':
+ resolution: {integrity: sha512-AhrVgaaXAb8Ue0u2nuRWwugt0dL5UmRgS9LXe0Hhz493a8KFeZVUE56RGIV3hAa6tHzmAV7eIoqcWTQvxzlJeQ==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/requester-browser-xhr@5.35.0':
+ resolution: {integrity: sha512-diY415KLJZ6x1Kbwl9u96Jsz0OstE3asjXtJ9pmk1d+5gPuQ5jQyEsgC+WmEXzlec3iuVszm8AzNYYaqw6B+Zw==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/requester-fetch@5.35.0':
+ resolution: {integrity: sha512-uydqnSmpAjrgo8bqhE9N1wgcB98psTRRQXcjc4izwMB7yRl9C8uuAQ/5YqRj04U0mMQ+fdu2fcNF6m9+Z1BzDQ==}
+ engines: {node: '>= 14.0.0'}
+
+ '@algolia/requester-node-http@5.35.0':
+ resolution: {integrity: sha512-RgLX78ojYOrThJHrIiPzT4HW3yfQa0D7K+MQ81rhxqaNyNBu4F1r+72LNHYH/Z+y9I1Mrjrd/c/Ue5zfDgAEjQ==}
+ engines: {node: '>= 14.0.0'}
+
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@angular-devkit/architect@0.1902.24':
- resolution: {integrity: sha512-G63tV2EW15xCWfDhFYwLc1MWu2UbY6M+JaRfDr8NxwP9PZJyIkGHA9YUhnx+35x7aNb52sTPDW0uY4ukhOvYFg==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ '@angular-devkit/architect@0.2003.32':
+ resolution: {integrity: sha512-V5d531w97LENARKdYk5Km0F2rt8NPEL3rXUQk7+gbo9r/jgLWn9GU3VHQ30oBWXnU7Vu00Hdp/8yFeYgpWqSow==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- '@angular-devkit/build-angular@19.2.24':
- resolution: {integrity: sha512-foSat36hPfGyrQnKSlvynTWY2HBVc2nEF/Tx3C0Yv+aVmMePBzrONiHs67yXB7C6rrYvrJtQuy+nAPvEOBV/0A==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ '@angular-devkit/build-angular@20.3.32':
+ resolution: {integrity: sha512-1prN/HmTkL2TTd4zoNz/fFOds9eUc78winkjvBRxTL+OuUQMIeWIjpUui53mk2qdeW9ImiITcqCQVpZL95fLvQ==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
- '@angular/compiler-cli': ^19.0.0 || ^19.2.0-next.0
- '@angular/localize': ^19.0.0 || ^19.2.0-next.0
- '@angular/platform-server': ^19.0.0 || ^19.2.0-next.0
- '@angular/service-worker': ^19.0.0 || ^19.2.0-next.0
- '@angular/ssr': ^19.2.24
+ '@angular/compiler-cli': ^20.0.0
+ '@angular/core': ^20.0.0
+ '@angular/localize': ^20.0.0
+ '@angular/platform-browser': ^20.0.0
+ '@angular/platform-server': ^20.0.0
+ '@angular/service-worker': ^20.0.0
+ '@angular/ssr': ^20.3.32
'@web/test-runner': ^0.20.0
browser-sync: ^3.0.2
- jest: ^29.5.0
- jest-environment-jsdom: ^29.5.0
+ jest: ^29.5.0 || ^30.2.0
+ jest-environment-jsdom: ^29.5.0 || ^30.2.0
karma: ^6.3.0
- ng-packagr: ^19.0.0 || ^19.2.0-next.0
+ ng-packagr: ^20.0.0
protractor: ^7.0.0
tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0
- typescript: '>=5.5 <5.9'
+ typescript: '>=5.8 <6.0'
peerDependenciesMeta:
+ '@angular/core':
+ optional: true
'@angular/localize':
optional: true
+ '@angular/platform-browser':
+ optional: true
'@angular/platform-server':
optional: true
'@angular/service-worker':
@@ -1774,52 +1888,59 @@ packages:
tailwindcss:
optional: true
- '@angular-devkit/build-webpack@0.1902.24':
- resolution: {integrity: sha512-txDA1cbmsD5+mcw74JCh0UiSZQKQzcDalkqPYpSA+9/uFGUSULSonlyCmg5UpyrpiOzM5ACI/++qJ1g52TqWWA==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ '@angular-devkit/build-webpack@0.2003.32':
+ resolution: {integrity: sha512-dFyM5Qkgl6wgSb8EJF8uZCt9K+VUsDP8APS5siCNHyhjzjACqDevk5RwqWCfPU/QjzlgCp11MbkKr/Y2sgaDcw==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
webpack: ^5.30.0
webpack-dev-server: ^5.0.2
- '@angular-devkit/core@19.2.24':
- resolution: {integrity: sha512-Kd49warf6U/EyWe5BszF/eebN3zQ3bk7tgfEljAw8q/rX95UUtriJubWvp6pgzHfzBA4jwq8f+QiNZB8eBEXPA==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ '@angular-devkit/core@20.3.32':
+ resolution: {integrity: sha512-pXipSsYP/XTEAljmwqgy1u3GR/ZzSMg1FERINekGT61Th1pGhzjs02rPgbyftqz2e5/tfQ6XgTP7xYzm3+S35Q==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
chokidar: ^4.0.0
peerDependenciesMeta:
chokidar:
optional: true
- '@angular-devkit/schematics@19.2.24':
- resolution: {integrity: sha512-lnw+ZM1Io+cJAkReC0NPDjqObL8NtKzKIkdgEEKC8CUmkhurYhedbicN8Y8NYHgG1uLd2GozW3+/QqPRZaN+Lw==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ '@angular-devkit/schematics@20.3.32':
+ resolution: {integrity: sha512-UxWncmJTcYMDEaAKRi3QHU3qXivIcIOulFOKozW8svfs/A43Oq1GG4kvDZ+WVf/w2UWTmMaSlfFa4KIQciSIDA==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- '@angular/animations@19.2.20':
- resolution: {integrity: sha512-TQ4OCazTRAge45FIp3bzO/chImObmasPzprgEzKSDckjGbshAWlYXeCe3U8YaGNaWnkzByyIRNV4P4aHe63M0w==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ '@angular/animations@20.3.26':
+ resolution: {integrity: sha512-hfNrX19v8xs/usNkELSqc6q5IwBfS2GGW8sQ4OMpxAmLZDJwaLUxkj48t8VYhUFezsIfzR+sDEi6ZQBOaMIYug==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
- '@angular/common': 19.2.20
- '@angular/core': 19.2.20
+ '@angular/core': 20.3.26
- '@angular/build@19.2.24':
- resolution: {integrity: sha512-/Z6Ka0+xpmSXz5KHP94iRO5R1ZwbcJfj7Q7k/d6QH5Wk8rVFIoI/3a9nmLewjR/CxW8QaiziPYQpG1ezRgj9hQ==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ '@angular/build@20.3.32':
+ resolution: {integrity: sha512-ph/qcT6C7RYriU5dxXfNrYBEvCwU4acxTNoxkdGQHYxM7iOKT0K1YO6v5JBNRZ1S4LOJhWmGaWzJ+sRei0iGsQ==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
- '@angular/compiler': ^19.0.0 || ^19.2.0-next.0
- '@angular/compiler-cli': ^19.0.0 || ^19.2.0-next.0
- '@angular/localize': ^19.0.0 || ^19.2.0-next.0
- '@angular/platform-server': ^19.0.0 || ^19.2.0-next.0
- '@angular/service-worker': ^19.0.0 || ^19.2.0-next.0
- '@angular/ssr': ^19.2.24
+ '@angular/compiler': ^20.0.0
+ '@angular/compiler-cli': ^20.0.0
+ '@angular/core': ^20.0.0
+ '@angular/localize': ^20.0.0
+ '@angular/platform-browser': ^20.0.0
+ '@angular/platform-server': ^20.0.0
+ '@angular/service-worker': ^20.0.0
+ '@angular/ssr': ^20.3.32
karma: ^6.4.0
less: ^4.2.0
- ng-packagr: ^19.0.0 || ^19.2.0-next.0
+ ng-packagr: ^20.0.0
postcss: ^8.4.0
tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0
- typescript: '>=5.5 <5.9'
+ tslib: ^2.3.0
+ typescript: '>=5.8 <6.0'
+ vitest: ^3.1.1
peerDependenciesMeta:
+ '@angular/core':
+ optional: true
'@angular/localize':
optional: true
+ '@angular/platform-browser':
+ optional: true
'@angular/platform-server':
optional: true
'@angular/service-worker':
@@ -1836,74 +1957,85 @@ packages:
optional: true
tailwindcss:
optional: true
+ vitest:
+ optional: true
- '@angular/cli@19.2.24':
- resolution: {integrity: sha512-HjU4r/Va9w868fKVeUNOgkHBVDQc2VFHWxj0I3WekGhYN3dlfTVNn0/3dNutkBBuCxxTb9Xl6E6wf6KrlA9wcQ==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ '@angular/cli@20.3.32':
+ resolution: {integrity: sha512-WIMbTrEJYVVz4Phs8nn6yK/bzCSt1dDlxtAEnS2melTWXKGF6WK/OqVaH0+Cox0SNagA81dvvSbGlFYCxncYfQ==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
hasBin: true
- '@angular/common@19.2.20':
- resolution: {integrity: sha512-1M3W3FjUUbVKXDMs+yQpBhnkD/pCe0Jn79rPE5W+EGWWxFoLSyGX+fhnRO5m4c9k66p3nvYrikWQ0ZzMv3M5tw==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ '@angular/common@20.3.26':
+ resolution: {integrity: sha512-35+aHaCmldFZ2qFiH83+cHcDXwUqSEuUR5DVApcd+Ku8PfIIGo8uMiD5++Qq7QIUTbZCD2glAiE9jLroGrf1Cw==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
- '@angular/core': 19.2.20
+ '@angular/core': 20.3.26
rxjs: ^6.5.3 || ^7.4.0
- '@angular/compiler-cli@19.2.20':
- resolution: {integrity: sha512-tYYQk8AUz2sEkVl0a3uebduDUXPuKiGEKl2Jryrbn0xh9i1EsxoCjt1VvHnGnksGp3mz4DQihFVEnte0KeVQ5g==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ '@angular/compiler-cli@20.3.26':
+ resolution: {integrity: sha512-3rHtC87ecldvaiFHwQEZ6Wx3QaZ/Q7b0Gb7XORDOjn/M+5CYZ4rQsvbxE5TUjwreg07oQ4Y2h8ADESXTJEUYOQ==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
hasBin: true
peerDependencies:
- '@angular/compiler': 19.2.20
- typescript: '>=5.5 <5.9'
+ '@angular/compiler': 20.3.26
+ typescript: '>=5.8 <6.0'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- '@angular/compiler@19.2.20':
- resolution: {integrity: sha512-LvjE8W58EACgTFaAoqmNe7FRsbvoQ0GvCB/rmm6AEMWx/0W/JBvWkQTrOQlwpoeYOHcMZRGdmPcZoUDwU3JySQ==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ '@angular/compiler@20.3.26':
+ resolution: {integrity: sha512-H4DVTBCiyM4dGytFi2C8sMGflxXzPnoQ6Ajfs4hJ/Dekg6ypfvW5Ze7BDh4TaMQvaX2joM5LhBYW5jTxBx66hA==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
- '@angular/core@19.2.20':
- resolution: {integrity: sha512-pxzQh8ouqfE57lJlXjIzXFuRETwkfMVwS+NFCfv2yh01Qtx+vymO8ZClcJMgLPfBYinhBYX+hrRYVSa1nzlkRQ==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ '@angular/core@20.3.26':
+ resolution: {integrity: sha512-v+YtZ9eQVDb6v3V1TbUUBHU63FEp8Hqqqb3UhM4MLAOm0chyyh9jah7FiHr3HbCKrV1f4long1coftFK/KThog==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
+ '@angular/compiler': 20.3.26
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.15.0
+ peerDependenciesMeta:
+ '@angular/compiler':
+ optional: true
+ zone.js:
+ optional: true
- '@angular/forms@19.2.20':
- resolution: {integrity: sha512-agi7InbMzop1jrud6L7SlNwnZk3iNolORcFIwBQMvKxLkcJ+ttbSYuM0KAw56IundWHf4dL9GP4cSygm4kUeFA==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ '@angular/forms@20.3.26':
+ resolution: {integrity: sha512-ia0YaPVjlG2oBFKCfaAgqQ0jGRrhGTAcrbZG3tVeFDpi7LQ6WdP3Syw2H+0D3GPyzpl/5UqU10Fum5Wr1br4QQ==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
- '@angular/common': 19.2.20
- '@angular/core': 19.2.20
- '@angular/platform-browser': 19.2.20
+ '@angular/common': 20.3.26
+ '@angular/core': 20.3.26
+ '@angular/platform-browser': 20.3.26
rxjs: ^6.5.3 || ^7.4.0
- '@angular/platform-browser-dynamic@19.2.20':
- resolution: {integrity: sha512-bNuykQy/MrDeARqvDPf6bqx+m1Qqanep7FhDy9QYWxfqz7D++/phqT9l8Ubj88juFCSDfR5ktUWdpnDz3/BCfA==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ '@angular/platform-browser-dynamic@20.3.26':
+ resolution: {integrity: sha512-/9eq0GGmtMoBV5UvcjvhnV4ZDcgZr15h+dzoxkZodUncb2z7fxybSyha7wWD9aTeabZ/q/KYVUSnoYqVyBhbVQ==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
- '@angular/common': 19.2.20
- '@angular/compiler': 19.2.20
- '@angular/core': 19.2.20
- '@angular/platform-browser': 19.2.20
-
- '@angular/platform-browser@19.2.20':
- resolution: {integrity: sha512-O9ZoQKILPC1T2c64OASS75XlOLBxY81m5AAgsBKhwiFWq+V28RsO0cnwpi1YSh/z4ryH8Fe7IUFz8jGrsJi3hQ==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ '@angular/common': 20.3.26
+ '@angular/compiler': 20.3.26
+ '@angular/core': 20.3.26
+ '@angular/platform-browser': 20.3.26
+
+ '@angular/platform-browser@20.3.26':
+ resolution: {integrity: sha512-In4wUiLUUT9LqyV9Rjz78k/dsnKAwec4AtDmwZoX8/ZmeJOSH7g5X1gTM+hxTxmifmZkrapQjXR299IcfIkzrw==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
- '@angular/animations': 19.2.20
- '@angular/common': 19.2.20
- '@angular/core': 19.2.20
+ '@angular/animations': 20.3.26
+ '@angular/common': 20.3.26
+ '@angular/core': 20.3.26
peerDependenciesMeta:
'@angular/animations':
optional: true
- '@angular/router@19.2.20':
- resolution: {integrity: sha512-y0fyKycxJHr82kxXKE50Vac5hPn5Kx3gw9CfqyEuwJ9VQzEixDljU+chrQK4Wods14jJn9Tt2ncNPGH1rLya3Q==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
+ '@angular/router@20.3.26':
+ resolution: {integrity: sha512-q0k0b5uuQx93Trk4qEMYe8LoPOozheRBIjze51q+LUTlLXWik4W0ughXLiTJL346KRudR/vB5ksfZP8b6WlQyA==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
- '@angular/common': 19.2.20
- '@angular/core': 19.2.20
- '@angular/platform-browser': 19.2.20
+ '@angular/common': 20.3.26
+ '@angular/core': 20.3.26
+ '@angular/platform-browser': 20.3.26
rxjs: ^6.5.3 || ^7.4.0
'@asamuzakjp/css-color@4.0.5':
@@ -1915,40 +2047,36 @@ packages:
'@asamuzakjp/nwsapi@2.3.9':
resolution: {integrity: sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q==}
- '@babel/code-frame@7.27.1':
- resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
- engines: {node: '>=6.9.0'}
-
'@babel/code-frame@7.29.0':
resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.28.5':
- resolution: {integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==}
+ '@babel/code-frame@7.29.7':
+ resolution: {integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.26.10':
- resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==}
+ '@babel/compat-data@7.28.5':
+ resolution: {integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.26.9':
- resolution: {integrity: sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==}
+ '@babel/compat-data@7.29.7':
+ resolution: {integrity: sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==}
engines: {node: '>=6.9.0'}
'@babel/core@7.28.5':
resolution: {integrity: sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.26.10':
- resolution: {integrity: sha512-rRHT8siFIXQrAYOYqZQVsAr8vJ+cBNqcVAY6m5V8/4QqzaPl+zDBe6cLEPRDuNOUf3ww8RfJVlOyQMoSI+5Ang==}
+ '@babel/core@7.29.7':
+ resolution: {integrity: sha512-RgHBCvtjbOK2gXSNBNIkNoEc9qoVEtau3hj8gEqKQuL3HZAibKarWFEI3Lfm6EYKkLalOh8eSrj9b+ch9H/VBA==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.28.5':
- resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
+ '@babel/generator@7.28.3':
+ resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-annotate-as-pure@7.25.9':
- resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
+ '@babel/generator@7.29.7':
+ resolution: {integrity: sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.27.3':
@@ -1959,6 +2087,10 @@ packages:
resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-compilation-targets@7.29.7':
+ resolution: {integrity: sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-create-class-features-plugin@7.28.5':
resolution: {integrity: sha512-q3WC4JfdODypvxArsJQROfupPBq9+lMwjKq7C33GhbFYJsufD0yd/ziwD+hJucLeWsnFPWZjsU2DNFqBPE7jwQ==}
engines: {node: '>=6.9.0'}
@@ -1980,6 +2112,10 @@ packages:
resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-globals@7.29.7':
+ resolution: {integrity: sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-member-expression-to-functions@7.28.5':
resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==}
engines: {node: '>=6.9.0'}
@@ -1992,12 +2128,22 @@ packages:
resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-module-imports@7.29.7':
+ resolution: {integrity: sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-module-transforms@7.28.3':
resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-module-transforms@7.29.7':
+ resolution: {integrity: sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-optimise-call-expression@7.27.1':
resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
engines: {node: '>=6.9.0'}
@@ -2006,6 +2152,10 @@ packages:
resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-plugin-utils@7.29.7':
+ resolution: {integrity: sha512-G7sHYigPY17oO5SYWnfD/0MTBwVR781S/JI643e/JhUYgVgWE/61SoW3NH9KWUKyKq5LVh3npif99Wkt6j86Jw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-remap-async-to-generator@7.27.1':
resolution: {integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==}
engines: {node: '>=6.9.0'}
@@ -2030,14 +2180,26 @@ packages:
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-string-parser@7.29.7':
+ resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-validator-identifier@7.28.5':
resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-identifier@7.29.7':
+ resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-validator-option@7.27.1':
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-option@7.29.7':
+ resolution: {integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-wrap-function@7.28.3':
resolution: {integrity: sha512-zdf983tNfLZFletc0RRXYrHrucBEg95NIFMkn6K9dbeMYnsgHaSBGcQqdsCSStG2PYwRre0Qc2NNSCXbG+xc6g==}
engines: {node: '>=6.9.0'}
@@ -2046,11 +2208,20 @@ packages:
resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
engines: {node: '>=6.9.0'}
+ '@babel/helpers@7.29.7':
+ resolution: {integrity: sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/parser@7.28.5':
resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==}
engines: {node: '>=6.0.0'}
hasBin: true
+ '@babel/parser@7.29.7':
+ resolution: {integrity: sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5':
resolution: {integrity: sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==}
engines: {node: '>=6.9.0'}
@@ -2093,12 +2264,6 @@ packages:
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'}
@@ -2123,14 +2288,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-generator-functions@7.26.8':
- resolution: {integrity: sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==}
+ '@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==}
+ '@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
@@ -2171,8 +2336,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.28.5':
- resolution: {integrity: sha512-Kl9Bc6D0zTUcFUvkNuQh4eGXPKKNDOJQXVyyM4ZAQPMveniJdxi8XMJwLo+xSoW3MIq81bD33lcUe9kZpl0MCw==}
+ '@babel/plugin-transform-destructuring@7.29.7':
+ resolution: {integrity: sha512-iPX8aD6H9zV5s7ZsqTdNocPN/MGQ5sSMnElKrktxjJRMnB2jN/1p2+R7GkfD6CAYoVFqy5A4XnSIUeGgJzIWpg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2201,6 +2366,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-explicit-resource-management@7.29.7':
+ resolution: {integrity: sha512-Rstj7coNz8sE+7Ju7ihpHLI564lsK5pUpNNlvptCIC/16E/S5hbl6n3kESPKdNRmqEWlpn5xpS5Q2dvXBsySLw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-exponentiation-operator@7.28.5':
resolution: {integrity: sha512-D4WIMaFtwa2NizOp+dnoFjRez/ClKiC2BqqImwKd1X28nqBtZEyCYJ2ozQrrzlxAFrcrjxo39S6khe9RNDlGzw==}
engines: {node: '>=6.9.0'}
@@ -2375,8 +2546,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-runtime@7.26.10':
- resolution: {integrity: sha512-NWaL2qG6HRpONTnj4JvDU6th4jYeZOJgu3QhmFTCihib0ermtOJqktA5BduGm3suhhVe9EMP9c9+mfJ/I9slqw==}
+ '@babel/plugin-transform-runtime@7.28.3':
+ resolution: {integrity: sha512-Y6ab1kGqZ0u42Zv/4a7l0l72n9DKP/MKoKWaUSBylrhNZO2prYuqFOLbn5aW5SIFXwSH93yfjbgllL8lxuGKLg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2435,8 +2606,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/preset-env@7.26.9':
- resolution: {integrity: sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ==}
+ '@babel/preset-env@7.28.3':
+ resolution: {integrity: sha512-ROiDcM+GbYVPYBOeCR6uBXKkQpBExLl8k9HO1ygXEyds39j+vCCsjmj7S8GOniZQlEs81QlkdJZe76IpLSiqpg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2446,8 +2617,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- '@babel/runtime@7.26.10':
- resolution: {integrity: sha512-2WJMeRQPHKSPemqk/awGrAiuFfzBmOIPXKizAsVhWH9YJqLZ0H+HS4c8loHGgW6utJ3E/ejXQUsiGaQy2NZ9Fw==}
+ '@babel/runtime@7.28.3':
+ resolution: {integrity: sha512-9uIQ10o0WGdpP6GDhXcdOJPJuDgFtIDtN/9+ArJQ2NAfAmiuhTQdzkaTGR33v43GYS2UrSA0eX2pPPHoFVvpxA==}
engines: {node: '>=6.9.0'}
'@babel/runtime@7.28.4':
@@ -2458,14 +2629,26 @@ packages:
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
engines: {node: '>=6.9.0'}
+ '@babel/template@7.29.7':
+ resolution: {integrity: sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/traverse@7.28.5':
resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
engines: {node: '>=6.9.0'}
+ '@babel/traverse@7.29.7':
+ resolution: {integrity: sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/types@7.28.5':
resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==}
engines: {node: '>=6.9.0'}
+ '@babel/types@7.29.7':
+ resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==}
+ engines: {node: '>=6.9.0'}
+
'@changesets/apply-release-plan@7.1.0':
resolution: {integrity: sha512-yq8ML3YS7koKQ/9bk1PqO0HMzApIFNwjlwCnwFEXMzNe8NpzeeYYKCmnhWJGkN8g7E51MnWaSbqRcTcdIxUgnQ==}
@@ -2593,8 +2776,8 @@ packages:
cpu: [ppc64]
os: [aix]
- '@esbuild/aix-ppc64@0.25.4':
- resolution: {integrity: sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q==}
+ '@esbuild/aix-ppc64@0.28.1':
+ resolution: {integrity: sha512-Svl7tq8k/08+p6CXPpRjQ1fKX+1odH/BQbb48fV6fj3CWHhsoIOoY87w1oHXm0qEpkIK3ZfVgp0hed3XBXzXMQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
@@ -2605,8 +2788,8 @@ packages:
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.25.4':
- resolution: {integrity: sha512-bBy69pgfhMGtCnwpC/x5QhfxAz/cBgQ9enbtwjf6V9lnPI/hMyT9iWpR1arm0l3kttTr4L0KSLpKmLp/ilKS9A==}
+ '@esbuild/android-arm64@0.28.1':
+ resolution: {integrity: sha512-34EGEbCIAgosYz6goLcopX6Mo7NyGv9tfwEM2/7Ce2VcVRk568iSvniGWcUXIy7wEDR1wzolcxcriFVrWYcwBg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
@@ -2617,8 +2800,8 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.25.4':
- resolution: {integrity: sha512-QNdQEps7DfFwE3hXiU4BZeOV68HHzYwGd0Nthhd3uCkkEKK7/R6MTgM0P7H7FAs5pU/DIWsviMmEGxEoxIZ+ZQ==}
+ '@esbuild/android-arm@0.28.1':
+ resolution: {integrity: sha512-0k2F129Xdio1TdJfzJ8sy1Q47vUD2NnwdhiAf7drUN1EBTfPf4hsFCtmMgu/6m8JSzsBrlmVjudMBQqOfG8usQ==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
@@ -2629,8 +2812,8 @@ packages:
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.25.4':
- resolution: {integrity: sha512-TVhdVtQIFuVpIIR282btcGC2oGQoSfZfmBdTip2anCaVYcqWlZXGcdcKIUklfX2wj0JklNYgz39OBqh2cqXvcQ==}
+ '@esbuild/android-x64@0.28.1':
+ resolution: {integrity: sha512-dbwY7ltSMDWsRatcRpCnES4F+im88OCUgGZjy52shC7GqHRE/cYlxNbB4Z4UpJswpcc4Qxd2oE/ufM0p61IKng==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
@@ -2641,8 +2824,8 @@ packages:
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.25.4':
- resolution: {integrity: sha512-Y1giCfM4nlHDWEfSckMzeWNdQS31BQGs9/rouw6Ub91tkK79aIMTH3q9xHvzH8d0wDru5Ci0kWB8b3up/nl16g==}
+ '@esbuild/darwin-arm64@0.28.1':
+ resolution: {integrity: sha512-TZbWkQY7kvTAXbXUT7uVACR5cMHsDiSz9z7ZKAX/RTq/WJEk3QyRr0wZpNhBDX+/0CtdqUIJlOiodQcta6tY3Q==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
@@ -2653,8 +2836,8 @@ packages:
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.25.4':
- resolution: {integrity: sha512-CJsry8ZGM5VFVeyUYB3cdKpd/H69PYez4eJh1W/t38vzutdjEjtP7hB6eLKBoOdxcAlCtEYHzQ/PJ/oU9I4u0A==}
+ '@esbuild/darwin-x64@0.28.1':
+ resolution: {integrity: sha512-zfdzgK9ACBNZLI/CyHTOx81SyNbM6YXn7rxSgX97VjyiPl9W1i4Ka4fgKECEoFCKGpvBj5qArWIGgQjOwkgskQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
@@ -2665,8 +2848,8 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.25.4':
- resolution: {integrity: sha512-yYq+39NlTRzU2XmoPW4l5Ifpl9fqSk0nAJYM/V/WUGPEFfek1epLHJIkTQM6bBs1swApjO5nWgvr843g6TjxuQ==}
+ '@esbuild/freebsd-arm64@0.28.1':
+ resolution: {integrity: sha512-wG2EA8ENdEI0qhkSZMjfqrdY+ziCYCPMmtZjjIwOmXFjmyzEHn+UUxk5of+SYsjtfs3VpnlC7QLzSI5hY/rOAw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
@@ -2677,8 +2860,8 @@ packages:
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.25.4':
- resolution: {integrity: sha512-0FgvOJ6UUMflsHSPLzdfDnnBBVoCDtBTVyn/MrWloUNvq/5SFmh13l3dvgRPkDihRxb77Y17MbqbCAa2strMQQ==}
+ '@esbuild/freebsd-x64@0.28.1':
+ resolution: {integrity: sha512-i7dZ9vQgnvSCzi/rYCXNgtF/U+eKZNJBzu3eTQbRgHnM7tNSizLOkRFAl3qzVc/Op/u5YkHHa4pf/3DOYHthLQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
@@ -2689,8 +2872,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.25.4':
- resolution: {integrity: sha512-+89UsQTfXdmjIvZS6nUnOOLoXnkUTB9hR5QAeLrQdzOSWZvNSAXAtcRDHWtqAUtAmv7ZM1WPOOeSxDzzzMogiQ==}
+ '@esbuild/linux-arm64@0.28.1':
+ resolution: {integrity: sha512-yHs+0uc8+nvEAfAfxrWQKK5peSNzBc4PegcMO0EJ2hT71uA7vB8Ihg2e77R2P7SG5uYjPbHlLLmve4LLLRCf0g==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
@@ -2701,8 +2884,8 @@ packages:
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.25.4':
- resolution: {integrity: sha512-kro4c0P85GMfFYqW4TWOpvmF8rFShbWGnrLqlzp4X1TNWjRY3JMYUfDCtOxPKOIY8B0WC8HN51hGP4I4hz4AaQ==}
+ '@esbuild/linux-arm@0.28.1':
+ resolution: {integrity: sha512-qVXBOHQS+d5Y722GwJzJUtOLlX7km3CraOaGormF1pDtPd2C/l1SHRPgjLunLGe51Sh5YYWKMFDyV4SxgMQYTQ==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
@@ -2713,8 +2896,8 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-ia32@0.25.4':
- resolution: {integrity: sha512-yTEjoapy8UP3rv8dB0ip3AfMpRbyhSN3+hY8mo/i4QXFeDxmiYbEKp3ZRjBKcOP862Ua4b1PDfwlvbuwY7hIGQ==}
+ '@esbuild/linux-ia32@0.28.1':
+ resolution: {integrity: sha512-d1z4ZuP0ajrfz/FhGT4vv278rX8KnPPJx8i5+AtK7TYbx9Le9F1hyzurZpkEyjkGa9dUGhQow4C1NmeGvqxN2w==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
@@ -2725,8 +2908,8 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.25.4':
- resolution: {integrity: sha512-NeqqYkrcGzFwi6CGRGNMOjWGGSYOpqwCjS9fvaUlX5s3zwOtn1qwg1s2iE2svBe4Q/YOG1q6875lcAoQK/F4VA==}
+ '@esbuild/linux-loong64@0.28.1':
+ resolution: {integrity: sha512-M5sRjUVZrkm1OAPR3dlOYzNmN+loZKGVi1VUQGrwuqLcbR6qeAz+famMhjASeH3YVKvZz+zT1jlh/keC3Rj/lg==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
@@ -2737,8 +2920,8 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.25.4':
- resolution: {integrity: sha512-IcvTlF9dtLrfL/M8WgNI/qJYBENP3ekgsHbYUIzEzq5XJzzVEV/fXY9WFPfEEXmu3ck2qJP8LG/p3Q8f7Zc2Xg==}
+ '@esbuild/linux-mips64el@0.28.1':
+ resolution: {integrity: sha512-mRObBZeHh2OxcBFPWE/FjylkRgZdYuiTR3vaTozquCGOH14iP9oN4x4Ge81CoIDYQrXmIxpFumJBu5MtZpnQJQ==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
@@ -2749,8 +2932,8 @@ packages:
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.25.4':
- resolution: {integrity: sha512-HOy0aLTJTVtoTeGZh4HSXaO6M95qu4k5lJcH4gxv56iaycfz1S8GO/5Jh6X4Y1YiI0h7cRyLi+HixMR+88swag==}
+ '@esbuild/linux-ppc64@0.28.1':
+ resolution: {integrity: sha512-slScBsMAb3GFDcdrCgLwZtPYRoH2H/youv10QiZyRjmsP48fznoveWytSgCI/R0ZcUgpc0ZhIUEx6LHts8yrfQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
@@ -2761,8 +2944,8 @@ packages:
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.25.4':
- resolution: {integrity: sha512-i8JUDAufpz9jOzo4yIShCTcXzS07vEgWzyX3NH2G7LEFVgrLEhjwL3ajFE4fZI3I4ZgiM7JH3GQ7ReObROvSUA==}
+ '@esbuild/linux-riscv64@0.28.1':
+ resolution: {integrity: sha512-kw0owk1o0GFETUJyW0jc0G4Yzs0BHZn0JDZ8JRT088vjJYX777BAs1fDGxAC+q831qOs2DTC96mNsG2opdfyyQ==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
@@ -2773,8 +2956,8 @@ packages:
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.25.4':
- resolution: {integrity: sha512-jFnu+6UbLlzIjPQpWCNh5QtrcNfMLjgIavnwPQAfoGx4q17ocOU9MsQ2QVvFxwQoWpZT8DvTLooTvmOQXkO51g==}
+ '@esbuild/linux-s390x@0.28.1':
+ resolution: {integrity: sha512-/lAIjX8aYFRByhh6L5rYtPEDRqa9de/4V/juOXcta5frjvzXO4/sqEtyytse0g3zZFuWu5cDN0MkLz2qRDD2Ag==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
@@ -2785,8 +2968,8 @@ packages:
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.25.4':
- resolution: {integrity: sha512-6e0cvXwzOnVWJHq+mskP8DNSrKBr1bULBvnFLpc1KY+d+irZSgZ02TGse5FsafKS5jg2e4pbvK6TPXaF/A6+CA==}
+ '@esbuild/linux-x64@0.28.1':
+ resolution: {integrity: sha512-u/anNYF2mmVOEDwLtnQ1wOr3EZ9sTNGLWrsYGYwHWzGA3Si84IOkHXlbWTD1NB+9/1lcnweYKO54uhxZydNzfA==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
@@ -2797,8 +2980,8 @@ packages:
cpu: [arm64]
os: [netbsd]
- '@esbuild/netbsd-arm64@0.25.4':
- resolution: {integrity: sha512-vUnkBYxZW4hL/ie91hSqaSNjulOnYXE1VSLusnvHg2u3jewJBz3YzB9+oCw8DABeVqZGg94t9tyZFoHma8gWZQ==}
+ '@esbuild/netbsd-arm64@0.28.1':
+ resolution: {integrity: sha512-oks0DYbLwWMmaakTsCb+zL4E+aHRVLom9IJZOAthMQEPiQmydXHkziYEsGYRx0uNV/IjEKGAV941JzH02pflqw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
@@ -2809,8 +2992,8 @@ packages:
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.25.4':
- resolution: {integrity: sha512-XAg8pIQn5CzhOB8odIcAm42QsOfa98SBeKUdo4xa8OvX8LbMZqEtgeWE9P/Wxt7MlG2QqvjGths+nq48TrUiKw==}
+ '@esbuild/netbsd-x64@0.28.1':
+ resolution: {integrity: sha512-aeL6lAnN89Hz43Mlh1G8ARasbuoYvSITDEx0tHh5b7jJnHcssqgjy9Yx430GDpmCa6OyrKoS0aNRjKundRizGg==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
@@ -2821,8 +3004,8 @@ packages:
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-arm64@0.25.4':
- resolution: {integrity: sha512-Ct2WcFEANlFDtp1nVAXSNBPDxyU+j7+tId//iHXU2f/lN5AmO4zLyhDcpR5Cz1r08mVxzt3Jpyt4PmXQ1O6+7A==}
+ '@esbuild/openbsd-arm64@0.28.1':
+ resolution: {integrity: sha512-MEFJe5C3R8pwXdZ5Y21oo6m7ePiS0d9pWucn99O/wvyJZChoIQKrQDxKrGeW8F5+T0okTHesAmDeiHDTIq0V/Q==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
@@ -2833,8 +3016,8 @@ packages:
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.25.4':
- resolution: {integrity: sha512-xAGGhyOQ9Otm1Xu8NT1ifGLnA6M3sJxZ6ixylb+vIUVzvvd6GOALpwQrYrtlPouMqd/vSbgehz6HaVk4+7Afhw==}
+ '@esbuild/openbsd-x64@0.28.1':
+ resolution: {integrity: sha512-i/ZLIOafE0Z8cI/XANJAixoJL/uRAoS2xOA3rb0xN+KK0K177cMAsQYkzHtBrtMXAKuAc7HGgcWiZ/sRC1Nxgw==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
@@ -2845,14 +3028,20 @@ packages:
cpu: [arm64]
os: [openharmony]
+ '@esbuild/openharmony-arm64@0.28.1':
+ resolution: {integrity: sha512-ge+Z7EXFNt2BO1oAMsVpiQ8EwndV9i1xXerAeTIK7AtPs3bKFXQM7nlRxDSIUIMeueR1CNXxqztLzdNeReKBJg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openharmony]
+
'@esbuild/sunos-x64@0.25.12':
resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
- '@esbuild/sunos-x64@0.25.4':
- resolution: {integrity: sha512-Mw+tzy4pp6wZEK0+Lwr76pWLjrtjmJyUB23tHKqEDP74R3q95luY/bXqXZeYl4NYlvwOqoRKlInQialgCKy67Q==}
+ '@esbuild/sunos-x64@0.28.1':
+ resolution: {integrity: sha512-BEjgtECkL3vY+SaSQ6nzVfiALUeFxpawyp8Jmf5PtYhf1Ug40N1h/hxlhts+f1FvSvarEigdxS3BlSMI2PJLcQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
@@ -2863,8 +3052,8 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.25.4':
- resolution: {integrity: sha512-AVUP428VQTSddguz9dO9ngb+E5aScyg7nOeJDrF1HPYu555gmza3bDGMPhmVXL8svDSoqPCsCPjb265yG/kLKQ==}
+ '@esbuild/win32-arm64@0.28.1':
+ resolution: {integrity: sha512-lCv9eK/H6ZJWbE7bh2nw54CZ9M2nupBxJcTsdk/QQnWkdSjKGuxmmH8/GWrlT1eMmZfn4dGcCjRte397WqfQXA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
@@ -2875,8 +3064,8 @@ packages:
cpu: [ia32]
os: [win32]
- '@esbuild/win32-ia32@0.25.4':
- resolution: {integrity: sha512-i1sW+1i+oWvQzSgfRcxxG2k4I9n3O9NRqy8U+uugaT2Dy7kLO9Y7wI72haOahxceMX8hZAzgGou1FhndRldxRg==}
+ '@esbuild/win32-ia32@0.28.1':
+ resolution: {integrity: sha512-zvb/mB2bSCoJOpoCBgYKKpX6YM6mJBlBUVUtVj41DlZJVEB6/0CKlRYxP5wWl1C1ILiCoAU5wZZ4q1P3qeS6Eg==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
@@ -2887,8 +3076,8 @@ packages:
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.25.4':
- resolution: {integrity: sha512-nOT2vZNw6hJ+z43oP1SPea/G/6AbN6X+bGNhNuq8NtRHy4wsMhw765IKLNmnjek7GvjWBYQ8Q5VBoYTFg9y1UQ==}
+ '@esbuild/win32-x64@0.28.1':
+ resolution: {integrity: sha512-bm4Mowrv+GXMlpWX++EcXw/iLyd1o3+bJkC2DkWXYVvgZCqD/bSj9ctZeAMC3cIxgjRVR2Dufaiu4YPxr5gW1A==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
@@ -2938,9 +3127,19 @@ packages:
resolution: {integrity: sha512-XQ3cU+Q8Uqmrbf2e0cIC/QN43sTBSC8KF12u29Mb47tWrt2hAgBXSgpZMj4Ao8Uk0iJcU99QsOCaIL8934obCg==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0, npm: '>=6.14.13'}
+ '@gar/promise-retry@1.0.3':
+ resolution: {integrity: sha512-GmzA9ckNokPypTg10pgpeHNQe7ph+iIKKmhKu3Ob9ANkswreCx7R3cKmY781K8QK3AqVL3xVh9A42JvIAbkkSA==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
'@hapi/bourne@3.0.0':
resolution: {integrity: sha512-Waj1cwPXJDucOib4a3bAISsKJVb15MKi9IvmTI/7ssVEm6sywXGjVJDhl6/umt1pK1ZS7PacXU3A1PmFKHEZ2w==}
+ '@hono/node-server@1.19.14':
+ resolution: {integrity: sha512-GwtvgtXxnWsucXvbQXkRgqksiH2Qed37H9xHZocE5sA3N8O8O8/8FA3uclQXxXVzc9XBZuEOMK7+r02FmSpHtw==}
+ engines: {node: '>=18.14.1'}
+ peerDependencies:
+ hono: ^4
+
'@humanfs/core@0.19.1':
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
engines: {node: '>=18.18.0'}
@@ -2970,8 +3169,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/confirm@5.1.21':
- resolution: {integrity: sha512-KR8edRkIsUayMXV+o3Gv+q4jlhENF9nMYUZs9PA2HzrXeHI8M5uDag70U7RJn9yyiMZSbtF5/UexBtAVtZGSbQ==}
+ '@inquirer/confirm@5.1.14':
+ resolution: {integrity: sha512-5yR4IBfe0kXe59r1YCTG8WXkUbl7Z35HK87Sw+WUyGD8wNUx7JvY7laahzeytyE1oLn74bQnL7hstctQxisQ8Q==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -2979,8 +3178,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/confirm@5.1.6':
- resolution: {integrity: sha512-6ZXYK3M1XmaVBZX6FCfChgtponnL0R6I7k8Nu+kaoNkT828FVZTcca1MqmWQipaW2oNREQl5AaPCUOOCVNdRMw==}
+ '@inquirer/confirm@5.1.21':
+ resolution: {integrity: sha512-KR8edRkIsUayMXV+o3Gv+q4jlhENF9nMYUZs9PA2HzrXeHI8M5uDag70U7RJn9yyiMZSbtF5/UexBtAVtZGSbQ==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -3064,8 +3263,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/prompts@7.3.2':
- resolution: {integrity: sha512-G1ytyOoHh5BphmEBxSwALin3n1KGNYB6yImbICcRQdzXfOGbuJ9Jske/Of5Sebk339NSGGNfUshnzK8YWkTPsQ==}
+ '@inquirer/prompts@7.8.2':
+ resolution: {integrity: sha512-nqhDw2ZcAUrKNPwhjinJny903bRhI0rQhiDz1LksjeRxqa36i3l75+4iXbOy0rlDpLJGxqtgoPavQjmmyS5UJw==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -3100,10 +3299,6 @@ packages:
'@types/node':
optional: true
- '@inquirer/type@1.5.5':
- resolution: {integrity: sha512-MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA==}
- engines: {node: '>=18'}
-
'@inquirer/type@3.0.10':
resolution: {integrity: sha512-BvziSRxfz5Ov8ch0z/n3oijRSEcEsHnhggm4xFZe93DHcUCTlutlq9Ox4SVENAfcRD22UQq7T/atg9Wr3k09eA==}
engines: {node: '>=18'}
@@ -3130,10 +3325,6 @@ packages:
resolution: {integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==}
engines: {node: 20 || >=22}
- '@isaacs/cliui@8.0.2':
- resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
- engines: {node: '>=12'}
-
'@isaacs/cliui@9.0.0':
resolution: {integrity: sha512-AokJm4tuBHillT+FpMtxQ60n8ObyXBatq7jD2/JA9dxbDDokKQm8KMht5ibGzLVU9IJDIKK4TPKgMHEYMn3lMg==}
engines: {node: '>=18'}
@@ -3216,11 +3407,12 @@ packages:
'@leichtgewicht/ip-codec@2.0.5':
resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==}
- '@listr2/prompt-adapter-inquirer@2.0.18':
- resolution: {integrity: sha512-0hz44rAcrphyXcA8IS7EJ2SCoaBZD2u5goE8S/e+q/DL+dOGpqpcLidVOFeLG3VgML62SXmfRLAhWt0zL1oW4Q==}
- engines: {node: '>=18.0.0'}
+ '@listr2/prompt-adapter-inquirer@3.0.1':
+ resolution: {integrity: sha512-3XFmGwm3u6ioREG+ynAQB7FoxfajgQnMhIu8wC5eo/Lsih4aKDg0VuIMGaOsYn7hJSJagSeaD4K8yfpkEoDEmA==}
+ engines: {node: '>=20.0.0'}
peerDependencies:
'@inquirer/prompts': '>= 3 < 8'
+ listr2: 9.0.1
'@lit-labs/ssr-dom-shim@1.4.0':
resolution: {integrity: sha512-ficsEARKnmmW5njugNYKipTm4SFnbik7CXtoencDZzmzo/dQ+2Q0bgkzJuoJP20Aj0F+izzJjOqsnkd6F/o1bw==}
@@ -3228,33 +3420,38 @@ packages:
'@lit/reactive-element@2.1.1':
resolution: {integrity: sha512-N+dm5PAYdQ8e6UlywyyrgI2t++wFGXfHx+dSJ1oBrg6FAxUj40jId++EaRm80MKX5JnlH1sBsyZ5h0bcZKemCg==}
- '@lmdb/lmdb-darwin-arm64@3.2.6':
- resolution: {integrity: sha512-yF/ih9EJJZc72psFQbwnn8mExIWfTnzWJg+N02hnpXtDPETYLmQswIMBn7+V88lfCaFrMozJsUvcEQIkEPU0Gg==}
+ '@lmdb/lmdb-darwin-arm64@3.4.2':
+ resolution: {integrity: sha512-NK80WwDoODyPaSazKbzd3NEJ3ygePrkERilZshxBViBARNz21rmediktGHExoj9n5t9+ChlgLlxecdFKLCuCKg==}
cpu: [arm64]
os: [darwin]
- '@lmdb/lmdb-darwin-x64@3.2.6':
- resolution: {integrity: sha512-5BbCumsFLbCi586Bb1lTWQFkekdQUw8/t8cy++Uq251cl3hbDIGEwD9HAwh8H6IS2F6QA9KdKmO136LmipRNkg==}
+ '@lmdb/lmdb-darwin-x64@3.4.2':
+ resolution: {integrity: sha512-zevaowQNmrp3U7Fz1s9pls5aIgpKRsKb3dZWDINtLiozh3jZI9fBrI19lYYBxqdyiIyNdlyiidPnwPShj4aK+w==}
cpu: [x64]
os: [darwin]
- '@lmdb/lmdb-linux-arm64@3.2.6':
- resolution: {integrity: sha512-l5VmJamJ3nyMmeD1ANBQCQqy7do1ESaJQfKPSm2IG9/ADZryptTyCj8N6QaYgIWewqNUrcbdMkJajRQAt5Qjfg==}
+ '@lmdb/lmdb-linux-arm64@3.4.2':
+ resolution: {integrity: sha512-ZBEfbNZdkneebvZs98Lq30jMY8V9IJzckVeigGivV7nTHJc+89Ctomp1kAIWKlwIG0ovCDrFI448GzFPORANYg==}
cpu: [arm64]
os: [linux]
- '@lmdb/lmdb-linux-arm@3.2.6':
- resolution: {integrity: sha512-+6XgLpMb7HBoWxXj+bLbiiB4s0mRRcDPElnRS3LpWRzdYSe+gFk5MT/4RrVNqd2MESUDmb53NUXw1+BP69bjiQ==}
+ '@lmdb/lmdb-linux-arm@3.4.2':
+ resolution: {integrity: sha512-OmHCULY17rkx/RoCoXlzU7LyR8xqrksgdYWwtYa14l/sseezZ8seKWXcogHcjulBddER5NnEFV4L/Jtr2nyxeg==}
cpu: [arm]
os: [linux]
- '@lmdb/lmdb-linux-x64@3.2.6':
- resolution: {integrity: sha512-nDYT8qN9si5+onHYYaI4DiauDMx24OAiuZAUsEqrDy+ja/3EbpXPX/VAkMV8AEaQhy3xc4dRC+KcYIvOFefJ4Q==}
+ '@lmdb/lmdb-linux-x64@3.4.2':
+ resolution: {integrity: sha512-vL9nM17C77lohPYE4YaAQvfZCSVJSryE4fXdi8M7uWPBnU+9DJabgKVAeyDb84ZM2vcFseoBE4/AagVtJeRE7g==}
cpu: [x64]
os: [linux]
- '@lmdb/lmdb-win32-x64@3.2.6':
- resolution: {integrity: sha512-XlqVtILonQnG+9fH2N3Aytria7P/1fwDgDhl29rde96uH2sLB8CHORIf2PfuLVzFQJ7Uqp8py9AYwr3ZUCFfWg==}
+ '@lmdb/lmdb-win32-arm64@3.4.2':
+ resolution: {integrity: sha512-SXWjdBfNDze4ZPeLtYIzsIeDJDJ/SdsA0pEXcUBayUIMO0FQBHfVZZyHXQjjHr4cvOAzANBgIiqaXRwfMhzmLw==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@lmdb/lmdb-win32-x64@3.4.2':
+ resolution: {integrity: sha512-IY+r3bxKW6Q6sIPiMC0L533DEfRJSXibjSI3Ft/w9Q8KQBNqEIvUFXt+09wV8S5BRk0a8uSF19YWxuRwEfI90g==}
cpu: [x64]
os: [win32]
@@ -3308,6 +3505,16 @@ packages:
'@microsoft/tsdoc@0.15.1':
resolution: {integrity: sha512-4aErSrCR/On/e5G2hDP0wjooqDdauzEbIq8hIkIe5pXV0rtWJZvdCEKL0ykZxex+IxIwBp0eGeV48hQN07dXtw==}
+ '@modelcontextprotocol/sdk@1.26.0':
+ resolution: {integrity: sha512-Y5RmPncpiDtTXDbLKswIJzTqu2hyBKxTNsgKqKclDbhIgg1wgtf1fRuvxgTnRfcnxtvvgbIEcqUOzZrJ6iSReg==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@cfworker/json-schema': ^4.1.1
+ zod: ^3.25 || ^4.0
+ peerDependenciesMeta:
+ '@cfworker/json-schema':
+ optional: true
+
'@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
resolution: {integrity: sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==}
cpu: [arm64]
@@ -3542,14 +3749,18 @@ packages:
'@napi-rs/wasm-runtime@1.0.7':
resolution: {integrity: sha512-SeDnOO0Tk7Okiq6DbXmmBODgOAb9dp9gjlphokTUxmt8U3liIP1ZsozBahH69j/RJv+Rfs6IwUKHTgQYJ/HBAw==}
- '@ngtools/webpack@19.2.24':
- resolution: {integrity: sha512-lDWjW4lFwT0vbniJG7ziaDC2bX7rj8e4Fa59TpSLNHEjuPvK5chOTgT0+L63fEdfTfHoTy+ohAK1158UBXWt7g==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ '@ngtools/webpack@20.3.32':
+ resolution: {integrity: sha512-a3KWNfv3NEyNHdGusIP/+lfLtjH7L5rcqgouBm6v3t1vHQ4zg2sNgoYIQIJCAJnFI2b080YrP9jh2FqKTCJlug==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
peerDependencies:
- '@angular/compiler-cli': ^19.0.0 || ^19.2.0-next.0
- typescript: '>=5.5 <5.9'
+ '@angular/compiler-cli': ^20.0.0
+ typescript: '>=5.8 <6.0'
webpack: ^5.54.0
+ '@noble/hashes@1.4.0':
+ resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==}
+ engines: {node: '>= 16'}
+
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
@@ -3562,42 +3773,42 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
- '@npmcli/agent@3.0.0':
- resolution: {integrity: sha512-S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ '@npmcli/agent@4.0.2':
+ resolution: {integrity: sha512-EUEuWAxnL07Sp5/iC/1X6Xj+XThUvnbei9zfRWZdEXa7lss9RTHMhAHBeg+MZ5To9s/gGaSI+UwZTPdYMvKSeg==}
+ engines: {node: ^20.17.0 || >=22.9.0}
- '@npmcli/fs@4.0.0':
- resolution: {integrity: sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ '@npmcli/fs@5.0.0':
+ resolution: {integrity: sha512-7OsC1gNORBEawOa5+j2pXN9vsicaIOH5cPXxoR6fJOmH6/EXpJB2CajXOu1fPRFun2m1lktEFX11+P89hqO/og==}
+ engines: {node: ^20.17.0 || >=22.9.0}
- '@npmcli/git@6.0.3':
- resolution: {integrity: sha512-GUYESQlxZRAdhs3UhbB6pVRNUELQOHXwK9ruDkwmCv2aZ5y0SApQzUJCg02p3A7Ue2J5hxvlk1YI53c00NmRyQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ '@npmcli/git@7.0.2':
+ resolution: {integrity: sha512-oeolHDjExNAJAnlYP2qzNjMX/Xi9bmu78C9dIGr4xjobrSKbuMYCph8lTzn4vnW3NjIqVmw/f8BCfouqyJXlRg==}
+ engines: {node: ^20.17.0 || >=22.9.0}
- '@npmcli/installed-package-contents@3.0.0':
- resolution: {integrity: sha512-fkxoPuFGvxyrH+OQzyTkX2LUEamrF4jZSmxjAtPPHHGO0dqsQ8tTKjnIS8SAnPHdk2I03BDtSMR5K/4loKg79Q==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ '@npmcli/installed-package-contents@4.0.0':
+ resolution: {integrity: sha512-yNyAdkBxB72gtZ4GrwXCM0ZUedo9nIbOMKfGjt6Cu6DXf0p8y1PViZAKDC8q8kv/fufx0WTjRBdSlyrvnP7hmA==}
+ engines: {node: ^20.17.0 || >=22.9.0}
hasBin: true
- '@npmcli/node-gyp@4.0.0':
- resolution: {integrity: sha512-+t5DZ6mO/QFh78PByMq1fGSAub/agLJZDRfJRMeOSNCt8s9YVlTjmGpIPwPhvXTGUIJk+WszlT0rQa1W33yzNA==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ '@npmcli/node-gyp@5.0.0':
+ resolution: {integrity: sha512-uuG5HZFXLfyFKqg8QypsmgLQW7smiRjVc45bqD/ofZZcR/uxEjgQU8qDPv0s9TEeMUiAAU/GC5bR6++UdTirIQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
- '@npmcli/package-json@6.2.0':
- resolution: {integrity: sha512-rCNLSB/JzNvot0SEyXqWZ7tX2B5dD2a1br2Dp0vSYVo5jh8Z0EZ7lS9TsZ1UtziddB1UfNUaMCc538/HztnJGA==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ '@npmcli/package-json@7.0.5':
+ resolution: {integrity: sha512-iVuTlG3ORq2iaVa1IWUxAO/jIp77tUKBhoMjuzYW2kL4MLN1bi/ofqkZ7D7OOwh8coAx1/S2ge0rMdGv8sLSOQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
- '@npmcli/promise-spawn@8.0.3':
- resolution: {integrity: sha512-Yb00SWaL4F8w+K8YGhQ55+xE4RUNdMHV43WZGsiTM92gS+lC0mGsn7I4hLug7pbao035S6bj3Y3w0cUNGLfmkg==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ '@npmcli/promise-spawn@9.0.1':
+ resolution: {integrity: sha512-OLUaoqBuyxeTqUvjA3FZFiXUfYC1alp3Sa99gW3EUDz3tZ3CbXDdcZ7qWKBzicrJleIgucoWamWH1saAmH/l2Q==}
+ engines: {node: ^20.17.0 || >=22.9.0}
- '@npmcli/redact@3.2.2':
- resolution: {integrity: sha512-7VmYAmk4csGv08QzrDKScdzn11jHPFGyqJW39FyPgPuAp3zIaUmuCo1yxw9aGs+NEJuTGQ9Gwqpt93vtJubucg==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ '@npmcli/redact@4.0.0':
+ resolution: {integrity: sha512-gOBg5YHMfZy+TfHArfVogwgfBeQnKbbGo3pSUyK/gSI0AVu+pEiDVcKlQb0D8Mg1LNRZILZ6XG8I5dJ4KuAd9Q==}
+ engines: {node: ^20.17.0 || >=22.9.0}
- '@npmcli/run-script@9.1.0':
- resolution: {integrity: sha512-aoNSbxtkePXUlbZB+anS1LqsJdctG5n3UVhfU47+CDdwMi6uNTBMF9gPcQRnqghQd2FGzcwwIFBruFMxjhBewg==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ '@npmcli/run-script@10.0.4':
+ resolution: {integrity: sha512-mGUWr1uMnf0le2TwfOZY4SFxZGXGfm4Jtay/nwAa2FLNAKXUoUwaGwBMNH36UHPtinWfTSJ3nqFQr0091CxVGg==}
+ engines: {node: ^20.17.0 || >=22.9.0}
'@nx/nx-darwin-arm64@22.1.3':
resolution: {integrity: sha512-4D/jXGsr3jcQ0vBo8aXXZMdfmC3n4OsZ1zjFaOXlF62Ujug+RqI/IvKxycT9r7Lr09PmW2OqBC01NfIWKoBLhg==}
@@ -3909,9 +4120,42 @@ packages:
resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==}
engines: {node: '>= 10.0.0'}
- '@pkgjs/parseargs@0.11.0':
- resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
- engines: {node: '>=14'}
+ '@peculiar/asn1-cms@2.8.0':
+ resolution: {integrity: sha512-NgekZOrSJFSBFLFoLfwePguAWAx7z1+f2TEsWFUMyiqqfntZ4+S/S5hzqME3q4pCA0iOsFKdwiQ35dwY24eVqA==}
+
+ '@peculiar/asn1-csr@2.8.0':
+ resolution: {integrity: sha512-akbF8+uvleHs8sejNPQxwmVFuInAg6FMNHOwMILXfP518YfFJwdR3jr6oNUPOaEJfuEhn/vkNOCIT6ASUd4mbg==}
+
+ '@peculiar/asn1-ecc@2.8.0':
+ resolution: {integrity: sha512-ohwlk+u9Rv2NOAY1c6MfHj45ATVF8R1DUN/WCgABiRtLi2ZftlZWZX7KvpAbU8v9xPcmoILfELeEABj/rn18AQ==}
+
+ '@peculiar/asn1-pfx@2.8.0':
+ resolution: {integrity: sha512-5yof1ytoB++RQtaFbqSUJ8pxDJtZT6vbVqZ8XoJ61ph7UjNVvfFwAilnCodqkNsAodpy13gDhoxZXw00pghnyg==}
+
+ '@peculiar/asn1-pkcs8@2.8.0':
+ resolution: {integrity: sha512-qAKXtLpBEw9LqhKpjw3ajZSXlBur+ipW+y2ivVBQAG6F6qRx94yO+1ZR4mvw+YaCfKSaOzLeYEzsPaBp4SJELA==}
+
+ '@peculiar/asn1-pkcs9@2.8.0':
+ resolution: {integrity: sha512-b5nDWCnkV60+cQ141D6sVVwK9nz64R5n3zSVnklGd+ECdkW2Ol3U1a6yYFlalpSOaD557yuJB64A+q42jG7lUQ==}
+
+ '@peculiar/asn1-rsa@2.8.0':
+ resolution: {integrity: sha512-zHEUlCqB2mk7x2lxDwHHJy7hWZOPdGHVlsmITWKB5/PbQo61atbu9PJ/0r9dQNMwFzbKPXZ8uK8/91eUhRznSg==}
+
+ '@peculiar/asn1-schema@2.8.0':
+ resolution: {integrity: sha512-7YT0U/ze0tF2QOBbE15gKZwy5tvgGyLRiRHLzhlbOpf7BT032oBSd0haZqXn5W6l26WLlu3dyxzjM+2638/z2Q==}
+
+ '@peculiar/asn1-x509-attr@2.8.0':
+ resolution: {integrity: sha512-tHjkfS/qhMnmrlB2J9NhflQlQ7In3khO3CfmVrriOlpTeErY9ZIKOso1hQ5JQiyrJ7ShvqVPk7E5fQmbclkSKA==}
+
+ '@peculiar/asn1-x509@2.8.0':
+ resolution: {integrity: sha512-N0CMuhWUzsWEVq6F1q9X6+VKUnWzSW+cSVg+aPaGGwDdbFoFWTYgin5MHwXgpWd6y9COMBxnfy/Qc+Xc7F0Zwg==}
+
+ '@peculiar/utils@2.0.3':
+ resolution: {integrity: sha512-+oL3HPFRIZ1St2K50lWCXiioIgSoxzz7R1J3uF6neO2yl1sgmpgY6XXJH4BdpoDkMWznQTeYF6oWNDZLCdQ4eQ==}
+
+ '@peculiar/x509@1.14.3':
+ resolution: {integrity: sha512-C2Xj8FZ0uHWeCXXqX5B4/gVFQmtSkiuOolzAgutjTfseNOHT3pUjljDZsTSxXFGgio54bCzVFqmEOUrIVk8RDA==}
+ engines: {node: '>=20.0.0'}
'@playwright/test@1.56.1':
resolution: {integrity: sha512-vSMYtL/zOcFpvJCW71Q/OEGQb7KYBPAdKh35WNSkaZA75JlAO8ED8UN6GUNTm3drWomcbcqRPFqQbLae8yBTdg==}
@@ -4110,41 +4354,37 @@ packages:
'@rushstack/ts-command-line@4.22.6':
resolution: {integrity: sha512-QSRqHT/IfoC5nk9zn6+fgyqOPXHME0BfchII9EUPR19pocsNp/xSbeBCbD3PIR2Lg+Q5qk7OFqk1VhWPMdKHJg==}
- '@schematics/angular@19.2.24':
- resolution: {integrity: sha512-RGHb7ebUQTOxtWfNcBXCzDog8LwJzvVp3/BptEI+78M+tCaBJM6BAS2vrDphJRjVbjV3DTwZcmlNRqCHJeSknA==}
- engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
+ '@schematics/angular@20.3.32':
+ resolution: {integrity: sha512-asporFGNP/U4p/A6jHqRmC8zGBxsSbjA/17I0p1tIW4HLbDTwJ0Z1gTSGpkHGRGTeowPZZSCj7s0IWVoaBCjnA==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0, npm: ^6.11.0 || ^7.5.6 || >=8.0.0, yarn: '>= 1.13.0'}
- '@sigstore/bundle@3.1.0':
- resolution: {integrity: sha512-Mm1E3/CmDDCz3nDhFKTuYdB47EdRFRQMOE/EAbiG1MJW77/w1b3P7Qx7JSrVJs8PfwOLOVcKQCHErIwCTyPbag==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ '@sigstore/bundle@4.0.0':
+ resolution: {integrity: sha512-NwCl5Y0V6Di0NexvkTqdoVfmjTaQwoLM236r89KEojGmq/jMls8S+zb7yOwAPdXvbwfKDlP+lmXgAL4vKSQT+A==}
+ engines: {node: ^20.17.0 || >=22.9.0}
- '@sigstore/core@2.0.0':
- resolution: {integrity: sha512-nYxaSb/MtlSI+JWcwTHQxyNmWeWrUXJJ/G4liLrGG7+tS4vAz6LF3xRXqLH6wPIVUoZQel2Fs4ddLx4NCpiIYg==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ '@sigstore/core@3.2.1':
+ resolution: {integrity: sha512-qRsxPnCrbC/puegGxKuynfnxgLiHqWStrSjxkoB4YKqq3Z3s4cyZyj42ZdWFAEblNP65C+rBH8EuREHIXoi83g==}
+ engines: {node: ^20.17.0 || >=22.9.0}
- '@sigstore/protobuf-specs@0.4.3':
- resolution: {integrity: sha512-fk2zjD9117RL9BjqEwF7fwv7Q/P9yGsMV4MUJZ/DocaQJ6+3pKr+syBq1owU5Q5qGw5CUbXzm+4yJ2JVRDQeSA==}
+ '@sigstore/protobuf-specs@0.5.1':
+ resolution: {integrity: sha512-/ScWUhhoFasJsSRGTVBwId1loQjjnjAfE4djL6ZhrXRpNCmPTnUKF5Jokd58ILseOMjzET3UrMOtJPS9sYeI0g==}
engines: {node: ^18.17.0 || >=20.5.0}
- '@sigstore/sign@3.1.0':
- resolution: {integrity: sha512-knzjmaOHOov1Ur7N/z4B1oPqZ0QX5geUfhrVaqVlu+hl0EAoL4o+l0MSULINcD5GCWe3Z0+YJO8ues6vFlW0Yw==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ '@sigstore/sign@4.1.1':
+ resolution: {integrity: sha512-Hf4xglukg0XXQ2RiD5vSoLjdPe8OBUPA8XeVjUObheuDcWdYWrnH/BNmxZCzkAy68MzmNCxXLeurJvs6hcP2OQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
- '@sigstore/tuf@3.1.1':
- resolution: {integrity: sha512-eFFvlcBIoGwVkkwmTi/vEQFSva3xs5Ot3WmBcjgjVdiaoelBLQaQ/ZBfhlG0MnG0cmTYScPpk7eDdGDWUcFUmg==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ '@sigstore/tuf@4.0.2':
+ resolution: {integrity: sha512-TCAzTy0xzdP79EnxSjq9KQ3eaR7+FmudLC6eRKknVKZbV7ZNlGLClAAQb/HMNJ5n2OBNk2GT1tEmU0xuPr+SLQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
- '@sigstore/verify@2.1.1':
- resolution: {integrity: sha512-hVJD77oT67aowHxwT4+M6PGOp+E2LtLdTK3+FC0lBO9T7sYwItDMXZ7Z07IDCvR1M717a4axbIWckrW67KMP/w==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ '@sigstore/verify@3.1.1':
+ resolution: {integrity: sha512-qv7+G3J2cc6wwFj3yKvXOamzqhMwSk1ogPGmhpS8iXllcPrJaIIBA+4HbttlHVu1pqWTdmaCH/WE7UOC51kdoA==}
+ engines: {node: ^20.17.0 || >=22.9.0}
'@sinclair/typebox@0.34.41':
resolution: {integrity: sha512-6gS8pZzSXdyRHTIqoqSVknxolr1kzfy4/CeDnrzsVz8TTIWUbOBr6gnzOmTYJ3eXQNh4IYHIGi5aIL7sOZ2G/g==}
- '@sindresorhus/merge-streams@2.3.0':
- resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
- engines: {node: '>=18'}
-
'@standard-schema/spec@1.1.0':
resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
@@ -4291,9 +4531,9 @@ packages:
resolution: {integrity: sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==}
engines: {node: ^16.14.0 || >=18.0.0}
- '@tufjs/models@3.0.1':
- resolution: {integrity: sha512-UUYHISyhCU3ZgN8yaear3cGATHb3SMuKHsQ/nVbHXcmnBf+LzQ/cQfhNG+rfaSHgqGKNEm2cOCLVLELStUQ1JA==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ '@tufjs/models@4.1.0':
+ resolution: {integrity: sha512-Y8cK9aggNRsqJVaKUlEYs4s7CvQ1b1ta2DVPyAimb0I2qhzjNk+A+mxvll/klL0RlfuIUei8BF7YWiua4kQqww==}
+ engines: {node: ^20.17.0 || >=22.9.0}
'@tybys/wasm-util@0.10.1':
resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
@@ -4421,9 +4661,6 @@ packages:
'@types/mime@1.3.5':
resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
- '@types/node-forge@1.3.14':
- resolution: {integrity: sha512-mhVF2BnD4BO+jtOp7z1CdzaK4mbuK0LLQYAvdOLqHTavxFNq4zA1EmYkpnFjP8HOUzedfQkRnp0E2ulSAYSzAw==}
-
'@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
@@ -4652,11 +4889,11 @@ packages:
resolution: {integrity: sha512-XKIlF1i6UJiyTL52mDrSDDgRX7Qr5yJ7ts9zn2liZEmhiAEum4XKrJRAWmHdFwCQeGBU+rb+/b0ldw/9V8lOWw==}
engines: {node: '>=18'}
- '@vitejs/plugin-basic-ssl@1.2.0':
- resolution: {integrity: sha512-mkQnxTkcldAzIsomk1UuLfAu9n+kpQ3JbHcpCp7d2Oo6ITtji8pHS3QToOWjhPFvNQSnhlkAjmGbhv2QvwO/7Q==}
- engines: {node: '>=14.21.3'}
+ '@vitejs/plugin-basic-ssl@2.1.0':
+ resolution: {integrity: sha512-dOxxrhgyDIEUADhb/8OlV9JIqYLgos03YorAueTIeOUskLJSEsfwCByjbu98ctXitUN3znXKp0bYD/WHSudCeA==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
peerDependencies:
- vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
+ vite: ^6.0.0 || ^7.0.0
'@vitejs/plugin-react@4.7.0':
resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==}
@@ -4860,14 +5097,18 @@ packages:
resolution: {integrity: sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==}
hasBin: true
- abbrev@3.0.1:
- resolution: {integrity: sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ abbrev@4.0.0:
+ resolution: {integrity: sha512-a1wflyaL0tHtJSmLSOVybYhy22vRih4eduhhrkcjgrWGnRfrZtovJ2FRjxuTtkkj47O/baf0R86QU5OuYpz8fA==}
+ engines: {node: ^20.17.0 || >=22.9.0}
accepts@1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
+ accepts@2.0.0:
+ resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==}
+ engines: {node: '>= 0.6'}
+
acorn-import-phases@1.0.4:
resolution: {integrity: sha512-wKmbr/DDiIXzEOiWrTTUcDm24kQ2vGfZQvM2fwg2vXqR5uW6aapr7ObPtj1th32b9u90/Pf4AItvdTh42fBmVQ==}
engines: {node: '>=10.13.0'}
@@ -4930,12 +5171,13 @@ packages:
ajv@8.13.0:
resolution: {integrity: sha512-PRA911Blj99jR5RMeTunVbNXMF6Lp4vZXnk5GQjcnUWUTsrXtekg/pnmFFI2u/I36Y/2bITGS30GZCXei6uNkA==}
- ajv@8.17.1:
- resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
-
ajv@8.18.0:
resolution: {integrity: sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==}
+ algoliasearch@5.35.0:
+ resolution: {integrity: sha512-Y+moNhsqgLmvJdgTsO4GZNgsaDWv8AOGAaPeIeHKlDn/XunoAqYbA+XNpBd1dW8GOXAUDyxC9Rxc7AV4kpFcIg==}
+ engines: {node: '>= 14.0.0'}
+
alien-signals@1.0.13:
resolution: {integrity: sha512-OGj9yyTnJEttvzhTUWuscOvtqxq5vrhF7vL9oS0xJ2mK0ItPYP1/y+vCFebfxoEyAz0++1AIwJ5CMr+Fk3nDmg==}
@@ -5004,6 +5246,10 @@ packages:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
+ asn1js@3.0.10:
+ resolution: {integrity: sha512-S2s3aOytiKdFRdulw2qPE51MzjzVOisppcVv7jVFR+Kw0kxwvFrDcYA0h7Ndqbmj0HkMIXYWaoj7fli8kgx1eg==}
+ engines: {node: '>=12.0.0'}
+
assertion-error@2.0.1:
resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
engines: {node: '>=12'}
@@ -5015,8 +5261,8 @@ packages:
asynckit@0.4.0:
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
- autoprefixer@10.4.20:
- resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
+ autoprefixer@10.4.21:
+ resolution: {integrity: sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
@@ -5033,12 +5279,12 @@ packages:
resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
engines: {node: '>= 0.4'}
- babel-loader@9.2.1:
- resolution: {integrity: sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==}
- engines: {node: '>= 14.15.0'}
+ babel-loader@10.0.0:
+ resolution: {integrity: sha512-z8jt+EdS61AMw22nSfoNJAZ0vrtmhPRVi6ghL3rCeRZI8cdNYFiV5xeV3HbE7rlZZNmGH8BVccwWt8/ED0QOHA==}
+ engines: {node: ^18.20.0 || ^20.10.0 || >=22.0.0}
peerDependencies:
'@babel/core': ^7.12.0
- webpack: '>=5'
+ webpack: '>=5.61.0'
babel-plugin-jsx-dom-expressions@0.40.3:
resolution: {integrity: sha512-5HOwwt0BYiv/zxl7j8Pf2bGL6rDXfV6nUhLs8ygBX+EFJXzBPHM/euj9j/6deMZ6wa52Wb2PBaAV5U/jKwIY1w==}
@@ -5050,8 +5296,8 @@ packages:
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==}
+ 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
@@ -5075,6 +5321,10 @@ packages:
balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
+ balanced-match@4.0.4:
+ resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==}
+ engines: {node: 18 || 20 || >=22}
+
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
@@ -5083,15 +5333,11 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
- baseline-browser-mapping@2.8.22:
- resolution: {integrity: sha512-/tk9kky/d8T8CTXIQYASLyhAxR5VwL3zct1oAoVTaOUHwrmsGnfbRwNdEq+vOl2BN8i3PcDdP0o4Q+jjKQoFbQ==}
- hasBin: true
-
batch@0.6.1:
resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==}
- beasties@0.3.2:
- resolution: {integrity: sha512-p4AF8uYzm9Fwu8m/hSVTCPXrRBPmB34hQpHsec2KOaR9CZmgoU8IOv4Cvwq4hgz2p4hLMNbsdNl5XeA6XbAQwA==}
+ beasties@0.3.5:
+ resolution: {integrity: sha512-NaWu+f4YrJxEttJSm16AzMIFtVldCvaJ68b1L098KpqXmxt9xOLtKoLkKxb8ekhOrLqEJAbvT6n6SEvB/sac7A==}
engines: {node: '>=14.0.0'}
better-path-resolve@1.0.0:
@@ -5111,10 +5357,14 @@ packages:
bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
- body-parser@1.20.3:
- resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==}
+ body-parser@1.20.6:
+ resolution: {integrity: sha512-p5tAzS57i5MV9fZFDj9LeIiTZEufbSe2eDozP+ElheSUq1m74CRq1jI4mYNDdVs9vQztXFLuk/Gd6BWTdwRJ5g==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
+ body-parser@2.3.0:
+ resolution: {integrity: sha512-2cGmJupaNgg+QUwVLAucDuWuoMZ6EX9iHDRswZ5lsNYEmwPaRknMPCLZz07yTzVq/83p4o/wzbDZbBrTvGGTIw==}
+ engines: {node: '>=18'}
+
bonjour-service@1.3.0:
resolution: {integrity: sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==}
@@ -5127,15 +5377,14 @@ packages:
brace-expansion@2.0.2:
resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
+ brace-expansion@5.0.7:
+ resolution: {integrity: sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==}
+ engines: {node: 18 || 20 || >=22}
+
braces@3.0.3:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
- browserslist@4.27.0:
- resolution: {integrity: sha512-AXVQwdhot1eqLihwasPElhX2tAZiBjWdJ9i/Zcj2S6QYIjkx62OKSfnobkriB81C3l4w0rVy3Nt4jaTBltYEpw==}
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
- hasBin: true
-
browserslist@4.28.2:
resolution: {integrity: sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
@@ -5155,9 +5404,13 @@ packages:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
- cacache@19.0.1:
- resolution: {integrity: sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ bytestreamjs@2.0.1:
+ resolution: {integrity: sha512-U1Z/ob71V/bXfVABvNr/Kumf5VyeQRBEm6Txb0PQ6S7V5GpBM3w4Cbqz/xPDicR5tN0uvDifng8C+5qECeGwyQ==}
+ engines: {node: '>=6.0.0'}
+
+ cacache@20.0.4:
+ resolution: {integrity: sha512-M3Lab8NPYlZU2exsL3bMVvMrMqgwCnMWfdZbK28bn3pK6APT/Te/I8hjRPNu1uwORY9a1eEQoifXbKPQMfMTOA==}
+ engines: {node: ^20.17.0 || >=22.9.0}
cache-content-type@1.0.1:
resolution: {integrity: sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==}
@@ -5175,9 +5428,6 @@ packages:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- caniuse-lite@1.0.30001752:
- resolution: {integrity: sha512-vKUk7beoukxE47P5gcVNKkDRzXdVofotshHwfR9vmpeFKxmI5PBpgOMC18LUJUA/DvJ70Y7RveasIBraqsyO/g==}
-
caniuse-lite@1.0.30001787:
resolution: {integrity: sha512-mNcrMN9KeI68u7muanUpEejSLghOKlVhRqS/Za2IeyGllJ9I9otGpR9g3nsw7n4W378TE/LyIteA0+/FOZm4Kg==}
@@ -5192,6 +5442,10 @@ packages:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
+ chalk@5.6.2:
+ resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==}
+ engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+
chardet@2.1.1:
resolution: {integrity: sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==}
@@ -5210,10 +5464,6 @@ packages:
resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
engines: {node: '>= 14.16.0'}
- chownr@2.0.0:
- resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
- engines: {node: '>=10'}
-
chownr@3.0.0:
resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
engines: {node: '>=18'}
@@ -5260,6 +5510,10 @@ packages:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
+ cliui@9.0.1:
+ resolution: {integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==}
+ engines: {node: '>=20'}
+
clone-deep@4.0.1:
resolution: {integrity: sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==}
engines: {node: '>=6'}
@@ -5308,9 +5562,6 @@ packages:
resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==}
engines: {node: '>= 12.0.0'}
- common-path-prefix@3.0.0:
- resolution: {integrity: sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==}
-
compare-versions@6.1.1:
resolution: {integrity: sha512-4hm4VPpIecmlg59CHXnRDnqGplJFrbLG4aFEl5vl6cK1u76ws3LLvX7ikFnTDl5vo39sjWD6AaDPYodJp/NNHg==}
@@ -5342,10 +5593,18 @@ packages:
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
engines: {node: '>= 0.6'}
+ content-disposition@1.1.0:
+ resolution: {integrity: sha512-5jRCH9Z/+DRP7rkvY83B+yGIGX96OYdJmzngqnw2SBSxqCFPd0w2km3s5iawpGX8krnwSGmF0FW5Nhr0Hfai3g==}
+ engines: {node: '>=18'}
+
content-type@1.0.5:
resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
engines: {node: '>= 0.6'}
+ content-type@2.0.0:
+ resolution: {integrity: sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==}
+ engines: {node: '>=18'}
+
convert-source-map@1.9.0:
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
@@ -5355,6 +5614,10 @@ packages:
cookie-signature@1.0.6:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
+ cookie-signature@1.2.2:
+ resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==}
+ engines: {node: '>=6.6.0'}
+
cookie@0.7.1:
resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==}
engines: {node: '>= 0.6'}
@@ -5366,9 +5629,9 @@ packages:
copy-anything@2.0.6:
resolution: {integrity: sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==}
- copy-webpack-plugin@12.0.2:
- resolution: {integrity: sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA==}
- engines: {node: '>= 18.12.0'}
+ copy-webpack-plugin@14.0.0:
+ resolution: {integrity: sha512-3JLW90aBGeaTLpM7mYQKpnVdgsUZRExY55giiZgLuX/xTQRUs1dOCwbBnWnvY6Q6rfZoXMNwzOQJCSZPppfqXA==}
+ engines: {node: '>= 20.9.0'}
peerDependencies:
webpack: ^5.1.0
@@ -5378,6 +5641,10 @@ packages:
core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
+ cors@2.8.6:
+ resolution: {integrity: sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==}
+ engines: {node: '>= 0.10'}
+
cosmiconfig@9.0.0:
resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==}
engines: {node: '>=14'}
@@ -5406,6 +5673,9 @@ packages:
css-select@5.2.2:
resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==}
+ css-select@6.0.0:
+ resolution: {integrity: sha512-rZZVSLle8v0+EY8QAkDWrKhpgt6SA5OtHsgBnsj6ZaLb5dmDVOWUDtQitd9ydxxvEjhewNudS6eTVU7uOyzvXw==}
+
css-tree@2.3.1:
resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
@@ -5418,6 +5688,10 @@ packages:
resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==}
engines: {node: '>= 6'}
+ css-what@7.0.0:
+ resolution: {integrity: sha512-wD5oz5xibMOPHzy13CyGmogB3phdvcDaB5t0W/Nr5Z2O/agcB8YwOz6e2Lsp10pNDzBoDO9nVa3RGs/2BttpHQ==}
+ engines: {node: '>= 6'}
+
css.escape@1.5.1:
resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==}
@@ -5603,15 +5877,9 @@ packages:
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
engines: {node: '>= 0.4'}
- eastasianwidth@0.2.0:
- resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
-
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.5.244:
- resolution: {integrity: sha512-OszpBN7xZX4vWMPJwB9illkN/znA8M36GQqQxi6MNy9axWxhOfJyZZJtSLQCpEFLHP2xK33BiWx9aIuIEXVCcw==}
-
electron-to-chromium@1.5.336:
resolution: {integrity: sha512-AbH9q9J455r/nLmdNZes0G0ZKcRX73FicwowalLs6ijwOmCJSRRrLX63lcAlzy9ux3dWK1w1+1nsBJEWN11hcQ==}
@@ -5621,9 +5889,6 @@ packages:
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
- emoji-regex@9.2.2:
- resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
-
emojis-list@3.0.0:
resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==}
engines: {node: '>= 4'}
@@ -5681,9 +5946,6 @@ packages:
resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==}
engines: {node: '>=18'}
- err-code@2.0.3:
- resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
-
errno@0.1.8:
resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
hasBin: true
@@ -5726,8 +5988,8 @@ packages:
browserslist: ^4.21.8
esbuild: ~0.25.0
- esbuild-wasm@0.25.4:
- resolution: {integrity: sha512-2HlCS6rNvKWaSKhWaG/YIyRsTsL3gUrMP2ToZMBIjw9LM7vVcIs+rz8kE2vExvTJgvM8OKPqNpcHawY/BQc/qQ==}
+ esbuild-wasm@0.28.1:
+ resolution: {integrity: sha512-p/GD4E8oYRjg3kjdKrnMb0s4PzXgJF42e0MF4H0+ACyK/kIlFRp3e0fzOleIG+wBBm6MM3XQrbpe7soEA+vJIA==}
engines: {node: '>=18'}
hasBin: true
@@ -5736,8 +5998,8 @@ packages:
engines: {node: '>=18'}
hasBin: true
- esbuild@0.25.4:
- resolution: {integrity: sha512-8pgjLUcUjcgDg+2Q4NYXnPbo/vncAY4UmyaCm0jZevERqCHZIaWwdJHkf8XQtu4AxSKCdvrUbT0XUr1IdZzI8Q==}
+ esbuild@0.28.1:
+ resolution: {integrity: sha512-HrJrvZv5ayxBzPfwphOoNzkzOIIlifzk0KJrGK2c8R4+LKpMtpYLQeUdjnwjWv/LZlkH2laZk+4w78pi99D4Vw==}
engines: {node: '>=18'}
hasBin: true
@@ -5871,6 +6133,14 @@ packages:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
+ eventsource-parser@3.1.0:
+ resolution: {integrity: sha512-kJezFj9YFAMLeORyi7aCLxLbD5/qWMQnoMVlVPyHIll7lgRJCc3JVln9Vgl9nwQi0YkMnhdGTMNn7CkRRAptMg==}
+ engines: {node: '>=18.0.0'}
+
+ eventsource@3.0.7:
+ resolution: {integrity: sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==}
+ engines: {node: '>=18.0.0'}
+
execa@5.1.1:
resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
engines: {node: '>=10'}
@@ -5882,10 +6152,20 @@ packages:
exponential-backoff@3.1.3:
resolution: {integrity: sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==}
- express@4.21.2:
- resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==}
+ express-rate-limit@8.5.2:
+ resolution: {integrity: sha512-5Kb34ipNX694DH48vN9irak1Qx30nb0PLYHXfJgw4YEjiC3ZEmZJhwOp+VfiCYwFzvFTdB9QkArYS5kXa2cx2A==}
+ engines: {node: '>= 16'}
+ peerDependencies:
+ express: '>= 4.11'
+
+ express@4.22.2:
+ resolution: {integrity: sha512-IuL+Elrou2ZvCFHs18/CIzy2Nzvo25nZ1/D2eIZlz7c+QUayAcYoiM2BthCjs+EBHVpjYjcuLDAiCWgeIX3X1Q==}
engines: {node: '>= 0.10.0'}
+ express@5.2.1:
+ resolution: {integrity: sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==}
+ engines: {node: '>= 18'}
+
extendable-error@0.1.7:
resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==}
@@ -5944,9 +6224,9 @@ packages:
resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==}
engines: {node: '>= 0.8'}
- find-cache-dir@4.0.0:
- resolution: {integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==}
- engines: {node: '>=14.16'}
+ finalhandler@2.1.1:
+ resolution: {integrity: sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==}
+ engines: {node: '>= 18.0.0'}
find-up@4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
@@ -5956,10 +6236,6 @@ packages:
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
engines: {node: '>=10'}
- find-up@6.3.0:
- resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
flat-cache@4.0.1:
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
engines: {node: '>=16'}
@@ -6004,6 +6280,10 @@ packages:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
+ fresh@2.0.0:
+ resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==}
+ engines: {node: '>= 0.8'}
+
front-matter@4.0.2:
resolution: {integrity: sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==}
@@ -6018,10 +6298,6 @@ packages:
resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
engines: {node: '>=6 <7 || >=8'}
- fs-minipass@2.1.0:
- resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
- engines: {node: '>= 8'}
-
fs-minipass@3.0.3:
resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -6087,17 +6363,16 @@ packages:
glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- glob@10.4.5:
- resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
- deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
- hasBin: true
-
glob@11.1.0:
resolution: {integrity: sha512-vuNwKSaKiqm7g0THUBu2x7ckSs3XJLXE+2ssL7/MfTGPLLcrJQ/4Uq1CjPTtO5cCIiRxqvN6Twy1qOwhL0Xjcw==}
engines: {node: 20 || >=22}
deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
hasBin: true
+ glob@13.0.6:
+ resolution: {integrity: sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==}
+ engines: {node: 18 || 20 || >=22}
+
globals@14.0.0:
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
engines: {node: '>=18'}
@@ -6114,10 +6389,6 @@ packages:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
- globby@14.1.0:
- resolution: {integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==}
- engines: {node: '>=18'}
-
globrex@0.1.2:
resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
@@ -6154,9 +6425,13 @@ packages:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
- hosted-git-info@8.1.0:
- resolution: {integrity: sha512-Rw/B2DNQaPBICNXEm8balFz9a6WpZrkCGpcWFpy7nCj+NyhSdqXipmfvtmWt9xGfp0wZnBxB+iVpLmQMYt47Tw==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ hono@4.12.30:
+ resolution: {integrity: sha512-emn+JoJjrN9YTpRDS5it/UI2SO9BAE37T6I3d963RxcZ81G9A4pr2SZTEiiaiKbzx+NKRg5BZ89fCL7gCJCUog==}
+ engines: {node: '>=16.9.0'}
+
+ hosted-git-info@9.0.3:
+ resolution: {integrity: sha512-Hc+ghLoSt6QaYZUv0WBiIvmMDZuZZ7oaDvdH8MbfOO4lOsxdXLEvuC6ePoGs9H1X9oCLyq6+NVN0MKqD+ydxyg==}
+ engines: {node: ^20.17.0 || >=22.9.0}
hpack.js@2.1.6:
resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==}
@@ -6208,6 +6483,10 @@ packages:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.8'}
+ http-errors@2.0.1:
+ resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
+ engines: {node: '>= 0.8'}
+
http-parser-js@0.5.10:
resolution: {integrity: sha512-Pysuw9XpUq5dVc/2SMHpuTY01RFl8fttgcyunjL7eEMhGM3cI4eOmiCycJDVCo/7O7ClfQD3SaI6ftDzqOXYMA==}
@@ -6224,9 +6503,9 @@ packages:
'@types/express':
optional: true
- http-proxy-middleware@3.0.5:
- resolution: {integrity: sha512-GLZZm1X38BPY4lkXA01jhwxvDoOkkXqjgVyUzVxiEK4iuRu03PZoYHhHRwxnfhQMDuaxi3vVri0YgSro/1oWqg==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ http-proxy-middleware@3.0.7:
+ resolution: {integrity: sha512-iwbQltVlx8bCrqePUM8C+hllHvdawVhQJaLrj1X7qllkvFQdXFsr16pW/mo9+JDVjN+QO2XUx9jd8SmoFkE5qw==}
+ engines: {node: ^14.18.0 || ^16.10.0 || >=18.0.0}
http-proxy@1.18.1:
resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
@@ -6264,6 +6543,10 @@ packages:
resolution: {integrity: sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==}
engines: {node: '>=0.10.0'}
+ iconv-lite@0.7.3:
+ resolution: {integrity: sha512-IKXpvIzjnC9XTAUbVBcMfGS0EPaIXtW6v+zr+RRp+hqULEpo0owZax6wyRwPOJbWbzjYspQwusTsfVr0ifh4uQ==}
+ engines: {node: '>=0.10.0'}
+
icss-utils@5.1.0:
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
@@ -6273,9 +6556,9 @@ packages:
ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- ignore-walk@7.0.0:
- resolution: {integrity: sha512-T4gbf83A4NH95zvhVYZc+qWocBBGlpzUXLPGurJggw/WIOwicfXJChLDP/iBZnN5WqROSu5Bm3hhle4z8a8YGQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ ignore-walk@8.0.0:
+ resolution: {integrity: sha512-FCeMZT4NiRQGh+YkeKMtWrOmBgWjHjMJ26WQWrRQyoyzqevdaGSakUaJW5xQYmjLlUVk2qUnCjYVBax9EKKg8A==}
+ engines: {node: ^20.17.0 || >=22.9.0}
ignore@5.3.2:
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
@@ -6323,12 +6606,16 @@ packages:
resolution: {integrity: sha512-+N0ngpO3e7cRUWOJAS7qw0IZIVc6XPrW4MlFBdD066F2L4k1L6ker3hLqSq7iXxU5tgS4WGkIUElWn5vogAEnw==}
engines: {node: ^18.17.0 || >=20.5.0}
+ ini@6.0.0:
+ resolution: {integrity: sha512-IBTdIkzZNOpqm7q3dRqJvMaldXjDHWkEDfrwGEQTs5eaQMWV+djAhR+wahyNNMAa+qpbDUhBMVt4ZKNwpPm7xQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
internal-ip@6.2.0:
resolution: {integrity: sha512-D8WGsR6yDt8uq7vDMu7mjcR+yRMm3dW8yufyChmszWRjcSHuxLBkR3GdS2HZAjodsaGuCvXeEJpueisXJULghg==}
engines: {node: '>=10'}
- ip-address@10.0.1:
- resolution: {integrity: sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==}
+ ip-address@10.2.0:
+ resolution: {integrity: sha512-/+S6j4E9AHvW9SWMSEY9Xfy66O5PWvVEJ08O0y5JGyEKQpojb0K0GKpz/v5HJ/G0vi3D2sjGK78119oXZeE0qA==}
engines: {node: '>= 12'}
ip-regex@4.3.0:
@@ -6397,6 +6684,10 @@ packages:
resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
engines: {node: '>=8'}
+ is-interactive@2.0.0:
+ resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==}
+ engines: {node: '>=12'}
+
is-ip@3.1.0:
resolution: {integrity: sha512-35vd5necO7IitFPjd/YBeqwWnyDWbuLH9ZXQdMfDA8TEo7pv5X8yfrvVO3xbJbLUlERCMvf6X0hTUamQxCYJ9Q==}
engines: {node: '>=8'}
@@ -6424,6 +6715,9 @@ packages:
is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
+ is-promise@4.0.0:
+ resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==}
+
is-reference@3.0.3:
resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==}
@@ -6443,6 +6737,14 @@ packages:
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
engines: {node: '>=10'}
+ is-unicode-supported@1.3.0:
+ 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-what@3.14.1:
resolution: {integrity: sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==}
@@ -6472,9 +6774,9 @@ packages:
isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
- isexe@3.1.1:
- resolution: {integrity: sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==}
- engines: {node: '>=16'}
+ isexe@4.0.0:
+ resolution: {integrity: sha512-FFUtZMpoZ8RqHS3XeXEmHWLA4thH+ZxCv2lOiPIn1Xc7CxrqhWzNSDzD+/chS/zbYezmiwWLdQC09JdQKmthOw==}
+ engines: {node: '>=20'}
isobject@3.0.1:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
@@ -6496,9 +6798,6 @@ packages:
resolution: {integrity: sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==}
engines: {node: '>=8'}
- jackspeak@3.4.3:
- resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
-
jackspeak@4.2.3:
resolution: {integrity: sha512-ykkVRwrYvFm1nb2AJfKKYPr0emF6IiXDYUaFx4Zn9ZuIH7MrzEZ3sD5RlqGXNRpHtvUHJyOnCEFxOlNDtGo7wg==}
engines: {node: 20 || >=22}
@@ -6522,6 +6821,9 @@ packages:
jju@1.4.0:
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
+ jose@6.2.3:
+ resolution: {integrity: sha512-YYVDInQKFJfR/xa3ojUTl8c2KoTwiL1R5Wg9YCydwH0x0B9grbzlg5HC7mMjCtUJjbQ/YnGEZIhI5tCgfTb4Hw==}
+
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -6553,9 +6855,9 @@ packages:
json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
- json-parse-even-better-errors@4.0.0:
- resolution: {integrity: sha512-lR4MXjGNgkJc7tkQ97kb2nuEMnNCyU//XYVH0MKTGcXEiSudQ5MKGKen3C5QubYy0vmq+JGitUg92uuywGEwIA==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ json-parse-even-better-errors@5.0.0:
+ resolution: {integrity: sha512-ZF1nxZ28VhQouRWhUcVlUIN3qwSgPuswK05s/HIaoetAoE/9tngVmCHjSxmSQPav1nd+lPtTL0YZ/2AFdR/iYQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
json-schema-traverse@0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
@@ -6563,6 +6865,9 @@ packages:
json-schema-traverse@1.0.0:
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
+ json-schema-typed@8.0.2:
+ resolution: {integrity: sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==}
+
json-stable-stringify-without-jsonify@1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
@@ -6645,8 +6950,8 @@ packages:
launch-editor@2.12.0:
resolution: {integrity: sha512-giOHXoOtifjdHqUamwKq6c49GzBdLjvxrd2D+Q4V6uOHopJv7p9VJxikDsQ/CBXZbEITgUqSVHXLTG3VhPP1Dg==}
- less-loader@12.2.0:
- resolution: {integrity: sha512-MYUxjSQSBUQmowc0l5nPieOYwMzGPUaTzB6inNW/bdPEG9zOL3eAAD1Qw5ZxSPk7we5dMojHwNODYMV1hq4EVg==}
+ less-loader@12.3.0:
+ resolution: {integrity: sha512-0M6+uYulvYIWs52y0LqN4+QM9TqWAohYSNTo4htE8Z7Cn3G/qQMEmktfHmyJT23k+20kU9zHH2wrfFXkxNLtVw==}
engines: {node: '>= 18.12.0'}
peerDependencies:
'@rspack/core': 0.x || 1.x
@@ -6658,9 +6963,9 @@ packages:
webpack:
optional: true
- less@4.2.2:
- resolution: {integrity: sha512-tkuLHQlvWUTeQ3doAqnHbNn8T6WX1KA8yvbKG9x4VtKtIjHsVKQZCH11zRgAfbDAXC2UNIg/K9BYAAcEzUIrNg==}
- engines: {node: '>=6'}
+ less@4.4.0:
+ resolution: {integrity: sha512-kdTwsyRuncDfjEs0DlRILWNvxhDG/Zij4YLO4TMJgDLW+8OzpfkdPnRgrsRuY1o+oaxJGWsps5f/RVBgGmmN0w==}
+ engines: {node: '>=14'}
hasBin: true
levn@0.4.1:
@@ -6682,9 +6987,9 @@ packages:
resolution: {integrity: sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- listr2@8.2.5:
- resolution: {integrity: sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==}
- engines: {node: '>=18.0.0'}
+ listr2@9.0.1:
+ resolution: {integrity: sha512-SL0JY3DaxylDuo/MecFeiC+7pedM0zia33zl0vcjgwcq1q1FWWF1To9EIauPbl8GbMCU0R2e0uJ8bZunhYKD2g==}
+ engines: {node: '>=20.0.0'}
lit-element@4.2.1:
resolution: {integrity: sha512-WGAWRGzirAgyphK2urmYOV72tlvnxw7YfyLDgQ+OZnM9vQQBQnumQ7jUJe6unEzwGU3ahFOjuz1iz1jjrpCPuw==}
@@ -6695,8 +7000,8 @@ packages:
lit@3.3.1:
resolution: {integrity: sha512-Ksr/8L3PTapbdXJCk+EJVB78jDodUMaP54gD24W186zGRARvwrsPfS60wae/SSCTCNZVPd1chXqio1qHQmu4NA==}
- lmdb@3.2.6:
- resolution: {integrity: sha512-SuHqzPl7mYStna8WRotY8XX/EUZBjjv3QyKIByeCLFfC9uXT/OIHByEcA07PzbMfQAM0KYJtLgtpMRlIe5dErQ==}
+ lmdb@3.4.2:
+ resolution: {integrity: sha512-nwVGUfTBUwJKXd6lRV8pFNfnrCC1+l49ESJRM19t/tFb/97QfJEixe5DYRvug5JO7DSFKoKaVy7oGMt5rVqZvg==}
hasBin: true
loader-runner@4.3.1:
@@ -6726,10 +7031,6 @@ packages:
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
engines: {node: '>=10'}
- locate-path@7.2.0:
- resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
lodash.debounce@4.0.8:
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
@@ -6746,6 +7047,10 @@ packages:
resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
engines: {node: '>=10'}
+ log-symbols@6.0.0:
+ resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==}
+ engines: {node: '>=18'}
+
log-update@4.0.0:
resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==}
engines: {node: '>=10'}
@@ -6754,9 +7059,6 @@ packages:
resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==}
engines: {node: '>=18'}
- lru-cache@10.4.3:
- resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
-
lru-cache@11.2.2:
resolution: {integrity: sha512-F9ODfyqML2coTIsQpSkRHnLSZMtkU8Q+mSfcaIyKwy58u+8k5nvAYeiNhsyMARvzNcXJ9QfWVrcPsC9e9rAxtg==}
engines: {node: 20 || >=22}
@@ -6790,9 +7092,9 @@ packages:
resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
engines: {node: '>=10'}
- make-fetch-happen@14.0.3:
- resolution: {integrity: sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ make-fetch-happen@15.0.6:
+ resolution: {integrity: sha512-Je0fLJ0F5atA7F+eIlLzk+Wkcl57JDf4kf+EW8xiP5E31xOQxkIxTbgf1Oi1Lw9tRI9UEMRdI5Vz2xTzoNU1Jw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
markdown-link-extractor@4.0.2:
resolution: {integrity: sha512-5cUOu4Vwx1wenJgxaudsJ8xwLUMN7747yDJX3V/L7+gi3e4MsCm7w5nbrDQQy8nEfnl4r5NV3pDXMAjhGXYXAw==}
@@ -6820,6 +7122,10 @@ packages:
resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==}
engines: {node: '>= 0.6'}
+ media-typer@1.1.0:
+ resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==}
+ engines: {node: '>= 0.8'}
+
memfs@4.50.0:
resolution: {integrity: sha512-N0LUYQMUA1yS5tJKmMtU9yprPm6ZIg24yr/OVv/7t6q0kKDIho4cBbXRi1XKttUmNYDYgF/q45qrKE/UhGO0CA==}
@@ -6830,6 +7136,10 @@ packages:
merge-descriptors@1.0.3:
resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
+ merge-descriptors@2.0.0:
+ resolution: {integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==}
+ engines: {node: '>=18'}
+
merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
@@ -6857,6 +7167,10 @@ packages:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
+ mime-types@3.0.2:
+ resolution: {integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==}
+ engines: {node: '>=18'}
+
mime@1.6.0:
resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==}
engines: {node: '>=4'}
@@ -6874,8 +7188,8 @@ packages:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
- mini-css-extract-plugin@2.9.2:
- resolution: {integrity: sha512-GJuACcS//jtq4kCtd5ii/M0SZf7OZRH+BxdqXZHaJfb8TJiVl+NgQRPwiYt2EuqeSkNydn/7vP+bcE27C5mb9w==}
+ mini-css-extract-plugin@2.9.4:
+ resolution: {integrity: sha512-ZWYT7ln73Hptxqxk2DxPU9MmapXRhxkJD6tkSR04dnQxm8BGu2hzgKLugK5yySD97u/8yy7Ma7E76k9ZdvtjkQ==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
@@ -6887,6 +7201,10 @@ packages:
resolution: {integrity: sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==}
engines: {node: 20 || >=22}
+ minimatch@10.2.5:
+ resolution: {integrity: sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==}
+ engines: {node: 18 || 20 || >=22}
+
minimatch@3.0.8:
resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==}
@@ -6908,9 +7226,9 @@ packages:
resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==}
engines: {node: '>=16 || 14 >=14.17'}
- minipass-fetch@4.0.1:
- resolution: {integrity: sha512-j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ minipass-fetch@5.0.2:
+ resolution: {integrity: sha512-2d0q2a8eCi2IRg/IGubCNRJoYbA1+YPXAzQVRFmB45gdGZafyivnZ5YSEfo3JikbjGxOdntGFvBQGqaSMXlAFQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
minipass-flush@1.0.5:
resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
@@ -6920,25 +7238,21 @@ packages:
resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
engines: {node: '>=8'}
- minipass-sized@1.0.3:
- resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==}
+ minipass-sized@2.0.0:
+ resolution: {integrity: sha512-zSsHhto5BcUVM2m1LurnXY6M//cGhVaegT71OfOXoprxT6o780GZd792ea6FfrQkuU4usHZIUczAQMRUE2plzA==}
engines: {node: '>=8'}
minipass@3.3.6:
resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
engines: {node: '>=8'}
- minipass@5.0.0:
- resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
- engines: {node: '>=8'}
-
minipass@7.1.2:
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
engines: {node: '>=16 || 14 >=14.17'}
- minizlib@2.1.2:
- resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
- engines: {node: '>= 8'}
+ minipass@7.1.3:
+ resolution: {integrity: sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==}
+ engines: {node: '>=16 || 14 >=14.17'}
minizlib@3.1.0:
resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==}
@@ -6980,10 +7294,6 @@ packages:
resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==}
hasBin: true
- mute-stream@1.0.0:
- resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
mute-stream@2.0.0:
resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==}
engines: {node: ^18.17.0 || >=20.5.0}
@@ -7039,31 +7349,24 @@ packages:
encoding:
optional: true
- node-forge@1.3.1:
- resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
- engines: {node: '>= 6.13.0'}
-
node-gyp-build-optional-packages@5.2.2:
resolution: {integrity: sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==}
hasBin: true
- node-gyp@11.5.0:
- resolution: {integrity: sha512-ra7Kvlhxn5V9Slyus0ygMa2h+UqExPqUIkfk7Pc8QTLT956JLSy51uWFwHtIYy0vI8cB4BDhc/S03+880My/LQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ node-gyp@12.4.0:
+ resolution: {integrity: sha512-OMcPNvqTCFUnNaBlmdgq+lfNqY7gTiSmNRDjY3uAXRyudeKZEZxu3CLtjMQrx4zZxCX2b/mpNqTtwuCJgXhHkw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
hasBin: true
node-machine-id@1.1.12:
resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==}
- node-releases@2.0.27:
- resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
-
node-releases@2.0.37:
resolution: {integrity: sha512-1h5gKZCF+pO/o3Iqt5Jp7wc9rH3eJJ0+nh/CIoiRwjRxde/hAHyLPXYN4V3CqKAbiZPSeJFSWHmJsbkicta0Eg==}
- nopt@8.1.0:
- resolution: {integrity: sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ nopt@9.0.0:
+ resolution: {integrity: sha512-Zhq3a+yFKrYwSBluL4H9XP3m3y5uvQkB/09CwDruCiRmR/UJYnn9W4R48ry0uGC70aeTPKLynBtscP9efFFcPw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
hasBin: true
normalize-path@3.0.0:
@@ -7074,33 +7377,33 @@ packages:
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
engines: {node: '>=0.10.0'}
- npm-bundled@4.0.0:
- resolution: {integrity: sha512-IxaQZDMsqfQ2Lz37VvyyEtKLe8FsRZuysmedy/N06TU1RyVppYKXrO4xIhR0F+7ubIBox6Q7nir6fQI3ej39iA==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ npm-bundled@5.0.0:
+ resolution: {integrity: sha512-JLSpbzh6UUXIEoqPsYBvVNVmyrjVZ1fzEFbqxKkTJQkWBO3xFzFT+KDnSKQWwOQNbuWRwt5LSD6HOTLGIWzfrw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
- npm-install-checks@7.1.2:
- resolution: {integrity: sha512-z9HJBCYw9Zr8BqXcllKIs5nI+QggAImbBdHphOzVYrz2CB4iQ6FzWyKmlqDZua+51nAu7FcemlbTc9VgQN5XDQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ npm-install-checks@8.0.0:
+ resolution: {integrity: sha512-ScAUdMpyzkbpxoNekQ3tNRdFI8SJ86wgKZSQZdUxT+bj0wVFpsEMWnkXP0twVe1gJyNF5apBWDJhhIbgrIViRA==}
+ engines: {node: ^20.17.0 || >=22.9.0}
- npm-normalize-package-bin@4.0.0:
- resolution: {integrity: sha512-TZKxPvItzai9kN9H/TkmCtx/ZN/hvr3vUycjlfmH0ootY9yFBzNOpiXAdIn1Iteqsvk4lQn6B5PTrt+n6h8k/w==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ npm-normalize-package-bin@5.0.0:
+ resolution: {integrity: sha512-CJi3OS4JLsNMmr2u07OJlhcrPxCeOeP/4xq67aWNai6TNWWbTrlNDgl8NcFKVlcBKp18GPj+EzbNIgrBfZhsag==}
+ engines: {node: ^20.17.0 || >=22.9.0}
- npm-package-arg@12.0.2:
- resolution: {integrity: sha512-f1NpFjNI9O4VbKMOlA5QoBq/vSQPORHcTZ2feJpFkTHJ9eQkdlmZEKSjcAhxTGInC7RlEyScT9ui67NaOsjFWA==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ npm-package-arg@13.0.0:
+ resolution: {integrity: sha512-+t2etZAGcB7TbbLHfDwooV9ppB2LhhcT6A+L9cahsf9mEUAoQ6CktLEVvEnpD0N5CkX7zJqnPGaFtoQDy9EkHQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
- npm-packlist@9.0.0:
- resolution: {integrity: sha512-8qSayfmHJQTx3nJWYbbUmflpyarbLMBc6LCAjYsiGtXxDB68HaZpb8re6zeaLGxZzDuMdhsg70jryJe+RrItVQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ npm-packlist@10.0.4:
+ resolution: {integrity: sha512-uMW73iajD8hiH4ZBxEV3HC+eTnppIqwakjOYuvgddnalIw2lJguKviK1pcUJDlIWm1wSJkchpDZDSVVsZEYRng==}
+ engines: {node: ^20.17.0 || >=22.9.0}
- npm-pick-manifest@10.0.0:
- resolution: {integrity: sha512-r4fFa4FqYY8xaM7fHecQ9Z2nE9hgNfJR+EmoKv0+chvzWkBcORX3r0FpTByP+CbOVJDladMXnPQGVN8PBLGuTQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ npm-pick-manifest@11.0.3:
+ resolution: {integrity: sha512-buzyCfeoGY/PxKqmBqn1IUJrZnUi1VVJTdSSRPGI60tJdUhUoSQFhs0zycJokDdOznQentgrpf8LayEHyyYlqQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
- npm-registry-fetch@18.0.2:
- resolution: {integrity: sha512-LeVMZBBVy+oQb5R6FDV9OlJCcWDU+al10oKpe+nsvcHnG24Z3uM3SvJYKfGJlfGjVU8v9liejCrUR/M5HO5NEQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ npm-registry-fetch@19.1.1:
+ resolution: {integrity: sha512-TakBap6OM1w0H73VZVDf44iFXsOS3h+L4wVMXmbWOQroZgFhMch0juN6XSzBNlD965yIKvWg2dfu7NSiaYLxtw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
@@ -7121,6 +7424,10 @@ packages:
'@swc/core':
optional: true
+ object-assign@4.1.1:
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
+ engines: {node: '>=0.10.0'}
+
object-inspect@1.13.4:
resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
engines: {node: '>= 0.4'}
@@ -7153,8 +7460,8 @@ packages:
only@0.0.2:
resolution: {integrity: sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==}
- open@10.1.0:
- resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
+ open@10.2.0:
+ resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==}
engines: {node: '>=18'}
open@8.4.2:
@@ -7169,9 +7476,9 @@ packages:
resolution: {integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==}
engines: {node: '>=10'}
- ora@5.4.1:
- resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
- engines: {node: '>=10'}
+ ora@8.2.0:
+ resolution: {integrity: sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==}
+ engines: {node: '>=18'}
ordered-binary@1.6.0:
resolution: {integrity: sha512-IQh2aMfMIDbPjI/8a3Edr+PiOpcsB7yo8NdW7aHWVaoR/pcDldunMvnnwbk/auPGqmKeAdxtZl7MHX/QmPwhvQ==}
@@ -7205,10 +7512,6 @@ packages:
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
engines: {node: '>=10'}
- p-limit@4.0.0:
- resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
p-locate@4.1.0:
resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==}
engines: {node: '>=8'}
@@ -7217,10 +7520,6 @@ packages:
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
engines: {node: '>=10'}
- p-locate@6.0.0:
- resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
p-map@2.1.0:
resolution: {integrity: sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==}
engines: {node: '>=6'}
@@ -7250,9 +7549,9 @@ packages:
package-manager-detector@1.5.0:
resolution: {integrity: sha512-uBj69dVlYe/+wxj8JOpr97XfsxH/eumMt6HqjNTmJDf/6NO9s+0uxeOneIz3AsPt2m6y9PqzDzd3ATcU17MNfw==}
- pacote@20.0.0:
- resolution: {integrity: sha512-pRjC5UFwZCgx9kUFDVM9YEahv4guZ1nSLqwmWiLUnDbGsjs+U5w7z6Uc8HNR1a6x8qnu5y9xtGE6D1uAuYz+0A==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ pacote@21.5.1:
+ resolution: {integrity: sha512-KvcJ9iy3crysCsgqc4+PknH/w6jkrp8JN36mpZBPwNaDRwTfMZD37YzRazNstiZUOhuF5pno9f78n9mEJBavwg==}
+ engines: {node: ^20.17.0 || >=22.9.0}
hasBin: true
parent-module@1.0.1:
@@ -7270,8 +7569,8 @@ packages:
resolution: {integrity: sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==}
engines: {node: '>= 0.10'}
- parse5-html-rewriting-stream@7.0.0:
- resolution: {integrity: sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==}
+ parse5-html-rewriting-stream@8.0.0:
+ resolution: {integrity: sha512-wzh11mj8KKkno1pZEu+l2EVeWsuKDfR5KNWZOTsslfUX8lPDZx77m9T0kIoAVkFtD1nx6YF8oh4BnPHvxMtNMw==}
parse5-htmlparser2-tree-adapter@7.1.0:
resolution: {integrity: sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==}
@@ -7279,8 +7578,8 @@ packages:
parse5-parser-stream@7.1.2:
resolution: {integrity: sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==}
- parse5-sax-parser@7.0.0:
- resolution: {integrity: sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==}
+ parse5-sax-parser@8.0.0:
+ resolution: {integrity: sha512-/dQ8UzHZwnrzs3EvDj6IkKrD/jIZyTlB+8XrHJvcjNgRdmWruNdN9i9RK/JtxakmlUdPwKubKPTCqvbTgzGhrw==}
parse5@6.0.1:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
@@ -7302,10 +7601,6 @@ packages:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
- path-exists@5.0.0:
- resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
path-is-absolute@1.0.1:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
@@ -7317,10 +7612,6 @@ packages:
path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- path-scurry@1.11.1:
- resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
- engines: {node: '>=16 || 14 >=14.18'}
-
path-scurry@2.0.2:
resolution: {integrity: sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==}
engines: {node: 18 || 20 || >=22}
@@ -7328,14 +7619,13 @@ packages:
path-to-regexp@0.1.12:
resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
+ path-to-regexp@8.4.2:
+ resolution: {integrity: sha512-qRcuIdP69NPm4qbACK+aDogI5CBDMi1jKe0ry5rSQJz8JVLsC7jV8XpiJjGRLLol3N+R5ihGYcrPLTno6pAdBA==}
+
path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
- path-type@6.0.0:
- resolution: {integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==}
- engines: {node: '>=18'}
-
pathe@2.0.3:
resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
@@ -7361,16 +7651,21 @@ packages:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
- piscina@4.8.0:
- resolution: {integrity: sha512-EZJb+ZxDrQf3dihsUL7p42pjNyrNIFJCrRHPMgxu/svsj+P3xS3fuEWp7k2+rfsavfl1N0G29b1HGs7J0m8rZA==}
+ piscina@5.2.0:
+ resolution: {integrity: sha512-DszUCKeVN/5G5QKo6jAVHL8fmKnkJvQ0ACiVgY7YGCq3TUB2oznAOayvZPIAdEThvhczkXR+qm3IHsNXpFCYfA==}
+ engines: {node: '>=20.x'}
- pkg-dir@7.0.0:
- resolution: {integrity: sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==}
- engines: {node: '>=14.16'}
+ pkce-challenge@5.0.1:
+ resolution: {integrity: sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==}
+ engines: {node: '>=16.20.0'}
pkg-types@1.3.1:
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
+ pkijs@3.4.0:
+ resolution: {integrity: sha512-emEcLuomt2j03vxD54giVB4SxTjnsqkU692xZOZXHDVoYyypEm+b3jpiTcc+Cf+myooc+/Ly0z01jqeNHVgJGw==}
+ engines: {node: '>=16.0.0'}
+
playwright-core@1.56.1:
resolution: {integrity: sha512-hutraynyn31F+Bifme+Ps9Vq59hKuUCz7H1kDOcBs+2oGguKkWTU50bBWrtz34OUWmIwpBTWDxaRPXrIXkgvmQ==}
engines: {node: '>=18'}
@@ -7428,8 +7723,8 @@ packages:
postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- postcss@8.5.2:
- resolution: {integrity: sha512-MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA==}
+ postcss@8.5.12:
+ resolution: {integrity: sha512-W62t/Se6rA0Az3DfCL0AqJwXuKwBeYg6nOaIgzP+xZ7N5BFCI7DYi1qs6ygUYT6rvfi6t9k65UMLJC+PHZpDAA==}
engines: {node: ^10 || ^12 || >=14}
postcss@8.5.6:
@@ -7473,13 +7768,13 @@ packages:
resolution: {integrity: sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==}
engines: {node: ^18.17.0 || >=20.5.0}
+ proc-log@6.1.0:
+ resolution: {integrity: sha512-iG+GYldRf2BQ0UDUAd6JQ/RwzaQy6mXmsk/IzlYyal4A4SNFw54MeH4/tLkF4I5WoWG9SQwuqWzS99jaFQHBuQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
process-nextick-args@2.0.1:
resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
- promise-retry@2.0.1:
- resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
- engines: {node: '>=10'}
-
proxy-addr@2.0.7:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
engines: {node: '>= 0.10'}
@@ -7499,12 +7794,15 @@ packages:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
- qs@6.13.0:
- resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
- engines: {node: '>=0.6'}
+ pvtsutils@1.3.6:
+ resolution: {integrity: sha512-PLgQXQ6H2FWCaeRak8vvk1GW462lMxB5s3Jm673N82zI4vqtVUPuZdffdZbPDFRoU8kAhItWFtPCWiPpp4/EDg==}
+
+ pvutils@1.1.5:
+ resolution: {integrity: sha512-KTqnxsgGiQ6ZAzZCVlJH5eOjSnvlyEgx1m8bkRJfOhmGRqfo5KLvmAlACQkrjEtOQ4B7wF9TdSLIs9O90MX9xA==}
+ engines: {node: '>=16.0.0'}
- qs@6.14.0:
- resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==}
+ qs@6.15.3:
+ resolution: {integrity: sha512-O9gl3zCl5h5blw1KGUzQKhA5oUXSl8rwUIM5o0S3nCXMliSvy5Dzx7/DJcI+SwgICv+IneSZwhBh1oSyEHA71A==}
engines: {node: '>=0.6'}
quansync@0.2.11:
@@ -7513,9 +7811,6 @@ packages:
queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
- randombytes@2.1.0:
- resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
-
range-parser@1.2.1:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
@@ -7529,10 +7824,14 @@ packages:
raptor-util@3.2.0:
resolution: {integrity: sha512-uEDMMkBCJvjTqYMBnJNxn+neiS6a0rhybQNA9RaexGor1uvKjwyHA5VcbZMZEuqXhKUWbL+WNS7PhuZVZNB7pw==}
- raw-body@2.5.2:
- resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
+ raw-body@2.5.3:
+ resolution: {integrity: sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==}
engines: {node: '>= 0.8'}
+ raw-body@3.0.2:
+ resolution: {integrity: sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==}
+ engines: {node: '>= 0.10'}
+
react-aria-components@1.19.0:
resolution: {integrity: sha512-2smSS5nqJ8cGYMQezuUXveZm7eMyHCqTN6mDpylQBYLYbdF5dxCCuW1DHn1VKLe1DybSfPvX/cZtJlDmvFfn8A==}
peerDependencies:
@@ -7614,9 +7913,6 @@ packages:
regenerate@1.4.2:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
- regenerator-runtime@0.14.1:
- resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
-
regex-parser@2.3.1:
resolution: {integrity: sha512-yXLRqatcCuKtVHsWrNg0JL3l1zGfdXeEvDa0bdu4tCDQw0RpMDZsqbkyRTUnKMR0tXF627V2oEWjBEaEdqTwtQ==}
@@ -7692,10 +7988,6 @@ packages:
resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==}
engines: {node: '>=18'}
- retry@0.12.0:
- resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
- engines: {node: '>= 4'}
-
retry@0.13.1:
resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
engines: {node: '>= 4'}
@@ -7717,6 +8009,10 @@ packages:
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
+ router@2.2.0:
+ resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==}
+ engines: {node: '>= 18'}
+
run-applescript@7.1.0:
resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==}
engines: {node: '>=18'}
@@ -7724,9 +8020,6 @@ packages:
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
- rxjs@7.8.1:
- resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
-
rxjs@7.8.2:
resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
@@ -7768,8 +8061,8 @@ packages:
webpack:
optional: true
- sass@1.85.0:
- resolution: {integrity: sha512-3ToiC1xZ1Y8aU7+CkgCI/tqyuPXEmYGJXO7H4uqp0xkLXUqp88rQQ4j1HmP37xSJLbCJPaIiv+cT1y+grssrww==}
+ sass@1.90.0:
+ resolution: {integrity: sha512-9GUyuksjw70uNpb1MTYWsH9MQHOHY6kwfnkafC24+7aOMZn9+rVMBxRbLvw756mrBFbIsFg6Xw9IkR2Fnn3k+Q==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -7797,9 +8090,9 @@ packages:
resolution: {integrity: sha512-7t6hNbYMxM+VHXTgJmxwgZgLGktuXtVVD5AivWzNTdJBM4DBjnDKDzkf2SrNjihaArpeJYNjxkELBu1evI4lQA==}
engines: {node: '>=0.12.0'}
- selfsigned@2.4.1:
- resolution: {integrity: sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==}
- engines: {node: '>=10'}
+ selfsigned@5.5.0:
+ resolution: {integrity: sha512-ftnu3TW4+3eBfLRFnDEkzGxSF/10BJBkaLJuBHZX0kiPS7bRdlpZGu6YGt4KngMkdTwJE6MbjavFpqHvqVt+Ew==}
+ engines: {node: '>=18'}
semver@5.7.2:
resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
@@ -7814,8 +8107,8 @@ packages:
engines: {node: '>=10'}
hasBin: true
- semver@7.7.1:
- resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
+ semver@7.7.2:
+ resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==}
engines: {node: '>=10'}
hasBin: true
@@ -7828,8 +8121,13 @@ packages:
resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
engines: {node: '>= 0.8.0'}
- serialize-javascript@6.0.2:
- resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
+ send@1.2.1:
+ resolution: {integrity: sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==}
+ engines: {node: '>= 18'}
+
+ serialize-javascript@7.0.7:
+ resolution: {integrity: sha512-YAy8Od6KV+uuwUuU50np8fGB/Aues6Y0nAhA9y/hId74PlKUcme4pXcBD46NWKr1Q4osN/iseZ17YqO1XfmI8g==}
+ engines: {node: '>=20.0.0'}
seroval-plugins@1.3.3:
resolution: {integrity: sha512-16OL3NnUBw8JG1jBLUoZJsLnQq0n5Ua6aHalhJK4fMQkz1lqR7Osz1sA30trBtd9VUDc2NgkuRCn8+/pBwqZ+w==}
@@ -7849,6 +8147,10 @@ packages:
resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==}
engines: {node: '>= 0.8.0'}
+ serve-static@2.2.1:
+ resolution: {integrity: sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==}
+ engines: {node: '>= 18'}
+
setprototypeof@1.1.0:
resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
@@ -7915,8 +8217,8 @@ packages:
resolution: {integrity: sha512-5n7zqPAjL+RzR7n09NPKpWBXmDCtuRpQzIL+ycj8pe6MayV7cDuFmceoyPQJ0c95oFj6feY7SZvhX/+S0i1ukg==}
hasBin: true
- side-channel-list@1.0.0:
- resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
+ side-channel-list@1.0.1:
+ resolution: {integrity: sha512-mjn/0bi/oUURjc5Xl7IaWi/OJJJumuoJFQJfDDyO46+hBWsfaVM65TBHq2eoZBhzl9EchxOijpkbRC8SVBQU0w==}
engines: {node: '>= 0.4'}
side-channel-map@1.0.1:
@@ -7927,8 +8229,8 @@ packages:
resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
engines: {node: '>= 0.4'}
- side-channel@1.1.0:
- resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
+ side-channel@1.1.1:
+ resolution: {integrity: sha512-6x6dK6zJdpTzF4sQeNYxwtvBzf6Eg4GtlesS94HOvTudUeyK2WXAaIfmDgsyslYrRBeFIlsi54AYsFGUuhmvrQ==}
engines: {node: '>= 0.4'}
siginfo@2.0.0:
@@ -7941,18 +8243,14 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- sigstore@3.1.0:
- resolution: {integrity: sha512-ZpzWAFHIFqyFE56dXqgX/DkDRZdz+rRcjoIk/RQU4IX0wiCv1l8S7ZrXDHcCc+uaf+6o7w3h2l3g6GYG5TKN9Q==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ sigstore@4.1.1:
+ resolution: {integrity: sha512-endqECJkfhozrXMK5ngu/UAA0xVcVEFdnHJCElGaExypjW+HK5i6zu3NteLoaX/iFbRUbC3+DjttQs0GARr+5w==}
+ engines: {node: ^20.17.0 || >=22.9.0}
slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
- slash@5.1.0:
- resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
- engines: {node: '>=14.16'}
-
slice-ansi@4.0.0:
resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
engines: {node: '>=10'}
@@ -8009,10 +8307,6 @@ packages:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
- source-map@0.7.4:
- resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
- engines: {node: '>= 8'}
-
source-map@0.7.6:
resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==}
engines: {node: '>= 12'}
@@ -8020,14 +8314,11 @@ packages:
spawndamnit@3.0.1:
resolution: {integrity: sha512-MmnduQUuHCoFckZoWnXsTg7JaiLBJrKFj9UI2MbRPGaJeVpsLcVBu6P/IGZovziM/YBsellCmsprgNA+w0CzVg==}
- spdx-correct@3.2.0:
- resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
-
spdx-exceptions@2.5.0:
resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
- spdx-expression-parse@3.0.1:
- resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
+ spdx-expression-parse@4.0.0:
+ resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==}
spdx-license-ids@3.0.22:
resolution: {integrity: sha512-4PRT4nh1EImPbt2jASOKHX7PB7I+e4IWNLvkKFDxNhJlfjbYlleYQh285Z/3mPTHSAK/AvdMmw5BNNuYH8ShgQ==}
@@ -8042,9 +8333,9 @@ packages:
sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
- ssri@12.0.0:
- resolution: {integrity: sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ ssri@13.0.1:
+ resolution: {integrity: sha512-QUiRf1+u9wPTL/76GTYlKttDEBWV1ga9ZXW8BG6kfdeyyM8LGPix9gROyg9V2+P0xNyF3X2Go526xKFdMZrHSQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
stable-hash-x@0.2.0:
resolution: {integrity: sha512-o3yWv49B/o4QZk5ZcsALc6t0+eCelPc44zZsLtCQnZPDwFpDYSWcDnrv2TtMmMbQ7uKo3J0HTURCqckw23czNQ==}
@@ -8064,9 +8355,17 @@ packages:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
+ statuses@2.0.2:
+ resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
+ engines: {node: '>= 0.8'}
+
std-env@4.1.0:
resolution: {integrity: sha512-Rq7ybcX2RuC55r9oaPVEW7/xu3tj8u4GeBYHBWCychFtzMIr86A7e3PPEBPT37sHStKX3+TiX/Fr/ACmJLVlLQ==}
+ stdin-discarder@0.2.2:
+ resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
+ engines: {node: '>=18'}
+
string-argv@0.3.2:
resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
engines: {node: '>=0.6.19'}
@@ -8075,10 +8374,6 @@ packages:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
- string-width@5.1.2:
- resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
- engines: {node: '>=12'}
-
string-width@7.2.0:
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
engines: {node: '>=18'}
@@ -8157,10 +8452,6 @@ packages:
resolution: {integrity: sha512-eeEgGc2DtiUil5ANdtd8vPwt9AgaMdnuUFnPft9F5oMvU/FHu5IHFic+p1dR/UOB7XU2mX2yHW+NcTch4DCh5Q==}
engines: {node: '>=16'}
- symbol-observable@4.0.0:
- resolution: {integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==}
- engines: {node: '>=0.10'}
-
symbol-tree@3.2.4:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
@@ -8172,11 +8463,6 @@ packages:
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
engines: {node: '>=6'}
- tar@6.2.1:
- resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
- engines: {node: '>=10'}
- deprecated: Old versions of tar are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me
-
tar@7.5.13:
resolution: {integrity: sha512-tOG/7GyXpFevhXVh8jOPJrmtRpOTsYqUIkVdVooZYJS/z8WhfQUX8RJILmeuJNinGAMSu1veBr4asSHFt5/hng==}
engines: {node: '>=18'}
@@ -8201,8 +8487,8 @@ packages:
uglify-js:
optional: true
- terser@5.39.0:
- resolution: {integrity: sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==}
+ terser@5.43.1:
+ resolution: {integrity: sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==}
engines: {node: '>=10'}
hasBin: true
@@ -8222,6 +8508,10 @@ packages:
resolution: {integrity: sha512-VKS/ZaQhhkKFMANmAOhhXVoIfBXblQxGX1myCQ2faQrfmobMftXeJPcZGp0gS07ocvGJWDLZGyOZDadDBqYIJg==}
engines: {node: '>=18'}
+ tinyglobby@0.2.14:
+ resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==}
+ engines: {node: '>=12.0.0'}
+
tinyglobby@0.2.15:
resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
engines: {node: '>=12.0.0'}
@@ -8296,6 +8586,9 @@ packages:
resolution: {integrity: sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==}
engines: {node: '>=6'}
+ tslib@1.14.1:
+ resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
+
tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
@@ -8303,9 +8596,13 @@ packages:
resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==}
engines: {node: '>=0.6.x'}
- tuf-js@3.1.0:
- resolution: {integrity: sha512-3T3T04WzowbwV2FDiGXBbr81t64g1MUGGJRgT4x5o97N+8ArdhVCAF9IxFrxuSJmM3E5Asn7nKHkao0ibcZXAg==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ tsyringe@4.10.0:
+ resolution: {integrity: sha512-axr3IdNuVIxnaK5XGEUFTu3YmAQ6lllgrvqfEoR16g/HGnYY/6We4oWENtAnzK6/LpJ2ur9PAb80RBt7/U4ugw==}
+ engines: {node: '>= 6.0.0'}
+
+ tuf-js@4.1.0:
+ resolution: {integrity: sha512-50QV99kCKH5P/Vs4E2Gzp7BopNV+KzTXqWeaxrfu5IQJBOULRsTIS9seSsOVT8ZnGXzCyx55nYWAi4qJzpZKEQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
@@ -8319,6 +8616,10 @@ packages:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
+ type-is@2.1.0:
+ resolution: {integrity: sha512-faYHw0anBbc/kWF3zFTEnxSFOAGUX9GFbOBthvDdLsIlEoWOFOtS0zgCiQYwIskL9iGXZL3kAXD8OoZ4GmMATA==}
+ engines: {node: '>= 18'}
+
typed-assert@1.0.9:
resolution: {integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==}
@@ -8334,8 +8635,8 @@ packages:
engines: {node: '>=14.17'}
hasBin: true
- typescript@5.6.3:
- resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==}
+ typescript@5.9.3:
+ resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
engines: {node: '>=14.17'}
hasBin: true
@@ -8345,6 +8646,10 @@ packages:
undici-types@7.16.0:
resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
+ undici@6.27.0:
+ resolution: {integrity: sha512-YmfV3YnEDzXRC5lZ2jWtWWHKGUm1zIt8AhesR1tens+HTNv+YZlN/dp6G727LOvMJ8xjP9Be7Y2Sdr96LDm+pg==}
+ engines: {node: '>=18.17'}
+
undici@7.16.0:
resolution: {integrity: sha512-QEg3HPMll0o3t2ourKwOeUAZ159Kn9mx5pnzHRQO8+Wixmh88YdZRiIwat0iNzNNXn0yoEtXJqFpyW7eM8BV7g==}
engines: {node: '>=20.18.1'}
@@ -8365,18 +8670,6 @@ packages:
resolution: {integrity: sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==}
engines: {node: '>=4'}
- unicorn-magic@0.3.0:
- resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==}
- engines: {node: '>=18'}
-
- unique-filename@4.0.0:
- resolution: {integrity: sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
-
- unique-slug@5.0.0:
- resolution: {integrity: sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg==}
- engines: {node: ^18.17.0 || >=20.5.0}
-
universalify@0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
engines: {node: '>= 4.0.0'}
@@ -8388,12 +8681,6 @@ packages:
unrs-resolver@1.11.1:
resolution: {integrity: sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==}
- update-browserslist-db@1.1.4:
- resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
-
update-browserslist-db@1.2.3:
resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
hasBin: true
@@ -8420,9 +8707,6 @@ packages:
deprecated: uuid@10 and below is no longer supported. For ESM codebases, update to uuid@latest. For CommonJS codebases, use uuid@11 (but be aware this version will likely be deprecated in 2028).
hasBin: true
- validate-npm-package-license@3.0.4:
- resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
-
validate-npm-package-name@6.0.2:
resolution: {integrity: sha512-IUoow1YUtvoBBC06dXs8bR8B9vuA3aJfmQNKMoaPG/OFsPmoQvw8xh+6Ye25Gx9DQhoEom3Pcu9MKHerm/NpUQ==}
engines: {node: ^18.17.0 || >=20.5.0}
@@ -8524,6 +8808,46 @@ packages:
yaml:
optional: true
+ vite@7.3.6:
+ resolution: {integrity: sha512-4XP60spRGjSZFf1qYH+dJIkK2znL3zQfl9KkOV9MkkRR/3Dls0dxaBsQPTloEc5BLXWPL9vsOxopxyKoMmDueg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^20.19.0 || >=22.12.0
+ jiti: '>=1.21.0'
+ less: ^4.0.0
+ lightningcss: ^1.21.0
+ sass: ^1.70.0
+ sass-embedded: ^1.70.0
+ stylus: '>=0.54.8'
+ sugarss: ^5.0.0
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
+
vitefu@0.2.5:
resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==}
peerDependencies:
@@ -8626,8 +8950,8 @@ packages:
warp10@2.1.0:
resolution: {integrity: sha512-krhkqzJdUxAZv2Cx0Gz6dN1r7TTrG9RDewkDHBbJQIqbNTCdB5ZUHVh7VkA4DgrKW4ZXPPUQKCwmI/3btDse9A==}
- watchpack@2.4.2:
- resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==}
+ watchpack@2.4.4:
+ resolution: {integrity: sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==}
engines: {node: '>=10.13.0'}
watchpack@2.5.1:
@@ -8659,8 +8983,8 @@ packages:
webpack:
optional: true
- webpack-dev-server@5.2.2:
- resolution: {integrity: sha512-QcQ72gh8a+7JO63TAx/6XZf/CWhgMzu5m0QirvPfGvptOusAxG12w2+aua1Jkjr7hzaWDnJ2n6JFeexMHI+Zjg==}
+ webpack-dev-server@5.2.5:
+ resolution: {integrity: sha512-4wZtCquSuv9CKX8oybo+mqxtxZqWz47uM1Ch94lxowBztOhWCbhqvRbfC/mODOwxgV2brY+JGZpHq58/SuVFYg==}
engines: {node: '>= 18.12.0'}
hasBin: true
peerDependencies:
@@ -8729,9 +9053,9 @@ packages:
engines: {node: '>= 8'}
hasBin: true
- which@5.0.0:
- resolution: {integrity: sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ which@6.0.1:
+ resolution: {integrity: sha512-oGLe46MIrCRqX7ytPUf66EAYvdeMIZYn3WaocqqKZAxrBpkqHfL/qvTyJ/bTk5+AqHCjXmrv3CEWgy368zhRUg==}
+ engines: {node: ^20.17.0 || >=22.9.0}
hasBin: true
why-is-node-running@2.3.0:
@@ -8754,10 +9078,6 @@ packages:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
- wrap-ansi@8.1.0:
- resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
- engines: {node: '>=12'}
-
wrap-ansi@9.0.2:
resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==}
engines: {node: '>=18'}
@@ -8789,6 +9109,10 @@ packages:
utf-8-validate:
optional: true
+ wsl-utils@0.1.0:
+ resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==}
+ engines: {node: '>=18'}
+
xml-name-validator@5.0.0:
resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
engines: {node: '>=18'}
@@ -8819,10 +9143,18 @@ packages:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
engines: {node: '>=12'}
+ yargs-parser@22.0.0:
+ resolution: {integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=23}
+
yargs@17.7.2:
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
engines: {node: '>=12'}
+ yargs@18.0.0:
+ resolution: {integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=23}
+
ylru@1.4.0:
resolution: {integrity: sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA==}
engines: {node: '>= 4.0.0'}
@@ -8831,20 +9163,24 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- yocto-queue@1.2.1:
- resolution: {integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==}
- engines: {node: '>=12.20'}
-
yoctocolors-cjs@2.1.3:
resolution: {integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==}
engines: {node: '>=18'}
+ zod-to-json-schema@3.25.2:
+ resolution: {integrity: sha512-O/PgfnpT1xKSDeQYSCfRI5Gy3hPf91mKVDuYLUHZJMiDFptvP41MSnWofm8dnCm0256ZNfZIM7DSzuSMAFnjHA==}
+ peerDependencies:
+ zod: ^3.25.28 || ^4
+
zod@3.25.76:
resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
zod@4.1.12:
resolution: {integrity: sha512-JInaHOamG8pt5+Ey8kGmdcAcg3OL9reK8ltczgHTAwNhMys/6ThXHityHxVV2p3fkw/c+MAvBHFVYHFZDmjMCQ==}
+ zod@4.1.13:
+ resolution: {integrity: sha512-AvvthqfqrAhNH9dnfmrfKzX5upOdjUVJYFqNSlkmGf64gRaTzlPwz99IHYnVs28qYAybvAlBV+H7pn0saFY4Ig==}
+
zone.js@0.15.1:
resolution: {integrity: sha512-XE96n56IQpJM7NAoXswY3XRLcWFW83xe0BiAOeMD7K5k5xecOeul3Qcpx6GqEeeHNkW5DWL5zOyTbEfB4eti8w==}
@@ -8854,163 +9190,164 @@ snapshots:
'@adobe/css-tools@4.4.4': {}
+ '@algolia/abtesting@1.1.0':
+ dependencies:
+ '@algolia/client-common': 5.35.0
+ '@algolia/requester-browser-xhr': 5.35.0
+ '@algolia/requester-fetch': 5.35.0
+ '@algolia/requester-node-http': 5.35.0
+
+ '@algolia/client-abtesting@5.35.0':
+ dependencies:
+ '@algolia/client-common': 5.35.0
+ '@algolia/requester-browser-xhr': 5.35.0
+ '@algolia/requester-fetch': 5.35.0
+ '@algolia/requester-node-http': 5.35.0
+
+ '@algolia/client-analytics@5.35.0':
+ dependencies:
+ '@algolia/client-common': 5.35.0
+ '@algolia/requester-browser-xhr': 5.35.0
+ '@algolia/requester-fetch': 5.35.0
+ '@algolia/requester-node-http': 5.35.0
+
+ '@algolia/client-common@5.35.0': {}
+
+ '@algolia/client-insights@5.35.0':
+ dependencies:
+ '@algolia/client-common': 5.35.0
+ '@algolia/requester-browser-xhr': 5.35.0
+ '@algolia/requester-fetch': 5.35.0
+ '@algolia/requester-node-http': 5.35.0
+
+ '@algolia/client-personalization@5.35.0':
+ dependencies:
+ '@algolia/client-common': 5.35.0
+ '@algolia/requester-browser-xhr': 5.35.0
+ '@algolia/requester-fetch': 5.35.0
+ '@algolia/requester-node-http': 5.35.0
+
+ '@algolia/client-query-suggestions@5.35.0':
+ dependencies:
+ '@algolia/client-common': 5.35.0
+ '@algolia/requester-browser-xhr': 5.35.0
+ '@algolia/requester-fetch': 5.35.0
+ '@algolia/requester-node-http': 5.35.0
+
+ '@algolia/client-search@5.35.0':
+ dependencies:
+ '@algolia/client-common': 5.35.0
+ '@algolia/requester-browser-xhr': 5.35.0
+ '@algolia/requester-fetch': 5.35.0
+ '@algolia/requester-node-http': 5.35.0
+
+ '@algolia/ingestion@1.35.0':
+ dependencies:
+ '@algolia/client-common': 5.35.0
+ '@algolia/requester-browser-xhr': 5.35.0
+ '@algolia/requester-fetch': 5.35.0
+ '@algolia/requester-node-http': 5.35.0
+
+ '@algolia/monitoring@1.35.0':
+ dependencies:
+ '@algolia/client-common': 5.35.0
+ '@algolia/requester-browser-xhr': 5.35.0
+ '@algolia/requester-fetch': 5.35.0
+ '@algolia/requester-node-http': 5.35.0
+
+ '@algolia/recommend@5.35.0':
+ dependencies:
+ '@algolia/client-common': 5.35.0
+ '@algolia/requester-browser-xhr': 5.35.0
+ '@algolia/requester-fetch': 5.35.0
+ '@algolia/requester-node-http': 5.35.0
+
+ '@algolia/requester-browser-xhr@5.35.0':
+ dependencies:
+ '@algolia/client-common': 5.35.0
+
+ '@algolia/requester-fetch@5.35.0':
+ dependencies:
+ '@algolia/client-common': 5.35.0
+
+ '@algolia/requester-node-http@5.35.0':
+ dependencies:
+ '@algolia/client-common': 5.35.0
+
'@ampproject/remapping@2.3.0':
dependencies:
'@jridgewell/gen-mapping': 0.3.13
'@jridgewell/trace-mapping': 0.3.31
- '@angular-devkit/architect@0.1902.24(chokidar@4.0.3)':
+ '@angular-devkit/architect@0.2003.32(chokidar@4.0.3)':
dependencies:
- '@angular-devkit/core': 19.2.24(chokidar@4.0.3)
- rxjs: 7.8.1
- transitivePeerDependencies:
- - chokidar
-
- '@angular-devkit/build-angular@19.2.24(@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(supports-color@10.2.2)(typescript@5.6.3))(@angular/compiler@19.2.20)(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(supports-color@10.2.2)(typescript@5.6.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(yaml@2.8.1)':
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@angular-devkit/architect': 0.1902.24(chokidar@4.0.3)
- '@angular-devkit/build-webpack': 0.1902.24(chokidar@4.0.3)(webpack-dev-server@5.2.2(webpack@5.105.0(esbuild@0.25.4)))(webpack@5.105.0(esbuild@0.25.4))
- '@angular-devkit/core': 19.2.24(chokidar@4.0.3)
- '@angular/build': 19.2.24(@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(supports-color@10.2.2)(typescript@5.6.3))(@angular/compiler@19.2.20)(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(less@4.2.2)(postcss@8.5.2)(terser@5.39.0)(typescript@5.6.3)(yaml@2.8.1)
- '@angular/compiler-cli': 19.2.20(@angular/compiler@19.2.20)(supports-color@10.2.2)(typescript@5.6.3)
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/generator': 7.26.10
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.10)
- '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-runtime': 7.26.10(@babel/core@7.26.10)
- '@babel/preset-env': 7.26.9(@babel/core@7.26.10)
- '@babel/runtime': 7.26.10
- '@discoveryjs/json-ext': 0.6.3
- '@ngtools/webpack': 19.2.24(@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(supports-color@10.2.2)(typescript@5.6.3))(typescript@5.6.3)(webpack@5.105.0(esbuild@0.25.4))
- '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
- ansi-colors: 4.1.3
- autoprefixer: 10.4.20(postcss@8.5.2)
- babel-loader: 9.2.1(@babel/core@7.26.10)(webpack@5.105.0(esbuild@0.25.4))
- browserslist: 4.27.0
- copy-webpack-plugin: 12.0.2(webpack@5.105.0(esbuild@0.25.4))
- css-loader: 7.1.2(webpack@5.105.0(esbuild@0.25.4))
- esbuild-wasm: 0.25.4
- fast-glob: 3.3.3
- http-proxy-middleware: 3.0.5(supports-color@10.2.2)
- istanbul-lib-instrument: 6.0.3
- jsonc-parser: 3.3.1
- karma-source-map-support: 1.4.0
- less: 4.2.2
- less-loader: 12.2.0(less@4.2.2)(webpack@5.105.0(esbuild@0.25.4))
- license-webpack-plugin: 4.0.2(webpack@5.105.0(esbuild@0.25.4))
- loader-utils: 3.3.1
- mini-css-extract-plugin: 2.9.2(webpack@5.105.0(esbuild@0.25.4))
- open: 10.1.0
- ora: 5.4.1
- picomatch: 4.0.4
- piscina: 4.8.0
- postcss: 8.5.2
- postcss-loader: 8.1.1(postcss@8.5.2)(typescript@5.6.3)(webpack@5.105.0(esbuild@0.25.4))
- resolve-url-loader: 5.0.0
- rxjs: 7.8.1
- sass: 1.85.0
- sass-loader: 16.0.5(sass@1.85.0)(webpack@5.105.0(esbuild@0.25.4))
- semver: 7.7.1
- source-map-loader: 5.0.0(webpack@5.105.0(esbuild@0.25.4))
- source-map-support: 0.5.21
- terser: 5.39.0
- tree-kill: 1.2.2
- tslib: 2.8.1
- typescript: 5.6.3
- webpack: 5.105.0(esbuild@0.25.4)
- webpack-dev-middleware: 7.4.2(webpack@5.105.0(esbuild@0.25.4))
- webpack-dev-server: 5.2.2(supports-color@10.2.2)(webpack@5.105.0(esbuild@0.25.4))
- webpack-merge: 6.0.1
- webpack-subresource-integrity: 5.1.0(webpack@5.105.0(esbuild@0.25.4))
- optionalDependencies:
- esbuild: 0.25.4
+ '@angular-devkit/core': 20.3.32(chokidar@4.0.3)
+ rxjs: 7.8.2
transitivePeerDependencies:
- - '@angular/compiler'
- - '@rspack/core'
- - '@swc/core'
- - '@types/node'
- - bufferutil
- chokidar
- - debug
- - html-webpack-plugin
- - jiti
- - lightningcss
- - node-sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - tsx
- - uglify-js
- - utf-8-validate
- - vite
- - webpack-cli
- - yaml
- '@angular-devkit/build-angular@19.2.24(@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3))(@angular/compiler@19.2.20)(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.6.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(yaml@2.8.1)':
+ '@angular-devkit/build-angular@20.3.32(@angular/compiler-cli@20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(typescript@5.9.3)(vitest@4.1.4(@types/node@24.9.2)(jsdom@27.1.0(supports-color@10.2.2))(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)))(yaml@2.8.1)':
dependencies:
'@ampproject/remapping': 2.3.0
- '@angular-devkit/architect': 0.1902.24(chokidar@4.0.3)
- '@angular-devkit/build-webpack': 0.1902.24(chokidar@4.0.3)(webpack-dev-server@5.2.2(webpack@5.105.0(esbuild@0.25.4)))(webpack@5.105.0(esbuild@0.25.4))
- '@angular-devkit/core': 19.2.24(chokidar@4.0.3)
- '@angular/build': 19.2.24(@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3))(@angular/compiler@19.2.20)(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(less@4.2.2)(postcss@8.5.2)(terser@5.39.0)(typescript@5.6.3)(yaml@2.8.1)
- '@angular/compiler-cli': 19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3)
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/generator': 7.26.10
- '@babel/helper-annotate-as-pure': 7.25.9
+ '@angular-devkit/architect': 0.2003.32(chokidar@4.0.3)
+ '@angular-devkit/build-webpack': 0.2003.32(chokidar@4.0.3)(webpack-dev-server@5.2.5(webpack@5.105.0))(webpack@5.105.0(esbuild@0.28.1))
+ '@angular-devkit/core': 20.3.32(chokidar@4.0.3)
+ '@angular/build': 20.3.32(@angular/compiler-cli@20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(less@4.4.0)(postcss@8.5.12)(terser@5.43.1)(tslib@2.8.1)(typescript@5.9.3)(vitest@4.1.4(@types/node@24.9.2)(jsdom@27.1.0(supports-color@10.2.2))(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)))(yaml@2.8.1)
+ '@angular/compiler-cli': 20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3)
+ '@babel/core': 7.29.7
+ '@babel/generator': 7.28.3
+ '@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-split-export-declaration': 7.24.7
- '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.10)
- '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-runtime': 7.26.10(@babel/core@7.26.10)
- '@babel/preset-env': 7.26.9(@babel/core@7.26.10)
- '@babel/runtime': 7.26.10
+ '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.29.7)
+ '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-runtime': 7.28.3(@babel/core@7.29.7)
+ '@babel/preset-env': 7.28.3(@babel/core@7.29.7)
+ '@babel/runtime': 7.28.3
'@discoveryjs/json-ext': 0.6.3
- '@ngtools/webpack': 19.2.24(@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3))(typescript@5.6.3)(webpack@5.105.0(esbuild@0.25.4))
- '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ '@ngtools/webpack': 20.3.32(@angular/compiler-cli@20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3))(typescript@5.9.3)(webpack@5.105.0(esbuild@0.28.1))
ansi-colors: 4.1.3
- autoprefixer: 10.4.20(postcss@8.5.2)
- babel-loader: 9.2.1(@babel/core@7.26.10)(webpack@5.105.0(esbuild@0.25.4))
- browserslist: 4.27.0
- copy-webpack-plugin: 12.0.2(webpack@5.105.0(esbuild@0.25.4))
- css-loader: 7.1.2(webpack@5.105.0(esbuild@0.25.4))
- esbuild-wasm: 0.25.4
+ autoprefixer: 10.4.21(postcss@8.5.12)
+ babel-loader: 10.0.0(@babel/core@7.29.7)(webpack@5.105.0(esbuild@0.28.1))
+ browserslist: 4.28.2
+ copy-webpack-plugin: 14.0.0(webpack@5.105.0(esbuild@0.28.1))
+ css-loader: 7.1.2(webpack@5.105.0(esbuild@0.28.1))
+ esbuild-wasm: 0.28.1
fast-glob: 3.3.3
- http-proxy-middleware: 3.0.5
+ http-proxy-middleware: 3.0.7
istanbul-lib-instrument: 6.0.3
jsonc-parser: 3.3.1
karma-source-map-support: 1.4.0
- less: 4.2.2
- less-loader: 12.2.0(less@4.2.2)(webpack@5.105.0(esbuild@0.25.4))
- license-webpack-plugin: 4.0.2(webpack@5.105.0(esbuild@0.25.4))
+ less: 4.4.0
+ less-loader: 12.3.0(less@4.4.0)(webpack@5.105.0(esbuild@0.28.1))
+ license-webpack-plugin: 4.0.2(webpack@5.105.0(esbuild@0.28.1))
loader-utils: 3.3.1
- mini-css-extract-plugin: 2.9.2(webpack@5.105.0(esbuild@0.25.4))
- open: 10.1.0
- ora: 5.4.1
+ mini-css-extract-plugin: 2.9.4(webpack@5.105.0(esbuild@0.28.1))
+ open: 10.2.0
+ ora: 8.2.0
picomatch: 4.0.4
- piscina: 4.8.0
- postcss: 8.5.2
- postcss-loader: 8.1.1(postcss@8.5.2)(typescript@5.6.3)(webpack@5.105.0(esbuild@0.25.4))
+ piscina: 5.2.0
+ postcss: 8.5.12
+ postcss-loader: 8.1.1(postcss@8.5.12)(typescript@5.9.3)(webpack@5.105.0(esbuild@0.28.1))
resolve-url-loader: 5.0.0
- rxjs: 7.8.1
- sass: 1.85.0
- sass-loader: 16.0.5(sass@1.85.0)(webpack@5.105.0(esbuild@0.25.4))
- semver: 7.7.1
- source-map-loader: 5.0.0(webpack@5.105.0(esbuild@0.25.4))
+ rxjs: 7.8.2
+ sass: 1.90.0
+ sass-loader: 16.0.5(sass@1.90.0)(webpack@5.105.0(esbuild@0.28.1))
+ semver: 7.7.2
+ source-map-loader: 5.0.0(webpack@5.105.0(esbuild@0.28.1))
source-map-support: 0.5.21
- terser: 5.39.0
+ terser: 5.43.1
tree-kill: 1.2.2
tslib: 2.8.1
- typescript: 5.6.3
- webpack: 5.105.0(esbuild@0.25.4)
- webpack-dev-middleware: 7.4.2(webpack@5.105.0(esbuild@0.25.4))
- webpack-dev-server: 5.2.2(supports-color@10.2.2)(webpack@5.105.0(esbuild@0.25.4))
+ typescript: 5.9.3
+ webpack: 5.105.0(esbuild@0.28.1)
+ webpack-dev-middleware: 7.4.2(webpack@5.105.0)
+ webpack-dev-server: 5.2.5(webpack@5.105.0)
webpack-merge: 6.0.1
- webpack-subresource-integrity: 5.1.0(webpack@5.105.0(esbuild@0.25.4))
+ webpack-subresource-integrity: 5.1.0(webpack@5.105.0(esbuild@0.28.1))
optionalDependencies:
- esbuild: 0.25.4
+ '@angular/core': 20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)
+ '@angular/platform-browser': 20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
+ esbuild: 0.28.1
transitivePeerDependencies:
- '@angular/compiler'
- '@rspack/core'
@@ -9030,129 +9367,84 @@ snapshots:
- tsx
- uglify-js
- utf-8-validate
- - vite
+ - vitest
- webpack-cli
- yaml
- '@angular-devkit/build-webpack@0.1902.24(chokidar@4.0.3)(webpack-dev-server@5.2.2(webpack@5.105.0(esbuild@0.25.4)))(webpack@5.105.0(esbuild@0.25.4))':
+ '@angular-devkit/build-webpack@0.2003.32(chokidar@4.0.3)(webpack-dev-server@5.2.5(webpack@5.105.0))(webpack@5.105.0(esbuild@0.28.1))':
dependencies:
- '@angular-devkit/architect': 0.1902.24(chokidar@4.0.3)
- rxjs: 7.8.1
- webpack: 5.105.0(esbuild@0.25.4)
- webpack-dev-server: 5.2.2(supports-color@10.2.2)(webpack@5.105.0(esbuild@0.25.4))
+ '@angular-devkit/architect': 0.2003.32(chokidar@4.0.3)
+ rxjs: 7.8.2
+ webpack: 5.105.0(esbuild@0.28.1)
+ webpack-dev-server: 5.2.5(webpack@5.105.0)
transitivePeerDependencies:
- chokidar
- '@angular-devkit/core@19.2.24(chokidar@4.0.3)':
+ '@angular-devkit/core@20.3.32(chokidar@4.0.3)':
dependencies:
ajv: 8.18.0
ajv-formats: 3.0.1(ajv@8.18.0)
jsonc-parser: 3.3.1
picomatch: 4.0.4
- rxjs: 7.8.1
- source-map: 0.7.4
+ rxjs: 7.8.2
+ source-map: 0.7.6
optionalDependencies:
chokidar: 4.0.3
- '@angular-devkit/schematics@19.2.24(chokidar@4.0.3)':
+ '@angular-devkit/schematics@20.3.32(chokidar@4.0.3)':
dependencies:
- '@angular-devkit/core': 19.2.24(chokidar@4.0.3)
+ '@angular-devkit/core': 20.3.32(chokidar@4.0.3)
jsonc-parser: 3.3.1
magic-string: 0.30.17
- ora: 5.4.1
- rxjs: 7.8.1
+ ora: 8.2.0
+ rxjs: 7.8.2
transitivePeerDependencies:
- chokidar
- '@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))':
+ '@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))':
dependencies:
- '@angular/common': 19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
- '@angular/core': 19.2.20(rxjs@7.8.2)(zone.js@0.15.1)
+ '@angular/core': 20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)
tslib: 2.8.1
- '@angular/build@19.2.24(@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(supports-color@10.2.2)(typescript@5.6.3))(@angular/compiler@19.2.20)(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(less@4.2.2)(postcss@8.5.2)(terser@5.39.0)(typescript@5.6.3)(yaml@2.8.1)':
+ '@angular/build@20.3.32(@angular/compiler-cli@20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(less@4.4.0)(postcss@8.5.12)(terser@5.43.1)(tslib@2.8.1)(typescript@5.9.3)(vitest@4.1.4(@types/node@24.9.2)(jsdom@27.1.0(supports-color@10.2.2))(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)))(yaml@2.8.1)':
dependencies:
'@ampproject/remapping': 2.3.0
- '@angular-devkit/architect': 0.1902.24(chokidar@4.0.3)
- '@angular/compiler': 19.2.20
- '@angular/compiler-cli': 19.2.20(@angular/compiler@19.2.20)(supports-color@10.2.2)(typescript@5.6.3)
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-split-export-declaration': 7.24.7
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10)
- '@inquirer/confirm': 5.1.6(@types/node@24.9.2)
- '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
- beasties: 0.3.2
- browserslist: 4.27.0
- esbuild: 0.25.4
- fast-glob: 3.3.3
- https-proxy-agent: 7.0.6(supports-color@10.2.2)
- istanbul-lib-instrument: 6.0.3
- listr2: 8.2.5
- magic-string: 0.30.17
- mrmime: 2.0.1
- parse5-html-rewriting-stream: 7.0.0
- picomatch: 4.0.4
- piscina: 4.8.0
- rollup: 4.59.0
- sass: 1.85.0
- semver: 7.7.1
- source-map-support: 0.5.21
- typescript: 5.6.3
- vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
- watchpack: 2.4.2
- optionalDependencies:
- less: 4.2.2
- lmdb: 3.2.6
- postcss: 8.5.2
- transitivePeerDependencies:
- - '@types/node'
- - chokidar
- - jiti
- - lightningcss
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
- - tsx
- - yaml
-
- '@angular/build@19.2.24(@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3))(@angular/compiler@19.2.20)(@types/node@24.9.2)(chokidar@4.0.3)(jiti@2.6.1)(less@4.2.2)(postcss@8.5.2)(terser@5.39.0)(typescript@5.6.3)(yaml@2.8.1)':
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@angular-devkit/architect': 0.1902.24(chokidar@4.0.3)
- '@angular/compiler': 19.2.20
- '@angular/compiler-cli': 19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3)
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-annotate-as-pure': 7.25.9
+ '@angular-devkit/architect': 0.2003.32(chokidar@4.0.3)
+ '@angular/compiler': 20.3.26
+ '@angular/compiler-cli': 20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3)
+ '@babel/core': 7.29.7
+ '@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-split-export-declaration': 7.24.7
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10)
- '@inquirer/confirm': 5.1.6(@types/node@24.9.2)
- '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
- beasties: 0.3.2
- browserslist: 4.27.0
- esbuild: 0.25.4
- fast-glob: 3.3.3
+ '@inquirer/confirm': 5.1.14(@types/node@24.9.2)
+ '@vitejs/plugin-basic-ssl': 2.1.0(vite@7.3.6(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
+ beasties: 0.3.5
+ browserslist: 4.28.2
+ esbuild: 0.28.1
https-proxy-agent: 7.0.6(supports-color@10.2.2)
istanbul-lib-instrument: 6.0.3
- listr2: 8.2.5
+ jsonc-parser: 3.3.1
+ listr2: 9.0.1
magic-string: 0.30.17
mrmime: 2.0.1
- parse5-html-rewriting-stream: 7.0.0
+ parse5-html-rewriting-stream: 8.0.0
picomatch: 4.0.4
- piscina: 4.8.0
+ piscina: 5.2.0
rollup: 4.59.0
- sass: 1.85.0
- semver: 7.7.1
+ sass: 1.90.0
+ semver: 7.7.2
source-map-support: 0.5.21
- typescript: 5.6.3
- vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
- watchpack: 2.4.2
+ tinyglobby: 0.2.14
+ tslib: 2.8.1
+ typescript: 5.9.3
+ vite: 7.3.6(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ watchpack: 2.4.4
optionalDependencies:
- less: 4.2.2
- lmdb: 3.2.6
- postcss: 8.5.2
+ '@angular/core': 20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)
+ '@angular/platform-browser': 20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
+ less: 4.4.0
+ lmdb: 3.4.2
+ postcss: 8.5.12
+ vitest: 4.1.4(@types/node@24.9.2)(jsdom@27.1.0(supports-color@10.2.2))(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
transitivePeerDependencies:
- '@types/node'
- chokidar
@@ -9166,105 +9458,95 @@ snapshots:
- tsx
- yaml
- '@angular/cli@19.2.24(@types/node@24.9.2)(chokidar@4.0.3)(supports-color@10.2.2)':
+ '@angular/cli@20.3.32(@types/node@24.9.2)(chokidar@4.0.3)':
dependencies:
- '@angular-devkit/architect': 0.1902.24(chokidar@4.0.3)
- '@angular-devkit/core': 19.2.24(chokidar@4.0.3)
- '@angular-devkit/schematics': 19.2.24(chokidar@4.0.3)
- '@inquirer/prompts': 7.3.2(@types/node@24.9.2)
- '@listr2/prompt-adapter-inquirer': 2.0.18(@inquirer/prompts@7.3.2(@types/node@24.9.2))
- '@schematics/angular': 19.2.24(chokidar@4.0.3)
+ '@angular-devkit/architect': 0.2003.32(chokidar@4.0.3)
+ '@angular-devkit/core': 20.3.32(chokidar@4.0.3)
+ '@angular-devkit/schematics': 20.3.32(chokidar@4.0.3)
+ '@inquirer/prompts': 7.8.2(@types/node@24.9.2)
+ '@listr2/prompt-adapter-inquirer': 3.0.1(@inquirer/prompts@7.8.2(@types/node@24.9.2))(@types/node@24.9.2)(listr2@9.0.1)
+ '@modelcontextprotocol/sdk': 1.26.0(zod@4.1.13)
+ '@schematics/angular': 20.3.32(chokidar@4.0.3)
'@yarnpkg/lockfile': 1.1.0
+ algoliasearch: 5.35.0
ini: 5.0.0
jsonc-parser: 3.3.1
- listr2: 8.2.5
- npm-package-arg: 12.0.2
- npm-pick-manifest: 10.0.0
- pacote: 20.0.0(supports-color@10.2.2)
+ listr2: 9.0.1
+ npm-package-arg: 13.0.0
+ pacote: 21.5.1
resolve: 1.22.10
- semver: 7.7.1
- symbol-observable: 4.0.0
- yargs: 17.7.2
+ semver: 7.7.2
+ yargs: 18.0.0
+ zod: 4.1.13
transitivePeerDependencies:
+ - '@cfworker/json-schema'
- '@types/node'
- chokidar
- supports-color
- '@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)':
+ '@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)':
dependencies:
- '@angular/core': 19.2.20(rxjs@7.8.2)(zone.js@0.15.1)
+ '@angular/core': 20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)
rxjs: 7.8.2
tslib: 2.8.1
- '@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(supports-color@10.2.2)(typescript@5.6.3)':
+ '@angular/compiler-cli@20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3)':
dependencies:
- '@angular/compiler': 19.2.20
- '@babel/core': 7.26.9(supports-color@10.2.2)
+ '@angular/compiler': 20.3.26
+ '@babel/core': 7.29.7
'@jridgewell/sourcemap-codec': 1.5.5
chokidar: 4.0.3
convert-source-map: 1.9.0
reflect-metadata: 0.2.2
semver: 7.7.3
tslib: 2.8.1
- typescript: 5.6.3
- yargs: 17.7.2
- transitivePeerDependencies:
- - supports-color
-
- '@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3)':
- dependencies:
- '@angular/compiler': 19.2.20
- '@babel/core': 7.26.9
- '@jridgewell/sourcemap-codec': 1.5.5
- chokidar: 4.0.3
- convert-source-map: 1.9.0
- reflect-metadata: 0.2.2
- semver: 7.7.3
- tslib: 2.8.1
- typescript: 5.6.3
- yargs: 17.7.2
+ yargs: 18.0.0
+ optionalDependencies:
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@angular/compiler@19.2.20':
+ '@angular/compiler@20.3.26':
dependencies:
tslib: 2.8.1
- '@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)':
+ '@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)':
dependencies:
rxjs: 7.8.2
tslib: 2.8.1
+ optionalDependencies:
+ '@angular/compiler': 20.3.26
zone.js: 0.15.1
- '@angular/forms@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)':
+ '@angular/forms@20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)':
dependencies:
- '@angular/common': 19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
- '@angular/core': 19.2.20(rxjs@7.8.2)(zone.js@0.15.1)
- '@angular/platform-browser': 19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ '@angular/common': 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ '@angular/core': 20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)
+ '@angular/platform-browser': 20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
rxjs: 7.8.2
tslib: 2.8.1
- '@angular/platform-browser-dynamic@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@19.2.20)(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))':
+ '@angular/platform-browser-dynamic@20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/compiler@20.3.26)(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))':
dependencies:
- '@angular/common': 19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
- '@angular/compiler': 19.2.20
- '@angular/core': 19.2.20(rxjs@7.8.2)(zone.js@0.15.1)
- '@angular/platform-browser': 19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ '@angular/common': 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ '@angular/compiler': 20.3.26
+ '@angular/core': 20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)
+ '@angular/platform-browser': 20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
tslib: 2.8.1
- '@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))':
+ '@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))':
dependencies:
- '@angular/common': 19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
- '@angular/core': 19.2.20(rxjs@7.8.2)(zone.js@0.15.1)
+ '@angular/common': 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ '@angular/core': 20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)
tslib: 2.8.1
optionalDependencies:
- '@angular/animations': 19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ '@angular/animations': 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
- '@angular/router@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)':
+ '@angular/router@20.3.26(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)':
dependencies:
- '@angular/common': 19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
- '@angular/core': 19.2.20(rxjs@7.8.2)(zone.js@0.15.1)
- '@angular/platform-browser': 19.2.20(@angular/animations@19.2.20(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))
+ '@angular/common': 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ '@angular/core': 20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)
+ '@angular/platform-browser': 20.3.26(@angular/animations@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)))(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))
rxjs: 7.8.2
tslib: 2.8.1
@@ -9286,52 +9568,34 @@ snapshots:
'@asamuzakjp/nwsapi@2.3.9': {}
- '@babel/code-frame@7.27.1':
+ '@babel/code-frame@7.29.0':
dependencies:
'@babel/helper-validator-identifier': 7.28.5
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/code-frame@7.29.0':
+ '@babel/code-frame@7.29.7':
dependencies:
- '@babel/helper-validator-identifier': 7.28.5
+ '@babel/helper-validator-identifier': 7.29.7
js-tokens: 4.0.0
picocolors: 1.1.1
'@babel/compat-data@7.28.5': {}
- '@babel/core@7.26.10(supports-color@10.2.2)':
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.27.1
- '@babel/generator': 7.28.5
- '@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.26.10)
- '@babel/helpers': 7.28.4
- '@babel/parser': 7.28.5
- '@babel/template': 7.27.2
- '@babel/traverse': 7.28.5
- '@babel/types': 7.28.5
- convert-source-map: 2.0.0
- debug: 4.4.3(supports-color@10.2.2)
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
+ '@babel/compat-data@7.29.7': {}
- '@babel/core@7.26.9':
+ '@babel/core@7.28.5':
dependencies:
- '@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.27.1
- '@babel/generator': 7.28.5
+ '@babel/code-frame': 7.29.0
+ '@babel/generator': 7.29.7
'@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.26.9)
+ '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5)
'@babel/helpers': 7.28.4
'@babel/parser': 7.28.5
'@babel/template': 7.27.2
- '@babel/traverse': 7.28.5
+ '@babel/traverse': 7.28.5(supports-color@10.2.2)
'@babel/types': 7.28.5
+ '@jridgewell/remapping': 2.3.5
convert-source-map: 2.0.0
debug: 4.4.3(supports-color@10.2.2)
gensync: 1.0.0-beta.2
@@ -9340,18 +9604,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/core@7.26.9(supports-color@10.2.2)':
+ '@babel/core@7.28.5(supports-color@10.2.2)':
dependencies:
- '@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.27.1
- '@babel/generator': 7.28.5
+ '@babel/code-frame': 7.29.0
+ '@babel/generator': 7.29.7
'@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.26.9(supports-color@10.2.2))
+ '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5(supports-color@10.2.2))
'@babel/helpers': 7.28.4
'@babel/parser': 7.28.5
'@babel/template': 7.27.2
- '@babel/traverse': 7.28.5
+ '@babel/traverse': 7.28.5(supports-color@10.2.2)
'@babel/types': 7.28.5
+ '@jridgewell/remapping': 2.3.5
convert-source-map: 2.0.0
debug: 4.4.3(supports-color@10.2.2)
gensync: 1.0.0-beta.2
@@ -9360,17 +9624,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/core@7.28.5':
- dependencies:
- '@babel/code-frame': 7.29.0
- '@babel/generator': 7.28.5
- '@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5)
- '@babel/helpers': 7.28.4
- '@babel/parser': 7.28.5
- '@babel/template': 7.27.2
- '@babel/traverse': 7.28.5
- '@babel/types': 7.28.5
+ '@babel/core@7.29.7':
+ dependencies:
+ '@babel/code-frame': 7.29.7
+ '@babel/generator': 7.29.7
+ '@babel/helper-compilation-targets': 7.29.7
+ '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7)
+ '@babel/helpers': 7.29.7
+ '@babel/parser': 7.29.7
+ '@babel/template': 7.29.7
+ '@babel/traverse': 7.29.7
+ '@babel/types': 7.29.7
'@jridgewell/remapping': 2.3.5
convert-source-map: 2.0.0
debug: 4.4.3(supports-color@10.2.2)
@@ -9380,29 +9644,25 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.26.10':
+ '@babel/generator@7.28.3':
dependencies:
- '@babel/parser': 7.28.5
- '@babel/types': 7.28.5
+ '@babel/parser': 7.29.7
+ '@babel/types': 7.29.7
'@jridgewell/gen-mapping': 0.3.13
'@jridgewell/trace-mapping': 0.3.31
jsesc: 3.1.0
- '@babel/generator@7.28.5':
+ '@babel/generator@7.29.7':
dependencies:
- '@babel/parser': 7.28.5
- '@babel/types': 7.28.5
+ '@babel/parser': 7.29.7
+ '@babel/types': 7.29.7
'@jridgewell/gen-mapping': 0.3.13
'@jridgewell/trace-mapping': 0.3.31
jsesc: 3.1.0
- '@babel/helper-annotate-as-pure@7.25.9':
- dependencies:
- '@babel/types': 7.28.5
-
'@babel/helper-annotate-as-pure@7.27.3':
dependencies:
- '@babel/types': 7.28.5
+ '@babel/types': 7.29.7
'@babel/helper-compilation-targets@7.27.2':
dependencies:
@@ -9412,31 +9672,39 @@ snapshots:
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.28.5(@babel/core@7.26.10)':
+ '@babel/helper-compilation-targets@7.29.7':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
+ '@babel/compat-data': 7.29.7
+ '@babel/helper-validator-option': 7.29.7
+ browserslist: 4.28.2
+ lru-cache: 5.1.1
+ semver: 6.3.1
+
+ '@babel/helper-create-class-features-plugin@7.28.5(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-member-expression-to-functions': 7.28.5
'@babel/helper-optimise-call-expression': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.26.10)
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.29.7)
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/traverse': 7.28.5
+ '@babel/traverse': 7.29.7
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.28.5(@babel/core@7.26.10)':
+ '@babel/helper-create-regexp-features-plugin@7.28.5(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
+ '@babel/core': 7.29.7
'@babel/helper-annotate-as-pure': 7.27.3
regexpu-core: 6.4.0
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.26.10)':
+ '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-compilation-targets': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
debug: 4.4.3(supports-color@10.2.2)
lodash.debounce: 4.0.8
resolve: 1.22.11
@@ -9445,106 +9713,114 @@ snapshots:
'@babel/helper-globals@7.28.0': {}
+ '@babel/helper-globals@7.29.7': {}
+
'@babel/helper-member-expression-to-functions@7.28.5':
dependencies:
- '@babel/traverse': 7.28.5
- '@babel/types': 7.28.5
+ '@babel/traverse': 7.29.7
+ '@babel/types': 7.29.7
transitivePeerDependencies:
- supports-color
'@babel/helper-module-imports@7.18.6':
dependencies:
- '@babel/types': 7.28.5
+ '@babel/types': 7.29.7
'@babel/helper-module-imports@7.27.1':
dependencies:
- '@babel/traverse': 7.28.5
+ '@babel/traverse': 7.28.5(supports-color@10.2.2)
'@babel/types': 7.28.5
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.28.3(@babel/core@7.26.10)':
+ '@babel/helper-module-imports@7.29.7':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-module-imports': 7.27.1
- '@babel/helper-validator-identifier': 7.28.5
- '@babel/traverse': 7.28.5
+ '@babel/traverse': 7.29.7
+ '@babel/types': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.28.3(@babel/core@7.26.9(supports-color@10.2.2))':
+ '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5(supports-color@10.2.2))':
dependencies:
- '@babel/core': 7.26.9(supports-color@10.2.2)
+ '@babel/core': 7.28.5(supports-color@10.2.2)
'@babel/helper-module-imports': 7.27.1
'@babel/helper-validator-identifier': 7.28.5
- '@babel/traverse': 7.28.5
+ '@babel/traverse': 7.28.5(supports-color@10.2.2)
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.28.3(@babel/core@7.26.9)':
+ '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)':
dependencies:
- '@babel/core': 7.26.9
+ '@babel/core': 7.28.5
'@babel/helper-module-imports': 7.27.1
'@babel/helper-validator-identifier': 7.28.5
- '@babel/traverse': 7.28.5
+ '@babel/traverse': 7.28.5(supports-color@10.2.2)
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)':
+ '@babel/helper-module-transforms@7.29.7(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.28.5
- '@babel/helper-module-imports': 7.27.1
- '@babel/helper-validator-identifier': 7.28.5
- '@babel/traverse': 7.28.5
+ '@babel/core': 7.29.7
+ '@babel/helper-module-imports': 7.29.7
+ '@babel/helper-validator-identifier': 7.29.7
+ '@babel/traverse': 7.29.7
transitivePeerDependencies:
- supports-color
'@babel/helper-optimise-call-expression@7.27.1':
dependencies:
- '@babel/types': 7.28.5
+ '@babel/types': 7.29.7
'@babel/helper-plugin-utils@7.27.1': {}
- '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.26.10)':
+ '@babel/helper-plugin-utils@7.29.7': {}
+
+ '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
+ '@babel/core': 7.29.7
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-wrap-function': 7.28.3
- '@babel/traverse': 7.28.5
+ '@babel/traverse': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.27.1(@babel/core@7.26.10)':
+ '@babel/helper-replace-supers@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
+ '@babel/core': 7.29.7
'@babel/helper-member-expression-to-functions': 7.28.5
'@babel/helper-optimise-call-expression': 7.27.1
- '@babel/traverse': 7.28.5
+ '@babel/traverse': 7.29.7
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
dependencies:
- '@babel/traverse': 7.28.5
- '@babel/types': 7.28.5
+ '@babel/traverse': 7.29.7
+ '@babel/types': 7.29.7
transitivePeerDependencies:
- supports-color
'@babel/helper-split-export-declaration@7.24.7':
dependencies:
- '@babel/types': 7.28.5
+ '@babel/types': 7.29.7
'@babel/helper-string-parser@7.27.1': {}
+ '@babel/helper-string-parser@7.29.7': {}
+
'@babel/helper-validator-identifier@7.28.5': {}
+ '@babel/helper-validator-identifier@7.29.7': {}
+
'@babel/helper-validator-option@7.27.1': {}
+ '@babel/helper-validator-option@7.29.7': {}
+
'@babel/helper-wrap-function@7.28.3':
dependencies:
- '@babel/template': 7.27.2
- '@babel/traverse': 7.28.5
- '@babel/types': 7.28.5
+ '@babel/template': 7.29.7
+ '@babel/traverse': 7.29.7
+ '@babel/types': 7.29.7
transitivePeerDependencies:
- supports-color
@@ -9553,331 +9829,348 @@ snapshots:
'@babel/template': 7.27.2
'@babel/types': 7.28.5
+ '@babel/helpers@7.29.7':
+ dependencies:
+ '@babel/template': 7.29.7
+ '@babel/types': 7.29.7
+
'@babel/parser@7.28.5':
dependencies:
'@babel/types': 7.28.5
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5(@babel/core@7.26.10)':
+ '@babel/parser@7.29.7':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.5
+ '@babel/types': 7.29.7
+
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/traverse': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/plugin-transform-optional-chaining': 7.28.5(@babel/core@7.26.10)
+ '@babel/plugin-transform-optional-chaining': 7.28.5(@babel/core@7.29.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3(@babel/core@7.26.10)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.5
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/traverse': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
-
- '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
- '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
'@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-async-generator-functions@7.26.8(@babel/core@7.26.10)':
+ '@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.26.10)
- '@babel/traverse': 7.28.5
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.29.7)
+ '@babel/traverse': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.10)':
+ '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@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.26.10)
+ '@babel/core': 7.29.7
+ '@babel/helper-module-imports': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.29.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-block-scoping@7.28.5(@babel/core@7.26.10)':
+ '@babel/plugin-transform-block-scoping@7.28.5(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.28.3(@babel/core@7.26.10)':
+ '@babel/plugin-transform-class-static-block@7.28.3(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.28.4(@babel/core@7.26.10)':
+ '@babel/plugin-transform-classes@7.28.4(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
+ '@babel/core': 7.29.7
'@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.26.10)
- '@babel/traverse': 7.28.5
+ '@babel/helper-compilation-targets': 7.29.7
+ '@babel/helper-globals': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.29.7)
+ '@babel/traverse': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/template': 7.27.2
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/template': 7.29.7
- '@babel/plugin-transform-destructuring@7.28.5(@babel/core@7.26.10)':
+ '@babel/plugin-transform-destructuring@7.29.7(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.5
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/traverse': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-exponentiation-operator@7.28.5(@babel/core@7.26.10)':
+ '@babel/plugin-transform-explicit-resource-management@7.29.7(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-destructuring': 7.29.7(@babel/core@7.29.7)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-exponentiation-operator@7.28.5(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+
+ '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.5
+ '@babel/core': 7.29.7
+ '@babel/helper-compilation-targets': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/traverse': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-literals@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-literals@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-logical-assignment-operators@7.28.5(@babel/core@7.26.10)':
+ '@babel/plugin-transform-logical-assignment-operators@7.28.5(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.28.5(@babel/core@7.26.10)':
+ '@babel/plugin-transform-modules-systemjs@7.28.5(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-validator-identifier': 7.28.5
- '@babel/traverse': 7.28.5
+ '@babel/core': 7.29.7
+ '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-validator-identifier': 7.29.7
+ '@babel/traverse': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-object-rest-spread@7.28.4(@babel/core@7.26.10)':
+ '@babel/plugin-transform-object-rest-spread@7.28.4(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.26.10)
- '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.26.10)
- '@babel/traverse': 7.28.5
+ '@babel/core': 7.29.7
+ '@babel/helper-compilation-targets': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/plugin-transform-destructuring': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.29.7)
+ '@babel/traverse': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.26.10)
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.29.7)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-optional-chaining@7.28.5(@babel/core@7.26.10)':
+ '@babel/plugin-transform-optional-chaining@7.28.5(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.26.10)':
+ '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
+ '@babel/core': 7.29.7
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+
+ '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.5(supports-color@10.2.2))':
+ dependencies:
+ '@babel/core': 7.28.5(supports-color@10.2.2)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.5)':
@@ -9885,175 +10178,179 @@ snapshots:
'@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.5(supports-color@10.2.2))':
+ dependencies:
+ '@babel/core': 7.28.5(supports-color@10.2.2)
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-regenerator@7.28.4(@babel/core@7.26.10)':
+ '@babel/plugin-transform-regenerator@7.28.4(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-runtime@7.26.10(@babel/core@7.26.10)':
+ '@babel/plugin-transform-runtime@7.28.3(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-module-imports': 7.27.1
- '@babel/helper-plugin-utils': 7.27.1
- babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.26.10)
- babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.26.10)
- babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.26.10)
+ '@babel/core': 7.29.7
+ '@babel/helper-module-imports': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.29.7)
+ babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.29.7)
+ babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.29.7)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
- '@babel/plugin-transform-spread@7.27.1(@babel/core@7.26.10)':
+ '@babel/plugin-transform-spread@7.27.1(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.27.1
+ - supports-color
- '@babel/preset-env@7.26.9(@babel/core@7.26.10)':
- dependencies:
- '@babel/compat-data': 7.28.5
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@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.28.5(@babel/core@7.26.10)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.28.3(@babel/core@7.26.10)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.10)
- '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.10)
- '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.10)
- '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.10)
- '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-block-scoping': 7.28.5(@babel/core@7.26.10)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-class-static-block': 7.28.3(@babel/core@7.26.10)
- '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.26.10)
- '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-destructuring': 7.28.5(@babel/core@7.26.10)
- '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-exponentiation-operator': 7.28.5(@babel/core@7.26.10)
- '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-logical-assignment-operators': 7.28.5(@babel/core@7.26.10)
- '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-modules-systemjs': 7.28.5(@babel/core@7.26.10)
- '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-object-rest-spread': 7.28.4(@babel/core@7.26.10)
- '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-optional-chaining': 7.28.5(@babel/core@7.26.10)
- '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.26.10)
- '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-regenerator': 7.28.4(@babel/core@7.26.10)
- '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.26.10)
- '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.26.10)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.10)
- babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.26.10)
- babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.26.10)
- babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.26.10)
+ '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+
+ '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+
+ '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+
+ '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+
+ '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
+
+ '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
+
+ '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/core': 7.29.7
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.29.7)
+ '@babel/helper-plugin-utils': 7.29.7
+
+ '@babel/preset-env@7.28.3(@babel/core@7.29.7)':
+ dependencies:
+ '@babel/compat-data': 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-compilation-targets': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/helper-validator-option': 7.29.7
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.28.5(@babel/core@7.29.7)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.28.3(@babel/core@7.29.7)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.29.7)
+ '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.29.7)
+ '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.29.7)
+ '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-block-scoping': 7.28.5(@babel/core@7.29.7)
+ '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-class-static-block': 7.28.3(@babel/core@7.29.7)
+ '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.29.7)
+ '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-destructuring': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-explicit-resource-management': 7.29.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-exponentiation-operator': 7.28.5(@babel/core@7.29.7)
+ '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-logical-assignment-operators': 7.28.5(@babel/core@7.29.7)
+ '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-modules-systemjs': 7.28.5(@babel/core@7.29.7)
+ '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-object-rest-spread': 7.28.4(@babel/core@7.29.7)
+ '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-optional-chaining': 7.28.5(@babel/core@7.29.7)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.29.7)
+ '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-regenerator': 7.28.4(@babel/core@7.29.7)
+ '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.29.7)
+ '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.29.7)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.29.7)
+ babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.29.7)
+ babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.29.7)
+ babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.29.7)
core-js-compat: 3.46.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.10)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.29.7)':
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/types': 7.28.5
+ '@babel/core': 7.29.7
+ '@babel/helper-plugin-utils': 7.29.7
+ '@babel/types': 7.29.7
esutils: 2.0.3
- '@babel/runtime@7.26.10':
- dependencies:
- regenerator-runtime: 0.14.1
+ '@babel/runtime@7.28.3': {}
'@babel/runtime@7.28.4': {}
@@ -10063,10 +10360,16 @@ snapshots:
'@babel/parser': 7.28.5
'@babel/types': 7.28.5
- '@babel/traverse@7.28.5':
+ '@babel/template@7.29.7':
+ dependencies:
+ '@babel/code-frame': 7.29.7
+ '@babel/parser': 7.29.7
+ '@babel/types': 7.29.7
+
+ '@babel/traverse@7.28.5(supports-color@10.2.2)':
dependencies:
'@babel/code-frame': 7.29.0
- '@babel/generator': 7.28.5
+ '@babel/generator': 7.29.7
'@babel/helper-globals': 7.28.0
'@babel/parser': 7.28.5
'@babel/template': 7.27.2
@@ -10075,11 +10378,28 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/traverse@7.29.7':
+ dependencies:
+ '@babel/code-frame': 7.29.7
+ '@babel/generator': 7.29.7
+ '@babel/helper-globals': 7.29.7
+ '@babel/parser': 7.29.7
+ '@babel/template': 7.29.7
+ '@babel/types': 7.29.7
+ debug: 4.4.3(supports-color@10.2.2)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/types@7.28.5':
dependencies:
'@babel/helper-string-parser': 7.27.1
'@babel/helper-validator-identifier': 7.28.5
+ '@babel/types@7.29.7':
+ dependencies:
+ '@babel/helper-string-parser': 7.29.7
+ '@babel/helper-validator-identifier': 7.29.7
+
'@changesets/apply-release-plan@7.1.0':
dependencies:
'@changesets/config': 3.1.3
@@ -10298,154 +10618,157 @@ snapshots:
'@esbuild/aix-ppc64@0.25.12':
optional: true
- '@esbuild/aix-ppc64@0.25.4':
+ '@esbuild/aix-ppc64@0.28.1':
optional: true
'@esbuild/android-arm64@0.25.12':
optional: true
- '@esbuild/android-arm64@0.25.4':
+ '@esbuild/android-arm64@0.28.1':
optional: true
'@esbuild/android-arm@0.25.12':
optional: true
- '@esbuild/android-arm@0.25.4':
+ '@esbuild/android-arm@0.28.1':
optional: true
'@esbuild/android-x64@0.25.12':
optional: true
- '@esbuild/android-x64@0.25.4':
+ '@esbuild/android-x64@0.28.1':
optional: true
'@esbuild/darwin-arm64@0.25.12':
optional: true
- '@esbuild/darwin-arm64@0.25.4':
+ '@esbuild/darwin-arm64@0.28.1':
optional: true
'@esbuild/darwin-x64@0.25.12':
optional: true
- '@esbuild/darwin-x64@0.25.4':
+ '@esbuild/darwin-x64@0.28.1':
optional: true
'@esbuild/freebsd-arm64@0.25.12':
optional: true
- '@esbuild/freebsd-arm64@0.25.4':
+ '@esbuild/freebsd-arm64@0.28.1':
optional: true
'@esbuild/freebsd-x64@0.25.12':
optional: true
- '@esbuild/freebsd-x64@0.25.4':
+ '@esbuild/freebsd-x64@0.28.1':
optional: true
'@esbuild/linux-arm64@0.25.12':
optional: true
- '@esbuild/linux-arm64@0.25.4':
+ '@esbuild/linux-arm64@0.28.1':
optional: true
'@esbuild/linux-arm@0.25.12':
optional: true
- '@esbuild/linux-arm@0.25.4':
+ '@esbuild/linux-arm@0.28.1':
optional: true
'@esbuild/linux-ia32@0.25.12':
optional: true
- '@esbuild/linux-ia32@0.25.4':
+ '@esbuild/linux-ia32@0.28.1':
optional: true
'@esbuild/linux-loong64@0.25.12':
optional: true
- '@esbuild/linux-loong64@0.25.4':
+ '@esbuild/linux-loong64@0.28.1':
optional: true
'@esbuild/linux-mips64el@0.25.12':
optional: true
- '@esbuild/linux-mips64el@0.25.4':
+ '@esbuild/linux-mips64el@0.28.1':
optional: true
'@esbuild/linux-ppc64@0.25.12':
optional: true
- '@esbuild/linux-ppc64@0.25.4':
+ '@esbuild/linux-ppc64@0.28.1':
optional: true
'@esbuild/linux-riscv64@0.25.12':
optional: true
- '@esbuild/linux-riscv64@0.25.4':
+ '@esbuild/linux-riscv64@0.28.1':
optional: true
'@esbuild/linux-s390x@0.25.12':
optional: true
- '@esbuild/linux-s390x@0.25.4':
+ '@esbuild/linux-s390x@0.28.1':
optional: true
'@esbuild/linux-x64@0.25.12':
optional: true
- '@esbuild/linux-x64@0.25.4':
+ '@esbuild/linux-x64@0.28.1':
optional: true
'@esbuild/netbsd-arm64@0.25.12':
optional: true
- '@esbuild/netbsd-arm64@0.25.4':
+ '@esbuild/netbsd-arm64@0.28.1':
optional: true
'@esbuild/netbsd-x64@0.25.12':
optional: true
- '@esbuild/netbsd-x64@0.25.4':
+ '@esbuild/netbsd-x64@0.28.1':
optional: true
'@esbuild/openbsd-arm64@0.25.12':
optional: true
- '@esbuild/openbsd-arm64@0.25.4':
+ '@esbuild/openbsd-arm64@0.28.1':
optional: true
'@esbuild/openbsd-x64@0.25.12':
optional: true
- '@esbuild/openbsd-x64@0.25.4':
+ '@esbuild/openbsd-x64@0.28.1':
optional: true
'@esbuild/openharmony-arm64@0.25.12':
optional: true
+ '@esbuild/openharmony-arm64@0.28.1':
+ optional: true
+
'@esbuild/sunos-x64@0.25.12':
optional: true
- '@esbuild/sunos-x64@0.25.4':
+ '@esbuild/sunos-x64@0.28.1':
optional: true
'@esbuild/win32-arm64@0.25.12':
optional: true
- '@esbuild/win32-arm64@0.25.4':
+ '@esbuild/win32-arm64@0.28.1':
optional: true
'@esbuild/win32-ia32@0.25.12':
optional: true
- '@esbuild/win32-ia32@0.25.4':
+ '@esbuild/win32-ia32@0.28.1':
optional: true
'@esbuild/win32-x64@0.25.12':
optional: true
- '@esbuild/win32-x64@0.25.4':
+ '@esbuild/win32-x64@0.28.1':
optional: true
'@eslint-community/eslint-utils@4.9.0(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))':
@@ -10500,8 +10823,14 @@ snapshots:
'@faker-js/faker@8.4.1': {}
+ '@gar/promise-retry@1.0.3': {}
+
'@hapi/bourne@3.0.0': {}
+ '@hono/node-server@1.19.14(hono@4.12.30)':
+ dependencies:
+ hono: 4.12.30
+
'@humanfs/core@0.19.1': {}
'@humanfs/node@0.16.7':
@@ -10525,14 +10854,14 @@ snapshots:
optionalDependencies:
'@types/node': 24.9.2
- '@inquirer/confirm@5.1.21(@types/node@24.9.2)':
+ '@inquirer/confirm@5.1.14(@types/node@24.9.2)':
dependencies:
'@inquirer/core': 10.3.2(@types/node@24.9.2)
'@inquirer/type': 3.0.10(@types/node@24.9.2)
optionalDependencies:
'@types/node': 24.9.2
- '@inquirer/confirm@5.1.6(@types/node@24.9.2)':
+ '@inquirer/confirm@5.1.21(@types/node@24.9.2)':
dependencies:
'@inquirer/core': 10.3.2(@types/node@24.9.2)
'@inquirer/type': 3.0.10(@types/node@24.9.2)
@@ -10578,7 +10907,7 @@ snapshots:
'@inquirer/external-editor@1.0.3(@types/node@24.9.2)':
dependencies:
chardet: 2.1.1
- iconv-lite: 0.7.0
+ iconv-lite: 0.7.3
optionalDependencies:
'@types/node': 24.9.2
@@ -10606,7 +10935,7 @@ snapshots:
optionalDependencies:
'@types/node': 24.9.2
- '@inquirer/prompts@7.3.2(@types/node@24.9.2)':
+ '@inquirer/prompts@7.8.2(@types/node@24.9.2)':
dependencies:
'@inquirer/checkbox': 4.3.2(@types/node@24.9.2)
'@inquirer/confirm': 5.1.21(@types/node@24.9.2)
@@ -10648,10 +10977,6 @@ snapshots:
optionalDependencies:
'@types/node': 24.9.2
- '@inquirer/type@1.5.5':
- dependencies:
- mute-stream: 1.0.0
-
'@inquirer/type@3.0.10(@types/node@24.9.2)':
optionalDependencies:
'@types/node': 24.9.2
@@ -10674,20 +10999,11 @@ snapshots:
dependencies:
'@isaacs/balanced-match': 4.0.1
- '@isaacs/cliui@8.0.2':
- dependencies:
- string-width: 5.1.2
- string-width-cjs: string-width@4.2.3
- strip-ansi: 7.1.2
- strip-ansi-cjs: strip-ansi@6.0.1
- wrap-ansi: 8.1.0
- wrap-ansi-cjs: wrap-ansi@7.0.0
-
'@isaacs/cliui@9.0.0': {}
'@isaacs/fs-minipass@4.0.1':
dependencies:
- minipass: 7.1.2
+ minipass: 7.1.3
'@istanbuljs/schema@0.1.3': {}
@@ -10761,10 +11077,13 @@ snapshots:
'@leichtgewicht/ip-codec@2.0.5': {}
- '@listr2/prompt-adapter-inquirer@2.0.18(@inquirer/prompts@7.3.2(@types/node@24.9.2))':
+ '@listr2/prompt-adapter-inquirer@3.0.1(@inquirer/prompts@7.8.2(@types/node@24.9.2))(@types/node@24.9.2)(listr2@9.0.1)':
dependencies:
- '@inquirer/prompts': 7.3.2(@types/node@24.9.2)
- '@inquirer/type': 1.5.5
+ '@inquirer/prompts': 7.8.2(@types/node@24.9.2)
+ '@inquirer/type': 3.0.10(@types/node@24.9.2)
+ listr2: 9.0.1
+ transitivePeerDependencies:
+ - '@types/node'
'@lit-labs/ssr-dom-shim@1.4.0': {}
@@ -10772,22 +11091,25 @@ snapshots:
dependencies:
'@lit-labs/ssr-dom-shim': 1.4.0
- '@lmdb/lmdb-darwin-arm64@3.2.6':
+ '@lmdb/lmdb-darwin-arm64@3.4.2':
optional: true
- '@lmdb/lmdb-darwin-x64@3.2.6':
+ '@lmdb/lmdb-darwin-x64@3.4.2':
optional: true
- '@lmdb/lmdb-linux-arm64@3.2.6':
+ '@lmdb/lmdb-linux-arm64@3.4.2':
optional: true
- '@lmdb/lmdb-linux-arm@3.2.6':
+ '@lmdb/lmdb-linux-arm@3.4.2':
optional: true
- '@lmdb/lmdb-linux-x64@3.2.6':
+ '@lmdb/lmdb-linux-x64@3.4.2':
optional: true
- '@lmdb/lmdb-win32-x64@3.2.6':
+ '@lmdb/lmdb-win32-arm64@3.4.2':
+ optional: true
+
+ '@lmdb/lmdb-win32-x64@3.4.2':
optional: true
'@luxass/strip-json-comments@1.4.0': {}
@@ -10824,14 +11146,18 @@ snapshots:
self-closing-tags: 1.0.1
source-map-support: 0.5.21
- '@marko/run-explorer@2.0.3(@marko/run@0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.25.12)(jiti@2.6.1)(less@4.2.2)(marko@6.1.8)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))':
+ '@marko/run-explorer@2.0.3(@marko/run@0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.25.12)(jiti@2.6.1)(less@4.4.0)(marko@6.1.8)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))':
+ dependencies:
+ '@marko/run': 0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.25.12)(jiti@2.6.1)(less@4.4.0)(marko@6.1.8)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+
+ '@marko/run-explorer@2.0.3(@marko/run@0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.28.1)(jiti@2.6.1)(less@4.4.0)(marko@6.1.8)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))':
dependencies:
- '@marko/run': 0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.25.12)(jiti@2.6.1)(less@4.2.2)(marko@6.1.8)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ '@marko/run': 0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.28.1)(jiti@2.6.1)(less@4.4.0)(marko@6.1.8)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
- '@marko/run@0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.25.12)(jiti@2.6.1)(less@4.2.2)(marko@6.1.8)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)':
+ '@marko/run@0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.25.12)(jiti@2.6.1)(less@4.4.0)(marko@6.1.8)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)':
dependencies:
- '@marko/run-explorer': 2.0.3(@marko/run@0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.25.12)(jiti@2.6.1)(less@4.2.2)(marko@6.1.8)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
- '@marko/vite': 5.4.10(@marko/compiler@5.39.65)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ '@marko/run-explorer': 2.0.3(@marko/run@0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.25.12)(jiti@2.6.1)(less@4.4.0)(marko@6.1.8)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
+ '@marko/vite': 5.4.10(@marko/compiler@5.39.65)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
browserslist: 4.28.2
cli-table3: 0.6.5
compression: 1.8.1(supports-color@10.2.2)
@@ -10847,7 +11173,43 @@ snapshots:
sade: 1.8.1
serve-static: 1.16.2(supports-color@10.2.2)
supports-color: 10.2.2
- vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ warp10: 2.1.0
+ transitivePeerDependencies:
+ - '@marko/compiler'
+ - '@types/node'
+ - esbuild
+ - jiti
+ - less
+ - lightningcss
+ - sass
+ - sass-embedded
+ - stylus
+ - sugarss
+ - terser
+ - tsx
+ - yaml
+
+ '@marko/run@0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.28.1)(jiti@2.6.1)(less@4.4.0)(marko@6.1.8)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)':
+ dependencies:
+ '@marko/run-explorer': 2.0.3(@marko/run@0.7.7(@marko/compiler@5.39.65)(@types/node@24.9.2)(esbuild@0.28.1)(jiti@2.6.1)(less@4.4.0)(marko@6.1.8)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
+ '@marko/vite': 5.4.10(@marko/compiler@5.39.65)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
+ browserslist: 4.28.2
+ cli-table3: 0.6.5
+ compression: 1.8.1(supports-color@10.2.2)
+ debug: 4.4.3(supports-color@10.2.2)
+ dotenv: 16.6.1
+ draftlog: 1.0.13
+ esbuild-plugin-browserslist: 0.16.0(browserslist@4.28.2)(esbuild@0.28.1)(supports-color@10.2.2)
+ glob: 11.1.0
+ human-format: 1.2.1
+ kleur: 4.1.5
+ marko: 6.1.8
+ parse-node-args: 1.1.3
+ sade: 1.8.1
+ serve-static: 1.16.2(supports-color@10.2.2)
+ supports-color: 10.2.2
+ vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
warp10: 2.1.0
transitivePeerDependencies:
- '@marko/compiler'
@@ -10864,7 +11226,7 @@ snapshots:
- tsx
- yaml
- '@marko/vite@3.1.6(@marko/compiler@5.39.65)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))':
+ '@marko/vite@3.1.6(@marko/compiler@5.39.65)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))':
dependencies:
'@marko/compiler': 5.39.65
anymatch: 3.1.3
@@ -10873,9 +11235,9 @@ snapshots:
htmlparser2: 9.1.0
resolve: 1.22.11
resolve.exports: 2.0.3
- vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
- '@marko/vite@5.4.10(@marko/compiler@5.39.65)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))':
+ '@marko/vite@5.4.10(@marko/compiler@5.39.65)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))':
dependencies:
'@chialab/estransform': 0.19.1
'@marko/compiler': 5.39.65
@@ -10887,7 +11249,7 @@ snapshots:
relative-import-path: 1.0.0
resolve: 1.22.11
resolve.exports: 2.0.3
- vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
'@microsoft/api-extractor-model@7.29.6(@types/node@24.9.2)':
dependencies:
@@ -10924,6 +11286,28 @@ snapshots:
'@microsoft/tsdoc@0.15.1': {}
+ '@modelcontextprotocol/sdk@1.26.0(zod@4.1.13)':
+ dependencies:
+ '@hono/node-server': 1.19.14(hono@4.12.30)
+ ajv: 8.18.0
+ ajv-formats: 3.0.1(ajv@8.18.0)
+ content-type: 1.0.5
+ cors: 2.8.6
+ cross-spawn: 7.0.6
+ eventsource: 3.0.7
+ eventsource-parser: 3.1.0
+ express: 5.2.1
+ express-rate-limit: 8.5.2(express@5.2.1)
+ hono: 4.12.30
+ jose: 6.2.3
+ json-schema-typed: 8.0.2
+ pkce-challenge: 5.0.1
+ raw-body: 3.0.2
+ zod: 4.1.13
+ zod-to-json-schema: 3.25.2(zod@4.1.13)
+ transitivePeerDependencies:
+ - supports-color
+
'@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
optional: true
@@ -11089,17 +11473,13 @@ snapshots:
'@tybys/wasm-util': 0.10.1
optional: true
- '@ngtools/webpack@19.2.24(@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(supports-color@10.2.2)(typescript@5.6.3))(typescript@5.6.3)(webpack@5.105.0(esbuild@0.25.4))':
+ '@ngtools/webpack@20.3.32(@angular/compiler-cli@20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3))(typescript@5.9.3)(webpack@5.105.0(esbuild@0.28.1))':
dependencies:
- '@angular/compiler-cli': 19.2.20(@angular/compiler@19.2.20)(supports-color@10.2.2)(typescript@5.6.3)
- typescript: 5.6.3
- webpack: 5.105.0(esbuild@0.25.4)
+ '@angular/compiler-cli': 20.3.26(@angular/compiler@20.3.26)(typescript@5.9.3)
+ typescript: 5.9.3
+ webpack: 5.105.0(esbuild@0.28.1)
- '@ngtools/webpack@19.2.24(@angular/compiler-cli@19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3))(typescript@5.6.3)(webpack@5.105.0(esbuild@0.25.4))':
- dependencies:
- '@angular/compiler-cli': 19.2.20(@angular/compiler@19.2.20)(typescript@5.6.3)
- typescript: 5.6.3
- webpack: 5.105.0(esbuild@0.25.4)
+ '@noble/hashes@1.4.0': {}
'@nodelib/fs.scandir@2.1.5':
dependencies:
@@ -11113,64 +11493,61 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.19.1
- '@npmcli/agent@3.0.0':
+ '@npmcli/agent@4.0.2':
dependencies:
agent-base: 7.1.4
http-proxy-agent: 7.0.2(supports-color@10.2.2)
https-proxy-agent: 7.0.6(supports-color@10.2.2)
- lru-cache: 10.4.3
+ lru-cache: 11.2.2
socks-proxy-agent: 8.0.5
transitivePeerDependencies:
- supports-color
- '@npmcli/fs@4.0.0':
+ '@npmcli/fs@5.0.0':
dependencies:
semver: 7.7.3
- '@npmcli/git@6.0.3':
+ '@npmcli/git@7.0.2':
dependencies:
- '@npmcli/promise-spawn': 8.0.3
- ini: 5.0.0
- lru-cache: 10.4.3
- npm-pick-manifest: 10.0.0
- proc-log: 5.0.0
- promise-retry: 2.0.1
+ '@gar/promise-retry': 1.0.3
+ '@npmcli/promise-spawn': 9.0.1
+ ini: 6.0.0
+ lru-cache: 11.2.2
+ npm-pick-manifest: 11.0.3
+ proc-log: 6.1.0
semver: 7.7.3
- which: 5.0.0
+ which: 6.0.1
- '@npmcli/installed-package-contents@3.0.0':
+ '@npmcli/installed-package-contents@4.0.0':
dependencies:
- npm-bundled: 4.0.0
- npm-normalize-package-bin: 4.0.0
+ npm-bundled: 5.0.0
+ npm-normalize-package-bin: 5.0.0
- '@npmcli/node-gyp@4.0.0': {}
+ '@npmcli/node-gyp@5.0.0': {}
- '@npmcli/package-json@6.2.0':
+ '@npmcli/package-json@7.0.5':
dependencies:
- '@npmcli/git': 6.0.3
- glob: 10.4.5
- hosted-git-info: 8.1.0
- json-parse-even-better-errors: 4.0.0
- proc-log: 5.0.0
+ '@npmcli/git': 7.0.2
+ glob: 13.0.6
+ hosted-git-info: 9.0.3
+ json-parse-even-better-errors: 5.0.0
+ proc-log: 6.1.0
semver: 7.7.3
- validate-npm-package-license: 3.0.4
+ spdx-expression-parse: 4.0.0
- '@npmcli/promise-spawn@8.0.3':
+ '@npmcli/promise-spawn@9.0.1':
dependencies:
- which: 5.0.0
+ which: 6.0.1
- '@npmcli/redact@3.2.2': {}
+ '@npmcli/redact@4.0.0': {}
- '@npmcli/run-script@9.1.0':
+ '@npmcli/run-script@10.0.4':
dependencies:
- '@npmcli/node-gyp': 4.0.0
- '@npmcli/package-json': 6.2.0
- '@npmcli/promise-spawn': 8.0.3
- node-gyp: 11.5.0
- proc-log: 5.0.0
- which: 5.0.0
- transitivePeerDependencies:
- - supports-color
+ '@npmcli/node-gyp': 5.0.0
+ '@npmcli/package-json': 7.0.5
+ '@npmcli/promise-spawn': 9.0.1
+ node-gyp: 12.4.0
+ proc-log: 6.1.0
'@nx/nx-darwin-arm64@22.1.3':
optional: true
@@ -11385,8 +11762,99 @@ snapshots:
'@parcel/watcher-win32-x64': 2.5.1
optional: true
- '@pkgjs/parseargs@0.11.0':
- optional: true
+ '@peculiar/asn1-cms@2.8.0':
+ dependencies:
+ '@peculiar/asn1-schema': 2.8.0
+ '@peculiar/asn1-x509': 2.8.0
+ '@peculiar/asn1-x509-attr': 2.8.0
+ asn1js: 3.0.10
+ tslib: 2.8.1
+
+ '@peculiar/asn1-csr@2.8.0':
+ dependencies:
+ '@peculiar/asn1-schema': 2.8.0
+ '@peculiar/asn1-x509': 2.8.0
+ asn1js: 3.0.10
+ tslib: 2.8.1
+
+ '@peculiar/asn1-ecc@2.8.0':
+ dependencies:
+ '@peculiar/asn1-schema': 2.8.0
+ '@peculiar/asn1-x509': 2.8.0
+ asn1js: 3.0.10
+ tslib: 2.8.1
+
+ '@peculiar/asn1-pfx@2.8.0':
+ dependencies:
+ '@peculiar/asn1-cms': 2.8.0
+ '@peculiar/asn1-pkcs8': 2.8.0
+ '@peculiar/asn1-rsa': 2.8.0
+ '@peculiar/asn1-schema': 2.8.0
+ asn1js: 3.0.10
+ tslib: 2.8.1
+
+ '@peculiar/asn1-pkcs8@2.8.0':
+ dependencies:
+ '@peculiar/asn1-schema': 2.8.0
+ '@peculiar/asn1-x509': 2.8.0
+ asn1js: 3.0.10
+ tslib: 2.8.1
+
+ '@peculiar/asn1-pkcs9@2.8.0':
+ dependencies:
+ '@peculiar/asn1-cms': 2.8.0
+ '@peculiar/asn1-pfx': 2.8.0
+ '@peculiar/asn1-pkcs8': 2.8.0
+ '@peculiar/asn1-schema': 2.8.0
+ '@peculiar/asn1-x509': 2.8.0
+ '@peculiar/asn1-x509-attr': 2.8.0
+ asn1js: 3.0.10
+ tslib: 2.8.1
+
+ '@peculiar/asn1-rsa@2.8.0':
+ dependencies:
+ '@peculiar/asn1-schema': 2.8.0
+ '@peculiar/asn1-x509': 2.8.0
+ asn1js: 3.0.10
+ tslib: 2.8.1
+
+ '@peculiar/asn1-schema@2.8.0':
+ dependencies:
+ '@peculiar/utils': 2.0.3
+ asn1js: 3.0.10
+ tslib: 2.8.1
+
+ '@peculiar/asn1-x509-attr@2.8.0':
+ dependencies:
+ '@peculiar/asn1-schema': 2.8.0
+ '@peculiar/asn1-x509': 2.8.0
+ asn1js: 3.0.10
+ tslib: 2.8.1
+
+ '@peculiar/asn1-x509@2.8.0':
+ dependencies:
+ '@peculiar/asn1-schema': 2.8.0
+ '@peculiar/utils': 2.0.3
+ asn1js: 3.0.10
+ tslib: 2.8.1
+
+ '@peculiar/utils@2.0.3':
+ dependencies:
+ tslib: 2.8.1
+
+ '@peculiar/x509@1.14.3':
+ dependencies:
+ '@peculiar/asn1-cms': 2.8.0
+ '@peculiar/asn1-csr': 2.8.0
+ '@peculiar/asn1-ecc': 2.8.0
+ '@peculiar/asn1-pkcs9': 2.8.0
+ '@peculiar/asn1-rsa': 2.8.0
+ '@peculiar/asn1-schema': 2.8.0
+ '@peculiar/asn1-x509': 2.8.0
+ pvtsutils: 1.3.6
+ reflect-metadata: 0.2.2
+ tslib: 2.8.1
+ tsyringe: 4.10.0
'@playwright/test@1.56.1':
dependencies:
@@ -11523,50 +11991,48 @@ snapshots:
transitivePeerDependencies:
- '@types/node'
- '@schematics/angular@19.2.24(chokidar@4.0.3)':
+ '@schematics/angular@20.3.32(chokidar@4.0.3)':
dependencies:
- '@angular-devkit/core': 19.2.24(chokidar@4.0.3)
- '@angular-devkit/schematics': 19.2.24(chokidar@4.0.3)
+ '@angular-devkit/core': 20.3.32(chokidar@4.0.3)
+ '@angular-devkit/schematics': 20.3.32(chokidar@4.0.3)
jsonc-parser: 3.3.1
transitivePeerDependencies:
- chokidar
- '@sigstore/bundle@3.1.0':
+ '@sigstore/bundle@4.0.0':
dependencies:
- '@sigstore/protobuf-specs': 0.4.3
+ '@sigstore/protobuf-specs': 0.5.1
- '@sigstore/core@2.0.0': {}
+ '@sigstore/core@3.2.1': {}
- '@sigstore/protobuf-specs@0.4.3': {}
+ '@sigstore/protobuf-specs@0.5.1': {}
- '@sigstore/sign@3.1.0':
+ '@sigstore/sign@4.1.1':
dependencies:
- '@sigstore/bundle': 3.1.0
- '@sigstore/core': 2.0.0
- '@sigstore/protobuf-specs': 0.4.3
- make-fetch-happen: 14.0.3
- proc-log: 5.0.0
- promise-retry: 2.0.1
+ '@gar/promise-retry': 1.0.3
+ '@sigstore/bundle': 4.0.0
+ '@sigstore/core': 3.2.1
+ '@sigstore/protobuf-specs': 0.5.1
+ make-fetch-happen: 15.0.6
+ proc-log: 6.1.0
transitivePeerDependencies:
- supports-color
- '@sigstore/tuf@3.1.1(supports-color@10.2.2)':
+ '@sigstore/tuf@4.0.2':
dependencies:
- '@sigstore/protobuf-specs': 0.4.3
- tuf-js: 3.1.0(supports-color@10.2.2)
+ '@sigstore/protobuf-specs': 0.5.1
+ tuf-js: 4.1.0
transitivePeerDependencies:
- supports-color
- '@sigstore/verify@2.1.1':
+ '@sigstore/verify@3.1.1':
dependencies:
- '@sigstore/bundle': 3.1.0
- '@sigstore/core': 2.0.0
- '@sigstore/protobuf-specs': 0.4.3
+ '@sigstore/bundle': 4.0.0
+ '@sigstore/core': 3.2.1
+ '@sigstore/protobuf-specs': 0.5.1
'@sinclair/typebox@0.34.41': {}
- '@sindresorhus/merge-streams@2.3.0': {}
-
'@standard-schema/spec@1.1.0': {}
'@stylistic/eslint-plugin@5.5.0(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))':
@@ -11579,60 +12045,60 @@ snapshots:
estraverse: 5.3.0
picomatch: 4.0.4
- '@sveltejs/package@2.5.4(svelte@4.2.20)(typescript@5.6.3)':
+ '@sveltejs/package@2.5.4(svelte@4.2.20)(typescript@5.9.3)':
dependencies:
chokidar: 4.0.3
kleur: 4.1.5
sade: 1.8.1
semver: 7.7.3
svelte: 4.2.20
- svelte2tsx: 0.7.45(svelte@4.2.20)(typescript@5.6.3)
+ svelte2tsx: 0.7.45(svelte@4.2.20)(typescript@5.9.3)
transitivePeerDependencies:
- typescript
- '@sveltejs/vite-plugin-svelte-inspector@2.1.0(@sveltejs/vite-plugin-svelte@3.1.2(supports-color@10.2.2)(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)))(supports-color@10.2.2)(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))':
+ '@sveltejs/vite-plugin-svelte-inspector@2.1.0(@sveltejs/vite-plugin-svelte@3.1.2(supports-color@10.2.2)(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)))(supports-color@10.2.2)(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))':
dependencies:
- '@sveltejs/vite-plugin-svelte': 3.1.2(supports-color@10.2.2)(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ '@sveltejs/vite-plugin-svelte': 3.1.2(supports-color@10.2.2)(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
debug: 4.4.3(supports-color@10.2.2)
svelte: 4.2.20
- vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
transitivePeerDependencies:
- supports-color
- '@sveltejs/vite-plugin-svelte-inspector@2.1.0(@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)))(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))':
+ '@sveltejs/vite-plugin-svelte-inspector@2.1.0(@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)))(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))':
dependencies:
- '@sveltejs/vite-plugin-svelte': 3.1.2(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ '@sveltejs/vite-plugin-svelte': 3.1.2(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
debug: 4.4.3(supports-color@10.2.2)
svelte: 4.2.20
- vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
transitivePeerDependencies:
- supports-color
- '@sveltejs/vite-plugin-svelte@3.1.2(supports-color@10.2.2)(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))':
+ '@sveltejs/vite-plugin-svelte@3.1.2(supports-color@10.2.2)(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))':
dependencies:
- '@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/vite-plugin-svelte@3.1.2(supports-color@10.2.2)(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)))(supports-color@10.2.2)(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ '@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/vite-plugin-svelte@3.1.2(supports-color@10.2.2)(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)))(supports-color@10.2.2)(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
debug: 4.4.3(supports-color@10.2.2)
deepmerge: 4.3.1
kleur: 4.1.5
magic-string: 0.30.21
svelte: 4.2.20
svelte-hmr: 0.16.0(svelte@4.2.20)
- vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
- vitefu: 0.2.5(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ vitefu: 0.2.5(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
transitivePeerDependencies:
- supports-color
- '@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))':
+ '@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))':
dependencies:
- '@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)))(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ '@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)))(svelte@4.2.20)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
debug: 4.4.3(supports-color@10.2.2)
deepmerge: 4.3.1
kleur: 4.1.5
magic-string: 0.30.21
svelte: 4.2.20
svelte-hmr: 0.16.0(svelte@4.2.20)
- vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
- vitefu: 0.2.5(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ vitefu: 0.2.5(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
transitivePeerDependencies:
- supports-color
@@ -11640,28 +12106,28 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@tanstack/angular-query-experimental@5.80.7(@angular/common@19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))':
+ '@tanstack/angular-query-experimental@5.80.7(@angular/common@20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))':
dependencies:
- '@angular/common': 19.2.20(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
- '@angular/core': 19.2.20(rxjs@7.8.2)(zone.js@0.15.1)
+ '@angular/common': 20.3.26(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2)
+ '@angular/core': 20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)
'@tanstack/query-core': 5.80.7
'@tanstack/query-devtools': 5.80.0
- '@tanstack/angular-table@8.21.3(@angular/core@19.2.20(rxjs@7.8.2)(zone.js@0.15.1))':
+ '@tanstack/angular-table@8.21.3(@angular/core@20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1))':
dependencies:
- '@angular/core': 19.2.20(rxjs@7.8.2)(zone.js@0.15.1)
+ '@angular/core': 20.3.26(@angular/compiler@20.3.26)(rxjs@7.8.2)(zone.js@0.15.1)
'@tanstack/table-core': 8.21.3
tslib: 2.8.1
- '@tanstack/eslint-config@0.3.4(@typescript-eslint/utils@8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.6.3))(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.6.3)':
+ '@tanstack/eslint-config@0.3.4(@typescript-eslint/utils@8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.9.3))(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.9.3)':
dependencies:
'@eslint/js': 9.39.0
'@stylistic/eslint-plugin': 5.5.0(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))
eslint: 9.39.0(jiti@2.6.1)(supports-color@10.2.2)
- eslint-plugin-import-x: 4.16.1(@typescript-eslint/utils@8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.6.3))(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)
- eslint-plugin-n: 17.23.1(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.6.3)
+ eslint-plugin-import-x: 4.16.1(@typescript-eslint/utils@8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.9.3))(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)
+ eslint-plugin-n: 17.23.1(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.9.3)
globals: 16.5.0
- typescript-eslint: 8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.6.3)
+ typescript-eslint: 8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.9.3)
vue-eslint-parser: 10.2.0(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)
transitivePeerDependencies:
- '@typescript-eslint/utils'
@@ -11704,31 +12170,31 @@ snapshots:
'@tanstack/table-core@8.21.3': {}
- '@tanstack/vite-config@0.4.3(@types/node@24.9.2)(rollup@4.59.0)(supports-color@10.2.2)(typescript@5.6.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))':
+ '@tanstack/vite-config@0.4.3(@types/node@24.9.2)(rollup@4.59.0)(supports-color@10.2.2)(typescript@5.9.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))':
dependencies:
rollup-plugin-preserve-directives: 0.4.0(rollup@4.59.0)
- vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
- vite-plugin-dts: 4.2.3(@types/node@24.9.2)(rollup@4.59.0)(supports-color@10.2.2)(typescript@5.6.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
- vite-plugin-externalize-deps: 0.10.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
- vite-tsconfig-paths: 5.1.4(supports-color@10.2.2)(typescript@5.6.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ vite-plugin-dts: 4.2.3(@types/node@24.9.2)(rollup@4.59.0)(supports-color@10.2.2)(typescript@5.9.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
+ vite-plugin-externalize-deps: 0.10.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
+ vite-tsconfig-paths: 5.1.4(supports-color@10.2.2)(typescript@5.9.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
- typescript
- '@tanstack/vue-query@5.90.5(vue@3.5.22(typescript@5.6.3))':
+ '@tanstack/vue-query@5.90.5(vue@3.5.22(typescript@5.9.3))':
dependencies:
'@tanstack/match-sorter-utils': 8.19.4
'@tanstack/query-core': 5.90.5
'@vue/devtools-api': 6.6.4
- vue: 3.5.22(typescript@5.6.3)
- vue-demi: 0.14.10(vue@3.5.22(typescript@5.6.3))
+ vue: 3.5.22(typescript@5.9.3)
+ vue-demi: 0.14.10(vue@3.5.22(typescript@5.9.3))
- '@tanstack/vue-table@8.21.3(vue@3.5.22(typescript@5.6.3))':
+ '@tanstack/vue-table@8.21.3(vue@3.5.22(typescript@5.9.3))':
dependencies:
'@tanstack/table-core': 8.21.3
- vue: 3.5.22(typescript@5.6.3)
+ vue: 3.5.22(typescript@5.9.3)
'@testing-library/dom@10.4.1':
dependencies:
@@ -11764,10 +12230,10 @@ snapshots:
'@tufjs/canonical-json@2.0.0': {}
- '@tufjs/models@3.0.1':
+ '@tufjs/models@4.1.0':
dependencies:
'@tufjs/canonical-json': 2.0.0
- minimatch: 9.0.5
+ minimatch: 10.2.5
'@tybys/wasm-util@0.10.1':
dependencies:
@@ -11938,10 +12404,6 @@ snapshots:
'@types/mime@1.3.5': {}
- '@types/node-forge@1.3.14':
- dependencies:
- '@types/node': 24.9.2
-
'@types/node@12.20.55': {}
'@types/node@24.9.2':
@@ -12010,41 +12472,41 @@ snapshots:
dependencies:
'@types/node': 24.9.2
- '@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.6.3))(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.6.3)':
+ '@typescript-eslint/eslint-plugin@8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.9.3))(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.9.3)':
dependencies:
'@eslint-community/regexpp': 4.12.2
- '@typescript-eslint/parser': 8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.6.3)
+ '@typescript-eslint/parser': 8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.9.3)
'@typescript-eslint/scope-manager': 8.46.2
- '@typescript-eslint/type-utils': 8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.6.3)
- '@typescript-eslint/utils': 8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.6.3)
+ '@typescript-eslint/type-utils': 8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.9.3)
'@typescript-eslint/visitor-keys': 8.46.2
eslint: 9.39.0(jiti@2.6.1)(supports-color@10.2.2)
graphemer: 1.4.0
ignore: 7.0.5
natural-compare: 1.4.0
- ts-api-utils: 2.1.0(typescript@5.6.3)
- typescript: 5.6.3
+ ts-api-utils: 2.1.0(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.6.3)':
+ '@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.9.3)':
dependencies:
'@typescript-eslint/scope-manager': 8.46.2
'@typescript-eslint/types': 8.46.2
- '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.6.3)
+ '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3)
'@typescript-eslint/visitor-keys': 8.46.2
debug: 4.4.3(supports-color@10.2.2)
eslint: 9.39.0(jiti@2.6.1)(supports-color@10.2.2)
- typescript: 5.6.3
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/project-service@8.46.2(typescript@5.6.3)':
+ '@typescript-eslint/project-service@8.46.2(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/tsconfig-utils': 8.46.2(typescript@5.6.3)
+ '@typescript-eslint/tsconfig-utils': 8.46.2(typescript@5.9.3)
'@typescript-eslint/types': 8.46.2
debug: 4.4.3(supports-color@10.2.2)
- typescript: 5.6.3
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
@@ -12053,28 +12515,28 @@ snapshots:
'@typescript-eslint/types': 8.46.2
'@typescript-eslint/visitor-keys': 8.46.2
- '@typescript-eslint/tsconfig-utils@8.46.2(typescript@5.6.3)':
+ '@typescript-eslint/tsconfig-utils@8.46.2(typescript@5.9.3)':
dependencies:
- typescript: 5.6.3
+ typescript: 5.9.3
- '@typescript-eslint/type-utils@8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.6.3)':
+ '@typescript-eslint/type-utils@8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.9.3)':
dependencies:
'@typescript-eslint/types': 8.46.2
- '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.6.3)
- '@typescript-eslint/utils': 8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.6.3)
+ '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.9.3)
debug: 4.4.3(supports-color@10.2.2)
eslint: 9.39.0(jiti@2.6.1)(supports-color@10.2.2)
- ts-api-utils: 2.1.0(typescript@5.6.3)
- typescript: 5.6.3
+ ts-api-utils: 2.1.0(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
'@typescript-eslint/types@8.46.2': {}
- '@typescript-eslint/typescript-estree@8.46.2(typescript@5.6.3)':
+ '@typescript-eslint/typescript-estree@8.46.2(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/project-service': 8.46.2(typescript@5.6.3)
- '@typescript-eslint/tsconfig-utils': 8.46.2(typescript@5.6.3)
+ '@typescript-eslint/project-service': 8.46.2(typescript@5.9.3)
+ '@typescript-eslint/tsconfig-utils': 8.46.2(typescript@5.9.3)
'@typescript-eslint/types': 8.46.2
'@typescript-eslint/visitor-keys': 8.46.2
debug: 4.4.3(supports-color@10.2.2)
@@ -12082,19 +12544,19 @@ snapshots:
is-glob: 4.0.3
minimatch: 9.0.5
semver: 7.7.3
- ts-api-utils: 2.1.0(typescript@5.6.3)
- typescript: 5.6.3
+ ts-api-utils: 2.1.0(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.6.3)':
+ '@typescript-eslint/utils@8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.9.3)':
dependencies:
'@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))
'@typescript-eslint/scope-manager': 8.46.2
'@typescript-eslint/types': 8.46.2
- '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.6.3)
+ '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3)
eslint: 9.39.0(jiti@2.6.1)(supports-color@10.2.2)
- typescript: 5.6.3
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
@@ -12164,11 +12626,23 @@ snapshots:
'@ver0/deep-equal@1.0.0': {}
- '@vitejs/plugin-basic-ssl@1.2.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))':
+ '@vitejs/plugin-basic-ssl@2.1.0(vite@7.3.6(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))':
+ dependencies:
+ vite: 7.3.6(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+
+ '@vitejs/plugin-react@4.7.0(supports-color@10.2.2)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))':
dependencies:
- vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ '@babel/core': 7.28.5(supports-color@10.2.2)
+ '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.5(supports-color@10.2.2))
+ '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.5(supports-color@10.2.2))
+ '@rolldown/pluginutils': 1.0.0-beta.27
+ '@types/babel__core': 7.20.5
+ react-refresh: 0.17.0
+ vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ transitivePeerDependencies:
+ - supports-color
- '@vitejs/plugin-react@4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))':
+ '@vitejs/plugin-react@4.7.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))':
dependencies:
'@babel/core': 7.28.5
'@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.5)
@@ -12176,14 +12650,14 @@ snapshots:
'@rolldown/pluginutils': 1.0.0-beta.27
'@types/babel__core': 7.20.5
react-refresh: 0.17.0
- vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue@5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))(vue@3.5.22(typescript@5.6.3))':
+ '@vitejs/plugin-vue@5.2.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))(vue@3.5.22(typescript@5.9.3))':
dependencies:
- vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
- vue: 3.5.22(typescript@5.6.3)
+ vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ vue: 3.5.22(typescript@5.9.3)
'@vitest/expect@4.1.4':
dependencies:
@@ -12194,13 +12668,13 @@ snapshots:
chai: 6.2.2
tinyrainbow: 3.1.0
- '@vitest/mocker@4.1.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))':
+ '@vitest/mocker@4.1.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))':
dependencies:
'@vitest/spy': 4.1.4
estree-walker: 3.0.3
magic-string: 0.30.21
optionalDependencies:
- vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
'@vitest/pretty-format@4.1.4':
dependencies:
@@ -12252,7 +12726,7 @@ snapshots:
'@vue/compiler-core@3.5.22':
dependencies:
- '@babel/parser': 7.28.5
+ '@babel/parser': 7.29.7
'@vue/shared': 3.5.22
entities: 4.5.0
estree-walker: 2.0.2
@@ -12265,14 +12739,14 @@ snapshots:
'@vue/compiler-sfc@3.5.22':
dependencies:
- '@babel/parser': 7.28.5
+ '@babel/parser': 7.29.7
'@vue/compiler-core': 3.5.22
'@vue/compiler-dom': 3.5.22
'@vue/compiler-ssr': 3.5.22
'@vue/shared': 3.5.22
estree-walker: 2.0.2
magic-string: 0.30.21
- postcss: 8.5.6
+ postcss: 8.5.12
source-map-js: 1.2.1
'@vue/compiler-ssr@3.5.22':
@@ -12287,7 +12761,7 @@ snapshots:
'@vue/devtools-api@6.6.4': {}
- '@vue/language-core@2.1.6(typescript@5.6.3)':
+ '@vue/language-core@2.1.6(typescript@5.9.3)':
dependencies:
'@volar/language-core': 2.4.23
'@vue/compiler-dom': 3.5.22
@@ -12298,9 +12772,9 @@ snapshots:
muggle-string: 0.4.1
path-browserify: 1.0.1
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.9.3
- '@vue/language-core@2.2.12(typescript@5.6.3)':
+ '@vue/language-core@2.2.12(typescript@5.9.3)':
dependencies:
'@volar/language-core': 2.4.15
'@vue/compiler-dom': 3.5.22
@@ -12311,7 +12785,7 @@ snapshots:
muggle-string: 0.4.1
path-browserify: 1.0.1
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.9.3
'@vue/reactivity@3.5.22':
dependencies:
@@ -12329,28 +12803,28 @@ snapshots:
'@vue/shared': 3.5.22
csstype: 3.2.3
- '@vue/server-renderer@3.5.22(vue@3.5.22(typescript@5.6.3))':
+ '@vue/server-renderer@3.5.22(vue@3.5.22(typescript@5.9.3))':
dependencies:
'@vue/compiler-ssr': 3.5.22
'@vue/shared': 3.5.22
- vue: 3.5.22(typescript@5.6.3)
+ vue: 3.5.22(typescript@5.9.3)
'@vue/shared@3.5.22': {}
- '@vueuse/core@12.8.2(typescript@5.6.3)':
+ '@vueuse/core@12.8.2(typescript@5.9.3)':
dependencies:
'@types/web-bluetooth': 0.0.21
'@vueuse/metadata': 12.8.2
- '@vueuse/shared': 12.8.2(typescript@5.6.3)
- vue: 3.5.22(typescript@5.6.3)
+ '@vueuse/shared': 12.8.2(typescript@5.9.3)
+ vue: 3.5.22(typescript@5.9.3)
transitivePeerDependencies:
- typescript
'@vueuse/metadata@12.8.2': {}
- '@vueuse/shared@12.8.2(typescript@5.6.3)':
+ '@vueuse/shared@12.8.2(typescript@5.9.3)':
dependencies:
- vue: 3.5.22(typescript@5.6.3)
+ vue: 3.5.22(typescript@5.9.3)
transitivePeerDependencies:
- typescript
@@ -12399,7 +12873,7 @@ snapshots:
'@web/test-runner-core@0.13.4(supports-color@10.2.2)':
dependencies:
- '@babel/code-frame': 7.29.0
+ '@babel/code-frame': 7.29.7
'@types/babel__code-frame': 7.0.6
'@types/co-body': 6.1.3
'@types/convert-source-map': 2.0.3
@@ -12521,13 +12995,18 @@ snapshots:
dependencies:
argparse: 2.0.1
- abbrev@3.0.1: {}
+ abbrev@4.0.0: {}
accepts@1.3.8:
dependencies:
mime-types: 2.1.35
negotiator: 0.6.3
+ accepts@2.0.0:
+ dependencies:
+ mime-types: 3.0.2
+ negotiator: 1.0.0
+
acorn-import-phases@1.0.4(acorn@8.15.0):
dependencies:
acorn: 8.15.0
@@ -12549,9 +13028,9 @@ snapshots:
optionalDependencies:
ajv: 8.13.0
- ajv-formats@2.1.1(ajv@8.17.1):
+ ajv-formats@2.1.1(ajv@8.18.0):
optionalDependencies:
- ajv: 8.17.1
+ ajv: 8.18.0
ajv-formats@3.0.1(ajv@8.13.0):
optionalDependencies:
@@ -12561,9 +13040,9 @@ snapshots:
optionalDependencies:
ajv: 8.18.0
- ajv-keywords@5.1.0(ajv@8.17.1):
+ ajv-keywords@5.1.0(ajv@8.18.0):
dependencies:
- ajv: 8.17.1
+ ajv: 8.18.0
fast-deep-equal: 3.1.3
ajv@6.12.6:
@@ -12587,13 +13066,6 @@ snapshots:
require-from-string: 2.0.2
uri-js: 4.4.1
- ajv@8.17.1:
- dependencies:
- fast-deep-equal: 3.1.3
- fast-uri: 3.1.0
- json-schema-traverse: 1.0.0
- require-from-string: 2.0.2
-
ajv@8.18.0:
dependencies:
fast-deep-equal: 3.1.3
@@ -12601,6 +13073,23 @@ snapshots:
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
+ algoliasearch@5.35.0:
+ dependencies:
+ '@algolia/abtesting': 1.1.0
+ '@algolia/client-abtesting': 5.35.0
+ '@algolia/client-analytics': 5.35.0
+ '@algolia/client-common': 5.35.0
+ '@algolia/client-insights': 5.35.0
+ '@algolia/client-personalization': 5.35.0
+ '@algolia/client-query-suggestions': 5.35.0
+ '@algolia/client-search': 5.35.0
+ '@algolia/ingestion': 1.35.0
+ '@algolia/monitoring': 1.35.0
+ '@algolia/recommend': 5.35.0
+ '@algolia/requester-browser-xhr': 5.35.0
+ '@algolia/requester-fetch': 5.35.0
+ '@algolia/requester-node-http': 5.35.0
+
alien-signals@1.0.13: {}
ansi-colors@4.1.3: {}
@@ -12652,20 +13141,26 @@ snapshots:
array-union@2.1.0: {}
+ asn1js@3.0.10:
+ dependencies:
+ pvtsutils: 1.3.6
+ pvutils: 1.1.5
+ tslib: 2.8.1
+
assertion-error@2.0.1: {}
astral-regex@2.0.0: {}
asynckit@0.4.0: {}
- autoprefixer@10.4.20(postcss@8.5.2):
+ autoprefixer@10.4.21(postcss@8.5.12):
dependencies:
- browserslist: 4.27.0
- caniuse-lite: 1.0.30001752
+ browserslist: 4.28.2
+ caniuse-lite: 1.0.30001787
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.1
- postcss: 8.5.2
+ postcss: 8.5.12
postcss-value-parser: 4.2.0
axe-core@4.11.0: {}
@@ -12680,12 +13175,11 @@ snapshots:
axobject-query@4.1.0: {}
- babel-loader@9.2.1(@babel/core@7.26.10)(webpack@5.105.0(esbuild@0.25.4)):
+ babel-loader@10.0.0(@babel/core@7.29.7)(webpack@5.105.0(esbuild@0.28.1)):
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- find-cache-dir: 4.0.0
- schema-utils: 4.3.3
- webpack: 5.105.0(esbuild@0.25.4)
+ '@babel/core': 7.29.7
+ find-up: 5.0.0
+ webpack: 5.105.0(esbuild@0.28.1)
babel-plugin-jsx-dom-expressions@0.40.3(@babel/core@7.28.5):
dependencies:
@@ -12696,27 +13190,27 @@ snapshots:
html-entities: 2.3.3
parse5: 7.3.0
- babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.26.10):
+ babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.29.7):
dependencies:
- '@babel/compat-data': 7.28.5
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.26.10)
+ '@babel/compat-data': 7.29.7
+ '@babel/core': 7.29.7
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.29.7)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.26.10):
+ babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.29.7):
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.26.10)
+ '@babel/core': 7.29.7
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.29.7)
core-js-compat: 3.46.0
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.26.10):
+ babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.29.7):
dependencies:
- '@babel/core': 7.26.10(supports-color@10.2.2)
- '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.26.10)
+ '@babel/core': 7.29.7
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.29.7)
transitivePeerDependencies:
- supports-color
@@ -12733,23 +13227,23 @@ snapshots:
balanced-match@1.0.2: {}
+ balanced-match@4.0.4: {}
+
base64-js@1.5.1: {}
baseline-browser-mapping@2.10.18: {}
- baseline-browser-mapping@2.8.22: {}
-
batch@0.6.1: {}
- beasties@0.3.2:
+ beasties@0.3.5:
dependencies:
- css-select: 5.2.2
- css-what: 6.2.2
+ css-select: 6.0.0
+ css-what: 7.0.0
dom-serializer: 2.0.0
domhandler: 5.0.3
- htmlparser2: 10.0.0
+ htmlparser2: 10.1.0
picocolors: 1.1.1
- postcss: 8.5.6
+ postcss: 8.5.12
postcss-media-query-parser: 0.2.3
better-path-resolve@1.0.0:
@@ -12770,23 +13264,37 @@ snapshots:
inherits: 2.0.4
readable-stream: 3.6.2
- body-parser@1.20.3(supports-color@10.2.2):
+ body-parser@1.20.6:
dependencies:
bytes: 3.1.2
content-type: 1.0.5
debug: 2.6.9(supports-color@10.2.2)
depd: 2.0.0
destroy: 1.2.0
- http-errors: 2.0.0
+ http-errors: 2.0.1
iconv-lite: 0.4.24
on-finished: 2.4.1
- qs: 6.13.0
- raw-body: 2.5.2
+ qs: 6.15.3
+ raw-body: 2.5.3
type-is: 1.6.18
unpipe: 1.0.0
transitivePeerDependencies:
- supports-color
+ body-parser@2.3.0:
+ dependencies:
+ bytes: 3.1.2
+ content-type: 2.0.0
+ debug: 4.4.3(supports-color@10.2.2)
+ http-errors: 2.0.1
+ iconv-lite: 0.7.3
+ on-finished: 2.4.1
+ qs: 6.15.3
+ raw-body: 3.0.2
+ type-is: 2.1.0
+ transitivePeerDependencies:
+ - supports-color
+
bonjour-service@1.3.0:
dependencies:
fast-deep-equal: 3.1.3
@@ -12803,17 +13311,13 @@ snapshots:
dependencies:
balanced-match: 1.0.2
- braces@3.0.3:
+ brace-expansion@5.0.7:
dependencies:
- fill-range: 7.1.1
+ balanced-match: 4.0.4
- browserslist@4.27.0:
+ braces@3.0.3:
dependencies:
- baseline-browser-mapping: 2.8.22
- caniuse-lite: 1.0.30001752
- electron-to-chromium: 1.5.244
- node-releases: 2.0.27
- update-browserslist-db: 1.1.4(browserslist@4.27.0)
+ fill-range: 7.1.1
browserslist@4.28.2:
dependencies:
@@ -12836,20 +13340,20 @@ snapshots:
bytes@3.1.2: {}
- cacache@19.0.1:
+ bytestreamjs@2.0.1: {}
+
+ cacache@20.0.4:
dependencies:
- '@npmcli/fs': 4.0.0
+ '@npmcli/fs': 5.0.0
fs-minipass: 3.0.3
- glob: 10.4.5
- lru-cache: 10.4.3
- minipass: 7.1.2
+ glob: 13.0.6
+ lru-cache: 11.2.2
+ minipass: 7.1.3
minipass-collect: 2.0.1
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
p-map: 7.0.4
- ssri: 12.0.0
- tar: 7.5.13
- unique-filename: 4.0.0
+ ssri: 13.0.1
cache-content-type@1.0.1:
dependencies:
@@ -12868,8 +13372,6 @@ snapshots:
callsites@3.1.0: {}
- caniuse-lite@1.0.30001752: {}
-
caniuse-lite@1.0.30001787: {}
chai-a11y-axe@1.5.0:
@@ -12883,6 +13385,8 @@ snapshots:
ansi-styles: 4.3.0
supports-color: 7.2.0
+ chalk@5.6.2: {}
+
chardet@2.1.1: {}
cheerio-select@2.1.0:
@@ -12924,8 +13428,6 @@ snapshots:
dependencies:
readdirp: 4.1.2
- chownr@2.0.0: {}
-
chownr@3.0.0: {}
chrome-trace-event@1.0.4: {}
@@ -12965,6 +13467,12 @@ snapshots:
strip-ansi: 6.0.1
wrap-ansi: 7.0.0
+ cliui@9.0.1:
+ dependencies:
+ string-width: 7.2.0
+ strip-ansi: 7.1.2
+ wrap-ansi: 9.0.2
+
clone-deep@4.0.1:
dependencies:
is-plain-object: 2.0.4
@@ -12981,8 +13489,8 @@ snapshots:
dependencies:
'@hapi/bourne': 3.0.0
inflation: 2.1.0
- qs: 6.14.0
- raw-body: 2.5.2
+ qs: 6.15.3
+ raw-body: 2.5.3
type-is: 1.6.18
co@4.6.0: {}
@@ -13011,8 +13519,6 @@ snapshots:
comment-parser@1.4.1: {}
- common-path-prefix@3.0.0: {}
-
compare-versions@6.1.1: {}
complain@1.6.1:
@@ -13047,14 +13553,20 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
+ content-disposition@1.1.0: {}
+
content-type@1.0.5: {}
+ content-type@2.0.0: {}
+
convert-source-map@1.9.0: {}
convert-source-map@2.0.0: {}
cookie-signature@1.0.6: {}
+ cookie-signature@1.2.2: {}
+
cookie@0.7.1: {}
cookies@0.9.1:
@@ -13066,15 +13578,14 @@ snapshots:
dependencies:
is-what: 3.14.1
- copy-webpack-plugin@12.0.2(webpack@5.105.0(esbuild@0.25.4)):
+ copy-webpack-plugin@14.0.0(webpack@5.105.0(esbuild@0.28.1)):
dependencies:
- fast-glob: 3.3.3
glob-parent: 6.0.2
- globby: 14.1.0
normalize-path: 3.0.0
schema-utils: 4.3.3
- serialize-javascript: 6.0.2
- webpack: 5.105.0(esbuild@0.25.4)
+ serialize-javascript: 7.0.7
+ tinyglobby: 0.2.15
+ webpack: 5.105.0(esbuild@0.28.1)
core-js-compat@3.46.0:
dependencies:
@@ -13082,14 +13593,19 @@ snapshots:
core-util-is@1.0.3: {}
- cosmiconfig@9.0.0(typescript@5.6.3):
+ cors@2.8.6:
+ dependencies:
+ object-assign: 4.1.1
+ vary: 1.1.2
+
+ cosmiconfig@9.0.0(typescript@5.9.3):
dependencies:
env-paths: 2.2.1
import-fresh: 3.3.1
js-yaml: 4.1.1
parse-json: 5.2.0
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.9.3
cross-spawn@7.0.6:
dependencies:
@@ -13097,18 +13613,18 @@ snapshots:
shebang-command: 2.0.0
which: 2.0.2
- css-loader@7.1.2(webpack@5.105.0(esbuild@0.25.4)):
+ css-loader@7.1.2(webpack@5.105.0(esbuild@0.28.1)):
dependencies:
- icss-utils: 5.1.0(postcss@8.5.6)
- postcss: 8.5.6
- postcss-modules-extract-imports: 3.1.0(postcss@8.5.6)
- postcss-modules-local-by-default: 4.2.0(postcss@8.5.6)
- postcss-modules-scope: 3.2.1(postcss@8.5.6)
- postcss-modules-values: 4.0.0(postcss@8.5.6)
+ icss-utils: 5.1.0(postcss@8.5.12)
+ postcss: 8.5.12
+ postcss-modules-extract-imports: 3.1.0(postcss@8.5.12)
+ postcss-modules-local-by-default: 4.2.0(postcss@8.5.12)
+ postcss-modules-scope: 3.2.1(postcss@8.5.12)
+ postcss-modules-values: 4.0.0(postcss@8.5.12)
postcss-value-parser: 4.2.0
semver: 7.7.3
optionalDependencies:
- webpack: 5.105.0(esbuild@0.25.4)
+ webpack: 5.105.0(esbuild@0.28.1)
css-select@5.2.2:
dependencies:
@@ -13118,6 +13634,14 @@ snapshots:
domutils: 3.2.2
nth-check: 2.1.1
+ css-select@6.0.0:
+ dependencies:
+ boolbase: 1.0.0
+ css-what: 7.0.0
+ domhandler: 5.0.3
+ domutils: 3.2.2
+ nth-check: 2.1.1
+
css-tree@2.3.1:
dependencies:
mdn-data: 2.0.30
@@ -13130,6 +13654,8 @@ snapshots:
css-what@6.2.2: {}
+ css-what@7.0.0: {}
+
css.escape@1.5.1: {}
cssesc@3.0.0: {}
@@ -13269,20 +13795,14 @@ snapshots:
es-errors: 1.3.0
gopd: 1.2.0
- eastasianwidth@0.2.0: {}
-
ee-first@1.1.1: {}
- electron-to-chromium@1.5.244: {}
-
electron-to-chromium@1.5.336: {}
emoji-regex@10.6.0: {}
emoji-regex@8.0.0: {}
- emoji-regex@9.2.2: {}
-
emojis-list@3.0.0: {}
encodeurl@1.0.2: {}
@@ -13332,8 +13852,6 @@ snapshots:
environment@1.1.0: {}
- err-code@2.0.3: {}
-
errno@0.1.8:
dependencies:
prr: 1.0.1
@@ -13377,7 +13895,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- esbuild-wasm@0.25.4: {}
+ esbuild-plugin-browserslist@0.16.0(browserslist@4.28.2)(esbuild@0.28.1)(supports-color@10.2.2):
+ dependencies:
+ browserslist: 4.28.2
+ debug: 4.4.3(supports-color@10.2.2)
+ esbuild: 0.28.1
+ zod: 3.25.76
+ transitivePeerDependencies:
+ - supports-color
+
+ esbuild-wasm@0.28.1: {}
esbuild@0.25.12:
optionalDependencies:
@@ -13408,33 +13935,34 @@ snapshots:
'@esbuild/win32-ia32': 0.25.12
'@esbuild/win32-x64': 0.25.12
- esbuild@0.25.4:
+ esbuild@0.28.1:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.25.4
- '@esbuild/android-arm': 0.25.4
- '@esbuild/android-arm64': 0.25.4
- '@esbuild/android-x64': 0.25.4
- '@esbuild/darwin-arm64': 0.25.4
- '@esbuild/darwin-x64': 0.25.4
- '@esbuild/freebsd-arm64': 0.25.4
- '@esbuild/freebsd-x64': 0.25.4
- '@esbuild/linux-arm': 0.25.4
- '@esbuild/linux-arm64': 0.25.4
- '@esbuild/linux-ia32': 0.25.4
- '@esbuild/linux-loong64': 0.25.4
- '@esbuild/linux-mips64el': 0.25.4
- '@esbuild/linux-ppc64': 0.25.4
- '@esbuild/linux-riscv64': 0.25.4
- '@esbuild/linux-s390x': 0.25.4
- '@esbuild/linux-x64': 0.25.4
- '@esbuild/netbsd-arm64': 0.25.4
- '@esbuild/netbsd-x64': 0.25.4
- '@esbuild/openbsd-arm64': 0.25.4
- '@esbuild/openbsd-x64': 0.25.4
- '@esbuild/sunos-x64': 0.25.4
- '@esbuild/win32-arm64': 0.25.4
- '@esbuild/win32-ia32': 0.25.4
- '@esbuild/win32-x64': 0.25.4
+ '@esbuild/aix-ppc64': 0.28.1
+ '@esbuild/android-arm': 0.28.1
+ '@esbuild/android-arm64': 0.28.1
+ '@esbuild/android-x64': 0.28.1
+ '@esbuild/darwin-arm64': 0.28.1
+ '@esbuild/darwin-x64': 0.28.1
+ '@esbuild/freebsd-arm64': 0.28.1
+ '@esbuild/freebsd-x64': 0.28.1
+ '@esbuild/linux-arm': 0.28.1
+ '@esbuild/linux-arm64': 0.28.1
+ '@esbuild/linux-ia32': 0.28.1
+ '@esbuild/linux-loong64': 0.28.1
+ '@esbuild/linux-mips64el': 0.28.1
+ '@esbuild/linux-ppc64': 0.28.1
+ '@esbuild/linux-riscv64': 0.28.1
+ '@esbuild/linux-s390x': 0.28.1
+ '@esbuild/linux-x64': 0.28.1
+ '@esbuild/netbsd-arm64': 0.28.1
+ '@esbuild/netbsd-x64': 0.28.1
+ '@esbuild/openbsd-arm64': 0.28.1
+ '@esbuild/openbsd-x64': 0.28.1
+ '@esbuild/openharmony-arm64': 0.28.1
+ '@esbuild/sunos-x64': 0.28.1
+ '@esbuild/win32-arm64': 0.28.1
+ '@esbuild/win32-ia32': 0.28.1
+ '@esbuild/win32-x64': 0.28.1
escalade@3.2.0: {}
@@ -13463,7 +13991,7 @@ snapshots:
eslint: 9.39.0(jiti@2.6.1)(supports-color@10.2.2)
eslint-compat-utils: 0.5.1(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))
- eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.6.3))(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2):
+ eslint-plugin-import-x@4.16.1(@typescript-eslint/utils@8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.9.3))(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2):
dependencies:
'@typescript-eslint/types': 8.46.2
comment-parser: 1.4.1
@@ -13476,11 +14004,11 @@ snapshots:
stable-hash-x: 0.2.0
unrs-resolver: 1.11.1
optionalDependencies:
- '@typescript-eslint/utils': 8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.6.3)
+ '@typescript-eslint/utils': 8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.9.3)
transitivePeerDependencies:
- supports-color
- eslint-plugin-n@17.23.1(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.6.3):
+ eslint-plugin-n@17.23.1(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.9.3):
dependencies:
'@eslint-community/eslint-utils': 4.9.0(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))
enhanced-resolve: 5.18.3
@@ -13491,7 +14019,7 @@ snapshots:
globrex: 0.1.2
ignore: 5.3.2
semver: 7.7.3
- ts-declaration-location: 1.0.7(typescript@5.6.3)
+ ts-declaration-location: 1.0.7(typescript@5.9.3)
transitivePeerDependencies:
- typescript
@@ -13586,6 +14114,12 @@ snapshots:
events@3.3.0: {}
+ eventsource-parser@3.1.0: {}
+
+ eventsource@3.0.7:
+ dependencies:
+ eventsource-parser: 3.1.0
+
execa@5.1.1:
dependencies:
cross-spawn: 7.0.6
@@ -13602,11 +14136,16 @@ snapshots:
exponential-backoff@3.1.3: {}
- express@4.21.2(supports-color@10.2.2):
+ express-rate-limit@8.5.2(express@5.2.1):
+ dependencies:
+ express: 5.2.1
+ ip-address: 10.2.0
+
+ express@4.22.2:
dependencies:
accepts: 1.3.8
array-flatten: 1.1.1
- body-parser: 1.20.3(supports-color@10.2.2)
+ body-parser: 1.20.6
content-disposition: 0.5.4
content-type: 1.0.5
cookie: 0.7.1
@@ -13616,28 +14155,61 @@ snapshots:
encodeurl: 2.0.0
escape-html: 1.0.3
etag: 1.8.1
- finalhandler: 1.3.1(supports-color@10.2.2)
+ finalhandler: 1.3.1
fresh: 0.5.2
- http-errors: 2.0.0
+ http-errors: 2.0.1
merge-descriptors: 1.0.3
methods: 1.1.2
on-finished: 2.4.1
parseurl: 1.3.3
path-to-regexp: 0.1.12
proxy-addr: 2.0.7
- qs: 6.13.0
+ qs: 6.15.3
range-parser: 1.2.1
safe-buffer: 5.2.1
send: 0.19.0(supports-color@10.2.2)
serve-static: 1.16.2(supports-color@10.2.2)
setprototypeof: 1.2.0
- statuses: 2.0.1
+ statuses: 2.0.2
type-is: 1.6.18
utils-merge: 1.0.1
vary: 1.1.2
transitivePeerDependencies:
- supports-color
+ express@5.2.1:
+ dependencies:
+ accepts: 2.0.0
+ body-parser: 2.3.0
+ content-disposition: 1.1.0
+ content-type: 1.0.5
+ cookie: 0.7.1
+ cookie-signature: 1.2.2
+ debug: 4.4.3(supports-color@10.2.2)
+ depd: 2.0.0
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ etag: 1.8.1
+ finalhandler: 2.1.1
+ fresh: 2.0.0
+ http-errors: 2.0.1
+ merge-descriptors: 2.0.0
+ mime-types: 3.0.2
+ on-finished: 2.4.1
+ once: 1.4.0
+ parseurl: 1.3.3
+ proxy-addr: 2.0.7
+ qs: 6.15.3
+ range-parser: 1.2.1
+ router: 2.2.0
+ send: 1.2.1
+ serve-static: 2.2.1
+ statuses: 2.0.2
+ type-is: 2.1.0
+ vary: 1.1.2
+ transitivePeerDependencies:
+ - supports-color
+
extendable-error@0.1.7: {}
fast-deep-equal@3.1.3: {}
@@ -13690,23 +14262,29 @@ snapshots:
dependencies:
to-regex-range: 5.0.1
- finalhandler@1.3.1(supports-color@10.2.2):
+ finalhandler@1.3.1:
dependencies:
debug: 2.6.9(supports-color@10.2.2)
encodeurl: 2.0.0
escape-html: 1.0.3
on-finished: 2.4.1
parseurl: 1.3.3
- statuses: 2.0.1
- unpipe: 1.0.0
+ statuses: 2.0.1
+ unpipe: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
+
+ finalhandler@2.1.1:
+ dependencies:
+ debug: 4.4.3(supports-color@10.2.2)
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ on-finished: 2.4.1
+ parseurl: 1.3.3
+ statuses: 2.0.2
transitivePeerDependencies:
- supports-color
- find-cache-dir@4.0.0:
- dependencies:
- common-path-prefix: 3.0.0
- pkg-dir: 7.0.0
-
find-up@4.1.0:
dependencies:
locate-path: 5.0.0
@@ -13717,11 +14295,6 @@ snapshots:
locate-path: 6.0.0
path-exists: 4.0.0
- find-up@6.3.0:
- dependencies:
- locate-path: 7.2.0
- path-exists: 5.0.0
-
flat-cache@4.0.1:
dependencies:
flatted: 3.3.3
@@ -13731,10 +14304,6 @@ snapshots:
flatted@3.3.3: {}
- follow-redirects@1.15.11(debug@4.4.3(supports-color@10.2.2)):
- optionalDependencies:
- debug: 4.4.3(supports-color@10.2.2)
-
follow-redirects@1.15.11(debug@4.4.3):
optionalDependencies:
debug: 4.4.3(supports-color@10.2.2)
@@ -13762,6 +14331,8 @@ snapshots:
fresh@0.5.2: {}
+ fresh@2.0.0: {}
+
front-matter@4.0.2:
dependencies:
js-yaml: 3.14.1
@@ -13780,13 +14351,9 @@ snapshots:
jsonfile: 4.0.0
universalify: 0.1.2
- fs-minipass@2.1.0:
- dependencies:
- minipass: 3.3.6
-
fs-minipass@3.0.3:
dependencies:
- minipass: 7.1.2
+ minipass: 7.1.3
fsevents@2.3.2:
optional: true
@@ -13842,15 +14409,6 @@ snapshots:
glob-to-regexp@0.4.1: {}
- glob@10.4.5:
- dependencies:
- foreground-child: 3.3.1
- jackspeak: 3.4.3
- minimatch: 9.0.5
- minipass: 7.1.2
- package-json-from-dist: 1.0.1
- path-scurry: 1.11.1
-
glob@11.1.0:
dependencies:
foreground-child: 3.3.1
@@ -13860,6 +14418,12 @@ snapshots:
package-json-from-dist: 1.0.1
path-scurry: 2.0.2
+ glob@13.0.6:
+ dependencies:
+ minimatch: 10.2.5
+ minipass: 7.1.3
+ path-scurry: 2.0.2
+
globals@14.0.0: {}
globals@15.15.0: {}
@@ -13875,15 +14439,6 @@ snapshots:
merge2: 1.4.1
slash: 3.0.0
- globby@14.1.0:
- dependencies:
- '@sindresorhus/merge-streams': 2.3.0
- fast-glob: 3.3.3
- ignore: 7.0.5
- path-type: 6.0.0
- slash: 5.1.0
- unicorn-magic: 0.3.0
-
globrex@0.1.2: {}
gopd@1.2.0: {}
@@ -13908,9 +14463,11 @@ snapshots:
he@1.2.0: {}
- hosted-git-info@8.1.0:
+ hono@4.12.30: {}
+
+ hosted-git-info@9.0.3:
dependencies:
- lru-cache: 10.4.3
+ lru-cache: 11.2.2
hpack.js@2.1.6:
dependencies:
@@ -13986,6 +14543,14 @@ snapshots:
statuses: 2.0.1
toidentifier: 1.0.1
+ http-errors@2.0.1:
+ dependencies:
+ depd: 2.0.0
+ inherits: 2.0.4
+ setprototypeof: 1.2.0
+ statuses: 2.0.2
+ toidentifier: 1.0.1
+
http-parser-js@0.5.10: {}
http-proxy-agent@7.0.2(supports-color@10.2.2):
@@ -14007,7 +14572,7 @@ snapshots:
transitivePeerDependencies:
- debug
- http-proxy-middleware@3.0.5:
+ http-proxy-middleware@3.0.7:
dependencies:
'@types/http-proxy': 1.17.17
debug: 4.4.3(supports-color@10.2.2)
@@ -14018,25 +14583,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- http-proxy-middleware@3.0.5(supports-color@10.2.2):
- dependencies:
- '@types/http-proxy': 1.17.17
- debug: 4.4.3(supports-color@10.2.2)
- http-proxy: 1.18.1(debug@4.4.3(supports-color@10.2.2))
- is-glob: 4.0.3
- is-plain-object: 5.0.0
- micromatch: 4.0.8
- transitivePeerDependencies:
- - supports-color
-
- http-proxy@1.18.1(debug@4.4.3(supports-color@10.2.2)):
- dependencies:
- eventemitter3: 4.0.7
- follow-redirects: 1.15.11(debug@4.4.3(supports-color@10.2.2))
- requires-port: 1.0.0
- transitivePeerDependencies:
- - debug
-
http-proxy@1.18.1(debug@4.4.3):
dependencies:
eventemitter3: 4.0.7
@@ -14072,15 +14618,19 @@ snapshots:
dependencies:
safer-buffer: 2.1.2
- icss-utils@5.1.0(postcss@8.5.6):
+ iconv-lite@0.7.3:
dependencies:
- postcss: 8.5.6
+ safer-buffer: 2.1.2
+
+ icss-utils@5.1.0(postcss@8.5.12):
+ dependencies:
+ postcss: 8.5.12
ieee754@1.2.1: {}
- ignore-walk@7.0.0:
+ ignore-walk@8.0.0:
dependencies:
- minimatch: 9.0.5
+ minimatch: 10.2.5
ignore@5.3.2: {}
@@ -14110,6 +14660,8 @@ snapshots:
ini@5.0.0: {}
+ ini@6.0.0: {}
+
internal-ip@6.2.0:
dependencies:
default-gateway: 6.0.3
@@ -14117,7 +14669,7 @@ snapshots:
is-ip: 3.1.0
p-event: 4.2.0
- ip-address@10.0.1: {}
+ ip-address@10.2.0: {}
ip-regex@4.3.0: {}
@@ -14167,6 +14719,8 @@ snapshots:
is-interactive@1.0.0: {}
+ is-interactive@2.0.0: {}
+
is-ip@3.1.0:
dependencies:
ip-regex: 4.3.0
@@ -14185,6 +14739,8 @@ snapshots:
is-potential-custom-element-name@1.0.1: {}
+ is-promise@4.0.0: {}
+
is-reference@3.0.3:
dependencies:
'@types/estree': 1.0.8
@@ -14204,6 +14760,10 @@ snapshots:
is-unicode-supported@0.1.0: {}
+ is-unicode-supported@1.3.0: {}
+
+ is-unicode-supported@2.1.0: {}
+
is-what@3.14.1: {}
is-what@4.1.16: {}
@@ -14224,7 +14784,7 @@ snapshots:
isexe@2.0.0: {}
- isexe@3.1.1: {}
+ isexe@4.0.0: {}
isobject@3.0.1: {}
@@ -14232,8 +14792,8 @@ snapshots:
istanbul-lib-instrument@6.0.3:
dependencies:
- '@babel/core': 7.28.5
- '@babel/parser': 7.28.5
+ '@babel/core': 7.29.7
+ '@babel/parser': 7.29.7
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 7.7.3
@@ -14251,12 +14811,6 @@ snapshots:
html-escaper: 2.0.2
istanbul-lib-report: 3.0.1
- jackspeak@3.4.3:
- dependencies:
- '@isaacs/cliui': 8.0.2
- optionalDependencies:
- '@pkgjs/parseargs': 0.11.0
-
jackspeak@4.2.3:
dependencies:
'@isaacs/cliui': 9.0.0
@@ -14280,6 +14834,8 @@ snapshots:
jju@1.4.0: {}
+ jose@6.2.3: {}
+
js-tokens@4.0.0: {}
js-yaml@3.14.1:
@@ -14324,12 +14880,14 @@ snapshots:
json-parse-even-better-errors@2.3.1: {}
- json-parse-even-better-errors@4.0.0: {}
+ json-parse-even-better-errors@5.0.0: {}
json-schema-traverse@0.4.1: {}
json-schema-traverse@1.0.0: {}
+ json-schema-typed@8.0.2: {}
+
json-stable-stringify-without-jsonify@1.0.1: {}
json5@2.2.3: {}
@@ -14360,7 +14918,7 @@ snapshots:
kleur@4.1.5: {}
- knip@5.66.4(@types/node@24.9.2)(typescript@5.6.3):
+ knip@5.66.4(@types/node@24.9.2)(typescript@5.9.3):
dependencies:
'@nodelib/fs.walk': 1.2.8
'@types/node': 24.9.2
@@ -14374,7 +14932,7 @@ snapshots:
picomatch: 4.0.3
smol-toml: 1.4.2
strip-json-comments: 5.0.2
- typescript: 5.6.3
+ typescript: 5.9.3
zod: 4.1.12
koa-compose@4.1.0: {}
@@ -14446,13 +15004,13 @@ snapshots:
picocolors: 1.1.1
shell-quote: 1.8.3
- less-loader@12.2.0(less@4.2.2)(webpack@5.105.0(esbuild@0.25.4)):
+ less-loader@12.3.0(less@4.4.0)(webpack@5.105.0(esbuild@0.28.1)):
dependencies:
- less: 4.2.2
+ less: 4.4.0
optionalDependencies:
- webpack: 5.105.0(esbuild@0.25.4)
+ webpack: 5.105.0(esbuild@0.28.1)
- less@4.2.2:
+ less@4.4.0:
dependencies:
copy-anything: 2.0.6
parse-node-version: 1.0.1
@@ -14471,17 +15029,17 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
- license-webpack-plugin@4.0.2(webpack@5.105.0(esbuild@0.25.4)):
+ license-webpack-plugin@4.0.2(webpack@5.105.0(esbuild@0.28.1)):
dependencies:
webpack-sources: 3.3.3
optionalDependencies:
- webpack: 5.105.0(esbuild@0.25.4)
+ webpack: 5.105.0(esbuild@0.28.1)
lines-and-columns@1.2.4: {}
lines-and-columns@2.0.3: {}
- listr2@8.2.5:
+ listr2@9.0.1:
dependencies:
cli-truncate: 4.0.0
colorette: 2.0.20
@@ -14506,7 +15064,7 @@ snapshots:
lit-element: 4.2.1
lit-html: 3.3.1
- lmdb@3.2.6:
+ lmdb@3.4.2:
dependencies:
msgpackr: 1.11.5
node-addon-api: 6.1.0
@@ -14514,12 +15072,13 @@ snapshots:
ordered-binary: 1.6.0
weak-lru-cache: 1.2.2
optionalDependencies:
- '@lmdb/lmdb-darwin-arm64': 3.2.6
- '@lmdb/lmdb-darwin-x64': 3.2.6
- '@lmdb/lmdb-linux-arm': 3.2.6
- '@lmdb/lmdb-linux-arm64': 3.2.6
- '@lmdb/lmdb-linux-x64': 3.2.6
- '@lmdb/lmdb-win32-x64': 3.2.6
+ '@lmdb/lmdb-darwin-arm64': 3.4.2
+ '@lmdb/lmdb-darwin-x64': 3.4.2
+ '@lmdb/lmdb-linux-arm': 3.4.2
+ '@lmdb/lmdb-linux-arm64': 3.4.2
+ '@lmdb/lmdb-linux-x64': 3.4.2
+ '@lmdb/lmdb-win32-arm64': 3.4.2
+ '@lmdb/lmdb-win32-x64': 3.4.2
optional: true
loader-runner@4.3.1: {}
@@ -14547,10 +15106,6 @@ snapshots:
dependencies:
p-locate: 5.0.0
- locate-path@7.2.0:
- dependencies:
- p-locate: 6.0.0
-
lodash.debounce@4.0.8: {}
lodash.merge@4.6.2: {}
@@ -14564,6 +15119,11 @@ snapshots:
chalk: 4.1.2
is-unicode-supported: 0.1.0
+ log-symbols@6.0.0:
+ dependencies:
+ chalk: 5.6.2
+ is-unicode-supported: 1.3.0
+
log-update@4.0.0:
dependencies:
ansi-escapes: 4.3.2
@@ -14579,8 +15139,6 @@ snapshots:
strip-ansi: 7.1.2
wrap-ansi: 9.0.2
- lru-cache@10.4.3: {}
-
lru-cache@11.2.2: {}
lru-cache@5.1.1:
@@ -14613,19 +15171,20 @@ snapshots:
dependencies:
semver: 7.7.3
- make-fetch-happen@14.0.3:
+ make-fetch-happen@15.0.6:
dependencies:
- '@npmcli/agent': 3.0.0
- cacache: 19.0.1
+ '@gar/promise-retry': 1.0.3
+ '@npmcli/agent': 4.0.2
+ '@npmcli/redact': 4.0.0
+ cacache: 20.0.4
http-cache-semantics: 4.2.0
- minipass: 7.1.2
- minipass-fetch: 4.0.1
+ minipass: 7.1.3
+ minipass-fetch: 5.0.2
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
negotiator: 1.0.0
- proc-log: 5.0.0
- promise-retry: 2.0.1
- ssri: 12.0.0
+ proc-log: 6.1.0
+ ssri: 13.0.1
transitivePeerDependencies:
- supports-color
@@ -14651,6 +15210,8 @@ snapshots:
media-typer@0.3.0: {}
+ media-typer@1.1.0: {}
+
memfs@4.50.0:
dependencies:
'@jsonjoy.com/json-pack': 1.21.0(tslib@2.8.1)
@@ -14666,6 +15227,8 @@ snapshots:
merge-descriptors@1.0.3: {}
+ merge-descriptors@2.0.0: {}
+
merge-stream@2.0.0: {}
merge2@1.4.1: {}
@@ -14685,6 +15248,10 @@ snapshots:
dependencies:
mime-db: 1.52.0
+ mime-types@3.0.2:
+ dependencies:
+ mime-db: 1.54.0
+
mime@1.6.0: {}
mimic-fn@2.1.0: {}
@@ -14693,11 +15260,11 @@ snapshots:
min-indent@1.0.1: {}
- mini-css-extract-plugin@2.9.2(webpack@5.105.0(esbuild@0.25.4)):
+ mini-css-extract-plugin@2.9.4(webpack@5.105.0(esbuild@0.28.1)):
dependencies:
schema-utils: 4.3.3
tapable: 2.3.0
- webpack: 5.105.0(esbuild@0.25.4)
+ webpack: 5.105.0(esbuild@0.28.1)
minimalistic-assert@1.0.1: {}
@@ -14705,6 +15272,10 @@ snapshots:
dependencies:
'@isaacs/brace-expansion': 5.0.0
+ minimatch@10.2.5:
+ dependencies:
+ brace-expansion: 5.0.7
+
minimatch@3.0.8:
dependencies:
brace-expansion: 1.1.12
@@ -14725,15 +15296,15 @@ snapshots:
minipass-collect@2.0.1:
dependencies:
- minipass: 7.1.2
+ minipass: 7.1.3
- minipass-fetch@4.0.1:
+ minipass-fetch@5.0.2:
dependencies:
- minipass: 7.1.2
- minipass-sized: 1.0.3
+ minipass: 7.1.3
+ minipass-sized: 2.0.0
minizlib: 3.1.0
optionalDependencies:
- encoding: 0.1.13
+ iconv-lite: 0.7.3
minipass-flush@1.0.5:
dependencies:
@@ -14743,26 +15314,21 @@ snapshots:
dependencies:
minipass: 3.3.6
- minipass-sized@1.0.3:
+ minipass-sized@2.0.0:
dependencies:
- minipass: 3.3.6
+ minipass: 7.1.3
minipass@3.3.6:
dependencies:
yallist: 4.0.0
- minipass@5.0.0: {}
-
minipass@7.1.2: {}
- minizlib@2.1.2:
- dependencies:
- minipass: 3.3.6
- yallist: 4.0.0
+ minipass@7.1.3: {}
minizlib@3.1.0:
dependencies:
- minipass: 7.1.2
+ minipass: 7.1.3
mkdirp@1.0.4: {}
@@ -14805,8 +15371,6 @@ snapshots:
dns-packet: 5.6.1
thunky: 1.1.0
- mute-stream@1.0.0: {}
-
mute-stream@2.0.0: {}
nanocolors@0.2.13: {}
@@ -14843,80 +15407,75 @@ snapshots:
optionalDependencies:
encoding: 0.1.13
- node-forge@1.3.1: {}
-
node-gyp-build-optional-packages@5.2.2:
dependencies:
detect-libc: 2.1.2
optional: true
- node-gyp@11.5.0:
+ node-gyp@12.4.0:
dependencies:
env-paths: 2.2.1
exponential-backoff: 3.1.3
graceful-fs: 4.2.11
- make-fetch-happen: 14.0.3
- nopt: 8.1.0
- proc-log: 5.0.0
+ nopt: 9.0.0
+ proc-log: 6.1.0
semver: 7.7.3
tar: 7.5.13
tinyglobby: 0.2.15
- which: 5.0.0
- transitivePeerDependencies:
- - supports-color
+ undici: 6.27.0
+ which: 6.0.1
node-machine-id@1.1.12: {}
- node-releases@2.0.27: {}
-
node-releases@2.0.37: {}
- nopt@8.1.0:
+ nopt@9.0.0:
dependencies:
- abbrev: 3.0.1
+ abbrev: 4.0.0
normalize-path@3.0.0: {}
normalize-range@0.1.2: {}
- npm-bundled@4.0.0:
+ npm-bundled@5.0.0:
dependencies:
- npm-normalize-package-bin: 4.0.0
+ npm-normalize-package-bin: 5.0.0
- npm-install-checks@7.1.2:
+ npm-install-checks@8.0.0:
dependencies:
semver: 7.7.3
- npm-normalize-package-bin@4.0.0: {}
+ npm-normalize-package-bin@5.0.0: {}
- npm-package-arg@12.0.2:
+ npm-package-arg@13.0.0:
dependencies:
- hosted-git-info: 8.1.0
+ hosted-git-info: 9.0.3
proc-log: 5.0.0
semver: 7.7.3
validate-npm-package-name: 6.0.2
- npm-packlist@9.0.0:
+ npm-packlist@10.0.4:
dependencies:
- ignore-walk: 7.0.0
+ ignore-walk: 8.0.0
+ proc-log: 6.1.0
- npm-pick-manifest@10.0.0:
+ npm-pick-manifest@11.0.3:
dependencies:
- npm-install-checks: 7.1.2
- npm-normalize-package-bin: 4.0.0
- npm-package-arg: 12.0.2
+ npm-install-checks: 8.0.0
+ npm-normalize-package-bin: 5.0.0
+ npm-package-arg: 13.0.0
semver: 7.7.3
- npm-registry-fetch@18.0.2:
+ npm-registry-fetch@19.1.1:
dependencies:
- '@npmcli/redact': 3.2.2
+ '@npmcli/redact': 4.0.0
jsonparse: 1.3.1
- make-fetch-happen: 14.0.3
- minipass: 7.1.2
- minipass-fetch: 4.0.1
+ make-fetch-happen: 15.0.6
+ minipass: 7.1.3
+ minipass-fetch: 5.0.2
minizlib: 3.1.0
- npm-package-arg: 12.0.2
- proc-log: 5.0.0
+ npm-package-arg: 13.0.0
+ proc-log: 6.1.0
transitivePeerDependencies:
- supports-color
@@ -14979,6 +15538,8 @@ snapshots:
transitivePeerDependencies:
- debug
+ object-assign@4.1.1: {}
+
object-inspect@1.13.4: {}
obuf@1.1.2: {}
@@ -15005,12 +15566,12 @@ snapshots:
only@0.0.2: {}
- open@10.1.0:
+ open@10.2.0:
dependencies:
default-browser: 5.2.1
define-lazy-prop: 3.0.0
is-inside-container: 1.0.0
- is-wsl: 3.1.0
+ wsl-utils: 0.1.0
open@8.4.2:
dependencies:
@@ -15038,17 +15599,17 @@ snapshots:
strip-ansi: 6.0.1
wcwidth: 1.0.1
- ora@5.4.1:
+ ora@8.2.0:
dependencies:
- bl: 4.1.0
- chalk: 4.1.2
- cli-cursor: 3.1.0
+ chalk: 5.6.2
+ cli-cursor: 5.0.0
cli-spinners: 2.9.2
- is-interactive: 1.0.0
- is-unicode-supported: 0.1.0
- log-symbols: 4.1.0
- strip-ansi: 6.0.1
- wcwidth: 1.0.1
+ 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.2
ordered-binary@1.6.0:
optional: true
@@ -15106,10 +15667,6 @@ snapshots:
dependencies:
yocto-queue: 0.1.0
- p-limit@4.0.0:
- dependencies:
- yocto-queue: 1.2.1
-
p-locate@4.1.0:
dependencies:
p-limit: 2.3.0
@@ -15118,10 +15675,6 @@ snapshots:
dependencies:
p-limit: 3.1.0
- p-locate@6.0.0:
- dependencies:
- p-limit: 4.0.0
-
p-map@2.1.0: {}
p-map@7.0.4: {}
@@ -15146,25 +15699,25 @@ snapshots:
package-manager-detector@1.5.0: {}
- pacote@20.0.0(supports-color@10.2.2):
+ pacote@21.5.1:
dependencies:
- '@npmcli/git': 6.0.3
- '@npmcli/installed-package-contents': 3.0.0
- '@npmcli/package-json': 6.2.0
- '@npmcli/promise-spawn': 8.0.3
- '@npmcli/run-script': 9.1.0
- cacache: 19.0.1
+ '@gar/promise-retry': 1.0.3
+ '@npmcli/git': 7.0.2
+ '@npmcli/installed-package-contents': 4.0.0
+ '@npmcli/package-json': 7.0.5
+ '@npmcli/promise-spawn': 9.0.1
+ '@npmcli/run-script': 10.0.4
+ cacache: 20.0.4
fs-minipass: 3.0.3
- minipass: 7.1.2
- npm-package-arg: 12.0.2
- npm-packlist: 9.0.0
- npm-pick-manifest: 10.0.0
- npm-registry-fetch: 18.0.2
- proc-log: 5.0.0
- promise-retry: 2.0.1
- sigstore: 3.1.0(supports-color@10.2.2)
- ssri: 12.0.0
- tar: 6.2.1
+ minipass: 7.1.3
+ npm-package-arg: 13.0.0
+ npm-packlist: 10.0.4
+ npm-pick-manifest: 11.0.3
+ npm-registry-fetch: 19.1.1
+ proc-log: 6.1.0
+ sigstore: 4.1.1
+ ssri: 13.0.1
+ tar: 7.5.13
transitivePeerDependencies:
- supports-color
@@ -15174,7 +15727,7 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.29.0
+ '@babel/code-frame': 7.29.7
error-ex: 1.3.4
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -15185,11 +15738,11 @@ snapshots:
parse-node-version@1.0.1: {}
- parse5-html-rewriting-stream@7.0.0:
+ parse5-html-rewriting-stream@8.0.0:
dependencies:
- entities: 4.5.0
- parse5: 7.3.0
- parse5-sax-parser: 7.0.0
+ entities: 6.0.1
+ parse5: 8.0.0
+ parse5-sax-parser: 8.0.0
parse5-htmlparser2-tree-adapter@7.1.0:
dependencies:
@@ -15200,9 +15753,9 @@ snapshots:
dependencies:
parse5: 7.3.0
- parse5-sax-parser@7.0.0:
+ parse5-sax-parser@8.0.0:
dependencies:
- parse5: 7.3.0
+ parse5: 8.0.0
parse5@6.0.1: {}
@@ -15220,19 +15773,12 @@ snapshots:
path-exists@4.0.0: {}
- path-exists@5.0.0: {}
-
path-is-absolute@1.0.1: {}
path-key@3.1.1: {}
path-parse@1.0.7: {}
- path-scurry@1.11.1:
- dependencies:
- lru-cache: 10.4.3
- minipass: 7.1.2
-
path-scurry@2.0.2:
dependencies:
lru-cache: 11.2.2
@@ -15240,9 +15786,9 @@ snapshots:
path-to-regexp@0.1.12: {}
- path-type@4.0.0: {}
+ path-to-regexp@8.4.2: {}
- path-type@6.0.0: {}
+ path-type@4.0.0: {}
pathe@2.0.3: {}
@@ -15262,13 +15808,11 @@ snapshots:
pify@4.0.1: {}
- piscina@4.8.0:
+ piscina@5.2.0:
optionalDependencies:
'@napi-rs/nice': 1.1.1
- pkg-dir@7.0.0:
- dependencies:
- find-up: 6.3.0
+ pkce-challenge@5.0.1: {}
pkg-types@1.3.1:
dependencies:
@@ -15276,6 +15820,15 @@ snapshots:
mlly: 1.8.0
pathe: 2.0.3
+ pkijs@3.4.0:
+ dependencies:
+ '@noble/hashes': 1.4.0
+ asn1js: 3.0.10
+ bytestreamjs: 2.0.1
+ pvtsutils: 1.3.6
+ pvutils: 1.1.5
+ tslib: 2.8.1
+
playwright-core@1.56.1: {}
playwright@1.56.1:
@@ -15284,39 +15837,39 @@ snapshots:
optionalDependencies:
fsevents: 2.3.2
- postcss-loader@8.1.1(postcss@8.5.2)(typescript@5.6.3)(webpack@5.105.0(esbuild@0.25.4)):
+ postcss-loader@8.1.1(postcss@8.5.12)(typescript@5.9.3)(webpack@5.105.0(esbuild@0.28.1)):
dependencies:
- cosmiconfig: 9.0.0(typescript@5.6.3)
+ cosmiconfig: 9.0.0(typescript@5.9.3)
jiti: 1.21.7
- postcss: 8.5.2
+ postcss: 8.5.12
semver: 7.7.3
optionalDependencies:
- webpack: 5.105.0(esbuild@0.25.4)
+ webpack: 5.105.0(esbuild@0.28.1)
transitivePeerDependencies:
- typescript
postcss-media-query-parser@0.2.3: {}
- postcss-modules-extract-imports@3.1.0(postcss@8.5.6):
+ postcss-modules-extract-imports@3.1.0(postcss@8.5.12):
dependencies:
- postcss: 8.5.6
+ postcss: 8.5.12
- postcss-modules-local-by-default@4.2.0(postcss@8.5.6):
+ postcss-modules-local-by-default@4.2.0(postcss@8.5.12):
dependencies:
- icss-utils: 5.1.0(postcss@8.5.6)
- postcss: 8.5.6
+ icss-utils: 5.1.0(postcss@8.5.12)
+ postcss: 8.5.12
postcss-selector-parser: 7.1.0
postcss-value-parser: 4.2.0
- postcss-modules-scope@3.2.1(postcss@8.5.6):
+ postcss-modules-scope@3.2.1(postcss@8.5.12):
dependencies:
- postcss: 8.5.6
+ postcss: 8.5.12
postcss-selector-parser: 7.1.0
- postcss-modules-values@4.0.0(postcss@8.5.6):
+ postcss-modules-values@4.0.0(postcss@8.5.12):
dependencies:
- icss-utils: 5.1.0(postcss@8.5.6)
- postcss: 8.5.6
+ icss-utils: 5.1.0(postcss@8.5.12)
+ postcss: 8.5.12
postcss-selector-parser@7.1.0:
dependencies:
@@ -15325,7 +15878,7 @@ snapshots:
postcss-value-parser@4.2.0: {}
- postcss@8.5.2:
+ postcss@8.5.12:
dependencies:
nanoid: 3.3.11
picocolors: 1.1.1
@@ -15364,12 +15917,9 @@ snapshots:
proc-log@5.0.0: {}
- process-nextick-args@2.0.1: {}
+ proc-log@6.1.0: {}
- promise-retry@2.0.1:
- dependencies:
- err-code: 2.0.3
- retry: 0.12.0
+ process-nextick-args@2.0.1: {}
proxy-addr@2.0.7:
dependencies:
@@ -15390,22 +15940,21 @@ snapshots:
punycode@2.3.1: {}
- qs@6.13.0:
+ pvtsutils@1.3.6:
dependencies:
- side-channel: 1.1.0
+ tslib: 2.8.1
- qs@6.14.0:
+ pvutils@1.1.5: {}
+
+ qs@6.15.3:
dependencies:
- side-channel: 1.1.0
+ es-define-property: 1.0.1
+ side-channel: 1.1.1
quansync@0.2.11: {}
queue-microtask@1.2.3: {}
- randombytes@2.1.0:
- dependencies:
- safe-buffer: 5.2.1
-
range-parser@1.2.1: {}
raptor-async@1.1.3: {}
@@ -15414,13 +15963,20 @@ snapshots:
raptor-util@3.2.0: {}
- raw-body@2.5.2:
+ raw-body@2.5.3:
dependencies:
bytes: 3.1.2
- http-errors: 2.0.0
+ http-errors: 2.0.1
iconv-lite: 0.4.24
unpipe: 1.0.0
+ raw-body@3.0.2:
+ dependencies:
+ bytes: 3.1.2
+ http-errors: 2.0.1
+ iconv-lite: 0.7.3
+ unpipe: 1.0.0
+
react-aria-components@1.19.0(react-dom@19.2.7(react@19.2.7))(react@19.2.7):
dependencies:
'@internationalized/date': 3.12.2
@@ -15521,8 +16077,6 @@ snapshots:
regenerate@1.4.2: {}
- regenerator-runtime@0.14.1: {}
-
regex-parser@2.3.1: {}
regexpu-core@6.4.0:
@@ -15568,7 +16122,7 @@ snapshots:
adjust-sourcemap-loader: 4.0.0
convert-source-map: 1.9.0
loader-utils: 2.0.4
- postcss: 8.5.6
+ postcss: 8.5.12
source-map: 0.6.1
resolve.exports@2.0.3: {}
@@ -15595,8 +16149,6 @@ snapshots:
onetime: 7.0.0
signal-exit: 4.1.0
- retry@0.12.0: {}
-
retry@0.13.1: {}
reusify@1.1.0: {}
@@ -15640,16 +16192,22 @@ snapshots:
'@rollup/rollup-win32-x64-msvc': 4.59.0
fsevents: 2.3.3
+ router@2.2.0:
+ dependencies:
+ debug: 4.4.3(supports-color@10.2.2)
+ depd: 2.0.0
+ is-promise: 4.0.0
+ parseurl: 1.3.3
+ path-to-regexp: 8.4.2
+ transitivePeerDependencies:
+ - supports-color
+
run-applescript@7.1.0: {}
run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
- rxjs@7.8.1:
- dependencies:
- tslib: 2.8.1
-
rxjs@7.8.2:
dependencies:
tslib: 2.8.1
@@ -15670,14 +16228,14 @@ snapshots:
safer-buffer@2.1.2: {}
- sass-loader@16.0.5(sass@1.85.0)(webpack@5.105.0(esbuild@0.25.4)):
+ sass-loader@16.0.5(sass@1.90.0)(webpack@5.105.0(esbuild@0.28.1)):
dependencies:
neo-async: 2.6.2
optionalDependencies:
- sass: 1.85.0
- webpack: 5.105.0(esbuild@0.25.4)
+ sass: 1.90.0
+ webpack: 5.105.0(esbuild@0.28.1)
- sass@1.85.0:
+ sass@1.90.0:
dependencies:
chokidar: 4.0.3
immutable: 5.1.4
@@ -15697,9 +16255,9 @@ snapshots:
schema-utils@4.3.3:
dependencies:
'@types/json-schema': 7.0.15
- ajv: 8.17.1
- ajv-formats: 2.1.1(ajv@8.17.1)
- ajv-keywords: 5.1.0(ajv@8.17.1)
+ ajv: 8.18.0
+ ajv-formats: 2.1.1(ajv@8.18.0)
+ ajv-keywords: 5.1.0(ajv@8.18.0)
scule@1.3.0: {}
@@ -15707,10 +16265,10 @@ snapshots:
self-closing-tags@1.0.1: {}
- selfsigned@2.4.1:
+ selfsigned@5.5.0:
dependencies:
- '@types/node-forge': 1.3.14
- node-forge: 1.3.1
+ '@peculiar/x509': 1.14.3
+ pkijs: 3.4.0
semver@5.7.2:
optional: true
@@ -15721,7 +16279,7 @@ snapshots:
dependencies:
lru-cache: 6.0.0
- semver@7.7.1: {}
+ semver@7.7.2: {}
semver@7.7.3: {}
@@ -15743,9 +16301,23 @@ snapshots:
transitivePeerDependencies:
- supports-color
- serialize-javascript@6.0.2:
+ send@1.2.1:
dependencies:
- randombytes: 2.1.0
+ debug: 4.4.3(supports-color@10.2.2)
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ etag: 1.8.1
+ fresh: 2.0.0
+ http-errors: 2.0.1
+ mime-types: 3.0.2
+ ms: 2.1.3
+ on-finished: 2.4.1
+ range-parser: 1.2.1
+ statuses: 2.0.2
+ transitivePeerDependencies:
+ - supports-color
+
+ serialize-javascript@7.0.7: {}
seroval-plugins@1.3.3(seroval@1.3.2):
dependencies:
@@ -15753,7 +16325,7 @@ snapshots:
seroval@1.3.2: {}
- serve-index@1.9.1(supports-color@10.2.2):
+ serve-index@1.9.1:
dependencies:
accepts: 1.3.8
batch: 0.6.1
@@ -15774,6 +16346,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ serve-static@2.2.1:
+ dependencies:
+ encodeurl: 2.0.0
+ escape-html: 1.0.3
+ parseurl: 1.3.3
+ send: 1.2.1
+ transitivePeerDependencies:
+ - supports-color
+
setprototypeof@1.1.0: {}
setprototypeof@1.2.0: {}
@@ -15825,7 +16406,7 @@ snapshots:
sherif-windows-arm64: 1.9.0
sherif-windows-x64: 1.9.0
- side-channel-list@1.0.0:
+ side-channel-list@1.0.1:
dependencies:
es-errors: 1.3.0
object-inspect: 1.13.4
@@ -15845,11 +16426,11 @@ snapshots:
object-inspect: 1.13.4
side-channel-map: 1.0.1
- side-channel@1.1.0:
+ side-channel@1.1.1:
dependencies:
es-errors: 1.3.0
object-inspect: 1.13.4
- side-channel-list: 1.0.0
+ side-channel-list: 1.0.1
side-channel-map: 1.0.1
side-channel-weakmap: 1.0.2
@@ -15859,21 +16440,19 @@ snapshots:
signal-exit@4.1.0: {}
- sigstore@3.1.0(supports-color@10.2.2):
+ sigstore@4.1.1:
dependencies:
- '@sigstore/bundle': 3.1.0
- '@sigstore/core': 2.0.0
- '@sigstore/protobuf-specs': 0.4.3
- '@sigstore/sign': 3.1.0
- '@sigstore/tuf': 3.1.1(supports-color@10.2.2)
- '@sigstore/verify': 2.1.1
+ '@sigstore/bundle': 4.0.0
+ '@sigstore/core': 3.2.1
+ '@sigstore/protobuf-specs': 0.5.1
+ '@sigstore/sign': 4.1.1
+ '@sigstore/tuf': 4.0.2
+ '@sigstore/verify': 3.1.1
transitivePeerDependencies:
- supports-color
slash@3.0.0: {}
- slash@5.1.0: {}
-
slice-ansi@4.0.0:
dependencies:
ansi-styles: 4.3.0
@@ -15910,7 +16489,7 @@ snapshots:
socks@2.8.7:
dependencies:
- ip-address: 10.0.1
+ ip-address: 10.2.0
smart-buffer: 4.2.0
solid-js@1.9.10:
@@ -15921,7 +16500,7 @@ snapshots:
solid-refresh@0.6.3(solid-js@1.9.10):
dependencies:
- '@babel/generator': 7.28.5
+ '@babel/generator': 7.29.7
'@babel/helper-module-imports': 7.27.1
'@babel/types': 7.28.5
solid-js: 1.9.10
@@ -15930,11 +16509,11 @@ snapshots:
source-map-js@1.2.1: {}
- source-map-loader@5.0.0(webpack@5.105.0(esbuild@0.25.4)):
+ source-map-loader@5.0.0(webpack@5.105.0(esbuild@0.28.1)):
dependencies:
iconv-lite: 0.6.3
source-map-js: 1.2.1
- webpack: 5.105.0(esbuild@0.25.4)
+ webpack: 5.105.0(esbuild@0.28.1)
source-map-support@0.5.21:
dependencies:
@@ -15943,8 +16522,6 @@ snapshots:
source-map@0.6.1: {}
- source-map@0.7.4: {}
-
source-map@0.7.6: {}
spawndamnit@3.0.1:
@@ -15952,21 +16529,16 @@ snapshots:
cross-spawn: 7.0.6
signal-exit: 4.1.0
- spdx-correct@3.2.0:
- dependencies:
- spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.22
-
spdx-exceptions@2.5.0: {}
- spdx-expression-parse@3.0.1:
+ spdx-expression-parse@4.0.0:
dependencies:
spdx-exceptions: 2.5.0
spdx-license-ids: 3.0.22
spdx-license-ids@3.0.22: {}
- spdy-transport@3.0.0(supports-color@10.2.2):
+ spdy-transport@3.0.0:
dependencies:
debug: 4.4.3(supports-color@10.2.2)
detect-node: 2.1.0
@@ -15977,21 +16549,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
- spdy@4.0.2(supports-color@10.2.2):
+ spdy@4.0.2:
dependencies:
debug: 4.4.3(supports-color@10.2.2)
handle-thing: 2.0.1
http-deceiver: 1.2.7
select-hose: 2.0.0
- spdy-transport: 3.0.0(supports-color@10.2.2)
+ spdy-transport: 3.0.0
transitivePeerDependencies:
- supports-color
sprintf-js@1.0.3: {}
- ssri@12.0.0:
+ ssri@13.0.1:
dependencies:
- minipass: 7.1.2
+ minipass: 7.1.3
stable-hash-x@0.2.0: {}
@@ -16003,8 +16575,12 @@ snapshots:
statuses@2.0.1: {}
+ statuses@2.0.2: {}
+
std-env@4.1.0: {}
+ stdin-discarder@0.2.2: {}
+
string-argv@0.3.2: {}
string-width@4.2.3:
@@ -16013,12 +16589,6 @@ snapshots:
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
- string-width@5.1.2:
- dependencies:
- eastasianwidth: 0.2.0
- emoji-regex: 9.2.2
- strip-ansi: 7.1.2
-
string-width@7.2.0:
dependencies:
emoji-regex: 10.6.0
@@ -16065,7 +16635,7 @@ snapshots:
supports-preserve-symlinks-flag@1.0.0: {}
- svelte-check@4.3.3(picomatch@4.0.4)(svelte@4.2.20)(typescript@5.6.3):
+ svelte-check@4.3.3(picomatch@4.0.4)(svelte@4.2.20)(typescript@5.9.3):
dependencies:
'@jridgewell/trace-mapping': 0.3.31
chokidar: 4.0.3
@@ -16073,7 +16643,7 @@ snapshots:
picocolors: 1.1.1
sade: 1.8.1
svelte: 4.2.20
- typescript: 5.6.3
+ typescript: 5.9.3
transitivePeerDependencies:
- picomatch
@@ -16081,12 +16651,12 @@ snapshots:
dependencies:
svelte: 4.2.20
- svelte2tsx@0.7.45(svelte@4.2.20)(typescript@5.6.3):
+ svelte2tsx@0.7.45(svelte@4.2.20)(typescript@5.9.3):
dependencies:
dedent-js: 1.0.1
scule: 1.3.0
svelte: 4.2.20
- typescript: 5.6.3
+ typescript: 5.9.3
svelte@4.2.20:
dependencies:
@@ -16105,8 +16675,6 @@ snapshots:
magic-string: 0.30.21
periscopic: 3.1.0
- symbol-observable@4.0.0: {}
-
symbol-tree@3.2.4: {}
tapable@2.3.0: {}
@@ -16119,36 +16687,27 @@ snapshots:
inherits: 2.0.4
readable-stream: 3.6.2
- tar@6.2.1:
- dependencies:
- chownr: 2.0.0
- fs-minipass: 2.1.0
- minipass: 5.0.0
- minizlib: 2.1.2
- mkdirp: 1.0.4
- yallist: 4.0.0
-
tar@7.5.13:
dependencies:
'@isaacs/fs-minipass': 4.0.1
chownr: 3.0.0
- minipass: 7.1.2
+ minipass: 7.1.3
minizlib: 3.1.0
yallist: 5.0.0
term-size@2.2.1: {}
- terser-webpack-plugin@5.4.0(esbuild@0.25.4)(webpack@5.105.0(esbuild@0.25.4)):
+ terser-webpack-plugin@5.4.0(esbuild@0.28.1)(webpack@5.105.0):
dependencies:
'@jridgewell/trace-mapping': 0.3.31
jest-worker: 27.5.1
schema-utils: 4.3.3
- terser: 5.39.0
- webpack: 5.105.0(esbuild@0.25.4)
+ terser: 5.43.1
+ webpack: 5.105.0(esbuild@0.28.1)
optionalDependencies:
- esbuild: 0.25.4
+ esbuild: 0.28.1
- terser@5.39.0:
+ terser@5.43.1:
dependencies:
'@jridgewell/source-map': 0.3.11
acorn: 8.15.0
@@ -16165,6 +16724,11 @@ snapshots:
tinyexec@1.1.1: {}
+ tinyglobby@0.2.14:
+ dependencies:
+ fdir: 6.5.0(picomatch@4.0.4)
+ picomatch: 4.0.4
+
tinyglobby@0.2.15:
dependencies:
fdir: 6.5.0(picomatch@4.0.3)
@@ -16202,18 +16766,18 @@ snapshots:
tree-kill@1.2.2: {}
- ts-api-utils@2.1.0(typescript@5.6.3):
+ ts-api-utils@2.1.0(typescript@5.9.3):
dependencies:
- typescript: 5.6.3
+ typescript: 5.9.3
- ts-declaration-location@1.0.7(typescript@5.6.3):
+ ts-declaration-location@1.0.7(typescript@5.9.3):
dependencies:
picomatch: 4.0.4
- typescript: 5.6.3
+ typescript: 5.9.3
- tsconfck@3.1.6(typescript@5.6.3):
+ tsconfck@3.1.6(typescript@5.9.3):
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.9.3
tsconfig-paths@4.2.0:
dependencies:
@@ -16221,15 +16785,21 @@ snapshots:
minimist: 1.2.8
strip-bom: 3.0.0
+ tslib@1.14.1: {}
+
tslib@2.8.1: {}
tsscmp@1.0.6: {}
- tuf-js@3.1.0(supports-color@10.2.2):
+ tsyringe@4.10.0:
+ dependencies:
+ tslib: 1.14.1
+
+ tuf-js@4.1.0:
dependencies:
- '@tufjs/models': 3.0.1
+ '@tufjs/models': 4.1.0
debug: 4.4.3(supports-color@10.2.2)
- make-fetch-happen: 14.0.3
+ make-fetch-happen: 15.0.6
transitivePeerDependencies:
- supports-color
@@ -16244,27 +16814,35 @@ snapshots:
media-typer: 0.3.0
mime-types: 2.1.35
+ type-is@2.1.0:
+ dependencies:
+ content-type: 2.0.0
+ media-typer: 1.1.0
+ mime-types: 3.0.2
+
typed-assert@1.0.9: {}
- typescript-eslint@8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.6.3):
+ typescript-eslint@8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.9.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.6.3))(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.6.3)
- '@typescript-eslint/parser': 8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.6.3)
- '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.6.3)
- '@typescript-eslint/utils': 8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.6.3)
+ '@typescript-eslint/eslint-plugin': 8.46.2(@typescript-eslint/parser@8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.9.3))(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2)(typescript@5.9.3)
+ '@typescript-eslint/typescript-estree': 8.46.2(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.46.2(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(typescript@5.9.3)
eslint: 9.39.0(jiti@2.6.1)(supports-color@10.2.2)
- typescript: 5.6.3
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
typescript@5.4.2: {}
- typescript@5.6.3: {}
+ typescript@5.9.3: {}
ufo@1.6.1: {}
undici-types@7.16.0: {}
+ undici@6.27.0: {}
+
undici@7.16.0: {}
unicode-canonical-property-names-ecmascript@2.0.1: {}
@@ -16278,16 +16856,6 @@ snapshots:
unicode-property-aliases-ecmascript@2.2.0: {}
- unicorn-magic@0.3.0: {}
-
- unique-filename@4.0.0:
- dependencies:
- unique-slug: 5.0.0
-
- unique-slug@5.0.0:
- dependencies:
- imurmurhash: 0.1.4
-
universalify@0.1.2: {}
unpipe@1.0.0: {}
@@ -16316,12 +16884,6 @@ snapshots:
'@unrs/resolver-binding-win32-ia32-msvc': 1.11.1
'@unrs/resolver-binding-win32-x64-msvc': 1.11.1
- update-browserslist-db@1.1.4(browserslist@4.27.0):
- dependencies:
- browserslist: 4.27.0
- escalade: 3.2.0
- picocolors: 1.1.1
-
update-browserslist-db@1.2.3(browserslist@4.28.2):
dependencies:
browserslist: 4.28.2
@@ -16342,47 +16904,42 @@ snapshots:
uuid@8.3.2: {}
- validate-npm-package-license@3.0.4:
- dependencies:
- spdx-correct: 3.2.0
- spdx-expression-parse: 3.0.1
-
validate-npm-package-name@6.0.2: {}
vary@1.1.2: {}
- virtua@0.49.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(solid-js@1.9.10)(svelte@4.2.20)(vue@3.5.22(typescript@5.6.3)):
+ virtua@0.49.1(react-dom@19.2.7(react@19.2.7))(react@19.2.7)(solid-js@1.9.10)(svelte@4.2.20)(vue@3.5.22(typescript@5.9.3)):
optionalDependencies:
react: 19.2.7
react-dom: 19.2.7(react@19.2.7)
solid-js: 1.9.10
svelte: 4.2.20
- vue: 3.5.22(typescript@5.6.3)
+ vue: 3.5.22(typescript@5.9.3)
- vite-plugin-dts@4.2.3(@types/node@24.9.2)(rollup@4.59.0)(supports-color@10.2.2)(typescript@5.6.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)):
+ vite-plugin-dts@4.2.3(@types/node@24.9.2)(rollup@4.59.0)(supports-color@10.2.2)(typescript@5.9.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)):
dependencies:
'@microsoft/api-extractor': 7.47.7(@types/node@24.9.2)
'@rollup/pluginutils': 5.3.0(rollup@4.59.0)
'@volar/typescript': 2.4.23
- '@vue/language-core': 2.1.6(typescript@5.6.3)
+ '@vue/language-core': 2.1.6(typescript@5.9.3)
compare-versions: 6.1.1
debug: 4.4.3(supports-color@10.2.2)
kolorist: 1.8.0
local-pkg: 0.5.1
magic-string: 0.30.21
- typescript: 5.6.3
+ typescript: 5.9.3
optionalDependencies:
- vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
- vite-plugin-externalize-deps@0.10.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)):
+ vite-plugin-externalize-deps@0.10.0(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)):
dependencies:
- vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
- vite-plugin-solid@2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)):
+ vite-plugin-solid@2.11.10(@testing-library/jest-dom@6.9.1)(solid-js@1.9.10)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)):
dependencies:
'@babel/core': 7.28.5
'@types/babel__core': 7.20.5
@@ -16390,25 +16947,25 @@ snapshots:
merge-anything: 5.1.7
solid-js: 1.9.10
solid-refresh: 0.6.3(solid-js@1.9.10)
- vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
- vitefu: 1.1.1(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
+ vitefu: 1.1.1(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
optionalDependencies:
'@testing-library/jest-dom': 6.9.1
transitivePeerDependencies:
- supports-color
- vite-tsconfig-paths@5.1.4(supports-color@10.2.2)(typescript@5.6.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)):
+ vite-tsconfig-paths@5.1.4(supports-color@10.2.2)(typescript@5.9.3)(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)):
dependencies:
debug: 4.4.3(supports-color@10.2.2)
globrex: 0.1.2
- tsconfck: 3.1.6(typescript@5.6.3)
+ tsconfck: 3.1.6(typescript@5.9.3)
optionalDependencies:
- vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
transitivePeerDependencies:
- supports-color
- typescript
- vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1):
+ vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1):
dependencies:
esbuild: 0.25.12
fdir: 6.5.0(picomatch@4.0.4)
@@ -16420,23 +16977,40 @@ snapshots:
'@types/node': 24.9.2
fsevents: 2.3.3
jiti: 2.6.1
- less: 4.2.2
- sass: 1.85.0
- terser: 5.39.0
+ less: 4.4.0
+ sass: 1.90.0
+ terser: 5.43.1
+ yaml: 2.8.1
+
+ vite@7.3.6(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1):
+ dependencies:
+ esbuild: 0.28.1
+ fdir: 6.5.0(picomatch@4.0.4)
+ picomatch: 4.0.4
+ postcss: 8.5.12
+ rollup: 4.59.0
+ tinyglobby: 0.2.15
+ optionalDependencies:
+ '@types/node': 24.9.2
+ fsevents: 2.3.3
+ jiti: 2.6.1
+ less: 4.4.0
+ sass: 1.90.0
+ terser: 5.43.1
yaml: 2.8.1
- vitefu@0.2.5(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)):
+ vitefu@0.2.5(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)):
optionalDependencies:
- vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
- vitefu@1.1.1(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)):
+ vitefu@1.1.1(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)):
optionalDependencies:
- vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
- vitest@4.1.4(@types/node@24.9.2)(jsdom@27.1.0(supports-color@10.2.2))(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)):
+ vitest@4.1.4(@types/node@24.9.2)(jsdom@27.1.0(supports-color@10.2.2))(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)):
dependencies:
'@vitest/expect': 4.1.4
- '@vitest/mocker': 4.1.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1))
+ '@vitest/mocker': 4.1.4(vite@6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1))
'@vitest/pretty-format': 4.1.4
'@vitest/runner': 4.1.4
'@vitest/snapshot': 4.1.4
@@ -16453,7 +17027,7 @@ snapshots:
tinyexec: 1.1.1
tinyglobby: 0.2.15
tinyrainbow: 3.1.0
- vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.1)
+ vite: 6.4.2(@types/node@24.9.2)(jiti@2.6.1)(less@4.4.0)(sass@1.90.0)(terser@5.43.1)(yaml@2.8.1)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 24.9.2
@@ -16463,9 +17037,9 @@ snapshots:
vscode-uri@3.1.0: {}
- vue-demi@0.14.10(vue@3.5.22(typescript@5.6.3)):
+ vue-demi@0.14.10(vue@3.5.22(typescript@5.9.3)):
dependencies:
- vue: 3.5.22(typescript@5.6.3)
+ vue: 3.5.22(typescript@5.9.3)
vue-eslint-parser@10.2.0(eslint@9.39.0(jiti@2.6.1)(supports-color@10.2.2))(supports-color@10.2.2):
dependencies:
@@ -16479,21 +17053,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
- vue-tsc@2.2.12(typescript@5.6.3):
+ vue-tsc@2.2.12(typescript@5.9.3):
dependencies:
'@volar/typescript': 2.4.15
- '@vue/language-core': 2.2.12(typescript@5.6.3)
- typescript: 5.6.3
+ '@vue/language-core': 2.2.12(typescript@5.9.3)
+ typescript: 5.9.3
- vue@3.5.22(typescript@5.6.3):
+ vue@3.5.22(typescript@5.9.3):
dependencies:
'@vue/compiler-dom': 3.5.22
'@vue/compiler-sfc': 3.5.22
'@vue/runtime-dom': 3.5.22
- '@vue/server-renderer': 3.5.22(vue@3.5.22(typescript@5.6.3))
+ '@vue/server-renderer': 3.5.22(vue@3.5.22(typescript@5.9.3))
'@vue/shared': 3.5.22
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.9.3
w3c-xmlserializer@5.0.0:
dependencies:
@@ -16503,7 +17077,7 @@ snapshots:
warp10@2.1.0: {}
- watchpack@2.4.2:
+ watchpack@2.4.4:
dependencies:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
@@ -16528,7 +17102,7 @@ snapshots:
webidl-conversions@8.0.0: {}
- webpack-dev-middleware@7.4.2(webpack@5.105.0(esbuild@0.25.4)):
+ webpack-dev-middleware@7.4.2(webpack@5.105.0):
dependencies:
colorette: 2.0.20
memfs: 4.50.0
@@ -16537,9 +17111,9 @@ snapshots:
range-parser: 1.2.1
schema-utils: 4.3.3
optionalDependencies:
- webpack: 5.105.0(esbuild@0.25.4)
+ webpack: 5.105.0(esbuild@0.28.1)
- webpack-dev-server@5.2.2(supports-color@10.2.2)(webpack@5.105.0(esbuild@0.25.4)):
+ webpack-dev-server@5.2.5(webpack@5.105.0):
dependencies:
'@types/bonjour': 3.5.13
'@types/connect-history-api-fallback': 1.5.4
@@ -16555,22 +17129,22 @@ snapshots:
colorette: 2.0.20
compression: 1.8.1(supports-color@10.2.2)
connect-history-api-fallback: 2.0.0
- express: 4.21.2(supports-color@10.2.2)
+ express: 4.22.2
graceful-fs: 4.2.11
http-proxy-middleware: 2.0.9(@types/express@4.17.25)
ipaddr.js: 2.2.0
launch-editor: 2.12.0
- open: 10.1.0
+ open: 10.2.0
p-retry: 6.2.1
schema-utils: 4.3.3
- selfsigned: 2.4.1
- serve-index: 1.9.1(supports-color@10.2.2)
+ selfsigned: 5.5.0
+ serve-index: 1.9.1
sockjs: 0.3.24
- spdy: 4.0.2(supports-color@10.2.2)
- webpack-dev-middleware: 7.4.2(webpack@5.105.0(esbuild@0.25.4))
+ spdy: 4.0.2
+ webpack-dev-middleware: 7.4.2(webpack@5.105.0)
ws: 8.18.3
optionalDependencies:
- webpack: 5.105.0(esbuild@0.25.4)
+ webpack: 5.105.0(esbuild@0.28.1)
transitivePeerDependencies:
- bufferutil
- debug
@@ -16585,12 +17159,12 @@ snapshots:
webpack-sources@3.3.3: {}
- webpack-subresource-integrity@5.1.0(webpack@5.105.0(esbuild@0.25.4)):
+ webpack-subresource-integrity@5.1.0(webpack@5.105.0(esbuild@0.28.1)):
dependencies:
typed-assert: 1.0.9
- webpack: 5.105.0(esbuild@0.25.4)
+ webpack: 5.105.0(esbuild@0.28.1)
- webpack@5.105.0(esbuild@0.25.4):
+ webpack@5.105.0(esbuild@0.28.1):
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.8
@@ -16614,7 +17188,7 @@ snapshots:
neo-async: 2.6.2
schema-utils: 4.3.3
tapable: 2.3.0
- terser-webpack-plugin: 5.4.0(esbuild@0.25.4)(webpack@5.105.0(esbuild@0.25.4))
+ terser-webpack-plugin: 5.4.0(esbuild@0.28.1)(webpack@5.105.0)
watchpack: 2.5.1
webpack-sources: 3.3.3
transitivePeerDependencies:
@@ -16650,9 +17224,9 @@ snapshots:
dependencies:
isexe: 2.0.0
- which@5.0.0:
+ which@6.0.1:
dependencies:
- isexe: 3.1.1
+ isexe: 4.0.0
why-is-node-running@2.3.0:
dependencies:
@@ -16675,12 +17249,6 @@ snapshots:
string-width: 4.2.3
strip-ansi: 6.0.1
- wrap-ansi@8.1.0:
- dependencies:
- ansi-styles: 6.2.3
- string-width: 5.1.2
- strip-ansi: 7.1.2
-
wrap-ansi@9.0.2:
dependencies:
ansi-styles: 6.2.3
@@ -16693,6 +17261,10 @@ snapshots:
ws@8.18.3: {}
+ wsl-utils@0.1.0:
+ dependencies:
+ is-wsl: 3.1.0
+
xml-name-validator@5.0.0: {}
xmlchars@2.2.0: {}
@@ -16709,6 +17281,8 @@ snapshots:
yargs-parser@21.1.1: {}
+ yargs-parser@22.0.0: {}
+
yargs@17.7.2:
dependencies:
cliui: 8.0.1
@@ -16719,16 +17293,29 @@ snapshots:
y18n: 5.0.8
yargs-parser: 21.1.1
+ yargs@18.0.0:
+ dependencies:
+ cliui: 9.0.1
+ escalade: 3.2.0
+ get-caller-file: 2.0.5
+ string-width: 7.2.0
+ y18n: 5.0.8
+ yargs-parser: 22.0.0
+
ylru@1.4.0: {}
yocto-queue@0.1.0: {}
- yocto-queue@1.2.1: {}
-
yoctocolors-cjs@2.1.3: {}
+ zod-to-json-schema@3.25.2(zod@4.1.13):
+ dependencies:
+ zod: 4.1.13
+
zod@3.25.76: {}
zod@4.1.12: {}
+ zod@4.1.13: {}
+
zone.js@0.15.1: {}