diff --git a/apps/demo/project.json b/apps/demo/project.json
index dc10fbb5..e26a915e 100644
--- a/apps/demo/project.json
+++ b/apps/demo/project.json
@@ -72,7 +72,8 @@
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
- "jestConfig": "apps/demo/jest.config.ts"
+ "jestConfig": "apps/demo/jest.config.ts",
+ "tsConfig": "apps/demo/tsconfig.spec.json"
}
},
"e2e": {
diff --git a/apps/demo/src/app/flight-search-data-service-dynamic/flight-edit.component.ts b/apps/demo/src/app/flight-search-data-service-dynamic/flight-edit.component.ts
index 74cb5456..32638334 100644
--- a/apps/demo/src/app/flight-search-data-service-dynamic/flight-edit.component.ts
+++ b/apps/demo/src/app/flight-search-data-service-dynamic/flight-edit.component.ts
@@ -1,4 +1,3 @@
-import { CommonModule } from '@angular/common';
import { Component, Input, OnInit, ViewChild, inject } from '@angular/core';
import { FormsModule, NgForm } from '@angular/forms';
import { RouterModule } from '@angular/router';
@@ -6,7 +5,7 @@ import { Flight } from '../shared/flight';
import { FlightBookingStore } from './flight-booking.store';
@Component({
- imports: [CommonModule, RouterModule, FormsModule],
+ imports: [RouterModule, FormsModule],
selector: 'demo-flight-edit',
templateUrl: './flight-edit.component.html',
})
diff --git a/apps/demo/src/app/flight-search-data-service-dynamic/flight-search.component.html b/apps/demo/src/app/flight-search-data-service-dynamic/flight-search.component.html
index 39035ade..e9ea8352 100644
--- a/apps/demo/src/app/flight-search-data-service-dynamic/flight-search.component.html
+++ b/apps/demo/src/app/flight-search-data-service-dynamic/flight-search.component.html
@@ -47,24 +47,27 @@
Flight Search (Dynamic)
- Loading ...
+ @if (loading()) {
+ Loading ...
+ }
+ }
{{ selected() | json }}
diff --git a/apps/demo/src/app/flight-search-data-service-dynamic/flight-search.component.ts b/apps/demo/src/app/flight-search-data-service-dynamic/flight-search.component.ts
index a674e506..173366f6 100644
--- a/apps/demo/src/app/flight-search-data-service-dynamic/flight-search.component.ts
+++ b/apps/demo/src/app/flight-search-data-service-dynamic/flight-search.component.ts
@@ -1,4 +1,4 @@
-import { JsonPipe, NgForOf, NgIf } from '@angular/common';
+import { JsonPipe } from '@angular/common';
import { Component, inject } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { RouterLink } from '@angular/router';
@@ -6,14 +6,7 @@ import { FlightCardComponent } from '../shared/flight-card.component';
import { FlightBookingStore } from './flight-booking.store';
@Component({
- imports: [
- NgIf,
- NgForOf,
- JsonPipe,
- FormsModule,
- FlightCardComponent,
- RouterLink,
- ],
+ imports: [JsonPipe, FormsModule, FlightCardComponent, RouterLink],
selector: 'demo-flight-search',
templateUrl: './flight-search.component.html',
})
diff --git a/apps/demo/src/app/flight-search-data-service-simple/flight-edit-simple.component.ts b/apps/demo/src/app/flight-search-data-service-simple/flight-edit-simple.component.ts
index 4a8177ea..41556414 100644
--- a/apps/demo/src/app/flight-search-data-service-simple/flight-edit-simple.component.ts
+++ b/apps/demo/src/app/flight-search-data-service-simple/flight-edit-simple.component.ts
@@ -1,4 +1,3 @@
-import { CommonModule } from '@angular/common';
import { Component, Input, OnInit, ViewChild, inject } from '@angular/core';
import { FormsModule, NgForm } from '@angular/forms';
import { RouterModule } from '@angular/router';
@@ -6,7 +5,7 @@ import { Flight } from '../shared/flight';
import { SimpleFlightBookingStore } from './flight-booking-simple.store';
@Component({
- imports: [CommonModule, RouterModule, FormsModule],
+ imports: [RouterModule, FormsModule],
selector: 'demo-flight-edit-simple',
templateUrl: './flight-edit-simple.component.html',
})
diff --git a/apps/demo/src/app/flight-search-data-service-simple/flight-search-simple.component.html b/apps/demo/src/app/flight-search-data-service-simple/flight-search-simple.component.html
index 130a6fa7..2b63150c 100644
--- a/apps/demo/src/app/flight-search-data-service-simple/flight-search-simple.component.html
+++ b/apps/demo/src/app/flight-search-data-service-simple/flight-search-simple.component.html
@@ -14,12 +14,9 @@ Flight Search (Simple)
-
- Invalid city!
-
+ @if (form?.controls?.['from']?.hasError('appCity')) {
+ Invalid city!
+ }
{{ selected() | json }}
diff --git a/apps/demo/src/app/flight-search-data-service-simple/flight-search-simple.component.ts b/apps/demo/src/app/flight-search-data-service-simple/flight-search-simple.component.ts
index 1670419d..e65dfd2c 100644
--- a/apps/demo/src/app/flight-search-data-service-simple/flight-search-simple.component.ts
+++ b/apps/demo/src/app/flight-search-data-service-simple/flight-search-simple.component.ts
@@ -1,4 +1,4 @@
-import { JsonPipe, NgForOf, NgIf } from '@angular/common';
+import { JsonPipe } from '@angular/common';
import { ChangeDetectionStrategy, Component, inject } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { MatButtonModule } from '@angular/material/button';
@@ -10,8 +10,6 @@ import { SimpleFlightBookingStore } from './flight-booking-simple.store';
@Component({
imports: [
- NgIf,
- NgForOf,
JsonPipe,
FormsModule,
FlightCardComponent,
diff --git a/apps/demo/src/app/shared/flight-card.component.html b/apps/demo/src/app/shared/flight-card.component.html
index 0447282b..edacd384 100644
--- a/apps/demo/src/app/shared/flight-card.component.html
+++ b/apps/demo/src/app/shared/flight-card.component.html
@@ -7,12 +7,12 @@ {{ item.from }} - {{ item.to }}
Flight-No.: #{{ item.id }}
Date: {{ item.date | date: 'dd.MM.yyyy HH:mm:ss' }}
-
-
+ @if (!selected) {
+
+ }
+ @if (selected) {
+
+ }
diff --git a/apps/demo/src/app/todo-entity-resource/todo-entity-resource.component.ts b/apps/demo/src/app/todo-entity-resource/todo-entity-resource.component.ts
index fbeba5b3..13cacade 100644
--- a/apps/demo/src/app/todo-entity-resource/todo-entity-resource.component.ts
+++ b/apps/demo/src/app/todo-entity-resource/todo-entity-resource.component.ts
@@ -1,4 +1,3 @@
-import { CommonModule } from '@angular/common';
import { Component, computed, effect, inject } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { MatIcon } from '@angular/material/icon';
@@ -11,7 +10,6 @@ import { TodoEntityResourceStore } from './todo-entity-resource.store';
selector: 'demo-todo-entity-resource',
standalone: true,
imports: [
- CommonModule,
FormsModule,
MatIcon,
MatInputModule,
diff --git a/apps/demo/src/main.ts b/apps/demo/src/main.ts
index f3a7223d..4919bb4e 100644
--- a/apps/demo/src/main.ts
+++ b/apps/demo/src/main.ts
@@ -1,7 +1,9 @@
+import { provideZoneChangeDetection } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { appConfig } from './app/app.config';
-bootstrapApplication(AppComponent, appConfig).catch((err) =>
- console.error(err),
-);
+bootstrapApplication(AppComponent, {
+ ...appConfig,
+ providers: [provideZoneChangeDetection(), ...appConfig.providers],
+}).catch((err) => console.error(err));
diff --git a/apps/demo/tsconfig.json b/apps/demo/tsconfig.json
index 44decba5..cddf142f 100644
--- a/apps/demo/tsconfig.json
+++ b/apps/demo/tsconfig.json
@@ -8,7 +8,10 @@
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true
+ "noFallthroughCasesInSwitch": true,
+ "module": "preserve",
+ "moduleResolution": "bundler",
+ "lib": ["dom", "es2022"]
},
"files": [],
"include": [],
diff --git a/apps/demo/tsconfig.spec.json b/apps/demo/tsconfig.spec.json
index 53fbfcdc..3cb26093 100644
--- a/apps/demo/tsconfig.spec.json
+++ b/apps/demo/tsconfig.spec.json
@@ -2,9 +2,11 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../dist/out-tsc",
- "module": "commonjs",
+ "module": "preserve",
"target": "es2016",
- "types": ["jest", "node"]
+ "types": ["jest", "node"],
+ "moduleResolution": "bundler",
+ "isolatedModules": true
},
"files": ["src/test-setup.ts"],
"include": [
diff --git a/libs/ngrx-toolkit/package.json b/libs/ngrx-toolkit/package.json
index 0ca10a53..c5cda733 100644
--- a/libs/ngrx-toolkit/package.json
+++ b/libs/ngrx-toolkit/package.json
@@ -7,10 +7,10 @@
"url": "https://github.com/angular-architects/ngrx-toolkit"
},
"peerDependencies": {
- "@angular/core": "^20.0.0",
- "@angular/common": "^20.0.0",
- "@ngrx/signals": "^20.0.0",
- "@ngrx/store": "^20.0.0",
+ "@angular/core": "^21.0.0",
+ "@angular/common": "^21.0.0",
+ "@ngrx/signals": "^21.0.0",
+ "@ngrx/store": "^21.0.0",
"rxjs": "^7.0.0"
},
"peerDependenciesMeta": {
diff --git a/libs/ngrx-toolkit/project.json b/libs/ngrx-toolkit/project.json
index c4c57522..cf201f1c 100644
--- a/libs/ngrx-toolkit/project.json
+++ b/libs/ngrx-toolkit/project.json
@@ -10,15 +10,14 @@
"executor": "@nx/angular:package",
"outputs": ["{workspaceRoot}/dist/{projectRoot}"],
"options": {
- "project": "libs/ngrx-toolkit/ng-package.json"
+ "project": "libs/ngrx-toolkit/ng-package.json",
+ "tsConfig": "libs/ngrx-toolkit/tsconfig.lib.json"
},
"configurations": {
"production": {
"tsConfig": "libs/ngrx-toolkit/tsconfig.lib.prod.json"
},
- "development": {
- "tsConfig": "libs/ngrx-toolkit/tsconfig.lib.json"
- }
+ "development": {}
},
"defaultConfiguration": "production"
},
@@ -26,7 +25,8 @@
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
- "jestConfig": "libs/ngrx-toolkit/jest.config.ts"
+ "jestConfig": "libs/ngrx-toolkit/jest.config.ts",
+ "tsConfig": "libs/ngrx-toolkit/tsconfig.spec.json"
}
},
"lint": {
diff --git a/libs/ngrx-toolkit/redux-connector/src/lib/create-redux.ts b/libs/ngrx-toolkit/redux-connector/src/lib/create-redux.ts
index 3012c69b..f49f31e7 100644
--- a/libs/ngrx-toolkit/redux-connector/src/lib/create-redux.ts
+++ b/libs/ngrx-toolkit/redux-connector/src/lib/create-redux.ts
@@ -3,7 +3,7 @@ import {
makeEnvironmentProviders,
provideEnvironmentInitializer,
} from '@angular/core';
-import { ActionCreator, ActionType } from '@ngrx/store/src/models';
+import { ActionCreator, ActionType } from '@ngrx/store';
import {
CreateReduxState,
ExtractActionTypes,
diff --git a/libs/ngrx-toolkit/redux-connector/src/lib/model.ts b/libs/ngrx-toolkit/redux-connector/src/lib/model.ts
index 502af06f..5734d075 100644
--- a/libs/ngrx-toolkit/redux-connector/src/lib/model.ts
+++ b/libs/ngrx-toolkit/redux-connector/src/lib/model.ts
@@ -1,15 +1,11 @@
import { EnvironmentProviders, Signal, Type } from '@angular/core';
-import { DeepSignal } from '@ngrx/signals/src/deep-signal';
import {
+ DeepSignal,
+ Prettify,
SignalStoreFeatureResult,
StateSignals,
-} from '@ngrx/signals/src/signal-store-models';
-import {
- Action,
- ActionCreator,
- ActionType,
- Prettify,
-} from '@ngrx/store/src/models';
+} from '@ngrx/signals';
+import { Action, ActionCreator, ActionType } from '@ngrx/store';
import { Observable, Unsubscribable } from 'rxjs';
export type IncludePropType<
diff --git a/libs/ngrx-toolkit/tsconfig.json b/libs/ngrx-toolkit/tsconfig.json
index 92049739..632579ce 100644
--- a/libs/ngrx-toolkit/tsconfig.json
+++ b/libs/ngrx-toolkit/tsconfig.json
@@ -7,7 +7,10 @@
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
- "noFallthroughCasesInSwitch": true
+ "noFallthroughCasesInSwitch": true,
+ "module": "preserve",
+ "moduleResolution": "bundler",
+ "lib": ["dom", "es2022"]
},
"files": [],
"include": [],
diff --git a/libs/ngrx-toolkit/tsconfig.spec.json b/libs/ngrx-toolkit/tsconfig.spec.json
index 7cc308fc..4f77cfc6 100644
--- a/libs/ngrx-toolkit/tsconfig.spec.json
+++ b/libs/ngrx-toolkit/tsconfig.spec.json
@@ -2,9 +2,11 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../dist/out-tsc",
- "module": "commonjs",
+ "module": "preserve",
"target": "es2016",
- "types": ["jest", "node"]
+ "types": ["jest", "node"],
+ "moduleResolution": "bundler",
+ "isolatedModules": true
},
"files": ["src/test-setup.ts"],
"include": [
diff --git a/migrations.json b/migrations.json
index 75277426..b4a0cba5 100644
--- a/migrations.json
+++ b/migrations.json
@@ -1,29 +1,200 @@
{
"migrations": [
{
- "version": "21.3.0-beta.3",
- "requires": { "jest": ">=30.0.0" },
- "description": "Rename the CLI option `testPathPattern` to `testPathPatterns`.",
- "implementation": "./src/migrations/update-21-3-0/rename-test-path-pattern",
- "package": "@nx/jest",
- "name": "rename-test-path-pattern"
+ "version": "22.0.0-beta.1",
+ "description": "Updates release version config based on the breaking changes in Nx v22",
+ "implementation": "./src/migrations/update-22-0-0/release-version-config-changes",
+ "package": "nx",
+ "name": "22-0-0-release-version-config-changes"
+ },
+ {
+ "version": "22.0.0-beta.2",
+ "description": "Consolidates releaseTag* options into nested releaseTag object structure",
+ "implementation": "./src/migrations/update-22-0-0/consolidate-release-tag-config",
+ "package": "nx",
+ "name": "22-0-0-consolidate-release-tag-config"
+ },
+ {
+ "cli": "nx",
+ "version": "22.1.0-beta.5",
+ "description": "Updates the nx wrapper.",
+ "implementation": "./src/migrations/update-22-1-0/update-nx-wrapper",
+ "package": "nx",
+ "name": "22-1-0-update-nx-wrapper"
+ },
+ {
+ "version": "21.5.0-beta.2",
+ "description": "Migrate the legacy 'development' custom condition to a workspace-unique custom condition name.",
+ "factory": "./src/migrations/update-21-5-0/migrate-development-custom-condition",
+ "package": "@nx/js",
+ "name": "migrate-development-custom-condition"
},
{
- "version": "21.3.0-beta.3",
- "requires": { "jest": ">=30.0.0" },
- "description": "Replace removed matcher aliases in Jest v30 with their corresponding matcher",
- "implementation": "./src/migrations/update-21-3-0/replace-removed-matcher-aliases",
+ "version": "22.0.0-beta.0",
+ "description": "Remove the deprecated `external` and `externalBuildTargets` options from the `@nx/js:swc` and `@nx/js:tsc` executors.",
+ "factory": "./src/migrations/update-22-0-0/remove-external-options-from-js-executors",
+ "package": "@nx/js",
+ "name": "remove-external-options-from-js-executors"
+ },
+ {
+ "version": "22.1.0-rc.1",
+ "description": "Removes redundant TypeScript project references from project's tsconfig.json files when runtime tsconfig files (e.g., tsconfig.lib.json, tsconfig.app.json) exist.",
+ "factory": "./src/migrations/update-22-1-0/remove-redundant-ts-project-references",
+ "package": "@nx/js",
+ "name": "remove-redundant-ts-project-references"
+ },
+ {
+ "version": "22.2.0-beta.2",
+ "description": "Convert jest.config.ts files from ESM to CJS syntax (export default -> module.exports, import -> require) for projects using CommonJS resolution to ensure correct loading under Node.js type-stripping.",
+ "implementation": "./src/migrations/update-22-2-0/convert-jest-config-to-cjs",
"package": "@nx/jest",
- "name": "replace-removed-matcher-aliases"
+ "name": "convert-jest-config-to-cjs"
+ },
+ {
+ "version": "21.5.0-beta.0",
+ "description": "Set the 'tsConfig' option to build and test targets to help with Angular migration issues.",
+ "factory": "./src/migrations/update-21-5-0/set-tsconfig-option",
+ "package": "@nx/angular",
+ "name": "set-tsconfig-option"
},
{
"cli": "nx",
- "version": "21.3.0-beta.4",
- "requires": { "@angular/core": ">=20.1.0" },
- "description": "Update the @angular/cli package version to ~20.1.0.",
- "factory": "./src/migrations/update-21-3-0/update-angular-cli",
+ "version": "21.5.0-beta.2",
+ "requires": { "@angular/core": ">=20.2.0" },
+ "description": "Update the @angular/cli package version to ~20.2.0.",
+ "factory": "./src/migrations/update-21-5-0/update-angular-cli",
"package": "@nx/angular",
- "name": "update-angular-cli-version-20-1-0"
+ "name": "update-angular-cli-version-20-2-0"
+ },
+ {
+ "version": "21.5.0-beta.2",
+ "requires": { "@angular/core": ">=20.2.0" },
+ "description": "Remove any Karma configuration files that only contain the default content. The default configuration is automatically available without a specific project configurationfile.",
+ "factory": "./src/migrations/update-21-5-0/remove-default-karma-configuration-files",
+ "package": "@nx/angular",
+ "name": "remove-default-karma-configuration-files"
+ },
+ {
+ "cli": "nx",
+ "version": "21.6.1-beta.2",
+ "requires": { "@angular/core": ">=20.3.0" },
+ "description": "Update the @angular/cli package version to ~20.3.0.",
+ "factory": "./src/migrations/update-21-6-1/update-angular-cli",
+ "package": "@nx/angular",
+ "name": "update-angular-cli-version-20-3-0"
+ },
+ {
+ "version": "22.3.0-beta.0",
+ "requires": { "@angular/core": ">=21.0.0" },
+ "description": "Update the @angular/cli package version to ~21.0.0.",
+ "factory": "./src/migrations/update-22-3-0/update-angular-cli",
+ "package": "@nx/angular",
+ "name": "update-angular-cli-version-21-0-0"
+ },
+ {
+ "version": "22.3.0-beta.0",
+ "requires": { "@angular/core": ">=21.0.0" },
+ "description": "Updates webpack-based SSR configuration to use preserve module format and bundler module resolution.",
+ "factory": "./src/migrations/update-22-3-0/update-ssr-webpack-config",
+ "package": "@nx/angular",
+ "name": "update-ssr-webpack-config-22-2-0"
+ },
+ {
+ "version": "22.3.0-beta.0",
+ "requires": { "@angular/core": ">=21.0.0-rc.3" },
+ "description": "Update 'module' to 'preserve' and 'moduleResolution' to 'bundler' in TypeScript configurations for Angular projects.",
+ "factory": "./src/migrations/update-22-3-0/update-module-resolution",
+ "package": "@nx/angular",
+ "name": "update-module-resolution-22-2-0"
+ },
+ {
+ "version": "22.3.0-beta.0",
+ "requires": { "@angular/core": ">=21.0.0" },
+ "description": "Updates the 'lib' property in tsconfig files to use 'es2022' or a more modern version.",
+ "factory": "./src/migrations/update-22-3-0/update-typescript-lib",
+ "package": "@nx/angular",
+ "name": "update-typescript-lib-22-2-0"
+ },
+ {
+ "version": "22.3.0-beta.0",
+ "requires": { "@angular/core": ">=21.0.0" },
+ "description": "Update 'vitest' unit test runner option to 'vitest-analog' in generator defaults.",
+ "factory": "./src/migrations/update-22-3-0/update-unit-test-runner-option",
+ "package": "@nx/angular",
+ "name": "update-unit-test-runner-option"
+ },
+ {
+ "version": "22.3.0-beta.3",
+ "requires": { "@angular/core": ">=21.0.0" },
+ "description": "Set 'isolatedModules' to 'true' in TypeScript test configurations for Angular projects.",
+ "factory": "./src/migrations/update-22-3-0/set-isolated-modules",
+ "package": "@nx/angular",
+ "name": "set-isolated-modules-22-3-0"
+ },
+ {
+ "version": "22.3.0-beta.3",
+ "requires": { "@angular/core": ">=21.0.0" },
+ "description": "Replace 'jest-preset-angular/setup-jest' imports with the new 'setupZoneTestEnv' function.",
+ "factory": "./src/migrations/update-22-3-0/update-jest-preset-angular-setup",
+ "package": "@nx/angular",
+ "name": "update-jest-preset-angular-setup"
+ },
+ {
+ "version": "21.0.0",
+ "description": "Converts the entire application to block control flow syntax",
+ "factory": "./bundles/control-flow-migration.cjs#migrate",
+ "package": "@angular/core",
+ "name": "control-flow-migration"
+ },
+ {
+ "version": "21.0.0",
+ "description": "Replaces usages of the deprecated Router.getCurrentNavigation method with the Router.currentNavigation signal",
+ "factory": "./bundles/router-current-navigation.cjs#migrate",
+ "optional": true,
+ "package": "@angular/core",
+ "name": "router-current-navigation"
+ },
+ {
+ "version": "21.0.0",
+ "description": "Ensures that the Router.lastSuccessfulNavigation signal is now invoked",
+ "factory": "./bundles/router-last-successful-navigation.cjs#migrate",
+ "package": "@angular/core",
+ "name": "router-last-successful-navigation"
+ },
+ {
+ "version": "21.0.0",
+ "description": "Moves imports of `ApplicationConfig` from `@angular/platform-browser` to `@angular/core`",
+ "factory": "./bundles/application-config-core.cjs#migrate",
+ "package": "@angular/core",
+ "name": "application-config-core"
+ },
+ {
+ "version": "21.0.0",
+ "description": "Adds `BootstrapContext` to `bootstrapApplication` calls in `main.server.ts` to support server rendering.",
+ "factory": "./bundles/add-bootstrap-context-to-server-main.cjs#migrate",
+ "package": "@angular/core",
+ "name": "add-bootstrap-context-to-server-main"
+ },
+ {
+ "version": "21.0.0",
+ "description": "Migrates deprecated bootstrap options to providers.",
+ "factory": "./bundles/bootstrap-options-migration.cjs#migrate",
+ "package": "@angular/core",
+ "name": "bootstrap-options-migration"
+ },
+ {
+ "version": "21.0.0-0",
+ "description": "Updates Angular Material to v21",
+ "factory": "./ng-update/index_bundled#updateToV21",
+ "package": "@angular/material",
+ "name": "migration-v21"
+ },
+ {
+ "version": "21.0.0-0",
+ "description": "Updates the Angular CDK to v21",
+ "factory": "./ng-update/index#updateToV21",
+ "package": "@angular/cdk",
+ "name": "migration-v21"
}
]
}
diff --git a/package.json b/package.json
index 6f2666ea..3a004184 100644
--- a/package.json
+++ b/package.json
@@ -18,45 +18,45 @@
"pnpm": ">=10"
},
"dependencies": {
- "@angular/animations": "20.1.3",
- "@angular/cdk": "20.1.3",
- "@angular/common": "20.1.3",
- "@angular/compiler": "20.1.3",
- "@angular/core": "20.1.3",
- "@angular/forms": "20.1.3",
- "@angular/material": "20.1.3",
- "@angular/platform-browser": "20.1.3",
- "@angular/platform-browser-dynamic": "20.1.3",
- "@angular/router": "20.1.3",
- "@ngrx/signals": "20.0.0",
- "@ngrx/store": "20.0.0",
- "@nx/angular": "21.3.7",
+ "@angular/animations": "21.0.6",
+ "@angular/cdk": "21.0.3",
+ "@angular/common": "21.0.6",
+ "@angular/compiler": "21.0.6",
+ "@angular/core": "21.0.6",
+ "@angular/forms": "21.0.6",
+ "@angular/material": "21.0.3",
+ "@angular/platform-browser": "21.0.6",
+ "@angular/platform-browser-dynamic": "21.0.6",
+ "@angular/router": "21.0.6",
+ "@ngrx/signals": "21.0.0",
+ "@ngrx/store": "21.0.0",
+ "@nx/angular": "22.3.1",
"core-js": "^3.40.0",
"flush-promises": "^1.0.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
- "zone.js": "0.15.0"
+ "zone.js": "0.16.0"
},
"devDependencies": {
- "@angular-devkit/build-angular": "20.1.3",
- "@angular-devkit/core": "20.1.3",
- "@angular-devkit/schematics": "20.1.3",
- "@angular/cli": "~20.1.0",
- "@angular/compiler-cli": "20.1.3",
- "@angular/language-service": "20.1.3",
+ "@angular-devkit/build-angular": "21.0.3",
+ "@angular-devkit/core": "21.0.3",
+ "@angular-devkit/schematics": "21.0.3",
+ "@angular/cli": "~21.0.0",
+ "@angular/compiler-cli": "21.0.6",
+ "@angular/language-service": "21.0.6",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/eslintrc": "^2.1.1",
"@eslint/js": "~8.57.0",
- "@nx/devkit": "21.3.7",
- "@nx/eslint": "21.3.7",
- "@nx/eslint-plugin": "21.3.7",
- "@nx/jest": "21.3.7",
- "@nx/js": "21.3.7",
- "@nx/playwright": "21.3.7",
- "@nx/workspace": "21.3.7",
+ "@nx/devkit": "22.3.1",
+ "@nx/eslint": "22.3.1",
+ "@nx/eslint-plugin": "22.3.1",
+ "@nx/jest": "22.3.1",
+ "@nx/js": "22.3.1",
+ "@nx/playwright": "22.3.1",
+ "@nx/workspace": "22.3.1",
"@playwright/test": "^1.36.0",
- "@schematics/angular": "20.1.3",
+ "@schematics/angular": "21.0.3",
"@softarc/eslint-plugin-sheriff": "^0.15.1",
"@softarc/sheriff-core": "^0.15.1",
"@swc-node/register": "~1.9.1",
@@ -64,7 +64,7 @@
"@swc/helpers": "~0.5.11",
"@types/jest": "30.0.0",
"@types/node": "18.16.9",
- "angular-eslint": "20.1.1",
+ "angular-eslint": "21.0.1",
"autoprefixer": "^10.4.19",
"eslint": "^9.8.0",
"eslint-config-prettier": "10.1.5",
@@ -74,11 +74,12 @@
"husky": "^9.0.11",
"jest": "30.0.5",
"jest-environment-jsdom": "30.0.5",
- "jest-preset-angular": "15.0.0",
+ "jest-preset-angular": "16.0.0",
+ "jest-util": "30.0.5",
"jsonc-eslint-parser": "^2.4.0",
"lint-staged": "^15.3.0",
- "ng-packagr": "20.1.0",
- "nx": "21.3.7",
+ "ng-packagr": "21.0.1",
+ "nx": "22.3.1",
"postcss": "^8.4.39",
"postcss-import": "^16.1.0",
"postcss-preset-env": "^9.5.15",
@@ -87,8 +88,7 @@
"prettier-plugin-organize-imports": "^4.2.0",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
- "typescript": "5.8.3",
- "typescript-eslint": "8.35.1",
- "jest-util": "30.0.5"
+ "typescript": "5.9.3",
+ "typescript-eslint": "8.40.0"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index c4e81694..0c638a4b 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -9,44 +9,44 @@ importers:
.:
dependencies:
'@angular/animations':
- specifier: 20.1.3
- version: 20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))
+ specifier: 21.0.6
+ version: 21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))
'@angular/cdk':
- specifier: 20.1.3
- version: 20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
+ specifier: 21.0.3
+ version: 21.0.3(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1)
'@angular/common':
- specifier: 20.1.3
- version: 20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
+ specifier: 21.0.6
+ version: 21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1)
'@angular/compiler':
- specifier: 20.1.3
- version: 20.1.3
+ specifier: 21.0.6
+ version: 21.0.6
'@angular/core':
- specifier: 20.1.3
- version: 20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)
+ specifier: 21.0.6
+ version: 21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)
'@angular/forms':
- specifier: 20.1.3
- version: 20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@20.1.3(@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)
+ specifier: 21.0.6
+ version: 21.0.6(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(@angular/platform-browser@21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(rxjs@7.8.1)
'@angular/material':
- specifier: 20.1.3
- version: 20.1.3(c9a6764bf3a0a6090ca8600c2e450cc8)
+ specifier: 21.0.3
+ version: 21.0.3(e78c2fba0b6d233c7657811db033c04f)
'@angular/platform-browser':
- specifier: 20.1.3
- version: 20.1.3(@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))
+ specifier: 21.0.6
+ version: 21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))
'@angular/platform-browser-dynamic':
- specifier: 20.1.3
- version: 20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@20.1.3)(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@20.1.3(@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))
+ specifier: 21.0.6
+ version: 21.0.6(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/compiler@21.0.6)(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(@angular/platform-browser@21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))
'@angular/router':
- specifier: 20.1.3
- version: 20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@20.1.3(@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)
+ specifier: 21.0.6
+ version: 21.0.6(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(@angular/platform-browser@21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(rxjs@7.8.1)
'@ngrx/signals':
- specifier: 20.0.0
- version: 20.0.0(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
+ specifier: 21.0.0
+ version: 21.0.0(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1)
'@ngrx/store':
- specifier: 20.0.0
- version: 20.0.0(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
+ specifier: 21.0.0
+ version: 21.0.0(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1)
'@nx/angular':
- specifier: 21.3.7
- version: 21.3.7(7dc4034328a8fc6946582e98fa021184)
+ specifier: 22.3.1
+ version: 22.3.1(e5d1787ca99d2c203fadd531beed7680)
core-js:
specifier: ^3.40.0
version: 3.40.0
@@ -60,30 +60,30 @@ importers:
specifier: ^2.3.0
version: 2.6.3
zone.js:
- specifier: 0.15.0
- version: 0.15.0
+ specifier: 0.16.0
+ version: 0.16.0
devDependencies:
'@angular-devkit/build-angular':
- specifier: 20.1.3
- version: 20.1.3(963aaab4b0debadd2d66b1f210c3bf4d)
+ specifier: 21.0.3
+ version: 21.0.3(552124b0f5f38282ecb961b3512ec6ec)
'@angular-devkit/core':
- specifier: 20.1.3
- version: 20.1.3(chokidar@4.0.3)
+ specifier: 21.0.3
+ version: 21.0.3(chokidar@4.0.3)
'@angular-devkit/schematics':
- specifier: 20.1.3
- version: 20.1.3(chokidar@4.0.3)
+ specifier: 21.0.3
+ version: 21.0.3(chokidar@4.0.3)
'@angular/cli':
- specifier: ~20.1.0
- version: 20.1.4(@types/node@18.16.9)(chokidar@4.0.3)
+ specifier: ~21.0.0
+ version: 21.0.3(@types/node@18.16.9)(chokidar@4.0.3)
'@angular/compiler-cli':
- specifier: 20.1.3
- version: 20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3)
+ specifier: 21.0.6
+ version: 21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3)
'@angular/language-service':
- specifier: 20.1.3
- version: 20.1.3
+ specifier: 21.0.6
+ version: 21.0.6
'@commitlint/cli':
specifier: ^19.3.0
- version: 19.3.0(@types/node@18.16.9)(typescript@5.8.3)
+ version: 19.3.0(@types/node@18.16.9)(typescript@5.9.3)
'@commitlint/config-conventional':
specifier: ^19.2.2
version: 19.2.2
@@ -94,41 +94,41 @@ importers:
specifier: ~8.57.0
version: 8.57.0
'@nx/devkit':
- specifier: 21.3.7
- version: 21.3.7(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ specifier: 22.3.1
+ version: 22.3.1(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
'@nx/eslint':
- specifier: 21.3.7
- version: 21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@zkochan/js-yaml@0.0.7)(eslint@9.17.0(jiti@1.21.6))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ specifier: 22.3.1
+ version: 22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@zkochan/js-yaml@0.0.7)(eslint@9.17.0(jiti@2.6.1))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
'@nx/eslint-plugin':
- specifier: 21.3.7
- version: 21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@typescript-eslint/parser@8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(eslint-config-prettier@10.1.5(eslint@9.17.0(jiti@1.21.6)))(eslint@9.17.0(jiti@1.21.6))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(typescript@5.8.3)
+ specifier: 22.3.1
+ version: 22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@typescript-eslint/parser@8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint-config-prettier@10.1.5(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(typescript@5.9.3)
'@nx/jest':
- specifier: 21.3.7
- version: 21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3))(typescript@5.8.3)
+ specifier: 22.3.1
+ version: 22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3))(typescript@5.9.3)
'@nx/js':
- specifier: 21.3.7
- version: 21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ specifier: 22.3.1
+ version: 22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
'@nx/playwright':
- specifier: 21.3.7
- version: 21.3.7(@babel/traverse@7.28.0)(@playwright/test@1.45.3)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@zkochan/js-yaml@0.0.7)(eslint@9.17.0(jiti@1.21.6))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(typescript@5.8.3)
+ specifier: 22.3.1
+ version: 22.3.1(@babel/traverse@7.28.5)(@playwright/test@1.45.3)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@zkochan/js-yaml@0.0.7)(eslint@9.17.0(jiti@2.6.1))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
'@nx/workspace':
- specifier: 21.3.7
- version: 21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))
+ specifier: 22.3.1
+ version: 22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))
'@playwright/test':
specifier: ^1.36.0
version: 1.45.3
'@schematics/angular':
- specifier: 20.1.3
- version: 20.1.3(chokidar@4.0.3)
+ specifier: 21.0.3
+ version: 21.0.3(chokidar@4.0.3)
'@softarc/eslint-plugin-sheriff':
specifier: ^0.15.1
- version: 0.15.1(@softarc/sheriff-core@0.15.1(typescript@5.8.3))(eslint@9.17.0(jiti@1.21.6))
+ version: 0.15.1(@softarc/sheriff-core@0.15.1(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))
'@softarc/sheriff-core':
specifier: ^0.15.1
- version: 0.15.1(typescript@5.8.3)
+ version: 0.15.1(typescript@5.9.3)
'@swc-node/register':
specifier: ~1.9.1
- version: 1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3)
+ version: 1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3)
'@swc/core':
specifier: ~1.5.7
version: 1.5.29(@swc/helpers@0.5.12)
@@ -142,23 +142,23 @@ importers:
specifier: 18.16.9
version: 18.16.9
angular-eslint:
- specifier: 20.1.1
- version: 20.1.1(chokidar@4.0.3)(eslint@9.17.0(jiti@1.21.6))(typescript-eslint@8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(typescript@5.8.3)
+ specifier: 21.0.1
+ version: 21.0.1(chokidar@4.0.3)(eslint@9.17.0(jiti@2.6.1))(typescript-eslint@8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(typescript@5.9.3)
autoprefixer:
specifier: ^10.4.19
version: 10.4.19(postcss@8.4.40)
eslint:
specifier: ^9.8.0
- version: 9.17.0(jiti@1.21.6)
+ version: 9.17.0(jiti@2.6.1)
eslint-config-prettier:
specifier: 10.1.5
- version: 10.1.5(eslint@9.17.0(jiti@1.21.6))
+ version: 10.1.5(eslint@9.17.0(jiti@2.6.1))
eslint-plugin-playwright:
specifier: ^1.6.2
- version: 1.8.3(eslint@9.17.0(jiti@1.21.6))
+ version: 1.8.3(eslint@9.17.0(jiti@2.6.1))
eslint-plugin-unused-imports:
specifier: ^4.1.4
- version: 4.1.4(@typescript-eslint/eslint-plugin@8.35.1(@typescript-eslint/parser@8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(eslint@9.17.0(jiti@1.21.6))
+ version: 4.1.4(@typescript-eslint/eslint-plugin@8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))
fake-indexeddb:
specifier: ^6.0.0
version: 6.0.0
@@ -167,13 +167,13 @@ importers:
version: 9.1.1
jest:
specifier: 30.0.5
- version: 30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3))
+ version: 30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3))
jest-environment-jsdom:
specifier: 30.0.5
version: 30.0.5
jest-preset-angular:
- specifier: 15.0.0
- version: 15.0.0(2565b57a7cb0a2a6f6c99a5eea26a54f)
+ specifier: 16.0.0
+ version: 16.0.0(62926576bf5cb47c7740961654bd6842)
jest-util:
specifier: 30.0.5
version: 30.0.5
@@ -184,11 +184,11 @@ importers:
specifier: ^15.3.0
version: 15.3.0
ng-packagr:
- specifier: 20.1.0
- version: 20.1.0(@angular/compiler-cli@20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3)
+ specifier: 21.0.1
+ version: 21.0.1(@angular/compiler-cli@21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3))(tslib@2.6.3)(typescript@5.9.3)
nx:
- specifier: 21.3.7
- version: 21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))
+ specifier: 22.3.1
+ version: 22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))
postcss:
specifier: ^8.4.39
version: 8.4.40
@@ -206,28 +206,28 @@ importers:
version: 3.6.2
prettier-plugin-organize-imports:
specifier: ^4.2.0
- version: 4.2.0(prettier@3.6.2)(typescript@5.8.3)
+ version: 4.2.0(prettier@3.6.2)(typescript@5.9.3)
ts-jest:
specifier: ^29.1.0
- version: 29.4.0(@babel/core@7.27.7)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.7))(esbuild@0.25.5)(jest-util@30.0.5)(jest@30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3)))(typescript@5.8.3)
+ version: 29.4.0(@babel/core@7.28.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.28.4))(esbuild@0.25.5)(jest-util@30.0.5)(jest@30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3)))(typescript@5.9.3)
ts-node:
specifier: 10.9.1
- version: 10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3)
+ version: 10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3)
typescript:
- specifier: 5.8.3
- version: 5.8.3
+ specifier: 5.9.3
+ version: 5.9.3
typescript-eslint:
- specifier: 8.35.1
- version: 8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
+ specifier: 8.40.0
+ version: 8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
docs:
dependencies:
'@docusaurus/core':
specifier: 3.7.0
- version: 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ version: 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
'@docusaurus/preset-classic':
specifier: 3.7.0
- version: 3.7.0(@algolia/client-search@5.32.0)(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/react@19.1.9)(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(search-insights@2.17.3)(typescript@5.6.3)
+ version: 3.7.0(@algolia/client-search@5.40.1)(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/react@19.1.9)(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(search-insights@2.17.3)(typescript@5.6.3)
'@mdx-js/react':
specifier: ^3.0.0
version: 3.1.0(@types/react@19.1.9)(react@19.1.1)
@@ -255,13 +255,13 @@ importers:
devDependencies:
'@docusaurus/module-type-aliases':
specifier: 3.7.0
- version: 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ version: 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
'@docusaurus/tsconfig':
specifier: 3.7.0
version: 3.7.0
'@docusaurus/types':
specifier: 3.7.0
- version: 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ version: 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
typescript:
specifier: ~5.6.2
version: 5.6.3
@@ -271,6 +271,10 @@ packages:
'@adobe/css-tools@4.3.3':
resolution: {integrity: sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==}
+ '@algolia/abtesting@1.6.1':
+ resolution: {integrity: sha512-wV/gNRkzb7sI9vs1OneG129hwe3Q5zPj7zigz3Ps7M5Lpo2hSorrOnXNodHEOV+yXE/ks4Pd+G3CDFIjFTWhMQ==}
+ engines: {node: '>= 14.0.0'}
+
'@algolia/autocomplete-core@1.17.9':
resolution: {integrity: sha512-O7BxrpLDPJWWHv/DLA9DRFWs+iY1uOJZkqUwjS5HSZAGcl0hIVCQ97LTLewiZmZ402JYUrun+8NqFP+hCknlbQ==}
@@ -295,30 +299,58 @@ packages:
resolution: {integrity: sha512-HG/6Eib6DnJYm/B2ijWFXr4txca/YOuA4K7AsEU0JBrOZSB+RU7oeDyNBPi3c0v0UDDqlkBqM3vBU/auwZlglA==}
engines: {node: '>= 14.0.0'}
+ '@algolia/client-abtesting@5.40.1':
+ resolution: {integrity: sha512-cxKNATPY5t+Mv8XAVTI57altkaPH+DZi4uMrnexPxPHODMljhGYY+GDZyHwv9a+8CbZHcY372OkxXrDMZA4Lnw==}
+ engines: {node: '>= 14.0.0'}
+
'@algolia/client-analytics@5.32.0':
resolution: {integrity: sha512-8Y9MLU72WFQOW3HArYv16+Wvm6eGmsqbxxM1qxtm0hvSASJbxCm+zQAZe5stqysTlcWo4BJ82KEH1PfgHbJAmQ==}
engines: {node: '>= 14.0.0'}
+ '@algolia/client-analytics@5.40.1':
+ resolution: {integrity: sha512-XP008aMffJCRGAY8/70t+hyEyvqqV7YKm502VPu0+Ji30oefrTn2al7LXkITz7CK6I4eYXWRhN6NaIUi65F1OA==}
+ engines: {node: '>= 14.0.0'}
+
'@algolia/client-common@5.32.0':
resolution: {integrity: sha512-w8L+rgyXMCPBKmEdOT+RfgMrF0mT6HK60vPYWLz8DBs/P7yFdGo7urn99XCJvVLMSKXrIbZ2FMZ/i50nZTXnuQ==}
engines: {node: '>= 14.0.0'}
+ '@algolia/client-common@5.40.1':
+ resolution: {integrity: sha512-gWfQuQUBtzUboJv/apVGZMoxSaB0M4Imwl1c9Ap+HpCW7V0KhjBddqF2QQt5tJZCOFsfNIgBbZDGsEPaeKUosw==}
+ engines: {node: '>= 14.0.0'}
+
'@algolia/client-insights@5.32.0':
resolution: {integrity: sha512-AdWfynhUeX7jz/LTiFU3wwzJembTbdLkQIOLs4n7PyBuxZ3jz4azV1CWbIP8AjUOFmul6uXbmYza+KqyS5CzOA==}
engines: {node: '>= 14.0.0'}
+ '@algolia/client-insights@5.40.1':
+ resolution: {integrity: sha512-RTLjST/t+lsLMouQ4zeLJq2Ss+UNkLGyNVu+yWHanx6kQ3LT5jv8UvPwyht9s7R6jCPnlSI77WnL80J32ZuyJg==}
+ engines: {node: '>= 14.0.0'}
+
'@algolia/client-personalization@5.32.0':
resolution: {integrity: sha512-bTupJY4xzGZYI4cEQcPlSjjIEzMvv80h7zXGrXY1Y0KC/n/SLiMv84v7Uy+B6AG1Kiy9FQm2ADChBLo1uEhGtQ==}
engines: {node: '>= 14.0.0'}
+ '@algolia/client-personalization@5.40.1':
+ resolution: {integrity: sha512-2FEK6bUomBzEYkTKzD0iRs7Ljtjb45rKK/VSkyHqeJnG+77qx557IeSO0qVFE3SfzapNcoytTofnZum0BQ6r3Q==}
+ engines: {node: '>= 14.0.0'}
+
'@algolia/client-query-suggestions@5.32.0':
resolution: {integrity: sha512-if+YTJw1G3nDKL2omSBjQltCHUQzbaHADkcPQrGFnIGhVyHU3Dzq4g46uEv8mrL5sxL8FjiS9LvekeUlL2NRqw==}
engines: {node: '>= 14.0.0'}
+ '@algolia/client-query-suggestions@5.40.1':
+ resolution: {integrity: sha512-Nju4NtxAvXjrV2hHZNLKVJLXjOlW6jAXHef/CwNzk1b2qIrCWDO589ELi5ZHH1uiWYoYyBXDQTtHmhaOVVoyXg==}
+ engines: {node: '>= 14.0.0'}
+
'@algolia/client-search@5.32.0':
resolution: {integrity: sha512-kmK5nVkKb4DSUgwbveMKe4X3xHdMsPsOVJeEzBvFJ+oS7CkBPmpfHAEq+CcmiPJs20YMv6yVtUT9yPWL5WgAhg==}
engines: {node: '>= 14.0.0'}
+ '@algolia/client-search@5.40.1':
+ resolution: {integrity: sha512-Mw6pAUF121MfngQtcUb5quZVqMC68pSYYjCRZkSITC085S3zdk+h/g7i6FxnVdbSU6OztxikSDMh1r7Z+4iPlA==}
+ engines: {node: '>= 14.0.0'}
+
'@algolia/events@4.0.1':
resolution: {integrity: sha512-FQzvOCgoFXAbf5Y6mYozw2aj5KCJoA3m4heImceldzPSMbdyS4atVjJzXKMsfX3wnZTFYwkkt8/z8UesLHlSBQ==}
@@ -326,58 +358,78 @@ packages:
resolution: {integrity: sha512-PZTqjJbx+fmPuT2ud1n4vYDSF1yrT//vOGI9HNYKNA0PM0xGUBWigf5gRivHsXa3oBnUlTyHV9j7Kqx5BHbVHQ==}
engines: {node: '>= 14.0.0'}
+ '@algolia/ingestion@1.40.1':
+ resolution: {integrity: sha512-z+BPlhs45VURKJIxsR99NNBWpUEEqIgwt10v/fATlNxc4UlXvALdOsWzaFfe89/lbP5Bu4+mbO59nqBC87ZM/g==}
+ engines: {node: '>= 14.0.0'}
+
'@algolia/monitoring@1.32.0':
resolution: {integrity: sha512-kYYoOGjvNQAmHDS1v5sBj+0uEL9RzYqH/TAdq8wmcV+/22weKt/fjh+6LfiqkS1SCZFYYrwGnirrUhUM36lBIQ==}
engines: {node: '>= 14.0.0'}
+ '@algolia/monitoring@1.40.1':
+ resolution: {integrity: sha512-VJMUMbO0wD8Rd2VVV/nlFtLJsOAQvjnVNGkMkspFiFhpBA7s/xJOb+fJvvqwKFUjbKTUA7DjiSi1ljSMYBasXg==}
+ engines: {node: '>= 14.0.0'}
+
'@algolia/recommend@5.32.0':
resolution: {integrity: sha512-jyIBLdskjPAL7T1g57UMfUNx+PzvYbxKslwRUKBrBA6sNEsYCFdxJAtZSLUMmw6MC98RDt4ksmEl5zVMT5bsuw==}
engines: {node: '>= 14.0.0'}
+ '@algolia/recommend@5.40.1':
+ resolution: {integrity: sha512-ehvJLadKVwTp9Scg9NfzVSlBKH34KoWOQNTaN8i1Ac64AnO6iH2apJVSP6GOxssaghZ/s8mFQsDH3QIZoluFHA==}
+ engines: {node: '>= 14.0.0'}
+
'@algolia/requester-browser-xhr@5.32.0':
resolution: {integrity: sha512-eDp14z92Gt6JlFgiexImcWWH+Lk07s/FtxcoDaGrE4UVBgpwqOO6AfQM6dXh1pvHxlDFbMJihHc/vj3gBhPjqQ==}
engines: {node: '>= 14.0.0'}
+ '@algolia/requester-browser-xhr@5.40.1':
+ resolution: {integrity: sha512-PbidVsPurUSQIr6X9/7s34mgOMdJnn0i6p+N6Ab+lsNhY5eiu+S33kZEpZwkITYBCIbhzDLOvb7xZD3gDi+USA==}
+ engines: {node: '>= 14.0.0'}
+
'@algolia/requester-fetch@5.32.0':
resolution: {integrity: sha512-rnWVglh/K75hnaLbwSc2t7gCkbq1ldbPgeIKDUiEJxZ4mlguFgcltWjzpDQ/t1LQgxk9HdIFcQfM17Hid3aQ6Q==}
engines: {node: '>= 14.0.0'}
+ '@algolia/requester-fetch@5.40.1':
+ resolution: {integrity: sha512-ThZ5j6uOZCF11fMw9IBkhigjOYdXGXQpj6h4k+T9UkZrF2RlKcPynFzDeRgaLdpYk8Yn3/MnFbwUmib7yxj5Lw==}
+ engines: {node: '>= 14.0.0'}
+
'@algolia/requester-node-http@5.32.0':
resolution: {integrity: sha512-LbzQ04+VLkzXY4LuOzgyjqEv/46Gwrk55PldaglMJ4i4eDXSRXGKkwJpXFwsoU+c1HMQlHIyjJBhrfsfdyRmyQ==}
engines: {node: '>= 14.0.0'}
+ '@algolia/requester-node-http@5.40.1':
+ resolution: {integrity: sha512-H1gYPojO6krWHnUXu/T44DrEun/Wl95PJzMXRcM/szstNQczSbwq6wIFJPI9nyE95tarZfUNU3rgorT+wZ6iCQ==}
+ engines: {node: '>= 14.0.0'}
+
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@angular-devkit/architect@0.2001.3':
- resolution: {integrity: sha512-jcPpm0AKYmQD8UnQ5Sz2iEKRjzWq90kkKMLia9CCqW6u48aLqdPrWkCUUwNhtr6fbejyBKNbsy6pUn6P4f8ExQ==}
+ '@angular-devkit/architect@0.2100.3':
+ resolution: {integrity: sha512-PcruWF0+IxXOTZd9MN/3y4A5aTfblALzT/+zWym26PtisaBgWQ3tRPQsf/CgT8EdmZl8eUOAWlNBSkbUj/S/lQ==}
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/architect@0.2001.4':
- resolution: {integrity: sha512-lZ9wYv1YDcw2Ggi2/TXXhYs7JAukAJHdZGZn6Co5s1QE774bVled1qK8pf46rSsG1BGn1a9VFsRFOlB/sx6WjA==}
- 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@20.1.3':
- resolution: {integrity: sha512-Fa5RRUsGeqmFv3lwibVruCEXyzVkHyjUQbzR0jceVrzWgSgL929IG6xC1JSv6m7xJmaALNxTM+6zGAZf9X/JLw==}
+ '@angular-devkit/build-angular@21.0.3':
+ resolution: {integrity: sha512-KcaI9sDvY6rVsVvILSNBIzJaE5+KcapULShMInD90px9X0QoajXgm8l63FiQOBCNkZt+todMM0h3+u6y7UPsYQ==}
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': ^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.1.3
+ '@angular/compiler-cli': ^21.0.0
+ '@angular/core': ^21.0.0
+ '@angular/localize': ^21.0.0
+ '@angular/platform-browser': ^21.0.0
+ '@angular/platform-server': ^21.0.0
+ '@angular/service-worker': ^21.0.0
+ '@angular/ssr': ^21.0.3
'@web/test-runner': ^0.20.0
browser-sync: ^3.0.2
- jest: ^29.5.0
- jest-environment-jsdom: ^29.5.0
+ jest: ^30.2.0
+ jest-environment-jsdom: ^30.2.0
karma: ^6.3.0
- ng-packagr: ^20.0.0
+ ng-packagr: ^21.0.0
protractor: ^7.0.0
tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0
- typescript: '>=5.8 <5.9'
+ typescript: '>=5.9 <6.0'
peerDependenciesMeta:
'@angular/core':
optional: true
@@ -408,24 +460,15 @@ packages:
tailwindcss:
optional: true
- '@angular-devkit/build-webpack@0.2001.3':
- resolution: {integrity: sha512-65WFWui+VSlJ+cxdkvVCqQGM2Sj+d8Dn6yrlNxqSwuFJWDg1e6Tcoz2VGWCx5ZoC62PFFruoDvpjPXiukhcB2w==}
+ '@angular-devkit/build-webpack@0.2100.3':
+ resolution: {integrity: sha512-q76y3iwua3eL3pF3zlKRvDYgnICVWexyReQWIEcCHb4Q4K5hDeJCAO1eLX9no+xmTzbavCADmqcJ6hOkyRjw6g==}
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@20.1.3':
- resolution: {integrity: sha512-23neiDOsq9cprozgBbnWo2nRTE4xYMjcAN59QcS4yYPccDkxbr3AazFHhlTSZWLp63hhTlT+B2AA47W7cUqhUQ==}
- 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/core@20.1.4':
- resolution: {integrity: sha512-I5CllQoDrVL20/+0JZk/gmR14n/+mwYIoD1RfBDwnaiHlO9o2whRsJj+LeUd9IA5Hf9MPPx+EkOVQt3vsYU0sQ==}
+ '@angular-devkit/core@21.0.3':
+ resolution: {integrity: sha512-X1y3GMYru9+Vt7vz+R8SFAEmDtgf0aZ+1JOpiE7ubHsQOnhA++Pb94HBjQ6CHqlUhQli/XPOBksKNdZkpup8rQ==}
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
@@ -433,82 +476,77 @@ packages:
chokidar:
optional: true
- '@angular-devkit/schematics@20.1.3':
- resolution: {integrity: sha512-VPwCeKsJE6FEwjIWoUL221Iqh/0Lbml/c+xjISIMXf58qinFlQj1k/5LNLlVrn56QLSHUpxoXIsVek/ME3x6/A==}
- 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/schematics@20.1.4':
- resolution: {integrity: sha512-dyvlQcXf5XKPRC1qTqzIGkltFHh8mYujPk6qt6Ah2nKp7UeA80ZSAocwOmlBg8t7GjN8ICe4Kese5scT1ByFXQ==}
+ '@angular-devkit/schematics@21.0.3':
+ resolution: {integrity: sha512-E/Nja+RIyMzjqLXREOnTRwv7GMrycpAD7kGwDg7l8cWrNQ7phqBZcXAt74Jv9K9aYsOC8tw2Ms9t59aQ6iow8w==}
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-eslint/builder@20.1.1':
- resolution: {integrity: sha512-pfCYfocX79CZ5nokZF4gVScUGyLWRKQHZsUkQ5V/1hsaGsahvzDRjxsYz0J9rO0ligSa2pwgUCXEwSY8hhHQBw==}
+ '@angular-eslint/builder@21.0.1':
+ resolution: {integrity: sha512-6BqpmW0XvjTOs2YOHwzeZcQ32eL8vs8SCHjt1cQnq1+libOVDXky1eb/jRs7ouyA49UagLDoM34K1kjrYo8P3Q==}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '*'
- '@angular-eslint/bundled-angular-compiler@20.1.1':
- resolution: {integrity: sha512-hEWh/upyTj2bhyRmbNnGtlOXhBSEHwLg8/9YYhwmiNApQwKcvcg7lkstZMEVrKievNHZT6Wh4dWZvjRjMqLNSg==}
+ '@angular-eslint/bundled-angular-compiler@21.0.1':
+ resolution: {integrity: sha512-Kb59SopkJ2sDgZSysL+ZqcfqM2cbK+gciAyHljkrCUsqo66eEq5KCZUU//RVoo4MHi+qL/dFy54JG/+A/35xcQ==}
- '@angular-eslint/eslint-plugin-template@20.1.1':
- resolution: {integrity: sha512-dRqfxYvgOC4DZqvRTmxoIUMeIqTzcIkRcMVEuP8qvR10KHAWDkV7xT4f7BAee9deI/lzoAk3tk5wkQg6POQo7Q==}
+ '@angular-eslint/eslint-plugin-template@21.0.1':
+ resolution: {integrity: sha512-DF1WEMalbV1hNKxbu3nwK1yUa+E2FQpNz0KDORU65/vdCffeuftCetobrsAS7zDgJ6FO+Fsb+ZeCzNKEhhh1vA==}
peerDependencies:
- '@angular-eslint/template-parser': 20.1.1
+ '@angular-eslint/template-parser': 21.0.1
'@typescript-eslint/types': ^7.11.0 || ^8.0.0
'@typescript-eslint/utils': ^7.11.0 || ^8.0.0
eslint: ^8.57.0 || ^9.0.0
typescript: '*'
- '@angular-eslint/eslint-plugin@20.1.1':
- resolution: {integrity: sha512-h+D6T35UGIuG0keYPH7dc6OTdfTVJ8GoIhCIpoAmVGhdIdfXIISvDvvX/QPiZtTcefik3vEZEGRiI/Nzc5xImw==}
+ '@angular-eslint/eslint-plugin@21.0.1':
+ resolution: {integrity: sha512-tSb5qgIwoMrX3Z17dSsHrNFWrgBWafxK7IQudU0RXxdzq6joq1qDrzHwLT3Jn+Y6ocn0jdavAefEGHAhomCjcQ==}
peerDependencies:
'@typescript-eslint/utils': ^7.11.0 || ^8.0.0
eslint: ^8.57.0 || ^9.0.0
typescript: '*'
- '@angular-eslint/schematics@20.1.1':
- resolution: {integrity: sha512-4sXU0Gr/RhdW3xSBFRzjhTO9mk6ugXUhUIPc1FRta1pmNnbmkvx22ewnKZE8IeRl8PMyk6xJuxZHq19CW1oWOA==}
+ '@angular-eslint/schematics@21.0.1':
+ resolution: {integrity: sha512-IdtGdRPuJctHuiZ8v8SN3MqWiUa3cD9Q5jFvIRkAkjpHXXmTk5PYelSjUP8UX/zfUfFkxHXghasTmJd2+252OQ==}
- '@angular-eslint/template-parser@20.1.1':
- resolution: {integrity: sha512-giIMYORf8P8MbBxh6EUfiR/7Y+omxJtK2C7a8lYTtLSOIGO0D8c8hXx9hTlPcdupVX+xZXDuZ85c9JDen+JSSA==}
+ '@angular-eslint/template-parser@21.0.1':
+ resolution: {integrity: sha512-1KocmjmBP0qlKQGRhRGN0MGvLxf1q2KDWbvzn7ZGdQrIDLC/hFJ8YmnOWsPrM9RxiZi0o5BxCCu9D7KlbthxIg==}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '*'
- '@angular-eslint/utils@20.1.1':
- resolution: {integrity: sha512-hqbzGqa/0Ua90r4TMn4oZVnLuwIF6dqEfH7SlstB224h/7+nKoi67aHkmUq7VItWXpDDe+f1opeR01GKS9fNog==}
+ '@angular-eslint/utils@21.0.1':
+ resolution: {integrity: sha512-tovWIDiEsfSAsPWH+/wL9Hfl/Hc+2j2IP+Z85I6uWTbynLVdyURx8gmJjKBUTSCmcyrgBnTbnnlr4DTM6/aFOg==}
peerDependencies:
'@typescript-eslint/utils': ^7.11.0 || ^8.0.0
eslint: ^8.57.0 || ^9.0.0
typescript: '*'
- '@angular/animations@20.1.3':
- resolution: {integrity: sha512-3mkWhcHw2CbfvvjfJYMWjXbTtNHAtZDiVuaqQX4r9i0rPbQ7DqoM1zSgC6XWainWqxnfCHZIZFoI6PKEBVKSrg==}
+ '@angular/animations@21.0.6':
+ resolution: {integrity: sha512-dSxhkh/ZlljdglZ0rriSy7GdC1Y3rGaagkx6oAzF5XqAoBbFmiVFEBZPxssSeQ+O0izmAw3GwsUnz3E/1JYsbA==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
- '@angular/common': 20.1.3
- '@angular/core': 20.1.3
+ '@angular/core': 21.0.6
- '@angular/build@20.1.3':
- resolution: {integrity: sha512-sH0G3CUjJryGIM70mKIx28S5rJO2XPoyGClKuS5RE+LW+dZQMGeE2mX0A4Vll2mBESXuPnAURvmCdRyvlRkOeQ==}
+ '@angular/build@21.0.3':
+ resolution: {integrity: sha512-3h2s0Igruei1RB/Hmu7nwbKvjJQ2ykNaiicXYuS2muWUBhDg+lm0QsGTGXrQV2BD0M9YdHU4Byh9upiZgMYpjA==}
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': ^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.1.3
+ '@angular/compiler': ^21.0.0
+ '@angular/compiler-cli': ^21.0.0
+ '@angular/core': ^21.0.0
+ '@angular/localize': ^21.0.0
+ '@angular/platform-browser': ^21.0.0
+ '@angular/platform-server': ^21.0.0
+ '@angular/service-worker': ^21.0.0
+ '@angular/ssr': ^21.0.3
karma: ^6.4.0
less: ^4.2.0
- ng-packagr: ^20.0.0
+ ng-packagr: ^21.0.0
postcss: ^8.4.0
tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0
tslib: ^2.3.0
- typescript: '>=5.8 <5.9'
- vitest: ^3.1.1
+ typescript: '>=5.9 <6.0'
+ vitest: ^4.0.8
peerDependenciesMeta:
'@angular/core':
optional: true
@@ -535,112 +573,108 @@ packages:
vitest:
optional: true
- '@angular/cdk@20.1.3':
- resolution: {integrity: sha512-TO/OBOPWIDJe+0g4S+ye6hewnWOhgWGa4iygvAlmQ77nyqhioHT60puyaDZRATxKh9k6KVmg9cPAk1lYbOFvaA==}
+ '@angular/cdk@21.0.3':
+ resolution: {integrity: sha512-abfckeZfFvovdpxuQHRE4gS1VLNa05Dx0ZSKLGVL9DsQsi4pgn6wWg1y9TkXMlmtpG/EhLmCBxUc6LOHfdeWQA==}
peerDependencies:
- '@angular/common': ^20.0.0 || ^21.0.0
- '@angular/core': ^20.0.0 || ^21.0.0
+ '@angular/common': ^21.0.0 || ^22.0.0
+ '@angular/core': ^21.0.0 || ^22.0.0
rxjs: ^6.5.3 || ^7.4.0
- '@angular/cli@20.1.4':
- resolution: {integrity: sha512-VAQ/EBelBPiX1vV57TZJRPcao/e+Ee9IeLK43fsE2xL+GuEjrJ/fQXqt7OesrgIJHJBwUiX+j8pMMT6VfT1xSA==}
+ '@angular/cli@21.0.3':
+ resolution: {integrity: sha512-3lMR3J231JhLgAt37yEULSHFte3zPeta9VYpIIf92JiBsTnWrvKnaK8RXhfdiSQrvhqQ9FMQdl5AG62r1c4dbA==}
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@20.1.3':
- resolution: {integrity: sha512-h2eQfbx6kYw69xpEHtwZ3XbtWinGa6f8sXj7k9di1/xVAxqtbf+9OcBhYYY++oR1QqDeRghNYNblNNt0H9zKzQ==}
+ '@angular/common@21.0.6':
+ resolution: {integrity: sha512-Yd8PF0dR37FAzqEcBHAyVCiSGMJOezSJe6rV/4BC6AVLfaZ7oZLl8CNVxKsod2UHd6rKxt1hzx05QdVcVvYNeA==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
- '@angular/core': 20.1.3
+ '@angular/core': 21.0.6
rxjs: ^6.5.3 || ^7.4.0
- '@angular/compiler-cli@20.1.3':
- resolution: {integrity: sha512-NT7+vtwABtvVj2NLL7KvRzSsa5hgro23AvkAvg6A5sdfWzYDRXovI0YILlTIx1oEA8rupTPu/39gStW5k8XZqg==}
+ '@angular/compiler-cli@21.0.6':
+ resolution: {integrity: sha512-UcIUx+fbn0VLlCBCIYxntAzWG3zPRUo0K7wvuK0MC6ZFCWawgewx9SdLLZTqcaWe1g5FRQlQeVQcFgHAO5R2Mw==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
hasBin: true
peerDependencies:
- '@angular/compiler': 20.1.3
- typescript: '>=5.8 <5.9'
+ '@angular/compiler': 21.0.6
+ typescript: '>=5.9 <6.0'
peerDependenciesMeta:
typescript:
optional: true
- '@angular/compiler@20.1.3':
- resolution: {integrity: sha512-NGMFLymImIdvjLSoH+pasgtJxKynDHX9COBU6T5LP7qi5kf6eR829Zrf7650R3K+uERqwz5PTLg8Kwa4aY7I9w==}
+ '@angular/compiler@21.0.6':
+ resolution: {integrity: sha512-rBMzG7WnQMouFfDST+daNSAOVYdtw560645PhlxyVeIeHMlCm0j1jjBgVPGTBNpVgKRdT/sqbi6W6JYkY9mERA==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
- '@angular/core@20.1.3':
- resolution: {integrity: sha512-haQypZGbKKsClDbR0I4eK+PmKGaZ8b/9QDwNYzInaEqHrTX/rkFXu0L0ejTTznElutQuMM6OPh6aVfnJ9nRr2g==}
+ '@angular/core@21.0.6':
+ resolution: {integrity: sha512-SvWbOkkrsqprYJSBmzQEWkWjfZB/jkRYyFp2ClMJBPqOLxP1a+i3Om2rolcNQjZPz87bs9FszwgRlXUy7sw5cQ==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
- '@angular/compiler': 20.1.3
+ '@angular/compiler': 21.0.6
rxjs: ^6.5.3 || ^7.4.0
- zone.js: ~0.15.0
+ zone.js: ~0.15.0 || ~0.16.0
peerDependenciesMeta:
'@angular/compiler':
optional: true
zone.js:
optional: true
- '@angular/forms@20.1.3':
- resolution: {integrity: sha512-q2Lbz65mqk/Xmp3qvFSZyUJRKeah3jtfSRxJlHC63utG5WdGl7gN7xRy2dydarRKToWyXqMsjoSlh1YIrUIAng==}
+ '@angular/forms@21.0.6':
+ resolution: {integrity: sha512-aAkAAKuUrP8U7R4aH/HbmG/CXP90GlML77ECBI5b4qCSb+bvaTEYsaf85mCyTpr9jvGkia2LTe42hPcOuyzdsQ==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
- '@angular/common': 20.1.3
- '@angular/core': 20.1.3
- '@angular/platform-browser': 20.1.3
+ '@angular/common': 21.0.6
+ '@angular/core': 21.0.6
+ '@angular/platform-browser': 21.0.6
rxjs: ^6.5.3 || ^7.4.0
- '@angular/language-service@20.1.3':
- resolution: {integrity: sha512-CAiA1pIHYip7hemPRvL4MGuE40M8nJ72ZB6mhVL83+a/IFJW0e58E0CXv4Y5B/vmslnvxX9xEUfH+8PplFKSuw==}
+ '@angular/language-service@21.0.6':
+ resolution: {integrity: sha512-hxquRSxUW2FBeXHChCq5lOwo5jjJoOs7OdZmtBJtcNE93+6HUANRXLhcqG8kKkvwvGg7QUQf7+R9h3TCJYiz1A==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
- '@angular/material@20.1.3':
- resolution: {integrity: sha512-W6/XJ2mih70b+PJUEAbI3mC415/SNY06nMBKcjWjRSth0jHe5/ujqIj0WkygkpDz34HEa11vV/0BgSpdS2FT5g==}
+ '@angular/material@21.0.3':
+ resolution: {integrity: sha512-Sjv88NbW8R5UTBqoVa8q4p55VP7KPEmXFTJiQYCz1oK7JqbLcQnH27rjetQBAWMEb1O/z1jqpMnpnYUuHNp1IA==}
peerDependencies:
- '@angular/cdk': 20.1.3
- '@angular/common': ^20.0.0 || ^21.0.0
- '@angular/core': ^20.0.0 || ^21.0.0
- '@angular/forms': ^20.0.0 || ^21.0.0
- '@angular/platform-browser': ^20.0.0 || ^21.0.0
+ '@angular/cdk': 21.0.3
+ '@angular/common': ^21.0.0 || ^22.0.0
+ '@angular/core': ^21.0.0 || ^22.0.0
+ '@angular/forms': ^21.0.0 || ^22.0.0
+ '@angular/platform-browser': ^21.0.0 || ^22.0.0
rxjs: ^6.5.3 || ^7.4.0
- '@angular/platform-browser-dynamic@20.1.3':
- resolution: {integrity: sha512-y8m+HNHTYfgyQ/Mtku6+NOvlrD54oaj5cTnr382MVc692r+FuBkI9jMI1oZCqNTdv9cFK6Opj5Ie6A7ZxAfGVA==}
+ '@angular/platform-browser-dynamic@21.0.6':
+ resolution: {integrity: sha512-7mvlvEx66C1cwbAbaeTnbfw1EeZwK5eRCT55pGW+Fsx+vg/8TVF/6NPEbYO65earwIp9Xqt9mGGtq+fPopsbSA==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
- '@angular/common': 20.1.3
- '@angular/compiler': 20.1.3
- '@angular/core': 20.1.3
- '@angular/platform-browser': 20.1.3
+ '@angular/common': 21.0.6
+ '@angular/compiler': 21.0.6
+ '@angular/core': 21.0.6
+ '@angular/platform-browser': 21.0.6
- '@angular/platform-browser@20.1.3':
- resolution: {integrity: sha512-58iwj2LXdvwr4DG5tAiA2vj9bm/fhBWaR5JWvn3fJEAdW8fnT2gpjpfdBJTMcqg7Qfpx0ZhFsRxH2EUGEV6mvw==}
+ '@angular/platform-browser@21.0.6':
+ resolution: {integrity: sha512-tPk8rlUEBPXIUPRYq6Xu7QhJgKtnVr0dOHHuhyi70biKTupr5VikpZC5X9dy2Q3H3zYbK6MHC6384YMuwfU2kg==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
- '@angular/animations': 20.1.3
- '@angular/common': 20.1.3
- '@angular/core': 20.1.3
+ '@angular/animations': 21.0.6
+ '@angular/common': 21.0.6
+ '@angular/core': 21.0.6
peerDependenciesMeta:
'@angular/animations':
optional: true
- '@angular/router@20.1.3':
- resolution: {integrity: sha512-ELJyzFJ2JeJkuVpv3kte4AwGBd/zuB5H/wv4+9gcmf6exxO5xH2/PbbLDGs+rWwHkCUcoRHFVyUPqk9yuRq/XA==}
+ '@angular/router@21.0.6':
+ resolution: {integrity: sha512-HOfomKq7jRSgxt/uUvpdbB8RNaYuGB/FJQ3BfQCFfGw1O9L3B72b7Hilk6AcjCruul6cfv/kmT4EB6Vqi3dQtA==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
peerDependencies:
- '@angular/common': 20.1.3
- '@angular/core': 20.1.3
- '@angular/platform-browser': 20.1.3
+ '@angular/common': 21.0.6
+ '@angular/core': 21.0.6
+ '@angular/platform-browser': 21.0.6
rxjs: ^6.5.3 || ^7.4.0
'@asamuzakjp/css-color@3.2.0':
resolution: {integrity: sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==}
- '@babel/code-frame@7.24.7':
- resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
- engines: {node: '>=6.9.0'}
-
'@babel/code-frame@7.27.1':
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
engines: {node: '>=6.9.0'}
@@ -649,22 +683,26 @@ packages:
resolution: {integrity: sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.27.7':
- resolution: {integrity: sha512-BU2f9tlKQ5CAthiMIgpzAh4eDTLWo1mqi9jqE2OxMG0E/OM199VJt2q8BztTxpnSW0i1ymdwLXRJnYzvDM5r2w==}
- engines: {node: '>=6.9.0'}
-
'@babel/core@7.28.0':
resolution: {integrity: sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.27.5':
- resolution: {integrity: sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==}
+ '@babel/core@7.28.4':
+ resolution: {integrity: sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.28.0':
resolution: {integrity: sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==}
engines: {node: '>=6.9.0'}
+ '@babel/generator@7.28.3':
+ resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==}
+ engines: {node: '>=6.9.0'}
+
+ '@babel/generator@7.28.5':
+ resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-annotate-as-pure@7.27.3':
resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
engines: {node: '>=6.9.0'}
@@ -679,6 +717,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-create-class-features-plugin@7.28.5':
+ resolution: {integrity: sha512-q3WC4JfdODypvxArsJQROfupPBq9+lMwjKq7C33GhbFYJsufD0yd/ziwD+hJucLeWsnFPWZjsU2DNFqBPE7jwQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-create-regexp-features-plugin@7.27.1':
resolution: {integrity: sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==}
engines: {node: '>=6.9.0'}
@@ -698,6 +742,10 @@ packages:
resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-member-expression-to-functions@7.28.5':
+ resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-module-imports@7.27.1':
resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
engines: {node: '>=6.9.0'}
@@ -708,6 +756,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.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-optimise-call-expression@7.27.1':
resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
engines: {node: '>=6.9.0'}
@@ -744,6 +798,10 @@ packages:
resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-identifier@7.28.5':
+ resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-validator-option@7.27.1':
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
engines: {node: '>=6.9.0'}
@@ -756,8 +814,8 @@ packages:
resolution: {integrity: sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==}
engines: {node: '>=6.9.0'}
- '@babel/highlight@7.24.7':
- resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
+ '@babel/helpers@7.28.4':
+ resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.28.0':
@@ -765,6 +823,11 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
+ '@babel/parser@7.28.5':
+ resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==}
+ engines: {node: '>=6.0.0'}
+ hasBin: true
+
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1':
resolution: {integrity: sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==}
engines: {node: '>=6.9.0'}
@@ -795,6 +858,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3':
+ resolution: {integrity: sha512-b6YTX108evsvE4YgWyQ921ZAFFQm3Bn+CA3+ZXlNVnPhx+UfsVURoPjfGAPCjBgrqo30yX/C2nZGX96DxvR9Iw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/plugin-proposal-decorators@7.24.7':
resolution: {integrity: sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==}
engines: {node: '>=6.9.0'}
@@ -861,12 +930,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.24.7':
- resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-jsx@7.27.1':
resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==}
engines: {node: '>=6.9.0'}
@@ -915,12 +978,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.24.7':
- resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-typescript@7.27.1':
resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==}
engines: {node: '>=6.9.0'}
@@ -945,6 +1002,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-async-generator-functions@7.28.0':
+ resolution: {integrity: sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-async-to-generator@7.27.1':
resolution: {integrity: sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==}
engines: {node: '>=6.9.0'}
@@ -975,12 +1038,24 @@ packages:
peerDependencies:
'@babel/core': ^7.12.0
+ '@babel/plugin-transform-class-static-block@7.28.3':
+ resolution: {integrity: sha512-LtPXlBbRoc4Njl/oh1CeD/3jC+atytbnf/UqLoqTDcEYGUPj022+rvfkbDYieUrSj3CaV4yHDByPE+T2HwfsJg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.12.0
+
'@babel/plugin-transform-classes@7.28.0':
resolution: {integrity: sha512-IjM1IoJNw72AZFlj33Cu8X0q2XK/6AaVC3jQu+cgQ5lThWD5ajnuUAml80dqRmOhmPkTH8uAwnpMu9Rvj0LTRA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-classes@7.28.4':
+ resolution: {integrity: sha512-cFOlhIYPBv/iBoc+KS3M6et2XPtbT2HiCRfBXWtfpc9OAyostldxIf9YAYB6ypURBBbx+Qv6nyrLzASfJe+hBA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-computed-properties@7.27.1':
resolution: {integrity: sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==}
engines: {node: '>=6.9.0'}
@@ -1017,6 +1092,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-explicit-resource-management@7.28.0':
+ resolution: {integrity: sha512-K8nhUcn3f6iB+P3gwCv/no7OdzOZQcKchW6N389V6PD8NUWKZHzndOd9sPDVbMoBsbmjMqlB4L9fm+fEFNVlwQ==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-exponentiation-operator@7.27.1':
resolution: {integrity: sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==}
engines: {node: '>=6.9.0'}
@@ -1197,6 +1278,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-regenerator@7.28.4':
+ resolution: {integrity: sha512-+ZEdQlBoRg9m2NnzvEeLgtvBMO4tkFBw5SQIUgLICgTrumLoU7lr+Oghi6km2PFj+dbUt2u1oby2w3BDO9YQnA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-regexp-modifiers@7.27.1':
resolution: {integrity: sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==}
engines: {node: '>=6.9.0'}
@@ -1209,14 +1296,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-runtime@7.27.1':
- resolution: {integrity: sha512-TqGF3desVsTcp3WrJGj4HfKokfCXCLcHpt4PJF0D8/iT6LPd9RS82Upw3KPeyr6B22Lfd3DO8MVrmp0oRkUDdw==}
+ '@babel/plugin-transform-runtime@7.27.4':
+ resolution: {integrity: sha512-D68nR5zxU64EUzV8i7T3R5XP0Xhrou/amNnddsRQssx6GrTLdZl1rLxyjtVZBd+v/NVX4AbTPOB5aU8thAZV1A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-runtime@7.27.4':
- resolution: {integrity: sha512-D68nR5zxU64EUzV8i7T3R5XP0Xhrou/amNnddsRQssx6GrTLdZl1rLxyjtVZBd+v/NVX4AbTPOB5aU8thAZV1A==}
+ '@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
@@ -1251,12 +1338,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.24.8':
- resolution: {integrity: sha512-CgFgtN61BbdOGCP4fLaAMOPkzWUh6yQZNMr5YSt8uz2cZSSiQONCQFWqsE4NeVfOIhqDOlS9CR3WD91FzMeB2Q==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-typescript@7.28.0':
resolution: {integrity: sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==}
engines: {node: '>=6.9.0'}
@@ -1293,6 +1374,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/preset-env@7.28.3':
+ resolution: {integrity: sha512-ROiDcM+GbYVPYBOeCR6uBXKkQpBExLl8k9HO1ygXEyds39j+vCCsjmj7S8GOniZQlEs81QlkdJZe76IpLSiqpg==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/preset-modules@0.1.6-no-external-plugins':
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
peerDependencies:
@@ -1320,14 +1407,14 @@ packages:
resolution: {integrity: sha512-FVFaVs2/dZgD3Y9ZD+AKNKjyGKzwu0C54laAXWUXgLcVXcCX6YZ6GhK2cp7FogSN2OA0Fu+QT8dP3FUdo9ShSQ==}
engines: {node: '>=6.9.0'}
- '@babel/runtime@7.27.1':
- resolution: {integrity: sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog==}
- engines: {node: '>=6.9.0'}
-
'@babel/runtime@7.27.6':
resolution: {integrity: sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==}
engines: {node: '>=6.9.0'}
+ '@babel/runtime@7.28.4':
+ resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/template@7.27.2':
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
engines: {node: '>=6.9.0'}
@@ -1336,10 +1423,18 @@ packages:
resolution: {integrity: sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==}
engines: {node: '>=6.9.0'}
+ '@babel/traverse@7.28.5':
+ resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
+ engines: {node: '>=6.9.0'}
+
'@babel/types@7.28.0':
resolution: {integrity: sha512-jYnje+JyZG5YThjHiF28oT4SIZLnYOcSBb6+SDaFIyzDVSkXQmQQYclJ2R+YxcdmK0AX6x1E5OQNtuh3jHDrUg==}
engines: {node: '>=6.9.0'}
+ '@babel/types@7.28.5':
+ resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==}
+ engines: {node: '>=6.9.0'}
+
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
@@ -2115,14 +2210,14 @@ packages:
resolution: {integrity: sha512-e7zcB6TPnVzyUaHMJyLSArKa2AG3h9+4CfvKXKKWNx6hRs+p0a+u7HHTJBgo6KW2m+vqDnuIHK4X+bhmoghAFA==}
engines: {node: '>=18.0'}
- '@emnapi/core@1.4.3':
- resolution: {integrity: sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g==}
+ '@emnapi/core@1.7.1':
+ resolution: {integrity: sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==}
- '@emnapi/runtime@1.4.3':
- resolution: {integrity: sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==}
+ '@emnapi/runtime@1.7.1':
+ resolution: {integrity: sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==}
- '@emnapi/wasi-threads@1.0.2':
- resolution: {integrity: sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==}
+ '@emnapi/wasi-threads@1.1.0':
+ resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
'@esbuild/aix-ppc64@0.25.5':
resolution: {integrity: sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==}
@@ -2130,116 +2225,356 @@ packages:
cpu: [ppc64]
os: [aix]
+ '@esbuild/aix-ppc64@0.26.0':
+ resolution: {integrity: sha512-hj0sKNCQOOo2fgyII3clmJXP28VhgDfU5iy3GNHlWO76KG6N7x4D9ezH5lJtQTG+1J6MFDAJXC1qsI+W+LvZoA==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
+ '@esbuild/aix-ppc64@0.27.2':
+ resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
'@esbuild/android-arm64@0.25.5':
resolution: {integrity: sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm64@0.26.0':
+ resolution: {integrity: sha512-DDnoJ5eoa13L8zPh87PUlRd/IyFaIKOlRbxiwcSbeumcJ7UZKdtuMCHa1Q27LWQggug6W4m28i4/O2qiQQ5NZQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
+ '@esbuild/android-arm64@0.27.2':
+ resolution: {integrity: sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm@0.25.5':
resolution: {integrity: sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
+ '@esbuild/android-arm@0.26.0':
+ resolution: {integrity: sha512-C0hkDsYNHZkBtPxxDx177JN90/1MiCpvBNjz1f5yWJo1+5+c5zr8apjastpEG+wtPjo9FFtGG7owSsAxyKiHxA==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
+ '@esbuild/android-arm@0.27.2':
+ resolution: {integrity: sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-x64@0.25.5':
resolution: {integrity: sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
+ '@esbuild/android-x64@0.26.0':
+ resolution: {integrity: sha512-bKDkGXGZnj0T70cRpgmv549x38Vr2O3UWLbjT2qmIkdIWcmlg8yebcFWoT9Dku7b5OV3UqPEuNKRzlNhjwUJ9A==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
+ '@esbuild/android-x64@0.27.2':
+ resolution: {integrity: sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/darwin-arm64@0.25.5':
resolution: {integrity: sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-arm64@0.26.0':
+ resolution: {integrity: sha512-6Z3naJgOuAIB0RLlJkYc81An3rTlQ/IeRdrU3dOea8h/PvZSgitZV+thNuIccw0MuK1GmIAnAmd5TrMZad8FTQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@esbuild/darwin-arm64@0.27.2':
+ resolution: {integrity: sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.25.5':
resolution: {integrity: sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
+ '@esbuild/darwin-x64@0.26.0':
+ resolution: {integrity: sha512-OPnYj0zpYW0tHusMefyaMvNYQX5pNQuSsHFTHUBNp3vVXupwqpxofcjVsUx11CQhGVkGeXjC3WLjh91hgBG2xw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@esbuild/darwin-x64@0.27.2':
+ resolution: {integrity: sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/freebsd-arm64@0.25.5':
resolution: {integrity: sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-arm64@0.26.0':
+ resolution: {integrity: sha512-jix2fa6GQeZhO1sCKNaNMjfj5hbOvoL2F5t+w6gEPxALumkpOV/wq7oUBMHBn2hY2dOm+mEV/K+xfZy3mrsxNQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@esbuild/freebsd-arm64@0.27.2':
+ resolution: {integrity: sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.25.5':
resolution: {integrity: sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.26.0':
+ resolution: {integrity: sha512-tccJaH5xHJD/239LjbVvJwf6T4kSzbk6wPFerF0uwWlkw/u7HL+wnAzAH5GB2irGhYemDgiNTp8wJzhAHQ64oA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@esbuild/freebsd-x64@0.27.2':
+ resolution: {integrity: sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/linux-arm64@0.25.5':
resolution: {integrity: sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm64@0.26.0':
+ resolution: {integrity: sha512-IMJYN7FSkLttYyTbsbme0Ra14cBO5z47kpamo16IwggzzATFY2lcZAwkbcNkWiAduKrTgFJP7fW5cBI7FzcuNQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@esbuild/linux-arm64@0.27.2':
+ resolution: {integrity: sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
'@esbuild/linux-arm@0.25.5':
resolution: {integrity: sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
+ '@esbuild/linux-arm@0.26.0':
+ resolution: {integrity: sha512-JY8NyU31SyRmRpuc5W8PQarAx4TvuYbyxbPIpHAZdr/0g4iBr8KwQBS4kiiamGl2f42BBecHusYCsyxi7Kn8UQ==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
+ '@esbuild/linux-arm@0.27.2':
+ resolution: {integrity: sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-ia32@0.25.5':
resolution: {integrity: sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-ia32@0.26.0':
+ resolution: {integrity: sha512-XITaGqGVLgk8WOHw8We9Z1L0lbLFip8LyQzKYFKO4zFo1PFaaSKsbNjvkb7O8kEXytmSGRkYpE8LLVpPJpsSlw==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
+ '@esbuild/linux-ia32@0.27.2':
+ resolution: {integrity: sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-loong64@0.25.5':
resolution: {integrity: sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.26.0':
+ resolution: {integrity: sha512-MkggfbDIczStUJwq9wU7gQ7kO33d8j9lWuOCDifN9t47+PeI+9m2QVh51EI/zZQ1spZtFMC1nzBJ+qNGCjJnsg==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
+ '@esbuild/linux-loong64@0.27.2':
+ resolution: {integrity: sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.25.5':
resolution: {integrity: sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-mips64el@0.26.0':
+ resolution: {integrity: sha512-fUYup12HZWAeccNLhQ5HwNBPr4zXCPgUWzEq2Rfw7UwqwfQrFZ0SR/JljaURR8xIh9t+o1lNUFTECUTmaP7yKA==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
+ '@esbuild/linux-mips64el@0.27.2':
+ resolution: {integrity: sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
'@esbuild/linux-ppc64@0.25.5':
resolution: {integrity: sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-ppc64@0.26.0':
+ resolution: {integrity: sha512-MzRKhM0Ip+//VYwC8tialCiwUQ4G65WfALtJEFyU0GKJzfTYoPBw5XNWf0SLbCUYQbxTKamlVwPmcw4DgZzFxg==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@esbuild/linux-ppc64@0.27.2':
+ resolution: {integrity: sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.25.5':
resolution: {integrity: sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-riscv64@0.26.0':
+ resolution: {integrity: sha512-QhCc32CwI1I4Jrg1enCv292sm3YJprW8WHHlyxJhae/dVs+KRWkbvz2Nynl5HmZDW/m9ZxrXayHzjzVNvQMGQA==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@esbuild/linux-riscv64@0.27.2':
+ resolution: {integrity: sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-s390x@0.25.5':
resolution: {integrity: sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-s390x@0.26.0':
+ resolution: {integrity: sha512-1D6vi6lfI18aNT1aTf2HV+RIlm6fxtlAp8eOJ4mmnbYmZ4boz8zYDar86sIYNh0wmiLJEbW/EocaKAX6Yso2fw==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
+ '@esbuild/linux-s390x@0.27.2':
+ resolution: {integrity: sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-x64@0.25.5':
resolution: {integrity: sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
+ '@esbuild/linux-x64@0.26.0':
+ resolution: {integrity: sha512-rnDcepj7LjrKFvZkx+WrBv6wECeYACcFjdNPvVPojCPJD8nHpb3pv3AuR9CXgdnjH1O23btICj0rsp0L9wAnHA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
+ '@esbuild/linux-x64@0.27.2':
+ resolution: {integrity: sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
'@esbuild/netbsd-arm64@0.25.5':
resolution: {integrity: sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.25.5':
- resolution: {integrity: sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==}
+ '@esbuild/netbsd-arm64@0.26.0':
+ resolution: {integrity: sha512-FSWmgGp0mDNjEXXFcsf12BmVrb+sZBBBlyh3LwB/B9ac3Kkc8x5D2WimYW9N7SUkolui8JzVnVlWh7ZmjCpnxw==}
engines: {node: '>=18'}
- cpu: [x64]
+ cpu: [arm64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.25.5':
- resolution: {integrity: sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==}
+ '@esbuild/netbsd-arm64@0.27.2':
+ resolution: {integrity: sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [netbsd]
+
+ '@esbuild/netbsd-x64@0.25.5':
+ resolution: {integrity: sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
+ '@esbuild/netbsd-x64@0.26.0':
+ resolution: {integrity: sha512-0QfciUDFryD39QoSPUDshj4uNEjQhp73+3pbSAaxjV2qGOEDsM67P7KbJq7LzHoVl46oqhIhJ1S+skKGR7lMXA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
+ '@esbuild/netbsd-x64@0.27.2':
+ resolution: {integrity: sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
+ '@esbuild/openbsd-arm64@0.25.5':
+ resolution: {integrity: sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
+ '@esbuild/openbsd-arm64@0.26.0':
+ resolution: {integrity: sha512-vmAK+nHhIZWImwJ3RNw9hX3fU4UGN/OqbSE0imqljNbUQC3GvVJ1jpwYoTfD6mmXmQaxdJY6Hn4jQbLGJKg5Yw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
+ '@esbuild/openbsd-arm64@0.27.2':
+ resolution: {integrity: sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
@@ -2250,30 +2585,102 @@ packages:
cpu: [x64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.26.0':
+ resolution: {integrity: sha512-GPXF7RMkJ7o9bTyUsnyNtrFMqgM3X+uM/LWw4CeHIjqc32fm0Ir6jKDnWHpj8xHFstgWDUYseSABK9KCkHGnpg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
+ '@esbuild/openbsd-x64@0.27.2':
+ resolution: {integrity: sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
+ '@esbuild/openharmony-arm64@0.26.0':
+ resolution: {integrity: sha512-nUHZ5jEYqbBthbiBksbmHTlbb5eElyVfs/s1iHQ8rLBq1eWsd5maOnDpCocw1OM8kFK747d1Xms8dXJHtduxSw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@esbuild/openharmony-arm64@0.27.2':
+ resolution: {integrity: sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openharmony]
+
'@esbuild/sunos-x64@0.25.5':
resolution: {integrity: sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
+ '@esbuild/sunos-x64@0.26.0':
+ resolution: {integrity: sha512-TMg3KCTCYYaVO+R6P5mSORhcNDDlemUVnUbb8QkboUtOhb5JWKAzd5uMIMECJQOxHZ/R+N8HHtDF5ylzLfMiLw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
+ '@esbuild/sunos-x64@0.27.2':
+ resolution: {integrity: sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
'@esbuild/win32-arm64@0.25.5':
resolution: {integrity: sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-arm64@0.26.0':
+ resolution: {integrity: sha512-apqYgoAUd6ZCb9Phcs8zN32q6l0ZQzQBdVXOofa6WvHDlSOhwCWgSfVQabGViThS40Y1NA4SCvQickgZMFZRlA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@esbuild/win32-arm64@0.27.2':
+ resolution: {integrity: sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
'@esbuild/win32-ia32@0.25.5':
resolution: {integrity: sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-ia32@0.26.0':
+ resolution: {integrity: sha512-FGJAcImbJNZzLWu7U6WB0iKHl4RuY4TsXEwxJPl9UZLS47agIZuILZEX3Pagfw7I4J3ddflomt9f0apfaJSbaw==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@esbuild/win32-ia32@0.27.2':
+ resolution: {integrity: sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-x64@0.25.5':
resolution: {integrity: sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
+ '@esbuild/win32-x64@0.26.0':
+ resolution: {integrity: sha512-WAckBKaVnmFqbEhbymrPK7M086DQMpL1XoRbpmN0iW8k5JSXjDRQBhcZNa0VweItknLq9eAeCL34jK7/CDcw7A==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
+ '@esbuild/win32-x64@0.27.2':
+ resolution: {integrity: sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
'@eslint-community/eslint-utils@4.4.0':
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -2351,17 +2758,12 @@ packages:
resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==}
engines: {node: '>=18.18'}
- '@inquirer/checkbox@4.2.0':
- resolution: {integrity: sha512-fdSw07FLJEU5vbpOPzXo5c6xmMGDzbZE2+niuDHX5N6mc6V0Ebso/q3xiHra4D73+PMsC8MJmcaZKuAAoaQsSA==}
+ '@inquirer/ansi@1.0.2':
+ resolution: {integrity: sha512-S8qNSZiYzFd0wAcyG5AXCvUHC5Sr7xpZ9wZ2py9XR88jUz8wooStVx5M6dRzczbBWjic9NP7+rY0Xi7qqK/aMQ==}
engines: {node: '>=18'}
- peerDependencies:
- '@types/node': '>=18'
- peerDependenciesMeta:
- '@types/node':
- optional: true
- '@inquirer/confirm@5.1.13':
- resolution: {integrity: sha512-EkCtvp67ICIVVzjsquUiVSd+V5HRGOGQfsqA4E4vMWhYnB7InUL0pa0TIWt1i+OfP16Gkds8CdIu6yGZwOM1Yw==}
+ '@inquirer/checkbox@4.3.2':
+ resolution: {integrity: sha512-VXukHf0RR1doGe6Sm4F0Em7SWYLTHSsbGfJdS9Ja2bX5/D5uwVOEjr07cncLROdBvmnvCATYEWlHqYmXv2IlQA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -2369,8 +2771,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/core@10.1.14':
- resolution: {integrity: sha512-Ma+ZpOJPewtIYl6HZHZckeX1STvDnHTCB2GVINNUlSEn2Am6LddWwfPkIGY0IUFVjUUrr/93XlBwTK6mfLjf0A==}
+ '@inquirer/confirm@5.1.19':
+ resolution: {integrity: sha512-wQNz9cfcxrtEnUyG5PndC8g3gZ7lGDBzmWiXZkX8ot3vfZ+/BLjR8EvyGX4YzQLeVqtAlY/YScZpW7CW8qMoDQ==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -2378,8 +2780,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/core@10.1.15':
- resolution: {integrity: sha512-8xrp836RZvKkpNbVvgWUlxjT4CraKk2q+I3Ksy+seI2zkcE+y6wNs1BVhgcv8VyImFecUhdQrYLdW32pAjwBdA==}
+ '@inquirer/core@10.3.2':
+ resolution: {integrity: sha512-43RTuEbfP8MbKzedNqBrlhhNKVwoK//vUFNW3Q3vZ88BLcrs4kYpGg+B2mm5p2K/HfygoCxuKwJJiv8PbGmE0A==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -2387,8 +2789,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/editor@4.2.15':
- resolution: {integrity: sha512-wst31XT8DnGOSS4nNJDIklGKnf+8shuauVrWzgKegWUe28zfCftcWZ2vktGdzJgcylWSS2SrDnYUb6alZcwnCQ==}
+ '@inquirer/editor@4.2.23':
+ resolution: {integrity: sha512-aLSROkEwirotxZ1pBaP8tugXRFCxW94gwrQLxXfrZsKkfjOYC1aRvAZuhpJOb5cu4IBTJdsCigUlf2iCOu4ZDQ==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -2396,8 +2798,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/expand@4.0.17':
- resolution: {integrity: sha512-PSqy9VmJx/VbE3CT453yOfNa+PykpKg/0SYP7odez1/NWBGuDXgPhp4AeGYYKjhLn5lUUavVS/JbeYMPdH50Mw==}
+ '@inquirer/expand@4.0.23':
+ resolution: {integrity: sha512-nRzdOyFYnpeYTTR2qFwEVmIWypzdAx/sIkCMeTNTcflFOovfqUk+HcFhQQVBftAh9gmGrpFj6QcGEqrDMDOiew==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -2405,16 +2807,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/figures@1.0.12':
- resolution: {integrity: sha512-MJttijd8rMFcKJC8NYmprWr6hD3r9Gd9qUC0XwPNwoEPWSMVJwA2MlXxF+nhZZNMY+HXsWa+o7KY2emWYIn0jQ==}
- engines: {node: '>=18'}
-
- '@inquirer/figures@1.0.13':
- resolution: {integrity: sha512-lGPVU3yO9ZNqA7vTYz26jny41lE7yoQansmqdMLBEfqaGsmdg7V3W9mK9Pvb5IL4EVZ9GnSDGMO/cJXud5dMaw==}
- engines: {node: '>=18'}
-
- '@inquirer/input@4.2.1':
- resolution: {integrity: sha512-tVC+O1rBl0lJpoUZv4xY+WGWY8V5b0zxU1XDsMsIHYregdh7bN5X5QnIONNBAl0K765FYlAfNHS2Bhn7SSOVow==}
+ '@inquirer/external-editor@1.0.3':
+ resolution: {integrity: sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -2422,8 +2816,12 @@ packages:
'@types/node':
optional: true
- '@inquirer/number@3.0.17':
- resolution: {integrity: sha512-GcvGHkyIgfZgVnnimURdOueMk0CztycfC8NZTiIY9arIAkeOgt6zG57G+7vC59Jns3UX27LMkPKnKWAOF5xEYg==}
+ '@inquirer/figures@1.0.15':
+ resolution: {integrity: sha512-t2IEY+unGHOzAaVM5Xx6DEWKeXlDDcNPeDyUpsRc6CUhBfU3VQOEl+Vssh7VNp1dR8MdUJBWhuObjXCsVpjN5g==}
+ engines: {node: '>=18'}
+
+ '@inquirer/input@4.3.1':
+ resolution: {integrity: sha512-kN0pAM4yPrLjJ1XJBjDxyfDduXOuQHrBB8aLDMueuwUGn+vNpF7Gq7TvyVxx8u4SHlFFj4trmj+a2cbpG4Jn1g==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -2431,8 +2829,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/password@4.0.17':
- resolution: {integrity: sha512-DJolTnNeZ00E1+1TW+8614F7rOJJCM4y4BAGQ3Gq6kQIG+OJ4zr3GLjIjVVJCbKsk2jmkmv6v2kQuN/vriHdZA==}
+ '@inquirer/number@3.0.23':
+ resolution: {integrity: sha512-5Smv0OK7K0KUzUfYUXDXQc9jrf8OHo4ktlEayFlelCjwMXz0299Y8OrI+lj7i4gCBY15UObk76q0QtxjzFcFcg==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -2440,8 +2838,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/prompts@7.6.0':
- resolution: {integrity: sha512-jAhL7tyMxB3Gfwn4HIJ0yuJ5pvcB5maYUcouGcgd/ub79f9MqZ+aVnBtuFf+VC2GTkCBF+R+eo7Vi63w5VZlzw==}
+ '@inquirer/password@4.0.23':
+ resolution: {integrity: sha512-zREJHjhT5vJBMZX/IUbyI9zVtVfOLiTO66MrF/3GFZYZ7T4YILW5MSkEYHceSii/KtRk+4i3RE7E1CUXA2jHcA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -2449,8 +2847,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/rawlist@4.1.5':
- resolution: {integrity: sha512-R5qMyGJqtDdi4Ht521iAkNqyB6p2UPuZUbMifakg1sWtu24gc2Z8CJuw8rP081OckNDMgtDCuLe42Q2Kr3BolA==}
+ '@inquirer/prompts@7.9.0':
+ resolution: {integrity: sha512-X7/+dG9SLpSzRkwgG5/xiIzW0oMrV3C0HOa7YHG1WnrLK+vCQHfte4k/T80059YBdei29RBC3s+pSMvPJDU9/A==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -2458,8 +2856,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/search@3.1.0':
- resolution: {integrity: sha512-PMk1+O/WBcYJDq2H7foV0aAZSmDdkzZB9Mw2v/DmONRJopwA/128cS9M/TXWLKKdEQKZnKwBzqu2G4x/2Nqx8Q==}
+ '@inquirer/rawlist@4.1.11':
+ resolution: {integrity: sha512-+LLQB8XGr3I5LZN/GuAHo+GpDJegQwuPARLChlMICNdwW7OwV2izlCSCxN6cqpL0sMXmbKbFcItJgdQq5EBXTw==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -2467,8 +2865,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/select@4.3.1':
- resolution: {integrity: sha512-Gfl/5sqOF5vS/LIrSndFgOh7jgoe0UXEizDqahFRkq5aJBLegZ6WjuMh/hVEJwlFQjyLq1z9fRtvUMkb7jM1LA==}
+ '@inquirer/search@3.2.2':
+ resolution: {integrity: sha512-p2bvRfENXCZdWF/U2BXvnSI9h+tuA8iNqtUKb9UWbmLYCRQxd8WkvwWvYn+3NgYaNwdUkHytJMGG4MMLucI1kA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -2476,12 +2874,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/type@1.5.5':
- resolution: {integrity: sha512-MzICLu4yS7V8AA61sANROZ9vT1H3ooca5dSmI1FjZkzq7o/koMsRfQSzRtFo+F3Ao4Sf1C0bpLKejpKB/+j6MA==}
- engines: {node: '>=18'}
-
- '@inquirer/type@3.0.7':
- resolution: {integrity: sha512-PfunHQcjwnju84L+ycmcMKB/pTPIngjUJvfnRhKY6FKPuYXlM4aQCb/nIdTFR6BEhMjFvngzvng/vBAJMZpLSA==}
+ '@inquirer/select@4.4.2':
+ resolution: {integrity: sha512-l4xMuJo55MAe+N7Qr4rX90vypFwCajSakx59qe/tMaC1aEHWLyw68wF4o0A4SLAY4E0nd+Vt+EyskeDIqu1M6w==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -2489,8 +2883,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/type@3.0.8':
- resolution: {integrity: sha512-lg9Whz8onIHRthWaN1Q9EGLa/0LFJjyM8mEUbL1eTi6yMGvBf8gvyDLtxSXztQsxMvhxxNpJYrwa1YHdq+w4Jw==}
+ '@inquirer/type@3.0.10':
+ resolution: {integrity: sha512-BvziSRxfz5Ov8ch0z/n3oijRSEcEsHnhggm4xFZe93DHcUCTlutlq9Ox4SVENAfcRD22UQq7T/atg9Wr3k09eA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -2625,6 +3019,9 @@ packages:
'@jridgewell/gen-mapping@0.3.12':
resolution: {integrity: sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==}
+ '@jridgewell/remapping@2.3.5':
+ resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
+
'@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
@@ -2635,6 +3032,9 @@ packages:
'@jridgewell/sourcemap-codec@1.5.0':
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
+ '@jridgewell/sourcemap-codec@1.5.5':
+ resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
+
'@jridgewell/trace-mapping@0.3.29':
resolution: {integrity: sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==}
@@ -2647,14 +3047,32 @@ packages:
peerDependencies:
tslib: '2'
- '@jsonjoy.com/json-pack@1.0.4':
- resolution: {integrity: sha512-aOcSN4MeAtFROysrbqG137b7gaDDSmVrl5mpo6sT/w+kcXpWnzhMjmY/Fh/sDx26NBxyIE7MB1seqLeCAzy9Sg==}
+ '@jsonjoy.com/buffers@1.2.1':
+ resolution: {integrity: sha512-12cdlDwX4RUM3QxmUbVJWqZ/mrK6dFQH4Zxq6+r1YXKXYBNgZXndx2qbCJwh3+WWkCSn67IjnlG3XYTvmvYtgA==}
+ engines: {node: '>=10.0'}
+ peerDependencies:
+ tslib: '2'
+
+ '@jsonjoy.com/codegen@1.0.0':
+ resolution: {integrity: sha512-E8Oy+08cmCf0EK/NMxpaJZmOxPqM+6iSe2S4nlSBrPZOORoDJILxtbSUEDKQyTamm/BVAhIGllOBNU79/dwf0g==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
- '@jsonjoy.com/util@1.6.0':
- resolution: {integrity: sha512-sw/RMbehRhN68WRtcKCpQOPfnH6lLP4GJfqzi3iYej8tnzpZUDr6UkZYJjcjjC0FWEJOJbyM3PTIwxucUmDG2A==}
+ '@jsonjoy.com/json-pack@1.21.0':
+ resolution: {integrity: sha512-+AKG+R2cfZMShzrF2uQw34v3zbeDYUqnQ+jg7ORic3BGtfw9p/+N6RJbq/kkV8JmYZaINknaEQ2m0/f693ZPpg==}
+ engines: {node: '>=10.0'}
+ peerDependencies:
+ tslib: '2'
+
+ '@jsonjoy.com/json-pointer@1.0.2':
+ resolution: {integrity: sha512-Fsn6wM2zlDzY1U+v4Nc8bo3bVqgfNTGcn6dMgs6FjrEnt4ZCe60o6ByKRjOGlI2gow0aE/Q41QOigdTqkyK5fg==}
+ engines: {node: '>=10.0'}
+ peerDependencies:
+ tslib: '2'
+
+ '@jsonjoy.com/util@1.9.0':
+ resolution: {integrity: sha512-pLuQo+VPRnN8hfPqUTLTHk126wuYdXVxE6aDmjSeV4NCAgyxWbiOIeNJVtID3h1Vzpoi9m4jXezf73I6LgabgQ==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
@@ -2662,44 +3080,45 @@ packages:
'@leichtgewicht/ip-codec@2.0.5':
resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==}
- '@listr2/prompt-adapter-inquirer@2.0.22':
- resolution: {integrity: sha512-hV36ZoY+xKL6pYOt1nPNnkciFkn89KZwqLhAFzJvYysAvL5uBQdiADZx/8bIDXIukzzwG0QlPYolgMzQUtKgpQ==}
- engines: {node: '>=18.0.0'}
+ '@listr2/prompt-adapter-inquirer@3.0.5':
+ resolution: {integrity: sha512-WELs+hj6xcilkloBXYf9XXK8tYEnKsgLj01Xl5ONUJpKjmT5hGVUzNUS5tooUxs7pGMrw+jFD/41WpqW4V3LDA==}
+ engines: {node: '>=20.0.0'}
peerDependencies:
'@inquirer/prompts': '>= 3 < 8'
+ listr2: 9.0.5
- '@lmdb/lmdb-darwin-arm64@3.4.1':
- resolution: {integrity: sha512-kKeP5PaY3bFrrF6GY5aDd96iuh1eoS+5CHJ+7hIP629KIEwzGNwbIzBmEX9TAhRJOivSRDTHCIsbu//+NsYKkg==}
+ '@lmdb/lmdb-darwin-arm64@3.4.3':
+ resolution: {integrity: sha512-zR6Y45VNtW5s+A+4AyhrJk0VJKhXdkLhrySCpCu7PSdnakebsOzNxf58p5Xoq66vOSuueGAxlqDAF49HwdrSTQ==}
cpu: [arm64]
os: [darwin]
- '@lmdb/lmdb-darwin-x64@3.4.1':
- resolution: {integrity: sha512-9CMB3seTyHs3EOVWdKiB8IIEDBJ3Gq00Tqyi0V7DS3HL90BjM/AkbZGuhzXwPrfeFazR24SKaRrUQF74f+CmWw==}
+ '@lmdb/lmdb-darwin-x64@3.4.3':
+ resolution: {integrity: sha512-nfGm5pQksBGfaj9uMbjC0YyQreny/Pl7mIDtHtw6g7WQuCgeLullr9FNRsYyKplaEJBPrCVpEjpAznxTBIrXBw==}
cpu: [x64]
os: [darwin]
- '@lmdb/lmdb-linux-arm64@3.4.1':
- resolution: {integrity: sha512-d0vuXOdoKjHHJYZ/CRWopnkOiUpev+bgBBW+1tXtWsYWUj8uxl9ZmTBEmsL5mjUlpQDrlYiJSrhOU1hg5QWBSw==}
+ '@lmdb/lmdb-linux-arm64@3.4.3':
+ resolution: {integrity: sha512-uX9eaPqWb740wg5D3TCvU/js23lSRSKT7lJrrQ8IuEG/VLgpPlxO3lHDywU44yFYdGS7pElBn6ioKFKhvALZlw==}
cpu: [arm64]
os: [linux]
- '@lmdb/lmdb-linux-arm@3.4.1':
- resolution: {integrity: sha512-1Mi69vU0akHgCI7tF6YbimPaNEKJiBm/p5A+aM8egr0joj27cQmCCOm2mZQ+Ht2BqmCfZaIgQnMg4gFYNMlpCA==}
+ '@lmdb/lmdb-linux-arm@3.4.3':
+ resolution: {integrity: sha512-Kjqomp7i0rgSbYSUmv9JnXpS55zYT/YcW3Bdf9oqOTjcH0/8tFAP8MLhu/i9V2pMKIURDZk63Ww49DTK0T3c/Q==}
cpu: [arm]
os: [linux]
- '@lmdb/lmdb-linux-x64@3.4.1':
- resolution: {integrity: sha512-00RbEpvfnyPodlICiGFuiOmyvWaL9nzCRSqZz82BVFsGTiSQnnF0gpD1C8tO6OvtptELbtRuM7BS9f97LcowZw==}
+ '@lmdb/lmdb-linux-x64@3.4.3':
+ resolution: {integrity: sha512-7/8l20D55CfwdMupkc3fNxNJdn4bHsti2X0cp6PwiXlLeSFvAfWs5kCCx+2Cyje4l4GtN//LtKWjTru/9hDJQg==}
cpu: [x64]
os: [linux]
- '@lmdb/lmdb-win32-arm64@3.4.1':
- resolution: {integrity: sha512-4h8tm3i1ODf+28UyqQZLP7c2jmRM26AyEEyYp994B4GiBdGvGAsYUu3oiHANYK9xFpvLuFzyGeqFm1kdNC0D1A==}
+ '@lmdb/lmdb-win32-arm64@3.4.3':
+ resolution: {integrity: sha512-yWVR0e5Gl35EGJBsAuqPOdjtUYuN8CcTLKrqpQFoM+KsMadViVCulhKNhkcjSGJB88Am5bRPjMro4MBB9FS23Q==}
cpu: [arm64]
os: [win32]
- '@lmdb/lmdb-win32-x64@3.4.1':
- resolution: {integrity: sha512-HqqKIhTbq6piJhkJpTTf3w1m/CgrmwXRAL9R9j7Ru5xdZSeO7Mg4AWiBC9B00uXR+LvVZKtUyRMVZfhmIZztmQ==}
+ '@lmdb/lmdb-win32-x64@3.4.3':
+ resolution: {integrity: sha512-1JdBkcO0Vrua4LUgr4jAe4FUyluwCeq/pDkBrlaVjX3/BBWP1TzVjCL+TibWNQtPAL1BITXPAhlK5Ru4FBd/hg==}
cpu: [x64]
os: [win32]
@@ -2712,32 +3131,32 @@ packages:
'@types/react': '>=16'
react: '>=16'
- '@modelcontextprotocol/sdk@1.13.3':
- resolution: {integrity: sha512-bGwA78F/U5G2jrnsdRkPY3IwIwZeWUEfb5o764b79lb0rJmMT76TLwKhdNZOWakOQtedYefwIR4emisEMvInKA==}
+ '@modelcontextprotocol/sdk@1.24.0':
+ resolution: {integrity: sha512-D8h5KXY2vHFW8zTuxn2vuZGN0HGrQ5No6LkHwlEA9trVgNdPL3TF1dSqKA7Dny6BbBYKSW/rOBDXdC8KJAjUCg==}
engines: {node: '>=18'}
+ peerDependencies:
+ '@cfworker/json-schema': ^4.1.1
+ zod: ^3.25 || ^4.0
+ peerDependenciesMeta:
+ '@cfworker/json-schema':
+ optional: true
- '@modern-js/node-bundle-require@2.68.2':
- resolution: {integrity: sha512-MWk/pYx7KOsp+A/rN0as2ji/Ba8x0m129aqZ3Lj6T6CCTWdz0E/IsamPdTmF9Jnb6whQoBKtWSaLTCQlmCoY0Q==}
-
- '@modern-js/utils@2.68.2':
- resolution: {integrity: sha512-revom/i/EhKfI0STNLo/AUbv7gY0JY0Ni2gO6P/Z4cTyZZRgd5j90678YB2DGn+LtmSrEWtUphyDH5Jn1RKjgg==}
-
- '@module-federation/bridge-react-webpack-plugin@0.17.1':
- resolution: {integrity: sha512-lv06kqarQJtXnOZ5Kd7SIH2mAi+O3cwqS5/EiSlXDNU5hBsqsInFMeHpj8nY0wwNzeYv4o7t/F1QFQkaqAVEwQ==}
+ '@module-federation/bridge-react-webpack-plugin@0.21.6':
+ resolution: {integrity: sha512-lJMmdhD4VKVkeg8RHb+Jwe6Ou9zKVgjtb1inEURDG/sSS2ksdZA8pVKLYbRPRbdmjr193Y8gJfqFbI2dqoyc/g==}
- '@module-federation/cli@0.17.1':
- resolution: {integrity: sha512-jXA/ZutIfEyk0va8Q0ufJcZoG/w5kyJj4xvV4/LXAfcAOv/aKR/Mp51YrAIDAyEJN8i05y+dLMzLRfhewFK4GA==}
+ '@module-federation/cli@0.21.6':
+ resolution: {integrity: sha512-qNojnlc8pTyKtK7ww3i/ujLrgWwgXqnD5DcDPsjADVIpu7STaoaVQ0G5GJ7WWS/ajXw6EyIAAGW/AMFh4XUxsQ==}
engines: {node: '>=16.0.0'}
hasBin: true
- '@module-federation/data-prefetch@0.17.1':
- resolution: {integrity: sha512-kRS9LWbK/agC2ybO2Y2Xj3JfoyyBxOxwpxwftl1KnuWBPafV6dpvKxn5ig3im5OWHsYLd/W8W4XyGsSQdVoyIw==}
+ '@module-federation/data-prefetch@0.21.6':
+ resolution: {integrity: sha512-8HD7ZhtWZ9vl6i3wA7M8cEeCRdtvxt09SbMTfqIPm+5eb/V4ijb8zGTYSRhNDb5RCB+BAixaPiZOWKXJ63/rVw==}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- '@module-federation/dts-plugin@0.17.1':
- resolution: {integrity: sha512-cRvHorIlVBUfh2UCQySZ7026CyzCJqQxwFzF4E1kp+mmIGxRpr4wLZA8GshThYvwN6dkeHINuKuzFmErhtFhAQ==}
+ '@module-federation/dts-plugin@0.21.6':
+ resolution: {integrity: sha512-YIsDk8/7QZIWn0I1TAYULniMsbyi2LgKTi9OInzVmZkwMC6644x/ratTWBOUDbdY1Co+feNkoYeot1qIWv2L7w==}
peerDependencies:
typescript: ^4.9.0 || ^5.0.0
vue-tsc: '>=1.0.24'
@@ -2745,8 +3164,8 @@ packages:
vue-tsc:
optional: true
- '@module-federation/enhanced@0.17.1':
- resolution: {integrity: sha512-YEdHA/rXlydI+ecmsidM0imAhAgyN+fSCOWRJtm72Kx10J6kS2tN1/Zah/hf9C9Msj9OOl0w22aOo7/Sy0qRqg==}
+ '@module-federation/enhanced@0.21.6':
+ resolution: {integrity: sha512-8PFQxtmXc6ukBC4CqGIoc96M2Ly9WVwCPu4Ffvt+K/SB6rGbeFeZoYAwREV1zGNMJ5v5ly6+AHIEOBxNuSnzSg==}
hasBin: true
peerDependencies:
typescript: ^4.9.0 || ^5.0.0
@@ -2760,25 +3179,22 @@ packages:
webpack:
optional: true
- '@module-federation/error-codes@0.15.0':
- resolution: {integrity: sha512-CFJSF+XKwTcy0PFZ2l/fSUpR4z247+Uwzp1sXVkdIfJ/ATsnqf0Q01f51qqSEA6MYdQi6FKos9FIcu3dCpQNdg==}
+ '@module-federation/error-codes@0.21.6':
+ resolution: {integrity: sha512-MLJUCQ05KnoVl8xd6xs9a5g2/8U+eWmVxg7xiBMeR0+7OjdWUbHwcwgVFatRIwSZvFgKHfWEiI7wsU1q1XbTRQ==}
- '@module-federation/error-codes@0.17.1':
- resolution: {integrity: sha512-n6Elm4qKSjwAPxLUGtwnl7qt4y1dxB8OpSgVvXBIzqI9p27a3ZXshLPLnumlpPg1Qudaj8sLnSnFtt9yGpt5yQ==}
-
- '@module-federation/inject-external-runtime-core-plugin@0.17.1':
- resolution: {integrity: sha512-Wqi6VvPHK5LKkLPhXgabulHygQKDJxreWs+LyrA5/LFGXHwD/7cM+V/xHriVJIbU+5HeKBT7y0Jyfe6uW1p/dQ==}
+ '@module-federation/inject-external-runtime-core-plugin@0.21.6':
+ resolution: {integrity: sha512-DJQne7NQ988AVi3QB8byn12FkNb+C2lBeU1NRf8/WbL0gmHsr6kW8hiEJCm8LYaURwtsQqtsEV7i+8+51qjSmQ==}
peerDependencies:
- '@module-federation/runtime-tools': 0.17.1
+ '@module-federation/runtime-tools': 0.21.6
- '@module-federation/managers@0.17.1':
- resolution: {integrity: sha512-jMWD3w1j7n47EUNr44DXjvuEDQU4BjS7fanPN+1tTwUzuCYEnkaQKXDalv583VDKm4vP8s1TaJVIyjz+uTWiMQ==}
+ '@module-federation/managers@0.21.6':
+ resolution: {integrity: sha512-BeV6m2/7kF5MDVz9JJI5T8h8lMosnXkH2bOxxFewcra7ZjvDOgQu7WIio0mgk5l1zjNPvnEVKhnhrenEdcCiWg==}
- '@module-federation/manifest@0.17.1':
- resolution: {integrity: sha512-0EM6hAB9E++MHDKBsFA8HmIUKHUjxVGZZTIaQNdmeCBNvL1KMp2eDuqrPaurlcrtrqpD7C7xwjmbIyYp5Us1xw==}
+ '@module-federation/manifest@0.21.6':
+ resolution: {integrity: sha512-yg93+I1qjRs5B5hOSvjbjmIoI2z3th8/yst9sfwvx4UDOG1acsE3HHMyPN0GdoIGwplC/KAnU5NmUz4tREUTGQ==}
- '@module-federation/node@2.7.10':
- resolution: {integrity: sha512-Gyzeqzz54uy05QH7WIF+SdJbecC+B47EIPHi/WxnkAJSGMxFFckFrwpKqLCn45fXl06GDV25E9w5mGnZy5O0Pg==}
+ '@module-federation/node@2.7.25':
+ resolution: {integrity: sha512-/u4f+GYRZfHpSvdt5n40lMCS9Cmve7N3JlDreaFXz8xrWDNOp2wvMgiVGpndo5J4iQdtLjpavWStahGQ05B2cQ==}
peerDependencies:
next: '*'
react: ^16||^17||^18||^19
@@ -2792,8 +3208,8 @@ packages:
react-dom:
optional: true
- '@module-federation/rspack@0.17.1':
- resolution: {integrity: sha512-TMLaMcQjRTjVPzOi5USFDkf3Js3vHIlQm1wgzbe4Ok70vW9gHUQ+7LHFDWTt5byKoHeZJbzEr4c5zJCo6WBTKA==}
+ '@module-federation/rspack@0.21.6':
+ resolution: {integrity: sha512-SB+z1P+Bqe3R6geZje9dp0xpspX6uash+zO77nodmUy8PTTBlkL7800Cq2FMLKUdoTZHJTBVXf0K6CqQWSlItg==}
peerDependencies:
'@rspack/core': '>=0.7'
typescript: ^4.9.0 || ^5.0.0
@@ -2804,38 +3220,23 @@ packages:
vue-tsc:
optional: true
- '@module-federation/runtime-core@0.15.0':
- resolution: {integrity: sha512-RYzI61fRDrhyhaEOXH3AgIGlHiot0wPFXu7F43cr+ZnTi+VlSYWLdlZ4NBuT9uV6JSmH54/c+tEZm5SXgKR2sQ==}
-
- '@module-federation/runtime-core@0.17.1':
- resolution: {integrity: sha512-LCtIFuKgWPQ3E+13OyrVpuTPOWBMI/Ggwsq1Q874YeT8Px28b8tJRCj09DjyRFyhpSPyV/uG80T6iXPAUoLIfQ==}
-
- '@module-federation/runtime-tools@0.15.0':
- resolution: {integrity: sha512-kzFn3ObUeBp5vaEtN1WMxhTYBuYEErxugu1RzFUERD21X3BZ+b4cWwdFJuBDlsmVjctIg/QSOoZoPXRKAO0foA==}
+ '@module-federation/runtime-core@0.21.6':
+ resolution: {integrity: sha512-5Hd1Y5qp5lU/aTiK66lidMlM/4ji2gr3EXAtJdreJzkY+bKcI5+21GRcliZ4RAkICmvdxQU5PHPL71XmNc7Lsw==}
- '@module-federation/runtime-tools@0.17.1':
- resolution: {integrity: sha512-4kr6zTFFwGywJx6whBtxsc84V+COAuuBpEdEbPZN//YLXhNB0iz2IGsy9r9wDl+06h84bD+3dQ05l9euRLgXzQ==}
+ '@module-federation/runtime-tools@0.21.6':
+ resolution: {integrity: sha512-fnP+ZOZTFeBGiTAnxve+axGmiYn2D60h86nUISXjXClK3LUY1krUfPgf6MaD4YDJ4i51OGXZWPekeMe16pkd8Q==}
- '@module-federation/runtime@0.15.0':
- resolution: {integrity: sha512-dTPsCNum9Bhu3yPOcrPYq0YnM9eCMMMNB1wuiqf1+sFbQlNApF0vfZxooqz3ln0/MpgE0jerVvFsLVGfqvC9Ug==}
+ '@module-federation/runtime@0.21.6':
+ resolution: {integrity: sha512-+caXwaQqwTNh+CQqyb4mZmXq7iEemRDrTZQGD+zyeH454JAYnJ3s/3oDFizdH6245pk+NiqDyOOkHzzFQorKhQ==}
- '@module-federation/runtime@0.17.1':
- resolution: {integrity: sha512-vKEN32MvUbpeuB/s6UXfkHDZ9N5jFyDDJnj83UTJ8n4N1jHIJu9VZ6Yi4/Ac8cfdvU8UIK9bIbfVXWbUYZUDsw==}
+ '@module-federation/sdk@0.21.6':
+ resolution: {integrity: sha512-x6hARETb8iqHVhEsQBysuWpznNZViUh84qV2yE7AD+g7uIzHKiYdoWqj10posbo5XKf/147qgWDzKZoKoEP2dw==}
- '@module-federation/sdk@0.15.0':
- resolution: {integrity: sha512-PWiYbGcJrKUD6JZiEPihrXhV3bgXdll4bV7rU+opV7tHaun+Z0CdcawjZ82Xnpb8MCPGmqHwa1MPFeUs66zksw==}
+ '@module-federation/third-party-dts-extractor@0.21.6':
+ resolution: {integrity: sha512-Il6x4hLsvCgZNk1DFwuMBNeoxD1BsZ5AW2BI/nUgu0k5FiAvfcz1OFawRFEHtaM/kVrCsymMOW7pCao90DaX3A==}
- '@module-federation/sdk@0.17.1':
- resolution: {integrity: sha512-nlUcN6UTEi+3HWF+k8wPy7gH0yUOmCT+xNatihkIVR9REAnr7BUvHFGlPJmx7WEbLPL46+zJUbtQHvLzXwFhng==}
-
- '@module-federation/third-party-dts-extractor@0.17.1':
- resolution: {integrity: sha512-hGvy1Tqathc34G4Tx7WJgpK0203oDFA/qSPIhPpsWg27em3fCWozLczVsq+lOxxCM6llDRgC1kt/EpWeqEK/ng==}
-
- '@module-federation/webpack-bundler-runtime@0.15.0':
- resolution: {integrity: sha512-i+3wu2Ljh2TmuUpsnjwZVupOVqV50jP0ndA8PSP4gwMKlgdGeaZ4VH5KkHAXGr2eiYUxYLMrJXz1+eILJqeGDg==}
-
- '@module-federation/webpack-bundler-runtime@0.17.1':
- resolution: {integrity: sha512-Swspdgf4PzcbvS9SNKFlBzfq8h/Qxwqjq/xRSqw1pqAZWondZQzwTTqPXhgrg0bFlz7qWjBS/6a8KuH/gRvGaQ==}
+ '@module-federation/webpack-bundler-runtime@0.21.6':
+ resolution: {integrity: sha512-7zIp3LrcWbhGuFDTUMLJ2FJvcwjlddqhWGxi/MW3ur1a+HaO8v5tF2nl+vElKmbG1DFLU/52l3PElVcWf/YcsQ==}
'@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
resolution: {integrity: sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==}
@@ -2873,127 +3274,239 @@ packages:
cpu: [arm]
os: [android]
+ '@napi-rs/nice-android-arm-eabi@1.1.1':
+ resolution: {integrity: sha512-kjirL3N6TnRPv5iuHw36wnucNqXAO46dzK9oPb0wj076R5Xm8PfUVA9nAFB5ZNMmfJQJVKACAPd/Z2KYMppthw==}
+ engines: {node: '>= 10'}
+ cpu: [arm]
+ os: [android]
+
'@napi-rs/nice-android-arm64@1.0.1':
resolution: {integrity: sha512-GqvXL0P8fZ+mQqG1g0o4AO9hJjQaeYG84FRfZaYjyJtZZZcMjXW5TwkL8Y8UApheJgyE13TQ4YNUssQaTgTyvA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [android]
+ '@napi-rs/nice-android-arm64@1.1.1':
+ resolution: {integrity: sha512-blG0i7dXgbInN5urONoUCNf+DUEAavRffrO7fZSeoRMJc5qD+BJeNcpr54msPF6qfDD6kzs9AQJogZvT2KD5nw==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [android]
+
'@napi-rs/nice-darwin-arm64@1.0.1':
resolution: {integrity: sha512-91k3HEqUl2fsrz/sKkuEkscj6EAj3/eZNCLqzD2AA0TtVbkQi8nqxZCZDMkfklULmxLkMxuUdKe7RvG/T6s2AA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
+ '@napi-rs/nice-darwin-arm64@1.1.1':
+ resolution: {integrity: sha512-s/E7w45NaLqTGuOjC2p96pct4jRfo61xb9bU1unM/MJ/RFkKlJyJDx7OJI/O0ll/hrfpqKopuAFDV8yo0hfT7A==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [darwin]
+
'@napi-rs/nice-darwin-x64@1.0.1':
resolution: {integrity: sha512-jXnMleYSIR/+TAN/p5u+NkCA7yidgswx5ftqzXdD5wgy/hNR92oerTXHc0jrlBisbd7DpzoaGY4cFD7Sm5GlgQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
+ '@napi-rs/nice-darwin-x64@1.1.1':
+ resolution: {integrity: sha512-dGoEBnVpsdcC+oHHmW1LRK5eiyzLwdgNQq3BmZIav+9/5WTZwBYX7r5ZkQC07Nxd3KHOCkgbHSh4wPkH1N1LiQ==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [darwin]
+
'@napi-rs/nice-freebsd-x64@1.0.1':
resolution: {integrity: sha512-j+iJ/ezONXRQsVIB/FJfwjeQXX7A2tf3gEXs4WUGFrJjpe/z2KB7sOv6zpkm08PofF36C9S7wTNuzHZ/Iiccfw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [freebsd]
+ '@napi-rs/nice-freebsd-x64@1.1.1':
+ resolution: {integrity: sha512-kHv4kEHAylMYmlNwcQcDtXjklYp4FCf0b05E+0h6nDHsZ+F0bDe04U/tXNOqrx5CmIAth4vwfkjjUmp4c4JktQ==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [freebsd]
+
'@napi-rs/nice-linux-arm-gnueabihf@1.0.1':
resolution: {integrity: sha512-G8RgJ8FYXYkkSGQwywAUh84m946UTn6l03/vmEXBYNJxQJcD+I3B3k5jmjFG/OPiU8DfvxutOP8bi+F89MCV7Q==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
+ '@napi-rs/nice-linux-arm-gnueabihf@1.1.1':
+ resolution: {integrity: sha512-E1t7K0efyKXZDoZg1LzCOLxgolxV58HCkaEkEvIYQx12ht2pa8hoBo+4OB3qh7e+QiBlp1SRf+voWUZFxyhyqg==}
+ engines: {node: '>= 10'}
+ cpu: [arm]
+ os: [linux]
+
'@napi-rs/nice-linux-arm64-gnu@1.0.1':
resolution: {integrity: sha512-IMDak59/W5JSab1oZvmNbrms3mHqcreaCeClUjwlwDr0m3BoR09ZiN8cKFBzuSlXgRdZ4PNqCYNeGQv7YMTjuA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
+ '@napi-rs/nice-linux-arm64-gnu@1.1.1':
+ resolution: {integrity: sha512-CIKLA12DTIZlmTaaKhQP88R3Xao+gyJxNWEn04wZwC2wmRapNnxCUZkVwggInMJvtVElA+D4ZzOU5sX4jV+SmQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
'@napi-rs/nice-linux-arm64-musl@1.0.1':
resolution: {integrity: sha512-wG8fa2VKuWM4CfjOjjRX9YLIbysSVV1S3Kgm2Fnc67ap/soHBeYZa6AGMeR5BJAylYRjnoVOzV19Cmkco3QEPw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
+ '@napi-rs/nice-linux-arm64-musl@1.1.1':
+ resolution: {integrity: sha512-+2Rzdb3nTIYZ0YJF43qf2twhqOCkiSrHx2Pg6DJaCPYhhaxbLcdlV8hCRMHghQ+EtZQWGNcS2xF4KxBhSGeutg==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
'@napi-rs/nice-linux-ppc64-gnu@1.0.1':
resolution: {integrity: sha512-lxQ9WrBf0IlNTCA9oS2jg/iAjQyTI6JHzABV664LLrLA/SIdD+I1i3Mjf7TsnoUbgopBcCuDztVLfJ0q9ubf6Q==}
engines: {node: '>= 10'}
cpu: [ppc64]
os: [linux]
+ '@napi-rs/nice-linux-ppc64-gnu@1.1.1':
+ resolution: {integrity: sha512-4FS8oc0GeHpwvv4tKciKkw3Y4jKsL7FRhaOeiPei0X9T4Jd619wHNe4xCLmN2EMgZoeGg+Q7GY7BsvwKpL22Tg==}
+ engines: {node: '>= 10'}
+ cpu: [ppc64]
+ os: [linux]
+
'@napi-rs/nice-linux-riscv64-gnu@1.0.1':
resolution: {integrity: sha512-3xs69dO8WSWBb13KBVex+yvxmUeEsdWexxibqskzoKaWx9AIqkMbWmE2npkazJoopPKX2ULKd8Fm9veEn0g4Ig==}
engines: {node: '>= 10'}
cpu: [riscv64]
os: [linux]
+ '@napi-rs/nice-linux-riscv64-gnu@1.1.1':
+ resolution: {integrity: sha512-HU0nw9uD4FO/oGCCk409tCi5IzIZpH2agE6nN4fqpwVlCn5BOq0MS1dXGjXaG17JaAvrlpV5ZeyZwSon10XOXw==}
+ engines: {node: '>= 10'}
+ cpu: [riscv64]
+ os: [linux]
+
'@napi-rs/nice-linux-s390x-gnu@1.0.1':
resolution: {integrity: sha512-lMFI3i9rlW7hgToyAzTaEybQYGbQHDrpRkg+1gJWEpH0PLAQoZ8jiY0IzakLfNWnVda1eTYYlxxFYzW8Rqczkg==}
engines: {node: '>= 10'}
cpu: [s390x]
os: [linux]
+ '@napi-rs/nice-linux-s390x-gnu@1.1.1':
+ resolution: {integrity: sha512-2YqKJWWl24EwrX0DzCQgPLKQBxYDdBxOHot1KWEq7aY2uYeX+Uvtv4I8xFVVygJDgf6/92h9N3Y43WPx8+PAgQ==}
+ engines: {node: '>= 10'}
+ cpu: [s390x]
+ os: [linux]
+
'@napi-rs/nice-linux-x64-gnu@1.0.1':
resolution: {integrity: sha512-XQAJs7DRN2GpLN6Fb+ZdGFeYZDdGl2Fn3TmFlqEL5JorgWKrQGRUrpGKbgZ25UeZPILuTKJ+OowG2avN8mThBA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
+ '@napi-rs/nice-linux-x64-gnu@1.1.1':
+ resolution: {integrity: sha512-/gaNz3R92t+dcrfCw/96pDopcmec7oCcAQ3l/M+Zxr82KT4DljD37CpgrnXV+pJC263JkW572pdbP3hP+KjcIg==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
'@napi-rs/nice-linux-x64-musl@1.0.1':
resolution: {integrity: sha512-/rodHpRSgiI9o1faq9SZOp/o2QkKQg7T+DK0R5AkbnI/YxvAIEHf2cngjYzLMQSQgUhxym+LFr+UGZx4vK4QdQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
+ '@napi-rs/nice-linux-x64-musl@1.1.1':
+ resolution: {integrity: sha512-xScCGnyj/oppsNPMnevsBe3pvNaoK7FGvMjT35riz9YdhB2WtTG47ZlbxtOLpjeO9SqqQ2J2igCmz6IJOD5JYw==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@napi-rs/nice-openharmony-arm64@1.1.1':
+ resolution: {integrity: sha512-6uJPRVwVCLDeoOaNyeiW0gp2kFIM4r7PL2MczdZQHkFi9gVlgm+Vn+V6nTWRcu856mJ2WjYJiumEajfSm7arPQ==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [openharmony]
+
'@napi-rs/nice-win32-arm64-msvc@1.0.1':
resolution: {integrity: sha512-rEcz9vZymaCB3OqEXoHnp9YViLct8ugF+6uO5McifTedjq4QMQs3DHz35xBEGhH3gJWEsXMUbzazkz5KNM5YUg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
+ '@napi-rs/nice-win32-arm64-msvc@1.1.1':
+ resolution: {integrity: sha512-uoTb4eAvM5B2aj/z8j+Nv8OttPf2m+HVx3UjA5jcFxASvNhQriyCQF1OB1lHL43ZhW+VwZlgvjmP5qF3+59atA==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [win32]
+
'@napi-rs/nice-win32-ia32-msvc@1.0.1':
resolution: {integrity: sha512-t7eBAyPUrWL8su3gDxw9xxxqNwZzAqKo0Szv3IjVQd1GpXXVkb6vBBQUuxfIYaXMzZLwlxRQ7uzM2vdUE9ULGw==}
engines: {node: '>= 10'}
cpu: [ia32]
os: [win32]
+ '@napi-rs/nice-win32-ia32-msvc@1.1.1':
+ resolution: {integrity: sha512-CNQqlQT9MwuCsg1Vd/oKXiuH+TcsSPJmlAFc5frFyX/KkOh0UpBLEj7aoY656d5UKZQMQFP7vJNa1DNUNORvug==}
+ engines: {node: '>= 10'}
+ cpu: [ia32]
+ os: [win32]
+
'@napi-rs/nice-win32-x64-msvc@1.0.1':
resolution: {integrity: sha512-JlF+uDcatt3St2ntBG8H02F1mM45i5SF9W+bIKiReVE6wiy3o16oBP/yxt+RZ+N6LbCImJXJ6bXNO2kn9AXicg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
+ '@napi-rs/nice-win32-x64-msvc@1.1.1':
+ resolution: {integrity: sha512-vB+4G/jBQCAh0jelMTY3+kgFy00Hlx2f2/1zjMoH821IbplbWZOkLiTYXQkygNTzQJTq5cvwBDgn2ppHD+bglQ==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [win32]
+
'@napi-rs/nice@1.0.1':
resolution: {integrity: sha512-zM0mVWSXE0a0h9aKACLwKmD6nHcRiKrPpCfvaKqG1CqDEyjEawId0ocXxVzPMCAm6kkWr2P025msfxXEnt8UGQ==}
engines: {node: '>= 10'}
+ '@napi-rs/nice@1.1.1':
+ resolution: {integrity: sha512-xJIPs+bYuc9ASBl+cvGsKbGrJmS6fAKaSZCnT0lhahT5rhA2VVy9/EcIgd2JhtEuFOJNx7UHNn/qiTPTY4nrQw==}
+ engines: {node: '>= 10'}
+
'@napi-rs/wasm-runtime@0.2.11':
resolution: {integrity: sha512-9DPkXtvHydrcOsopiYpUgPHpmj0HWZKMUnL2dZqpvC42lsratuBG06V5ipyno0fUek5VlFsNQ+AcFATSrJXgMA==}
'@napi-rs/wasm-runtime@0.2.4':
resolution: {integrity: sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==}
- '@ngrx/signals@20.0.0':
- resolution: {integrity: sha512-ALz9dzu4tkL3QtgtkyHqvO14Od3tY/febpsqS6LaUgIxF8jFtmAneo0VgaGB2O7KamMwrwF005lpZjl/zeZghA==}
+ '@napi-rs/wasm-runtime@1.0.7':
+ resolution: {integrity: sha512-SeDnOO0Tk7Okiq6DbXmmBODgOAb9dp9gjlphokTUxmt8U3liIP1ZsozBahH69j/RJv+Rfs6IwUKHTgQYJ/HBAw==}
+
+ '@napi-rs/wasm-runtime@1.1.0':
+ resolution: {integrity: sha512-Fq6DJW+Bb5jaWE69/qOE0D1TUN9+6uWhCeZpdnSBk14pjLcCWR7Q8n49PTSPHazM37JqrsdpEthXy2xn6jWWiA==}
+
+ '@ngrx/signals@21.0.0':
+ resolution: {integrity: sha512-GZaOcnt1MBzqRv+m4gvsusksveqkQQZwbfxBOofTjLj7V1JWz18kyC1R3ZI/aO/M++cqG/zqP+yh/33pFenZYw==}
peerDependencies:
- '@angular/core': ^20.0.0
+ '@angular/core': ^21.0.0
rxjs: ^6.5.3 || ^7.4.0
peerDependenciesMeta:
rxjs:
optional: true
- '@ngrx/store@20.0.0':
- resolution: {integrity: sha512-UVj6UVayXknq1V/OXSGAVG+CdSXYg+oFM6T4aplcP2fuq/4oHtnVi93hkIYa9OU+rhAuHvfRsOsGsTtxlpj52w==}
+ '@ngrx/store@21.0.0':
+ resolution: {integrity: sha512-IQ+s0I4z8zkzlilFBr0Xpu/b5sjVbQOKhn0clRU4er82k1WUEyHSMT2Qksu2DNwTHCbWjagBhyBW3n3kQdOrTw==}
peerDependencies:
- '@angular/core': ^20.0.0
+ '@angular/core': ^21.0.0
rxjs: ^6.5.3 || ^7.5.0
- '@ngtools/webpack@20.1.3':
- resolution: {integrity: sha512-u4Qy9ycBPlFE6cwNx4S1o7tetC0YvbF3lb7hNfb7e7qT45ZWngnvW+tMSU8JAgpx1M4xZPgOq+Gbeo5QPaW2cA==}
+ '@ngtools/webpack@21.0.3':
+ resolution: {integrity: sha512-JDO+KOpNBL5bKgHugjLLgDNDt3odBZLYDaKyeC7s9xv3nAPu0UXQHkMcZe+sOJVMZS0zkSTTQ7zMO8BC6MDj3w==}
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': ^20.0.0
- typescript: '>=5.8 <5.9'
+ '@angular/compiler-cli': ^21.0.0
+ typescript: '>=5.9 <6.0'
webpack: ^5.54.0
'@nodelib/fs.scandir@2.1.5':
@@ -3008,52 +3521,56 @@ 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.0':
+ resolution: {integrity: sha512-kAQTcEN9E8ERLVg5AsGwLNoFb+oEG6engbqAU2P43gD4JEIkNGMHdVQ096FsOAAYpZPB0RSt0zgInKIAS1l5QA==}
+ 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.1':
- resolution: {integrity: sha512-BBWMMxeQzalmKadyimwb2/VVQyJB01PH0HhVSNLHNBDZN/M/h/02P6f8fxedIiFhpMj11SO9Ep5tKTBE7zL2nw==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ '@npmcli/git@7.0.1':
+ resolution: {integrity: sha512-+XTFxK2jJF/EJJ5SoAzXk3qwIDfvFc5/g+bD274LZ7uY7LE8sTfG6Z8rOanPl2ZEvZWqNvmEdtXC25cE54VcoA==}
+ 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}
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.1.0':
- resolution: {integrity: sha512-t6G+6ZInT4X+tqj2i+wlLIeCKnKOTuz9/VFYDtj+TGTur5q7sp/OYrQA19LdBbWfXDOi0Y4jtedV6xtB8zQ9ug==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ '@npmcli/package-json@7.0.4':
+ resolution: {integrity: sha512-0wInJG3j/K40OJt/33ax47WfWMzZTm6OQxB9cDhTt5huCP2a9g2GnlsxmfN+PulItNPIpPrZ+kfwwUil7eHcZQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
'@npmcli/promise-spawn@8.0.2':
resolution: {integrity: sha512-/bNJhjc+o6qL+Dwz/bqfTQClkEO5nTQ1ZEcdCkAQjhkZMHIh22LPG7fNh1enJP1NKWDqYiiABnjFCY7E0zHYtQ==}
engines: {node: ^18.17.0 || >=20.5.0}
- '@npmcli/redact@3.0.0':
- resolution: {integrity: sha512-/1uFzjVcfzqrgCeGW7+SZ4hv0qLWmKXVzFahZGJ6QuJBj6Myt9s17+JL86i76NV9YSnJRcGXJYQbAU0rn1YTCQ==}
- 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/run-script@9.0.2':
- resolution: {integrity: sha512-cJXiUlycdizQwvqE1iaAb4VRUM3RX09/8q46zjvy+ct9GhfZRWd7jXYVc1tn/CfRlGPVkX/u4sstRlepsm7hfw==}
- 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@10.0.3':
+ resolution: {integrity: sha512-ER2N6itRkzWbbtVmZ9WKaWxVlKlOeBFF1/7xx+KA5J1xKa4JjUwBdb6tDpk0v1qA+d+VDwHI9qmLcXSWcmi+Rw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
- '@nx/angular@21.3.7':
- resolution: {integrity: sha512-iaV4t2R8gst5mRJMSISftAQGr6nWVXMUQTfFM3a4LEgZYDqmhsiuDHndIdHktexZzkRtl0iSaIQQafF0DpCraA==}
+ '@nx/angular@22.3.1':
+ resolution: {integrity: sha512-4X6qj6J53mESQ2IqJEdfKMgynpSbu+9Jxu2sqNidlqZNdx1fIkEdxlckqR8AUkQkvOMPTV/IRwFLGJA+sDGIgw==}
peerDependencies:
- '@angular-devkit/build-angular': '>= 18.0.0 < 21.0.0'
- '@angular-devkit/core': '>= 18.0.0 < 21.0.0'
- '@angular-devkit/schematics': '>= 18.0.0 < 21.0.0'
- '@angular/build': '>= 18.0.0 < 21.0.0'
- '@schematics/angular': '>= 18.0.0 < 21.0.0'
- ng-packagr: '>= 18.0.0 < 21.0.0'
+ '@angular-devkit/build-angular': '>= 19.0.0 < 22.0.0'
+ '@angular-devkit/core': '>= 19.0.0 < 22.0.0'
+ '@angular-devkit/schematics': '>= 19.0.0 < 22.0.0'
+ '@angular/build': '>= 19.0.0 < 22.0.0'
+ '@schematics/angular': '>= 19.0.0 < 22.0.0'
+ ng-packagr: '>= 19.0.0 < 22.0.0'
rxjs: ^6.5.3 || ^7.5.0
peerDependenciesMeta:
'@angular-devkit/build-angular':
@@ -3063,13 +3580,13 @@ packages:
ng-packagr:
optional: true
- '@nx/devkit@21.3.7':
- resolution: {integrity: sha512-clqOhLHvGXelJDq0blfrPMvJ88TTMhlxKvbuj+mxpfXCcHIYlhuHeH63u99eO4wEbVtSopOG4szpABSjRXJESw==}
+ '@nx/devkit@22.3.1':
+ resolution: {integrity: sha512-bbpoU9pgVdUdGdpRqBH2sKMqrtppQMNM0yfJaCdt9gUl+N8ZTO10K8jGpOQUOoG9dJ02TYFlMh6XiOEy4rkigQ==}
peerDependencies:
- nx: 21.3.7
+ nx: '>= 21 <= 23 || ^22.0.0-0'
- '@nx/eslint-plugin@21.3.7':
- resolution: {integrity: sha512-j4Qf9uhUJs2S7WM0VSS4gA4s4s/83sjSBMVv1IZtAjonw7WVzobBAz0kyFAsmk0TdL9Pk/FqHOdL9hM4VmvoPA==}
+ '@nx/eslint-plugin@22.3.1':
+ resolution: {integrity: sha512-VDzKpJNSDop6J5j3Nsgly0o76lbKLhh22+HtPqiPwN/q8SzcmXkdOUzdYgsaTa7bRailqvXSzbmVJMrvQBcldQ==}
peerDependencies:
'@typescript-eslint/parser': ^6.13.2 || ^7.0.0 || ^8.0.0
eslint-config-prettier: ^10.0.0
@@ -3077,8 +3594,8 @@ packages:
eslint-config-prettier:
optional: true
- '@nx/eslint@21.3.7':
- resolution: {integrity: sha512-YYxPkohOjUYpbYXgDbrgbgoyA7DlxK8pDYasVYcyEGwf9M5H5KIacgkK2EdBBcIfEzFiASKbVm817tjhKT5ndQ==}
+ '@nx/eslint@22.3.1':
+ resolution: {integrity: sha512-z7hzBxwpO8J/MdtO3hxe0nhXLJCIQlihhWWPY+/pUqA+BAeev4GKcd7cP5qI5X3pnwG/tTNP0lv8psUd4N4HYw==}
peerDependencies:
'@zkochan/js-yaml': 0.0.7
eslint: ^8.0.0 || ^9.0.0
@@ -3086,92 +3603,95 @@ packages:
'@zkochan/js-yaml':
optional: true
- '@nx/jest@21.3.7':
- resolution: {integrity: sha512-77r1cV2AYzxkEsa4qKrMn5TuijfSR52Lwu7t8aSj7rdi1MYQoWhkW6sEgoh9+XnJ+yoksYjc3K9vKyco6R488w==}
+ '@nx/jest@22.3.1':
+ resolution: {integrity: sha512-wotp70CjDLfMMOKNQRfU0U2fm5b0dFBP3plJkBiDYkVHxuVLkYhUpk3Z2MQ4CSPLRzlCA+uoSDpojC21NCmHIw==}
- '@nx/js@21.3.7':
- resolution: {integrity: sha512-oy+WcZqfYvOzhO+cefgwYVRIBULfVQk8J8prgw9kMuFcJRgOYXkkfB1HLdkxx+OrHGDPqs7Oe0+8KS1lilnumA==}
+ '@nx/js@22.3.1':
+ resolution: {integrity: sha512-yZcvotqLkjqyT52A9Rt49s0mGNWXhVwFi6wd5WoNh4DttxDh4iZ02AxZQxEpft6fAbcS0LOP+Ty0BN4aY2cYog==}
peerDependencies:
verdaccio: ^6.0.5
peerDependenciesMeta:
verdaccio:
optional: true
- '@nx/module-federation@21.3.7':
- resolution: {integrity: sha512-Z2+KbiFrJtstpJsZdxslxUi4sP27qDw0mJQCYzFEh8PgfpWZGkuC5ExodGxylYMQjc9LYf24TU5Fifq4A0Vleg==}
+ '@nx/module-federation@22.3.1':
+ resolution: {integrity: sha512-8beUbefthC+FcRO31mnwNroGLfd+NseveOKQRlXP+29HwGk2RMRvrEj9zey7Bl2hYNo4xDa0aO9+xBJsnvLCqA==}
- '@nx/nx-darwin-arm64@21.3.7':
- resolution: {integrity: sha512-/I8tpxDNZ3Xq9DnC5Y0q7II0e+1dV+vWwGTj/hxTM6oVo9wv9hBVkzA5F+UL2AJ20BrlPe34EKtIxaRfkd7SHQ==}
+ '@nx/nx-darwin-arm64@22.3.1':
+ resolution: {integrity: sha512-hi6waBIYVrm9Q03sce41tdi4IDeyEmcmr5cP/MROFxO4rjPy2sBaRuXfm7UxsZ/VefNmS8XMRtYNxjwx4a7ZHA==}
cpu: [arm64]
os: [darwin]
- '@nx/nx-darwin-x64@21.3.7':
- resolution: {integrity: sha512-l5P6wmrnFz3zY+AnDCf2PqqlrDnDMULl5E58KC3ax49kqkWc/1umauJJeP/tzWRYGd4yHL4/SbtKU0HRT91l7Q==}
+ '@nx/nx-darwin-x64@22.3.1':
+ resolution: {integrity: sha512-V6cho6hj3jYAAvsviN2bGrChg29RBdksS58A76OviJwPGSKpN/m5BV3GFAe0LxoMXd+AmgGvygm07/7E9Jymcw==}
cpu: [x64]
os: [darwin]
- '@nx/nx-freebsd-x64@21.3.7':
- resolution: {integrity: sha512-JJq4t8mcR1t5WyX8RvAthGlkun+Uyx3c4WA8hemLbqNCHnR/oQ5tIapRldp1FPBYJEzRzTgtk8Ov+rAjLuXqqQ==}
+ '@nx/nx-freebsd-x64@22.3.1':
+ resolution: {integrity: sha512-NpFr0E5vD0kAv5ual2Hfa80yEa6dUT3KhmzT3Jgn+9CdOCOzwAx/4Z4gz/Uz8yNtJ3xNvb+sNQpsrpdYwv4xAQ==}
cpu: [x64]
os: [freebsd]
- '@nx/nx-linux-arm-gnueabihf@21.3.7':
- resolution: {integrity: sha512-9F5YVjJH/N8bqfVySTL8UY8PwdEGv4tjax6LSz5wByM6ThQtGqZreDqBectmgz4Uj1q1P+7zu5ra9hrBAr3Mww==}
+ '@nx/nx-linux-arm-gnueabihf@22.3.1':
+ resolution: {integrity: sha512-S6nTMscgHug0HXufufQheXmU40F2APTdDMVzNaDIYRAfCEEvW5SNcNSsV98fBX2Zabm46Rk3ckpLi8TjbCaGhw==}
cpu: [arm]
os: [linux]
- '@nx/nx-linux-arm64-gnu@21.3.7':
- resolution: {integrity: sha512-+YnuF9lwffzCsLrP0sCuDZKhbb5nFSV6hSwd8rCCZmzU35mqs0X4Mo8vjwHDZTCzIuDxzLK7Nl7ZeWQuAMxcJQ==}
+ '@nx/nx-linux-arm64-gnu@22.3.1':
+ resolution: {integrity: sha512-ct4meC411qZXeKZfM0Z10lsoOgpgpE49bE/J6kSGxW8nMbQhM6V5eNvWaAqH3uhTIscj2/OfhlNP0YcNKJME+A==}
cpu: [arm64]
os: [linux]
- '@nx/nx-linux-arm64-musl@21.3.7':
- resolution: {integrity: sha512-g1SmaC4uHkaLS58FMYnxLKkecASdM+B/G3GH3vPS9LDYdHuFukqwLBvVlvueno6CuIAHc+7bW+TH3xVadnUOvw==}
+ '@nx/nx-linux-arm64-musl@22.3.1':
+ resolution: {integrity: sha512-l2IEo2Rp0voLm0VNGXgYCd2l1F68V7ETG1vlXK8yW0EBRjroXJF0J0n9r9MkpogC2HDAtBks/57uSRKFFyOgZQ==}
cpu: [arm64]
os: [linux]
- '@nx/nx-linux-x64-gnu@21.3.7':
- resolution: {integrity: sha512-zupCkCiH2KKqdy/XcFwwQdyck2foX8H6W1mXfTPV94LqEOjfz8j0nfVuTT4WlZAaWcfwzszzdgKy6Rls65i9HA==}
+ '@nx/nx-linux-x64-gnu@22.3.1':
+ resolution: {integrity: sha512-zRC6Ea/odkq+NaVGFmJNcHvBggGt+h0LfiBSmhpDGJKR914niz2xU7WBDbqcFOCU8lfzQvYYzvEm3KOGkxmdLA==}
cpu: [x64]
os: [linux]
- '@nx/nx-linux-x64-musl@21.3.7':
- resolution: {integrity: sha512-Lhk/q/qb4HFaESR5KLCDPfGWh3Vp0x4bYTILIQ1mBTyqe3zJl1CMtAZp2L43gT7Zt41mz4ZiohavdDyFhIaUgA==}
+ '@nx/nx-linux-x64-musl@22.3.1':
+ resolution: {integrity: sha512-9YTmlFwN1vL+mZv7CACSDpoP5WC0PYFsOknRyuKnas6VJxSGRNbE1+qyo+xYbU8q1qeYGwNaPR3cdfWzE5cEnw==}
cpu: [x64]
os: [linux]
- '@nx/nx-win32-arm64-msvc@21.3.7':
- resolution: {integrity: sha512-fk1edw6PNfUiKHDCHqe0WHVJgWiDUU1DoWDhJji5ZY0w8nT89AfTDDxt4YZptcFwAuuwPA/98K0fjQYcenlgTg==}
+ '@nx/nx-win32-arm64-msvc@22.3.1':
+ resolution: {integrity: sha512-7+JSFUsmJs+4x7tVczbeJfJ4v/J7bywlxlHy9zreVqjw0D5zdFLGjJEQixDNohGr9S7iBbmHTqzgrokyfqWH0g==}
cpu: [arm64]
os: [win32]
- '@nx/nx-win32-x64-msvc@21.3.7':
- resolution: {integrity: sha512-riVFPTcYseYpzONDvlO/RbdYp/q8R0NGD9J2f/N8/ucqmZcoa3ABx6BvGIStMgmUVxNnIkHNPNnm8Hor+BHFYA==}
+ '@nx/nx-win32-x64-msvc@22.3.1':
+ resolution: {integrity: sha512-Wm+6qBFlviUFSYDp8VFPQCXaZzCLgL6QAf62c1YYTUqx95SCrWv/1uH/ZQpNtTV5D0r4N0JA+h9nd2hK2YJzgQ==}
cpu: [x64]
os: [win32]
- '@nx/playwright@21.3.7':
- resolution: {integrity: sha512-O4xJx677dTdqDM97fs0ExYuyx+f+sGsjbwKWBXuuCSz0VCza1W7JvNp+F14AZszoGhhpXIHa3MJwfoIaNJQdwA==}
+ '@nx/playwright@22.3.1':
+ resolution: {integrity: sha512-5itmvB7b4eA//3r4UzkZaLruWxVol1bceuwYRITNrPVnQS/3abexMjZ0fcUpro7szf8RsB60FVD7f+VRwn5qsA==}
peerDependencies:
'@playwright/test': ^1.36.0
peerDependenciesMeta:
'@playwright/test':
optional: true
- '@nx/rspack@21.3.7':
- resolution: {integrity: sha512-nSidVz4c1D1xB9Kgl+ZTRk6Rd4rGMPPbgbWZnFARDKAzAVckXmNJVNtupDRcEzgkQCxCpfc75ojq7ZfEodWJ2w==}
+ '@nx/rspack@22.3.1':
+ resolution: {integrity: sha512-r/AwNluil4qZqdJ/IrdGkD4rSCOZxvDEmNTcKB/g7Hu6FhxG9sKYLoG+x4OxTl9SoFETbUge6gNmIhcibT/M8Q==}
peerDependencies:
- '@module-federation/enhanced': ^0.17.0
- '@module-federation/node': ^2.7.9
+ '@module-federation/enhanced': ^0.21.2
+ '@module-federation/node': ^2.7.21
+
+ '@nx/web@22.3.1':
+ resolution: {integrity: sha512-UoqGbNtyh47fmJDuvMwcneeRzfLyZVFdbALWgJIMm1jCl6RktRCeJ0fyT9JgjwKplFmRXpdpgoTIVnVoSVFaIg==}
- '@nx/web@21.3.7':
- resolution: {integrity: sha512-21MR49GXalIA37yB1ufNichUW8UiKT5xxGE+uUltktkcRjLAl2rk1xZDj1Ni0YVPMHzpsmLOE6QdFo3T92SpUw==}
+ '@nx/webpack@22.3.1':
+ resolution: {integrity: sha512-ZQgxOPWlMJlMj7PTqKwWL6nham5dDXT5fvoXgf46krz79+wzncqUebVtURCqkp/Z2U9r71ur7w2bGFT88FvDlA==}
- '@nx/webpack@21.3.7':
- resolution: {integrity: sha512-GAy71bW96O71geipz/dnuNasy5WNGwvC73D4j2xwcSWAuR/pPR/ySn/yVO/fpVuxn/RMD7+KTLysW/zEwfW3Ow==}
+ '@nx/workspace@22.3.1':
+ resolution: {integrity: sha512-gR6P4mGfMQvayzOfmMuO41pMMOgIALZyU/O/34gsaUvLuU0DpH3DFYUVT075s9ox7aDVA0rYxN8pWjfbdaofqw==}
- '@nx/workspace@21.3.7':
- resolution: {integrity: sha512-DIMb9Ts6w0FtKIglNEkAQ22w+b/4kx97MJDdK3tU1t0o0hG64XbYZ9xyVjnENVEkSKnSInAid/dBg+pMTgwxhA==}
+ '@oxc-project/types@0.96.0':
+ resolution: {integrity: sha512-r/xkmoXA0xEpU6UGtn18CNVjXH6erU3KCpCDbpLmbVxBFor1U9MqN5Z2uMmCHJuXjJzlnDR+hWY+yPoLo8oHDw==}
'@parcel/watcher-android-arm64@2.5.0':
resolution: {integrity: sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==}
@@ -3288,6 +3808,92 @@ packages:
'@polka/url@1.0.0-next.29':
resolution: {integrity: sha512-wwQAWhWSuHaag8c4q/KN/vCoeOJYshAIvMQwD4GpSb3OiZklFfvAgmj0VCBBImRpuF/aFgIRzllXlVX93Jevww==}
+ '@rolldown/binding-android-arm64@1.0.0-beta.47':
+ resolution: {integrity: sha512-vPP9/MZzESh9QtmvQYojXP/midjgkkc1E4AdnPPAzQXo668ncHJcVLKjJKzoBdsQmaIvNjrMdsCwES8vTQHRQw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [android]
+
+ '@rolldown/binding-darwin-arm64@1.0.0-beta.47':
+ resolution: {integrity: sha512-Lc3nrkxeaDVCVl8qR3qoxh6ltDZfkQ98j5vwIr5ALPkgjZtDK4BGCrrBoLpGVMg+csWcaqUbwbKwH5yvVa0oOw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@rolldown/binding-darwin-x64@1.0.0-beta.47':
+ resolution: {integrity: sha512-eBYxQDwP0O33plqNVqOtUHqRiSYVneAknviM5XMawke3mwMuVlAsohtOqEjbCEl/Loi/FWdVeks5WkqAkzkYWQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [darwin]
+
+ '@rolldown/binding-freebsd-x64@1.0.0-beta.47':
+ resolution: {integrity: sha512-Ns+kgp2+1Iq/44bY/Z30DETUSiHY7ZuqaOgD5bHVW++8vme9rdiWsN4yG4rRPXkdgzjvQ9TDHmZZKfY4/G11AA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.47':
+ resolution: {integrity: sha512-4PecgWCJhTA2EFOlptYJiNyVP2MrVP4cWdndpOu3WmXqWqZUmSubhb4YUAIxAxnXATlGjC1WjxNPhV7ZllNgdA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.47':
+ resolution: {integrity: sha512-CyIunZ6D9U9Xg94roQI1INt/bLkOpPsZjZZkiaAZ0r6uccQdICmC99M9RUPlMLw/qg4yEWLlQhG73W/mG437NA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+
+ '@rolldown/binding-linux-arm64-musl@1.0.0-beta.47':
+ resolution: {integrity: sha512-doozc/Goe7qRCSnzfJbFINTHsMktqmZQmweull6hsZZ9sjNWQ6BWQnbvOlfZJe4xE5NxM1NhPnY5Giqnl3ZrYQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [linux]
+
+ '@rolldown/binding-linux-x64-gnu@1.0.0-beta.47':
+ resolution: {integrity: sha512-fodvSMf6Aqwa0wEUSTPewmmZOD44rc5Tpr5p9NkwQ6W1SSpUKzD3SwpJIgANDOhwiYhDuiIaYPGB7Ujkx1q0UQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@rolldown/binding-linux-x64-musl@1.0.0-beta.47':
+ resolution: {integrity: sha512-Rxm5hYc0mGjwLh5sjlGmMygxAaV2gnsx7CNm2lsb47oyt5UQyPDZf3GP/ct8BEcwuikdqzsrrlIp8+kCSvMFNQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@rolldown/binding-openharmony-arm64@1.0.0-beta.47':
+ resolution: {integrity: sha512-YakuVe+Gc87jjxazBL34hbr8RJpRuFBhun7NEqoChVDlH5FLhLXjAPHqZd990TVGVNkemourf817Z8u2fONS8w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@rolldown/binding-wasm32-wasi@1.0.0-beta.47':
+ resolution: {integrity: sha512-ak2GvTFQz3UAOw8cuQq8pWE+TNygQB6O47rMhvevvTzETh7VkHRFtRUwJynX5hwzFvQMP6G0az5JrBGuwaMwYQ==}
+ engines: {node: '>=14.0.0'}
+ cpu: [wasm32]
+
+ '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.47':
+ resolution: {integrity: sha512-o5BpmBnXU+Cj+9+ndMcdKjhZlPb79dVPBZnWwMnI4RlNSSq5yOvFZqvfPYbyacvnW03Na4n5XXQAPhu3RydZ0w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [arm64]
+ os: [win32]
+
+ '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.47':
+ resolution: {integrity: sha512-FVOmfyYehNE92IfC9Kgs913UerDog2M1m+FADJypKz0gmRg3UyTt4o1cZMCAl7MiR89JpM9jegNO1nXuP1w1vw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [ia32]
+ os: [win32]
+
+ '@rolldown/binding-win32-x64-msvc@1.0.0-beta.47':
+ resolution: {integrity: sha512-by/70F13IUE101Bat0oeH8miwWX5mhMFPk1yjCdxoTNHTyTdLgb0THNaebRM6AP7Kz+O3O2qx87sruYuF5UxHg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [win32]
+
+ '@rolldown/pluginutils@1.0.0-beta.47':
+ resolution: {integrity: sha512-8QagwMH3kNCuzD8EWL8R2YPW5e4OrHNSAHRFDdmFqEwEaD/KcNKjVoumo+gP2vW5eKB2UPbM6vTYiGZX0ixLnw==}
+
'@rollup/plugin-json@6.1.0':
resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==}
engines: {node: '>=14.0.0'}
@@ -3306,201 +3912,101 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.40.2':
- resolution: {integrity: sha512-JkdNEq+DFxZfUwxvB58tHMHBHVgX23ew41g1OQinthJ+ryhdRk67O31S7sYw8u2lTjHUPFxwar07BBt1KHp/hg==}
- cpu: [arm]
- os: [android]
-
'@rollup/rollup-android-arm-eabi@4.44.1':
resolution: {integrity: sha512-JAcBr1+fgqx20m7Fwe1DxPUl/hPkee6jA6Pl7n1v2EFiktAHenTaXl5aIFjUIEsfn9w3HE4gK1lEgNGMzBDs1w==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.40.2':
- resolution: {integrity: sha512-13unNoZ8NzUmnndhPTkWPWbX3vtHodYmy+I9kuLxN+F+l+x3LdVF7UCu8TWVMt1POHLh6oDHhnOA04n8oJZhBw==}
- cpu: [arm64]
- os: [android]
-
'@rollup/rollup-android-arm64@4.44.1':
resolution: {integrity: sha512-RurZetXqTu4p+G0ChbnkwBuAtwAbIwJkycw1n6GvlGlBuS4u5qlr5opix8cBAYFJgaY05TWtM+LaoFggUmbZEQ==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.40.2':
- resolution: {integrity: sha512-Gzf1Hn2Aoe8VZzevHostPX23U7N5+4D36WJNHK88NZHCJr7aVMG4fadqkIf72eqVPGjGc0HJHNuUaUcxiR+N/w==}
- cpu: [arm64]
- os: [darwin]
-
'@rollup/rollup-darwin-arm64@4.44.1':
resolution: {integrity: sha512-fM/xPesi7g2M7chk37LOnmnSTHLG/v2ggWqKj3CCA1rMA4mm5KVBT1fNoswbo1JhPuNNZrVwpTvlCVggv8A2zg==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.40.2':
- resolution: {integrity: sha512-47N4hxa01a4x6XnJoskMKTS8XZ0CZMd8YTbINbi+w03A2w4j1RTlnGHOz/P0+Bg1LaVL6ufZyNprSg+fW5nYQQ==}
- cpu: [x64]
- os: [darwin]
-
'@rollup/rollup-darwin-x64@4.44.1':
resolution: {integrity: sha512-gDnWk57urJrkrHQ2WVx9TSVTH7lSlU7E3AFqiko+bgjlh78aJ88/3nycMax52VIVjIm3ObXnDL2H00e/xzoipw==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.40.2':
- resolution: {integrity: sha512-8t6aL4MD+rXSHHZUR1z19+9OFJ2rl1wGKvckN47XFRVO+QL/dUSpKA2SLRo4vMg7ELA8pzGpC+W9OEd1Z/ZqoQ==}
- cpu: [arm64]
- os: [freebsd]
-
'@rollup/rollup-freebsd-arm64@4.44.1':
resolution: {integrity: sha512-wnFQmJ/zPThM5zEGcnDcCJeYJgtSLjh1d//WuHzhf6zT3Md1BvvhJnWoy+HECKu2bMxaIcfWiu3bJgx6z4g2XA==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.40.2':
- resolution: {integrity: sha512-C+AyHBzfpsOEYRFjztcYUFsH4S7UsE9cDtHCtma5BK8+ydOZYgMmWg1d/4KBytQspJCld8ZIujFMAdKG1xyr4Q==}
- cpu: [x64]
- os: [freebsd]
-
'@rollup/rollup-freebsd-x64@4.44.1':
resolution: {integrity: sha512-uBmIxoJ4493YATvU2c0upGz87f99e3wop7TJgOA/bXMFd2SvKCI7xkxY/5k50bv7J6dw1SXT4MQBQSLn8Bb/Uw==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.40.2':
- resolution: {integrity: sha512-de6TFZYIvJwRNjmW3+gaXiZ2DaWL5D5yGmSYzkdzjBDS3W+B9JQ48oZEsmMvemqjtAFzE16DIBLqd6IQQRuG9Q==}
- cpu: [arm]
- os: [linux]
-
'@rollup/rollup-linux-arm-gnueabihf@4.44.1':
resolution: {integrity: sha512-n0edDmSHlXFhrlmTK7XBuwKlG5MbS7yleS1cQ9nn4kIeW+dJH+ExqNgQ0RrFRew8Y+0V/x6C5IjsHrJmiHtkxQ==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.40.2':
- resolution: {integrity: sha512-urjaEZubdIkacKc930hUDOfQPysezKla/O9qV+O89enqsqUmQm8Xj8O/vh0gHg4LYfv7Y7UsE3QjzLQzDYN1qg==}
- cpu: [arm]
- os: [linux]
-
'@rollup/rollup-linux-arm-musleabihf@4.44.1':
resolution: {integrity: sha512-8WVUPy3FtAsKSpyk21kV52HCxB+me6YkbkFHATzC2Yd3yuqHwy2lbFL4alJOLXKljoRw08Zk8/xEj89cLQ/4Nw==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.40.2':
- resolution: {integrity: sha512-KlE8IC0HFOC33taNt1zR8qNlBYHj31qGT1UqWqtvR/+NuCVhfufAq9fxO8BMFC22Wu0rxOwGVWxtCMvZVLmhQg==}
- cpu: [arm64]
- os: [linux]
-
'@rollup/rollup-linux-arm64-gnu@4.44.1':
resolution: {integrity: sha512-yuktAOaeOgorWDeFJggjuCkMGeITfqvPgkIXhDqsfKX8J3jGyxdDZgBV/2kj/2DyPaLiX6bPdjJDTu9RB8lUPQ==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.40.2':
- resolution: {integrity: sha512-j8CgxvfM0kbnhu4XgjnCWJQyyBOeBI1Zq91Z850aUddUmPeQvuAy6OiMdPS46gNFgy8gN1xkYyLgwLYZG3rBOg==}
- cpu: [arm64]
- os: [linux]
-
'@rollup/rollup-linux-arm64-musl@4.44.1':
resolution: {integrity: sha512-W+GBM4ifET1Plw8pdVaecwUgxmiH23CfAUj32u8knq0JPFyK4weRy6H7ooxYFD19YxBulL0Ktsflg5XS7+7u9g==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.40.2':
- resolution: {integrity: sha512-Ybc/1qUampKuRF4tQXc7G7QY9YRyeVSykfK36Y5Qc5dmrIxwFhrOzqaVTNoZygqZ1ZieSWTibfFhQ5qK8jpWxw==}
- cpu: [loong64]
- os: [linux]
-
'@rollup/rollup-linux-loongarch64-gnu@4.44.1':
resolution: {integrity: sha512-1zqnUEMWp9WrGVuVak6jWTl4fEtrVKfZY7CvcBmUUpxAJ7WcSowPSAWIKa/0o5mBL/Ij50SIf9tuirGx63Ovew==}
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.40.2':
- resolution: {integrity: sha512-3FCIrnrt03CCsZqSYAOW/k9n625pjpuMzVfeI+ZBUSDT3MVIFDSPfSUgIl9FqUftxcUXInvFah79hE1c9abD+Q==}
- cpu: [ppc64]
- os: [linux]
-
'@rollup/rollup-linux-powerpc64le-gnu@4.44.1':
resolution: {integrity: sha512-Rl3JKaRu0LHIx7ExBAAnf0JcOQetQffaw34T8vLlg9b1IhzcBgaIdnvEbbsZq9uZp3uAH+JkHd20Nwn0h9zPjA==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.40.2':
- resolution: {integrity: sha512-QNU7BFHEvHMp2ESSY3SozIkBPaPBDTsfVNGx3Xhv+TdvWXFGOSH2NJvhD1zKAT6AyuuErJgbdvaJhYVhVqrWTg==}
- cpu: [riscv64]
- os: [linux]
-
'@rollup/rollup-linux-riscv64-gnu@4.44.1':
resolution: {integrity: sha512-j5akelU3snyL6K3N/iX7otLBIl347fGwmd95U5gS/7z6T4ftK288jKq3A5lcFKcx7wwzb5rgNvAg3ZbV4BqUSw==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-riscv64-musl@4.40.2':
- resolution: {integrity: sha512-5W6vNYkhgfh7URiXTO1E9a0cy4fSgfE4+Hl5agb/U1sa0kjOLMLC1wObxwKxecE17j0URxuTrYZZME4/VH57Hg==}
- cpu: [riscv64]
- os: [linux]
-
'@rollup/rollup-linux-riscv64-musl@4.44.1':
resolution: {integrity: sha512-ppn5llVGgrZw7yxbIm8TTvtj1EoPgYUAbfw0uDjIOzzoqlZlZrLJ/KuiE7uf5EpTpCTrNt1EdtzF0naMm0wGYg==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.40.2':
- resolution: {integrity: sha512-B7LKIz+0+p348JoAL4X/YxGx9zOx3sR+o6Hj15Y3aaApNfAshK8+mWZEf759DXfRLeL2vg5LYJBB7DdcleYCoQ==}
- cpu: [s390x]
- os: [linux]
-
'@rollup/rollup-linux-s390x-gnu@4.44.1':
resolution: {integrity: sha512-Hu6hEdix0oxtUma99jSP7xbvjkUM/ycke/AQQ4EC5g7jNRLLIwjcNwaUy95ZKBJJwg1ZowsclNnjYqzN4zwkAw==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.40.2':
- resolution: {integrity: sha512-lG7Xa+BmBNwpjmVUbmyKxdQJ3Q6whHjMjzQplOs5Z+Gj7mxPtWakGHqzMqNER68G67kmCX9qX57aRsW5V0VOng==}
- cpu: [x64]
- os: [linux]
-
'@rollup/rollup-linux-x64-gnu@4.44.1':
resolution: {integrity: sha512-EtnsrmZGomz9WxK1bR5079zee3+7a+AdFlghyd6VbAjgRJDbTANJ9dcPIPAi76uG05micpEL+gPGmAKYTschQw==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.40.2':
- resolution: {integrity: sha512-tD46wKHd+KJvsmije4bUskNuvWKFcTOIM9tZ/RrmIvcXnbi0YK/cKS9FzFtAm7Oxi2EhV5N2OpfFB348vSQRXA==}
- cpu: [x64]
- os: [linux]
-
'@rollup/rollup-linux-x64-musl@4.44.1':
resolution: {integrity: sha512-iAS4p+J1az6Usn0f8xhgL4PaU878KEtutP4hqw52I4IO6AGoyOkHCxcc4bqufv1tQLdDWFx8lR9YlwxKuv3/3g==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.40.2':
- resolution: {integrity: sha512-Bjv/HG8RRWLNkXwQQemdsWw4Mg+IJ29LK+bJPW2SCzPKOUaMmPEppQlu/Fqk1d7+DX3V7JbFdbkh/NMmurT6Pg==}
- cpu: [arm64]
- os: [win32]
-
'@rollup/rollup-win32-arm64-msvc@4.44.1':
resolution: {integrity: sha512-NtSJVKcXwcqozOl+FwI41OH3OApDyLk3kqTJgx8+gp6On9ZEt5mYhIsKNPGuaZr3p9T6NWPKGU/03Vw4CNU9qg==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.40.2':
- resolution: {integrity: sha512-dt1llVSGEsGKvzeIO76HToiYPNPYPkmjhMHhP00T9S4rDern8P2ZWvWAQUEJ+R1UdMWJ/42i/QqJ2WV765GZcA==}
- cpu: [ia32]
- os: [win32]
-
'@rollup/rollup-win32-ia32-msvc@4.44.1':
resolution: {integrity: sha512-JYA3qvCOLXSsnTR3oiyGws1Dm0YTuxAAeaYGVlGpUsHqloPcFjPg+X0Fj2qODGLNwQOAcCiQmHub/V007kiH5A==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.40.2':
- resolution: {integrity: sha512-bwspbWB04XJpeElvsp+DCylKfF4trJDa2Y9Go8O6A7YLX2LIKGcNK/CYImJN6ZP4DcuOHB4Utl3iCbnR62DudA==}
- cpu: [x64]
- os: [win32]
-
'@rollup/rollup-win32-x64-msvc@4.44.1':
resolution: {integrity: sha512-J8o22LuF0kTe7m+8PvW9wk3/bRq5+mRo5Dqo6+vXb7otCm3TPhYOJqOaQtGU9YMWQSL3krMnoOxMr0+9E6F3Ug==}
cpu: [x64]
@@ -3511,76 +4017,75 @@ packages:
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
- '@rspack/binding-darwin-arm64@1.4.4':
- resolution: {integrity: sha512-r5Vr1DcKXemYfJhNabRTpRonZvzyRq8H7ggDJqxWpIR+SGmtZ62hErSic8DBFeEF5k8SZc5in6L4YXUZgYaibg==}
+ '@rspack/binding-darwin-arm64@1.6.8':
+ resolution: {integrity: sha512-e8CTQtzaeGnf+BIzR7wRMUwKfIg0jd/sxMRc1Vd0bCMHBhSN9EsGoMuJJaKeRrSmy2nwMCNWHIG+TvT1CEKg+A==}
cpu: [arm64]
os: [darwin]
- '@rspack/binding-darwin-x64@1.4.4':
- resolution: {integrity: sha512-fyHjrug2xT3CU3nqzviL41I1PfJOv2/5T1+TdME8GzM5grWI1XFnCcXXocKhGuEpv6xHFdRZz9x7C9k7uQ4UCw==}
+ '@rspack/binding-darwin-x64@1.6.8':
+ resolution: {integrity: sha512-ku1XpTEPt6Za11zhpFWhfwrTQogcgi9RJrOUVC4FESiPO9aKyd4hJ+JiPgLY0MZOqsptK6vEAgOip+uDVXrCpg==}
cpu: [x64]
os: [darwin]
- '@rspack/binding-linux-arm64-gnu@1.4.4':
- resolution: {integrity: sha512-8UDmKFUgrt4w/sBHZtixBppAC+ObOwRbm3oSMhZMn+T3+BhBSDCUXhbGQDiKc7WG04cxyGhvwIocBckkdb1rSg==}
+ '@rspack/binding-linux-arm64-gnu@1.6.8':
+ resolution: {integrity: sha512-fvZX6xZPvBT8qipSpvkKMX5M7yd2BSpZNCZXcefw6gA3uC7LI3gu+er0LrDXY1PtPzVuHTyDx+abwWpagV3PiQ==}
cpu: [arm64]
os: [linux]
- '@rspack/binding-linux-arm64-musl@1.4.4':
- resolution: {integrity: sha512-Wtf9WR6VXYa1Y+uTa5uaTBcTX0eVzyM6d/0pLS6qJgwLYN4wOvi0VcOctLkUNaMpA72TsmGOnls8QBsDPLZRtg==}
+ '@rspack/binding-linux-arm64-musl@1.6.8':
+ resolution: {integrity: sha512-++XMKcMNrt59HcFBLnRaJcn70k3X0GwkAegZBVpel8xYIAgvoXT5+L8P1ExId/yTFxqedaz8DbcxQnNmMozviw==}
cpu: [arm64]
os: [linux]
- '@rspack/binding-linux-x64-gnu@1.4.4':
- resolution: {integrity: sha512-vc0e6ZkXJIVwHXDfkxFb62e/OpX0KuekjvD+rzs7A122Nt7R37YSilqGpZXWDlqlRjJlBxA73ORakJORsR3oww==}
+ '@rspack/binding-linux-x64-gnu@1.6.8':
+ resolution: {integrity: sha512-tv3BWkTE1TndfX+DsE1rSTg8fBevCxujNZ3MlfZ22Wfy9x1FMXTJlWG8VIOXmaaJ1wUHzv8S7cE2YUUJ2LuiCg==}
cpu: [x64]
os: [linux]
- '@rspack/binding-linux-x64-musl@1.4.4':
- resolution: {integrity: sha512-PL5iL2CbdDZwI6MBOfTQnryqT9esjPDZP6a2bxbT+IiyWyBoZjCXnjwYOB5dvIL4Hyrma8XJFwT5dAlFvGrzyQ==}
+ '@rspack/binding-linux-x64-musl@1.6.8':
+ resolution: {integrity: sha512-DCGgZ5/in1O3FjHWqXnDsncRy+48cMhfuUAAUyl0yDj1NpsZu9pP+xfGLvGcQTiYrVl7IH9Aojf1eShP/77WGA==}
cpu: [x64]
os: [linux]
- '@rspack/binding-wasm32-wasi@1.4.4':
- resolution: {integrity: sha512-/+uq1R+xzXknBDbcZWR0sbQwasZ2maPDSJ1rsnlBG6lQc447HbuwwZqjMpD8+TjpNunAS1E1mHuxql5IbL5UKg==}
+ '@rspack/binding-wasm32-wasi@1.6.8':
+ resolution: {integrity: sha512-VUwdhl/lI4m6o1OGCZ9JwtMjTV/yLY5VZTQdEPKb40JMTlmZ5MBlr5xk7ByaXXYHr6I+qnqEm73iMKQvg6iknw==}
cpu: [wasm32]
- '@rspack/binding-win32-arm64-msvc@1.4.4':
- resolution: {integrity: sha512-8advF9WPaq4HndjeYIsUX7GNPMqJ8vTalZLdF1bJ0c1PXyp3igyG6ruJeJ4vsXT3/HmVy1AmK3FzHRmy7AT5Mw==}
+ '@rspack/binding-win32-arm64-msvc@1.6.8':
+ resolution: {integrity: sha512-23YX7zlOZlub+nPGDBUzktb4D5D6ETUAluKjXEeHIZ9m7fSlEYBnGL66YE+3t1DHXGd0OqsdwlvrNGcyo6EXDQ==}
cpu: [arm64]
os: [win32]
- '@rspack/binding-win32-ia32-msvc@1.4.4':
- resolution: {integrity: sha512-I3BqOEu8gHoMvxECdHS+a+fPMipzO3yrI+0uBjzeJY7UpkD9hjNH6MU2xTI8FxUDY2XYNbJv1EJkXd72VzSpaA==}
+ '@rspack/binding-win32-ia32-msvc@1.6.8':
+ resolution: {integrity: sha512-cFgRE3APxrY4AEdooVk2LtipwNNT/9mrnjdC5lVbsIsz+SxvGbZR231bxDJEqP15+RJOaD07FO1sIjINFqXMEg==}
cpu: [ia32]
os: [win32]
- '@rspack/binding-win32-x64-msvc@1.4.4':
- resolution: {integrity: sha512-8Ju4ZSbBS6VLcgf53OTJcfMWYIR0pHSdHhfYZC16Vb5weWa89Hh0v3ClA0PqSt1hnAAFCMMOM9CcAPwk8P3gIg==}
+ '@rspack/binding-win32-x64-msvc@1.6.8':
+ resolution: {integrity: sha512-cIuhVsZYd3o3Neo1JSAhJYw6BDvlxaBoqvgwRkG1rs0ExFmEmgYyG7ip9pFKnKNWph/tmW3rDYypmEfjs1is7g==}
cpu: [x64]
os: [win32]
- '@rspack/binding@1.4.4':
- resolution: {integrity: sha512-Z4Ir04eLbq5BwkSF74h/dBtkbTpcGrMtmi5b6YqMvFtGrT12R6K3P58hnXmrxqypKncbW4rI0JJOYkQa+gMteg==}
+ '@rspack/binding@1.6.8':
+ resolution: {integrity: sha512-lUeL4mbwGo+nqRKqFDCm9vH2jv9FNMVt1X8jqayWRcOCPlj/2UVMEFgqjR7Pp2vlvnTKq//31KbDBJmDZq31RQ==}
- '@rspack/core@1.4.4':
- resolution: {integrity: sha512-TqEUHXbG5zNQ72djFfEg2A1/RoQF57QUhBU22ZLspbr3GcWmHou6noAa6i7lMn47RE4LWVnNyOCyMZyjXrrvYA==}
- engines: {node: '>=16.0.0'}
+ '@rspack/core@1.6.8':
+ resolution: {integrity: sha512-FolcIAH5FW4J2FET+qwjd1kNeFbCkd0VLuIHO0thyolEjaPSxw5qxG67DA7BZGm6PVcoiSgPLks1DL6eZ8c+fA==}
+ engines: {node: '>=18.12.0'}
peerDependencies:
'@swc/helpers': '>=0.5.1'
peerDependenciesMeta:
'@swc/helpers':
optional: true
- '@rspack/dev-server@1.1.3':
- resolution: {integrity: sha512-jWPeyiZiGpbLYGhwHvwxhaa4rsr8CQvsWkWslqeMLb2uXwmyy3UWjUR1q+AhAPnf0gs3lZoFZ1hjBQVecHKUvg==}
+ '@rspack/dev-server@1.1.4':
+ resolution: {integrity: sha512-kGHYX2jYf3ZiHwVl0aUEPBOBEIG1aWleCDCAi+Jg32KUu3qr/zDUpCEd0wPuHfLEgk0X0xAEYCS6JMO7nBStNQ==}
engines: {node: '>= 18.12.0'}
peerDependencies:
'@rspack/core': '*'
- '@rspack/lite-tapable@1.0.1':
- resolution: {integrity: sha512-VynGOEsVw2s8TAlLf/uESfrgfrq2+rcXB1muPJYBWbsm1Oa6r5qVQhjA5ggM6z/coYPrsVMgovl3Ff7Q7OCp1w==}
- engines: {node: '>=16.0.0'}
+ '@rspack/lite-tapable@1.1.0':
+ resolution: {integrity: sha512-E2B0JhYFmVAwdDiG14+DW0Di4Ze4Jg10Pc4/lILUrd5DRCaklduz2OvJ5HYQ6G+hd+WTzqQb3QnDNfK4yvAFYw==}
'@rspack/plugin-react-refresh@1.4.3':
resolution: {integrity: sha512-wZx4vWgy5oMEvgyNGd/oUKcdnKaccYWHCRkOqTdAPJC3WcytxhTX+Kady8ERurSBiLyQpoMiU3Iyd+F1Y2Arbw==}
@@ -3591,12 +4096,8 @@ packages:
webpack-hot-middleware:
optional: true
- '@schematics/angular@20.1.3':
- resolution: {integrity: sha512-+YxWsUKI3RJbYc0NrbLoJhncZPA7tUESwBvmsBmAUh1ca+6JbHXo32EoUqsAVX7HmF4IxyPSgu1JL0JxQV32rA==}
- 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'}
-
- '@schematics/angular@20.1.4':
- resolution: {integrity: sha512-TNpm15NKf4buxPYnGaB3JY2B/3sbL19SdlpPDxkgyVY8WDDeZX95m3Tz2qlKpsYxy2XCGUj4Sxh7zJNGC9e/4g==}
+ '@schematics/angular@21.0.3':
+ resolution: {integrity: sha512-XYOI2WOz8B+ydJ8iUHRXrUyjTx+YGdCQ8b2FlXnU46ksIctVU+zt4Zgu6462xeaPwOFYw6+r+TvaBAZ14a82Gw==}
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'}
'@shikijs/engine-oniguruma@1.29.2':
@@ -3617,29 +4118,29 @@ packages:
'@sideway/pinpoint@2.0.0':
resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==}
- '@sigstore/bundle@3.0.0':
- resolution: {integrity: sha512-XDUYX56iMPAn/cdgh/DTJxz5RWmqKV4pwvUAEKEWJl+HzKdCd/24wUa9JYNMlDSCb7SUHAdtksxYX779Nne/Zg==}
- engines: {node: ^18.17.0 || >=20.5.0}
-
- '@sigstore/core@2.0.0':
- resolution: {integrity: sha512-nYxaSb/MtlSI+JWcwTHQxyNmWeWrUXJJ/G4liLrGG7+tS4vAz6LF3xRXqLH6wPIVUoZQel2Fs4ddLx4NCpiIYg==}
- 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/protobuf-specs@0.3.2':
- resolution: {integrity: sha512-c6B0ehIWxMI8wiS/bj6rHMPqeFvngFV7cDU/MY+B16P9Z3Mp9k8L93eYZ7BYzSickzuqAQqAq0V956b3Ju6mLw==}
- engines: {node: ^16.14.0 || >=18.0.0}
+ '@sigstore/core@3.0.0':
+ resolution: {integrity: sha512-NgbJ+aW9gQl/25+GIEGYcCyi8M+ng2/5X04BMuIgoDfgvp18vDcoNHOQjQsG9418HGNYRxG3vfEXaR1ayD37gg==}
+ engines: {node: ^20.17.0 || >=22.9.0}
- '@sigstore/sign@3.0.0':
- resolution: {integrity: sha512-UjhDMQOkyDoktpXoc5YPJpJK6IooF2gayAr5LvXI4EL7O0vd58okgfRcxuaH+YTdhvb5aa1Q9f+WJ0c2sVuYIw==}
+ '@sigstore/protobuf-specs@0.5.0':
+ resolution: {integrity: sha512-MM8XIwUjN2bwvCg1QvrMtbBmpcSHrkhFSCu1D11NyPvDQ25HEc4oG5/OcQfd/Tlf/OxmKWERDj0zGE23jQaMwA==}
engines: {node: ^18.17.0 || >=20.5.0}
- '@sigstore/tuf@3.0.0':
- resolution: {integrity: sha512-9Xxy/8U5OFJu7s+OsHzI96IX/OzjF/zj0BSSaWhgJgTqtlBhQIV2xdrQI5qxLD7+CWWDepadnXAxzaZ3u9cvRw==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ '@sigstore/sign@4.0.1':
+ resolution: {integrity: sha512-KFNGy01gx9Y3IBPG/CergxR9RZpN43N+lt3EozEfeoyqm8vEiLxwRl3ZO5sPx3Obv1ix/p7FWOlPc2Jgwfp9PA==}
+ engines: {node: ^20.17.0 || >=22.9.0}
- '@sigstore/verify@2.0.0':
- resolution: {integrity: sha512-Ggtq2GsJuxFNUvQzLoXqRwS4ceRfLAJnrIHUDrzAD0GgnOhwujJkKkxM/s5Bako07c3WtAs/sZo5PJq7VHjeDg==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ '@sigstore/tuf@4.0.0':
+ resolution: {integrity: sha512-0QFuWDHOQmz7t66gfpfNO6aEjoFrdhkJaej/AOqb4kqWZVbPWFZifXZzkxyQBB1OwTbkhdT3LNpMFxwkTvf+2w==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ '@sigstore/verify@3.0.0':
+ resolution: {integrity: sha512-moXtHH33AobOhTZF8xcX1MpOFqdvfCk7v6+teJL8zymBiDXwEsQH6XG9HGx2VIxnJZNm4cNSzflTLDnQLmIdmw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
'@sinclair/typebox@0.27.8':
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
@@ -3682,6 +4183,9 @@ packages:
peerDependencies:
typescript: '>=4.8'
+ '@standard-schema/spec@1.1.0':
+ resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
+
'@svgr/babel-plugin-add-jsx-attribute@8.0.0':
resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==}
engines: {node: '>=14'}
@@ -3881,9 +4385,12 @@ 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.0.0':
+ resolution: {integrity: sha512-h5x5ga/hh82COe+GoD4+gKUeV4T3iaYOxqLt41GRKApinPI7DMidhCmNVTjKfhCWFJIGXaFJee07XczdT4jdZQ==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
+ '@tybys/wasm-util@0.10.1':
+ resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
'@tybys/wasm-util@0.9.0':
resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==}
@@ -4074,20 +4581,20 @@ packages:
'@types/yargs@17.0.33':
resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
- '@typescript-eslint/eslint-plugin@8.35.1':
- resolution: {integrity: sha512-9XNTlo7P7RJxbVeICaIIIEipqxLKguyh+3UbXuT2XQuFp6d8VOeDEGuz5IiX0dgZo8CiI6aOFLg4e8cF71SFVg==}
+ '@typescript-eslint/eslint-plugin@8.40.0':
+ resolution: {integrity: sha512-w/EboPlBwnmOBtRbiOvzjD+wdiZdgFeo17lkltrtn7X37vagKKWJABvyfsJXTlHe6XBzugmYgd4A4nW+k8Mixw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- '@typescript-eslint/parser': ^8.35.1
+ '@typescript-eslint/parser': ^8.40.0
eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/parser@8.35.1':
- resolution: {integrity: sha512-3MyiDfrfLeK06bi/g9DqJxP5pV74LNv4rFTyvGDmT3x2p1yp1lOd+qYZfiRPIOf/oON+WRZR5wxxuF85qOar+w==}
+ '@typescript-eslint/parser@8.40.0':
+ resolution: {integrity: sha512-jCNyAuXx8dr5KJMkecGmZ8KI61KBUhkCob+SD+C+I5+Y1FWI2Y3QmY4/cxMCC5WAsZqoEtEETVhUiUMIGCf6Bw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
+ typescript: '>=4.8.4 <6.0.0'
'@typescript-eslint/project-service@8.35.1':
resolution: {integrity: sha512-VYxn/5LOpVxADAuP3NrnxxHYfzVtQzLKeldIhDhzC8UHaiQvYlXvKuVho1qLduFbJjjy5U5bkGwa3rUGUb1Q6Q==}
@@ -4095,40 +4602,46 @@ packages:
peerDependencies:
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/scope-manager@8.19.0':
- resolution: {integrity: sha512-hkoJiKQS3GQ13TSMEiuNmSCvhz7ujyqD1x3ShbaETATHrck+9RaDdUbt+osXaUuns9OFwrDTTrjtwsU8gJyyRA==}
+ '@typescript-eslint/project-service@8.40.0':
+ resolution: {integrity: sha512-/A89vz7Wf5DEXsGVvcGdYKbVM9F7DyFXj52lNYUDS1L9yJfqjW/fIp5PgMuEJL/KeqVTe2QSbXAGUZljDUpArw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.0.0'
'@typescript-eslint/scope-manager@8.35.1':
resolution: {integrity: sha512-s/Bpd4i7ht2934nG+UoSPlYXd08KYz3bmjLEb7Ye1UVob0d1ENiT3lY8bsCmik4RqfSbPw9xJJHbugpPpP5JUg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/scope-manager@8.40.0':
+ resolution: {integrity: sha512-y9ObStCcdCiZKzwqsE8CcpyuVMwRouJbbSrNuThDpv16dFAj429IkM6LNb1dZ2m7hK5fHyzNcErZf7CEeKXR4w==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/tsconfig-utils@8.35.1':
resolution: {integrity: sha512-K5/U9VmT9dTHoNowWZpz+/TObS3xqC5h0xAIjXPw+MNcKV9qg6eSatEnmeAwkjHijhACH0/N7bkhKvbt1+DXWQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/type-utils@8.35.1':
- resolution: {integrity: sha512-HOrUBlfVRz5W2LIKpXzZoy6VTZzMu2n8q9C2V/cFngIC5U1nStJgv0tMV4sZPzdf4wQm9/ToWUFPMN9Vq9VJQQ==}
+ '@typescript-eslint/tsconfig-utils@8.40.0':
+ resolution: {integrity: sha512-jtMytmUaG9d/9kqSl/W3E3xaWESo4hFDxAIHGVW/WKKtQhesnRIJSAJO6XckluuJ6KDB5woD1EiqknriCtAmcw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
+ typescript: '>=4.8.4 <6.0.0'
- '@typescript-eslint/types@8.19.0':
- resolution: {integrity: sha512-8XQ4Ss7G9WX8oaYvD4OOLCjIQYgRQxO+qCiR2V2s2GxI9AUpo7riNwo6jDhKtTcaJjT8PY54j2Yb33kWtSJsmA==}
+ '@typescript-eslint/type-utils@8.40.0':
+ resolution: {integrity: sha512-eE60cK4KzAc6ZrzlJnflXdrMqOBaugeukWICO2rB0KNvwdIMaEaYiywwHMzA1qFpTxrLhN9Lp4E/00EgWcD3Ow==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <6.0.0'
'@typescript-eslint/types@8.35.1':
resolution: {integrity: sha512-q/O04vVnKHfrrhNAscndAn1tuQhIkwqnaW+eu5waD5IPts2eX1dgJxgqcPx5BX109/qAz7IG6VrEPTOYKCNfRQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@8.19.0':
- resolution: {integrity: sha512-WW9PpDaLIFW9LCbucMSdYUuGeFUz1OkWYS/5fwZwTA+l2RwlWFdJvReQqMUMBw4yJWJOfqd7An9uwut2Oj8sLw==}
+ '@typescript-eslint/types@8.40.0':
+ resolution: {integrity: sha512-ETdbFlgbAmXHyFPwqUIYrfc12ArvpBhEVgGAxVYSwli26dn8Ko+lIo4Su9vI9ykTZdJn+vJprs/0eZU0YMAEQg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- peerDependencies:
- typescript: '>=4.8.4 <5.8.0'
'@typescript-eslint/typescript-estree@8.35.1':
resolution: {integrity: sha512-Vvpuvj4tBxIka7cPs6Y1uvM7gJgdF5Uu9F+mBJBPY4MhvjrjWGK4H0lVgLJd/8PWZ23FTqsaJaLEkBCFUk8Y9g==}
@@ -4136,12 +4649,11 @@ packages:
peerDependencies:
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/utils@8.19.0':
- resolution: {integrity: sha512-PTBG+0oEMPH9jCZlfg07LCB2nYI0I317yyvXGfxnvGvw4SHIOuRnQ3kadyyXY6tGdChusIHIbM5zfIbp4M6tCg==}
+ '@typescript-eslint/typescript-estree@8.40.0':
+ resolution: {integrity: sha512-k1z9+GJReVVOkc1WfVKs1vBrR5MIKKbdAjDTPvIK3L8De6KbFfPFt6BKpdkdk7rZS2GtC/m6yI5MYX+UsuvVYQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.8.0'
+ typescript: '>=4.8.4 <6.0.0'
'@typescript-eslint/utils@8.35.1':
resolution: {integrity: sha512-lhnwatFmOFcazAsUm3ZnZFpXSxiwoa1Lj50HphnDe1Et01NF4+hrdXONSUHIcbVu2eFb1bAf+5yjXkGVkXBKAQ==}
@@ -4150,14 +4662,21 @@ packages:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/visitor-keys@8.19.0':
- resolution: {integrity: sha512-mCFtBbFBJDCNCWUl5y6sZSCHXw1DEFEk3c/M3nRK2a4XUB8StGFtmcEMizdjKuBzB6e/smJAAWYug3VrdLMr1w==}
+ '@typescript-eslint/utils@8.40.0':
+ resolution: {integrity: sha512-Cgzi2MXSZyAUOY+BFwGs17s7ad/7L+gKt6Y8rAVVWS+7o6wrjeFN4nVfTpbE25MNcxyJ+iYUXflbs2xR9h4UBg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <6.0.0'
'@typescript-eslint/visitor-keys@8.35.1':
resolution: {integrity: sha512-VRwixir4zBWCSTP/ljEo091lbpypz57PoeAQ9imjG+vbeof9LplljsL1mos4ccG6H9IjfrVGM359RozUnuFhpw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/visitor-keys@8.40.0':
+ resolution: {integrity: sha512-8CZ47QwalyRjsypfwnbI3hKy5gJDPmrkLjkgMxhi0+DZZ2QNx2naS6/hWoVYUHU7LU2zleF68V9miaVZvhFfTA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@ungap/structured-clone@1.3.0':
resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
@@ -4328,9 +4847,9 @@ packages:
resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==}
hasBin: true
- abbrev@2.0.0:
- resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.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==}
@@ -4340,6 +4859,12 @@ packages:
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'}
+ peerDependencies:
+ acorn: ^8.14.0
+
acorn-jsx@5.3.2:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
@@ -4359,6 +4884,11 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
+ acorn@8.15.0:
+ resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
+ engines: {node: '>=0.4.0'}
+ hasBin: true
+
address@1.2.2:
resolution: {integrity: sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==}
engines: {node: '>= 10.0.0'}
@@ -4420,8 +4950,12 @@ packages:
resolution: {integrity: sha512-84xBncKNPBK8Ae89F65+SyVcOihrIbm/3N7to+GpRBHEUXGjA3ydWTMpcRW6jmFzkBQ/eqYy/y+J+NBpJWYjBg==}
engines: {node: '>= 14.0.0'}
- angular-eslint@20.1.1:
- resolution: {integrity: sha512-sJ/7vdBMmmYGq5054UHfBXCWHABo79bPbNiXVznqBu6mV85RZsT+IBV1JKLHmV4JtfHoNx1ElkSL2hR3ZeJbkQ==}
+ algoliasearch@5.40.1:
+ resolution: {integrity: sha512-iUNxcXUNg9085TJx0HJLjqtDE0r1RZ0GOGrt8KNQqQT5ugu8lZsHuMUYW/e0lHhq6xBvmktU9Bw4CXP9VQeKrg==}
+ engines: {node: '>= 14.0.0'}
+
+ angular-eslint@21.0.1:
+ resolution: {integrity: sha512-YZT5SAYXv3zxTcCwjuAJb7D8tOnRyF+a7Hrn4niLAihH+DowBocOAvhWyjCDKEULNGDszcKZukaDMzp2S18I5A==}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '*'
@@ -4455,10 +4989,6 @@ packages:
resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
engines: {node: '>=12'}
- ansi-styles@3.2.1:
- resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
- engines: {node: '>=4'}
-
ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
@@ -4536,8 +5066,8 @@ packages:
peerDependencies:
postcss: ^8.1.0
- axios@1.10.0:
- resolution: {integrity: sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw==}
+ axios@1.13.2:
+ resolution: {integrity: sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==}
axobject-query@4.1.0:
resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
@@ -4588,16 +5118,31 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-polyfill-corejs2@0.4.14:
+ resolution: {integrity: sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
babel-plugin-polyfill-corejs3@0.11.1:
resolution: {integrity: sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-polyfill-corejs3@0.13.0:
+ resolution: {integrity: sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
babel-plugin-polyfill-regenerator@0.6.2:
resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-polyfill-regenerator@0.6.5:
+ resolution: {integrity: sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==}
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
babel-plugin-transform-typescript-metadata@0.3.2:
resolution: {integrity: sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==}
peerDependencies:
@@ -4627,6 +5172,10 @@ packages:
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
+ baseline-browser-mapping@2.9.9:
+ resolution: {integrity: sha512-V8fbOCSeOFvlDj7LLChUcqbZrdKD9RU/VR260piF1790vT0mfLSwGc/Qzxv3IqiTukOpNtItePa0HBpMAj7MDg==}
+ hasBin: true
+
basic-auth@2.0.1:
resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==}
engines: {node: '>= 0.8'}
@@ -4634,8 +5183,8 @@ packages:
batch@0.6.1:
resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==}
- beasties@0.3.4:
- resolution: {integrity: sha512-NmzN1zN1cvGccXFyZ73335+ASXwBlVWcUPssiUDIlFdfyatHPRRufjCd5w8oPaQPvVnf9ELklaCGb1gi9FBwIw==}
+ beasties@0.3.5:
+ resolution: {integrity: sha512-NaWu+f4YrJxEttJSm16AzMIFtVldCvaJ68b1L098KpqXmxt9xOLtKoLkKxb8ekhOrLqEJAbvT6n6SEvB/sac7A==}
engines: {node: '>=14.0.0'}
big.js@5.2.2:
@@ -4690,6 +5239,11 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
+ browserslist@4.28.1:
+ resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==}
+ engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
+ hasBin: true
+
bs-logger@0.2.6:
resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==}
engines: {node: '>= 6'}
@@ -4723,13 +5277,9 @@ 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}
-
- cache-content-type@1.0.1:
- resolution: {integrity: sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==}
- engines: {node: '>= 6.0.0'}
+ cacache@20.0.3:
+ resolution: {integrity: sha512-3pUp4e8hv07k1QlijZu6Kn7c9+ZpWWk4j3F8N3xPuCExULobqJydKYOTj1FTq58srkJsXvO7LbGAH4C0ZU3WGw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
cacheable-lookup@7.0.0:
resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==}
@@ -4783,13 +5333,12 @@ packages:
caniuse-lite@1.0.30001726:
resolution: {integrity: sha512-VQAUIUzBiZ/UnlM28fSp2CRF3ivUn1BWEvxMcVTNwpw91Py1pGbPIyIKtd+tzct9C3ouceCVdGAXxZOpZAsgdw==}
+ caniuse-lite@1.0.30001760:
+ resolution: {integrity: sha512-7AAMPcueWELt1p3mi13HR/LHH0TJLT11cnwDJEs3xA4+CK/PLKeO9Kl1oru24htkyUKtkGCvAx4ohB0Ttry8Dw==}
+
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
- chalk@2.4.2:
- resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
- engines: {node: '>=4'}
-
chalk@3.0.0:
resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==}
engines: {node: '>=8'}
@@ -4798,14 +5347,14 @@ packages:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
- chalk@5.3.0:
- resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
- engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
-
chalk@5.4.1:
resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+ chalk@5.6.2:
+ resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==}
+ engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
+
char-regex@1.0.2:
resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==}
engines: {node: '>=10'}
@@ -4822,8 +5371,8 @@ packages:
character-reference-invalid@2.0.1:
resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==}
- chardet@0.7.0:
- resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
+ chardet@2.1.1:
+ resolution: {integrity: sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==}
cheerio-select@2.1.0:
resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==}
@@ -4840,10 +5389,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'}
@@ -4891,6 +5436,10 @@ packages:
resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
engines: {node: '>=6'}
+ cli-spinners@3.3.0:
+ resolution: {integrity: sha512-/+40ljC3ONVnYIttjMWrlL51nItDAbBrq2upN8BPyvGU/2n5Oxw3tbNwORCaNuNqLJnxGqOfjUuhsv7l5Q4IsQ==}
+ engines: {node: '>=18.20'}
+
cli-table3@0.6.5:
resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==}
engines: {node: 10.* || >= 12.*}
@@ -4899,6 +5448,10 @@ packages:
resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==}
engines: {node: '>=18'}
+ cli-truncate@5.1.1:
+ resolution: {integrity: sha512-SroPvNHxUnk+vIW/dOSfNqdy1sPEFkrTk6TUtqLCnBlo3N7TNYYkzzN7uSD6+jVjrdO4+p8nH7JzH6cIvUem6A==}
+ engines: {node: '>=20'}
+
cli-width@4.1.0:
resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
engines: {node: '>= 12'}
@@ -4933,16 +5486,10 @@ packages:
collect-v8-coverage@1.0.2:
resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==}
- color-convert@1.9.3:
- resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
-
color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
- color-name@1.1.3:
- resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
-
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
@@ -5105,8 +5652,8 @@ packages:
peerDependencies:
webpack: ^5.1.0
- copy-webpack-plugin@13.0.0:
- resolution: {integrity: sha512-FgR/h5a6hzJqATDGd9YG41SeDViH+0bkHn6WNXCi5zKAZkeESeSxLySSsFLHqLEVCh0E+rITmCf0dusXWYukeQ==}
+ copy-webpack-plugin@13.0.1:
+ resolution: {integrity: sha512-J+YV3WfhY6W/Xf9h+J1znYuqTye2xkBUIGyTPWuBAT27qajBa5mR4f8WBmfDY3YjRftT2kqZZiLi1qf0H+UOFw==}
engines: {node: '>= 18.12.0'}
peerDependencies:
webpack: ^5.1.0
@@ -5281,6 +5828,9 @@ packages:
css-select@5.1.0:
resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==}
+ css-select@6.0.0:
+ resolution: {integrity: sha512-rZZVSLle8v0+EY8QAkDWrKhpgt6SA5OtHsgBnsj6ZaLb5dmDVOWUDtQitd9ydxxvEjhewNudS6eTVU7uOyzvXw==}
+
css-tree@2.2.1:
resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
@@ -5293,6 +5843,10 @@ packages:
resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==}
engines: {node: '>= 6'}
+ css-what@7.0.0:
+ resolution: {integrity: sha512-wD5oz5xibMOPHzy13CyGmogB3phdvcDaB5t0W/Nr5Z2O/agcB8YwOz6e2Lsp10pNDzBoDO9nVa3RGs/2BttpHQ==}
+ engines: {node: '>= 6'}
+
cssdb@8.1.0:
resolution: {integrity: sha512-BQN57lfS4dYt2iL0LgyrlDbefZKEtUyrO8rbzrbGrqBk6OoyNTQLF+porY9DrpDBjLo4NEvj2IJttC7vf3x+Ew==}
@@ -5613,6 +6167,9 @@ packages:
electron-to-chromium@1.5.179:
resolution: {integrity: sha512-UWKi/EbBopgfFsc5k61wFpV7WrnnSlSzW/e2XcBmS6qKYTivZlLtoll5/rdqRTxGglGHkmkW0j0pFNJG10EUIQ==}
+ electron-to-chromium@1.5.267:
+ resolution: {integrity: sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==}
+
emittery@0.13.1:
resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==}
engines: {node: '>=12'}
@@ -5654,6 +6211,10 @@ packages:
resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
engines: {node: '>=10.13.0'}
+ enhanced-resolve@5.18.4:
+ resolution: {integrity: sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==}
+ engines: {node: '>=10.13.0'}
+
enquirer@2.3.6:
resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
engines: {node: '>=8.6'}
@@ -5690,10 +6251,6 @@ packages:
error-stack-parser@2.1.4:
resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
- es-define-property@1.0.0:
- resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
- engines: {node: '>= 0.4'}
-
es-define-property@1.0.1:
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
engines: {node: '>= 0.4'}
@@ -5705,10 +6262,17 @@ packages:
es-module-lexer@1.5.4:
resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==}
+ es-module-lexer@2.0.0:
+ resolution: {integrity: sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==}
+
es-object-atoms@1.1.1:
resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
engines: {node: '>= 0.4'}
+ es-set-tostringtag@2.1.0:
+ resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
+ engines: {node: '>= 0.4'}
+
esast-util-from-estree@2.0.0:
resolution: {integrity: sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==}
@@ -5720,11 +6284,26 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ esbuild-wasm@0.26.0:
+ resolution: {integrity: sha512-9rZuermDo9ZbWvKBv/vDRaRciCpR4L3rEbZLDs5kDq3TrCHRQZaQipQeV9wK/btpLBzNUBujTrd1uorDxbL/GA==}
+ engines: {node: '>=18'}
+ hasBin: true
+
esbuild@0.25.5:
resolution: {integrity: sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==}
engines: {node: '>=18'}
hasBin: true
+ esbuild@0.26.0:
+ resolution: {integrity: sha512-3Hq7jri+tRrVWha+ZeIVhl4qJRha/XjRNSopvTsOaCvfPHrflTYTcUFcEjMKdxofsXXsdc4zjg5NOTnL4Gl57Q==}
+ engines: {node: '>=18'}
+ hasBin: true
+
+ esbuild@0.27.2:
+ resolution: {integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==}
+ engines: {node: '>=18'}
+ hasBin: true
+
escalade@3.2.0:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
@@ -5785,6 +6364,10 @@ packages:
resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ eslint-scope@9.0.0:
+ resolution: {integrity: sha512-+Yh0LeQKq+mW/tQArNj67tljR3L1HajDTQPuZOEwC00oBdoIDQrr89yBgjAlzAwRrY/5zDkM3v99iGHwz9y0dw==}
+ engines: {node: ^20.19.0 || ^22.13.0 || >=24}
+
eslint-visitor-keys@3.4.3:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -5941,10 +6524,6 @@ packages:
extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
- external-editor@3.1.0:
- resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
- engines: {node: '>=4'}
-
fake-indexeddb@6.0.0:
resolution: {integrity: sha512-YEboHE5VfopUclOck7LncgIqskAqnv4q0EWbYCaxKKjAvO93c+TJIaBuGy8CBFdbg9nKdpN3AuPRwVBJ4k7NrQ==}
engines: {node: '>=18'}
@@ -5986,6 +6565,15 @@ packages:
picomatch:
optional: true
+ fdir@6.5.0:
+ resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ picomatch: ^3 || ^4
+ peerDependenciesMeta:
+ picomatch:
+ optional: true
+
feed@4.2.2:
resolution: {integrity: sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==}
engines: {node: '>=0.4.0'}
@@ -6119,8 +6707,8 @@ packages:
resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==}
engines: {node: '>= 14.17'}
- form-data@4.0.0:
- resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
+ form-data@4.0.5:
+ resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
engines: {node: '>= 6'}
format@0.2.2:
@@ -6164,10 +6752,6 @@ packages:
resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==}
engines: {node: '>=10'}
- 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}
@@ -6199,14 +6783,10 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-east-asian-width@1.2.0:
- resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==}
+ get-east-asian-width@1.4.0:
+ resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==}
engines: {node: '>=18'}
- get-intrinsic@1.2.4:
- resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
- engines: {node: '>= 0.4'}
-
get-intrinsic@1.3.0:
resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
engines: {node: '>= 0.4'}
@@ -6246,6 +6826,12 @@ packages:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
+ glob-to-regex.js@1.2.0:
+ resolution: {integrity: sha512-QMwlOQKU/IzqMUOAZWubUOT8Qft+Y0KQWnX9nK3ch0CJg0tTp4TvGZsTfudYKv2NzoQSyPcnA6TYeIQ3jGichQ==}
+ engines: {node: '>=10.0'}
+ peerDependencies:
+ tslib: '2'
+
glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
@@ -6253,6 +6839,10 @@ packages:
resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
hasBin: true
+ glob@13.0.0:
+ resolution: {integrity: sha512-tvZgpqk6fz4BaNZ66ZsRaZnbHvP/jG3uKJvAZOwEVUL4RTA5nJeeLYfyN9/VA8NX/V3IBG+hkeuGpKjvELkVhA==}
+ engines: {node: 20 || >=22}
+
glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
deprecated: Glob versions prior to v9 are no longer supported
@@ -6305,9 +6895,6 @@ packages:
resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- gopd@1.0.1:
- resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
-
gopd@1.2.0:
resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
engines: {node: '>= 0.4'}
@@ -6339,10 +6926,6 @@ packages:
harmony-reflect@1.6.2:
resolution: {integrity: sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==}
- has-flag@3.0.0:
- resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
- engines: {node: '>=4'}
-
has-flag@4.0.0:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
@@ -6350,14 +6933,6 @@ packages:
has-property-descriptors@1.0.2:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
- has-proto@1.0.3:
- resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
- engines: {node: '>= 0.4'}
-
- has-symbols@1.0.3:
- resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
- engines: {node: '>= 0.4'}
-
has-symbols@1.1.0:
resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
engines: {node: '>= 0.4'}
@@ -6412,13 +6987,9 @@ packages:
resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==}
engines: {node: '>=0.10.0'}
- hosted-git-info@7.0.2:
- resolution: {integrity: sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==}
- engines: {node: ^16.14.0 || >=18.0.0}
-
- hosted-git-info@8.0.2:
- resolution: {integrity: sha512-sYKnA7eGln5ov8T8gnYlkSOxFJvywzEx9BueN6xo/GKO8PGiI6uK6xx+DIGe45T3bdVjLAQDQW1aicT8z8JwQg==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ hosted-git-info@9.0.2:
+ resolution: {integrity: sha512-M422h7o/BR3rmCQ8UHi7cyyMqKltdP9Uo+J2fXK+RSAY+wTcKOIRyhTuKv4qn+DJf3g+PL890AzId5KZpX+CBg==}
+ engines: {node: ^20.17.0 || >=22.9.0}
hpack.js@2.1.6:
resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==}
@@ -6559,6 +7130,10 @@ packages:
resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==}
engines: {node: '>=0.10.0'}
+ iconv-lite@0.7.1:
+ resolution: {integrity: sha512-2Tth85cXwGFHfvRgZWszZSvdo+0Xsqmw8k8ZwxScfcBneNUraK+dxRxRm24nszx80Y0TVio8kKLt5sLE7ZCLlw==}
+ engines: {node: '>=0.10.0'}
+
icss-utils@5.1.0:
resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==}
engines: {node: ^10 || ^12 || >= 14}
@@ -6653,6 +7228,10 @@ 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}
+
injection-js@2.4.0:
resolution: {integrity: sha512-6jiJt0tCAo9zjHbcwLiPL+IuNe9SQ6a9g0PEzafThW3fOQi0mrmiJGBJvDD6tmhPh8cQHIQtCOrJuBfQME4kPA==}
@@ -6695,10 +7274,6 @@ packages:
resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
hasBin: true
- is-core-module@2.15.0:
- resolution: {integrity: sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==}
- engines: {node: '>= 0.4'}
-
is-core-module@2.16.1:
resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
engines: {node: '>= 0.4'}
@@ -6740,10 +7315,6 @@ packages:
resolution: {integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==}
engines: {node: '>=6'}
- is-generator-function@1.0.10:
- resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
- engines: {node: '>= 0.4'}
-
is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
@@ -6845,10 +7416,6 @@ 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'}
@@ -7009,15 +7576,15 @@ packages:
jest-resolve:
optional: true
- jest-preset-angular@15.0.0:
- resolution: {integrity: sha512-sNf5tGwnPALDEI4R3Z10WXbh3jjyHnw5UtQPz306oStCvwy9rCB148nmIEkdll4MltWB+fQccVLHQeX/f0Zy9A==}
+ jest-preset-angular@16.0.0:
+ resolution: {integrity: sha512-FVo98EZiJ9cwHeteJozCCIkgJecytt1tu0t8DrAMTyyQ4x/seeZmctkWXP0J9uGyARS0Kcwd+f2YeKqKQOB2yA==}
engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0}
peerDependencies:
- '@angular/compiler-cli': '>=18.0.0 <21.0.0'
- '@angular/core': '>=18.0.0 <21.0.0'
- '@angular/platform-browser-dynamic': '>=18.0.0 <21.0.0'
+ '@angular/compiler-cli': '>=19.0.0 <22.0.0'
+ '@angular/core': '>=19.0.0 <22.0.0'
+ '@angular/platform-browser': '>=19.0.0 <22.0.0'
+ '@angular/platform-browser-dynamic': '>=19.0.0 <22.0.0'
jest: ^30.0.0
- jest-environment-jsdom: ^30.0.0
jsdom: '>=26.0.0'
typescript: '>=5.5'
@@ -7087,9 +7654,20 @@ packages:
resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
hasBin: true
+ jiti@2.4.2:
+ resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==}
+ hasBin: true
+
+ jiti@2.6.1:
+ resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
+ hasBin: true
+
joi@17.13.3:
resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==}
+ jose@6.1.3:
+ resolution: {integrity: sha512-0TpaTfihd4QMNwrz/ob2Bp7X04yuxJkjRGi4aKmOqwhov54i6u79oCv7T+C7lo70MKH6BesI3vscD1yb/yzKXQ==}
+
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -7129,9 +7707,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==}
@@ -7173,6 +7751,7 @@ packages:
keygrip@1.1.0:
resolution: {integrity: sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==}
engines: {node: '>= 0.6'}
+ deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
@@ -7192,13 +7771,9 @@ packages:
koa-compose@4.1.0:
resolution: {integrity: sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==}
- koa-convert@2.0.0:
- resolution: {integrity: sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==}
- engines: {node: '>= 10'}
-
- koa@2.16.1:
- resolution: {integrity: sha512-umfX9d3iuSxTQP4pnzLOz0HKnPg0FaUUIKcye2lOiz3KPu1Y3M3xlz76dISdFPQs37P9eJz1wUpcTS6KDPn9fA==}
- engines: {node: ^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4}
+ koa@3.0.3:
+ resolution: {integrity: sha512-MeuwbCoN1daWS32/Ni5qkzmrOtQO2qrnfdxDHjrm6s4b59yG4nexAJ0pTEFyzjLp0pBVO80CZp0vW8Ze30Ebow==}
+ engines: {node: '>= 18'}
latest-version@7.0.0:
resolution: {integrity: sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==}
@@ -7232,6 +7807,11 @@ packages:
engines: {node: '>=14'}
hasBin: true
+ less@4.4.2:
+ resolution: {integrity: sha512-j1n1IuTX1VQjIy3tT7cyGbX7nvQOsFLoIqobZv4ttI5axP923gA44zUj6miiA6R5Aoms4sEGVIIcucXUbRI14g==}
+ engines: {node: '>=14'}
+ hasBin: true
+
leven@3.1.0:
resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==}
engines: {node: '>=6'}
@@ -7271,18 +7851,22 @@ packages:
resolution: {integrity: sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==}
engines: {node: '>=18.0.0'}
- listr2@8.3.3:
- resolution: {integrity: sha512-LWzX2KsqcB1wqQ4AHgYb4RsDXauQiqhjLk+6hjbaeHG4zpjjVAB6wC/gz6X0l+Du1cN3pUB5ZlrvTbhGSNnUQQ==}
- engines: {node: '>=18.0.0'}
+ listr2@9.0.5:
+ resolution: {integrity: sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==}
+ engines: {node: '>=20.0.0'}
- lmdb@3.4.1:
- resolution: {integrity: sha512-hoG9RIv42kdGJiieyElgWcKCTaw5S6Jqwyd1gLSVdsJ3+8MVm8e4yLronThiRJI9DazFAAs9xfB9nWeMQ2DWKA==}
+ lmdb@3.4.3:
+ resolution: {integrity: sha512-GWV1kVi6uhrXWqe+3NXWO73OYe8fto6q8JMo0HOpk1vf8nEyFWgo4CSNJpIFzsOxOrysVUlcO48qRbQfmKd1gA==}
hasBin: true
loader-runner@4.3.0:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
+ loader-runner@4.3.1:
+ resolution: {integrity: sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==}
+ engines: {node: '>=6.11.5'}
+
loader-utils@2.0.4:
resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
engines: {node: '>=8.9.0'}
@@ -7350,8 +7934,8 @@ packages:
resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
engines: {node: '>=10'}
- log-symbols@6.0.0:
- resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==}
+ log-symbols@7.0.1:
+ resolution: {integrity: sha512-ja1E3yCr9i/0hmBVaM0bfwDjnGy8I/s6PP4DFp+yP+a+mrHO4Rm7DtmnqROTUkHIkqffC84YY7AeqX6oFk0WFg==}
engines: {node: '>=18'}
log-update@6.1.0:
@@ -7382,6 +7966,10 @@ packages:
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
+ lru-cache@11.2.4:
+ resolution: {integrity: sha512-B5Y16Jr9LB9dHVkh6ZevG+vAbOsNOYCX+sXvFWFu7B3Iz5mijW3zdbMyhsh8ANd2mSWBYdJgnqi+mL7/LrOPYg==}
+ engines: {node: 20 || >=22}
+
lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
@@ -7395,6 +7983,9 @@ packages:
magic-string@0.30.17:
resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
+ magic-string@0.30.19:
+ resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==}
+
make-dir@2.1.0:
resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
engines: {node: '>=6'}
@@ -7410,9 +8001,9 @@ packages:
make-error@1.3.6:
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
- 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.3:
+ resolution: {integrity: sha512-iyyEpDty1mwW3dGlYXAJqC/azFn5PPvgKVwXayOGBSmKLxhKZ9fg4qIan2ePpp1vJIwfFiO34LAPZgq9SZW9Aw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
makeerror@1.0.12:
resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
@@ -7510,9 +8101,8 @@ packages:
resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==}
engines: {node: '>= 4.0.0'}
- memfs@4.17.2:
- resolution: {integrity: sha512-NgYhCOWgovOXSzvYgUW0LQ7Qy72rWQMGGFJDoWg4G30RHd3z77VbYdtJ4fembJXBy8pMIUA31XNAupobOQlwdg==}
- engines: {node: '>= 4.0.0'}
+ memfs@4.51.1:
+ resolution: {integrity: sha512-Eyt3XrufitN2ZL9c/uIRMyDwXanLI88h/L3MoWqNY747ha3dMR9dWqp8cRT5ntjZ0U1TNuq4U91ZXK0sMBjYOQ==}
meow@12.1.1:
resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==}
@@ -7733,11 +8323,17 @@ packages:
peerDependencies:
webpack: ^5.0.0
+ mini-css-extract-plugin@2.9.4:
+ resolution: {integrity: sha512-ZWYT7ln73Hptxqxk2DxPU9MmapXRhxkJD6tkSR04dnQxm8BGu2hzgKLugK5yySD97u/8yy7Ma7E76k9ZdvtjkQ==}
+ engines: {node: '>= 12.13.0'}
+ peerDependencies:
+ webpack: ^5.0.0
+
minimalistic-assert@1.0.1:
resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
- minimatch@10.0.3:
- resolution: {integrity: sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==}
+ minimatch@10.1.1:
+ resolution: {integrity: sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==}
engines: {node: 20 || >=22}
minimatch@3.0.8:
@@ -7765,9 +8361,9 @@ packages:
resolution: {integrity: sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==}
engines: {node: '>=16 || 14 >=14.17'}
- minipass-fetch@4.0.0:
- resolution: {integrity: sha512-2v6aXUXwLP1Epd/gc32HAMIWoczx+fZwEPRHm/VwtrJzRGwR1qGZXEYV3Zp8ZjjbwaZhMrM6uHV4KVkk+XCc2w==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ minipass-fetch@5.0.0:
+ resolution: {integrity: sha512-fiCdUALipqgPWrOVTz9fw0XhcazULXOSU6ie40DDbX1F49p1dBrSRBuswndTx1x3vEb/g0FT7vC4c4C2u/mh3A==}
+ engines: {node: ^20.17.0 || >=22.9.0}
minipass-flush@1.0.5:
resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
@@ -7785,31 +8381,22 @@ packages:
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'}
-
minizlib@3.0.1:
resolution: {integrity: sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==}
engines: {node: '>= 18'}
+ minizlib@3.1.0:
+ resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==}
+ engines: {node: '>= 18'}
+
mkdirp@0.5.6:
resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==}
hasBin: true
- mkdirp@1.0.4:
- resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
- engines: {node: '>=10'}
- hasBin: true
-
mkdirp@3.0.1:
resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==}
engines: {node: '>=10'}
@@ -7839,10 +8426,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}
@@ -7881,15 +8464,15 @@ packages:
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- ng-packagr@20.1.0:
- resolution: {integrity: sha512-objHk39HWnSSv54KD0Ct4A02rug6HiqbmXo1KJW39npzuVc37QWfiZy94afltH1zIx+mQqollmGaCmwibmagvQ==}
+ ng-packagr@21.0.1:
+ resolution: {integrity: sha512-IZGxuF226GF0d8FOZIfPvHsyBl53PrDEg/IB2+CVamsm3r4+gUw3mBp27eygpowBpdVLG0Sm2IbUiH4aSspzyA==}
engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0}
hasBin: true
peerDependencies:
- '@angular/compiler-cli': ^20.0.0 || ^20.1.0-next.0 || ^20.2.0-next.0
+ '@angular/compiler-cli': ^21.0.0-next || ^21.0.0
tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0
tslib: ^2.3.0
- typescript: '>=5.8 <5.9'
+ typescript: '>=5.9 <6.0'
peerDependenciesMeta:
tailwindcss:
optional: true
@@ -7927,9 +8510,9 @@ packages:
resolution: {integrity: sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==}
hasBin: true
- node-gyp@11.0.0:
- resolution: {integrity: sha512-zQS+9MTTeCMgY0F3cWPyJyRFAkVltQ1uXm+xXu/ES6KFgC6Czo1Seb9vQW2wNxSX2OrDTiqL0ojtkFxBQ0ypIw==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ node-gyp@12.1.0:
+ resolution: {integrity: sha512-W+RYA8jBnhSr2vrTtlPYPc1K+CSjGpVDRZxcqJcERZ8ND3A1ThWPHRwctTx3qC3oW99jt726jhdz3Y6ky87J4g==}
+ engines: {node: ^20.17.0 || >=22.9.0}
hasBin: true
node-int64@0.4.0:
@@ -7944,19 +8527,18 @@ packages:
node-releases@2.0.19:
resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
+ node-releases@2.0.27:
+ resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
+
node-schedule@2.1.1:
resolution: {integrity: sha512-OXdegQq03OmXEjt2hZP33W2YPs/E5BcFQks46+G2gAxs4gHOIVD1u7EqlYLYSKsaIpyKCK9Gbk0ta1/gjRSMRQ==}
engines: {node: '>=6'}
- nopt@8.0.0:
- resolution: {integrity: sha512-1L/fTJ4UmV/lUxT2Uf006pfZKTvAgCF+chz+0OgBHO8u2Z67pE7AaAUUj7CJy0lXqHmymUvGFt6NE9R3HER0yw==}
- 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-package-data@7.0.0:
- resolution: {integrity: sha512-k6U0gKRIuNCTkwHGZqblCfLfBRh+w1vI6tBo+IeJwq2M8FUiOqhX7GH+GArQGScA7azd1WfyRCvxoXDO3hQDIA==}
- engines: {node: ^18.17.0 || >=20.5.0}
-
normalize-path@3.0.0:
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
engines: {node: '>=0.10.0'}
@@ -7973,33 +8555,33 @@ packages:
resolution: {integrity: sha512-IxaQZDMsqfQ2Lz37VvyyEtKLe8FsRZuysmedy/N06TU1RyVppYKXrO4xIhR0F+7ubIBox6Q7nir6fQI3ej39iA==}
engines: {node: ^18.17.0 || >=20.5.0}
- npm-install-checks@7.1.1:
- resolution: {integrity: sha512-u6DCwbow5ynAX5BdiHQ9qvexme4U3qHW3MWe5NqH+NeBm0LbiH6zvGjNNew1fY+AZZUtVHbOPF3j7mJxbUzpXg==}
- 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-package-arg@11.0.1:
- resolution: {integrity: sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==}
- engines: {node: ^16.14.0 || >=18.0.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.1:
+ resolution: {integrity: sha512-6zqls5xFvJbgFjB1B2U6yITtyGBjDBORB7suI4zA4T/sZ1OmkMFlaQSNB/4K0LtXNA1t4OprAFxPisadK5O2ag==}
+ engines: {node: ^20.17.0 || >=22.9.0}
npm-packlist@10.0.1:
resolution: {integrity: sha512-vaC03b2PqJA6QqmwHi1jNU8fAPXEnnyv4j/W4PVfgm24C4/zZGSVut3z0YUeN0WIFCo1oGOL02+6LbvFK7JL4Q==}
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==}
@@ -8024,8 +8606,8 @@ packages:
nwsapi@2.2.21:
resolution: {integrity: sha512-o6nIY3qwiSXl7/LuOU0Dmuctd34Yay0yeuZRLFmDPrrdHpXKFndPj3hM+YEPVHYC5fx2otBx4Ilc/gyYSAUaIA==}
- nx@21.3.7:
- resolution: {integrity: sha512-/PwRGg6wH10V8pJHe3RJnizbxjNL0owLARCegup39sk0+m/G/qOfot5KqReWQR4YrtDpreSE7+tRWGCCovyE1A==}
+ nx@22.3.1:
+ resolution: {integrity: sha512-F15BEAsKIkJktsqdsC/TEC8c7cBaTvQ/a2t27aFPAdRYSkZfsuAWN4RANhTRs6809qH9m8YlD1eJ/ITG9RF6wQ==}
hasBin: true
peerDependencies:
'@swc-node/register': ^1.8.0
@@ -8082,11 +8664,8 @@ packages:
resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
engines: {node: '>=18'}
- only@0.0.2:
- resolution: {integrity: sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==}
-
- open@10.1.2:
- resolution: {integrity: sha512-cxN6aIDPz6rm8hbebcP7vrQNhvRcveZoJU72Y7vskh4oIm+BZwBECnx5nTmrlres1Qapvx27Qo1Auukpf8PKXw==}
+ open@10.2.0:
+ resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==}
engines: {node: '>=18'}
open@8.4.2:
@@ -8105,17 +8684,13 @@ packages:
resolution: {integrity: sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==}
engines: {node: '>=10'}
- ora@8.2.0:
- resolution: {integrity: sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==}
- engines: {node: '>=18'}
+ ora@9.0.0:
+ resolution: {integrity: sha512-m0pg2zscbYgWbqRR6ABga5c3sZdEon7bSgjnlXC64kxtxLOyjRcbbUkLj7HFyy/FTD+P2xdBWu8snGhYI0jc4A==}
+ engines: {node: '>=20'}
ordered-binary@1.5.3:
resolution: {integrity: sha512-oGFr3T+pYdTGJ+YFEILMpS3es+GiIbs9h/XQrclBXUtd44ey7XwfsMzM31f64I1SQOawDoDr/D823kNCADI8TA==}
- os-tmpdir@1.0.2:
- resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
- engines: {node: '>=0.10.0'}
-
p-cancelable@3.0.0:
resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==}
engines: {node: '>=12.20'}
@@ -8175,8 +8750,8 @@ packages:
resolution: {integrity: sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==}
engines: {node: '>=14.16'}
- pacote@21.0.0:
- resolution: {integrity: sha512-lcqexq73AMv6QNLo7SOpz0JJoaGdS3rBFgF122NZVl1bApo2mfu+XzUBU/X/XsiJu+iUmKpekRayqQYAs+PhkA==}
+ pacote@21.0.3:
+ resolution: {integrity: sha512-itdFlanxO0nmQv4ORsvA9K1wv40IPfB9OmWqfaJWvoJ30VKyHsqNgDVeG+TVhI7Gk7XW8slUy7cA9r6dF5qohw==}
engines: {node: ^20.17.0 || >=22.9.0}
hasBin: true
@@ -8205,14 +8780,14 @@ packages:
resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==}
engines: {node: '>=0.10.0'}
- parse5-html-rewriting-stream@7.1.0:
- resolution: {integrity: sha512-2ifK6Jb+ONoqOy5f+cYHsqvx1obHQdvIk13Jmt/5ezxP0U9p+fqd+R6O73KblGswyuzBYfetmsfK9ThMgnuPPg==}
+ 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==}
- 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@4.0.0:
resolution: {integrity: sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==}
@@ -8267,6 +8842,10 @@ packages:
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
engines: {node: '>=16 || 14 >=14.18'}
+ path-scurry@2.0.1:
+ resolution: {integrity: sha512-oWyT4gICAu+kaA7QWk/jvCHWarMKNs6pXOGWKDTr7cw4IGcUbW+PeTfbaQiLGheFRpjo6O9J0PmyMfQPjH71oA==}
+ engines: {node: 20 || >=22}
+
path-to-regexp@0.1.12:
resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
@@ -8327,6 +8906,10 @@ packages:
resolution: {integrity: sha512-9cE/BTA/xhDiyNUEj6EKWLEQC17fh/24ydYzQwcA7QdYh75K6kzL2GHvxDF5i9rFGtUaaKk7/u4xp07qiKXccQ==}
engines: {node: '>=20.x'}
+ piscina@5.1.3:
+ resolution: {integrity: sha512-0u3N7H4+hbr40KjuVn2uNhOcthu/9usKhnw5vT3J7ply79v3D3M8naI00el9Klcy16x557VsEkkUQaHCWFXC/g==}
+ engines: {node: '>=20.x'}
+
pkce-challenge@5.0.0:
resolution: {integrity: sha512-ueGLflrrnvwB3xuo/uGob5pd5FN7l0MsLf0Z87o/UQmRtwjvfylfc9MurIxRAWywCYTgrvpXBcqjV4OfCYGCIQ==}
engines: {node: '>=16.20.0'}
@@ -8614,8 +9197,8 @@ packages:
postcss: ^7.0.0 || ^8.0.1
webpack: ^5.0.0
- postcss-loader@8.1.1:
- resolution: {integrity: sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ==}
+ postcss-loader@8.2.0:
+ resolution: {integrity: sha512-tHX+RkpsXVcc7st4dSdDGliI+r4aAQDuv+v3vFYHixb6YgjreG5AG4SEB0kDK8u2s6htqEEpKlkhSBUTvWKYnA==}
engines: {node: '>= 18.12.0'}
peerDependencies:
'@rspack/core': 0.x || 1.x
@@ -8972,25 +9555,17 @@ packages:
resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==}
engines: {node: '>=6'}
- proc-log@3.0.0:
- resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
proc-log@5.0.0:
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-inflight@1.0.1:
- resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
- peerDependencies:
- bluebird: '*'
- peerDependenciesMeta:
- bluebird:
- optional: true
-
promise-retry@2.0.1:
resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
engines: {node: '>=10'}
@@ -9310,6 +9885,11 @@ packages:
engines: {node: '>= 0.4'}
hasBin: true
+ resolve@1.22.11:
+ resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
+ engines: {node: '>= 0.4'}
+ hasBin: true
+
resolve@1.22.8:
resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
hasBin: true
@@ -9351,6 +9931,11 @@ packages:
engines: {node: 14 >=14.20 || 16 >=16.20 || >=18}
hasBin: true
+ rolldown@1.0.0-beta.47:
+ resolution: {integrity: sha512-Mid74GckX1OeFAOYz9KuXeWYhq3xkXbMziYIC+ULVdUzPTG9y70OBSBQDQn9hQP8u/AfhuYw1R0BSg15nBI4Dg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+
rollup-plugin-dts@6.2.1:
resolution: {integrity: sha512-sR3CxYUl7i2CHa0O7bA45mCrgADyAQ0tVtGSqi3yvH28M+eg1+g5d7kQ9hLvEz5dorK3XVsH5L2jwHLQf72DzA==}
engines: {node: '>=16'}
@@ -9358,11 +9943,6 @@ packages:
rollup: ^3.29.4 || ^4
typescript: ^4.5 || ^5.0
- rollup@4.40.2:
- resolution: {integrity: sha512-tfUOg6DTP4rhQ3VjOO6B4wyrJnGOX85requAXvqYTHsOgb2TFJdZ3aWpT8W2kPoypSGP7dZUyzxJ9ee4buM5Fg==}
- engines: {node: '>=18.0.0', npm: '>=8.0.0'}
- hasBin: true
-
rollup@4.44.1:
resolution: {integrity: sha512-x8H8aPvD+xbl0Do8oez5f5o8eMS3trfCghc4HhLAnCkj7Vl0d1JWGs0UF/D886zLW2rOj2QymV/JcSSsw+XDNg==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
@@ -9375,9 +9955,6 @@ packages:
rrweb-cssom@0.8.0:
resolution: {integrity: sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==}
- rslog@1.2.9:
- resolution: {integrity: sha512-KSjM8jJKYYaKgI4jUGZZ4kdTBTM/EIGH1JnoB0ptMkzcyWaHeXW9w6JVLCYs37gh8sFZkLLqAyBb2sT02bqpcQ==}
-
rtlcss@4.3.0:
resolution: {integrity: sha512-FI+pHEn7Wc4NqKXMXFM+VAYKEj/mRIcW4h24YVwVtyjI+EqGrLc2Hx/Ny0lrZ21cBWU2goLy36eqMcNj3AQJig==}
engines: {node: '>=12.0.0'}
@@ -9532,6 +10109,11 @@ packages:
engines: {node: '>=14.0.0'}
hasBin: true
+ sass@1.93.2:
+ resolution: {integrity: sha512-t+YPtOQHpGW1QWsh1CHQ5cPIr9lbbGZLZnbihP/D/qZj/yuV68m8qarcV17nvkOX81BCrvzAlq2klCQFZghyTg==}
+ engines: {node: '>=14.0.0'}
+ hasBin: true
+
sax@1.4.1:
resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==}
@@ -9554,6 +10136,10 @@ packages:
resolution: {integrity: sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==}
engines: {node: '>= 10.13.0'}
+ schema-utils@4.3.3:
+ resolution: {integrity: sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==}
+ engines: {node: '>= 10.13.0'}
+
search-insights@2.17.3:
resolution: {integrity: sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==}
@@ -9593,6 +10179,11 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ semver@7.7.3:
+ resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
+ engines: {node: '>=10'}
+ hasBin: true
+
send@0.19.0:
resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
engines: {node: '>= 0.8.0'}
@@ -9679,9 +10270,9 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- sigstore@3.0.0:
- resolution: {integrity: sha512-PHMifhh3EN4loMcHCz6l3v/luzgT3za+9f8subGgeMNjbJjzH4Ij/YoX3Gvu+kaouJRIlVdTHHCREADYf+ZteA==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ sigstore@4.0.0:
+ resolution: {integrity: sha512-Gw/FgHtrLM9WP8P5lLcSGh9OQcrTruWCELAiS48ik1QbL0cH+dfjomiRTUE9zzz+D1N6rOLkwXUvVmXZAsNE0Q==}
+ engines: {node: ^20.17.0 || >=22.9.0}
sirv@2.0.4:
resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
@@ -9771,6 +10362,10 @@ packages:
resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
engines: {node: '>= 8'}
+ source-map@0.7.6:
+ resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==}
+ engines: {node: '>= 12'}
+
space-separated-tokens@2.0.2:
resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
@@ -9811,6 +10406,10 @@ packages:
resolution: {integrity: sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ==}
engines: {node: ^18.17.0 || >=20.5.0}
+ ssri@13.0.0:
+ resolution: {integrity: sha512-yizwGBpbCn4YomB2lzhZqrHLJoqFGXihNbib3ozhqF/cIp5ue+xSmOQrjNasEE62hFxsCcg/V/z23t4n8jMEng==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+
stack-utils@2.0.6:
resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
engines: {node: '>=10'}
@@ -9857,6 +10456,10 @@ packages:
resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
engines: {node: '>=18'}
+ string-width@8.1.0:
+ resolution: {integrity: sha512-Kxl3KJGb/gxkaUMOjRsQ8IrXiGW75O4E3RPjFIINOVH8AMl2SQ/yWdTzWwF3FevIX9LcMAjJW+GRwAlAbTSXdg==}
+ engines: {node: '>=20'}
+
string_decoder@1.1.1:
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
@@ -9878,6 +10481,10 @@ packages:
resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
engines: {node: '>=12'}
+ strip-ansi@7.1.2:
+ resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==}
+ engines: {node: '>=12'}
+
strip-bom-string@1.0.0:
resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==}
engines: {node: '>=0.10.0'}
@@ -9929,10 +10536,6 @@ packages:
engines: {node: '>=16'}
hasBin: true
- supports-color@5.5.0:
- resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
- engines: {node: '>=4'}
-
supports-color@7.2.0:
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
engines: {node: '>=8'}
@@ -9976,18 +10579,22 @@ packages:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
+ tapable@2.3.0:
+ resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
+ engines: {node: '>=6'}
+
tar-stream@2.2.0:
resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==}
engines: {node: '>=6'}
- tar@6.2.1:
- resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
- engines: {node: '>=10'}
-
tar@7.4.3:
resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==}
engines: {node: '>=18'}
+ tar@7.5.2:
+ resolution: {integrity: sha512-7NyxrTE4Anh8km8iEy7o0QYPs+0JKBTj5ZaqHg6B39erLg0qYXN3BijtShwbsNSvQ+LN75+KV+C4QR/f6Gwnpg==}
+ engines: {node: '>=18'}
+
terser-webpack-plugin@5.3.14:
resolution: {integrity: sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==}
engines: {node: '>= 10.13.0'}
@@ -10004,11 +10611,32 @@ packages:
uglify-js:
optional: true
+ terser-webpack-plugin@5.3.16:
+ resolution: {integrity: sha512-h9oBFCWrq78NyWWVcSwZarJkZ01c2AyGrzs1crmHZO3QUg9D61Wu4NPjBy69n7JqylFF5y+CsUZYmYEIZ3mR+Q==}
+ engines: {node: '>= 10.13.0'}
+ peerDependencies:
+ '@swc/core': '*'
+ esbuild: '*'
+ uglify-js: '*'
+ webpack: ^5.1.0
+ peerDependenciesMeta:
+ '@swc/core':
+ optional: true
+ esbuild:
+ optional: true
+ uglify-js:
+ optional: true
+
terser@5.43.1:
resolution: {integrity: sha512-+6erLbBm0+LROX2sPXlUYx/ux5PyE9K/a92Wrt6oA+WDAoFTdpHE5tCYCI5PNzq2y8df4rA+QgHLJuR4jNymsg==}
engines: {node: '>=10'}
hasBin: true
+ terser@5.44.0:
+ resolution: {integrity: sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==}
+ engines: {node: '>=10'}
+ hasBin: true
+
test-exclude@6.0.0:
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
engines: {node: '>=8'}
@@ -10020,8 +10648,8 @@ packages:
text-table@0.2.0:
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
- thingies@1.21.0:
- resolution: {integrity: sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==}
+ thingies@2.5.0:
+ resolution: {integrity: sha512-s+2Bwztg6PhWUD7XMfeYm5qliDdSiZm7M7n8KjTkIsm3l/2lgVRc2/Gx/v+ZX8lT4FMA+i8aQvhcWylldc+ZNw==}
engines: {node: '>=10.18'}
peerDependencies:
tslib: ^2
@@ -10042,6 +10670,10 @@ packages:
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'}
+
tldts-core@6.1.86:
resolution: {integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==}
@@ -10049,10 +10681,6 @@ packages:
resolution: {integrity: sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==}
hasBin: true
- tmp@0.0.33:
- resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
- engines: {node: '>=0.6.0'}
-
tmp@0.2.3:
resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==}
engines: {node: '>=14.14'}
@@ -10083,8 +10711,8 @@ packages:
resolution: {integrity: sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==}
engines: {node: '>=18'}
- tree-dump@1.0.2:
- resolution: {integrity: sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ==}
+ tree-dump@1.1.0:
+ resolution: {integrity: sha512-rMuvhU4MCDbcbnleZTFezWsaZXRFemSqAM+7jPnzUl1fo9w3YEKOxAeui0fz3OI4EU4hf23iyA7uQRVko+UaBA==}
engines: {node: '>=10.0'}
peerDependencies:
tslib: '2'
@@ -10099,12 +10727,6 @@ packages:
trough@2.2.0:
resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
- ts-api-utils@1.3.0:
- resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
- engines: {node: '>=16'}
- peerDependencies:
- typescript: '>=4.2.0'
-
ts-api-utils@2.1.0:
resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==}
engines: {node: '>=18.12'}
@@ -10169,8 +10791,8 @@ packages:
'@swc/wasm':
optional: true
- tsconfig-paths-webpack-plugin@4.0.0:
- resolution: {integrity: sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==}
+ tsconfig-paths-webpack-plugin@4.2.0:
+ resolution: {integrity: sha512-zbem3rfRS8BgeNK50Zz5SIQgXzLafiHjOwUAvk/38/o1jHn/V5QAgVUcz884or7WYcPaH3N2CIfUc2u0ul7UcA==}
engines: {node: '>=10.13.0'}
tsconfig-paths@4.2.0:
@@ -10187,9 +10809,9 @@ packages:
resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==}
engines: {node: '>=0.6.x'}
- tuf-js@3.0.1:
- resolution: {integrity: sha512-+68OP1ZzSF84rTckf3FA95vJ1Zlx/uaXyiiKyPd1pA4rZNkpEvDAKmsu1xUSmbF/chCRYgZ6UZkDwC7PmzmAyA==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ tuf-js@4.0.0:
+ resolution: {integrity: sha512-Lq7ieeGvXDXwpoSmOSgLWVdsGGV9J4a77oDTAPe/Ltrqnnm/ETaRlBAQTH5JatEh8KXuE6sddf9qAv1Q2282Hg==}
+ engines: {node: ^20.17.0 || >=22.9.0}
type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
@@ -10246,26 +10868,30 @@ packages:
peerDependencies:
typescript: 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x
- typescript-eslint@8.35.1:
- resolution: {integrity: sha512-xslJjFzhOmHYQzSB/QTeASAHbjmxOGEP6Coh93TXmUBFQoJ1VU35UHIDmG06Jd6taf3wqqC1ntBnCMeymy5Ovw==}
+ typescript-eslint@8.40.0:
+ resolution: {integrity: sha512-Xvd2l+ZmFDPEt4oj1QEXzA4A2uUK6opvKu3eGN9aGjB8au02lIVcLyi375w94hHyejTOmzIU77L8ol2sRg9n7Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: '>=4.8.4 <5.9.0'
+ typescript: '>=4.8.4 <6.0.0'
typescript@5.6.3:
resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==}
engines: {node: '>=14.17'}
hasBin: true
- typescript@5.8.3:
- resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
+ typescript@5.9.3:
+ resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
engines: {node: '>=14.17'}
hasBin: true
uc.micro@2.1.0:
resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==}
+ undici@7.16.0:
+ resolution: {integrity: sha512-QEg3HPMll0o3t2ourKwOeUAZ159Kn9mx5pnzHRQO8+Wixmh88YdZRiIwat0iNzNNXn0yoEtXJqFpyW7eM8BV7g==}
+ engines: {node: '>=20.18.1'}
+
unicode-canonical-property-names-ecmascript@2.0.0:
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
engines: {node: '>=4'}
@@ -10297,13 +10923,13 @@ packages:
resolution: {integrity: sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==}
engines: {node: '>= 0.8.0'}
- unique-filename@4.0.0:
- resolution: {integrity: sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ unique-filename@5.0.0:
+ resolution: {integrity: sha512-2RaJTAvAb4owyjllTfXzFClJ7WsGxlykkPvCr9pA//LD9goVq+m4PPAeBgNodGZ7nSrntT/auWpJ6Y5IFXcfjg==}
+ engines: {node: ^20.17.0 || >=22.9.0}
- unique-slug@5.0.0:
- resolution: {integrity: sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg==}
- engines: {node: ^18.17.0 || >=20.5.0}
+ unique-slug@6.0.0:
+ resolution: {integrity: sha512-4Lup7Ezn8W3d52/xBhZBVdx323ckxa7DEvd9kPQHppTkLoJXw6ltrBCyj5pnrxj0qKDxYMJ56CoxNuFCscdTiw==}
+ engines: {node: ^20.17.0 || >=22.9.0}
unique-string@3.0.0:
resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==}
@@ -10358,6 +10984,12 @@ packages:
peerDependencies:
browserslist: '>= 4.21.0'
+ update-browserslist-db@1.2.3:
+ resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+
update-notifier@6.0.2:
resolution: {integrity: sha512-EDxhTEVPZZRLWYcJ4ZXjGFN0oP7qYvbXWzEgRm/Yql4dHX5wDbvh89YHP6PK1lzZJYrMtXUuZZz8XGK+U6U1og==}
engines: {node: '>=14.16'}
@@ -10406,10 +11038,6 @@ packages:
validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
- validate-npm-package-name@5.0.1:
- resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
validate-npm-package-name@6.0.0:
resolution: {integrity: sha512-d7KLgL1LD3U3fgnvWEY1cQXoO/q6EQ1BSz48Sa149V/5zVTAbgmZIpyI8TRi6U9/JNyeYLlTKsEMPtLC27RFUg==}
engines: {node: ^18.17.0 || >=20.5.0}
@@ -10433,8 +11061,8 @@ packages:
vfile@6.0.3:
resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
- vite@7.0.6:
- resolution: {integrity: sha512-MHFiOENNBd+Bd9uvc8GEsIzdkn1JxMmEeYX35tI3fv0sJBUTfW5tQsoaOwuY4KhBI09A3dUJ/DXf2yxPVPUceg==}
+ vite@7.2.2:
+ resolution: {integrity: sha512-BxAKBWmIbrDgrokdGZH1IgkIk/5mMHDreLDmCJ0qpyJaAteP8NvMhkwr/ZCQNqNH97bw/dANTE9PDzqwJghfMQ==}
engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
peerDependencies:
@@ -10518,8 +11146,8 @@ packages:
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
- webpack-dev-middleware@7.4.2:
- resolution: {integrity: sha512-xOO8n6eggxnwYpy1NlzUKpvrjfJTvae5/D6WOK0S2LSo7vjmo5gCM1DbLUmFqrMTJP+W/0YZNctm7jasWvLuBA==}
+ webpack-dev-middleware@7.4.5:
+ resolution: {integrity: sha512-uxQ6YqGdE4hgDKNf7hUiPXOdtkXvBJXrfEGYSx7P7LC8hnUYGK70X6xQXUvXeNyBDDcsiQXpG2m3G9vxowaEuA==}
engines: {node: '>= 18.12.0'}
peerDependencies:
webpack: ^5.0.0
@@ -10569,6 +11197,10 @@ packages:
resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
engines: {node: '>=10.13.0'}
+ webpack-sources@3.3.3:
+ resolution: {integrity: sha512-yd1RBzSGanHkitROoPFd6qsrxt+oFhg/129YzheDGqeustzX0vTZJZsSsQjVQC4yzBQ56K55XU8gaNCtIzOnTg==}
+ engines: {node: '>=10.13.0'}
+
webpack-subresource-integrity@5.1.0:
resolution: {integrity: sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==}
engines: {node: '>= 12'}
@@ -10579,6 +11211,26 @@ packages:
html-webpack-plugin:
optional: true
+ webpack@5.102.1:
+ resolution: {integrity: sha512-7h/weGm9d/ywQ6qzJ+Xy+r9n/3qgp/thalBbpOi5i223dPXKi04IBtqPN9nTd+jBc7QKfvDbaBnFipYp4sJAUQ==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+ peerDependencies:
+ webpack-cli: '*'
+ peerDependenciesMeta:
+ webpack-cli:
+ optional: true
+
+ webpack@5.104.0:
+ resolution: {integrity: sha512-5DeICTX8BVgNp6afSPYXAFjskIgWGlygQH58bcozPOXgo2r/6xx39Y1+cULZ3gTxUYQP88jmwLj2anu4Xaq84g==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+ peerDependencies:
+ webpack-cli: '*'
+ peerDependenciesMeta:
+ webpack-cli:
+ optional: true
+
webpack@5.99.9:
resolution: {integrity: sha512-brOPwM3JnmOa+7kd3NsmOUOwbDAj8FT9xDsG3IW0MgbN9yZV7Oi/s/+MNQ/EcSMqw7qfoRyXPoeEWT8zLVdVGg==}
engines: {node: '>=10.13.0'}
@@ -10636,6 +11288,11 @@ packages:
engines: {node: ^18.17.0 || >=20.5.0}
hasBin: true
+ which@6.0.0:
+ resolution: {integrity: sha512-f+gEpIKMR9faW/JgAgPK1D7mekkFoqbmiwvNzuhsHetni20QSgzg9Vhn0g2JSJkkfehQnqdUAx7/e15qS1lPxg==}
+ engines: {node: ^20.17.0 || >=22.9.0}
+ hasBin: true
+
widest-line@4.0.1:
resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==}
engines: {node: '>=12'}
@@ -10697,6 +11354,10 @@ packages:
utf-8-validate:
optional: true
+ wsl-utils@0.1.0:
+ resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==}
+ engines: {node: '>=18'}
+
xdg-basedir@5.1.0:
resolution: {integrity: sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==}
engines: {node: '>=12'}
@@ -10759,10 +11420,6 @@ packages:
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'}
-
yn@3.1.1:
resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
engines: {node: '>=6'}
@@ -10775,20 +11432,24 @@ packages:
resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
engines: {node: '>=12.20'}
- yoctocolors-cjs@2.1.2:
- resolution: {integrity: sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==}
+ yoctocolors-cjs@2.1.3:
+ resolution: {integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==}
+ engines: {node: '>=18'}
+
+ yoctocolors@2.1.2:
+ resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==}
engines: {node: '>=18'}
- zod-to-json-schema@3.24.6:
- resolution: {integrity: sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg==}
+ zod-to-json-schema@3.25.0:
+ resolution: {integrity: sha512-HvWtU2UG41LALjajJrML6uQejQhNJx+JBO9IflpSja4R03iNWfKXrj6W2h7ljuLyc1nKS+9yDyL/9tD1U/yBnQ==}
peerDependencies:
- zod: ^3.24.1
+ zod: ^3.25 || ^4
- zod@3.25.75:
- resolution: {integrity: sha512-OhpzAmVzabPOL6C3A3gpAifqr9MqihV/Msx3gor2b2kviCgcb+HM9SEOpMWwwNp9MRunWnhtAKUoo0AHhjyPPg==}
+ zod@4.1.13:
+ resolution: {integrity: sha512-AvvthqfqrAhNH9dnfmrfKzX5upOdjUVJYFqNSlkmGf64gRaTzlPwz99IHYnVs28qYAybvAlBV+H7pn0saFY4Ig==}
- zone.js@0.15.0:
- resolution: {integrity: sha512-9oxn0IIjbCZkJ67L+LkhYWRyAy7axphb3VgE2MBDlOqnmHMPWGYMxJxBYFueFq/JGY2GMwS0rU+UCLunEmy5UA==}
+ zone.js@0.16.0:
+ resolution: {integrity: sha512-LqLPpIQANebrlxY6jKcYKdgN5DTXyyHAKnnWWjE5pPfEQ4n7j5zn7mOEEpwNZVKGqx3kKKmvplEmoBrvpgROTA==}
zwitch@2.0.4:
resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
@@ -10798,32 +11459,39 @@ snapshots:
'@adobe/css-tools@4.3.3':
optional: true
- '@algolia/autocomplete-core@1.17.9(@algolia/client-search@5.32.0)(algoliasearch@5.32.0)(search-insights@2.17.3)':
+ '@algolia/abtesting@1.6.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
+ '@algolia/autocomplete-core@1.17.9(@algolia/client-search@5.40.1)(algoliasearch@5.32.0)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-plugin-algolia-insights': 1.17.9(@algolia/client-search@5.32.0)(algoliasearch@5.32.0)(search-insights@2.17.3)
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.32.0)(algoliasearch@5.32.0)
+ '@algolia/autocomplete-plugin-algolia-insights': 1.17.9(@algolia/client-search@5.40.1)(algoliasearch@5.32.0)(search-insights@2.17.3)
+ '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.40.1)(algoliasearch@5.32.0)
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- search-insights
- '@algolia/autocomplete-plugin-algolia-insights@1.17.9(@algolia/client-search@5.32.0)(algoliasearch@5.32.0)(search-insights@2.17.3)':
+ '@algolia/autocomplete-plugin-algolia-insights@1.17.9(@algolia/client-search@5.40.1)(algoliasearch@5.32.0)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.32.0)(algoliasearch@5.32.0)
+ '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.40.1)(algoliasearch@5.32.0)
search-insights: 2.17.3
transitivePeerDependencies:
- '@algolia/client-search'
- algoliasearch
- '@algolia/autocomplete-preset-algolia@1.17.9(@algolia/client-search@5.32.0)(algoliasearch@5.32.0)':
+ '@algolia/autocomplete-preset-algolia@1.17.9(@algolia/client-search@5.40.1)(algoliasearch@5.32.0)':
dependencies:
- '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.32.0)(algoliasearch@5.32.0)
- '@algolia/client-search': 5.32.0
+ '@algolia/autocomplete-shared': 1.17.9(@algolia/client-search@5.40.1)(algoliasearch@5.32.0)
+ '@algolia/client-search': 5.40.1
algoliasearch: 5.32.0
- '@algolia/autocomplete-shared@1.17.9(@algolia/client-search@5.32.0)(algoliasearch@5.32.0)':
+ '@algolia/autocomplete-shared@1.17.9(@algolia/client-search@5.40.1)(algoliasearch@5.32.0)':
dependencies:
- '@algolia/client-search': 5.32.0
+ '@algolia/client-search': 5.40.1
algoliasearch: 5.32.0
'@algolia/client-abtesting@5.32.0':
@@ -10833,6 +11501,13 @@ snapshots:
'@algolia/requester-fetch': 5.32.0
'@algolia/requester-node-http': 5.32.0
+ '@algolia/client-abtesting@5.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
'@algolia/client-analytics@5.32.0':
dependencies:
'@algolia/client-common': 5.32.0
@@ -10840,8 +11515,17 @@ snapshots:
'@algolia/requester-fetch': 5.32.0
'@algolia/requester-node-http': 5.32.0
+ '@algolia/client-analytics@5.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
'@algolia/client-common@5.32.0': {}
+ '@algolia/client-common@5.40.1': {}
+
'@algolia/client-insights@5.32.0':
dependencies:
'@algolia/client-common': 5.32.0
@@ -10849,6 +11533,13 @@ snapshots:
'@algolia/requester-fetch': 5.32.0
'@algolia/requester-node-http': 5.32.0
+ '@algolia/client-insights@5.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
'@algolia/client-personalization@5.32.0':
dependencies:
'@algolia/client-common': 5.32.0
@@ -10856,6 +11547,13 @@ snapshots:
'@algolia/requester-fetch': 5.32.0
'@algolia/requester-node-http': 5.32.0
+ '@algolia/client-personalization@5.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
'@algolia/client-query-suggestions@5.32.0':
dependencies:
'@algolia/client-common': 5.32.0
@@ -10863,6 +11561,13 @@ snapshots:
'@algolia/requester-fetch': 5.32.0
'@algolia/requester-node-http': 5.32.0
+ '@algolia/client-query-suggestions@5.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
'@algolia/client-search@5.32.0':
dependencies:
'@algolia/client-common': 5.32.0
@@ -10870,6 +11575,13 @@ snapshots:
'@algolia/requester-fetch': 5.32.0
'@algolia/requester-node-http': 5.32.0
+ '@algolia/client-search@5.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
'@algolia/events@4.0.1': {}
'@algolia/ingestion@1.32.0':
@@ -10879,6 +11591,13 @@ snapshots:
'@algolia/requester-fetch': 5.32.0
'@algolia/requester-node-http': 5.32.0
+ '@algolia/ingestion@1.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
'@algolia/monitoring@1.32.0':
dependencies:
'@algolia/client-common': 5.32.0
@@ -10886,6 +11605,13 @@ snapshots:
'@algolia/requester-fetch': 5.32.0
'@algolia/requester-node-http': 5.32.0
+ '@algolia/monitoring@1.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
'@algolia/recommend@5.32.0':
dependencies:
'@algolia/client-common': 5.32.0
@@ -10893,102 +11619,114 @@ snapshots:
'@algolia/requester-fetch': 5.32.0
'@algolia/requester-node-http': 5.32.0
+ '@algolia/recommend@5.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
'@algolia/requester-browser-xhr@5.32.0':
dependencies:
'@algolia/client-common': 5.32.0
+ '@algolia/requester-browser-xhr@5.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+
'@algolia/requester-fetch@5.32.0':
dependencies:
'@algolia/client-common': 5.32.0
+ '@algolia/requester-fetch@5.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+
'@algolia/requester-node-http@5.32.0':
dependencies:
'@algolia/client-common': 5.32.0
+ '@algolia/requester-node-http@5.40.1':
+ dependencies:
+ '@algolia/client-common': 5.40.1
+
'@ampproject/remapping@2.3.0':
dependencies:
'@jridgewell/gen-mapping': 0.3.12
'@jridgewell/trace-mapping': 0.3.29
- '@angular-devkit/architect@0.2001.3(chokidar@4.0.3)':
- dependencies:
- '@angular-devkit/core': 20.1.3(chokidar@4.0.3)
- rxjs: 7.8.2
- transitivePeerDependencies:
- - chokidar
-
- '@angular-devkit/architect@0.2001.4(chokidar@4.0.3)':
+ '@angular-devkit/architect@0.2100.3(chokidar@4.0.3)':
dependencies:
- '@angular-devkit/core': 20.1.4(chokidar@4.0.3)
+ '@angular-devkit/core': 21.0.3(chokidar@4.0.3)
rxjs: 7.8.2
transitivePeerDependencies:
- chokidar
- '@angular-devkit/build-angular@20.1.3(963aaab4b0debadd2d66b1f210c3bf4d)':
+ '@angular-devkit/build-angular@21.0.3(552124b0f5f38282ecb961b3512ec6ec)':
dependencies:
'@ampproject/remapping': 2.3.0
- '@angular-devkit/architect': 0.2001.3(chokidar@4.0.3)
- '@angular-devkit/build-webpack': 0.2001.3(chokidar@4.0.3)(webpack-dev-server@5.2.2(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@angular-devkit/core': 20.1.3(chokidar@4.0.3)
- '@angular/build': 20.1.3(@angular/compiler-cli@20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3))(@angular/compiler@20.1.3)(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@20.1.3(@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@18.16.9)(chokidar@4.0.3)(jiti@1.21.6)(less@4.3.0)(ng-packagr@20.1.0(@angular/compiler-cli@20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3))(postcss@8.5.6)(sass-embedded@1.89.2)(stylus@0.64.0)(terser@5.43.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0)
- '@angular/compiler-cli': 20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3)
- '@babel/core': 7.27.7
- '@babel/generator': 7.27.5
+ '@angular-devkit/architect': 0.2100.3(chokidar@4.0.3)
+ '@angular-devkit/build-webpack': 0.2100.3(chokidar@4.0.3)(webpack-dev-server@5.2.2(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)))(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0))
+ '@angular-devkit/core': 21.0.3(chokidar@4.0.3)
+ '@angular/build': 21.0.3(@angular/compiler-cli@21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3))(@angular/compiler@21.0.6)(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(@angular/platform-browser@21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@types/node@18.16.9)(chokidar@4.0.3)(jiti@2.6.1)(less@4.4.2)(ng-packagr@21.0.1(@angular/compiler-cli@21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3))(tslib@2.6.3)(typescript@5.9.3))(postcss@8.5.6)(sass-embedded@1.89.2)(stylus@0.64.0)(terser@5.44.0)(tslib@2.8.1)(typescript@5.9.3)(yaml@2.7.0)
+ '@angular/compiler-cli': 21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3)
+ '@babel/core': 7.28.4
+ '@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.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-runtime': 7.27.4(@babel/core@7.27.7)
- '@babel/preset-env': 7.27.2(@babel/core@7.27.7)
- '@babel/runtime': 7.27.6
+ '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.4)
+ '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-runtime': 7.28.3(@babel/core@7.28.4)
+ '@babel/preset-env': 7.28.3(@babel/core@7.28.4)
+ '@babel/runtime': 7.28.4
'@discoveryjs/json-ext': 0.6.3
- '@ngtools/webpack': 20.1.3(@angular/compiler-cli@20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3))(typescript@5.8.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@ngtools/webpack': 21.0.3(@angular/compiler-cli@21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3))(typescript@5.9.3)(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0))
ansi-colors: 4.1.3
autoprefixer: 10.4.21(postcss@8.5.6)
- babel-loader: 10.0.0(@babel/core@7.27.7)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- browserslist: 4.25.1
- copy-webpack-plugin: 13.0.0(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- css-loader: 7.1.2(@rspack/core@1.4.4(@swc/helpers@0.5.12))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- esbuild-wasm: 0.25.5
- fast-glob: 3.3.3
+ babel-loader: 10.0.0(@babel/core@7.28.4)(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0))
+ browserslist: 4.28.1
+ copy-webpack-plugin: 13.0.1(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0))
+ css-loader: 7.1.2(@rspack/core@1.6.8(@swc/helpers@0.5.12))(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0))
+ esbuild-wasm: 0.26.0
http-proxy-middleware: 3.0.5
istanbul-lib-instrument: 6.0.3
jsonc-parser: 3.3.1
karma-source-map-support: 1.4.0
- less: 4.3.0
- less-loader: 12.3.0(@rspack/core@1.4.4(@swc/helpers@0.5.12))(less@4.3.0)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- license-webpack-plugin: 4.0.2(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ less: 4.4.2
+ less-loader: 12.3.0(@rspack/core@1.6.8(@swc/helpers@0.5.12))(less@4.4.2)(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0))
+ license-webpack-plugin: 4.0.2(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0))
loader-utils: 3.3.1
- mini-css-extract-plugin: 2.9.2(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- open: 10.1.2
- ora: 8.2.0
- picomatch: 4.0.2
- piscina: 5.1.2
+ mini-css-extract-plugin: 2.9.4(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0))
+ open: 10.2.0
+ ora: 9.0.0
+ picomatch: 4.0.3
+ piscina: 5.1.3
postcss: 8.5.6
- postcss-loader: 8.1.1(@rspack/core@1.4.4(@swc/helpers@0.5.12))(postcss@8.5.6)(typescript@5.8.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ postcss-loader: 8.2.0(@rspack/core@1.6.8(@swc/helpers@0.5.12))(postcss@8.5.6)(typescript@5.9.3)(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0))
resolve-url-loader: 5.0.0
rxjs: 7.8.2
- sass: 1.89.2
- sass-loader: 16.0.5(@rspack/core@1.4.4(@swc/helpers@0.5.12))(sass-embedded@1.89.2)(sass@1.89.2)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- semver: 7.7.2
- source-map-loader: 5.0.0(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ sass: 1.93.2
+ sass-loader: 16.0.5(@rspack/core@1.6.8(@swc/helpers@0.5.12))(sass-embedded@1.89.2)(sass@1.93.2)(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0))
+ semver: 7.7.3
+ source-map-loader: 5.0.0(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0))
source-map-support: 0.5.21
- terser: 5.43.1
+ terser: 5.44.0
+ tinyglobby: 0.2.15
tree-kill: 1.2.2
tslib: 2.8.1
- typescript: 5.8.3
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
- webpack-dev-middleware: 7.4.2(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- webpack-dev-server: 5.2.2(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ typescript: 5.9.3
+ webpack: 5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)
+ webpack-dev-middleware: 7.4.5(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0))
+ webpack-dev-server: 5.2.2(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
webpack-merge: 6.0.1
- webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.3(@rspack/core@1.4.4(@swc/helpers@0.5.12))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.3(@rspack/core@1.6.8(@swc/helpers@0.5.12))(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))))(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0))
optionalDependencies:
- '@angular/core': 20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)
- '@angular/platform-browser': 20.1.3(@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))
- esbuild: 0.25.5
- jest: 30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3))
+ '@angular/core': 21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)
+ '@angular/platform-browser': 21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))
+ esbuild: 0.26.0
+ jest: 30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3))
jest-environment-jsdom: 30.0.5
- ng-packagr: 20.1.0(@angular/compiler-cli@20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3)
+ ng-packagr: 21.0.1(@angular/compiler-cli@21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3))(tslib@2.6.3)(typescript@5.9.3)
transitivePeerDependencies:
- '@angular/compiler'
- '@rspack/core'
@@ -11012,97 +11750,76 @@ snapshots:
- webpack-cli
- yaml
- '@angular-devkit/build-webpack@0.2001.3(chokidar@4.0.3)(webpack-dev-server@5.2.2(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))':
+ '@angular-devkit/build-webpack@0.2100.3(chokidar@4.0.3)(webpack-dev-server@5.2.2(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)))(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0))':
dependencies:
- '@angular-devkit/architect': 0.2001.3(chokidar@4.0.3)
+ '@angular-devkit/architect': 0.2100.3(chokidar@4.0.3)
rxjs: 7.8.2
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
- webpack-dev-server: 5.2.2(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ webpack: 5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)
+ webpack-dev-server: 5.2.2(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
transitivePeerDependencies:
- chokidar
- '@angular-devkit/core@20.1.3(chokidar@4.0.3)':
- dependencies:
- ajv: 8.17.1
- ajv-formats: 3.0.1(ajv@8.17.1)
- jsonc-parser: 3.3.1
- picomatch: 4.0.2
- rxjs: 7.8.2
- source-map: 0.7.4
- optionalDependencies:
- chokidar: 4.0.3
-
- '@angular-devkit/core@20.1.4(chokidar@4.0.3)':
+ '@angular-devkit/core@21.0.3(chokidar@4.0.3)':
dependencies:
ajv: 8.17.1
ajv-formats: 3.0.1(ajv@8.17.1)
jsonc-parser: 3.3.1
- picomatch: 4.0.2
+ picomatch: 4.0.3
rxjs: 7.8.2
- source-map: 0.7.4
+ source-map: 0.7.6
optionalDependencies:
chokidar: 4.0.3
- '@angular-devkit/schematics@20.1.3(chokidar@4.0.3)':
- dependencies:
- '@angular-devkit/core': 20.1.3(chokidar@4.0.3)
- jsonc-parser: 3.3.1
- magic-string: 0.30.17
- ora: 8.2.0
- rxjs: 7.8.2
- transitivePeerDependencies:
- - chokidar
-
- '@angular-devkit/schematics@20.1.4(chokidar@4.0.3)':
+ '@angular-devkit/schematics@21.0.3(chokidar@4.0.3)':
dependencies:
- '@angular-devkit/core': 20.1.4(chokidar@4.0.3)
+ '@angular-devkit/core': 21.0.3(chokidar@4.0.3)
jsonc-parser: 3.3.1
- magic-string: 0.30.17
- ora: 8.2.0
+ magic-string: 0.30.19
+ ora: 9.0.0
rxjs: 7.8.2
transitivePeerDependencies:
- chokidar
- '@angular-eslint/builder@20.1.1(chokidar@4.0.3)(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)':
+ '@angular-eslint/builder@21.0.1(chokidar@4.0.3)(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@angular-devkit/architect': 0.2001.3(chokidar@4.0.3)
- '@angular-devkit/core': 20.1.3(chokidar@4.0.3)
- eslint: 9.17.0(jiti@1.21.6)
- typescript: 5.8.3
+ '@angular-devkit/architect': 0.2100.3(chokidar@4.0.3)
+ '@angular-devkit/core': 21.0.3(chokidar@4.0.3)
+ eslint: 9.17.0(jiti@2.6.1)
+ typescript: 5.9.3
transitivePeerDependencies:
- chokidar
- '@angular-eslint/bundled-angular-compiler@20.1.1': {}
+ '@angular-eslint/bundled-angular-compiler@21.0.1': {}
- '@angular-eslint/eslint-plugin-template@20.1.1(@angular-eslint/template-parser@20.1.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(@typescript-eslint/types@8.19.0)(@typescript-eslint/utils@8.19.0(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)':
+ '@angular-eslint/eslint-plugin-template@21.0.1(@angular-eslint/template-parser@21.0.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/types@8.35.1)(@typescript-eslint/utils@8.35.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@angular-eslint/bundled-angular-compiler': 20.1.1
- '@angular-eslint/template-parser': 20.1.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
- '@angular-eslint/utils': 20.1.1(@typescript-eslint/utils@8.19.0(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
- '@typescript-eslint/types': 8.19.0
- '@typescript-eslint/utils': 8.19.0(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
+ '@angular-eslint/bundled-angular-compiler': 21.0.1
+ '@angular-eslint/template-parser': 21.0.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
+ '@angular-eslint/utils': 21.0.1(@typescript-eslint/utils@8.35.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/types': 8.35.1
+ '@typescript-eslint/utils': 8.35.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
aria-query: 5.3.2
axobject-query: 4.1.0
- eslint: 9.17.0(jiti@1.21.6)
- typescript: 5.8.3
+ eslint: 9.17.0(jiti@2.6.1)
+ typescript: 5.9.3
- '@angular-eslint/eslint-plugin@20.1.1(@typescript-eslint/utils@8.19.0(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)':
+ '@angular-eslint/eslint-plugin@21.0.1(@typescript-eslint/utils@8.35.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@angular-eslint/bundled-angular-compiler': 20.1.1
- '@angular-eslint/utils': 20.1.1(@typescript-eslint/utils@8.19.0(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
- '@typescript-eslint/utils': 8.19.0(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
- eslint: 9.17.0(jiti@1.21.6)
- ts-api-utils: 2.1.0(typescript@5.8.3)
- typescript: 5.8.3
+ '@angular-eslint/bundled-angular-compiler': 21.0.1
+ '@angular-eslint/utils': 21.0.1(@typescript-eslint/utils@8.35.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.35.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.17.0(jiti@2.6.1)
+ ts-api-utils: 2.1.0(typescript@5.9.3)
+ typescript: 5.9.3
- '@angular-eslint/schematics@20.1.1(@angular-eslint/template-parser@20.1.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(@typescript-eslint/types@8.19.0)(@typescript-eslint/utils@8.19.0(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(chokidar@4.0.3)(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)':
+ '@angular-eslint/schematics@21.0.1(@angular-eslint/template-parser@21.0.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/types@8.35.1)(@typescript-eslint/utils@8.35.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(chokidar@4.0.3)(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@angular-devkit/core': 20.1.3(chokidar@4.0.3)
- '@angular-devkit/schematics': 20.1.3(chokidar@4.0.3)
- '@angular-eslint/eslint-plugin': 20.1.1(@typescript-eslint/utils@8.19.0(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
- '@angular-eslint/eslint-plugin-template': 20.1.1(@angular-eslint/template-parser@20.1.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(@typescript-eslint/types@8.19.0)(@typescript-eslint/utils@8.19.0(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
+ '@angular-devkit/core': 21.0.3(chokidar@4.0.3)
+ '@angular-devkit/schematics': 21.0.3(chokidar@4.0.3)
+ '@angular-eslint/eslint-plugin': 21.0.1(@typescript-eslint/utils@8.35.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
+ '@angular-eslint/eslint-plugin-template': 21.0.1(@angular-eslint/template-parser@21.0.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/types@8.35.1)(@typescript-eslint/utils@8.35.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
ignore: 7.0.5
- semver: 7.7.2
+ semver: 7.7.3
strip-json-comments: 3.1.1
transitivePeerDependencies:
- '@angular-eslint/template-parser'
@@ -11112,64 +11829,64 @@ snapshots:
- eslint
- typescript
- '@angular-eslint/template-parser@20.1.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)':
+ '@angular-eslint/template-parser@21.0.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@angular-eslint/bundled-angular-compiler': 20.1.1
- eslint: 9.17.0(jiti@1.21.6)
- eslint-scope: 8.2.0
- typescript: 5.8.3
+ '@angular-eslint/bundled-angular-compiler': 21.0.1
+ eslint: 9.17.0(jiti@2.6.1)
+ eslint-scope: 9.0.0
+ typescript: 5.9.3
- '@angular-eslint/utils@20.1.1(@typescript-eslint/utils@8.19.0(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)':
+ '@angular-eslint/utils@21.0.1(@typescript-eslint/utils@8.35.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@angular-eslint/bundled-angular-compiler': 20.1.1
- '@typescript-eslint/utils': 8.19.0(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
- eslint: 9.17.0(jiti@1.21.6)
- typescript: 5.8.3
+ '@angular-eslint/bundled-angular-compiler': 21.0.1
+ '@typescript-eslint/utils': 8.35.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.17.0(jiti@2.6.1)
+ typescript: 5.9.3
- '@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))':
+ '@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))':
dependencies:
- '@angular/common': 20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
- '@angular/core': 20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)
+ '@angular/core': 21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)
tslib: 2.8.1
- '@angular/build@20.1.3(@angular/compiler-cli@20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3))(@angular/compiler@20.1.3)(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@20.1.3(@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@18.16.9)(chokidar@4.0.3)(jiti@1.21.6)(less@4.3.0)(ng-packagr@20.1.0(@angular/compiler-cli@20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3))(postcss@8.4.40)(sass-embedded@1.89.2)(stylus@0.64.0)(terser@5.43.1)(tslib@2.6.3)(typescript@5.8.3)(yaml@2.7.0)':
+ '@angular/build@21.0.3(@angular/compiler-cli@21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3))(@angular/compiler@21.0.6)(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(@angular/platform-browser@21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@types/node@18.16.9)(chokidar@4.0.3)(jiti@2.6.1)(less@4.4.2)(ng-packagr@21.0.1(@angular/compiler-cli@21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3))(tslib@2.6.3)(typescript@5.9.3))(postcss@8.4.40)(sass-embedded@1.89.2)(stylus@0.64.0)(terser@5.44.0)(tslib@2.6.3)(typescript@5.9.3)(yaml@2.7.0)':
dependencies:
'@ampproject/remapping': 2.3.0
- '@angular-devkit/architect': 0.2001.3(chokidar@4.0.3)
- '@angular/compiler': 20.1.3
- '@angular/compiler-cli': 20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3)
- '@babel/core': 7.27.7
+ '@angular-devkit/architect': 0.2100.3(chokidar@4.0.3)
+ '@angular/compiler': 21.0.6
+ '@angular/compiler-cli': 21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3)
+ '@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-split-export-declaration': 7.24.7
- '@inquirer/confirm': 5.1.13(@types/node@18.16.9)
- '@vitejs/plugin-basic-ssl': 2.1.0(vite@7.0.6(@types/node@18.16.9)(jiti@1.21.6)(less@4.3.0)(sass-embedded@1.89.2)(sass@1.89.2)(stylus@0.64.0)(terser@5.43.1)(yaml@2.7.0))
- beasties: 0.3.4
- browserslist: 4.25.1
- esbuild: 0.25.5
+ '@inquirer/confirm': 5.1.19(@types/node@18.16.9)
+ '@vitejs/plugin-basic-ssl': 2.1.0(vite@7.2.2(@types/node@18.16.9)(jiti@2.6.1)(less@4.4.2)(sass-embedded@1.89.2)(sass@1.93.2)(stylus@0.64.0)(terser@5.44.0)(yaml@2.7.0))
+ beasties: 0.3.5
+ browserslist: 4.28.1
+ esbuild: 0.26.0
https-proxy-agent: 7.0.6
istanbul-lib-instrument: 6.0.3
jsonc-parser: 3.3.1
- listr2: 8.3.3
- magic-string: 0.30.17
+ listr2: 9.0.5
+ magic-string: 0.30.19
mrmime: 2.0.1
- parse5-html-rewriting-stream: 7.1.0
- picomatch: 4.0.2
- piscina: 5.1.2
- rollup: 4.44.1
- sass: 1.89.2
- semver: 7.7.2
+ parse5-html-rewriting-stream: 8.0.0
+ picomatch: 4.0.3
+ piscina: 5.1.3
+ rolldown: 1.0.0-beta.47
+ sass: 1.93.2
+ semver: 7.7.3
source-map-support: 0.5.21
- tinyglobby: 0.2.14
+ tinyglobby: 0.2.15
tslib: 2.6.3
- typescript: 5.8.3
- vite: 7.0.6(@types/node@18.16.9)(jiti@1.21.6)(less@4.3.0)(sass-embedded@1.89.2)(sass@1.89.2)(stylus@0.64.0)(terser@5.43.1)(yaml@2.7.0)
+ typescript: 5.9.3
+ undici: 7.16.0
+ vite: 7.2.2(@types/node@18.16.9)(jiti@2.6.1)(less@4.4.2)(sass-embedded@1.89.2)(sass@1.93.2)(stylus@0.64.0)(terser@5.44.0)(yaml@2.7.0)
watchpack: 2.4.4
optionalDependencies:
- '@angular/core': 20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)
- '@angular/platform-browser': 20.1.3(@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))
- less: 4.3.0
- lmdb: 3.4.1
- ng-packagr: 20.1.0(@angular/compiler-cli@20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3)
+ '@angular/core': 21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)
+ '@angular/platform-browser': 21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))
+ less: 4.4.2
+ lmdb: 3.4.3
+ ng-packagr: 21.0.1(@angular/compiler-cli@21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3))(tslib@2.6.3)(typescript@5.9.3)
postcss: 8.4.40
transitivePeerDependencies:
- '@types/node'
@@ -11185,44 +11902,45 @@ snapshots:
- yaml
optional: true
- '@angular/build@20.1.3(@angular/compiler-cli@20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3))(@angular/compiler@20.1.3)(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@20.1.3(@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@18.16.9)(chokidar@4.0.3)(jiti@1.21.6)(less@4.3.0)(ng-packagr@20.1.0(@angular/compiler-cli@20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3))(postcss@8.5.6)(sass-embedded@1.89.2)(stylus@0.64.0)(terser@5.43.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.7.0)':
+ '@angular/build@21.0.3(@angular/compiler-cli@21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3))(@angular/compiler@21.0.6)(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(@angular/platform-browser@21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@types/node@18.16.9)(chokidar@4.0.3)(jiti@2.6.1)(less@4.4.2)(ng-packagr@21.0.1(@angular/compiler-cli@21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3))(tslib@2.6.3)(typescript@5.9.3))(postcss@8.5.6)(sass-embedded@1.89.2)(stylus@0.64.0)(terser@5.44.0)(tslib@2.8.1)(typescript@5.9.3)(yaml@2.7.0)':
dependencies:
'@ampproject/remapping': 2.3.0
- '@angular-devkit/architect': 0.2001.3(chokidar@4.0.3)
- '@angular/compiler': 20.1.3
- '@angular/compiler-cli': 20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3)
- '@babel/core': 7.27.7
+ '@angular-devkit/architect': 0.2100.3(chokidar@4.0.3)
+ '@angular/compiler': 21.0.6
+ '@angular/compiler-cli': 21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3)
+ '@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-split-export-declaration': 7.24.7
- '@inquirer/confirm': 5.1.13(@types/node@18.16.9)
- '@vitejs/plugin-basic-ssl': 2.1.0(vite@7.0.6(@types/node@18.16.9)(jiti@1.21.6)(less@4.3.0)(sass-embedded@1.89.2)(sass@1.89.2)(stylus@0.64.0)(terser@5.43.1)(yaml@2.7.0))
- beasties: 0.3.4
- browserslist: 4.25.1
- esbuild: 0.25.5
+ '@inquirer/confirm': 5.1.19(@types/node@18.16.9)
+ '@vitejs/plugin-basic-ssl': 2.1.0(vite@7.2.2(@types/node@18.16.9)(jiti@2.6.1)(less@4.4.2)(sass-embedded@1.89.2)(sass@1.93.2)(stylus@0.64.0)(terser@5.44.0)(yaml@2.7.0))
+ beasties: 0.3.5
+ browserslist: 4.28.1
+ esbuild: 0.26.0
https-proxy-agent: 7.0.6
istanbul-lib-instrument: 6.0.3
jsonc-parser: 3.3.1
- listr2: 8.3.3
- magic-string: 0.30.17
+ listr2: 9.0.5
+ magic-string: 0.30.19
mrmime: 2.0.1
- parse5-html-rewriting-stream: 7.1.0
- picomatch: 4.0.2
- piscina: 5.1.2
- rollup: 4.44.1
- sass: 1.89.2
- semver: 7.7.2
+ parse5-html-rewriting-stream: 8.0.0
+ picomatch: 4.0.3
+ piscina: 5.1.3
+ rolldown: 1.0.0-beta.47
+ sass: 1.93.2
+ semver: 7.7.3
source-map-support: 0.5.21
- tinyglobby: 0.2.14
+ tinyglobby: 0.2.15
tslib: 2.8.1
- typescript: 5.8.3
- vite: 7.0.6(@types/node@18.16.9)(jiti@1.21.6)(less@4.3.0)(sass-embedded@1.89.2)(sass@1.89.2)(stylus@0.64.0)(terser@5.43.1)(yaml@2.7.0)
+ typescript: 5.9.3
+ undici: 7.16.0
+ vite: 7.2.2(@types/node@18.16.9)(jiti@2.6.1)(less@4.4.2)(sass-embedded@1.89.2)(sass@1.93.2)(stylus@0.64.0)(terser@5.44.0)(yaml@2.7.0)
watchpack: 2.4.4
optionalDependencies:
- '@angular/core': 20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)
- '@angular/platform-browser': 20.1.3(@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))
- less: 4.3.0
- lmdb: 3.4.1
- ng-packagr: 20.1.0(@angular/compiler-cli@20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3)
+ '@angular/core': 21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)
+ '@angular/platform-browser': 21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))
+ less: 4.4.2
+ lmdb: 3.4.3
+ ng-packagr: 21.0.1(@angular/compiler-cli@21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3))(tslib@2.6.3)(typescript@5.9.3)
postcss: 8.5.6
transitivePeerDependencies:
- '@types/node'
@@ -11237,51 +11955,51 @@ snapshots:
- tsx
- yaml
- '@angular/cdk@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)':
+ '@angular/cdk@21.0.3(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1)':
dependencies:
- '@angular/common': 20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
- '@angular/core': 20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)
+ '@angular/common': 21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1)
+ '@angular/core': 21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)
parse5: 8.0.0
rxjs: 7.8.1
tslib: 2.8.1
- '@angular/cli@20.1.4(@types/node@18.16.9)(chokidar@4.0.3)':
+ '@angular/cli@21.0.3(@types/node@18.16.9)(chokidar@4.0.3)':
dependencies:
- '@angular-devkit/architect': 0.2001.4(chokidar@4.0.3)
- '@angular-devkit/core': 20.1.4(chokidar@4.0.3)
- '@angular-devkit/schematics': 20.1.4(chokidar@4.0.3)
- '@inquirer/prompts': 7.6.0(@types/node@18.16.9)
- '@listr2/prompt-adapter-inquirer': 2.0.22(@inquirer/prompts@7.6.0(@types/node@18.16.9))
- '@modelcontextprotocol/sdk': 1.13.3
- '@schematics/angular': 20.1.4(chokidar@4.0.3)
+ '@angular-devkit/architect': 0.2100.3(chokidar@4.0.3)
+ '@angular-devkit/core': 21.0.3(chokidar@4.0.3)
+ '@angular-devkit/schematics': 21.0.3(chokidar@4.0.3)
+ '@inquirer/prompts': 7.9.0(@types/node@18.16.9)
+ '@listr2/prompt-adapter-inquirer': 3.0.5(@inquirer/prompts@7.9.0(@types/node@18.16.9))(@types/node@18.16.9)(listr2@9.0.5)
+ '@modelcontextprotocol/sdk': 1.24.0(zod@4.1.13)
+ '@schematics/angular': 21.0.3(chokidar@4.0.3)
'@yarnpkg/lockfile': 1.1.0
- algoliasearch: 5.32.0
+ algoliasearch: 5.40.1
ini: 5.0.0
jsonc-parser: 3.3.1
- listr2: 8.3.3
- npm-package-arg: 12.0.2
- npm-pick-manifest: 10.0.0
- pacote: 21.0.0
- resolve: 1.22.10
- semver: 7.7.2
+ listr2: 9.0.5
+ npm-package-arg: 13.0.1
+ pacote: 21.0.3
+ parse5-html-rewriting-stream: 8.0.0
+ resolve: 1.22.11
+ semver: 7.7.3
yargs: 18.0.0
- zod: 3.25.75
+ zod: 4.1.13
transitivePeerDependencies:
+ - '@cfworker/json-schema'
- '@types/node'
- - bluebird
- chokidar
- supports-color
- '@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)':
+ '@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1)':
dependencies:
- '@angular/core': 20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)
+ '@angular/core': 21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)
rxjs: 7.8.1
tslib: 2.8.1
- '@angular/compiler-cli@20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3)':
+ '@angular/compiler-cli@21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3)':
dependencies:
- '@angular/compiler': 20.1.3
- '@babel/core': 7.28.0
+ '@angular/compiler': 21.0.6
+ '@babel/core': 7.28.4
'@jridgewell/sourcemap-codec': 1.5.0
chokidar: 4.0.3
convert-source-map: 1.9.0
@@ -11290,63 +12008,64 @@ snapshots:
tslib: 2.8.1
yargs: 18.0.0
optionalDependencies:
- typescript: 5.8.3
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@angular/compiler@20.1.3':
+ '@angular/compiler@21.0.6':
dependencies:
tslib: 2.8.1
- '@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)':
+ '@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)':
dependencies:
rxjs: 7.8.1
tslib: 2.8.1
optionalDependencies:
- '@angular/compiler': 20.1.3
- zone.js: 0.15.0
+ '@angular/compiler': 21.0.6
+ zone.js: 0.16.0
- '@angular/forms@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@20.1.3(@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)':
+ '@angular/forms@21.0.6(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(@angular/platform-browser@21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(rxjs@7.8.1)':
dependencies:
- '@angular/common': 20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
- '@angular/core': 20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)
- '@angular/platform-browser': 20.1.3(@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))
+ '@angular/common': 21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1)
+ '@angular/core': 21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)
+ '@angular/platform-browser': 21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))
+ '@standard-schema/spec': 1.1.0
rxjs: 7.8.1
tslib: 2.8.1
- '@angular/language-service@20.1.3': {}
+ '@angular/language-service@21.0.6': {}
- '@angular/material@20.1.3(c9a6764bf3a0a6090ca8600c2e450cc8)':
+ '@angular/material@21.0.3(e78c2fba0b6d233c7657811db033c04f)':
dependencies:
- '@angular/cdk': 20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
- '@angular/common': 20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
- '@angular/core': 20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)
- '@angular/forms': 20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@20.1.3(@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)
- '@angular/platform-browser': 20.1.3(@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))
+ '@angular/cdk': 21.0.3(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1)
+ '@angular/common': 21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1)
+ '@angular/core': 21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)
+ '@angular/forms': 21.0.6(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(@angular/platform-browser@21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(rxjs@7.8.1)
+ '@angular/platform-browser': 21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))
rxjs: 7.8.1
tslib: 2.8.1
- '@angular/platform-browser-dynamic@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@20.1.3)(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@20.1.3(@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))':
+ '@angular/platform-browser-dynamic@21.0.6(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/compiler@21.0.6)(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(@angular/platform-browser@21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))':
dependencies:
- '@angular/common': 20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
- '@angular/compiler': 20.1.3
- '@angular/core': 20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)
- '@angular/platform-browser': 20.1.3(@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))
+ '@angular/common': 21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1)
+ '@angular/compiler': 21.0.6
+ '@angular/core': 21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)
+ '@angular/platform-browser': 21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))
tslib: 2.8.1
- '@angular/platform-browser@20.1.3(@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))':
+ '@angular/platform-browser@21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))':
dependencies:
- '@angular/common': 20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
- '@angular/core': 20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)
+ '@angular/common': 21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1)
+ '@angular/core': 21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)
tslib: 2.8.1
optionalDependencies:
- '@angular/animations': 20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))
+ '@angular/animations': 21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))
- '@angular/router@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@20.1.3(@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(rxjs@7.8.1)':
+ '@angular/router@21.0.6(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(@angular/platform-browser@21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(rxjs@7.8.1)':
dependencies:
- '@angular/common': 20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)
- '@angular/core': 20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)
- '@angular/platform-browser': 20.1.3(@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))
+ '@angular/common': 21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1)
+ '@angular/core': 21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)
+ '@angular/platform-browser': 21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))
rxjs: 7.8.1
tslib: 2.8.1
@@ -11358,11 +12077,6 @@ snapshots:
'@csstools/css-tokenizer': 3.0.4
lru-cache: 10.4.3
- '@babel/code-frame@7.24.7':
- dependencies:
- '@babel/highlight': 7.24.7
- picocolors: 1.1.1
-
'@babel/code-frame@7.27.1':
dependencies:
'@babel/helper-validator-identifier': 7.27.1
@@ -11371,13 +12085,13 @@ snapshots:
'@babel/compat-data@7.28.0': {}
- '@babel/core@7.27.7':
+ '@babel/core@7.28.0':
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.27.1
'@babel/generator': 7.28.0
'@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.7)
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0)
'@babel/helpers': 7.27.6
'@babel/parser': 7.28.0
'@babel/template': 7.27.2
@@ -11391,18 +12105,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/core@7.28.0':
+ '@babel/core@7.28.4':
dependencies:
- '@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.27.1
- '@babel/generator': 7.28.0
+ '@babel/generator': 7.28.3
'@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0)
- '@babel/helpers': 7.27.6
- '@babel/parser': 7.28.0
+ '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4)
+ '@babel/helpers': 7.28.4
+ '@babel/parser': 7.28.5
'@babel/template': 7.27.2
- '@babel/traverse': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/traverse': 7.28.5
+ '@babel/types': 7.28.5
+ '@jridgewell/remapping': 2.3.5
convert-source-map: 2.0.0
debug: 4.4.1
gensync: 1.0.0-beta.2
@@ -11411,7 +12125,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.27.5':
+ '@babel/generator@7.28.0':
dependencies:
'@babel/parser': 7.28.0
'@babel/types': 7.28.0
@@ -11419,10 +12133,18 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.29
jsesc: 3.1.0
- '@babel/generator@7.28.0':
+ '@babel/generator@7.28.3':
dependencies:
- '@babel/parser': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/parser': 7.28.5
+ '@babel/types': 7.28.5
+ '@jridgewell/gen-mapping': 0.3.12
+ '@jridgewell/trace-mapping': 0.3.29
+ jsesc: 3.1.0
+
+ '@babel/generator@7.28.5':
+ dependencies:
+ '@babel/parser': 7.28.5
+ '@babel/types': 7.28.5
'@jridgewell/gen-mapping': 0.3.12
'@jridgewell/trace-mapping': 0.3.29
jsesc: 3.1.0
@@ -11439,38 +12161,57 @@ snapshots:
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.27.7)':
+ '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.0
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-member-expression-to-functions': 7.27.1
'@babel/helper-optimise-call-expression': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.7)
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.0)
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/traverse': 7.28.0
+ '@babel/traverse': 7.28.5
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.28.0)':
+ '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.0
+ '@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-member-expression-to-functions': 7.27.1
'@babel/helper-optimise-call-expression': 7.27.1
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ '@babel/traverse': 7.28.5
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-create-class-features-plugin@7.28.5(@babel/core@7.28.0)':
+ dependencies:
+ '@babel/core': 7.28.0
+ '@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.28.0)
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/traverse': 7.28.0
+ '@babel/traverse': 7.28.5
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.27.7)':
+ '@babel/helper-create-class-features-plugin@7.28.5(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
- regexpu-core: 6.2.0
+ '@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.28.4)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ '@babel/traverse': 7.28.5
semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
'@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.0)':
dependencies:
@@ -11479,25 +12220,32 @@ snapshots:
regexpu-core: 6.2.0
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.27.7)':
+ '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+ '@babel/helper-annotate-as-pure': 7.27.3
+ regexpu-core: 6.2.0
+ semver: 6.3.1
+
+ '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.0
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
debug: 4.4.1
lodash.debounce: 4.0.8
- resolve: 1.22.10
+ resolve: 1.22.11
transitivePeerDependencies:
- supports-color
- '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.0)':
+ '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.0
+ '@babel/core': 7.28.4
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
debug: 4.4.1
lodash.debounce: 4.0.8
- resolve: 1.22.10
+ resolve: 1.22.11
transitivePeerDependencies:
- supports-color
@@ -11505,8 +12253,15 @@ snapshots:
'@babel/helper-member-expression-to-functions@7.27.1':
dependencies:
- '@babel/traverse': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/traverse': 7.28.5
+ '@babel/types': 7.28.5
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-member-expression-to-functions@7.28.5':
+ dependencies:
+ '@babel/traverse': 7.28.5
+ '@babel/types': 7.28.5
transitivePeerDependencies:
- supports-color
@@ -11517,69 +12272,78 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.27.3(@babel/core@7.27.7)':
+ '@babel/helper-module-transforms@7.27.3(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.0
'@babel/helper-module-imports': 7.27.1
'@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.28.0
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.27.3(@babel/core@7.28.0)':
+ '@babel/helper-module-transforms@7.27.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.0
+ '@babel/core': 7.28.4
'@babel/helper-module-imports': 7.27.1
'@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.28.0
+ '@babel/traverse': 7.28.5
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
'@babel/helper-optimise-call-expression@7.27.1':
dependencies:
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.5
'@babel/helper-plugin-utils@7.27.1': {}
- '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.27.7)':
+ '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.0
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-wrap-function': 7.27.1
'@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.0)':
+ '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.0
+ '@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-wrap-function': 7.27.1
'@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.27.1(@babel/core@7.27.7)':
+ '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.0
'@babel/helper-member-expression-to-functions': 7.27.1
'@babel/helper-optimise-call-expression': 7.27.1
- '@babel/traverse': 7.28.0
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.0)':
+ '@babel/helper-replace-supers@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.0
+ '@babel/core': 7.28.4
'@babel/helper-member-expression-to-functions': 7.27.1
'@babel/helper-optimise-call-expression': 7.27.1
- '@babel/traverse': 7.28.0
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
dependencies:
- '@babel/traverse': 7.28.0
+ '@babel/traverse': 7.28.5
'@babel/types': 7.28.0
transitivePeerDependencies:
- supports-color
@@ -11592,12 +12356,14 @@ snapshots:
'@babel/helper-validator-identifier@7.27.1': {}
+ '@babel/helper-validator-identifier@7.28.5': {}
+
'@babel/helper-validator-option@7.27.1': {}
'@babel/helper-wrap-function@7.27.1':
dependencies:
'@babel/template': 7.27.2
- '@babel/traverse': 7.28.0
+ '@babel/traverse': 7.28.5
'@babel/types': 7.28.0
transitivePeerDependencies:
- supports-color
@@ -11607,24 +12373,18 @@ snapshots:
'@babel/template': 7.27.2
'@babel/types': 7.28.0
- '@babel/highlight@7.24.7':
+ '@babel/helpers@7.28.4':
dependencies:
- '@babel/helper-validator-identifier': 7.27.1
- chalk: 2.4.2
- js-tokens: 4.0.0
- picocolors: 1.1.1
+ '@babel/template': 7.27.2
+ '@babel/types': 7.28.5
'@babel/parser@7.28.0':
dependencies:
'@babel/types': 7.28.0
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.27.7)':
+ '@babel/parser@7.28.5':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/types': 7.28.5
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.28.0)':
dependencies:
@@ -11634,19 +12394,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
+ '@babel/traverse': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.0)':
@@ -11654,14 +12417,10 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.27.7)
- transitivePeerDependencies:
- - supports-color
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.0)':
dependencies:
@@ -11672,11 +12431,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.0
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
@@ -11684,60 +12444,63 @@ snapshots:
dependencies:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.0
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.27.7)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.7)
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.27.7)
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.27.7)':
+ '@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.4)
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.28.4)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.27.7)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-plugin-utils': 7.27.1
+ '@babel/core': 7.28.4
- '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.27.7)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.27.7)':
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.27.7)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.27.7)':
+ '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.28.0)':
+ '@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.0
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.28.0)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.28.0)':
@@ -11745,9 +12508,9 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.0)':
@@ -11755,29 +12518,19 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.27.7)':
- dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.27.7)':
+ '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.27.7)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.28.0)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.0
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.27.7)':
- dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.0)':
@@ -11785,59 +12538,49 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.27.7)':
- dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.27.7)':
- dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-plugin-utils': 7.27.1
-
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.27.7)':
+ '@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.27.7)':
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.27.7)':
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.27.7)':
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.27.7)':
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.27.7)':
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.27.7)':
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.28.0)':
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.0
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.0)':
@@ -11845,10 +12588,9 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.27.7)':
+ '@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.7)
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.28.0)':
@@ -11857,9 +12599,10 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.0)':
@@ -11867,30 +12610,26 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-async-generator-functions@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.27.7)
- '@babel/traverse': 7.28.0
- transitivePeerDependencies:
- - supports-color
'@babel/plugin-transform-async-generator-functions@7.27.1(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.0)
- '@babel/traverse': 7.28.0
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-module-imports': 7.27.1
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.27.7)
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.4)
+ '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
@@ -11903,19 +12642,23 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
+ '@babel/helper-module-imports': 7.27.1
'@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.4)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-block-scoping@7.28.0(@babel/core@7.27.7)':
+ '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-block-scoping@7.28.0(@babel/core@7.28.0)':
@@ -11923,26 +12666,23 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-block-scoping@7.28.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.7)
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- transitivePeerDependencies:
- - supports-color
'@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0)
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.7)
+ '@babel/core': 7.28.4
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -11950,20 +12690,16 @@ snapshots:
'@babel/plugin-transform-class-static-block@7.27.1(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0)
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.28.0(@babel/core@7.27.7)':
+ '@babel/plugin-transform-class-static-block@7.28.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-globals': 7.28.0
+ '@babel/core': 7.28.4
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.7)
- '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
@@ -11975,15 +12711,21 @@ snapshots:
'@babel/helper-globals': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.0)
- '@babel/traverse': 7.28.0
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-classes@7.28.4(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
+ '@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/template': 7.27.2
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4)
+ '@babel/traverse': 7.28.5
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.0)':
dependencies:
@@ -11991,13 +12733,11 @@ snapshots:
'@babel/helper-plugin-utils': 7.27.1
'@babel/template': 7.27.2
- '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.27.7)':
- dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/template': 7.27.2
'@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.28.0)':
dependencies:
@@ -12007,11 +12747,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.7)
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
+ '@babel/traverse': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.28.0)':
dependencies:
@@ -12019,9 +12761,10 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.0)':
@@ -12029,10 +12772,9 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.7)
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.28.0)':
@@ -12041,9 +12783,10 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.28.0)':
@@ -12051,19 +12794,27 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+ '@babel/helper-plugin-utils': 7.27.1
+
+ '@babel/plugin-transform-explicit-resource-management@7.28.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.0)':
@@ -12071,13 +12822,10 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- transitivePeerDependencies:
- - supports-color
'@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.0)':
dependencies:
@@ -12087,12 +12835,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-compilation-targets': 7.27.2
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.28.0
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -12105,19 +12852,23 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
+ '@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
+ '@babel/traverse': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-literals@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.0)':
@@ -12125,9 +12876,9 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.28.0)':
@@ -12135,9 +12886,9 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.0)':
@@ -12145,13 +12896,10 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.7)
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- transitivePeerDependencies:
- - supports-color
'@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.0)':
dependencies:
@@ -12161,10 +12909,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.7)
+ '@babel/core': 7.28.4
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -12177,13 +12925,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.7)
+ '@babel/core': 7.28.4
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
@@ -12197,11 +12943,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.7)
+ '@babel/core': 7.28.4
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+ '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
@@ -12213,11 +12961,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.7)
+ '@babel/core': 7.28.4
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.0)':
dependencies:
@@ -12225,9 +12975,10 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.0)':
@@ -12235,9 +12986,9 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.0)':
@@ -12245,9 +12996,9 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.28.0)':
@@ -12255,16 +13006,10 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-object-rest-spread@7.28.0(@babel/core@7.27.7)':
+ '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-compilation-targets': 7.27.2
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.27.7)
- '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.27.7)
- '@babel/traverse': 7.28.0
- transitivePeerDependencies:
- - supports-color
'@babel/plugin-transform-object-rest-spread@7.28.0(@babel/core@7.28.0)':
dependencies:
@@ -12277,11 +13022,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-object-rest-spread@7.28.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
+ '@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.4)
+ '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
@@ -12293,23 +13041,23 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.4)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- transitivePeerDependencies:
- - supports-color
'@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.28.0)':
dependencies:
@@ -12319,23 +13067,23 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.27.7)':
+ '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.7)
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- transitivePeerDependencies:
- - supports-color
'@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.0)':
dependencies:
@@ -12345,11 +13093,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.7)
+ '@babel/core': 7.28.4
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -12363,16 +13110,25 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-react-constant-elements@7.27.1(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
@@ -12407,20 +13163,14 @@ snapshots:
'@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-regenerator@7.28.0(@babel/core@7.27.7)':
- dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-regenerator@7.28.0(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-regenerator@7.28.4(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.7)
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.28.0)':
@@ -12429,9 +13179,10 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.0)':
@@ -12439,29 +13190,10 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-runtime@7.27.1(@babel/core@7.27.7)':
- dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-module-imports': 7.27.1
- '@babel/helper-plugin-utils': 7.27.1
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.27.7)
- babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.27.7)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.27.7)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- '@babel/plugin-transform-runtime@7.27.4(@babel/core@7.27.7)':
+ '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-module-imports': 7.27.1
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.27.7)
- babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.27.7)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.27.7)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
'@babel/plugin-transform-runtime@7.27.4(@babel/core@7.28.0)':
dependencies:
@@ -12475,23 +13207,27 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-runtime@7.28.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
+ '@babel/helper-module-imports': 7.27.1
'@babel/helper-plugin-utils': 7.27.1
+ babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.4)
+ babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.4)
+ babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.4)
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-spread@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- transitivePeerDependencies:
- - supports-color
'@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.0)':
dependencies:
@@ -12501,19 +13237,22 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.0)':
@@ -12521,9 +13260,9 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.0)':
@@ -12531,51 +13270,41 @@ snapshots:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-typescript@7.24.8(@babel/core@7.27.7)':
+ '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.7)
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.27.7)
- transitivePeerDependencies:
- - supports-color
- '@babel/plugin-transform-typescript@7.24.8(@babel/core@7.28.0)':
+ '@babel/plugin-transform-typescript@7.28.0(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0)
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.28.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-typescript@7.28.0(@babel/core@7.28.0)':
+ '@babel/plugin-transform-typescript@7.28.0(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.28.0
+ '@babel/core': 7.28.4
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.28.0)
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.0)
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.4)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.27.7)':
- dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.7)
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.28.0)':
@@ -12584,10 +13313,10 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.7)
+ '@babel/core': 7.28.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.0)':
@@ -12596,10 +13325,10 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.27.7)':
+ '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.7)
+ '@babel/core': 7.28.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.28.0)':
@@ -12608,80 +13337,11 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.0)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/preset-env@7.27.2(@babel/core@7.27.7)':
+ '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.28.4)':
dependencies:
- '@babel/compat-data': 7.28.0
- '@babel/core': 7.27.7
- '@babel/helper-compilation-targets': 7.27.2
+ '@babel/core': 7.28.4
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.4)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-validator-option': 7.27.1
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.27.7)
- '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.27.7)
- '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-async-generator-functions': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.27.7)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-class-static-block': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-classes': 7.28.0(@babel/core@7.27.7)
- '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.27.7)
- '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-object-rest-spread': 7.28.0(@babel/core@7.27.7)
- '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.27.7)
- '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-regenerator': 7.28.0(@babel/core@7.27.7)
- '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.27.7)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.27.7)
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.27.7)
- babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.27.7)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.27.7)
- core-js-compat: 3.43.0
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
'@babel/preset-env@7.27.2(@babel/core@7.28.0)':
dependencies:
@@ -12758,12 +13418,81 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.27.7)':
+ '@babel/preset-env@7.28.3(@babel/core@7.28.4)':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/compat-data': 7.28.0
+ '@babel/core': 7.28.4
+ '@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
- '@babel/types': 7.28.0
- esutils: 2.0.3
+ '@babel/helper-validator-option': 7.27.1
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.28.3(@babel/core@7.28.4)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.4)
+ '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.28.4)
+ '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.4)
+ '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.28.4)
+ '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-class-static-block': 7.28.3(@babel/core@7.28.4)
+ '@babel/plugin-transform-classes': 7.28.4(@babel/core@7.28.4)
+ '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.4)
+ '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-explicit-resource-management': 7.28.0(@babel/core@7.28.4)
+ '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-object-rest-spread': 7.28.0(@babel/core@7.28.4)
+ '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.4)
+ '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-regenerator': 7.28.4(@babel/core@7.28.4)
+ '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.28.4)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.28.4)
+ babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.4)
+ babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.4)
+ babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.4)
+ core-js-compat: 3.43.0
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.0)':
dependencies:
@@ -12772,6 +13501,13 @@ snapshots:
'@babel/types': 7.28.0
esutils: 2.0.3
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/types': 7.28.0
+ esutils: 2.0.3
+
'@babel/preset-react@7.27.1(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
@@ -12784,25 +13520,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/preset-typescript@7.24.7(@babel/core@7.27.7)':
- dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-validator-option': 7.27.1
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.27.7)
- '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-typescript': 7.24.8(@babel/core@7.27.7)
- transitivePeerDependencies:
- - supports-color
-
'@babel/preset-typescript@7.24.7(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-validator-option': 7.27.1
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.28.0)
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.0)
'@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.0)
- '@babel/plugin-transform-typescript': 7.24.8(@babel/core@7.28.0)
+ '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.0)
transitivePeerDependencies:
- supports-color
@@ -12817,14 +13542,25 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/preset-typescript@7.27.1(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-validator-option': 7.27.1
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.4)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/runtime-corejs3@7.28.2':
dependencies:
core-js-pure: 3.45.0
- '@babel/runtime@7.27.1': {}
-
'@babel/runtime@7.27.6': {}
+ '@babel/runtime@7.28.4': {}
+
'@babel/template@7.27.2':
dependencies:
'@babel/code-frame': 7.27.1
@@ -12843,11 +13579,28 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/traverse@7.28.5':
+ dependencies:
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.28.5
+ '@babel/helper-globals': 7.28.0
+ '@babel/parser': 7.28.5
+ '@babel/template': 7.27.2
+ '@babel/types': 7.28.5
+ debug: 4.4.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/types@7.28.0':
dependencies:
'@babel/helper-string-parser': 7.27.1
'@babel/helper-validator-identifier': 7.27.1
+ '@babel/types@7.28.5':
+ dependencies:
+ '@babel/helper-string-parser': 7.27.1
+ '@babel/helper-validator-identifier': 7.28.5
+
'@bcoe/v8-coverage@0.2.3': {}
'@bufbuild/protobuf@2.6.0': {}
@@ -12855,11 +13608,11 @@ snapshots:
'@colors/colors@1.5.0':
optional: true
- '@commitlint/cli@19.3.0(@types/node@18.16.9)(typescript@5.8.3)':
+ '@commitlint/cli@19.3.0(@types/node@18.16.9)(typescript@5.9.3)':
dependencies:
'@commitlint/format': 19.3.0
'@commitlint/lint': 19.2.2
- '@commitlint/load': 19.2.0(@types/node@18.16.9)(typescript@5.8.3)
+ '@commitlint/load': 19.2.0(@types/node@18.16.9)(typescript@5.9.3)
'@commitlint/read': 19.2.1
'@commitlint/types': 19.0.3
execa: 8.0.1
@@ -12892,12 +13645,12 @@ snapshots:
'@commitlint/format@19.3.0':
dependencies:
'@commitlint/types': 19.0.3
- chalk: 5.3.0
+ chalk: 5.6.2
'@commitlint/is-ignored@19.2.2':
dependencies:
'@commitlint/types': 19.0.3
- semver: 7.7.2
+ semver: 7.7.3
'@commitlint/lint@19.2.2':
dependencies:
@@ -12906,15 +13659,15 @@ snapshots:
'@commitlint/rules': 19.0.3
'@commitlint/types': 19.0.3
- '@commitlint/load@19.2.0(@types/node@18.16.9)(typescript@5.8.3)':
+ '@commitlint/load@19.2.0(@types/node@18.16.9)(typescript@5.9.3)':
dependencies:
'@commitlint/config-validator': 19.0.3
'@commitlint/execute-rule': 19.0.0
'@commitlint/resolve-extends': 19.1.0
'@commitlint/types': 19.0.3
- chalk: 5.3.0
- cosmiconfig: 9.0.0(typescript@5.8.3)
- cosmiconfig-typescript-loader: 5.0.0(@types/node@18.16.9)(cosmiconfig@9.0.0(typescript@5.8.3))(typescript@5.8.3)
+ chalk: 5.6.2
+ cosmiconfig: 9.0.0(typescript@5.9.3)
+ cosmiconfig-typescript-loader: 5.0.0(@types/node@18.16.9)(cosmiconfig@9.0.0(typescript@5.9.3))(typescript@5.9.3)
lodash.isplainobject: 4.0.6
lodash.merge: 4.6.2
lodash.uniq: 4.5.0
@@ -12964,7 +13717,7 @@ snapshots:
'@commitlint/types@19.0.3':
dependencies:
'@types/conventional-commits-parser': 5.0.0
- chalk: 5.3.0
+ chalk: 5.6.2
'@cspotcode/source-map-support@0.8.1':
dependencies:
@@ -13475,10 +14228,10 @@ snapshots:
'@docsearch/css@3.9.0': {}
- '@docsearch/react@3.9.0(@algolia/client-search@5.32.0)(@types/react@19.1.9)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(search-insights@2.17.3)':
+ '@docsearch/react@3.9.0(@algolia/client-search@5.40.1)(@types/react@19.1.9)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(search-insights@2.17.3)':
dependencies:
- '@algolia/autocomplete-core': 1.17.9(@algolia/client-search@5.32.0)(algoliasearch@5.32.0)(search-insights@2.17.3)
- '@algolia/autocomplete-preset-algolia': 1.17.9(@algolia/client-search@5.32.0)(algoliasearch@5.32.0)
+ '@algolia/autocomplete-core': 1.17.9(@algolia/client-search@5.40.1)(algoliasearch@5.32.0)(search-insights@2.17.3)
+ '@algolia/autocomplete-preset-algolia': 1.17.9(@algolia/client-search@5.40.1)(algoliasearch@5.32.0)
'@docsearch/css': 3.9.0
algoliasearch: 5.32.0
optionalDependencies:
@@ -13489,7 +14242,7 @@ snapshots:
transitivePeerDependencies:
- '@algolia/client-search'
- '@docusaurus/babel@3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
+ '@docusaurus/babel@3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
dependencies:
'@babel/core': 7.28.0
'@babel/generator': 7.28.0
@@ -13502,7 +14255,7 @@ snapshots:
'@babel/runtime-corejs3': 7.28.2
'@babel/traverse': 7.28.0
'@docusaurus/logger': 3.7.0
- '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
babel-plugin-dynamic-import-node: 2.3.3
fs-extra: 11.3.1
tslib: 2.8.1
@@ -13516,18 +14269,18 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/bundler@3.7.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
+ '@docusaurus/bundler@3.7.0(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
dependencies:
'@babel/core': 7.28.0
- '@docusaurus/babel': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/babel': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
'@docusaurus/cssnano-preset': 3.7.0
'@docusaurus/logger': 3.7.0
- '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
babel-loader: 9.2.1(@babel/core@7.28.0)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
clean-css: 5.3.3
copy-webpack-plugin: 11.0.0(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- css-loader: 6.11.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ css-loader: 6.11.0(@rspack/core@1.6.8(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
css-minimizer-webpack-plugin: 5.0.1(clean-css@5.3.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
cssnano: 6.1.2(postcss@8.5.6)
file-loader: 6.2.0(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
@@ -13537,11 +14290,11 @@ snapshots:
postcss: 8.5.6
postcss-loader: 7.3.4(postcss@8.5.6)(typescript@5.6.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
postcss-preset-env: 10.2.4(postcss@8.5.6)
- react-dev-utils: 12.0.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.6.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- terser-webpack-plugin: 5.3.14(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ react-dev-utils: 12.0.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.6.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ terser-webpack-plugin: 5.3.14(@swc/core@1.5.29(@swc/helpers@0.5.12))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
tslib: 2.8.1
- url-loader: 4.1.1(file-loader@6.2.0(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ url-loader: 4.1.1(file-loader@6.2.0(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
webpackbar: 6.0.1(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
transitivePeerDependencies:
- '@parcel/css'
@@ -13561,15 +14314,15 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/core@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
+ '@docusaurus/core@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
dependencies:
- '@docusaurus/babel': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/bundler': 3.7.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/babel': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/bundler': 3.7.0(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
'@docusaurus/logger': 3.7.0
- '@docusaurus/mdx-loader': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils-common': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/mdx-loader': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils-common': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
'@mdx-js/react': 3.1.0(@types/react@19.1.9)(react@19.1.1)
boxen: 6.2.1
chalk: 4.1.2
@@ -13585,13 +14338,13 @@ snapshots:
eval: 0.1.8
fs-extra: 11.3.1
html-tags: 3.3.1
- html-webpack-plugin: 5.6.3(@rspack/core@1.4.4(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ html-webpack-plugin: 5.6.3(@rspack/core@1.6.8(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
leven: 3.1.0
lodash: 4.17.21
p-map: 4.0.0
prompts: 2.4.2
react: 19.1.1
- react-dev-utils: 12.0.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.6.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ react-dev-utils: 12.0.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.6.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
react-dom: 19.1.1(react@19.1.1)
react-helmet-async: '@slorber/react-helmet-async@1.3.0(react-dom@19.1.1(react@19.1.1))(react@19.1.1)'
react-loadable: '@docusaurus/react-loadable@6.0.0(react@19.1.1)'
@@ -13604,7 +14357,7 @@ snapshots:
shelljs: 0.8.5
tslib: 2.8.1
update-notifier: 6.0.2
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
webpack-bundle-analyzer: 4.10.2
webpack-dev-server: 4.15.2(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
webpack-merge: 6.0.1
@@ -13640,12 +14393,12 @@ snapshots:
chalk: 4.1.2
tslib: 2.8.1
- '@docusaurus/mdx-loader@3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
+ '@docusaurus/mdx-loader@3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
dependencies:
'@docusaurus/logger': 3.7.0
- '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@mdx-js/mdx': 3.1.0(acorn@8.14.0)
+ '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@mdx-js/mdx': 3.1.0(acorn@8.15.0)
'@slorber/remark-comment': 1.0.0
escape-html: 1.0.3
estree-util-value-to-estree: 3.4.0
@@ -13665,9 +14418,9 @@ snapshots:
tslib: 2.8.1
unified: 11.0.5
unist-util-visit: 5.0.0
- url-loader: 4.1.1(file-loader@6.2.0(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ url-loader: 4.1.1(file-loader@6.2.0(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
vfile: 6.0.3
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
transitivePeerDependencies:
- '@swc/core'
- acorn
@@ -13676,9 +14429,9 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/module-type-aliases@3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
+ '@docusaurus/module-type-aliases@3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
dependencies:
- '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
'@types/history': 4.7.11
'@types/react': 19.1.9
'@types/react-router-config': 5.0.11
@@ -13695,17 +14448,17 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/plugin-content-blog@3.7.0(@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3))(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
+ '@docusaurus/plugin-content-blog@3.7.0(@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3))(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
dependencies:
- '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
'@docusaurus/logger': 3.7.0
- '@docusaurus/mdx-loader': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/plugin-content-docs': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/theme-common': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils-common': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/mdx-loader': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/plugin-content-docs': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/theme-common': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils-common': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
cheerio: 1.0.0-rc.12
feed: 4.2.2
fs-extra: 11.3.1
@@ -13717,7 +14470,7 @@ snapshots:
tslib: 2.8.1
unist-util-visit: 5.0.0
utility-types: 3.11.0
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
transitivePeerDependencies:
- '@docusaurus/faster'
- '@mdx-js/react'
@@ -13739,17 +14492,17 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
+ '@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
dependencies:
- '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
'@docusaurus/logger': 3.7.0
- '@docusaurus/mdx-loader': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/module-type-aliases': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/theme-common': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils-common': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/mdx-loader': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/module-type-aliases': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/theme-common': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils-common': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
'@types/react-router-config': 5.0.11
combine-promises: 1.2.0
fs-extra: 11.3.1
@@ -13759,7 +14512,7 @@ snapshots:
react-dom: 19.1.1(react@19.1.1)
tslib: 2.8.1
utility-types: 3.11.0
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
transitivePeerDependencies:
- '@docusaurus/faster'
- '@mdx-js/react'
@@ -13781,18 +14534,18 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-content-pages@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
+ '@docusaurus/plugin-content-pages@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
dependencies:
- '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/mdx-loader': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/mdx-loader': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
fs-extra: 11.3.1
react: 19.1.1
react-dom: 19.1.1(react@19.1.1)
tslib: 2.8.1
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
transitivePeerDependencies:
- '@docusaurus/faster'
- '@mdx-js/react'
@@ -13814,11 +14567,11 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-debug@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
+ '@docusaurus/plugin-debug@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
dependencies:
- '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
fs-extra: 11.3.1
react: 19.1.1
react-dom: 19.1.1(react@19.1.1)
@@ -13845,11 +14598,11 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-google-analytics@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
+ '@docusaurus/plugin-google-analytics@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
dependencies:
- '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
react: 19.1.1
react-dom: 19.1.1(react@19.1.1)
tslib: 2.8.1
@@ -13874,11 +14627,11 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-google-gtag@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
+ '@docusaurus/plugin-google-gtag@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
dependencies:
- '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
'@types/gtag.js': 0.0.12
react: 19.1.1
react-dom: 19.1.1(react@19.1.1)
@@ -13904,11 +14657,11 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-google-tag-manager@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
+ '@docusaurus/plugin-google-tag-manager@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
dependencies:
- '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
react: 19.1.1
react-dom: 19.1.1(react@19.1.1)
tslib: 2.8.1
@@ -13933,14 +14686,14 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-sitemap@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
+ '@docusaurus/plugin-sitemap@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
dependencies:
- '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
'@docusaurus/logger': 3.7.0
- '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils-common': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils-common': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
fs-extra: 11.3.1
react: 19.1.1
react-dom: 19.1.1(react@19.1.1)
@@ -13967,18 +14720,18 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/plugin-svgr@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
+ '@docusaurus/plugin-svgr@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
dependencies:
- '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
'@svgr/core': 8.1.0(typescript@5.6.3)
'@svgr/webpack': 8.1.0(typescript@5.6.3)
react: 19.1.1
react-dom: 19.1.1(react@19.1.1)
tslib: 2.8.1
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
transitivePeerDependencies:
- '@docusaurus/faster'
- '@mdx-js/react'
@@ -14000,22 +14753,22 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/preset-classic@3.7.0(@algolia/client-search@5.32.0)(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/react@19.1.9)(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(search-insights@2.17.3)(typescript@5.6.3)':
- dependencies:
- '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/plugin-content-blog': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3))(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/plugin-content-docs': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/plugin-content-pages': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/plugin-debug': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/plugin-google-analytics': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/plugin-google-gtag': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/plugin-google-tag-manager': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/plugin-sitemap': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/plugin-svgr': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/theme-classic': 3.7.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/react@19.1.9)(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/theme-common': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/theme-search-algolia': 3.7.0(@algolia/client-search@5.32.0)(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/react@19.1.9)(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(search-insights@2.17.3)(typescript@5.6.3)
- '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/preset-classic@3.7.0(@algolia/client-search@5.40.1)(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/react@19.1.9)(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(search-insights@2.17.3)(typescript@5.6.3)':
+ dependencies:
+ '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/plugin-content-blog': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3))(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/plugin-content-docs': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/plugin-content-pages': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/plugin-debug': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/plugin-google-analytics': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/plugin-google-gtag': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/plugin-google-tag-manager': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/plugin-sitemap': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/plugin-svgr': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/theme-classic': 3.7.0(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/react@19.1.9)(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/theme-common': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/theme-search-algolia': 3.7.0(@algolia/client-search@5.40.1)(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/react@19.1.9)(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(search-insights@2.17.3)(typescript@5.6.3)
+ '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
react: 19.1.1
react-dom: 19.1.1(react@19.1.1)
transitivePeerDependencies:
@@ -14047,21 +14800,21 @@ snapshots:
'@types/react': 19.1.9
react: 19.1.1
- '@docusaurus/theme-classic@3.7.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/react@19.1.9)(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
+ '@docusaurus/theme-classic@3.7.0(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/react@19.1.9)(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)':
dependencies:
- '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
'@docusaurus/logger': 3.7.0
- '@docusaurus/mdx-loader': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/module-type-aliases': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/plugin-content-blog': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3))(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/plugin-content-docs': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/plugin-content-pages': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/theme-common': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/mdx-loader': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/module-type-aliases': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/plugin-content-blog': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3))(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/plugin-content-docs': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/plugin-content-pages': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/theme-common': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
'@docusaurus/theme-translations': 3.7.0
- '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils-common': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils-common': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
'@mdx-js/react': 3.1.0(@types/react@19.1.9)(react@19.1.1)
clsx: 2.1.1
copy-text-to-clipboard: 3.2.0
@@ -14098,13 +14851,13 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@docusaurus/theme-common@3.7.0(@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
+ '@docusaurus/theme-common@3.7.0(@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
dependencies:
- '@docusaurus/mdx-loader': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/module-type-aliases': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/plugin-content-docs': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils-common': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/mdx-loader': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/module-type-aliases': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/plugin-content-docs': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils-common': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
'@types/history': 4.7.11
'@types/react': 19.1.9
'@types/react-router-config': 5.0.11
@@ -14123,16 +14876,16 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/theme-search-algolia@3.7.0(@algolia/client-search@5.32.0)(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/react@19.1.9)(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(search-insights@2.17.3)(typescript@5.6.3)':
+ '@docusaurus/theme-search-algolia@3.7.0(@algolia/client-search@5.40.1)(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/react@19.1.9)(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(search-insights@2.17.3)(typescript@5.6.3)':
dependencies:
- '@docsearch/react': 3.9.0(@algolia/client-search@5.32.0)(@types/react@19.1.9)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(search-insights@2.17.3)
- '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docsearch/react': 3.9.0(@algolia/client-search@5.40.1)(@types/react@19.1.9)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(search-insights@2.17.3)
+ '@docusaurus/core': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
'@docusaurus/logger': 3.7.0
- '@docusaurus/plugin-content-docs': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
- '@docusaurus/theme-common': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(eslint@9.17.0(jiti@1.21.6))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/plugin-content-docs': 3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3)
+ '@docusaurus/theme-common': 3.7.0(@docusaurus/plugin-content-docs@3.7.0(@mdx-js/react@3.1.0(@types/react@19.1.9)(react@19.1.1))(@rspack/core@1.6.8(@swc/helpers@0.5.17))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(eslint@9.17.0(jiti@2.6.1))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.6.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
'@docusaurus/theme-translations': 3.7.0
- '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils-validation': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
algoliasearch: 5.32.0
algoliasearch-helper: 3.26.0(algoliasearch@5.32.0)
clsx: 2.1.1
@@ -14174,9 +14927,9 @@ snapshots:
'@docusaurus/tsconfig@3.7.0': {}
- '@docusaurus/types@3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
+ '@docusaurus/types@3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
dependencies:
- '@mdx-js/mdx': 3.1.0(acorn@8.14.0)
+ '@mdx-js/mdx': 3.1.0(acorn@8.15.0)
'@types/history': 4.7.11
'@types/react': 19.1.9
commander: 5.1.0
@@ -14185,7 +14938,7 @@ snapshots:
react-dom: 19.1.1(react@19.1.1)
react-helmet-async: '@slorber/react-helmet-async@1.3.0(react-dom@19.1.1(react@19.1.1))(react@19.1.1)'
utility-types: 3.11.0
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
webpack-merge: 5.10.0
transitivePeerDependencies:
- '@swc/core'
@@ -14195,9 +14948,9 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/utils-common@3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
+ '@docusaurus/utils-common@3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
dependencies:
- '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
tslib: 2.8.1
transitivePeerDependencies:
- '@swc/core'
@@ -14209,11 +14962,11 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/utils-validation@3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
+ '@docusaurus/utils-validation@3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
dependencies:
'@docusaurus/logger': 3.7.0
- '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils-common': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils-common': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
fs-extra: 11.3.1
joi: 17.13.3
js-yaml: 4.1.0
@@ -14229,11 +14982,11 @@ snapshots:
- uglify-js
- webpack-cli
- '@docusaurus/utils@3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
+ '@docusaurus/utils@3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
dependencies:
'@docusaurus/logger': 3.7.0
- '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@docusaurus/utils-common': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.14.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/types': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@docusaurus/utils-common': 3.7.0(@swc/core@1.5.29(@swc/helpers@0.5.12))(acorn@8.15.0)(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
escape-string-regexp: 4.0.0
file-loader: 6.2.0(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
fs-extra: 11.3.1
@@ -14248,9 +15001,9 @@ snapshots:
resolve-pathname: 3.0.0
shelljs: 0.8.5
tslib: 2.8.1
- url-loader: 4.1.1(file-loader@6.2.0(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ url-loader: 4.1.1(file-loader@6.2.0(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
utility-types: 3.11.0
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
transitivePeerDependencies:
- '@swc/core'
- acorn
@@ -14261,102 +15014,258 @@ snapshots:
- uglify-js
- webpack-cli
- '@emnapi/core@1.4.3':
+ '@emnapi/core@1.7.1':
dependencies:
- '@emnapi/wasi-threads': 1.0.2
+ '@emnapi/wasi-threads': 1.1.0
tslib: 2.8.1
- '@emnapi/runtime@1.4.3':
+ '@emnapi/runtime@1.7.1':
dependencies:
tslib: 2.8.1
- '@emnapi/wasi-threads@1.0.2':
+ '@emnapi/wasi-threads@1.1.0':
dependencies:
tslib: 2.8.1
'@esbuild/aix-ppc64@0.25.5':
optional: true
+ '@esbuild/aix-ppc64@0.26.0':
+ optional: true
+
+ '@esbuild/aix-ppc64@0.27.2':
+ optional: true
+
'@esbuild/android-arm64@0.25.5':
optional: true
+ '@esbuild/android-arm64@0.26.0':
+ optional: true
+
+ '@esbuild/android-arm64@0.27.2':
+ optional: true
+
'@esbuild/android-arm@0.25.5':
optional: true
+ '@esbuild/android-arm@0.26.0':
+ optional: true
+
+ '@esbuild/android-arm@0.27.2':
+ optional: true
+
'@esbuild/android-x64@0.25.5':
optional: true
+ '@esbuild/android-x64@0.26.0':
+ optional: true
+
+ '@esbuild/android-x64@0.27.2':
+ optional: true
+
'@esbuild/darwin-arm64@0.25.5':
optional: true
+ '@esbuild/darwin-arm64@0.26.0':
+ optional: true
+
+ '@esbuild/darwin-arm64@0.27.2':
+ optional: true
+
'@esbuild/darwin-x64@0.25.5':
optional: true
+ '@esbuild/darwin-x64@0.26.0':
+ optional: true
+
+ '@esbuild/darwin-x64@0.27.2':
+ optional: true
+
'@esbuild/freebsd-arm64@0.25.5':
optional: true
+ '@esbuild/freebsd-arm64@0.26.0':
+ optional: true
+
+ '@esbuild/freebsd-arm64@0.27.2':
+ optional: true
+
'@esbuild/freebsd-x64@0.25.5':
optional: true
+ '@esbuild/freebsd-x64@0.26.0':
+ optional: true
+
+ '@esbuild/freebsd-x64@0.27.2':
+ optional: true
+
'@esbuild/linux-arm64@0.25.5':
optional: true
+ '@esbuild/linux-arm64@0.26.0':
+ optional: true
+
+ '@esbuild/linux-arm64@0.27.2':
+ optional: true
+
'@esbuild/linux-arm@0.25.5':
optional: true
+ '@esbuild/linux-arm@0.26.0':
+ optional: true
+
+ '@esbuild/linux-arm@0.27.2':
+ optional: true
+
'@esbuild/linux-ia32@0.25.5':
optional: true
+ '@esbuild/linux-ia32@0.26.0':
+ optional: true
+
+ '@esbuild/linux-ia32@0.27.2':
+ optional: true
+
'@esbuild/linux-loong64@0.25.5':
optional: true
+ '@esbuild/linux-loong64@0.26.0':
+ optional: true
+
+ '@esbuild/linux-loong64@0.27.2':
+ optional: true
+
'@esbuild/linux-mips64el@0.25.5':
optional: true
+ '@esbuild/linux-mips64el@0.26.0':
+ optional: true
+
+ '@esbuild/linux-mips64el@0.27.2':
+ optional: true
+
'@esbuild/linux-ppc64@0.25.5':
optional: true
+ '@esbuild/linux-ppc64@0.26.0':
+ optional: true
+
+ '@esbuild/linux-ppc64@0.27.2':
+ optional: true
+
'@esbuild/linux-riscv64@0.25.5':
optional: true
+ '@esbuild/linux-riscv64@0.26.0':
+ optional: true
+
+ '@esbuild/linux-riscv64@0.27.2':
+ optional: true
+
'@esbuild/linux-s390x@0.25.5':
optional: true
+ '@esbuild/linux-s390x@0.26.0':
+ optional: true
+
+ '@esbuild/linux-s390x@0.27.2':
+ optional: true
+
'@esbuild/linux-x64@0.25.5':
optional: true
+ '@esbuild/linux-x64@0.26.0':
+ optional: true
+
+ '@esbuild/linux-x64@0.27.2':
+ optional: true
+
'@esbuild/netbsd-arm64@0.25.5':
optional: true
+ '@esbuild/netbsd-arm64@0.26.0':
+ optional: true
+
+ '@esbuild/netbsd-arm64@0.27.2':
+ optional: true
+
'@esbuild/netbsd-x64@0.25.5':
optional: true
+ '@esbuild/netbsd-x64@0.26.0':
+ optional: true
+
+ '@esbuild/netbsd-x64@0.27.2':
+ optional: true
+
'@esbuild/openbsd-arm64@0.25.5':
optional: true
+ '@esbuild/openbsd-arm64@0.26.0':
+ optional: true
+
+ '@esbuild/openbsd-arm64@0.27.2':
+ optional: true
+
'@esbuild/openbsd-x64@0.25.5':
optional: true
+ '@esbuild/openbsd-x64@0.26.0':
+ optional: true
+
+ '@esbuild/openbsd-x64@0.27.2':
+ optional: true
+
+ '@esbuild/openharmony-arm64@0.26.0':
+ optional: true
+
+ '@esbuild/openharmony-arm64@0.27.2':
+ optional: true
+
'@esbuild/sunos-x64@0.25.5':
optional: true
+ '@esbuild/sunos-x64@0.26.0':
+ optional: true
+
+ '@esbuild/sunos-x64@0.27.2':
+ optional: true
+
'@esbuild/win32-arm64@0.25.5':
optional: true
+ '@esbuild/win32-arm64@0.26.0':
+ optional: true
+
+ '@esbuild/win32-arm64@0.27.2':
+ optional: true
+
'@esbuild/win32-ia32@0.25.5':
optional: true
+ '@esbuild/win32-ia32@0.26.0':
+ optional: true
+
+ '@esbuild/win32-ia32@0.27.2':
+ optional: true
+
'@esbuild/win32-x64@0.25.5':
optional: true
- '@eslint-community/eslint-utils@4.4.0(eslint@9.17.0(jiti@1.21.6))':
+ '@esbuild/win32-x64@0.26.0':
+ optional: true
+
+ '@esbuild/win32-x64@0.27.2':
+ optional: true
+
+ '@eslint-community/eslint-utils@4.4.0(eslint@9.17.0(jiti@2.6.1))':
dependencies:
- eslint: 9.17.0(jiti@1.21.6)
+ eslint: 9.17.0(jiti@2.6.1)
eslint-visitor-keys: 3.4.3
- '@eslint-community/eslint-utils@4.7.0(eslint@9.17.0(jiti@1.21.6))':
+ '@eslint-community/eslint-utils@4.7.0(eslint@9.17.0(jiti@2.6.1))':
dependencies:
- eslint: 9.17.0(jiti@1.21.6)
+ eslint: 9.17.0(jiti@2.6.1)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {}
@@ -14436,142 +15345,128 @@ snapshots:
'@humanwhocodes/retry@0.4.1': {}
- '@inquirer/checkbox@4.2.0(@types/node@18.16.9)':
+ '@inquirer/ansi@1.0.2': {}
+
+ '@inquirer/checkbox@4.3.2(@types/node@18.16.9)':
dependencies:
- '@inquirer/core': 10.1.15(@types/node@18.16.9)
- '@inquirer/figures': 1.0.13
- '@inquirer/type': 3.0.8(@types/node@18.16.9)
- ansi-escapes: 4.3.2
- yoctocolors-cjs: 2.1.2
+ '@inquirer/ansi': 1.0.2
+ '@inquirer/core': 10.3.2(@types/node@18.16.9)
+ '@inquirer/figures': 1.0.15
+ '@inquirer/type': 3.0.10(@types/node@18.16.9)
+ yoctocolors-cjs: 2.1.3
optionalDependencies:
'@types/node': 18.16.9
- '@inquirer/confirm@5.1.13(@types/node@18.16.9)':
+ '@inquirer/confirm@5.1.19(@types/node@18.16.9)':
dependencies:
- '@inquirer/core': 10.1.14(@types/node@18.16.9)
- '@inquirer/type': 3.0.7(@types/node@18.16.9)
+ '@inquirer/core': 10.3.2(@types/node@18.16.9)
+ '@inquirer/type': 3.0.10(@types/node@18.16.9)
optionalDependencies:
'@types/node': 18.16.9
- '@inquirer/core@10.1.14(@types/node@18.16.9)':
+ '@inquirer/core@10.3.2(@types/node@18.16.9)':
dependencies:
- '@inquirer/figures': 1.0.12
- '@inquirer/type': 3.0.7(@types/node@18.16.9)
- ansi-escapes: 4.3.2
+ '@inquirer/ansi': 1.0.2
+ '@inquirer/figures': 1.0.15
+ '@inquirer/type': 3.0.10(@types/node@18.16.9)
cli-width: 4.1.0
mute-stream: 2.0.0
signal-exit: 4.1.0
wrap-ansi: 6.2.0
- yoctocolors-cjs: 2.1.2
+ yoctocolors-cjs: 2.1.3
optionalDependencies:
'@types/node': 18.16.9
- '@inquirer/core@10.1.15(@types/node@18.16.9)':
+ '@inquirer/editor@4.2.23(@types/node@18.16.9)':
dependencies:
- '@inquirer/figures': 1.0.13
- '@inquirer/type': 3.0.8(@types/node@18.16.9)
- ansi-escapes: 4.3.2
- cli-width: 4.1.0
- mute-stream: 2.0.0
- signal-exit: 4.1.0
- wrap-ansi: 6.2.0
- yoctocolors-cjs: 2.1.2
+ '@inquirer/core': 10.3.2(@types/node@18.16.9)
+ '@inquirer/external-editor': 1.0.3(@types/node@18.16.9)
+ '@inquirer/type': 3.0.10(@types/node@18.16.9)
optionalDependencies:
'@types/node': 18.16.9
- '@inquirer/editor@4.2.15(@types/node@18.16.9)':
+ '@inquirer/expand@4.0.23(@types/node@18.16.9)':
dependencies:
- '@inquirer/core': 10.1.15(@types/node@18.16.9)
- '@inquirer/type': 3.0.8(@types/node@18.16.9)
- external-editor: 3.1.0
+ '@inquirer/core': 10.3.2(@types/node@18.16.9)
+ '@inquirer/type': 3.0.10(@types/node@18.16.9)
+ yoctocolors-cjs: 2.1.3
optionalDependencies:
'@types/node': 18.16.9
- '@inquirer/expand@4.0.17(@types/node@18.16.9)':
+ '@inquirer/external-editor@1.0.3(@types/node@18.16.9)':
dependencies:
- '@inquirer/core': 10.1.15(@types/node@18.16.9)
- '@inquirer/type': 3.0.8(@types/node@18.16.9)
- yoctocolors-cjs: 2.1.2
+ chardet: 2.1.1
+ iconv-lite: 0.7.1
optionalDependencies:
'@types/node': 18.16.9
- '@inquirer/figures@1.0.12': {}
-
- '@inquirer/figures@1.0.13': {}
+ '@inquirer/figures@1.0.15': {}
- '@inquirer/input@4.2.1(@types/node@18.16.9)':
+ '@inquirer/input@4.3.1(@types/node@18.16.9)':
dependencies:
- '@inquirer/core': 10.1.15(@types/node@18.16.9)
- '@inquirer/type': 3.0.8(@types/node@18.16.9)
+ '@inquirer/core': 10.3.2(@types/node@18.16.9)
+ '@inquirer/type': 3.0.10(@types/node@18.16.9)
optionalDependencies:
'@types/node': 18.16.9
- '@inquirer/number@3.0.17(@types/node@18.16.9)':
+ '@inquirer/number@3.0.23(@types/node@18.16.9)':
dependencies:
- '@inquirer/core': 10.1.15(@types/node@18.16.9)
- '@inquirer/type': 3.0.8(@types/node@18.16.9)
+ '@inquirer/core': 10.3.2(@types/node@18.16.9)
+ '@inquirer/type': 3.0.10(@types/node@18.16.9)
optionalDependencies:
'@types/node': 18.16.9
- '@inquirer/password@4.0.17(@types/node@18.16.9)':
+ '@inquirer/password@4.0.23(@types/node@18.16.9)':
dependencies:
- '@inquirer/core': 10.1.15(@types/node@18.16.9)
- '@inquirer/type': 3.0.8(@types/node@18.16.9)
- ansi-escapes: 4.3.2
- optionalDependencies:
- '@types/node': 18.16.9
-
- '@inquirer/prompts@7.6.0(@types/node@18.16.9)':
- dependencies:
- '@inquirer/checkbox': 4.2.0(@types/node@18.16.9)
- '@inquirer/confirm': 5.1.13(@types/node@18.16.9)
- '@inquirer/editor': 4.2.15(@types/node@18.16.9)
- '@inquirer/expand': 4.0.17(@types/node@18.16.9)
- '@inquirer/input': 4.2.1(@types/node@18.16.9)
- '@inquirer/number': 3.0.17(@types/node@18.16.9)
- '@inquirer/password': 4.0.17(@types/node@18.16.9)
- '@inquirer/rawlist': 4.1.5(@types/node@18.16.9)
- '@inquirer/search': 3.1.0(@types/node@18.16.9)
- '@inquirer/select': 4.3.1(@types/node@18.16.9)
+ '@inquirer/ansi': 1.0.2
+ '@inquirer/core': 10.3.2(@types/node@18.16.9)
+ '@inquirer/type': 3.0.10(@types/node@18.16.9)
optionalDependencies:
'@types/node': 18.16.9
- '@inquirer/rawlist@4.1.5(@types/node@18.16.9)':
- dependencies:
- '@inquirer/core': 10.1.15(@types/node@18.16.9)
- '@inquirer/type': 3.0.8(@types/node@18.16.9)
- yoctocolors-cjs: 2.1.2
+ '@inquirer/prompts@7.9.0(@types/node@18.16.9)':
+ dependencies:
+ '@inquirer/checkbox': 4.3.2(@types/node@18.16.9)
+ '@inquirer/confirm': 5.1.19(@types/node@18.16.9)
+ '@inquirer/editor': 4.2.23(@types/node@18.16.9)
+ '@inquirer/expand': 4.0.23(@types/node@18.16.9)
+ '@inquirer/input': 4.3.1(@types/node@18.16.9)
+ '@inquirer/number': 3.0.23(@types/node@18.16.9)
+ '@inquirer/password': 4.0.23(@types/node@18.16.9)
+ '@inquirer/rawlist': 4.1.11(@types/node@18.16.9)
+ '@inquirer/search': 3.2.2(@types/node@18.16.9)
+ '@inquirer/select': 4.4.2(@types/node@18.16.9)
optionalDependencies:
'@types/node': 18.16.9
- '@inquirer/search@3.1.0(@types/node@18.16.9)':
+ '@inquirer/rawlist@4.1.11(@types/node@18.16.9)':
dependencies:
- '@inquirer/core': 10.1.15(@types/node@18.16.9)
- '@inquirer/figures': 1.0.13
- '@inquirer/type': 3.0.8(@types/node@18.16.9)
- yoctocolors-cjs: 2.1.2
+ '@inquirer/core': 10.3.2(@types/node@18.16.9)
+ '@inquirer/type': 3.0.10(@types/node@18.16.9)
+ yoctocolors-cjs: 2.1.3
optionalDependencies:
'@types/node': 18.16.9
- '@inquirer/select@4.3.1(@types/node@18.16.9)':
+ '@inquirer/search@3.2.2(@types/node@18.16.9)':
dependencies:
- '@inquirer/core': 10.1.15(@types/node@18.16.9)
- '@inquirer/figures': 1.0.13
- '@inquirer/type': 3.0.8(@types/node@18.16.9)
- ansi-escapes: 4.3.2
- yoctocolors-cjs: 2.1.2
+ '@inquirer/core': 10.3.2(@types/node@18.16.9)
+ '@inquirer/figures': 1.0.15
+ '@inquirer/type': 3.0.10(@types/node@18.16.9)
+ yoctocolors-cjs: 2.1.3
optionalDependencies:
'@types/node': 18.16.9
- '@inquirer/type@1.5.5':
+ '@inquirer/select@4.4.2(@types/node@18.16.9)':
dependencies:
- mute-stream: 1.0.0
-
- '@inquirer/type@3.0.7(@types/node@18.16.9)':
+ '@inquirer/ansi': 1.0.2
+ '@inquirer/core': 10.3.2(@types/node@18.16.9)
+ '@inquirer/figures': 1.0.15
+ '@inquirer/type': 3.0.10(@types/node@18.16.9)
+ yoctocolors-cjs: 2.1.3
optionalDependencies:
'@types/node': 18.16.9
- '@inquirer/type@3.0.8(@types/node@18.16.9)':
+ '@inquirer/type@3.0.10(@types/node@18.16.9)':
optionalDependencies:
'@types/node': 18.16.9
@@ -14585,7 +15480,7 @@ snapshots:
dependencies:
string-width: 5.1.2
string-width-cjs: string-width@4.2.3
- strip-ansi: 7.1.0
+ 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
@@ -14613,7 +15508,7 @@ snapshots:
jest-util: 30.0.5
slash: 3.0.0
- '@jest/core@30.0.5(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3))':
+ '@jest/core@30.0.5(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3))':
dependencies:
'@jest/console': 30.0.5
'@jest/pattern': 30.0.1
@@ -14628,7 +15523,7 @@ snapshots:
exit-x: 0.2.2
graceful-fs: 4.2.11
jest-changed-files: 30.0.5
- jest-config: 30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3))
+ jest-config: 30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3))
jest-haste-map: 30.0.5
jest-message-util: 30.0.5
jest-regex-util: 30.0.1
@@ -14770,7 +15665,7 @@ snapshots:
'@jest/transform@30.0.5':
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@jest/types': 30.0.5
'@jridgewell/trace-mapping': 0.3.29
babel-plugin-istanbul: 7.0.0
@@ -14812,6 +15707,11 @@ snapshots:
'@jridgewell/sourcemap-codec': 1.5.0
'@jridgewell/trace-mapping': 0.3.29
+ '@jridgewell/remapping@2.3.5':
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.12
+ '@jridgewell/trace-mapping': 0.3.29
+
'@jridgewell/resolve-uri@3.1.2': {}
'@jridgewell/source-map@0.3.6':
@@ -14821,6 +15721,8 @@ snapshots:
'@jridgewell/sourcemap-codec@1.5.0': {}
+ '@jridgewell/sourcemap-codec@1.5.5': {}
+
'@jridgewell/trace-mapping@0.3.29':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
@@ -14835,47 +15737,70 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@jsonjoy.com/json-pack@1.0.4(tslib@2.8.1)':
+ '@jsonjoy.com/buffers@1.2.1(tslib@2.8.1)':
+ dependencies:
+ tslib: 2.8.1
+
+ '@jsonjoy.com/codegen@1.0.0(tslib@2.8.1)':
+ dependencies:
+ tslib: 2.8.1
+
+ '@jsonjoy.com/json-pack@1.21.0(tslib@2.8.1)':
dependencies:
'@jsonjoy.com/base64': 1.1.2(tslib@2.8.1)
- '@jsonjoy.com/util': 1.6.0(tslib@2.8.1)
+ '@jsonjoy.com/buffers': 1.2.1(tslib@2.8.1)
+ '@jsonjoy.com/codegen': 1.0.0(tslib@2.8.1)
+ '@jsonjoy.com/json-pointer': 1.0.2(tslib@2.8.1)
+ '@jsonjoy.com/util': 1.9.0(tslib@2.8.1)
hyperdyperid: 1.2.0
- thingies: 1.21.0(tslib@2.8.1)
+ thingies: 2.5.0(tslib@2.8.1)
+ tree-dump: 1.1.0(tslib@2.8.1)
+ tslib: 2.8.1
+
+ '@jsonjoy.com/json-pointer@1.0.2(tslib@2.8.1)':
+ dependencies:
+ '@jsonjoy.com/codegen': 1.0.0(tslib@2.8.1)
+ '@jsonjoy.com/util': 1.9.0(tslib@2.8.1)
tslib: 2.8.1
- '@jsonjoy.com/util@1.6.0(tslib@2.8.1)':
+ '@jsonjoy.com/util@1.9.0(tslib@2.8.1)':
dependencies:
+ '@jsonjoy.com/buffers': 1.2.1(tslib@2.8.1)
+ '@jsonjoy.com/codegen': 1.0.0(tslib@2.8.1)
tslib: 2.8.1
'@leichtgewicht/ip-codec@2.0.5': {}
- '@listr2/prompt-adapter-inquirer@2.0.22(@inquirer/prompts@7.6.0(@types/node@18.16.9))':
+ '@listr2/prompt-adapter-inquirer@3.0.5(@inquirer/prompts@7.9.0(@types/node@18.16.9))(@types/node@18.16.9)(listr2@9.0.5)':
dependencies:
- '@inquirer/prompts': 7.6.0(@types/node@18.16.9)
- '@inquirer/type': 1.5.5
+ '@inquirer/prompts': 7.9.0(@types/node@18.16.9)
+ '@inquirer/type': 3.0.10(@types/node@18.16.9)
+ listr2: 9.0.5
+ transitivePeerDependencies:
+ - '@types/node'
- '@lmdb/lmdb-darwin-arm64@3.4.1':
+ '@lmdb/lmdb-darwin-arm64@3.4.3':
optional: true
- '@lmdb/lmdb-darwin-x64@3.4.1':
+ '@lmdb/lmdb-darwin-x64@3.4.3':
optional: true
- '@lmdb/lmdb-linux-arm64@3.4.1':
+ '@lmdb/lmdb-linux-arm64@3.4.3':
optional: true
- '@lmdb/lmdb-linux-arm@3.4.1':
+ '@lmdb/lmdb-linux-arm@3.4.3':
optional: true
- '@lmdb/lmdb-linux-x64@3.4.1':
+ '@lmdb/lmdb-linux-x64@3.4.3':
optional: true
- '@lmdb/lmdb-win32-arm64@3.4.1':
+ '@lmdb/lmdb-win32-arm64@3.4.3':
optional: true
- '@lmdb/lmdb-win32-x64@3.4.1':
+ '@lmdb/lmdb-win32-x64@3.4.3':
optional: true
- '@mdx-js/mdx@3.1.0(acorn@8.14.0)':
+ '@mdx-js/mdx@3.1.0(acorn@8.15.0)':
dependencies:
'@types/estree': 1.0.8
'@types/estree-jsx': 1.0.5
@@ -14889,7 +15814,7 @@ snapshots:
hast-util-to-jsx-runtime: 2.3.6
markdown-extensions: 2.0.0
recma-build-jsx: 1.0.0
- recma-jsx: 1.0.1(acorn@8.14.0)
+ recma-jsx: 1.0.1(acorn@8.15.0)
recma-stringify: 1.0.0
rehype-recma: 1.0.0
remark-mdx: 3.1.0
@@ -14911,9 +15836,10 @@ snapshots:
'@types/react': 19.1.9
react: 19.1.1
- '@modelcontextprotocol/sdk@1.13.3':
+ '@modelcontextprotocol/sdk@1.24.0(zod@4.1.13)':
dependencies:
- ajv: 6.12.6
+ ajv: 8.17.1
+ ajv-formats: 3.0.1(ajv@8.17.1)
content-type: 1.0.5
cors: 2.8.5
cross-spawn: 7.0.6
@@ -14921,39 +15847,27 @@ snapshots:
eventsource-parser: 3.0.3
express: 5.1.0
express-rate-limit: 7.5.1(express@5.1.0)
+ jose: 6.1.3
pkce-challenge: 5.0.0
raw-body: 3.0.0
- zod: 3.25.75
- zod-to-json-schema: 3.24.6(zod@3.25.75)
+ zod: 4.1.13
+ zod-to-json-schema: 3.25.0(zod@4.1.13)
transitivePeerDependencies:
- supports-color
- '@modern-js/node-bundle-require@2.68.2':
- dependencies:
- '@modern-js/utils': 2.68.2
- '@swc/helpers': 0.5.17
- esbuild: 0.25.5
-
- '@modern-js/utils@2.68.2':
- dependencies:
- '@swc/helpers': 0.5.17
- caniuse-lite: 1.0.30001726
- lodash: 4.17.21
- rslog: 1.2.9
-
- '@module-federation/bridge-react-webpack-plugin@0.17.1':
+ '@module-federation/bridge-react-webpack-plugin@0.21.6':
dependencies:
- '@module-federation/sdk': 0.17.1
+ '@module-federation/sdk': 0.21.6
'@types/semver': 7.5.8
semver: 7.6.3
- '@module-federation/cli@0.17.1(typescript@5.8.3)':
+ '@module-federation/cli@0.21.6(typescript@5.9.3)':
dependencies:
- '@modern-js/node-bundle-require': 2.68.2
- '@module-federation/dts-plugin': 0.17.1(typescript@5.8.3)
- '@module-federation/sdk': 0.17.1
+ '@module-federation/dts-plugin': 0.21.6(typescript@5.9.3)
+ '@module-federation/sdk': 0.21.6
chalk: 3.0.0
commander: 11.1.0
+ jiti: 2.4.2
transitivePeerDependencies:
- bufferutil
- debug
@@ -14962,32 +15876,32 @@ snapshots:
- utf-8-validate
- vue-tsc
- '@module-federation/data-prefetch@0.17.1(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
+ '@module-federation/data-prefetch@0.21.6(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
dependencies:
- '@module-federation/runtime': 0.17.1
- '@module-federation/sdk': 0.17.1
+ '@module-federation/runtime': 0.21.6
+ '@module-federation/sdk': 0.21.6
fs-extra: 9.1.0
react: 19.1.1
react-dom: 19.1.1(react@19.1.1)
- '@module-federation/dts-plugin@0.17.1(typescript@5.8.3)':
+ '@module-federation/dts-plugin@0.21.6(typescript@5.9.3)':
dependencies:
- '@module-federation/error-codes': 0.17.1
- '@module-federation/managers': 0.17.1
- '@module-federation/sdk': 0.17.1
- '@module-federation/third-party-dts-extractor': 0.17.1
+ '@module-federation/error-codes': 0.21.6
+ '@module-federation/managers': 0.21.6
+ '@module-federation/sdk': 0.21.6
+ '@module-federation/third-party-dts-extractor': 0.21.6
adm-zip: 0.5.14
ansi-colors: 4.1.3
- axios: 1.10.0
+ axios: 1.13.2
chalk: 3.0.0
fs-extra: 9.1.0
isomorphic-ws: 5.0.0(ws@8.18.0)
- koa: 2.16.1
+ koa: 3.0.3
lodash.clonedeepwith: 4.5.0
log4js: 6.9.1
node-schedule: 2.1.1
rambda: 9.2.1
- typescript: 5.8.3
+ typescript: 5.9.3
ws: 8.18.0
transitivePeerDependencies:
- bufferutil
@@ -14995,25 +15909,25 @@ snapshots:
- supports-color
- utf-8-validate
- '@module-federation/enhanced@0.17.1(@rspack/core@1.4.4(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.8.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))':
- dependencies:
- '@module-federation/bridge-react-webpack-plugin': 0.17.1
- '@module-federation/cli': 0.17.1(typescript@5.8.3)
- '@module-federation/data-prefetch': 0.17.1(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
- '@module-federation/dts-plugin': 0.17.1(typescript@5.8.3)
- '@module-federation/error-codes': 0.17.1
- '@module-federation/inject-external-runtime-core-plugin': 0.17.1(@module-federation/runtime-tools@0.17.1)
- '@module-federation/managers': 0.17.1
- '@module-federation/manifest': 0.17.1(typescript@5.8.3)
- '@module-federation/rspack': 0.17.1(@rspack/core@1.4.4(@swc/helpers@0.5.12))(typescript@5.8.3)
- '@module-federation/runtime-tools': 0.17.1
- '@module-federation/sdk': 0.17.1
+ '@module-federation/enhanced@0.21.6(@rspack/core@1.6.8(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.9.3)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))':
+ dependencies:
+ '@module-federation/bridge-react-webpack-plugin': 0.21.6
+ '@module-federation/cli': 0.21.6(typescript@5.9.3)
+ '@module-federation/data-prefetch': 0.21.6(react-dom@19.1.1(react@19.1.1))(react@19.1.1)
+ '@module-federation/dts-plugin': 0.21.6(typescript@5.9.3)
+ '@module-federation/error-codes': 0.21.6
+ '@module-federation/inject-external-runtime-core-plugin': 0.21.6(@module-federation/runtime-tools@0.21.6)
+ '@module-federation/managers': 0.21.6
+ '@module-federation/manifest': 0.21.6(typescript@5.9.3)
+ '@module-federation/rspack': 0.21.6(@rspack/core@1.6.8(@swc/helpers@0.5.12))(typescript@5.9.3)
+ '@module-federation/runtime-tools': 0.21.6
+ '@module-federation/sdk': 0.21.6
btoa: 1.2.1
- schema-utils: 4.3.2
+ schema-utils: 4.3.3
upath: 2.0.1
optionalDependencies:
- typescript: 5.8.3
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ typescript: 5.9.3
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
transitivePeerDependencies:
- '@rspack/core'
- bufferutil
@@ -15023,25 +15937,23 @@ snapshots:
- supports-color
- utf-8-validate
- '@module-federation/error-codes@0.15.0': {}
-
- '@module-federation/error-codes@0.17.1': {}
+ '@module-federation/error-codes@0.21.6': {}
- '@module-federation/inject-external-runtime-core-plugin@0.17.1(@module-federation/runtime-tools@0.17.1)':
+ '@module-federation/inject-external-runtime-core-plugin@0.21.6(@module-federation/runtime-tools@0.21.6)':
dependencies:
- '@module-federation/runtime-tools': 0.17.1
+ '@module-federation/runtime-tools': 0.21.6
- '@module-federation/managers@0.17.1':
+ '@module-federation/managers@0.21.6':
dependencies:
- '@module-federation/sdk': 0.17.1
+ '@module-federation/sdk': 0.21.6
find-pkg: 2.0.0
fs-extra: 9.1.0
- '@module-federation/manifest@0.17.1(typescript@5.8.3)':
+ '@module-federation/manifest@0.21.6(typescript@5.9.3)':
dependencies:
- '@module-federation/dts-plugin': 0.17.1(typescript@5.8.3)
- '@module-federation/managers': 0.17.1
- '@module-federation/sdk': 0.17.1
+ '@module-federation/dts-plugin': 0.21.6(typescript@5.9.3)
+ '@module-federation/managers': 0.21.6
+ '@module-federation/sdk': 0.21.6
chalk: 3.0.0
find-pkg: 2.0.0
transitivePeerDependencies:
@@ -15052,15 +15964,15 @@ snapshots:
- utf-8-validate
- vue-tsc
- '@module-federation/node@2.7.10(@rspack/core@1.4.4(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.8.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))':
+ '@module-federation/node@2.7.25(@rspack/core@1.6.8(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.9.3)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))':
dependencies:
- '@module-federation/enhanced': 0.17.1(@rspack/core@1.4.4(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.8.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@module-federation/runtime': 0.17.1
- '@module-federation/sdk': 0.17.1
+ '@module-federation/enhanced': 0.21.6(@rspack/core@1.6.8(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.9.3)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@module-federation/runtime': 0.21.6
+ '@module-federation/sdk': 0.21.6
btoa: 1.2.1
encoding: 0.1.13
node-fetch: 2.7.0(encoding@0.1.13)
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
optionalDependencies:
react: 19.1.1
react-dom: 19.1.1(react@19.1.1)
@@ -15073,76 +15985,53 @@ snapshots:
- utf-8-validate
- vue-tsc
- '@module-federation/rspack@0.17.1(@rspack/core@1.4.4(@swc/helpers@0.5.12))(typescript@5.8.3)':
+ '@module-federation/rspack@0.21.6(@rspack/core@1.6.8(@swc/helpers@0.5.12))(typescript@5.9.3)':
dependencies:
- '@module-federation/bridge-react-webpack-plugin': 0.17.1
- '@module-federation/dts-plugin': 0.17.1(typescript@5.8.3)
- '@module-federation/inject-external-runtime-core-plugin': 0.17.1(@module-federation/runtime-tools@0.17.1)
- '@module-federation/managers': 0.17.1
- '@module-federation/manifest': 0.17.1(typescript@5.8.3)
- '@module-federation/runtime-tools': 0.17.1
- '@module-federation/sdk': 0.17.1
- '@rspack/core': 1.4.4(@swc/helpers@0.5.12)
+ '@module-federation/bridge-react-webpack-plugin': 0.21.6
+ '@module-federation/dts-plugin': 0.21.6(typescript@5.9.3)
+ '@module-federation/inject-external-runtime-core-plugin': 0.21.6(@module-federation/runtime-tools@0.21.6)
+ '@module-federation/managers': 0.21.6
+ '@module-federation/manifest': 0.21.6(typescript@5.9.3)
+ '@module-federation/runtime-tools': 0.21.6
+ '@module-federation/sdk': 0.21.6
+ '@rspack/core': 1.6.8(@swc/helpers@0.5.12)
btoa: 1.2.1
optionalDependencies:
- typescript: 5.8.3
+ typescript: 5.9.3
transitivePeerDependencies:
- bufferutil
- debug
- supports-color
- utf-8-validate
- '@module-federation/runtime-core@0.15.0':
- dependencies:
- '@module-federation/error-codes': 0.15.0
- '@module-federation/sdk': 0.15.0
-
- '@module-federation/runtime-core@0.17.1':
- dependencies:
- '@module-federation/error-codes': 0.17.1
- '@module-federation/sdk': 0.17.1
-
- '@module-federation/runtime-tools@0.15.0':
- dependencies:
- '@module-federation/runtime': 0.15.0
- '@module-federation/webpack-bundler-runtime': 0.15.0
-
- '@module-federation/runtime-tools@0.17.1':
+ '@module-federation/runtime-core@0.21.6':
dependencies:
- '@module-federation/runtime': 0.17.1
- '@module-federation/webpack-bundler-runtime': 0.17.1
+ '@module-federation/error-codes': 0.21.6
+ '@module-federation/sdk': 0.21.6
- '@module-federation/runtime@0.15.0':
+ '@module-federation/runtime-tools@0.21.6':
dependencies:
- '@module-federation/error-codes': 0.15.0
- '@module-federation/runtime-core': 0.15.0
- '@module-federation/sdk': 0.15.0
+ '@module-federation/runtime': 0.21.6
+ '@module-federation/webpack-bundler-runtime': 0.21.6
- '@module-federation/runtime@0.17.1':
+ '@module-federation/runtime@0.21.6':
dependencies:
- '@module-federation/error-codes': 0.17.1
- '@module-federation/runtime-core': 0.17.1
- '@module-federation/sdk': 0.17.1
+ '@module-federation/error-codes': 0.21.6
+ '@module-federation/runtime-core': 0.21.6
+ '@module-federation/sdk': 0.21.6
- '@module-federation/sdk@0.15.0': {}
+ '@module-federation/sdk@0.21.6': {}
- '@module-federation/sdk@0.17.1': {}
-
- '@module-federation/third-party-dts-extractor@0.17.1':
+ '@module-federation/third-party-dts-extractor@0.21.6':
dependencies:
find-pkg: 2.0.0
fs-extra: 9.1.0
resolve: 1.22.8
- '@module-federation/webpack-bundler-runtime@0.15.0':
- dependencies:
- '@module-federation/runtime': 0.15.0
- '@module-federation/sdk': 0.15.0
-
- '@module-federation/webpack-bundler-runtime@0.17.1':
+ '@module-federation/webpack-bundler-runtime@0.21.6':
dependencies:
- '@module-federation/runtime': 0.17.1
- '@module-federation/sdk': 0.17.1
+ '@module-federation/runtime': 0.21.6
+ '@module-federation/sdk': 0.21.6
'@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
optional: true
@@ -15165,51 +16054,102 @@ snapshots:
'@napi-rs/nice-android-arm-eabi@1.0.1':
optional: true
+ '@napi-rs/nice-android-arm-eabi@1.1.1':
+ optional: true
+
'@napi-rs/nice-android-arm64@1.0.1':
optional: true
+ '@napi-rs/nice-android-arm64@1.1.1':
+ optional: true
+
'@napi-rs/nice-darwin-arm64@1.0.1':
optional: true
+ '@napi-rs/nice-darwin-arm64@1.1.1':
+ optional: true
+
'@napi-rs/nice-darwin-x64@1.0.1':
optional: true
+ '@napi-rs/nice-darwin-x64@1.1.1':
+ optional: true
+
'@napi-rs/nice-freebsd-x64@1.0.1':
optional: true
+ '@napi-rs/nice-freebsd-x64@1.1.1':
+ optional: true
+
'@napi-rs/nice-linux-arm-gnueabihf@1.0.1':
optional: true
+ '@napi-rs/nice-linux-arm-gnueabihf@1.1.1':
+ optional: true
+
'@napi-rs/nice-linux-arm64-gnu@1.0.1':
optional: true
+ '@napi-rs/nice-linux-arm64-gnu@1.1.1':
+ optional: true
+
'@napi-rs/nice-linux-arm64-musl@1.0.1':
optional: true
+ '@napi-rs/nice-linux-arm64-musl@1.1.1':
+ optional: true
+
'@napi-rs/nice-linux-ppc64-gnu@1.0.1':
optional: true
+ '@napi-rs/nice-linux-ppc64-gnu@1.1.1':
+ optional: true
+
'@napi-rs/nice-linux-riscv64-gnu@1.0.1':
optional: true
+ '@napi-rs/nice-linux-riscv64-gnu@1.1.1':
+ optional: true
+
'@napi-rs/nice-linux-s390x-gnu@1.0.1':
optional: true
+ '@napi-rs/nice-linux-s390x-gnu@1.1.1':
+ optional: true
+
'@napi-rs/nice-linux-x64-gnu@1.0.1':
optional: true
+ '@napi-rs/nice-linux-x64-gnu@1.1.1':
+ optional: true
+
'@napi-rs/nice-linux-x64-musl@1.0.1':
optional: true
+ '@napi-rs/nice-linux-x64-musl@1.1.1':
+ optional: true
+
+ '@napi-rs/nice-openharmony-arm64@1.1.1':
+ optional: true
+
'@napi-rs/nice-win32-arm64-msvc@1.0.1':
optional: true
+ '@napi-rs/nice-win32-arm64-msvc@1.1.1':
+ optional: true
+
'@napi-rs/nice-win32-ia32-msvc@1.0.1':
optional: true
+ '@napi-rs/nice-win32-ia32-msvc@1.1.1':
+ optional: true
+
'@napi-rs/nice-win32-x64-msvc@1.0.1':
optional: true
+ '@napi-rs/nice-win32-x64-msvc@1.1.1':
+ optional: true
+
'@napi-rs/nice@1.0.1':
optionalDependencies:
'@napi-rs/nice-android-arm-eabi': 1.0.1
@@ -15230,37 +16170,72 @@ snapshots:
'@napi-rs/nice-win32-x64-msvc': 1.0.1
optional: true
+ '@napi-rs/nice@1.1.1':
+ optionalDependencies:
+ '@napi-rs/nice-android-arm-eabi': 1.1.1
+ '@napi-rs/nice-android-arm64': 1.1.1
+ '@napi-rs/nice-darwin-arm64': 1.1.1
+ '@napi-rs/nice-darwin-x64': 1.1.1
+ '@napi-rs/nice-freebsd-x64': 1.1.1
+ '@napi-rs/nice-linux-arm-gnueabihf': 1.1.1
+ '@napi-rs/nice-linux-arm64-gnu': 1.1.1
+ '@napi-rs/nice-linux-arm64-musl': 1.1.1
+ '@napi-rs/nice-linux-ppc64-gnu': 1.1.1
+ '@napi-rs/nice-linux-riscv64-gnu': 1.1.1
+ '@napi-rs/nice-linux-s390x-gnu': 1.1.1
+ '@napi-rs/nice-linux-x64-gnu': 1.1.1
+ '@napi-rs/nice-linux-x64-musl': 1.1.1
+ '@napi-rs/nice-openharmony-arm64': 1.1.1
+ '@napi-rs/nice-win32-arm64-msvc': 1.1.1
+ '@napi-rs/nice-win32-ia32-msvc': 1.1.1
+ '@napi-rs/nice-win32-x64-msvc': 1.1.1
+ optional: true
+
'@napi-rs/wasm-runtime@0.2.11':
dependencies:
- '@emnapi/core': 1.4.3
- '@emnapi/runtime': 1.4.3
+ '@emnapi/core': 1.7.1
+ '@emnapi/runtime': 1.7.1
'@tybys/wasm-util': 0.9.0
optional: true
'@napi-rs/wasm-runtime@0.2.4':
dependencies:
- '@emnapi/core': 1.4.3
- '@emnapi/runtime': 1.4.3
+ '@emnapi/core': 1.7.1
+ '@emnapi/runtime': 1.7.1
'@tybys/wasm-util': 0.9.0
- '@ngrx/signals@20.0.0(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)':
+ '@napi-rs/wasm-runtime@1.0.7':
dependencies:
- '@angular/core': 20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)
+ '@emnapi/core': 1.7.1
+ '@emnapi/runtime': 1.7.1
+ '@tybys/wasm-util': 0.10.1
+ optional: true
+
+ '@napi-rs/wasm-runtime@1.1.0':
+ dependencies:
+ '@emnapi/core': 1.7.1
+ '@emnapi/runtime': 1.7.1
+ '@tybys/wasm-util': 0.10.1
+ optional: true
+
+ '@ngrx/signals@21.0.0(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1)':
+ dependencies:
+ '@angular/core': 21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)
tslib: 2.8.1
optionalDependencies:
rxjs: 7.8.1
- '@ngrx/store@20.0.0(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1)':
+ '@ngrx/store@21.0.0(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1)':
dependencies:
- '@angular/core': 20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)
+ '@angular/core': 21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)
rxjs: 7.8.1
tslib: 2.8.1
- '@ngtools/webpack@20.1.3(@angular/compiler-cli@20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3))(typescript@5.8.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))':
+ '@ngtools/webpack@21.0.3(@angular/compiler-cli@21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3))(typescript@5.9.3)(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0))':
dependencies:
- '@angular/compiler-cli': 20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3)
- typescript: 5.8.3
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ '@angular/compiler-cli': 21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3)
+ typescript: 5.9.3
+ webpack: 5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)
'@nodelib/fs.scandir@2.1.5':
dependencies:
@@ -15274,98 +16249,96 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.17.1
- '@npmcli/agent@3.0.0':
+ '@npmcli/agent@4.0.0':
dependencies:
agent-base: 7.1.3
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.6
- lru-cache: 10.4.3
+ lru-cache: 11.2.4
socks-proxy-agent: 8.0.4
transitivePeerDependencies:
- supports-color
- '@npmcli/fs@4.0.0':
+ '@npmcli/fs@5.0.0':
dependencies:
- semver: 7.7.2
+ semver: 7.7.3
- '@npmcli/git@6.0.1':
+ '@npmcli/git@7.0.1':
dependencies:
- '@npmcli/promise-spawn': 8.0.2
- ini: 5.0.0
- lru-cache: 10.4.3
- npm-pick-manifest: 10.0.0
- proc-log: 5.0.0
- promise-inflight: 1.0.1
+ '@npmcli/promise-spawn': 9.0.1
+ ini: 6.0.0
+ lru-cache: 11.2.4
+ npm-pick-manifest: 11.0.3
+ proc-log: 6.1.0
promise-retry: 2.0.1
- semver: 7.7.2
- which: 5.0.0
- transitivePeerDependencies:
- - bluebird
+ semver: 7.7.3
+ which: 6.0.0
'@npmcli/installed-package-contents@3.0.0':
dependencies:
npm-bundled: 4.0.0
npm-normalize-package-bin: 4.0.0
- '@npmcli/node-gyp@4.0.0': {}
+ '@npmcli/node-gyp@5.0.0': {}
- '@npmcli/package-json@6.1.0':
+ '@npmcli/package-json@7.0.4':
dependencies:
- '@npmcli/git': 6.0.1
- glob: 10.4.5
- hosted-git-info: 8.0.2
- json-parse-even-better-errors: 4.0.0
- normalize-package-data: 7.0.0
- proc-log: 5.0.0
- semver: 7.7.2
- transitivePeerDependencies:
- - bluebird
+ '@npmcli/git': 7.0.1
+ glob: 13.0.0
+ hosted-git-info: 9.0.2
+ json-parse-even-better-errors: 5.0.0
+ proc-log: 6.1.0
+ semver: 7.7.3
+ validate-npm-package-license: 3.0.4
'@npmcli/promise-spawn@8.0.2':
dependencies:
which: 5.0.0
- '@npmcli/redact@3.0.0': {}
+ '@npmcli/promise-spawn@9.0.1':
+ dependencies:
+ which: 6.0.0
+
+ '@npmcli/redact@4.0.0': {}
- '@npmcli/run-script@9.0.2':
+ '@npmcli/run-script@10.0.3':
dependencies:
- '@npmcli/node-gyp': 4.0.0
- '@npmcli/package-json': 6.1.0
- '@npmcli/promise-spawn': 8.0.2
- node-gyp: 11.0.0
- proc-log: 5.0.0
- which: 5.0.0
+ '@npmcli/node-gyp': 5.0.0
+ '@npmcli/package-json': 7.0.4
+ '@npmcli/promise-spawn': 9.0.1
+ node-gyp: 12.1.0
+ proc-log: 6.1.0
+ which: 6.0.0
transitivePeerDependencies:
- - bluebird
- supports-color
- '@nx/angular@21.3.7(7dc4034328a8fc6946582e98fa021184)':
- dependencies:
- '@angular-devkit/core': 20.1.3(chokidar@4.0.3)
- '@angular-devkit/schematics': 20.1.3(chokidar@4.0.3)
- '@nx/devkit': 21.3.7(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@nx/eslint': 21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@zkochan/js-yaml@0.0.7)(eslint@9.17.0(jiti@1.21.6))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@nx/js': 21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@nx/module-federation': 21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/helpers@0.5.12)(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.8.3)
- '@nx/rspack': 21.3.7(@babel/traverse@7.28.0)(@module-federation/enhanced@0.17.1(@rspack/core@1.4.4(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.8.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))))(@module-federation/node@2.7.10(@rspack/core@1.4.4(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.8.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))))(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/helpers@0.5.12)(@types/express@4.17.21)(less@4.3.0)(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(react-dom@19.1.1(react@19.1.1))(react-refresh@0.17.0)(react@19.1.1)(typescript@5.8.3)
- '@nx/web': 21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@nx/webpack': 21.3.7(@babel/traverse@7.28.0)(@rspack/core@1.4.4(@swc/helpers@0.5.12))(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(html-webpack-plugin@5.6.3(@rspack/core@1.4.4(@swc/helpers@0.5.12))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(typescript@5.8.3)
- '@nx/workspace': 21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))
- '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
- '@schematics/angular': 20.1.3(chokidar@4.0.3)
- '@typescript-eslint/type-utils': 8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
+ '@nx/angular@22.3.1(e5d1787ca99d2c203fadd531beed7680)':
+ dependencies:
+ '@angular-devkit/core': 21.0.3(chokidar@4.0.3)
+ '@angular-devkit/schematics': 21.0.3(chokidar@4.0.3)
+ '@nx/devkit': 22.3.1(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@nx/eslint': 22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@zkochan/js-yaml@0.0.7)(eslint@9.17.0(jiti@2.6.1))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@nx/module-federation': 22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/helpers@0.5.12)(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.9.3)
+ '@nx/rspack': 22.3.1(@babel/traverse@7.28.5)(@module-federation/enhanced@0.21.6(@rspack/core@1.6.8(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.9.3)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))))(@module-federation/node@2.7.25(@rspack/core@1.6.8(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.9.3)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))))(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/helpers@0.5.12)(@types/express@4.17.21)(less@4.4.2)(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(react-dom@19.1.1(react@19.1.1))(react-refresh@0.17.0)(react@19.1.1)(typescript@5.9.3)
+ '@nx/web': 22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@nx/webpack': 22.3.1(@babel/traverse@7.28.5)(@rspack/core@1.6.8(@swc/helpers@0.5.12))(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(html-webpack-plugin@5.6.3(@rspack/core@1.6.8(@swc/helpers@0.5.12))(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(typescript@5.9.3)
+ '@nx/workspace': 22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.9.3)
+ '@schematics/angular': 21.0.3(chokidar@4.0.3)
+ '@typescript-eslint/type-utils': 8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
enquirer: 2.3.6
- magic-string: 0.30.17
+ magic-string: 0.30.19
picocolors: 1.1.1
picomatch: 4.0.2
rxjs: 7.8.1
- semver: 7.7.2
+ semver: 7.7.3
tslib: 2.8.1
webpack-merge: 5.10.0
optionalDependencies:
- '@angular-devkit/build-angular': 20.1.3(963aaab4b0debadd2d66b1f210c3bf4d)
- '@angular/build': 20.1.3(@angular/compiler-cli@20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3))(@angular/compiler@20.1.3)(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@20.1.3(@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@types/node@18.16.9)(chokidar@4.0.3)(jiti@1.21.6)(less@4.3.0)(ng-packagr@20.1.0(@angular/compiler-cli@20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3))(postcss@8.4.40)(sass-embedded@1.89.2)(stylus@0.64.0)(terser@5.43.1)(tslib@2.6.3)(typescript@5.8.3)(yaml@2.7.0)
- ng-packagr: 20.1.0(@angular/compiler-cli@20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3)
+ '@angular-devkit/build-angular': 21.0.3(552124b0f5f38282ecb961b3512ec6ec)
+ '@angular/build': 21.0.3(@angular/compiler-cli@21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3))(@angular/compiler@21.0.6)(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(@angular/platform-browser@21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@types/node@18.16.9)(chokidar@4.0.3)(jiti@2.6.1)(less@4.4.2)(ng-packagr@21.0.1(@angular/compiler-cli@21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3))(tslib@2.6.3)(typescript@5.9.3))(postcss@8.4.40)(sass-embedded@1.89.2)(stylus@0.64.0)(terser@5.44.0)(tslib@2.6.3)(typescript@5.9.3)(yaml@2.7.0)
+ ng-packagr: 21.0.1(@angular/compiler-cli@21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3))(tslib@2.6.3)(typescript@5.9.3)
transitivePeerDependencies:
- '@babel/traverse'
- '@module-federation/enhanced'
@@ -15403,34 +16376,33 @@ snapshots:
- webpack-cli
- webpack-hot-middleware
- '@nx/devkit@21.3.7(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))':
+ '@nx/devkit@22.3.1(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))':
dependencies:
+ '@zkochan/js-yaml': 0.0.7
ejs: 3.1.10
enquirer: 2.3.6
- ignore: 5.3.1
minimatch: 9.0.3
- nx: 21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))
- semver: 7.7.2
- tmp: 0.2.3
+ nx: 22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))
+ semver: 7.7.3
tslib: 2.8.1
yargs-parser: 21.1.1
- '@nx/eslint-plugin@21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@typescript-eslint/parser@8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(eslint-config-prettier@10.1.5(eslint@9.17.0(jiti@1.21.6)))(eslint@9.17.0(jiti@1.21.6))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(typescript@5.8.3)':
+ '@nx/eslint-plugin@22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@typescript-eslint/parser@8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint-config-prettier@10.1.5(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(typescript@5.9.3)':
dependencies:
- '@nx/devkit': 21.3.7(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@nx/js': 21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
- '@typescript-eslint/parser': 8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
- '@typescript-eslint/type-utils': 8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
- '@typescript-eslint/utils': 8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
+ '@nx/devkit': 22.3.1(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/type-utils': 8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
chalk: 4.1.2
confusing-browser-globals: 1.0.11
globals: 15.14.0
jsonc-eslint-parser: 2.4.0
- semver: 7.7.2
+ semver: 7.7.3
tslib: 2.8.1
optionalDependencies:
- eslint-config-prettier: 10.1.5(eslint@9.17.0(jiti@1.21.6))
+ eslint-config-prettier: 10.1.5(eslint@9.17.0(jiti@2.6.1))
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -15442,14 +16414,14 @@ snapshots:
- typescript
- verdaccio
- '@nx/eslint@21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@zkochan/js-yaml@0.0.7)(eslint@9.17.0(jiti@1.21.6))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))':
+ '@nx/eslint@22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@zkochan/js-yaml@0.0.7)(eslint@9.17.0(jiti@2.6.1))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))':
dependencies:
- '@nx/devkit': 21.3.7(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@nx/js': 21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- eslint: 9.17.0(jiti@1.21.6)
- semver: 7.7.2
+ '@nx/devkit': 22.3.1(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ eslint: 9.17.0(jiti@2.6.1)
+ semver: 7.7.3
tslib: 2.8.1
- typescript: 5.8.3
+ typescript: 5.9.3
optionalDependencies:
'@zkochan/js-yaml': 0.0.7
transitivePeerDependencies:
@@ -15461,21 +16433,21 @@ snapshots:
- supports-color
- verdaccio
- '@nx/jest@21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3))(typescript@5.8.3)':
+ '@nx/jest@22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3))(typescript@5.9.3)':
dependencies:
'@jest/reporters': 30.0.5
'@jest/test-result': 30.0.5
- '@nx/devkit': 21.3.7(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@nx/js': 21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
+ '@nx/devkit': 22.3.1(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.9.3)
identity-obj-proxy: 3.0.0
- jest-config: 30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3))
+ jest-config: 30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3))
jest-resolve: 30.0.5
jest-util: 30.0.5
minimatch: 9.0.3
picocolors: 1.1.1
resolve.exports: 2.0.3
- semver: 7.7.2
+ semver: 7.7.3
tslib: 2.8.1
yargs-parser: 21.1.1
transitivePeerDependencies:
@@ -15493,36 +16465,33 @@ snapshots:
- typescript
- verdaccio
- '@nx/js@21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))':
- dependencies:
- '@babel/core': 7.27.7
- '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.27.7)
- '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-transform-runtime': 7.27.1(@babel/core@7.27.7)
- '@babel/preset-env': 7.27.2(@babel/core@7.27.7)
- '@babel/preset-typescript': 7.24.7(@babel/core@7.27.7)
- '@babel/runtime': 7.27.1
- '@nx/devkit': 21.3.7(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@nx/workspace': 21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))
+ '@nx/js@22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))':
+ dependencies:
+ '@babel/core': 7.28.4
+ '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.28.4)
+ '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-transform-runtime': 7.28.3(@babel/core@7.28.4)
+ '@babel/preset-env': 7.28.3(@babel/core@7.28.4)
+ '@babel/preset-typescript': 7.27.1(@babel/core@7.28.4)
+ '@babel/runtime': 7.28.4
+ '@nx/devkit': 22.3.1(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@nx/workspace': 22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))
'@zkochan/js-yaml': 0.0.7
- babel-plugin-const-enum: 1.2.0(@babel/core@7.27.7)
+ babel-plugin-const-enum: 1.2.0(@babel/core@7.28.4)
babel-plugin-macros: 3.1.0
- babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.27.7)(@babel/traverse@7.28.0)
+ babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.28.4)(@babel/traverse@7.28.5)
chalk: 4.1.2
columnify: 1.6.0
detect-port: 1.6.1
- enquirer: 2.3.6
ignore: 5.3.1
js-tokens: 4.0.0
jsonc-parser: 3.2.0
- npm-package-arg: 11.0.1
npm-run-path: 4.0.1
- ora: 5.3.0
picocolors: 1.1.1
picomatch: 4.0.2
- semver: 7.7.2
+ semver: 7.7.3
source-map-support: 0.5.19
- tinyglobby: 0.2.14
+ tinyglobby: 0.2.15
tslib: 2.8.1
transitivePeerDependencies:
- '@babel/traverse'
@@ -15532,20 +16501,20 @@ snapshots:
- nx
- supports-color
- '@nx/module-federation@21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/helpers@0.5.12)(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.8.3)':
+ '@nx/module-federation@22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/helpers@0.5.12)(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.9.3)':
dependencies:
- '@module-federation/enhanced': 0.17.1(@rspack/core@1.4.4(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.8.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@module-federation/node': 2.7.10(@rspack/core@1.4.4(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.8.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@module-federation/sdk': 0.17.1
- '@nx/devkit': 21.3.7(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@nx/js': 21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@nx/web': 21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@rspack/core': 1.4.4(@swc/helpers@0.5.12)
+ '@module-federation/enhanced': 0.21.6(@rspack/core@1.6.8(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.9.3)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@module-federation/node': 2.7.25(@rspack/core@1.6.8(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.9.3)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@module-federation/sdk': 0.21.6
+ '@nx/devkit': 22.3.1(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@nx/web': 22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@rspack/core': 1.6.8(@swc/helpers@0.5.12)
express: 4.21.2
http-proxy-middleware: 3.0.5
picocolors: 1.1.1
tslib: 2.8.1
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
@@ -15566,42 +16535,41 @@ snapshots:
- vue-tsc
- webpack-cli
- '@nx/nx-darwin-arm64@21.3.7':
+ '@nx/nx-darwin-arm64@22.3.1':
optional: true
- '@nx/nx-darwin-x64@21.3.7':
+ '@nx/nx-darwin-x64@22.3.1':
optional: true
- '@nx/nx-freebsd-x64@21.3.7':
+ '@nx/nx-freebsd-x64@22.3.1':
optional: true
- '@nx/nx-linux-arm-gnueabihf@21.3.7':
+ '@nx/nx-linux-arm-gnueabihf@22.3.1':
optional: true
- '@nx/nx-linux-arm64-gnu@21.3.7':
+ '@nx/nx-linux-arm64-gnu@22.3.1':
optional: true
- '@nx/nx-linux-arm64-musl@21.3.7':
+ '@nx/nx-linux-arm64-musl@22.3.1':
optional: true
- '@nx/nx-linux-x64-gnu@21.3.7':
+ '@nx/nx-linux-x64-gnu@22.3.1':
optional: true
- '@nx/nx-linux-x64-musl@21.3.7':
+ '@nx/nx-linux-x64-musl@22.3.1':
optional: true
- '@nx/nx-win32-arm64-msvc@21.3.7':
+ '@nx/nx-win32-arm64-msvc@22.3.1':
optional: true
- '@nx/nx-win32-x64-msvc@21.3.7':
+ '@nx/nx-win32-x64-msvc@22.3.1':
optional: true
- '@nx/playwright@21.3.7(@babel/traverse@7.28.0)(@playwright/test@1.45.3)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@zkochan/js-yaml@0.0.7)(eslint@9.17.0(jiti@1.21.6))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(typescript@5.8.3)':
+ '@nx/playwright@22.3.1(@babel/traverse@7.28.5)(@playwright/test@1.45.3)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@zkochan/js-yaml@0.0.7)(eslint@9.17.0(jiti@2.6.1))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))':
dependencies:
- '@nx/devkit': 21.3.7(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@nx/eslint': 21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@zkochan/js-yaml@0.0.7)(eslint@9.17.0(jiti@1.21.6))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@nx/js': 21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
+ '@nx/devkit': 22.3.1(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@nx/eslint': 22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@zkochan/js-yaml@0.0.7)(eslint@9.17.0(jiti@2.6.1))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
minimatch: 9.0.3
tslib: 2.8.1
optionalDependencies:
@@ -15615,43 +16583,42 @@ snapshots:
- eslint
- nx
- supports-color
- - typescript
- verdaccio
- '@nx/rspack@21.3.7(@babel/traverse@7.28.0)(@module-federation/enhanced@0.17.1(@rspack/core@1.4.4(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.8.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))))(@module-federation/node@2.7.10(@rspack/core@1.4.4(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.8.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))))(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/helpers@0.5.12)(@types/express@4.17.21)(less@4.3.0)(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(react-dom@19.1.1(react@19.1.1))(react-refresh@0.17.0)(react@19.1.1)(typescript@5.8.3)':
- dependencies:
- '@module-federation/enhanced': 0.17.1(@rspack/core@1.4.4(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.8.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@module-federation/node': 2.7.10(@rspack/core@1.4.4(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.8.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@nx/devkit': 21.3.7(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@nx/js': 21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@nx/module-federation': 21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/helpers@0.5.12)(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.8.3)
- '@nx/web': 21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
- '@rspack/core': 1.4.4(@swc/helpers@0.5.12)
- '@rspack/dev-server': 1.1.3(@rspack/core@1.4.4(@swc/helpers@0.5.12))(@types/express@4.17.21)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@nx/rspack@22.3.1(@babel/traverse@7.28.5)(@module-federation/enhanced@0.21.6(@rspack/core@1.6.8(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.9.3)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))))(@module-federation/node@2.7.25(@rspack/core@1.6.8(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.9.3)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))))(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/helpers@0.5.12)(@types/express@4.17.21)(less@4.4.2)(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(react-dom@19.1.1(react@19.1.1))(react-refresh@0.17.0)(react@19.1.1)(typescript@5.9.3)':
+ dependencies:
+ '@module-federation/enhanced': 0.21.6(@rspack/core@1.6.8(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.9.3)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@module-federation/node': 2.7.25(@rspack/core@1.6.8(@swc/helpers@0.5.12))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.9.3)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@nx/devkit': 22.3.1(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@nx/module-federation': 22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/helpers@0.5.12)(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(react-dom@19.1.1(react@19.1.1))(react@19.1.1)(typescript@5.9.3)
+ '@nx/web': 22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.9.3)
+ '@rspack/core': 1.6.8(@swc/helpers@0.5.12)
+ '@rspack/dev-server': 1.1.4(@rspack/core@1.6.8(@swc/helpers@0.5.12))(@types/express@4.17.21)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
'@rspack/plugin-react-refresh': 1.4.3(react-refresh@0.17.0)
- autoprefixer: 10.4.21(postcss@8.5.3)
- browserslist: 4.25.1
- css-loader: 6.11.0(@rspack/core@1.4.4(@swc/helpers@0.5.12))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ autoprefixer: 10.4.21(postcss@8.5.6)
+ browserslist: 4.28.1
+ css-loader: 6.11.0(@rspack/core@1.6.8(@swc/helpers@0.5.12))(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
enquirer: 2.3.6
express: 4.21.2
http-proxy-middleware: 3.0.5
- less-loader: 11.1.0(less@4.3.0)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- license-webpack-plugin: 4.0.2(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ less-loader: 11.1.0(less@4.4.2)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ license-webpack-plugin: 4.0.2(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
loader-utils: 2.0.4
parse5: 4.0.0
picocolors: 1.1.1
- postcss: 8.5.3
- postcss-import: 14.1.0(postcss@8.5.3)
- postcss-loader: 8.1.1(@rspack/core@1.4.4(@swc/helpers@0.5.12))(postcss@8.5.3)(typescript@5.8.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- sass: 1.89.2
+ postcss: 8.5.6
+ postcss-import: 14.1.0(postcss@8.5.6)
+ postcss-loader: 8.2.0(@rspack/core@1.6.8(@swc/helpers@0.5.12))(postcss@8.5.6)(typescript@5.9.3)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ sass: 1.93.2
sass-embedded: 1.89.2
- sass-loader: 16.0.5(@rspack/core@1.4.4(@swc/helpers@0.5.12))(sass-embedded@1.89.2)(sass@1.89.2)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- source-map-loader: 5.0.0(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- style-loader: 3.3.4(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- ts-checker-rspack-plugin: 1.1.4(@rspack/core@1.4.4(@swc/helpers@0.5.12))(typescript@5.8.3)
+ sass-loader: 16.0.5(@rspack/core@1.6.8(@swc/helpers@0.5.12))(sass-embedded@1.89.2)(sass@1.93.2)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ source-map-loader: 5.0.0(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ style-loader: 3.3.4(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ ts-checker-rspack-plugin: 1.1.4(@rspack/core@1.6.8(@swc/helpers@0.5.12))(typescript@5.9.3)
tslib: 2.8.1
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
webpack-node-externals: 3.0.0
transitivePeerDependencies:
- '@babel/traverse'
@@ -15678,10 +16645,10 @@ snapshots:
- webpack-cli
- webpack-hot-middleware
- '@nx/web@21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))':
+ '@nx/web@22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))':
dependencies:
- '@nx/devkit': 21.3.7(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@nx/js': 21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@nx/devkit': 22.3.1(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
detect-port: 1.6.1
http-server: 14.1.1
picocolors: 1.1.1
@@ -15695,44 +16662,44 @@ snapshots:
- supports-color
- verdaccio
- '@nx/webpack@21.3.7(@babel/traverse@7.28.0)(@rspack/core@1.4.4(@swc/helpers@0.5.12))(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(html-webpack-plugin@5.6.3(@rspack/core@1.4.4(@swc/helpers@0.5.12))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(typescript@5.8.3)':
+ '@nx/webpack@22.3.1(@babel/traverse@7.28.5)(@rspack/core@1.6.8(@swc/helpers@0.5.12))(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(html-webpack-plugin@5.6.3(@rspack/core@1.6.8(@swc/helpers@0.5.12))(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))(typescript@5.9.3)':
dependencies:
- '@babel/core': 7.27.7
- '@nx/devkit': 21.3.7(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@nx/js': 21.3.7(@babel/traverse@7.28.0)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
+ '@babel/core': 7.28.4
+ '@nx/devkit': 22.3.1(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@nx/js': 22.3.1(@babel/traverse@7.28.5)(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.9.3)
ajv: 8.17.1
- autoprefixer: 10.4.21(postcss@8.5.3)
- babel-loader: 9.2.1(@babel/core@7.27.7)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- browserslist: 4.25.1
- copy-webpack-plugin: 10.2.4(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- css-loader: 6.11.0(@rspack/core@1.4.4(@swc/helpers@0.5.12))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- css-minimizer-webpack-plugin: 5.0.1(clean-css@5.3.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.8.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- less: 4.3.0
- less-loader: 11.1.0(less@4.3.0)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- license-webpack-plugin: 4.0.2(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ autoprefixer: 10.4.21(postcss@8.5.6)
+ babel-loader: 9.2.1(@babel/core@7.28.4)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ browserslist: 4.28.1
+ copy-webpack-plugin: 10.2.4(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ css-loader: 6.11.0(@rspack/core@1.6.8(@swc/helpers@0.5.12))(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ css-minimizer-webpack-plugin: 5.0.1(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.9.3)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ less: 4.4.2
+ less-loader: 11.1.0(less@4.4.2)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ license-webpack-plugin: 4.0.2(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
loader-utils: 2.0.4
- mini-css-extract-plugin: 2.4.7(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ mini-css-extract-plugin: 2.4.7(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
parse5: 4.0.0
picocolors: 1.1.1
- postcss: 8.5.3
- postcss-import: 14.1.0(postcss@8.5.3)
- postcss-loader: 6.2.1(postcss@8.5.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ postcss: 8.5.6
+ postcss-import: 14.1.0(postcss@8.5.6)
+ postcss-loader: 6.2.1(postcss@8.5.6)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
rxjs: 7.8.2
- sass: 1.89.2
+ sass: 1.93.2
sass-embedded: 1.89.2
- sass-loader: 16.0.5(@rspack/core@1.4.4(@swc/helpers@0.5.12))(sass-embedded@1.89.2)(sass@1.89.2)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- source-map-loader: 5.0.0(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- style-loader: 3.3.4(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- terser-webpack-plugin: 5.3.14(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- ts-loader: 9.5.1(typescript@5.8.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
- tsconfig-paths-webpack-plugin: 4.0.0
+ sass-loader: 16.0.5(@rspack/core@1.6.8(@swc/helpers@0.5.12))(sass-embedded@1.89.2)(sass@1.93.2)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ source-map-loader: 5.0.0(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ style-loader: 3.3.4(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ terser-webpack-plugin: 5.3.16(@swc/core@1.5.29(@swc/helpers@0.5.12))(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ ts-loader: 9.5.1(typescript@5.9.3)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ tsconfig-paths-webpack-plugin: 4.2.0
tslib: 2.8.1
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
- webpack-dev-server: 5.2.2(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
+ webpack-dev-server: 5.2.2(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
webpack-node-externals: 3.0.0
- webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.3(@rspack/core@1.4.4(@swc/helpers@0.5.12))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.3(@rspack/core@1.6.8(@swc/helpers@0.5.12))(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))))(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
transitivePeerDependencies:
- '@babel/traverse'
- '@parcel/css'
@@ -15757,14 +16724,15 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@nx/workspace@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))':
+ '@nx/workspace@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))':
dependencies:
- '@nx/devkit': 21.3.7(nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ '@nx/devkit': 22.3.1(nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)))
'@zkochan/js-yaml': 0.0.7
chalk: 4.1.2
enquirer: 2.3.6
- nx: 21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))
+ nx: 22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12))
picomatch: 4.0.2
+ semver: 7.7.3
tslib: 2.8.1
yargs-parser: 21.1.1
transitivePeerDependencies:
@@ -15772,6 +16740,8 @@ snapshots:
- '@swc/core'
- debug
+ '@oxc-project/types@0.96.0': {}
+
'@parcel/watcher-android-arm64@2.5.0':
optional: true
@@ -15833,10 +16803,10 @@ snapshots:
'@parcel/watcher-win32-x64': 2.5.0
optional: true
- '@phenomnomnominal/tsquery@5.0.1(typescript@5.8.3)':
+ '@phenomnomnominal/tsquery@5.0.1(typescript@5.9.3)':
dependencies:
esquery: 1.6.0
- typescript: 5.8.3
+ typescript: 5.9.3
'@pkgjs/parseargs@0.11.0':
optional: true
@@ -15861,137 +16831,123 @@ snapshots:
'@polka/url@1.0.0-next.29': {}
- '@rollup/plugin-json@6.1.0(rollup@4.40.2)':
- dependencies:
- '@rollup/pluginutils': 5.1.0(rollup@4.40.2)
- optionalDependencies:
- rollup: 4.40.2
-
- '@rollup/pluginutils@5.1.0(rollup@4.40.2)':
- dependencies:
- '@types/estree': 1.0.7
- estree-walker: 2.0.2
- picomatch: 2.3.1
- optionalDependencies:
- rollup: 4.40.2
-
- '@rollup/rollup-android-arm-eabi@4.40.2':
+ '@rolldown/binding-android-arm64@1.0.0-beta.47':
optional: true
- '@rollup/rollup-android-arm-eabi@4.44.1':
+ '@rolldown/binding-darwin-arm64@1.0.0-beta.47':
optional: true
- '@rollup/rollup-android-arm64@4.40.2':
+ '@rolldown/binding-darwin-x64@1.0.0-beta.47':
optional: true
- '@rollup/rollup-android-arm64@4.44.1':
+ '@rolldown/binding-freebsd-x64@1.0.0-beta.47':
optional: true
- '@rollup/rollup-darwin-arm64@4.40.2':
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.47':
optional: true
- '@rollup/rollup-darwin-arm64@4.44.1':
+ '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.47':
optional: true
- '@rollup/rollup-darwin-x64@4.40.2':
+ '@rolldown/binding-linux-arm64-musl@1.0.0-beta.47':
optional: true
- '@rollup/rollup-darwin-x64@4.44.1':
+ '@rolldown/binding-linux-x64-gnu@1.0.0-beta.47':
optional: true
- '@rollup/rollup-freebsd-arm64@4.40.2':
+ '@rolldown/binding-linux-x64-musl@1.0.0-beta.47':
optional: true
- '@rollup/rollup-freebsd-arm64@4.44.1':
+ '@rolldown/binding-openharmony-arm64@1.0.0-beta.47':
optional: true
- '@rollup/rollup-freebsd-x64@4.40.2':
+ '@rolldown/binding-wasm32-wasi@1.0.0-beta.47':
+ dependencies:
+ '@napi-rs/wasm-runtime': 1.1.0
optional: true
- '@rollup/rollup-freebsd-x64@4.44.1':
+ '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.47':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.40.2':
+ '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.47':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.44.1':
+ '@rolldown/binding-win32-x64-msvc@1.0.0-beta.47':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.40.2':
- optional: true
+ '@rolldown/pluginutils@1.0.0-beta.47': {}
- '@rollup/rollup-linux-arm-musleabihf@4.44.1':
- optional: true
+ '@rollup/plugin-json@6.1.0(rollup@4.44.1)':
+ dependencies:
+ '@rollup/pluginutils': 5.1.0(rollup@4.44.1)
+ optionalDependencies:
+ rollup: 4.44.1
- '@rollup/rollup-linux-arm64-gnu@4.40.2':
- optional: true
+ '@rollup/pluginutils@5.1.0(rollup@4.44.1)':
+ dependencies:
+ '@types/estree': 1.0.8
+ estree-walker: 2.0.2
+ picomatch: 2.3.1
+ optionalDependencies:
+ rollup: 4.44.1
- '@rollup/rollup-linux-arm64-gnu@4.44.1':
+ '@rollup/rollup-android-arm-eabi@4.44.1':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.40.2':
+ '@rollup/rollup-android-arm64@4.44.1':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.44.1':
+ '@rollup/rollup-darwin-arm64@4.44.1':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.40.2':
+ '@rollup/rollup-darwin-x64@4.44.1':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.44.1':
+ '@rollup/rollup-freebsd-arm64@4.44.1':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.40.2':
+ '@rollup/rollup-freebsd-x64@4.44.1':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.44.1':
+ '@rollup/rollup-linux-arm-gnueabihf@4.44.1':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.40.2':
+ '@rollup/rollup-linux-arm-musleabihf@4.44.1':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.44.1':
+ '@rollup/rollup-linux-arm64-gnu@4.44.1':
optional: true
- '@rollup/rollup-linux-riscv64-musl@4.40.2':
+ '@rollup/rollup-linux-arm64-musl@4.44.1':
optional: true
- '@rollup/rollup-linux-riscv64-musl@4.44.1':
+ '@rollup/rollup-linux-loongarch64-gnu@4.44.1':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.40.2':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.44.1':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.44.1':
+ '@rollup/rollup-linux-riscv64-gnu@4.44.1':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.40.2':
+ '@rollup/rollup-linux-riscv64-musl@4.44.1':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.44.1':
+ '@rollup/rollup-linux-s390x-gnu@4.44.1':
optional: true
- '@rollup/rollup-linux-x64-musl@4.40.2':
+ '@rollup/rollup-linux-x64-gnu@4.44.1':
optional: true
'@rollup/rollup-linux-x64-musl@4.44.1':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.40.2':
- optional: true
-
'@rollup/rollup-win32-arm64-msvc@4.44.1':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.40.2':
- optional: true
-
'@rollup/rollup-win32-ia32-msvc@4.44.1':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.40.2':
- optional: true
-
'@rollup/rollup-win32-x64-msvc@4.44.1':
optional: true
@@ -16001,75 +16957,75 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- '@rspack/binding-darwin-arm64@1.4.4':
+ '@rspack/binding-darwin-arm64@1.6.8':
optional: true
- '@rspack/binding-darwin-x64@1.4.4':
+ '@rspack/binding-darwin-x64@1.6.8':
optional: true
- '@rspack/binding-linux-arm64-gnu@1.4.4':
+ '@rspack/binding-linux-arm64-gnu@1.6.8':
optional: true
- '@rspack/binding-linux-arm64-musl@1.4.4':
+ '@rspack/binding-linux-arm64-musl@1.6.8':
optional: true
- '@rspack/binding-linux-x64-gnu@1.4.4':
+ '@rspack/binding-linux-x64-gnu@1.6.8':
optional: true
- '@rspack/binding-linux-x64-musl@1.4.4':
+ '@rspack/binding-linux-x64-musl@1.6.8':
optional: true
- '@rspack/binding-wasm32-wasi@1.4.4':
+ '@rspack/binding-wasm32-wasi@1.6.8':
dependencies:
- '@napi-rs/wasm-runtime': 0.2.11
+ '@napi-rs/wasm-runtime': 1.0.7
optional: true
- '@rspack/binding-win32-arm64-msvc@1.4.4':
+ '@rspack/binding-win32-arm64-msvc@1.6.8':
optional: true
- '@rspack/binding-win32-ia32-msvc@1.4.4':
+ '@rspack/binding-win32-ia32-msvc@1.6.8':
optional: true
- '@rspack/binding-win32-x64-msvc@1.4.4':
+ '@rspack/binding-win32-x64-msvc@1.6.8':
optional: true
- '@rspack/binding@1.4.4':
+ '@rspack/binding@1.6.8':
optionalDependencies:
- '@rspack/binding-darwin-arm64': 1.4.4
- '@rspack/binding-darwin-x64': 1.4.4
- '@rspack/binding-linux-arm64-gnu': 1.4.4
- '@rspack/binding-linux-arm64-musl': 1.4.4
- '@rspack/binding-linux-x64-gnu': 1.4.4
- '@rspack/binding-linux-x64-musl': 1.4.4
- '@rspack/binding-wasm32-wasi': 1.4.4
- '@rspack/binding-win32-arm64-msvc': 1.4.4
- '@rspack/binding-win32-ia32-msvc': 1.4.4
- '@rspack/binding-win32-x64-msvc': 1.4.4
-
- '@rspack/core@1.4.4(@swc/helpers@0.5.12)':
- dependencies:
- '@module-federation/runtime-tools': 0.15.0
- '@rspack/binding': 1.4.4
- '@rspack/lite-tapable': 1.0.1
+ '@rspack/binding-darwin-arm64': 1.6.8
+ '@rspack/binding-darwin-x64': 1.6.8
+ '@rspack/binding-linux-arm64-gnu': 1.6.8
+ '@rspack/binding-linux-arm64-musl': 1.6.8
+ '@rspack/binding-linux-x64-gnu': 1.6.8
+ '@rspack/binding-linux-x64-musl': 1.6.8
+ '@rspack/binding-wasm32-wasi': 1.6.8
+ '@rspack/binding-win32-arm64-msvc': 1.6.8
+ '@rspack/binding-win32-ia32-msvc': 1.6.8
+ '@rspack/binding-win32-x64-msvc': 1.6.8
+
+ '@rspack/core@1.6.8(@swc/helpers@0.5.12)':
+ dependencies:
+ '@module-federation/runtime-tools': 0.21.6
+ '@rspack/binding': 1.6.8
+ '@rspack/lite-tapable': 1.1.0
optionalDependencies:
'@swc/helpers': 0.5.12
- '@rspack/core@1.4.4(@swc/helpers@0.5.17)':
+ '@rspack/core@1.6.8(@swc/helpers@0.5.17)':
dependencies:
- '@module-federation/runtime-tools': 0.15.0
- '@rspack/binding': 1.4.4
- '@rspack/lite-tapable': 1.0.1
+ '@module-federation/runtime-tools': 0.21.6
+ '@rspack/binding': 1.6.8
+ '@rspack/lite-tapable': 1.1.0
optionalDependencies:
'@swc/helpers': 0.5.17
optional: true
- '@rspack/dev-server@1.1.3(@rspack/core@1.4.4(@swc/helpers@0.5.12))(@types/express@4.17.21)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))':
+ '@rspack/dev-server@1.1.4(@rspack/core@1.6.8(@swc/helpers@0.5.12))(@types/express@4.17.21)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))':
dependencies:
- '@rspack/core': 1.4.4(@swc/helpers@0.5.12)
+ '@rspack/core': 1.6.8(@swc/helpers@0.5.12)
chokidar: 3.6.0
http-proxy-middleware: 2.0.9(@types/express@4.17.21)
p-retry: 6.2.0
- webpack-dev-server: 5.2.2(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ webpack-dev-server: 5.2.2(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
ws: 8.18.0
transitivePeerDependencies:
- '@types/express'
@@ -16080,7 +17036,7 @@ snapshots:
- webpack
- webpack-cli
- '@rspack/lite-tapable@1.0.1': {}
+ '@rspack/lite-tapable@1.1.0': {}
'@rspack/plugin-react-refresh@1.4.3(react-refresh@0.17.0)':
dependencies:
@@ -16088,18 +17044,10 @@ snapshots:
html-entities: 2.6.0
react-refresh: 0.17.0
- '@schematics/angular@20.1.3(chokidar@4.0.3)':
- dependencies:
- '@angular-devkit/core': 20.1.3(chokidar@4.0.3)
- '@angular-devkit/schematics': 20.1.3(chokidar@4.0.3)
- jsonc-parser: 3.3.1
- transitivePeerDependencies:
- - chokidar
-
- '@schematics/angular@20.1.4(chokidar@4.0.3)':
+ '@schematics/angular@21.0.3(chokidar@4.0.3)':
dependencies:
- '@angular-devkit/core': 20.1.4(chokidar@4.0.3)
- '@angular-devkit/schematics': 20.1.4(chokidar@4.0.3)
+ '@angular-devkit/core': 21.0.3(chokidar@4.0.3)
+ '@angular-devkit/schematics': 21.0.3(chokidar@4.0.3)
jsonc-parser: 3.3.1
transitivePeerDependencies:
- chokidar
@@ -16124,37 +17072,37 @@ snapshots:
'@sideway/pinpoint@2.0.0': {}
- '@sigstore/bundle@3.0.0':
+ '@sigstore/bundle@4.0.0':
dependencies:
- '@sigstore/protobuf-specs': 0.3.2
+ '@sigstore/protobuf-specs': 0.5.0
- '@sigstore/core@2.0.0': {}
+ '@sigstore/core@3.0.0': {}
- '@sigstore/protobuf-specs@0.3.2': {}
+ '@sigstore/protobuf-specs@0.5.0': {}
- '@sigstore/sign@3.0.0':
+ '@sigstore/sign@4.0.1':
dependencies:
- '@sigstore/bundle': 3.0.0
- '@sigstore/core': 2.0.0
- '@sigstore/protobuf-specs': 0.3.2
- make-fetch-happen: 14.0.3
+ '@sigstore/bundle': 4.0.0
+ '@sigstore/core': 3.0.0
+ '@sigstore/protobuf-specs': 0.5.0
+ make-fetch-happen: 15.0.3
proc-log: 5.0.0
promise-retry: 2.0.1
transitivePeerDependencies:
- supports-color
- '@sigstore/tuf@3.0.0':
+ '@sigstore/tuf@4.0.0':
dependencies:
- '@sigstore/protobuf-specs': 0.3.2
- tuf-js: 3.0.1
+ '@sigstore/protobuf-specs': 0.5.0
+ tuf-js: 4.0.0
transitivePeerDependencies:
- supports-color
- '@sigstore/verify@2.0.0':
+ '@sigstore/verify@3.0.0':
dependencies:
- '@sigstore/bundle': 3.0.0
- '@sigstore/core': 2.0.0
- '@sigstore/protobuf-specs': 0.3.2
+ '@sigstore/bundle': 4.0.0
+ '@sigstore/core': 3.0.0
+ '@sigstore/protobuf-specs': 0.5.0
'@sinclair/typebox@0.27.8': {}
@@ -16174,7 +17122,7 @@ snapshots:
'@slorber/react-helmet-async@1.3.0(react-dom@19.1.1(react@19.1.1))(react@19.1.1)':
dependencies:
- '@babel/runtime': 7.27.6
+ '@babel/runtime': 7.28.4
invariant: 2.2.4
prop-types: 15.8.1
react: 19.1.1
@@ -16188,47 +17136,81 @@ snapshots:
micromark-util-character: 1.2.0
micromark-util-symbol: 1.1.0
- '@softarc/eslint-plugin-sheriff@0.15.1(@softarc/sheriff-core@0.15.1(typescript@5.8.3))(eslint@9.17.0(jiti@1.21.6))':
+ '@softarc/eslint-plugin-sheriff@0.15.1(@softarc/sheriff-core@0.15.1(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))':
dependencies:
- '@softarc/sheriff-core': 0.15.1(typescript@5.8.3)
- eslint: 9.17.0(jiti@1.21.6)
+ '@softarc/sheriff-core': 0.15.1(typescript@5.9.3)
+ eslint: 9.17.0(jiti@2.6.1)
- '@softarc/sheriff-core@0.15.1(typescript@5.8.3)':
+ '@softarc/sheriff-core@0.15.1(typescript@5.9.3)':
dependencies:
- typescript: 5.8.3
+ typescript: 5.9.3
+
+ '@standard-schema/spec@1.1.0': {}
'@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
+ '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+
'@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
+ '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+
'@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
+ '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+
'@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
+ '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+
'@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
+ '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+
'@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
+ '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+
'@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
+ '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+
'@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
+ '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+
'@svgr/babel-preset@8.1.0(@babel/core@7.28.0)':
dependencies:
'@babel/core': 7.28.0
@@ -16241,6 +17223,18 @@ snapshots:
'@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.28.0)
'@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.28.0)
+ '@svgr/babel-preset@8.1.0(@babel/core@7.28.4)':
+ dependencies:
+ '@babel/core': 7.28.4
+ '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.28.4)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.28.4)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.28.4)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.28.4)
+ '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.28.4)
+ '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.28.4)
+ '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.28.4)
+ '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.28.4)
+
'@svgr/core@8.1.0(typescript@5.6.3)':
dependencies:
'@babel/core': 7.28.0
@@ -16254,13 +17248,13 @@ snapshots:
'@svgr/hast-util-to-babel-ast@8.0.0':
dependencies:
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.5
entities: 4.5.0
'@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.6.3))':
dependencies:
- '@babel/core': 7.28.0
- '@svgr/babel-preset': 8.1.0(@babel/core@7.28.0)
+ '@babel/core': 7.28.4
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.28.4)
'@svgr/core': 8.1.0(typescript@5.6.3)
'@svgr/hast-util-to-babel-ast': 8.0.0
svg-parser: 2.0.4
@@ -16295,7 +17289,7 @@ snapshots:
'@swc/core': 1.5.29(@swc/helpers@0.5.12)
'@swc/types': 0.1.12
- '@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3)':
+ '@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3)':
dependencies:
'@swc-node/core': 1.13.3(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)
'@swc-node/sourcemap-support': 0.5.1
@@ -16304,7 +17298,7 @@ snapshots:
debug: 4.3.5
pirates: 4.0.6
tslib: 2.6.3
- typescript: 5.8.3
+ typescript: 5.9.3
transitivePeerDependencies:
- '@swc/types'
- supports-color
@@ -16312,7 +17306,7 @@ snapshots:
'@swc-node/sourcemap-support@0.5.1':
dependencies:
source-map-support: 0.5.21
- tslib: 2.6.3
+ tslib: 2.8.1
'@swc/core-darwin-arm64@1.5.29':
optional: true
@@ -16370,6 +17364,7 @@ snapshots:
'@swc/helpers@0.5.17':
dependencies:
tslib: 2.8.1
+ optional: true
'@swc/types@0.1.12':
dependencies:
@@ -16391,35 +17386,40 @@ snapshots:
'@tufjs/canonical-json@2.0.0': {}
- '@tufjs/models@3.0.1':
+ '@tufjs/models@4.0.0':
dependencies:
'@tufjs/canonical-json': 2.0.0
minimatch: 9.0.5
+ '@tybys/wasm-util@0.10.1':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
'@tybys/wasm-util@0.9.0':
dependencies:
tslib: 2.8.1
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/parser': 7.28.5
+ '@babel/types': 7.28.5
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.6
'@types/babel__generator@7.6.8':
dependencies:
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.5
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/parser': 7.28.5
+ '@babel/types': 7.28.5
'@types/babel__traverse@7.20.6':
dependencies:
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.5
'@types/body-parser@1.19.5':
dependencies:
@@ -16620,135 +17620,151 @@ snapshots:
dependencies:
'@types/yargs-parser': 21.0.3
- '@typescript-eslint/eslint-plugin@8.35.1(@typescript-eslint/parser@8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)':
+ '@typescript-eslint/eslint-plugin@8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
'@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
- '@typescript-eslint/scope-manager': 8.35.1
- '@typescript-eslint/type-utils': 8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
- '@typescript-eslint/utils': 8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
- '@typescript-eslint/visitor-keys': 8.35.1
- eslint: 9.17.0(jiti@1.21.6)
+ '@typescript-eslint/parser': 8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/scope-manager': 8.40.0
+ '@typescript-eslint/type-utils': 8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/visitor-keys': 8.40.0
+ eslint: 9.17.0(jiti@2.6.1)
graphemer: 1.4.0
ignore: 7.0.5
natural-compare: 1.4.0
- ts-api-utils: 2.1.0(typescript@5.8.3)
- typescript: 5.8.3
+ ts-api-utils: 2.1.0(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)':
+ '@typescript-eslint/parser@8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/scope-manager': 8.35.1
- '@typescript-eslint/types': 8.35.1
- '@typescript-eslint/typescript-estree': 8.35.1(typescript@5.8.3)
- '@typescript-eslint/visitor-keys': 8.35.1
- debug: 4.4.0
- eslint: 9.17.0(jiti@1.21.6)
- typescript: 5.8.3
+ '@typescript-eslint/scope-manager': 8.40.0
+ '@typescript-eslint/types': 8.40.0
+ '@typescript-eslint/typescript-estree': 8.40.0(typescript@5.9.3)
+ '@typescript-eslint/visitor-keys': 8.40.0
+ debug: 4.4.1
+ eslint: 9.17.0(jiti@2.6.1)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/project-service@8.35.1(typescript@5.8.3)':
+ '@typescript-eslint/project-service@8.35.1(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/tsconfig-utils': 8.35.1(typescript@5.8.3)
+ '@typescript-eslint/tsconfig-utils': 8.35.1(typescript@5.9.3)
'@typescript-eslint/types': 8.35.1
debug: 4.4.1
- typescript: 5.8.3
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@8.19.0':
+ '@typescript-eslint/project-service@8.40.0(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/types': 8.19.0
- '@typescript-eslint/visitor-keys': 8.19.0
+ '@typescript-eslint/tsconfig-utils': 8.40.0(typescript@5.9.3)
+ '@typescript-eslint/types': 8.40.0
+ debug: 4.4.1
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
'@typescript-eslint/scope-manager@8.35.1':
dependencies:
'@typescript-eslint/types': 8.35.1
'@typescript-eslint/visitor-keys': 8.35.1
- '@typescript-eslint/tsconfig-utils@8.35.1(typescript@5.8.3)':
+ '@typescript-eslint/scope-manager@8.40.0':
dependencies:
- typescript: 5.8.3
+ '@typescript-eslint/types': 8.40.0
+ '@typescript-eslint/visitor-keys': 8.40.0
- '@typescript-eslint/type-utils@8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)':
+ '@typescript-eslint/tsconfig-utils@8.35.1(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.35.1(typescript@5.8.3)
- '@typescript-eslint/utils': 8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
- debug: 4.4.1
- eslint: 9.17.0(jiti@1.21.6)
- ts-api-utils: 2.1.0(typescript@5.8.3)
- typescript: 5.8.3
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/types@8.19.0': {}
+ typescript: 5.9.3
- '@typescript-eslint/types@8.35.1': {}
-
- '@typescript-eslint/typescript-estree@8.19.0(typescript@5.8.3)':
- dependencies:
- '@typescript-eslint/types': 8.19.0
- '@typescript-eslint/visitor-keys': 8.19.0
- debug: 4.4.0
- fast-glob: 3.3.3
- is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.7.2
- ts-api-utils: 1.3.0(typescript@5.8.3)
- typescript: 5.8.3
+ '@typescript-eslint/tsconfig-utils@8.40.0(typescript@5.9.3)':
+ dependencies:
+ typescript: 5.9.3
+
+ '@typescript-eslint/type-utils@8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)':
+ dependencies:
+ '@typescript-eslint/types': 8.40.0
+ '@typescript-eslint/typescript-estree': 8.40.0(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
+ debug: 4.4.1
+ eslint: 9.17.0(jiti@2.6.1)
+ ts-api-utils: 2.1.0(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@8.35.1(typescript@5.8.3)':
+ '@typescript-eslint/types@8.35.1': {}
+
+ '@typescript-eslint/types@8.40.0': {}
+
+ '@typescript-eslint/typescript-estree@8.35.1(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/project-service': 8.35.1(typescript@5.8.3)
- '@typescript-eslint/tsconfig-utils': 8.35.1(typescript@5.8.3)
+ '@typescript-eslint/project-service': 8.35.1(typescript@5.9.3)
+ '@typescript-eslint/tsconfig-utils': 8.35.1(typescript@5.9.3)
'@typescript-eslint/types': 8.35.1
'@typescript-eslint/visitor-keys': 8.35.1
- debug: 4.4.0
+ debug: 4.4.1
fast-glob: 3.3.3
is-glob: 4.0.3
minimatch: 9.0.5
- semver: 7.7.2
- ts-api-utils: 2.1.0(typescript@5.8.3)
- typescript: 5.8.3
+ semver: 7.7.3
+ ts-api-utils: 2.1.0(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.19.0(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)':
+ '@typescript-eslint/typescript-estree@8.40.0(typescript@5.9.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.17.0(jiti@1.21.6))
- '@typescript-eslint/scope-manager': 8.19.0
- '@typescript-eslint/types': 8.19.0
- '@typescript-eslint/typescript-estree': 8.19.0(typescript@5.8.3)
- eslint: 9.17.0(jiti@1.21.6)
- typescript: 5.8.3
+ '@typescript-eslint/project-service': 8.40.0(typescript@5.9.3)
+ '@typescript-eslint/tsconfig-utils': 8.40.0(typescript@5.9.3)
+ '@typescript-eslint/types': 8.40.0
+ '@typescript-eslint/visitor-keys': 8.40.0
+ debug: 4.4.1
+ fast-glob: 3.3.3
+ is-glob: 4.0.3
+ minimatch: 9.0.5
+ semver: 7.7.3
+ ts-api-utils: 2.1.0(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)':
+ '@typescript-eslint/utils@8.35.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.7.0(eslint@9.17.0(jiti@1.21.6))
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.17.0(jiti@2.6.1))
'@typescript-eslint/scope-manager': 8.35.1
'@typescript-eslint/types': 8.35.1
- '@typescript-eslint/typescript-estree': 8.35.1(typescript@5.8.3)
- eslint: 9.17.0(jiti@1.21.6)
- typescript: 5.8.3
+ '@typescript-eslint/typescript-estree': 8.35.1(typescript@5.9.3)
+ eslint: 9.17.0(jiti@2.6.1)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/visitor-keys@8.19.0':
+ '@typescript-eslint/utils@8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/types': 8.19.0
- eslint-visitor-keys: 4.2.0
+ '@eslint-community/eslint-utils': 4.7.0(eslint@9.17.0(jiti@2.6.1))
+ '@typescript-eslint/scope-manager': 8.40.0
+ '@typescript-eslint/types': 8.40.0
+ '@typescript-eslint/typescript-estree': 8.40.0(typescript@5.9.3)
+ eslint: 9.17.0(jiti@2.6.1)
+ typescript: 5.9.3
+ transitivePeerDependencies:
+ - supports-color
'@typescript-eslint/visitor-keys@8.35.1':
dependencies:
'@typescript-eslint/types': 8.35.1
eslint-visitor-keys: 4.2.1
+ '@typescript-eslint/visitor-keys@8.40.0':
+ dependencies:
+ '@typescript-eslint/types': 8.40.0
+ eslint-visitor-keys: 4.2.1
+
'@ungap/structured-clone@1.3.0': {}
'@unrs/resolver-binding-android-arm-eabi@1.11.1':
@@ -16810,9 +17826,9 @@ snapshots:
'@unrs/resolver-binding-win32-x64-msvc@1.11.1':
optional: true
- '@vitejs/plugin-basic-ssl@2.1.0(vite@7.0.6(@types/node@18.16.9)(jiti@1.21.6)(less@4.3.0)(sass-embedded@1.89.2)(sass@1.89.2)(stylus@0.64.0)(terser@5.43.1)(yaml@2.7.0))':
+ '@vitejs/plugin-basic-ssl@2.1.0(vite@7.2.2(@types/node@18.16.9)(jiti@2.6.1)(less@4.4.2)(sass-embedded@1.89.2)(sass@1.93.2)(stylus@0.64.0)(terser@5.44.0)(yaml@2.7.0))':
dependencies:
- vite: 7.0.6(@types/node@18.16.9)(jiti@1.21.6)(less@4.3.0)(sass-embedded@1.89.2)(sass@1.89.2)(stylus@0.64.0)(terser@5.43.1)(yaml@2.7.0)
+ vite: 7.2.2(@types/node@18.16.9)(jiti@2.6.1)(less@4.4.2)(sass-embedded@1.89.2)(sass@1.93.2)(stylus@0.64.0)(terser@5.44.0)(yaml@2.7.0)
'@webassemblyjs/ast@1.14.1':
dependencies:
@@ -16910,7 +17926,7 @@ snapshots:
jsonparse: 1.3.1
through: 2.3.8
- abbrev@2.0.0: {}
+ abbrev@4.0.0: {}
accepts@1.3.8:
dependencies:
@@ -16922,6 +17938,10 @@ snapshots:
mime-types: 3.0.1
negotiator: 1.0.0
+ acorn-import-phases@1.0.4(acorn@8.15.0):
+ dependencies:
+ acorn: 8.15.0
+
acorn-jsx@5.3.2(acorn@8.12.1):
dependencies:
acorn: 8.12.1
@@ -16930,6 +17950,10 @@ snapshots:
dependencies:
acorn: 8.14.0
+ acorn-jsx@5.3.2(acorn@8.15.0):
+ dependencies:
+ acorn: 8.15.0
+
acorn-walk@8.3.3:
dependencies:
acorn: 8.12.1
@@ -16938,6 +17962,8 @@ snapshots:
acorn@8.14.0: {}
+ acorn@8.15.0: {}
+
address@1.2.2: {}
adjust-sourcemap-loader@4.0.0:
@@ -17006,20 +18032,37 @@ snapshots:
'@algolia/requester-fetch': 5.32.0
'@algolia/requester-node-http': 5.32.0
- angular-eslint@20.1.1(chokidar@4.0.3)(eslint@9.17.0(jiti@1.21.6))(typescript-eslint@8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(typescript@5.8.3):
- dependencies:
- '@angular-devkit/core': 20.1.3(chokidar@4.0.3)
- '@angular-devkit/schematics': 20.1.3(chokidar@4.0.3)
- '@angular-eslint/builder': 20.1.1(chokidar@4.0.3)(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
- '@angular-eslint/eslint-plugin': 20.1.1(@typescript-eslint/utils@8.19.0(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
- '@angular-eslint/eslint-plugin-template': 20.1.1(@angular-eslint/template-parser@20.1.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(@typescript-eslint/types@8.19.0)(@typescript-eslint/utils@8.19.0(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
- '@angular-eslint/schematics': 20.1.1(@angular-eslint/template-parser@20.1.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(@typescript-eslint/types@8.19.0)(@typescript-eslint/utils@8.19.0(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(chokidar@4.0.3)(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
- '@angular-eslint/template-parser': 20.1.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
- '@typescript-eslint/types': 8.19.0
- '@typescript-eslint/utils': 8.19.0(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
- eslint: 9.17.0(jiti@1.21.6)
- typescript: 5.8.3
- typescript-eslint: 8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
+ algoliasearch@5.40.1:
+ dependencies:
+ '@algolia/abtesting': 1.6.1
+ '@algolia/client-abtesting': 5.40.1
+ '@algolia/client-analytics': 5.40.1
+ '@algolia/client-common': 5.40.1
+ '@algolia/client-insights': 5.40.1
+ '@algolia/client-personalization': 5.40.1
+ '@algolia/client-query-suggestions': 5.40.1
+ '@algolia/client-search': 5.40.1
+ '@algolia/ingestion': 1.40.1
+ '@algolia/monitoring': 1.40.1
+ '@algolia/recommend': 5.40.1
+ '@algolia/requester-browser-xhr': 5.40.1
+ '@algolia/requester-fetch': 5.40.1
+ '@algolia/requester-node-http': 5.40.1
+
+ angular-eslint@21.0.1(chokidar@4.0.3)(eslint@9.17.0(jiti@2.6.1))(typescript-eslint@8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(typescript@5.9.3):
+ dependencies:
+ '@angular-devkit/core': 21.0.3(chokidar@4.0.3)
+ '@angular-devkit/schematics': 21.0.3(chokidar@4.0.3)
+ '@angular-eslint/builder': 21.0.1(chokidar@4.0.3)(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
+ '@angular-eslint/eslint-plugin': 21.0.1(@typescript-eslint/utils@8.35.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
+ '@angular-eslint/eslint-plugin-template': 21.0.1(@angular-eslint/template-parser@21.0.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/types@8.35.1)(@typescript-eslint/utils@8.35.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
+ '@angular-eslint/schematics': 21.0.1(@angular-eslint/template-parser@21.0.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(@typescript-eslint/types@8.35.1)(@typescript-eslint/utils@8.35.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(chokidar@4.0.3)(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
+ '@angular-eslint/template-parser': 21.0.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/types': 8.35.1
+ '@typescript-eslint/utils': 8.35.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.17.0(jiti@2.6.1)
+ typescript: 5.9.3
+ typescript-eslint: 8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
transitivePeerDependencies:
- chokidar
- supports-color
@@ -17044,10 +18087,6 @@ snapshots:
ansi-regex@6.0.1: {}
- ansi-styles@3.2.1:
- dependencies:
- color-convert: 1.9.3
-
ansi-styles@4.3.0:
dependencies:
color-convert: 2.0.1
@@ -17103,19 +18142,9 @@ snapshots:
postcss: 8.4.40
postcss-value-parser: 4.2.0
- autoprefixer@10.4.21(postcss@8.5.3):
- dependencies:
- browserslist: 4.25.1
- caniuse-lite: 1.0.30001726
- fraction.js: 4.3.7
- normalize-range: 0.1.2
- picocolors: 1.1.1
- postcss: 8.5.3
- postcss-value-parser: 4.2.0
-
autoprefixer@10.4.21(postcss@8.5.6):
dependencies:
- browserslist: 4.25.1
+ browserslist: 4.28.1
caniuse-lite: 1.0.30001726
fraction.js: 4.3.7
normalize-range: 0.1.2
@@ -17123,55 +18152,55 @@ snapshots:
postcss: 8.5.6
postcss-value-parser: 4.2.0
- axios@1.10.0:
+ axios@1.13.2:
dependencies:
follow-redirects: 1.15.6(debug@4.4.1)
- form-data: 4.0.0
+ form-data: 4.0.5
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
axobject-query@4.1.0: {}
- babel-jest@30.0.5(@babel/core@7.27.7):
+ babel-jest@30.0.5(@babel/core@7.28.4):
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@jest/transform': 30.0.5
'@types/babel__core': 7.20.5
babel-plugin-istanbul: 7.0.0
- babel-preset-jest: 30.0.1(@babel/core@7.27.7)
+ babel-preset-jest: 30.0.1(@babel/core@7.28.4)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
transitivePeerDependencies:
- supports-color
- babel-loader@10.0.0(@babel/core@7.27.7)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ babel-loader@10.0.0(@babel/core@7.28.4)(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)):
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
find-up: 5.0.0
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)
- babel-loader@9.2.1(@babel/core@7.27.7)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ babel-loader@9.2.1(@babel/core@7.28.0)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.0
find-cache-dir: 4.0.0
schema-utils: 4.3.2
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
- babel-loader@9.2.1(@babel/core@7.28.0)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ babel-loader@9.2.1(@babel/core@7.28.4)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
- '@babel/core': 7.28.0
+ '@babel/core': 7.28.4
find-cache-dir: 4.0.0
schema-utils: 4.3.2
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
- babel-plugin-const-enum@1.2.0(@babel/core@7.27.7):
+ babel-plugin-const-enum@1.2.0(@babel/core@7.28.4):
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.27.7)
- '@babel/traverse': 7.28.0
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.4)
+ '@babel/traverse': 7.28.5
transitivePeerDependencies:
- supports-color
@@ -17192,23 +18221,14 @@ snapshots:
babel-plugin-jest-hoist@30.0.1:
dependencies:
'@babel/template': 7.27.2
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.5
'@types/babel__core': 7.20.5
babel-plugin-macros@3.1.0:
dependencies:
- '@babel/runtime': 7.27.1
+ '@babel/runtime': 7.28.4
cosmiconfig: 7.1.0
- resolve: 1.22.10
-
- babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.27.7):
- dependencies:
- '@babel/compat-data': 7.28.0
- '@babel/core': 7.27.7
- '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.27.7)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
+ resolve: 1.22.11
babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.28.0):
dependencies:
@@ -17219,11 +18239,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.27.7):
+ babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.4):
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.27.7)
- core-js-compat: 3.43.0
+ '@babel/compat-data': 7.28.0
+ '@babel/core': 7.28.4
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4)
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -17235,10 +18256,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.27.7):
+ babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.28.4):
dependencies:
- '@babel/core': 7.27.7
- '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.27.7)
+ '@babel/core': 7.28.4
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4)
+ core-js-compat: 3.43.0
transitivePeerDependencies:
- supports-color
@@ -17249,37 +18271,44 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.27.7)(@babel/traverse@7.28.0):
+ babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.28.4):
+ dependencies:
+ '@babel/core': 7.28.4
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.4)
+ transitivePeerDependencies:
+ - supports-color
+
+ babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.28.4)(@babel/traverse@7.28.5):
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/helper-plugin-utils': 7.27.1
optionalDependencies:
- '@babel/traverse': 7.28.0
-
- babel-preset-current-node-syntax@1.1.1(@babel/core@7.27.7):
- dependencies:
- '@babel/core': 7.27.7
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.27.7)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.27.7)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.27.7)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.27.7)
- '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.27.7)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.27.7)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.27.7)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.27.7)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.27.7)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.27.7)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.27.7)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.27.7)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.27.7)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.27.7)
-
- babel-preset-jest@30.0.1(@babel/core@7.27.7):
- dependencies:
- '@babel/core': 7.27.7
+ '@babel/traverse': 7.28.5
+
+ babel-preset-current-node-syntax@1.1.1(@babel/core@7.28.4):
+ dependencies:
+ '@babel/core': 7.28.4
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.4)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.4)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.4)
+ '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.4)
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.4)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.4)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.4)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.4)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.4)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.4)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.4)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.4)
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.4)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.4)
+
+ babel-preset-jest@30.0.1(@babel/core@7.28.4):
+ dependencies:
+ '@babel/core': 7.28.4
babel-plugin-jest-hoist: 30.0.1
- babel-preset-current-node-syntax: 1.1.1(@babel/core@7.27.7)
+ babel-preset-current-node-syntax: 1.1.1(@babel/core@7.28.4)
bail@2.0.2: {}
@@ -17287,16 +18316,18 @@ snapshots:
base64-js@1.5.1: {}
+ baseline-browser-mapping@2.9.9: {}
+
basic-auth@2.0.1:
dependencies:
safe-buffer: 5.1.2
batch@0.6.1: {}
- beasties@0.3.4:
+ beasties@0.3.5:
dependencies:
- css-select: 5.1.0
- css-what: 6.1.0
+ css-select: 6.0.0
+ css-what: 7.0.0
dom-serializer: 2.0.0
domhandler: 5.0.3
htmlparser2: 10.0.0
@@ -17367,7 +18398,7 @@ snapshots:
dependencies:
ansi-align: 3.0.1
camelcase: 7.0.1
- chalk: 5.4.1
+ chalk: 5.6.2
cli-boxes: 3.0.0
string-width: 5.1.2
type-fest: 2.19.0
@@ -17401,6 +18432,14 @@ snapshots:
node-releases: 2.0.19
update-browserslist-db: 1.1.3(browserslist@4.25.1)
+ browserslist@4.28.1:
+ dependencies:
+ baseline-browser-mapping: 2.9.9
+ caniuse-lite: 1.0.30001760
+ electron-to-chromium: 1.5.267
+ node-releases: 2.0.27
+ update-browserslist-db: 1.2.3(browserslist@4.28.1)
+
bs-logger@0.2.6:
dependencies:
fast-json-stable-stringify: 2.1.0
@@ -17428,25 +18467,19 @@ snapshots:
bytes@3.1.2: {}
- cacache@19.0.1:
+ cacache@20.0.3:
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
+ glob: 13.0.0
+ lru-cache: 11.2.4
minipass: 7.1.2
minipass-collect: 2.0.1
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
p-map: 7.0.3
- ssri: 12.0.0
- tar: 7.4.3
- unique-filename: 4.0.0
-
- cache-content-type@1.0.1:
- dependencies:
- mime-types: 2.1.35
- ylru: 1.4.0
+ ssri: 13.0.0
+ unique-filename: 5.0.0
cacheable-lookup@7.0.0: {}
@@ -17467,10 +18500,10 @@ snapshots:
call-bind@1.0.7:
dependencies:
- es-define-property: 1.0.0
+ es-define-property: 1.0.1
es-errors: 1.3.0
function-bind: 1.1.2
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.3.0
set-function-length: 1.2.2
call-bind@1.0.8:
@@ -17509,13 +18542,9 @@ snapshots:
caniuse-lite@1.0.30001726: {}
- ccount@2.0.1: {}
+ caniuse-lite@1.0.30001760: {}
- chalk@2.4.2:
- dependencies:
- ansi-styles: 3.2.1
- escape-string-regexp: 1.0.5
- supports-color: 5.5.0
+ ccount@2.0.1: {}
chalk@3.0.0:
dependencies:
@@ -17527,10 +18556,10 @@ snapshots:
ansi-styles: 4.3.0
supports-color: 7.2.0
- chalk@5.3.0: {}
-
chalk@5.4.1: {}
+ chalk@5.6.2: {}
+
char-regex@1.0.2: {}
character-entities-html4@2.1.0: {}
@@ -17541,7 +18570,7 @@ snapshots:
character-reference-invalid@2.0.1: {}
- chardet@0.7.0: {}
+ chardet@2.1.1: {}
cheerio-select@2.1.0:
dependencies:
@@ -17578,8 +18607,6 @@ snapshots:
dependencies:
readdirp: 4.0.2
- chownr@2.0.0: {}
-
chownr@3.0.0: {}
chrome-trace-event@1.0.4: {}
@@ -17610,6 +18637,8 @@ snapshots:
cli-spinners@2.9.2: {}
+ cli-spinners@3.3.0: {}
+
cli-table3@0.6.5:
dependencies:
string-width: 4.2.3
@@ -17621,6 +18650,11 @@ snapshots:
slice-ansi: 5.0.0
string-width: 7.2.0
+ cli-truncate@5.1.1:
+ dependencies:
+ slice-ansi: 7.1.0
+ string-width: 8.1.0
+
cli-width@4.1.0: {}
cliui@8.0.1:
@@ -17632,7 +18666,7 @@ snapshots:
cliui@9.0.1:
dependencies:
string-width: 7.2.0
- strip-ansi: 7.1.0
+ strip-ansi: 7.1.2
wrap-ansi: 9.0.0
clone-deep@4.0.1:
@@ -17651,16 +18685,10 @@ snapshots:
collect-v8-coverage@1.0.2: {}
- color-convert@1.9.3:
- dependencies:
- color-name: 1.1.3
-
color-convert@2.0.1:
dependencies:
color-name: 1.1.4
- color-name@1.1.3: {}
-
color-name@1.1.4: {}
colord@2.9.3: {}
@@ -17790,15 +18818,15 @@ snapshots:
copy-text-to-clipboard@3.2.0: {}
- copy-webpack-plugin@10.2.4(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ copy-webpack-plugin@10.2.4(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
fast-glob: 3.3.3
glob-parent: 6.0.2
globby: 12.2.0
normalize-path: 3.0.0
- schema-utils: 4.3.2
+ schema-utils: 4.3.3
serialize-javascript: 6.0.2
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
copy-webpack-plugin@11.0.0(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
@@ -17808,16 +18836,16 @@ snapshots:
normalize-path: 3.0.0
schema-utils: 4.3.2
serialize-javascript: 6.0.2
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
- copy-webpack-plugin@13.0.0(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ copy-webpack-plugin@13.0.1(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)):
dependencies:
glob-parent: 6.0.2
normalize-path: 3.0.0
schema-utils: 4.3.2
serialize-javascript: 6.0.2
- tinyglobby: 0.2.14
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ tinyglobby: 0.2.15
+ webpack: 5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)
core-js-compat@3.43.0:
dependencies:
@@ -17836,12 +18864,12 @@ snapshots:
corser@2.0.1: {}
- cosmiconfig-typescript-loader@5.0.0(@types/node@18.16.9)(cosmiconfig@9.0.0(typescript@5.8.3))(typescript@5.8.3):
+ cosmiconfig-typescript-loader@5.0.0(@types/node@18.16.9)(cosmiconfig@9.0.0(typescript@5.9.3))(typescript@5.9.3):
dependencies:
'@types/node': 18.16.9
- cosmiconfig: 9.0.0(typescript@5.8.3)
+ cosmiconfig: 9.0.0(typescript@5.9.3)
jiti: 1.21.6
- typescript: 5.8.3
+ typescript: 5.9.3
cosmiconfig@6.0.0:
dependencies:
@@ -17868,14 +18896,14 @@ snapshots:
optionalDependencies:
typescript: 5.6.3
- cosmiconfig@9.0.0(typescript@5.8.3):
+ cosmiconfig@9.0.0(typescript@5.9.3):
dependencies:
env-paths: 2.2.1
import-fresh: 3.3.0
js-yaml: 4.1.0
parse-json: 5.2.0
optionalDependencies:
- typescript: 5.8.3
+ typescript: 5.9.3
create-require@1.1.1: {}
@@ -17931,7 +18959,7 @@ snapshots:
postcss-selector-parser: 7.1.0
postcss-value-parser: 4.2.0
- css-loader@6.11.0(@rspack/core@1.4.4(@swc/helpers@0.5.12))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ css-loader@6.11.0(@rspack/core@1.6.8(@swc/helpers@0.5.12))(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
icss-utils: 5.1.0(postcss@8.5.3)
postcss: 8.5.3
@@ -17940,12 +18968,12 @@ snapshots:
postcss-modules-scope: 3.2.0(postcss@8.5.3)
postcss-modules-values: 4.0.0(postcss@8.5.3)
postcss-value-parser: 4.2.0
- semver: 7.7.2
+ semver: 7.7.3
optionalDependencies:
- '@rspack/core': 1.4.4(@swc/helpers@0.5.12)
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ '@rspack/core': 1.6.8(@swc/helpers@0.5.12)
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
- css-loader@6.11.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ css-loader@6.11.0(@rspack/core@1.6.8(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
icss-utils: 5.1.0(postcss@8.5.3)
postcss: 8.5.3
@@ -17954,12 +18982,12 @@ snapshots:
postcss-modules-scope: 3.2.0(postcss@8.5.3)
postcss-modules-values: 4.0.0(postcss@8.5.3)
postcss-value-parser: 4.2.0
- semver: 7.7.2
+ semver: 7.7.3
optionalDependencies:
- '@rspack/core': 1.4.4(@swc/helpers@0.5.17)
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ '@rspack/core': 1.6.8(@swc/helpers@0.5.17)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
- css-loader@7.1.2(@rspack/core@1.4.4(@swc/helpers@0.5.12))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ css-loader@7.1.2(@rspack/core@1.6.8(@swc/helpers@0.5.12))(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)):
dependencies:
icss-utils: 5.1.0(postcss@8.5.6)
postcss: 8.5.6
@@ -17968,10 +18996,10 @@ snapshots:
postcss-modules-scope: 3.2.0(postcss@8.5.6)
postcss-modules-values: 4.0.0(postcss@8.5.6)
postcss-value-parser: 4.2.0
- semver: 7.7.2
+ semver: 7.7.3
optionalDependencies:
- '@rspack/core': 1.4.4(@swc/helpers@0.5.12)
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ '@rspack/core': 1.6.8(@swc/helpers@0.5.12)
+ webpack: 5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)
css-minimizer-webpack-plugin@5.0.1(clean-css@5.3.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
@@ -17981,10 +19009,20 @@ snapshots:
postcss: 8.5.3
schema-utils: 4.3.2
serialize-javascript: 6.0.2
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
optionalDependencies:
clean-css: 5.3.3
+ css-minimizer-webpack-plugin@5.0.1(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.29
+ cssnano: 6.1.2(postcss@8.5.3)
+ jest-worker: 29.7.0
+ postcss: 8.5.3
+ schema-utils: 4.3.2
+ serialize-javascript: 6.0.2
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
+
css-prefers-color-scheme@10.0.0(postcss@8.5.6):
dependencies:
postcss: 8.5.6
@@ -18009,6 +19047,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.2.1:
dependencies:
mdn-data: 2.0.28
@@ -18021,6 +19067,8 @@ snapshots:
css-what@6.1.0: {}
+ css-what@7.0.0: {}
+
cssdb@8.1.0: {}
cssdb@8.3.1: {}
@@ -18211,9 +19259,9 @@ snapshots:
define-data-property@1.1.4:
dependencies:
- es-define-property: 1.0.0
+ es-define-property: 1.0.1
es-errors: 1.3.0
- gopd: 1.0.1
+ gopd: 1.2.0
define-lazy-prop@2.0.0: {}
@@ -18369,6 +19417,8 @@ snapshots:
electron-to-chromium@1.5.179: {}
+ electron-to-chromium@1.5.267: {}
+
emittery@0.13.1: {}
emoji-regex@10.3.0: {}
@@ -18400,6 +19450,11 @@ snapshots:
graceful-fs: 4.2.11
tapable: 2.2.1
+ enhanced-resolve@5.18.4:
+ dependencies:
+ graceful-fs: 4.2.11
+ tapable: 2.3.0
+
enquirer@2.3.6:
dependencies:
ansi-colors: 4.1.3
@@ -18429,20 +19484,25 @@ snapshots:
dependencies:
stackframe: 1.3.4
- es-define-property@1.0.0:
- dependencies:
- get-intrinsic: 1.2.4
-
es-define-property@1.0.1: {}
es-errors@1.3.0: {}
es-module-lexer@1.5.4: {}
+ es-module-lexer@2.0.0: {}
+
es-object-atoms@1.1.1:
dependencies:
es-errors: 1.3.0
+ es-set-tostringtag@2.1.0:
+ dependencies:
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ has-tostringtag: 1.0.2
+ hasown: 2.0.2
+
esast-util-from-estree@2.0.0:
dependencies:
'@types/estree-jsx': 1.0.5
@@ -18459,6 +19519,8 @@ snapshots:
esbuild-wasm@0.25.5: {}
+ esbuild-wasm@0.26.0: {}
+
esbuild@0.25.5:
optionalDependencies:
'@esbuild/aix-ppc64': 0.25.5
@@ -18487,6 +19549,64 @@ snapshots:
'@esbuild/win32-ia32': 0.25.5
'@esbuild/win32-x64': 0.25.5
+ esbuild@0.26.0:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.26.0
+ '@esbuild/android-arm': 0.26.0
+ '@esbuild/android-arm64': 0.26.0
+ '@esbuild/android-x64': 0.26.0
+ '@esbuild/darwin-arm64': 0.26.0
+ '@esbuild/darwin-x64': 0.26.0
+ '@esbuild/freebsd-arm64': 0.26.0
+ '@esbuild/freebsd-x64': 0.26.0
+ '@esbuild/linux-arm': 0.26.0
+ '@esbuild/linux-arm64': 0.26.0
+ '@esbuild/linux-ia32': 0.26.0
+ '@esbuild/linux-loong64': 0.26.0
+ '@esbuild/linux-mips64el': 0.26.0
+ '@esbuild/linux-ppc64': 0.26.0
+ '@esbuild/linux-riscv64': 0.26.0
+ '@esbuild/linux-s390x': 0.26.0
+ '@esbuild/linux-x64': 0.26.0
+ '@esbuild/netbsd-arm64': 0.26.0
+ '@esbuild/netbsd-x64': 0.26.0
+ '@esbuild/openbsd-arm64': 0.26.0
+ '@esbuild/openbsd-x64': 0.26.0
+ '@esbuild/openharmony-arm64': 0.26.0
+ '@esbuild/sunos-x64': 0.26.0
+ '@esbuild/win32-arm64': 0.26.0
+ '@esbuild/win32-ia32': 0.26.0
+ '@esbuild/win32-x64': 0.26.0
+
+ esbuild@0.27.2:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.27.2
+ '@esbuild/android-arm': 0.27.2
+ '@esbuild/android-arm64': 0.27.2
+ '@esbuild/android-x64': 0.27.2
+ '@esbuild/darwin-arm64': 0.27.2
+ '@esbuild/darwin-x64': 0.27.2
+ '@esbuild/freebsd-arm64': 0.27.2
+ '@esbuild/freebsd-x64': 0.27.2
+ '@esbuild/linux-arm': 0.27.2
+ '@esbuild/linux-arm64': 0.27.2
+ '@esbuild/linux-ia32': 0.27.2
+ '@esbuild/linux-loong64': 0.27.2
+ '@esbuild/linux-mips64el': 0.27.2
+ '@esbuild/linux-ppc64': 0.27.2
+ '@esbuild/linux-riscv64': 0.27.2
+ '@esbuild/linux-s390x': 0.27.2
+ '@esbuild/linux-x64': 0.27.2
+ '@esbuild/netbsd-arm64': 0.27.2
+ '@esbuild/netbsd-x64': 0.27.2
+ '@esbuild/openbsd-arm64': 0.27.2
+ '@esbuild/openbsd-x64': 0.27.2
+ '@esbuild/openharmony-arm64': 0.27.2
+ '@esbuild/sunos-x64': 0.27.2
+ '@esbuild/win32-arm64': 0.27.2
+ '@esbuild/win32-ia32': 0.27.2
+ '@esbuild/win32-x64': 0.27.2
+
escalade@3.2.0: {}
escape-goat@4.0.0: {}
@@ -18501,20 +19621,20 @@ snapshots:
escape-string-regexp@5.0.0: {}
- eslint-config-prettier@10.1.5(eslint@9.17.0(jiti@1.21.6)):
+ eslint-config-prettier@10.1.5(eslint@9.17.0(jiti@2.6.1)):
dependencies:
- eslint: 9.17.0(jiti@1.21.6)
+ eslint: 9.17.0(jiti@2.6.1)
- eslint-plugin-playwright@1.8.3(eslint@9.17.0(jiti@1.21.6)):
+ eslint-plugin-playwright@1.8.3(eslint@9.17.0(jiti@2.6.1)):
dependencies:
- eslint: 9.17.0(jiti@1.21.6)
+ eslint: 9.17.0(jiti@2.6.1)
globals: 13.24.0
- eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.35.1(@typescript-eslint/parser@8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(eslint@9.17.0(jiti@1.21.6)):
+ eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1)):
dependencies:
- eslint: 9.17.0(jiti@1.21.6)
+ eslint: 9.17.0(jiti@2.6.1)
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 8.35.1(@typescript-eslint/parser@8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
+ '@typescript-eslint/eslint-plugin': 8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
eslint-scope@5.1.1:
dependencies:
@@ -18526,15 +19646,20 @@ snapshots:
esrecurse: 4.3.0
estraverse: 5.3.0
+ eslint-scope@9.0.0:
+ dependencies:
+ esrecurse: 4.3.0
+ estraverse: 5.3.0
+
eslint-visitor-keys@3.4.3: {}
eslint-visitor-keys@4.2.0: {}
eslint-visitor-keys@4.2.1: {}
- eslint@9.17.0(jiti@1.21.6):
+ eslint@9.17.0(jiti@2.6.1):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.17.0(jiti@1.21.6))
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.17.0(jiti@2.6.1))
'@eslint-community/regexpp': 4.12.1
'@eslint/config-array': 0.19.1
'@eslint/core': 0.9.1
@@ -18569,7 +19694,7 @@ snapshots:
natural-compare: 1.4.0
optionator: 0.9.4
optionalDependencies:
- jiti: 1.21.6
+ jiti: 2.6.1
transitivePeerDependencies:
- supports-color
@@ -18621,7 +19746,7 @@ snapshots:
dependencies:
'@types/estree-jsx': 1.0.5
astring: 1.9.0
- source-map: 0.7.4
+ source-map: 0.7.6
estree-util-value-to-estree@3.4.0:
dependencies:
@@ -18780,12 +19905,6 @@ snapshots:
extend@3.0.2: {}
- external-editor@3.1.0:
- dependencies:
- chardet: 0.7.0
- iconv-lite: 0.4.24
- tmp: 0.0.33
-
fake-indexeddb@6.0.0: {}
fast-deep-equal@3.1.3: {}
@@ -18820,11 +19939,11 @@ snapshots:
dependencies:
bser: 2.1.1
- fdir@6.4.6(picomatch@4.0.2):
+ fdir@6.4.6(picomatch@4.0.3):
optionalDependencies:
- picomatch: 4.0.2
+ picomatch: 4.0.3
- fdir@6.4.6(picomatch@4.0.3):
+ fdir@6.5.0(picomatch@4.0.3):
optionalDependencies:
picomatch: 4.0.3
@@ -18840,11 +19959,18 @@ snapshots:
dependencies:
flat-cache: 4.0.1
+ file-loader@6.2.0(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ dependencies:
+ loader-utils: 2.0.4
+ schema-utils: 3.3.0
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
+ optional: true
+
file-loader@6.2.0(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
filelist@1.0.4:
dependencies:
@@ -18941,10 +20067,10 @@ snapshots:
foreground-child@3.2.1:
dependencies:
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
signal-exit: 4.1.0
- fork-ts-checker-webpack-plugin@6.5.3(eslint@9.17.0(jiti@1.21.6))(typescript@5.6.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ fork-ts-checker-webpack-plugin@6.5.3(eslint@9.17.0(jiti@2.6.1))(typescript@5.6.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
'@babel/code-frame': 7.27.1
'@types/json-schema': 7.0.15
@@ -18957,14 +20083,14 @@ snapshots:
memfs: 3.5.3
minimatch: 3.1.2
schema-utils: 2.7.0
- semver: 7.7.2
+ semver: 7.7.3
tapable: 1.1.3
typescript: 5.6.3
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
optionalDependencies:
- eslint: 9.17.0(jiti@1.21.6)
+ eslint: 9.17.0(jiti@2.6.1)
- fork-ts-checker-webpack-plugin@7.2.13(typescript@5.8.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ fork-ts-checker-webpack-plugin@7.2.13(typescript@5.9.3)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
'@babel/code-frame': 7.27.1
chalk: 4.1.2
@@ -18976,17 +20102,19 @@ snapshots:
minimatch: 3.1.2
node-abort-controller: 3.1.1
schema-utils: 3.3.0
- semver: 7.7.2
- tapable: 2.2.1
- typescript: 5.8.3
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ semver: 7.7.3
+ tapable: 2.3.0
+ typescript: 5.9.3
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
form-data-encoder@2.1.4: {}
- form-data@4.0.0:
+ form-data@4.0.5:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
+ es-set-tostringtag: 2.1.0
+ hasown: 2.0.2
mime-types: 2.1.35
format@0.2.2: {}
@@ -19030,10 +20158,6 @@ snapshots:
jsonfile: 6.1.0
universalify: 2.0.1
- fs-minipass@2.1.0:
- dependencies:
- minipass: 3.3.6
-
fs-minipass@3.0.3:
dependencies:
minipass: 7.1.2
@@ -19054,15 +20178,7 @@ snapshots:
get-caller-file@2.0.5: {}
- get-east-asian-width@1.2.0: {}
-
- get-intrinsic@1.2.4:
- dependencies:
- es-errors: 1.3.0
- function-bind: 1.1.2
- has-proto: 1.0.3
- has-symbols: 1.0.3
- hasown: 2.0.2
+ get-east-asian-width@1.4.0: {}
get-intrinsic@1.3.0:
dependencies:
@@ -19106,6 +20222,10 @@ snapshots:
dependencies:
is-glob: 4.0.3
+ glob-to-regex.js@1.2.0(tslib@2.8.1):
+ dependencies:
+ tslib: 2.8.1
+
glob-to-regexp@0.4.1: {}
glob@10.4.5:
@@ -19117,6 +20237,12 @@ snapshots:
package-json-from-dist: 1.0.0
path-scurry: 1.11.1
+ glob@13.0.0:
+ dependencies:
+ minimatch: 10.1.1
+ minipass: 7.1.2
+ path-scurry: 2.0.1
+
glob@7.2.3:
dependencies:
fs.realpath: 1.0.0
@@ -19192,10 +20318,6 @@ snapshots:
merge2: 1.4.1
slash: 4.0.0
- gopd@1.0.1:
- dependencies:
- get-intrinsic: 1.2.4
-
gopd@1.2.0: {}
got@12.6.1:
@@ -19233,23 +20355,17 @@ snapshots:
harmony-reflect@1.6.2: {}
- has-flag@3.0.0: {}
-
has-flag@4.0.0: {}
has-property-descriptors@1.0.2:
dependencies:
- es-define-property: 1.0.0
-
- has-proto@1.0.3: {}
-
- has-symbols@1.0.3: {}
+ es-define-property: 1.0.1
has-symbols@1.1.0: {}
has-tostringtag@1.0.2:
dependencies:
- has-symbols: 1.0.3
+ has-symbols: 1.1.0
has-yarn@3.0.0: {}
@@ -19355,7 +20471,7 @@ snapshots:
history@4.10.1:
dependencies:
- '@babel/runtime': 7.27.6
+ '@babel/runtime': 7.28.4
loose-envify: 1.4.0
resolve-pathname: 3.0.0
tiny-invariant: 1.3.3
@@ -19370,13 +20486,9 @@ snapshots:
dependencies:
parse-passwd: 1.0.0
- hosted-git-info@7.0.2:
+ hosted-git-info@9.0.2:
dependencies:
- lru-cache: 10.4.3
-
- hosted-git-info@8.0.2:
- dependencies:
- lru-cache: 10.4.3
+ lru-cache: 11.2.4
hpack.js@2.1.6:
dependencies:
@@ -19421,7 +20533,7 @@ snapshots:
html-void-elements@3.0.0: {}
- html-webpack-plugin@5.6.3(@rspack/core@1.4.4(@swc/helpers@0.5.12))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ html-webpack-plugin@5.6.3(@rspack/core@1.6.8(@swc/helpers@0.5.12))(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
'@types/html-minifier-terser': 6.1.0
html-minifier-terser: 6.1.0
@@ -19429,11 +20541,11 @@ snapshots:
pretty-error: 4.0.0
tapable: 2.2.1
optionalDependencies:
- '@rspack/core': 1.4.4(@swc/helpers@0.5.12)
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ '@rspack/core': 1.6.8(@swc/helpers@0.5.12)
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
optional: true
- html-webpack-plugin@5.6.3(@rspack/core@1.4.4(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ html-webpack-plugin@5.6.3(@rspack/core@1.6.8(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
'@types/html-minifier-terser': 6.1.0
html-minifier-terser: 6.1.0
@@ -19441,8 +20553,8 @@ snapshots:
pretty-error: 4.0.0
tapable: 2.2.1
optionalDependencies:
- '@rspack/core': 1.4.4(@swc/helpers@0.5.17)
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ '@rspack/core': 1.6.8(@swc/helpers@0.5.17)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
htmlparser2@10.0.0:
dependencies:
@@ -19584,6 +20696,10 @@ snapshots:
dependencies:
safer-buffer: 2.1.2
+ iconv-lite@0.7.1:
+ dependencies:
+ safer-buffer: 2.1.2
+
icss-utils@5.1.0(postcss@8.5.3):
dependencies:
postcss: 8.5.3
@@ -19600,7 +20716,7 @@ snapshots:
ignore-walk@8.0.0:
dependencies:
- minimatch: 10.0.3
+ minimatch: 10.1.1
ignore@5.3.1: {}
@@ -19654,6 +20770,8 @@ snapshots:
ini@5.0.0: {}
+ ini@6.0.0: {}
+
injection-js@2.4.0:
dependencies:
tslib: 2.8.1
@@ -19692,10 +20810,6 @@ snapshots:
dependencies:
ci-info: 3.9.0
- is-core-module@2.15.0:
- dependencies:
- hasown: 2.0.2
-
is-core-module@2.16.1:
dependencies:
hasown: 2.0.2
@@ -19716,14 +20830,10 @@ snapshots:
is-fullwidth-code-point@5.0.0:
dependencies:
- get-east-asian-width: 1.2.0
+ get-east-asian-width: 1.4.0
is-generator-fn@2.1.0: {}
- is-generator-function@1.0.10:
- dependencies:
- has-tostringtag: 1.0.2
-
is-glob@4.0.3:
dependencies:
is-extglob: 2.1.1
@@ -19787,8 +20897,6 @@ snapshots:
is-unicode-supported@0.1.0: {}
- is-unicode-supported@1.3.0: {}
-
is-unicode-supported@2.1.0: {}
is-what@3.14.1: {}
@@ -19823,11 +20931,11 @@ snapshots:
istanbul-lib-instrument@6.0.3:
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/parser': 7.28.0
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
- semver: 7.7.2
+ semver: 7.7.3
transitivePeerDependencies:
- supports-color
@@ -19895,15 +21003,15 @@ snapshots:
- babel-plugin-macros
- supports-color
- jest-cli@30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3)):
+ jest-cli@30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3)):
dependencies:
- '@jest/core': 30.0.5(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3))
+ '@jest/core': 30.0.5(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3))
'@jest/test-result': 30.0.5
'@jest/types': 30.0.5
chalk: 4.1.2
exit-x: 0.2.2
import-local: 3.2.0
- jest-config: 30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3))
+ jest-config: 30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3))
jest-util: 30.0.5
jest-validate: 30.0.5
yargs: 17.7.2
@@ -19914,14 +21022,14 @@ snapshots:
- supports-color
- ts-node
- jest-config@30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3)):
+ jest-config@30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3)):
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@jest/get-type': 30.0.1
'@jest/pattern': 30.0.1
'@jest/test-sequencer': 30.0.5
'@jest/types': 30.0.5
- babel-jest: 30.0.5(@babel/core@7.27.7)
+ babel-jest: 30.0.5(@babel/core@7.28.4)
chalk: 4.1.2
ci-info: 4.3.0
deepmerge: 4.3.1
@@ -19942,7 +21050,7 @@ snapshots:
strip-json-comments: 3.1.1
optionalDependencies:
'@types/node': 18.16.9
- ts-node: 10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3)
+ ts-node: 10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3)
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -20037,21 +21145,21 @@ snapshots:
optionalDependencies:
jest-resolve: 30.0.5
- jest-preset-angular@15.0.0(2565b57a7cb0a2a6f6c99a5eea26a54f):
+ jest-preset-angular@16.0.0(62926576bf5cb47c7740961654bd6842):
dependencies:
- '@angular/compiler-cli': 20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3)
- '@angular/core': 20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)
- '@angular/platform-browser-dynamic': 20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/compiler@20.1.3)(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(@angular/platform-browser@20.1.3(@angular/animations@20.1.3(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))(@angular/common@20.1.3(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0))(rxjs@7.8.1))(@angular/core@20.1.3(@angular/compiler@20.1.3)(rxjs@7.8.1)(zone.js@0.15.0)))
+ '@angular/compiler-cli': 21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3)
+ '@angular/core': 21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)
+ '@angular/platform-browser': 21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))
+ '@angular/platform-browser-dynamic': 21.0.6(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/compiler@21.0.6)(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(@angular/platform-browser@21.0.6(@angular/animations@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))(@angular/common@21.0.6(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0))(rxjs@7.8.1))(@angular/core@21.0.6(@angular/compiler@21.0.6)(rxjs@7.8.1)(zone.js@0.16.0)))
'@jest/environment-jsdom-abstract': 30.0.5(jsdom@26.1.0)
bs-logger: 0.2.6
esbuild-wasm: 0.25.5
- jest: 30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3))
- jest-environment-jsdom: 30.0.5
+ jest: 30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3))
jest-util: 30.0.5
jsdom: 26.1.0
pretty-format: 30.0.5
- ts-jest: 29.4.0(@babel/core@7.27.7)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.7))(esbuild@0.25.5)(jest-util@30.0.5)(jest@30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3)))(typescript@5.8.3)
- typescript: 5.8.3
+ ts-jest: 29.4.0(@babel/core@7.28.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.28.4))(esbuild@0.25.5)(jest-util@30.0.5)(jest@30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3)))(typescript@5.9.3)
+ typescript: 5.9.3
optionalDependencies:
esbuild: 0.25.5
transitivePeerDependencies:
@@ -20137,17 +21245,17 @@ snapshots:
jest-snapshot@30.0.5:
dependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@babel/generator': 7.28.0
- '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.7)
- '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.27.7)
+ '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.4)
+ '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.4)
'@babel/types': 7.28.0
'@jest/expect-utils': 30.0.5
'@jest/get-type': 30.0.1
'@jest/snapshot-utils': 30.0.5
'@jest/transform': 30.0.5
'@jest/types': 30.0.5
- babel-preset-current-node-syntax: 1.1.1(@babel/core@7.27.7)
+ babel-preset-current-node-syntax: 1.1.1(@babel/core@7.28.4)
chalk: 4.1.2
expect: 30.0.5
graceful-fs: 4.2.11
@@ -20156,7 +21264,7 @@ snapshots:
jest-message-util: 30.0.5
jest-util: 30.0.5
pretty-format: 30.0.5
- semver: 7.7.2
+ semver: 7.7.3
synckit: 0.11.11
transitivePeerDependencies:
- supports-color
@@ -20220,12 +21328,12 @@ snapshots:
merge-stream: 2.0.0
supports-color: 8.1.1
- jest@30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3)):
+ jest@30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3)):
dependencies:
- '@jest/core': 30.0.5(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3))
+ '@jest/core': 30.0.5(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3))
'@jest/types': 30.0.5
import-local: 3.2.0
- jest-cli: 30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3))
+ jest-cli: 30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3))
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -20235,6 +21343,10 @@ snapshots:
jiti@1.21.6: {}
+ jiti@2.4.2: {}
+
+ jiti@2.6.1: {}
+
joi@17.13.3:
dependencies:
'@hapi/hoek': 9.3.0
@@ -20243,6 +21355,8 @@ snapshots:
'@sideway/formula': 3.0.1
'@sideway/pinpoint': 2.0.0
+ jose@6.1.3: {}
+
js-tokens@4.0.0: {}
js-yaml@3.14.1:
@@ -20291,7 +21405,7 @@ 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: {}
@@ -20344,38 +21458,26 @@ snapshots:
koa-compose@4.1.0: {}
- koa-convert@2.0.0:
- dependencies:
- co: 4.6.0
- koa-compose: 4.1.0
-
- koa@2.16.1:
+ koa@3.0.3:
dependencies:
accepts: 1.3.8
- cache-content-type: 1.0.1
content-disposition: 0.5.4
content-type: 1.0.5
cookies: 0.9.1
- debug: 4.4.1
delegates: 1.0.0
- depd: 2.0.0
destroy: 1.2.0
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
fresh: 0.5.2
http-assert: 1.5.0
- http-errors: 1.8.1
- is-generator-function: 1.0.10
+ http-errors: 2.0.0
koa-compose: 4.1.0
- koa-convert: 2.0.0
+ mime-types: 3.0.1
on-finished: 2.4.1
- only: 0.0.2
parseurl: 1.3.3
- statuses: 1.5.0
- type-is: 1.6.18
+ statuses: 2.0.1
+ type-is: 2.0.1
vary: 1.1.2
- transitivePeerDependencies:
- - supports-color
latest-version@7.0.0:
dependencies:
@@ -20386,18 +21488,18 @@ snapshots:
picocolors: 1.1.1
shell-quote: 1.8.1
- less-loader@11.1.0(less@4.3.0)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ less-loader@11.1.0(less@4.4.2)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
klona: 2.0.6
- less: 4.3.0
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ less: 4.4.2
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
- less-loader@12.3.0(@rspack/core@1.4.4(@swc/helpers@0.5.12))(less@4.3.0)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ less-loader@12.3.0(@rspack/core@1.6.8(@swc/helpers@0.5.12))(less@4.4.2)(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)):
dependencies:
- less: 4.3.0
+ less: 4.4.2
optionalDependencies:
- '@rspack/core': 1.4.4(@swc/helpers@0.5.12)
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ '@rspack/core': 1.6.8(@swc/helpers@0.5.12)
+ webpack: 5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)
less@4.3.0:
dependencies:
@@ -20413,6 +21515,20 @@ snapshots:
needle: 3.3.1
source-map: 0.6.1
+ less@4.4.2:
+ dependencies:
+ copy-anything: 2.0.6
+ parse-node-version: 1.0.1
+ tslib: 2.8.1
+ optionalDependencies:
+ errno: 0.1.8
+ graceful-fs: 4.2.11
+ image-size: 0.5.5
+ make-dir: 2.1.0
+ mime: 1.6.0
+ needle: 3.3.1
+ source-map: 0.6.1
+
leven@3.1.0: {}
levn@0.4.1:
@@ -20420,11 +21536,17 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
- license-webpack-plugin@4.0.2(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ license-webpack-plugin@4.0.2(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)):
+ dependencies:
+ webpack-sources: 3.2.3
+ optionalDependencies:
+ webpack: 5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)
+
+ license-webpack-plugin@4.0.2(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
webpack-sources: 3.2.3
optionalDependencies:
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
lilconfig@3.1.3: {}
@@ -20460,16 +21582,16 @@ snapshots:
rfdc: 1.4.1
wrap-ansi: 9.0.0
- listr2@8.3.3:
+ listr2@9.0.5:
dependencies:
- cli-truncate: 4.0.0
+ cli-truncate: 5.1.1
colorette: 2.0.20
eventemitter3: 5.0.1
log-update: 6.1.0
rfdc: 1.4.1
wrap-ansi: 9.0.0
- lmdb@3.4.1:
+ lmdb@3.4.3:
dependencies:
msgpackr: 1.11.2
node-addon-api: 6.1.0
@@ -20477,17 +21599,19 @@ snapshots:
ordered-binary: 1.5.3
weak-lru-cache: 1.2.2
optionalDependencies:
- '@lmdb/lmdb-darwin-arm64': 3.4.1
- '@lmdb/lmdb-darwin-x64': 3.4.1
- '@lmdb/lmdb-linux-arm': 3.4.1
- '@lmdb/lmdb-linux-arm64': 3.4.1
- '@lmdb/lmdb-linux-x64': 3.4.1
- '@lmdb/lmdb-win32-arm64': 3.4.1
- '@lmdb/lmdb-win32-x64': 3.4.1
+ '@lmdb/lmdb-darwin-arm64': 3.4.3
+ '@lmdb/lmdb-darwin-x64': 3.4.3
+ '@lmdb/lmdb-linux-arm': 3.4.3
+ '@lmdb/lmdb-linux-arm64': 3.4.3
+ '@lmdb/lmdb-linux-x64': 3.4.3
+ '@lmdb/lmdb-win32-arm64': 3.4.3
+ '@lmdb/lmdb-win32-x64': 3.4.3
optional: true
loader-runner@4.3.0: {}
+ loader-runner@4.3.1: {}
+
loader-utils@2.0.4:
dependencies:
big.js: 5.2.2
@@ -20544,17 +21668,17 @@ snapshots:
chalk: 4.1.2
is-unicode-supported: 0.1.0
- log-symbols@6.0.0:
+ log-symbols@7.0.1:
dependencies:
- chalk: 5.4.1
- is-unicode-supported: 1.3.0
+ is-unicode-supported: 2.1.0
+ yoctocolors: 2.1.2
log-update@6.1.0:
dependencies:
ansi-escapes: 7.0.0
cli-cursor: 5.0.0
slice-ansi: 7.1.0
- strip-ansi: 7.1.0
+ strip-ansi: 7.1.2
wrap-ansi: 9.0.0
log4js@6.9.1:
@@ -20583,6 +21707,8 @@ snapshots:
lru-cache@10.4.3: {}
+ lru-cache@11.2.4: {}
+
lru-cache@5.1.1:
dependencies:
yallist: 3.1.1
@@ -20595,6 +21721,10 @@ snapshots:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
+ magic-string@0.30.19:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.5
+
make-dir@2.1.0:
dependencies:
pify: 4.0.1
@@ -20607,23 +21737,23 @@ snapshots:
make-dir@4.0.0:
dependencies:
- semver: 7.7.2
+ semver: 7.7.3
make-error@1.3.6: {}
- make-fetch-happen@14.0.3:
+ make-fetch-happen@15.0.3:
dependencies:
- '@npmcli/agent': 3.0.0
- cacache: 19.0.1
+ '@npmcli/agent': 4.0.0
+ cacache: 20.0.3
http-cache-semantics: 4.1.1
minipass: 7.1.2
- minipass-fetch: 4.0.0
+ minipass-fetch: 5.0.0
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
negotiator: 1.0.0
- proc-log: 5.0.0
+ proc-log: 6.1.0
promise-retry: 2.0.1
- ssri: 12.0.0
+ ssri: 13.0.0
transitivePeerDependencies:
- supports-color
@@ -20852,11 +21982,13 @@ snapshots:
dependencies:
fs-monkey: 1.0.6
- memfs@4.17.2:
+ memfs@4.51.1:
dependencies:
- '@jsonjoy.com/json-pack': 1.0.4(tslib@2.8.1)
- '@jsonjoy.com/util': 1.6.0(tslib@2.8.1)
- tree-dump: 1.0.2(tslib@2.8.1)
+ '@jsonjoy.com/json-pack': 1.21.0(tslib@2.8.1)
+ '@jsonjoy.com/util': 1.9.0(tslib@2.8.1)
+ glob-to-regex.js: 1.2.0(tslib@2.8.1)
+ thingies: 2.5.0(tslib@2.8.1)
+ tree-dump: 1.1.0(tslib@2.8.1)
tslib: 2.8.1
meow@12.1.1: {}
@@ -21205,20 +22337,26 @@ snapshots:
mimic-response@4.0.0: {}
- mini-css-extract-plugin@2.4.7(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ mini-css-extract-plugin@2.4.7(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
- schema-utils: 4.3.2
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ schema-utils: 4.3.3
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
mini-css-extract-plugin@2.9.2(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
schema-utils: 4.3.2
tapable: 2.2.1
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
+
+ mini-css-extract-plugin@2.9.4(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)):
+ dependencies:
+ schema-utils: 4.3.2
+ tapable: 2.2.1
+ webpack: 5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)
minimalistic-assert@1.0.1: {}
- minimatch@10.0.3:
+ minimatch@10.1.1:
dependencies:
'@isaacs/brace-expansion': 5.0.0
@@ -21248,7 +22386,7 @@ snapshots:
dependencies:
minipass: 7.1.2
- minipass-fetch@4.0.0:
+ minipass-fetch@5.0.0:
dependencies:
minipass: 7.1.2
minipass-sized: 1.0.3
@@ -21272,26 +22410,21 @@ snapshots:
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.2: {}
+
minizlib@3.0.1:
dependencies:
minipass: 7.1.2
rimraf: 5.0.9
+ minizlib@3.1.0:
+ dependencies:
+ minipass: 7.1.2
+
mkdirp@0.5.6:
dependencies:
minimist: 1.2.8
- mkdirp@1.0.4: {}
-
mkdirp@3.0.1: {}
mrmime@2.0.1: {}
@@ -21324,8 +22457,6 @@ snapshots:
dns-packet: 5.6.1
thunky: 1.1.0
- mute-stream@1.0.0: {}
-
mute-stream@2.0.0: {}
nanoid@3.3.11: {}
@@ -21348,34 +22479,34 @@ snapshots:
neo-async@2.6.2: {}
- ng-packagr@20.1.0(@angular/compiler-cli@20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3):
+ ng-packagr@21.0.1(@angular/compiler-cli@21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3))(tslib@2.6.3)(typescript@5.9.3):
dependencies:
'@ampproject/remapping': 2.3.0
- '@angular/compiler-cli': 20.1.3(@angular/compiler@20.1.3)(typescript@5.8.3)
- '@rollup/plugin-json': 6.1.0(rollup@4.40.2)
+ '@angular/compiler-cli': 21.0.6(@angular/compiler@21.0.6)(typescript@5.9.3)
+ '@rollup/plugin-json': 6.1.0(rollup@4.44.1)
'@rollup/wasm-node': 4.29.1
ajv: 8.17.1
ansi-colors: 4.1.3
- browserslist: 4.25.1
+ browserslist: 4.28.1
chokidar: 4.0.3
commander: 14.0.0
dependency-graph: 1.0.0
- esbuild: 0.25.5
+ esbuild: 0.27.2
find-cache-directory: 6.0.0
injection-js: 2.4.0
jsonc-parser: 3.3.1
less: 4.3.0
- ora: 8.2.0
+ ora: 9.0.0
piscina: 5.1.2
- postcss: 8.5.3
- rollup-plugin-dts: 6.2.1(rollup@4.40.2)(typescript@5.8.3)
+ postcss: 8.5.6
+ rollup-plugin-dts: 6.2.1(rollup@4.44.1)(typescript@5.9.3)
rxjs: 7.8.2
sass: 1.89.2
tinyglobby: 0.2.14
tslib: 2.6.3
- typescript: 5.8.3
+ typescript: 5.9.3
optionalDependencies:
- rollup: 4.40.2
+ rollup: 4.44.1
no-case@3.0.4:
dependencies:
@@ -21410,18 +22541,18 @@ snapshots:
detect-libc: 2.0.3
optional: true
- node-gyp@11.0.0:
+ node-gyp@12.1.0:
dependencies:
env-paths: 2.2.1
exponential-backoff: 3.1.1
- glob: 10.4.5
graceful-fs: 4.2.11
- make-fetch-happen: 14.0.3
- nopt: 8.0.0
- proc-log: 5.0.0
- semver: 7.7.2
- tar: 7.4.3
- which: 5.0.0
+ make-fetch-happen: 15.0.3
+ nopt: 9.0.0
+ proc-log: 6.1.0
+ semver: 7.7.3
+ tar: 7.5.2
+ tinyglobby: 0.2.15
+ which: 6.0.0
transitivePeerDependencies:
- supports-color
@@ -21433,21 +22564,17 @@ snapshots:
node-releases@2.0.19: {}
+ node-releases@2.0.27: {}
+
node-schedule@2.1.1:
dependencies:
cron-parser: 4.9.0
long-timeout: 0.1.1
sorted-array-functions: 1.3.0
- nopt@8.0.0:
- dependencies:
- abbrev: 2.0.0
-
- normalize-package-data@7.0.0:
+ nopt@9.0.0:
dependencies:
- hosted-git-info: 8.0.2
- semver: 7.7.2
- validate-npm-package-license: 3.0.4
+ abbrev: 4.0.0
normalize-path@3.0.0: {}
@@ -21459,47 +22586,42 @@ snapshots:
dependencies:
npm-normalize-package-bin: 4.0.0
- npm-install-checks@7.1.1:
+ npm-install-checks@8.0.0:
dependencies:
- semver: 7.7.2
+ semver: 7.7.3
npm-normalize-package-bin@4.0.0: {}
- npm-package-arg@11.0.1:
- dependencies:
- hosted-git-info: 7.0.2
- proc-log: 3.0.0
- semver: 7.7.2
- validate-npm-package-name: 5.0.1
+ npm-normalize-package-bin@5.0.0: {}
- npm-package-arg@12.0.2:
+ npm-package-arg@13.0.1:
dependencies:
- hosted-git-info: 8.0.2
+ hosted-git-info: 9.0.2
proc-log: 5.0.0
- semver: 7.7.2
+ semver: 7.7.3
validate-npm-package-name: 6.0.0
npm-packlist@10.0.1:
dependencies:
ignore-walk: 8.0.0
- npm-pick-manifest@10.0.0:
+ npm-pick-manifest@11.0.3:
dependencies:
- npm-install-checks: 7.1.1
- npm-normalize-package-bin: 4.0.0
- npm-package-arg: 12.0.2
- semver: 7.7.2
+ npm-install-checks: 8.0.0
+ npm-normalize-package-bin: 5.0.0
+ npm-package-arg: 13.0.1
+ semver: 7.7.3
- npm-registry-fetch@18.0.2:
+ npm-registry-fetch@19.1.1:
dependencies:
- '@npmcli/redact': 3.0.0
+ '@npmcli/redact': 4.0.0
jsonparse: 1.3.1
- make-fetch-happen: 14.0.3
+ make-fetch-happen: 15.0.3
minipass: 7.1.2
- minipass-fetch: 4.0.0
+ minipass-fetch: 5.0.0
minizlib: 3.0.1
- npm-package-arg: 12.0.2
- proc-log: 5.0.0
+ npm-package-arg: 13.0.1
+ proc-log: 6.1.0
transitivePeerDependencies:
- supports-color
@@ -21521,17 +22643,17 @@ snapshots:
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
nwsapi@2.2.21: {}
- nx@21.3.7(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)):
+ nx@22.3.1(@swc-node/register@1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3))(@swc/core@1.5.29(@swc/helpers@0.5.12)):
dependencies:
'@napi-rs/wasm-runtime': 0.2.4
'@yarnpkg/lockfile': 1.1.0
'@yarnpkg/parsers': 3.0.2
'@zkochan/js-yaml': 0.0.7
- axios: 1.10.0
+ axios: 1.13.2
chalk: 4.1.2
cli-cursor: 3.1.0
cli-spinners: 2.6.1
@@ -21542,7 +22664,7 @@ snapshots:
figures: 3.2.0
flat: 5.0.2
front-matter: 4.0.2
- ignore: 5.3.1
+ ignore: 7.0.5
jest-diff: 30.0.5
jsonc-parser: 3.2.0
lines-and-columns: 2.0.3
@@ -21552,7 +22674,7 @@ snapshots:
open: 8.4.2
ora: 5.3.0
resolve.exports: 2.0.3
- semver: 7.7.2
+ semver: 7.7.3
string-width: 4.2.3
tar-stream: 2.2.0
tmp: 0.2.3
@@ -21563,17 +22685,17 @@ snapshots:
yargs: 17.7.2
yargs-parser: 21.1.1
optionalDependencies:
- '@nx/nx-darwin-arm64': 21.3.7
- '@nx/nx-darwin-x64': 21.3.7
- '@nx/nx-freebsd-x64': 21.3.7
- '@nx/nx-linux-arm-gnueabihf': 21.3.7
- '@nx/nx-linux-arm64-gnu': 21.3.7
- '@nx/nx-linux-arm64-musl': 21.3.7
- '@nx/nx-linux-x64-gnu': 21.3.7
- '@nx/nx-linux-x64-musl': 21.3.7
- '@nx/nx-win32-arm64-msvc': 21.3.7
- '@nx/nx-win32-x64-msvc': 21.3.7
- '@swc-node/register': 1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.8.3)
+ '@nx/nx-darwin-arm64': 22.3.1
+ '@nx/nx-darwin-x64': 22.3.1
+ '@nx/nx-freebsd-x64': 22.3.1
+ '@nx/nx-linux-arm-gnueabihf': 22.3.1
+ '@nx/nx-linux-arm64-gnu': 22.3.1
+ '@nx/nx-linux-arm64-musl': 22.3.1
+ '@nx/nx-linux-x64-gnu': 22.3.1
+ '@nx/nx-linux-x64-musl': 22.3.1
+ '@nx/nx-win32-arm64-msvc': 22.3.1
+ '@nx/nx-win32-x64-msvc': 22.3.1
+ '@swc-node/register': 1.9.2(@swc/core@1.5.29(@swc/helpers@0.5.12))(@swc/types@0.1.12)(typescript@5.9.3)
'@swc/core': 1.5.29(@swc/helpers@0.5.12)
transitivePeerDependencies:
- debug
@@ -21619,14 +22741,12 @@ snapshots:
dependencies:
mimic-function: 5.0.1
- only@0.0.2: {}
-
- open@10.1.2:
+ 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:
@@ -21656,23 +22776,21 @@ snapshots:
strip-ansi: 6.0.1
wcwidth: 1.0.1
- ora@8.2.0:
+ ora@9.0.0:
dependencies:
- chalk: 5.4.1
+ chalk: 5.6.2
cli-cursor: 5.0.0
- cli-spinners: 2.9.2
+ cli-spinners: 3.3.0
is-interactive: 2.0.0
is-unicode-supported: 2.1.0
- log-symbols: 6.0.0
+ log-symbols: 7.0.1
stdin-discarder: 0.2.2
- string-width: 7.2.0
- strip-ansi: 7.1.0
+ string-width: 8.1.0
+ strip-ansi: 7.1.2
ordered-binary@1.5.3:
optional: true
- os-tmpdir@1.0.2: {}
-
p-cancelable@3.0.0: {}
p-limit@2.3.0:
@@ -21729,29 +22847,28 @@ snapshots:
got: 12.6.1
registry-auth-token: 5.1.0
registry-url: 6.0.1
- semver: 7.7.2
+ semver: 7.7.3
- pacote@21.0.0:
+ pacote@21.0.3:
dependencies:
- '@npmcli/git': 6.0.1
+ '@npmcli/git': 7.0.1
'@npmcli/installed-package-contents': 3.0.0
- '@npmcli/package-json': 6.1.0
+ '@npmcli/package-json': 7.0.4
'@npmcli/promise-spawn': 8.0.2
- '@npmcli/run-script': 9.0.2
- cacache: 19.0.1
+ '@npmcli/run-script': 10.0.3
+ cacache: 20.0.3
fs-minipass: 3.0.3
minipass: 7.1.2
- npm-package-arg: 12.0.2
+ npm-package-arg: 13.0.1
npm-packlist: 10.0.1
- npm-pick-manifest: 10.0.0
- npm-registry-fetch: 18.0.2
+ npm-pick-manifest: 11.0.3
+ npm-registry-fetch: 19.1.1
proc-log: 5.0.0
promise-retry: 2.0.1
- sigstore: 3.0.0
+ sigstore: 4.0.0
ssri: 12.0.0
- tar: 6.2.1
+ tar: 7.4.3
transitivePeerDependencies:
- - bluebird
- supports-color
param-case@3.0.4:
@@ -21775,7 +22892,7 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.27.1
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -21786,20 +22903,20 @@ snapshots:
parse-passwd@1.0.0: {}
- parse5-html-rewriting-stream@7.1.0:
+ parse5-html-rewriting-stream@8.0.0:
dependencies:
entities: 6.0.1
- parse5: 7.1.2
- parse5-sax-parser: 7.0.0
+ parse5: 8.0.0
+ parse5-sax-parser: 8.0.0
parse5-htmlparser2-tree-adapter@7.1.0:
dependencies:
domhandler: 5.0.3
parse5: 7.3.0
- parse5-sax-parser@7.0.0:
+ parse5-sax-parser@8.0.0:
dependencies:
- parse5: 7.1.2
+ parse5: 8.0.0
parse5@4.0.0: {}
@@ -21843,6 +22960,11 @@ snapshots:
lru-cache: 10.4.3
minipass: 7.1.2
+ path-scurry@2.0.1:
+ dependencies:
+ lru-cache: 11.2.4
+ minipass: 7.1.2
+
path-to-regexp@0.1.12: {}
path-to-regexp@1.9.0:
@@ -21880,6 +23002,10 @@ snapshots:
optionalDependencies:
'@napi-rs/nice': 1.0.1
+ piscina@5.1.3:
+ optionalDependencies:
+ '@napi-rs/nice': 1.1.1
+
pkce-challenge@5.0.0: {}
pkg-dir@4.2.0:
@@ -22175,12 +23301,12 @@ snapshots:
postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-import@14.1.0(postcss@8.5.3):
+ postcss-import@14.1.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.3
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
read-cache: 1.0.0
- resolve: 1.22.10
+ resolve: 1.22.11
postcss-import@16.1.0(postcss@8.4.40):
dependencies:
@@ -22207,45 +23333,45 @@ snapshots:
'@csstools/utilities': 2.0.0(postcss@8.5.6)
postcss: 8.5.6
- postcss-loader@6.2.1(postcss@8.5.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ postcss-loader@6.2.1(postcss@8.5.6)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
cosmiconfig: 7.1.0
klona: 2.0.6
- postcss: 8.5.3
- semver: 7.7.2
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ postcss: 8.5.6
+ semver: 7.7.3
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
postcss-loader@7.3.4(postcss@8.5.6)(typescript@5.6.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
cosmiconfig: 8.3.6(typescript@5.6.3)
jiti: 1.21.6
postcss: 8.5.6
- semver: 7.7.2
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ semver: 7.7.3
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
transitivePeerDependencies:
- typescript
- postcss-loader@8.1.1(@rspack/core@1.4.4(@swc/helpers@0.5.12))(postcss@8.5.3)(typescript@5.8.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ postcss-loader@8.2.0(@rspack/core@1.6.8(@swc/helpers@0.5.12))(postcss@8.5.6)(typescript@5.9.3)(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)):
dependencies:
- cosmiconfig: 9.0.0(typescript@5.8.3)
- jiti: 1.21.6
- postcss: 8.5.3
- semver: 7.7.2
+ cosmiconfig: 9.0.0(typescript@5.9.3)
+ jiti: 2.6.1
+ postcss: 8.5.6
+ semver: 7.7.3
optionalDependencies:
- '@rspack/core': 1.4.4(@swc/helpers@0.5.12)
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ '@rspack/core': 1.6.8(@swc/helpers@0.5.12)
+ webpack: 5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)
transitivePeerDependencies:
- typescript
- postcss-loader@8.1.1(@rspack/core@1.4.4(@swc/helpers@0.5.12))(postcss@8.5.6)(typescript@5.8.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ postcss-loader@8.2.0(@rspack/core@1.6.8(@swc/helpers@0.5.12))(postcss@8.5.6)(typescript@5.9.3)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
- cosmiconfig: 9.0.0(typescript@5.8.3)
- jiti: 1.21.6
+ cosmiconfig: 9.0.0(typescript@5.9.3)
+ jiti: 2.6.1
postcss: 8.5.6
- semver: 7.7.2
+ semver: 7.7.3
optionalDependencies:
- '@rspack/core': 1.4.4(@swc/helpers@0.5.12)
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ '@rspack/core': 1.6.8(@swc/helpers@0.5.12)
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
transitivePeerDependencies:
- typescript
@@ -22796,10 +23922,10 @@ snapshots:
prelude-ls@1.2.1: {}
- prettier-plugin-organize-imports@4.2.0(prettier@3.6.2)(typescript@5.8.3):
+ prettier-plugin-organize-imports@4.2.0(prettier@3.6.2)(typescript@5.9.3):
dependencies:
prettier: 3.6.2
- typescript: 5.8.3
+ typescript: 5.9.3
prettier@3.6.2: {}
@@ -22824,13 +23950,11 @@ snapshots:
prismjs@1.30.0: {}
- proc-log@3.0.0: {}
-
proc-log@5.0.0: {}
- process-nextick-args@2.0.1: {}
+ proc-log@6.1.0: {}
- promise-inflight@1.0.1: {}
+ process-nextick-args@2.0.1: {}
promise-retry@2.0.1:
dependencies:
@@ -22921,7 +24045,7 @@ snapshots:
minimist: 1.2.8
strip-json-comments: 2.0.1
- react-dev-utils@12.0.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.6.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ react-dev-utils@12.0.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.6.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
'@babel/code-frame': 7.27.1
address: 1.2.2
@@ -22932,7 +24056,7 @@ snapshots:
escape-string-regexp: 4.0.0
filesize: 8.0.7
find-up: 5.0.0
- fork-ts-checker-webpack-plugin: 6.5.3(eslint@9.17.0(jiti@1.21.6))(typescript@5.6.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ fork-ts-checker-webpack-plugin: 6.5.3(eslint@9.17.0(jiti@2.6.1))(typescript@5.6.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
global-modules: 2.0.0
globby: 11.1.0
gzip-size: 6.0.0
@@ -22947,7 +24071,7 @@ snapshots:
shell-quote: 1.8.1
strip-ansi: 6.0.1
text-table: 0.2.0
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
optionalDependencies:
typescript: 5.6.3
transitivePeerDependencies:
@@ -22976,7 +24100,7 @@ snapshots:
dependencies:
'@babel/runtime': 7.27.6
react-loadable: '@docusaurus/react-loadable@6.0.0(react@19.1.1)'
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
react-refresh@0.17.0: {}
@@ -23050,10 +24174,10 @@ snapshots:
estree-util-build-jsx: 3.0.1
vfile: 6.0.3
- recma-jsx@1.0.1(acorn@8.14.0):
+ recma-jsx@1.0.1(acorn@8.15.0):
dependencies:
- acorn: 8.14.0
- acorn-jsx: 5.3.2(acorn@8.14.0)
+ acorn: 8.15.0
+ acorn-jsx: 5.3.2(acorn@8.15.0)
estree-util-to-js: 2.0.0
recma-parse: 1.0.0
recma-stringify: 1.0.0
@@ -23244,9 +24368,15 @@ snapshots:
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
+ resolve@1.22.11:
+ dependencies:
+ is-core-module: 2.16.1
+ path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
+
resolve@1.22.8:
dependencies:
- is-core-module: 2.15.0
+ is-core-module: 2.16.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -23280,39 +24410,33 @@ snapshots:
dependencies:
glob: 10.4.5
- rollup-plugin-dts@6.2.1(rollup@4.40.2)(typescript@5.8.3):
+ rolldown@1.0.0-beta.47:
dependencies:
- magic-string: 0.30.17
- rollup: 4.40.2
- typescript: 5.8.3
+ '@oxc-project/types': 0.96.0
+ '@rolldown/pluginutils': 1.0.0-beta.47
optionalDependencies:
- '@babel/code-frame': 7.27.1
-
- rollup@4.40.2:
+ '@rolldown/binding-android-arm64': 1.0.0-beta.47
+ '@rolldown/binding-darwin-arm64': 1.0.0-beta.47
+ '@rolldown/binding-darwin-x64': 1.0.0-beta.47
+ '@rolldown/binding-freebsd-x64': 1.0.0-beta.47
+ '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.47
+ '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.47
+ '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.47
+ '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.47
+ '@rolldown/binding-linux-x64-musl': 1.0.0-beta.47
+ '@rolldown/binding-openharmony-arm64': 1.0.0-beta.47
+ '@rolldown/binding-wasm32-wasi': 1.0.0-beta.47
+ '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.47
+ '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.47
+ '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.47
+
+ rollup-plugin-dts@6.2.1(rollup@4.44.1)(typescript@5.9.3):
dependencies:
- '@types/estree': 1.0.7
+ magic-string: 0.30.17
+ rollup: 4.44.1
+ typescript: 5.9.3
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.40.2
- '@rollup/rollup-android-arm64': 4.40.2
- '@rollup/rollup-darwin-arm64': 4.40.2
- '@rollup/rollup-darwin-x64': 4.40.2
- '@rollup/rollup-freebsd-arm64': 4.40.2
- '@rollup/rollup-freebsd-x64': 4.40.2
- '@rollup/rollup-linux-arm-gnueabihf': 4.40.2
- '@rollup/rollup-linux-arm-musleabihf': 4.40.2
- '@rollup/rollup-linux-arm64-gnu': 4.40.2
- '@rollup/rollup-linux-arm64-musl': 4.40.2
- '@rollup/rollup-linux-loongarch64-gnu': 4.40.2
- '@rollup/rollup-linux-powerpc64le-gnu': 4.40.2
- '@rollup/rollup-linux-riscv64-gnu': 4.40.2
- '@rollup/rollup-linux-riscv64-musl': 4.40.2
- '@rollup/rollup-linux-s390x-gnu': 4.40.2
- '@rollup/rollup-linux-x64-gnu': 4.40.2
- '@rollup/rollup-linux-x64-musl': 4.40.2
- '@rollup/rollup-win32-arm64-msvc': 4.40.2
- '@rollup/rollup-win32-ia32-msvc': 4.40.2
- '@rollup/rollup-win32-x64-msvc': 4.40.2
- fsevents: 2.3.3
+ '@babel/code-frame': 7.27.1
rollup@4.44.1:
dependencies:
@@ -23352,8 +24476,6 @@ snapshots:
rrweb-cssom@0.8.0: {}
- rslog@1.2.9: {}
-
rtlcss@4.3.0:
dependencies:
escalade: 3.2.0
@@ -23457,14 +24579,23 @@ snapshots:
sass-embedded-win32-arm64: 1.89.2
sass-embedded-win32-x64: 1.89.2
- sass-loader@16.0.5(@rspack/core@1.4.4(@swc/helpers@0.5.12))(sass-embedded@1.89.2)(sass@1.89.2)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ sass-loader@16.0.5(@rspack/core@1.6.8(@swc/helpers@0.5.12))(sass-embedded@1.89.2)(sass@1.93.2)(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)):
dependencies:
neo-async: 2.6.2
optionalDependencies:
- '@rspack/core': 1.4.4(@swc/helpers@0.5.12)
- sass: 1.89.2
+ '@rspack/core': 1.6.8(@swc/helpers@0.5.12)
+ sass: 1.93.2
+ sass-embedded: 1.89.2
+ webpack: 5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)
+
+ sass-loader@16.0.5(@rspack/core@1.6.8(@swc/helpers@0.5.12))(sass-embedded@1.89.2)(sass@1.93.2)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ dependencies:
+ neo-async: 2.6.2
+ optionalDependencies:
+ '@rspack/core': 1.6.8(@swc/helpers@0.5.12)
+ sass: 1.93.2
sass-embedded: 1.89.2
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
sass@1.89.2:
dependencies:
@@ -23474,6 +24605,14 @@ snapshots:
optionalDependencies:
'@parcel/watcher': 2.5.0
+ sass@1.93.2:
+ dependencies:
+ chokidar: 4.0.3
+ immutable: 5.0.3
+ source-map-js: 1.2.1
+ optionalDependencies:
+ '@parcel/watcher': 2.5.0
+
sax@1.4.1: {}
saxes@6.0.0:
@@ -23501,6 +24640,13 @@ snapshots:
ajv-formats: 2.1.1(ajv@8.17.1)
ajv-keywords: 5.1.0(ajv@8.17.1)
+ 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)
+
search-insights@2.17.3: {}
section-matter@1.0.0:
@@ -23519,7 +24665,7 @@ snapshots:
semver-diff@4.0.0:
dependencies:
- semver: 7.7.2
+ semver: 7.7.3
semver@5.7.2:
optional: true
@@ -23530,6 +24676,8 @@ snapshots:
semver@7.7.2: {}
+ semver@7.7.3: {}
+
send@0.19.0:
dependencies:
debug: 2.6.9
@@ -23613,8 +24761,8 @@ snapshots:
define-data-property: 1.1.4
es-errors: 1.3.0
function-bind: 1.1.2
- get-intrinsic: 1.2.4
- gopd: 1.0.1
+ get-intrinsic: 1.3.0
+ gopd: 1.2.0
has-property-descriptors: 1.0.2
setprototypeof@1.1.0: {}
@@ -23665,7 +24813,7 @@ snapshots:
dependencies:
call-bind: 1.0.7
es-errors: 1.3.0
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.3.0
object-inspect: 1.13.2
side-channel@1.1.0:
@@ -23680,14 +24828,14 @@ snapshots:
signal-exit@4.1.0: {}
- sigstore@3.0.0:
+ sigstore@4.0.0:
dependencies:
- '@sigstore/bundle': 3.0.0
- '@sigstore/core': 2.0.0
- '@sigstore/protobuf-specs': 0.3.2
- '@sigstore/sign': 3.0.0
- '@sigstore/tuf': 3.0.0
- '@sigstore/verify': 2.0.0
+ '@sigstore/bundle': 4.0.0
+ '@sigstore/core': 3.0.0
+ '@sigstore/protobuf-specs': 0.5.0
+ '@sigstore/sign': 4.0.1
+ '@sigstore/tuf': 4.0.0
+ '@sigstore/verify': 3.0.0
transitivePeerDependencies:
- supports-color
@@ -23758,11 +24906,17 @@ snapshots:
source-map-js@1.2.1: {}
- source-map-loader@5.0.0(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ source-map-loader@5.0.0(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)):
+ dependencies:
+ iconv-lite: 0.6.3
+ source-map-js: 1.2.1
+ webpack: 5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)
+
+ source-map-loader@5.0.0(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
iconv-lite: 0.6.3
source-map-js: 1.2.1
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
source-map-support@0.5.13:
dependencies:
@@ -23783,6 +24937,8 @@ snapshots:
source-map@0.7.4: {}
+ source-map@0.7.6: {}
+
space-separated-tokens@2.0.2: {}
spdx-correct@3.2.0:
@@ -23832,6 +24988,10 @@ snapshots:
dependencies:
minipass: 7.1.2
+ ssri@13.0.0:
+ dependencies:
+ minipass: 7.1.2
+
stack-utils@2.0.6:
dependencies:
escape-string-regexp: 2.0.0
@@ -23876,8 +25036,13 @@ snapshots:
string-width@7.2.0:
dependencies:
emoji-regex: 10.3.0
- get-east-asian-width: 1.2.0
- strip-ansi: 7.1.0
+ get-east-asian-width: 1.4.0
+ strip-ansi: 7.1.2
+
+ string-width@8.1.0:
+ dependencies:
+ get-east-asian-width: 1.4.0
+ strip-ansi: 7.1.2
string_decoder@1.1.1:
dependencies:
@@ -23906,6 +25071,10 @@ snapshots:
dependencies:
ansi-regex: 6.0.1
+ strip-ansi@7.1.2:
+ dependencies:
+ ansi-regex: 6.0.1
+
strip-bom-string@1.0.0: {}
strip-bom@3.0.0: {}
@@ -23920,9 +25089,9 @@ snapshots:
strip-json-comments@3.1.1: {}
- style-loader@3.3.4(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ style-loader@3.3.4(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
style-to-js@1.1.17:
dependencies:
@@ -23950,15 +25119,11 @@ snapshots:
debug: 4.4.1
glob: 10.4.5
sax: 1.4.1
- source-map: 0.7.4
+ source-map: 0.7.6
transitivePeerDependencies:
- supports-color
optional: true
- supports-color@5.5.0:
- dependencies:
- has-flag: 3.0.0
-
supports-color@7.2.0:
dependencies:
has-flag: 4.0.0
@@ -23997,6 +25162,8 @@ snapshots:
tapable@2.2.1: {}
+ tapable@2.3.0: {}
+
tar-stream@2.2.0:
dependencies:
bl: 4.1.0
@@ -24005,15 +25172,6 @@ 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.4.3:
dependencies:
'@isaacs/fs-minipass': 4.0.1
@@ -24023,17 +25181,47 @@ snapshots:
mkdirp: 3.0.1
yallist: 5.0.0
- terser-webpack-plugin@5.3.14(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ tar@7.5.2:
+ dependencies:
+ '@isaacs/fs-minipass': 4.0.1
+ chownr: 3.0.0
+ minipass: 7.1.2
+ minizlib: 3.1.0
+ yallist: 5.0.0
+
+ terser-webpack-plugin@5.3.14(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)):
dependencies:
'@jridgewell/trace-mapping': 0.3.29
jest-worker: 27.5.1
schema-utils: 4.3.2
serialize-javascript: 6.0.2
terser: 5.43.1
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)
+ optionalDependencies:
+ '@swc/core': 1.5.29(@swc/helpers@0.5.12)
+ esbuild: 0.26.0
+
+ terser-webpack-plugin@5.3.14(@swc/core@1.5.29(@swc/helpers@0.5.12))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.29
+ jest-worker: 27.5.1
+ schema-utils: 4.3.2
+ serialize-javascript: 6.0.2
+ terser: 5.43.1
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
+ optionalDependencies:
+ '@swc/core': 1.5.29(@swc/helpers@0.5.12)
+
+ terser-webpack-plugin@5.3.16(@swc/core@1.5.29(@swc/helpers@0.5.12))(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.29
+ jest-worker: 27.5.1
+ schema-utils: 4.3.3
+ serialize-javascript: 6.0.2
+ terser: 5.44.0
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
optionalDependencies:
'@swc/core': 1.5.29(@swc/helpers@0.5.12)
- esbuild: 0.25.5
terser@5.43.1:
dependencies:
@@ -24042,6 +25230,13 @@ snapshots:
commander: 2.20.3
source-map-support: 0.5.21
+ terser@5.44.0:
+ dependencies:
+ '@jridgewell/source-map': 0.3.6
+ acorn: 8.15.0
+ commander: 2.20.3
+ source-map-support: 0.5.21
+
test-exclude@6.0.0:
dependencies:
'@istanbuljs/schema': 0.1.3
@@ -24052,7 +25247,7 @@ snapshots:
text-table@0.2.0: {}
- thingies@1.21.0(tslib@2.8.1):
+ thingies@2.5.0(tslib@2.8.1):
dependencies:
tslib: 2.8.1
@@ -24066,8 +25261,13 @@ snapshots:
tinyglobby@0.2.14:
dependencies:
- fdir: 6.4.6(picomatch@4.0.2)
- picomatch: 4.0.2
+ fdir: 6.4.6(picomatch@4.0.3)
+ picomatch: 4.0.3
+
+ tinyglobby@0.2.15:
+ dependencies:
+ fdir: 6.5.0(picomatch@4.0.3)
+ picomatch: 4.0.3
tldts-core@6.1.86: {}
@@ -24075,10 +25275,6 @@ snapshots:
dependencies:
tldts-core: 6.1.86
- tmp@0.0.33:
- dependencies:
- os-tmpdir: 1.0.2
-
tmp@0.2.3: {}
tmpl@1.0.5: {}
@@ -24101,7 +25297,7 @@ snapshots:
dependencies:
punycode: 2.3.1
- tree-dump@1.0.2(tslib@2.8.1):
+ tree-dump@1.1.0(tslib@2.8.1):
dependencies:
tslib: 2.8.1
@@ -24111,59 +25307,55 @@ snapshots:
trough@2.2.0: {}
- ts-api-utils@1.3.0(typescript@5.8.3):
- dependencies:
- typescript: 5.8.3
-
- ts-api-utils@2.1.0(typescript@5.8.3):
+ ts-api-utils@2.1.0(typescript@5.9.3):
dependencies:
- typescript: 5.8.3
+ typescript: 5.9.3
- ts-checker-rspack-plugin@1.1.4(@rspack/core@1.4.4(@swc/helpers@0.5.12))(typescript@5.8.3):
+ ts-checker-rspack-plugin@1.1.4(@rspack/core@1.6.8(@swc/helpers@0.5.12))(typescript@5.9.3):
dependencies:
'@babel/code-frame': 7.27.1
- '@rspack/lite-tapable': 1.0.1
+ '@rspack/lite-tapable': 1.1.0
chokidar: 3.6.0
is-glob: 4.0.3
- memfs: 4.17.2
+ memfs: 4.51.1
minimatch: 9.0.5
picocolors: 1.1.1
- typescript: 5.8.3
+ typescript: 5.9.3
optionalDependencies:
- '@rspack/core': 1.4.4(@swc/helpers@0.5.12)
+ '@rspack/core': 1.6.8(@swc/helpers@0.5.12)
- ts-jest@29.4.0(@babel/core@7.27.7)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.27.7))(esbuild@0.25.5)(jest-util@30.0.5)(jest@30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3)))(typescript@5.8.3):
+ ts-jest@29.4.0(@babel/core@7.28.4)(@jest/transform@30.0.5)(@jest/types@30.0.5)(babel-jest@30.0.5(@babel/core@7.28.4))(esbuild@0.25.5)(jest-util@30.0.5)(jest@30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3)))(typescript@5.9.3):
dependencies:
bs-logger: 0.2.6
ejs: 3.1.10
fast-json-stable-stringify: 2.1.0
- jest: 30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3))
+ jest: 30.0.5(@types/node@18.16.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3))
json5: 2.2.3
lodash.memoize: 4.1.2
make-error: 1.3.6
semver: 7.7.2
type-fest: 4.41.0
- typescript: 5.8.3
+ typescript: 5.9.3
yargs-parser: 21.1.1
optionalDependencies:
- '@babel/core': 7.27.7
+ '@babel/core': 7.28.4
'@jest/transform': 30.0.5
'@jest/types': 30.0.5
- babel-jest: 30.0.5(@babel/core@7.27.7)
+ babel-jest: 30.0.5(@babel/core@7.28.4)
esbuild: 0.25.5
jest-util: 30.0.5
- ts-loader@9.5.1(typescript@5.8.3)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ ts-loader@9.5.1(typescript@5.9.3)(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
chalk: 4.1.2
- enhanced-resolve: 5.17.1
+ enhanced-resolve: 5.18.4
micromatch: 4.0.8
- semver: 7.7.2
- source-map: 0.7.4
- typescript: 5.8.3
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ semver: 7.7.3
+ source-map: 0.7.6
+ typescript: 5.9.3
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
- ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.8.3):
+ ts-node@10.9.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(@types/node@18.16.9)(typescript@5.9.3):
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.11
@@ -24177,16 +25369,17 @@ snapshots:
create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
- typescript: 5.8.3
+ typescript: 5.9.3
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
optionalDependencies:
'@swc/core': 1.5.29(@swc/helpers@0.5.12)
- tsconfig-paths-webpack-plugin@4.0.0:
+ tsconfig-paths-webpack-plugin@4.2.0:
dependencies:
chalk: 4.1.2
- enhanced-resolve: 5.17.1
+ enhanced-resolve: 5.18.4
+ tapable: 2.3.0
tsconfig-paths: 4.2.0
tsconfig-paths@4.2.0:
@@ -24201,11 +25394,11 @@ snapshots:
tsscmp@1.0.6: {}
- tuf-js@3.0.1:
+ tuf-js@4.0.0:
dependencies:
- '@tufjs/models': 3.0.1
+ '@tufjs/models': 4.0.0
debug: 4.4.1
- make-fetch-happen: 14.0.3
+ make-fetch-happen: 15.0.3
transitivePeerDependencies:
- supports-color
@@ -24255,22 +25448,25 @@ snapshots:
typescript: 5.6.3
yaml: 2.7.0
- typescript-eslint@8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3):
+ typescript-eslint@8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3):
dependencies:
- '@typescript-eslint/eslint-plugin': 8.35.1(@typescript-eslint/parser@8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3))(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
- '@typescript-eslint/parser': 8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
- '@typescript-eslint/utils': 8.35.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.8.3)
- eslint: 9.17.0(jiti@1.21.6)
- typescript: 5.8.3
+ '@typescript-eslint/eslint-plugin': 8.40.0(@typescript-eslint/parser@8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/parser': 8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
+ '@typescript-eslint/typescript-estree': 8.40.0(typescript@5.9.3)
+ '@typescript-eslint/utils': 8.40.0(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3)
+ eslint: 9.17.0(jiti@2.6.1)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
typescript@5.6.3: {}
- typescript@5.8.3: {}
+ typescript@5.9.3: {}
uc.micro@2.1.0: {}
+ undici@7.16.0: {}
+
unicode-canonical-property-names-ecmascript@2.0.0: {}
unicode-emoji-modifier-base@1.0.0: {}
@@ -24298,13 +25494,13 @@ snapshots:
union@0.5.0:
dependencies:
- qs: 6.13.0
+ qs: 6.14.0
- unique-filename@4.0.0:
+ unique-filename@5.0.0:
dependencies:
- unique-slug: 5.0.0
+ unique-slug: 6.0.0
- unique-slug@5.0.0:
+ unique-slug@6.0.0:
dependencies:
imurmurhash: 0.1.4
@@ -24383,10 +25579,16 @@ snapshots:
escalade: 3.2.0
picocolors: 1.1.1
+ update-browserslist-db@1.2.3(browserslist@4.28.1):
+ dependencies:
+ browserslist: 4.28.1
+ escalade: 3.2.0
+ picocolors: 1.1.1
+
update-notifier@6.0.2:
dependencies:
boxen: 7.1.1
- chalk: 5.4.1
+ chalk: 5.6.2
configstore: 6.0.0
has-yarn: 3.0.0
import-lazy: 4.0.0
@@ -24396,7 +25598,7 @@ snapshots:
is-yarn-global: 0.4.1
latest-version: 7.0.0
pupa: 3.1.0
- semver: 7.7.2
+ semver: 7.7.3
semver-diff: 4.0.0
xdg-basedir: 5.1.0
@@ -24406,14 +25608,14 @@ snapshots:
url-join@4.0.1: {}
- url-loader@4.1.1(file-loader@6.2.0(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ url-loader@4.1.1(file-loader@6.2.0(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
loader-utils: 2.0.4
mime-types: 2.1.35
schema-utils: 3.3.0
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
optionalDependencies:
- file-loader: 6.2.0(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ file-loader: 6.2.0(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
util-deprecate@1.0.2: {}
@@ -24438,8 +25640,6 @@ snapshots:
spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
- validate-npm-package-name@5.0.1: {}
-
validate-npm-package-name@6.0.0: {}
value-equal@1.0.1: {}
@@ -24463,23 +25663,23 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.3
- vite@7.0.6(@types/node@18.16.9)(jiti@1.21.6)(less@4.3.0)(sass-embedded@1.89.2)(sass@1.89.2)(stylus@0.64.0)(terser@5.43.1)(yaml@2.7.0):
+ vite@7.2.2(@types/node@18.16.9)(jiti@2.6.1)(less@4.4.2)(sass-embedded@1.89.2)(sass@1.93.2)(stylus@0.64.0)(terser@5.44.0)(yaml@2.7.0):
dependencies:
esbuild: 0.25.5
- fdir: 6.4.6(picomatch@4.0.3)
+ fdir: 6.5.0(picomatch@4.0.3)
picomatch: 4.0.3
postcss: 8.5.6
rollup: 4.44.1
- tinyglobby: 0.2.14
+ tinyglobby: 0.2.15
optionalDependencies:
'@types/node': 18.16.9
fsevents: 2.3.3
- jiti: 1.21.6
- less: 4.3.0
- sass: 1.89.2
+ jiti: 2.6.1
+ less: 4.4.2
+ sass: 1.93.2
sass-embedded: 1.89.2
stylus: 0.64.0
- terser: 5.43.1
+ terser: 5.44.0
yaml: 2.7.0
w3c-xmlserializer@5.0.0:
@@ -24542,18 +25742,29 @@ snapshots:
mime-types: 2.1.35
range-parser: 1.2.1
schema-utils: 4.3.2
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
- webpack-dev-middleware@7.4.2(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ webpack-dev-middleware@7.4.5(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)):
dependencies:
colorette: 2.0.20
- memfs: 4.17.2
- mime-types: 2.1.35
+ memfs: 4.51.1
+ mime-types: 3.0.1
+ on-finished: 2.4.1
+ range-parser: 1.2.1
+ schema-utils: 4.3.2
+ optionalDependencies:
+ webpack: 5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)
+
+ webpack-dev-middleware@7.4.5(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ dependencies:
+ colorette: 2.0.20
+ memfs: 4.51.1
+ mime-types: 3.0.1
on-finished: 2.4.1
range-parser: 1.2.1
schema-utils: 4.3.2
optionalDependencies:
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
webpack-dev-server@4.15.2(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
@@ -24588,14 +25799,14 @@ snapshots:
webpack-dev-middleware: 5.3.4(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
ws: 8.18.0
optionalDependencies:
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
transitivePeerDependencies:
- bufferutil
- debug
- supports-color
- utf-8-validate
- webpack-dev-server@5.2.2(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ webpack-dev-server@5.2.2(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
'@types/bonjour': 3.5.13
'@types/connect-history-api-fallback': 1.5.4
@@ -24616,17 +25827,17 @@ snapshots:
http-proxy-middleware: 2.0.9(@types/express@4.17.21)
ipaddr.js: 2.2.0
launch-editor: 2.8.0
- open: 10.1.2
+ open: 10.2.0
p-retry: 6.2.0
schema-utils: 4.3.2
selfsigned: 2.4.1
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack-dev-middleware: 7.4.2(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ webpack-dev-middleware: 7.4.5(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
ws: 8.18.0
optionalDependencies:
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
transitivePeerDependencies:
- bufferutil
- debug
@@ -24649,14 +25860,87 @@ snapshots:
webpack-sources@3.2.3: {}
- webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.3(@rspack/core@1.4.4(@swc/helpers@0.5.12))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))):
+ webpack-sources@3.3.3: {}
+
+ webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.3(@rspack/core@1.6.8(@swc/helpers@0.5.12))(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))))(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)):
+ dependencies:
+ typed-assert: 1.0.9
+ webpack: 5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)
+ optionalDependencies:
+ html-webpack-plugin: 5.6.3(@rspack/core@1.6.8(@swc/helpers@0.5.12))(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+
+ webpack-subresource-integrity@5.1.0(html-webpack-plugin@5.6.3(@rspack/core@1.6.8(@swc/helpers@0.5.12))(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))))(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))):
dependencies:
typed-assert: 1.0.9
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12))
optionalDependencies:
- html-webpack-plugin: 5.6.3(@rspack/core@1.4.4(@swc/helpers@0.5.12))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ html-webpack-plugin: 5.6.3(@rspack/core@1.6.8(@swc/helpers@0.5.12))(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+
+ webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0):
+ dependencies:
+ '@types/eslint-scope': 3.7.7
+ '@types/estree': 1.0.8
+ '@types/json-schema': 7.0.15
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/wasm-edit': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
+ acorn: 8.15.0
+ acorn-import-phases: 1.0.4(acorn@8.15.0)
+ browserslist: 4.28.1
+ chrome-trace-event: 1.0.4
+ enhanced-resolve: 5.18.4
+ es-module-lexer: 1.5.4
+ eslint-scope: 5.1.1
+ events: 3.3.0
+ glob-to-regexp: 0.4.1
+ graceful-fs: 4.2.11
+ json-parse-even-better-errors: 2.3.1
+ loader-runner: 4.3.0
+ mime-types: 2.1.35
+ neo-async: 2.6.2
+ schema-utils: 4.3.3
+ tapable: 2.3.0
+ terser-webpack-plugin: 5.3.14(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0)(webpack@5.102.1(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.26.0))
+ watchpack: 2.4.4
+ webpack-sources: 3.3.3
+ transitivePeerDependencies:
+ - '@swc/core'
+ - esbuild
+ - uglify-js
+
+ webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)):
+ dependencies:
+ '@types/eslint-scope': 3.7.7
+ '@types/estree': 1.0.8
+ '@types/json-schema': 7.0.15
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/wasm-edit': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
+ acorn: 8.15.0
+ acorn-import-phases: 1.0.4(acorn@8.15.0)
+ browserslist: 4.28.1
+ chrome-trace-event: 1.0.4
+ enhanced-resolve: 5.18.4
+ es-module-lexer: 2.0.0
+ eslint-scope: 5.1.1
+ events: 3.3.0
+ glob-to-regexp: 0.4.1
+ graceful-fs: 4.2.11
+ json-parse-even-better-errors: 2.3.1
+ loader-runner: 4.3.1
+ mime-types: 2.1.35
+ neo-async: 2.6.2
+ schema-utils: 4.3.3
+ tapable: 2.3.0
+ terser-webpack-plugin: 5.3.16(@swc/core@1.5.29(@swc/helpers@0.5.12))(webpack@5.104.0(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ watchpack: 2.4.4
+ webpack-sources: 3.3.3
+ transitivePeerDependencies:
+ - '@swc/core'
+ - esbuild
+ - uglify-js
- webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5):
+ webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)):
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.7
@@ -24679,7 +25963,7 @@ snapshots:
neo-async: 2.6.2
schema-utils: 4.3.2
tapable: 2.2.1
- terser-webpack-plugin: 5.3.14(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
+ terser-webpack-plugin: 5.3.14(@swc/core@1.5.29(@swc/helpers@0.5.12))(webpack@5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12)))
watchpack: 2.4.2
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -24696,7 +25980,7 @@ snapshots:
markdown-table: 2.0.0
pretty-time: 1.1.0
std-env: 3.9.0
- webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))(esbuild@0.25.5)
+ webpack: 5.99.9(@swc/core@1.5.29(@swc/helpers@0.5.12))
wrap-ansi: 7.0.0
websocket-driver@0.7.4:
@@ -24739,6 +26023,10 @@ snapshots:
dependencies:
isexe: 3.1.1
+ which@6.0.0:
+ dependencies:
+ isexe: 3.1.1
+
widest-line@4.0.1:
dependencies:
string-width: 5.1.2
@@ -24769,7 +26057,7 @@ snapshots:
dependencies:
ansi-styles: 6.2.1
string-width: 7.2.0
- strip-ansi: 7.1.0
+ strip-ansi: 7.1.2
wrappy@1.0.2: {}
@@ -24789,6 +26077,10 @@ snapshots:
ws@8.18.0: {}
+ wsl-utils@0.1.0:
+ dependencies:
+ is-wsl: 3.1.0
+
xdg-basedir@5.1.0: {}
xml-js@1.6.11:
@@ -24840,22 +26132,22 @@ snapshots:
y18n: 5.0.8
yargs-parser: 22.0.0
- ylru@1.4.0: {}
-
yn@3.1.1: {}
yocto-queue@0.1.0: {}
yocto-queue@1.1.1: {}
- yoctocolors-cjs@2.1.2: {}
+ yoctocolors-cjs@2.1.3: {}
+
+ yoctocolors@2.1.2: {}
- zod-to-json-schema@3.24.6(zod@3.25.75):
+ zod-to-json-schema@3.25.0(zod@4.1.13):
dependencies:
- zod: 3.25.75
+ zod: 4.1.13
- zod@3.25.75: {}
+ zod@4.1.13: {}
- zone.js@0.15.0: {}
+ zone.js@0.16.0: {}
zwitch@2.0.4: {}