+}
diff --git a/apps/examples/src/app/loading-state-components/error/error.component.ts b/apps/examples/src/app/loading-state-components/error/error.component.ts
index c2d7560..dd8baac 100644
--- a/apps/examples/src/app/loading-state-components/error/error.component.ts
+++ b/apps/examples/src/app/loading-state-components/error/error.component.ts
@@ -6,10 +6,9 @@ import {
Output,
} from '@angular/core';
import { HttpErrorResponse } from '@angular/common/http';
-import { NgIf } from '@angular/common';
@Component({
- imports: [NgIf],
+ imports: [],
selector: 'examples-error',
templateUrl: './error.component.html',
styleUrls: ['./error.component.css'],
diff --git a/apps/examples/src/app/loading-state-components/spinner/spinner.component.html b/apps/examples/src/app/loading-state-components/spinner/spinner.component.html
index 9f7d0ab..1c50818 100644
--- a/apps/examples/src/app/loading-state-components/spinner/spinner.component.html
+++ b/apps/examples/src/app/loading-state-components/spinner/spinner.component.html
@@ -1,4 +1,6 @@
-
+@if (loading) {
+
+}
diff --git a/apps/examples/src/app/loading-state-components/spinner/spinner.component.ts b/apps/examples/src/app/loading-state-components/spinner/spinner.component.ts
index 6151880..16a4a85 100644
--- a/apps/examples/src/app/loading-state-components/spinner/spinner.component.ts
+++ b/apps/examples/src/app/loading-state-components/spinner/spinner.component.ts
@@ -1,8 +1,7 @@
import { Component, ChangeDetectionStrategy, Input } from '@angular/core';
-import { NgIf } from '@angular/common';
@Component({
- imports: [NgIf],
+ imports: [],
selector: 'examples-spinner',
templateUrl: './spinner.component.html',
styleUrls: ['./spinner.component.css'],
diff --git a/apps/examples/src/app/multiple-data-sources/beer-list/beer-list.component.html b/apps/examples/src/app/multiple-data-sources/beer-list/beer-list.component.html
index 34bc6ef..1acbfef 100644
--- a/apps/examples/src/app/multiple-data-sources/beer-list/beer-list.component.html
+++ b/apps/examples/src/app/multiple-data-sources/beer-list/beer-list.component.html
@@ -1,20 +1,20 @@
-
-
-
-
- | Name |
- Description |
-
-
-
-
- | {{ beer.name }} |
- {{ beer.description }} |
-
-
-
-
-
-
- No beers found
-
+@if (beers.length) {
+
+
+
+ | Name |
+ Description |
+
+
+
+ @for (beer of beers; track beer) {
+
+ | {{ beer.name }} |
+ {{ beer.description }} |
+
+ }
+
+
+} @else {
+
No beers found
+}
diff --git a/apps/examples/src/app/multiple-data-sources/beer-list/beer-list.component.ts b/apps/examples/src/app/multiple-data-sources/beer-list/beer-list.component.ts
index df7edac..fb298e7 100644
--- a/apps/examples/src/app/multiple-data-sources/beer-list/beer-list.component.ts
+++ b/apps/examples/src/app/multiple-data-sources/beer-list/beer-list.component.ts
@@ -1,10 +1,10 @@
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
-import { NgIf, NgForOf } from '@angular/common';
+
import { Beer } from '../model/brews';
@Component({
selector: 'examples-beer-list',
- imports: [NgIf, NgForOf],
+ imports: [],
templateUrl: './beer-list.component.html',
styleUrls: ['./beer-list.component.css'],
changeDetection: ChangeDetectionStrategy.OnPush,
diff --git a/apps/examples/src/app/multiple-data-sources/container/multiple-sources-container.component.html b/apps/examples/src/app/multiple-data-sources/container/multiple-sources-container.component.html
index 5573d50..68f7f7d 100644
--- a/apps/examples/src/app/multiple-data-sources/container/multiple-sources-container.component.html
+++ b/apps/examples/src/app/multiple-data-sources/container/multiple-sources-container.component.html
@@ -1,4 +1,4 @@
diff --git a/apps/examples/src/app/multiple-data-sources/layout/multiple-sources-layout.component.html b/apps/examples/src/app/multiple-data-sources/layout/multiple-sources-layout.component.html
index 1aee388..2fb505d 100644
--- a/apps/examples/src/app/multiple-data-sources/layout/multiple-sources-layout.component.html
+++ b/apps/examples/src/app/multiple-data-sources/layout/multiple-sources-layout.component.html
@@ -3,20 +3,25 @@
Split beers by brew date
-
-
-
-
-
+@if (beers?.isLoading) {
+
+} @if (beers?.error; as error) {
+
+} @if (beers?.value; as results) {
+
Brewed before {{ results.month }}-{{ results.year }}
@@ -26,3 +31,4 @@ Brewed after {{ results.month }}-{{ results.year }}
+}
diff --git a/apps/examples/src/app/multiple-data-sources/layout/multiple-sources-layout.component.ts b/apps/examples/src/app/multiple-data-sources/layout/multiple-sources-layout.component.ts
index 5f1c7e8..b08437c 100644
--- a/apps/examples/src/app/multiple-data-sources/layout/multiple-sources-layout.component.ts
+++ b/apps/examples/src/app/multiple-data-sources/layout/multiple-sources-layout.component.ts
@@ -6,7 +6,7 @@ import {
Input,
Output,
} from '@angular/core';
-import { NgForOf, NgIf } from '@angular/common';
+
import { BrewDateForm } from '../model/form';
import { NonNullableFormBuilder, ReactiveFormsModule } from '@angular/forms';
import { HttpRequestState } from 'ngx-http-request-state';
@@ -28,10 +28,8 @@ const YEARS: string[] = Array(13)
@Component({
selector: 'examples-multiple-sources-layout',
imports: [
- NgForOf,
ReactiveFormsModule,
SpinnerComponent,
- NgIf,
ErrorComponent,
BeerListComponent,
],
@@ -44,7 +42,7 @@ export class MultipleSourcesLayoutComponent {
beers: HttpRequestState
| null = null;
@Output()
- readonly search = new EventEmitter();
+ readonly searchBrews = new EventEmitter();
readonly months = MONTHS;
readonly years = YEARS;
@@ -55,6 +53,6 @@ export class MultipleSourcesLayoutComponent {
});
onSubmit() {
- this.search.emit(this.form.value as BrewDateForm);
+ this.searchBrews.emit(this.form.value as BrewDateForm);
}
}
diff --git a/apps/examples/src/test-setup.ts b/apps/examples/src/test-setup.ts
index ab1eeeb..434a70b 100644
--- a/apps/examples/src/test-setup.ts
+++ b/apps/examples/src/test-setup.ts
@@ -1,8 +1,6 @@
-// @ts-expect-error https://thymikee.github.io/jest-preset-angular/docs/getting-started/test-environment
-globalThis.ngJest = {
- testEnvironmentOptions: {
- errorOnUnknownElements: true,
- errorOnUnknownProperties: true,
- },
-};
-import 'jest-preset-angular/setup-jest';
+import { setupZonelessTestEnv } from 'jest-preset-angular/setup-env/zoneless';
+
+setupZonelessTestEnv({
+ errorOnUnknownElements: true,
+ errorOnUnknownProperties: true,
+});
diff --git a/apps/examples/tsconfig.app.json b/apps/examples/tsconfig.app.json
index fff4a41..9e23a42 100644
--- a/apps/examples/tsconfig.app.json
+++ b/apps/examples/tsconfig.app.json
@@ -2,7 +2,8 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../dist/out-tsc",
- "types": []
+ "types": [],
+ "moduleResolution": "bundler"
},
"files": ["src/main.ts"],
"include": ["src/**/*.d.ts"],
diff --git a/libs/ngx-http-request-state/README.md b/libs/ngx-http-request-state/README.md
index 5865584..42f2b0c 100644
--- a/libs/ngx-http-request-state/README.md
+++ b/libs/ngx-http-request-state/README.md
@@ -12,6 +12,7 @@ support its development:
## Versions
+Version `^3.6.0` supports Angular 14 - 20.
Version `^3.5.0` supports Angular 14 - 19.
Version `^3.2.0` supports Angular 14 - 18.
Version `^3.1.0` supports Angular 14 - 17.
diff --git a/libs/ngx-http-request-state/package.json b/libs/ngx-http-request-state/package.json
index d39df55..e9dc8d0 100644
--- a/libs/ngx-http-request-state/package.json
+++ b/libs/ngx-http-request-state/package.json
@@ -9,10 +9,10 @@
"loading",
"error"
],
- "version": "3.5.0",
+ "version": "3.6.0",
"peerDependencies": {
"rxjs": "^6.2.0 || ^7.4.0",
- "@angular/common": "^14.2.10 || ^15.0.1 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
+ "@angular/common": "^14.2.10 || ^15.0.1 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0"
},
"dependencies": {
"tslib": "^2.3.0"
diff --git a/libs/ngx-http-request-state/src/test-setup.ts b/libs/ngx-http-request-state/src/test-setup.ts
index ab1eeeb..434a70b 100644
--- a/libs/ngx-http-request-state/src/test-setup.ts
+++ b/libs/ngx-http-request-state/src/test-setup.ts
@@ -1,8 +1,6 @@
-// @ts-expect-error https://thymikee.github.io/jest-preset-angular/docs/getting-started/test-environment
-globalThis.ngJest = {
- testEnvironmentOptions: {
- errorOnUnknownElements: true,
- errorOnUnknownProperties: true,
- },
-};
-import 'jest-preset-angular/setup-jest';
+import { setupZonelessTestEnv } from 'jest-preset-angular/setup-env/zoneless';
+
+setupZonelessTestEnv({
+ errorOnUnknownElements: true,
+ errorOnUnknownProperties: true,
+});
diff --git a/nx.json b/nx.json
index ef77443..6e7c0d7 100644
--- a/nx.json
+++ b/nx.json
@@ -13,7 +13,59 @@
},
"@nx/angular:component": {
"style": "css",
- "changeDetection": "OnPush"
+ "changeDetection": "OnPush",
+ "type": "component"
+ },
+ "@schematics/angular:component": {
+ "type": "component"
+ },
+ "@nx/angular:directive": {
+ "type": "directive"
+ },
+ "@schematics/angular:directive": {
+ "type": "directive"
+ },
+ "@nx/angular:service": {
+ "type": "service"
+ },
+ "@schematics/angular:service": {
+ "type": "service"
+ },
+ "@nx/angular:scam": {
+ "type": "component"
+ },
+ "@nx/angular:scam-directive": {
+ "type": "directive"
+ },
+ "@nx/angular:guard": {
+ "typeSeparator": "."
+ },
+ "@schematics/angular:guard": {
+ "typeSeparator": "."
+ },
+ "@nx/angular:interceptor": {
+ "typeSeparator": "."
+ },
+ "@schematics/angular:interceptor": {
+ "typeSeparator": "."
+ },
+ "@nx/angular:module": {
+ "typeSeparator": "."
+ },
+ "@schematics/angular:module": {
+ "typeSeparator": "."
+ },
+ "@nx/angular:pipe": {
+ "typeSeparator": "."
+ },
+ "@schematics/angular:pipe": {
+ "typeSeparator": "."
+ },
+ "@nx/angular:resolver": {
+ "typeSeparator": "."
+ },
+ "@schematics/angular:resolver": {
+ "typeSeparator": "."
}
},
"targetDefaults": {
@@ -61,6 +113,5 @@
"sharedGlobals": []
},
"useInferencePlugins": false,
- "defaultBase": "origin/main",
- "useLegacyCache": true
+ "defaultBase": "origin/main"
}
diff --git a/package.json b/package.json
index 5ce3c48..fbf61ad 100644
--- a/package.json
+++ b/package.json
@@ -14,52 +14,52 @@
},
"private": true,
"dependencies": {
- "@angular/animations": "19.0.3",
- "@angular/common": "19.0.3",
- "@angular/compiler": "19.0.3",
- "@angular/core": "19.0.3",
- "@angular/forms": "19.0.3",
- "@angular/platform-browser": "19.0.3",
- "@angular/platform-browser-dynamic": "19.0.3",
- "@angular/router": "19.0.3",
- "@nx/angular": "20.2.1",
+ "@angular/animations": "20.0.6",
+ "@angular/common": "20.0.6",
+ "@angular/compiler": "20.0.6",
+ "@angular/core": "20.0.6",
+ "@angular/forms": "20.0.6",
+ "@angular/platform-browser": "20.0.6",
+ "@angular/platform-browser-dynamic": "20.0.6",
+ "@angular/router": "20.0.6",
+ "@nx/angular": "21.2.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
- "@angular-devkit/build-angular": "19.0.4",
- "@angular-devkit/core": "19.0.4",
- "@angular-devkit/schematics": "19.0.4",
- "@angular-eslint/eslint-plugin": "19.0.1",
- "@angular-eslint/eslint-plugin-template": "19.0.1",
- "@angular-eslint/template-parser": "19.0.1",
- "@angular/cli": "~19.0.0",
- "@angular/compiler-cli": "19.0.3",
- "@angular/language-service": "19.0.3",
- "@nx/cypress": "20.2.1",
- "@nx/eslint": "20.2.1",
- "@nx/eslint-plugin": "20.2.1",
- "@nx/jest": "20.2.1",
- "@nx/js": "20.2.1",
- "@nx/web": "20.2.1",
- "@nx/workspace": "20.2.1",
- "@schematics/angular": "19.0.4",
+ "@angular-devkit/build-angular": "20.0.5",
+ "@angular-devkit/core": "20.0.5",
+ "@angular-devkit/schematics": "20.0.5",
+ "@angular-eslint/eslint-plugin": "20.1.1",
+ "@angular-eslint/eslint-plugin-template": "20.1.1",
+ "@angular-eslint/template-parser": "20.1.1",
+ "@angular/cli": "~20.0.0",
+ "@angular/compiler-cli": "20.0.6",
+ "@angular/language-service": "20.0.6",
+ "@nx/cypress": "21.2.2",
+ "@nx/eslint": "21.2.2",
+ "@nx/eslint-plugin": "21.2.2",
+ "@nx/jest": "21.2.2",
+ "@nx/js": "21.2.2",
+ "@nx/web": "21.2.2",
+ "@nx/workspace": "21.2.2",
+ "@schematics/angular": "20.0.5",
"@types/jest": "29.5.14",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@typescript-eslint/utils": "^7.16.0",
"autoprefixer": "^10.4.0",
- "cypress": "13.13.2",
+ "cypress": "14.5.1",
"eslint": "8.57.0",
- "eslint-config-prettier": "9.1.0",
+ "eslint-config-prettier": "10.1.5",
"eslint-plugin-cypress": "2.15.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-marbles": "^3.0.3",
- "jest-preset-angular": "14.4.2",
- "ng-packagr": "19.0.1",
- "nx": "20.2.1",
+ "jest-preset-angular": "14.6.0",
+ "ng-packagr": "20.0.1",
+ "nx": "21.2.2",
"postcss": "^8.4.5",
"postcss-import": "~14.1.0",
"postcss-preset-env": "~7.5.0",
@@ -67,7 +67,7 @@
"prettier": "^2.6.2",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
- "typescript": "5.6.3"
+ "typescript": "5.8.3"
},
"packageManager": "pnpm@9.4.0+sha1.9217c800d4ab947a7aee520242a7b70d64fc7638"
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index f9a09ae..b382aff 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -8,32 +8,32 @@ importers:
.:
dependencies:
'@angular/animations':
- specifier: 19.0.3
- version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))
+ specifier: 20.0.6
+ version: 20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))
'@angular/common':
- specifier: 19.0.3
- version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1)
+ specifier: 20.0.6
+ version: 20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1)
'@angular/compiler':
- specifier: 19.0.3
- version: 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))
+ specifier: 20.0.6
+ version: 20.0.6
'@angular/core':
- specifier: 19.0.3
- version: 19.0.3(rxjs@7.8.1)(zone.js@0.14.10)
+ specifier: 20.0.6
+ version: 20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)
'@angular/forms':
- specifier: 19.0.3
- version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(rxjs@7.8.1)
+ specifier: 20.0.6
+ version: 20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(@angular/platform-browser@20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(rxjs@7.8.1)
'@angular/platform-browser':
- specifier: 19.0.3
- version: 19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))
+ specifier: 20.0.6
+ version: 20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))
'@angular/platform-browser-dynamic':
- specifier: 19.0.3
- version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))
+ specifier: 20.0.6
+ version: 20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/compiler@20.0.6)(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(@angular/platform-browser@20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))
'@angular/router':
- specifier: 19.0.3
- version: 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(rxjs@7.8.1)
+ specifier: 20.0.6
+ version: 20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(@angular/platform-browser@20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(rxjs@7.8.1)
'@nx/angular':
- specifier: 20.2.1
- version: 20.2.1(flbrlfta5kdvjegznppuhm67ga)
+ specifier: 21.2.2
+ version: 21.2.2(6ql3hrwkfgtta4ewsed2ppwa3m)
rxjs:
specifier: ~7.8.0
version: 7.8.1
@@ -42,56 +42,56 @@ importers:
version: 2.6.3
devDependencies:
'@angular-devkit/build-angular':
- specifier: 19.0.4
- version: 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@rspack/core@1.1.5)(@types/node@20.14.15)(chokidar@4.0.1)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3)))(ng-packagr@19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3))(tslib@2.6.3)(typescript@5.6.3))(stylus@0.64.0)(typescript@5.6.3)(vite@5.4.11(@types/node@20.14.15)(less@4.2.0)(sass@1.80.7)(stylus@0.64.0)(terser@5.36.0))
+ specifier: 20.0.5
+ version: 20.0.5(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(@angular/compiler@20.0.6)(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(@angular/platform-browser@20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@types/node@20.14.15)(chokidar@4.0.1)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3)))(jiti@1.21.6)(ng-packagr@20.0.1(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3))(sass-embedded@1.89.2)(stylus@0.64.0)(typescript@5.8.3)(yaml@2.6.1)
'@angular-devkit/core':
- specifier: 19.0.4
- version: 19.0.4(chokidar@4.0.1)
+ specifier: 20.0.5
+ version: 20.0.5(chokidar@4.0.1)
'@angular-devkit/schematics':
- specifier: 19.0.4
- version: 19.0.4(chokidar@4.0.1)
+ specifier: 20.0.5
+ version: 20.0.5(chokidar@4.0.1)
'@angular-eslint/eslint-plugin':
- specifier: 19.0.1
- version: 19.0.1(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)
+ specifier: 20.1.1
+ version: 20.1.1(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.8.3))(eslint@8.57.0)(typescript@5.8.3)
'@angular-eslint/eslint-plugin-template':
- specifier: 19.0.1
- version: 19.0.1(@typescript-eslint/types@8.16.0)(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)
+ specifier: 20.1.1
+ version: 20.1.1(@angular-eslint/template-parser@20.1.1(eslint@8.57.0)(typescript@5.8.3))(@typescript-eslint/types@8.16.0)(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.8.3))(eslint@8.57.0)(typescript@5.8.3)
'@angular-eslint/template-parser':
- specifier: 19.0.1
- version: 19.0.1(eslint@8.57.0)(typescript@5.6.3)
+ specifier: 20.1.1
+ version: 20.1.1(eslint@8.57.0)(typescript@5.8.3)
'@angular/cli':
- specifier: ~19.0.0
- version: 19.0.4(@types/node@20.14.15)(chokidar@4.0.1)
+ specifier: ~20.0.0
+ version: 20.0.5(@types/node@20.14.15)(chokidar@4.0.1)
'@angular/compiler-cli':
- specifier: 19.0.3
- version: 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3)
+ specifier: 20.0.6
+ version: 20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3)
'@angular/language-service':
- specifier: 19.0.3
- version: 19.0.3
+ specifier: 20.0.6
+ version: 20.0.6
'@nx/cypress':
- specifier: 20.2.1
- version: 20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(@zkochan/js-yaml@0.0.7)(cypress@13.13.2)(eslint@8.57.0)(nx@20.2.1)(typescript@5.6.3)
+ specifier: 21.2.2
+ version: 21.2.2(@babel/traverse@7.28.0)(@zkochan/js-yaml@0.0.7)(cypress@14.5.1)(eslint@8.57.0)(nx@21.2.2)(typescript@5.8.3)
'@nx/eslint':
- specifier: 20.2.1
- version: 20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@20.2.1)
+ specifier: 21.2.2
+ version: 21.2.2(@babel/traverse@7.28.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@21.2.2)
'@nx/eslint-plugin':
- specifier: 20.2.1
- version: 20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@20.2.1)(typescript@5.6.3)
+ specifier: 21.2.2
+ version: 21.2.2(@babel/traverse@7.28.0)(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.8.3))(eslint-config-prettier@10.1.5(eslint@8.57.0))(eslint@8.57.0)(nx@21.2.2)(typescript@5.8.3)
'@nx/jest':
- specifier: 20.2.1
- version: 20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(nx@20.2.1)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3))(typescript@5.6.3)
+ specifier: 21.2.2
+ version: 21.2.2(@babel/traverse@7.28.0)(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(nx@21.2.2)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3))(typescript@5.8.3)
'@nx/js':
- specifier: 20.2.1
- version: 20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(nx@20.2.1)(typescript@5.6.3)
+ specifier: 21.2.2
+ version: 21.2.2(@babel/traverse@7.28.0)(nx@21.2.2)
'@nx/web':
- specifier: 20.2.1
- version: 20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(nx@20.2.1)(typescript@5.6.3)
+ specifier: 21.2.2
+ version: 21.2.2(@babel/traverse@7.28.0)(nx@21.2.2)
'@nx/workspace':
- specifier: 20.2.1
- version: 20.2.1
+ specifier: 21.2.2
+ version: 21.2.2
'@schematics/angular':
- specifier: 19.0.4
- version: 19.0.4(chokidar@4.0.1)
+ specifier: 20.0.5
+ version: 20.0.5(chokidar@4.0.1)
'@types/jest':
specifier: 29.5.14
version: 29.5.14
@@ -100,31 +100,31 @@ importers:
version: 20.14.15
'@typescript-eslint/eslint-plugin':
specifier: 7.18.0
- version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)
+ version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.8.3))(eslint@8.57.0)(typescript@5.8.3)
'@typescript-eslint/parser':
specifier: 7.18.0
- version: 7.18.0(eslint@8.57.0)(typescript@5.6.3)
+ version: 7.18.0(eslint@8.57.0)(typescript@5.8.3)
'@typescript-eslint/utils':
specifier: ^7.16.0
- version: 7.18.0(eslint@8.57.0)(typescript@5.6.3)
+ version: 7.18.0(eslint@8.57.0)(typescript@5.8.3)
autoprefixer:
specifier: ^10.4.0
version: 10.4.20(postcss@8.4.41)
cypress:
- specifier: 13.13.2
- version: 13.13.2
+ specifier: 14.5.1
+ version: 14.5.1
eslint:
specifier: 8.57.0
version: 8.57.0
eslint-config-prettier:
- specifier: 9.1.0
- version: 9.1.0(eslint@8.57.0)
+ specifier: 10.1.5
+ version: 10.1.5(eslint@8.57.0)
eslint-plugin-cypress:
specifier: 2.15.1
version: 2.15.1(eslint@8.57.0)
jest:
specifier: 29.7.0
- version: 29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3))
+ version: 29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3))
jest-environment-jsdom:
specifier: 29.7.0
version: 29.7.0
@@ -132,14 +132,14 @@ importers:
specifier: ^3.0.3
version: 3.1.0(rxjs@7.8.1)
jest-preset-angular:
- specifier: 14.4.2
- version: 14.4.2(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser-dynamic@19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))))(@babel/core@7.25.2)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.2))(jest@29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3)))(typescript@5.6.3)
+ specifier: 14.6.0
+ version: 14.6.0(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(@angular/platform-browser-dynamic@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/compiler@20.0.6)(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(@angular/platform-browser@20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))))(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3)))(jsdom@20.0.3)(typescript@5.8.3)
ng-packagr:
- specifier: 19.0.1
- version: 19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3))(tslib@2.6.3)(typescript@5.6.3)
+ specifier: 20.0.1
+ version: 20.0.1(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3)
nx:
- specifier: 20.2.1
- version: 20.2.1
+ specifier: 21.2.2
+ version: 21.2.2
postcss:
specifier: ^8.4.5
version: 8.4.41
@@ -157,13 +157,13 @@ importers:
version: 2.8.8
ts-jest:
specifier: ^29.1.0
- version: 29.2.4(@babel/core@7.25.2)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.2))(esbuild@0.23.0)(jest@29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3)))(typescript@5.6.3)
+ version: 29.2.4(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3)))(typescript@5.8.3)
ts-node:
specifier: 10.9.1
- version: 10.9.1(@types/node@20.14.15)(typescript@5.6.3)
+ version: 10.9.1(@types/node@20.14.15)(typescript@5.8.3)
typescript:
- specifier: 5.6.3
- version: 5.6.3
+ specifier: 5.8.3
+ version: 5.8.3
packages:
'@adobe/css-tools@4.3.3':
@@ -179,47 +179,53 @@ packages:
}
engines: { node: '>=6.0.0' }
- '@angular-devkit/architect@0.1900.4':
+ '@angular-devkit/architect@0.2000.5':
resolution:
{
- integrity: sha512-9XwZ21BPYS2vGOOwVB40fsMyuwJT0H1lWaAMo8Umwi6XbKBVfaWbEhjtR9dlarrySKtFuTz9hmTZkIXHLjXPdA==,
+ integrity: sha512-9aPtMdRiOVP14PkbgxAKh3TivxXTBiOr66xYbxutP0cMBwzRX67ekyEpAxmTEiWnd+qmxV9tddWgGL5sWcEZgQ==,
}
engines:
{
- node: ^18.19.1 || ^20.11.1 || >=22.0.0,
+ node: ^20.19.0 || ^22.12.0 || >=24.0.0,
npm: ^6.11.0 || ^7.5.6 || >=8.0.0,
yarn: '>= 1.13.0',
}
- '@angular-devkit/build-angular@19.0.4':
+ '@angular-devkit/build-angular@20.0.5':
resolution:
{
- integrity: sha512-n7fcRdNB7ed5j6aZI+qPI/1LylFv1OiRNgBIeJxX3HEmzQxsHHLcxWog2yZK2Fvw3390xFx/VjZaklITj6tBFA==,
+ integrity: sha512-WMpk27O6R0p4t8VKq+z/1R+J/Jc5zpHy7OVsAguwH6bUoLOpLWMW1nHDIXGS9IpfkCmMRILxwKhFYIuEcUAvNg==,
}
engines:
{
- node: ^18.19.1 || ^20.11.1 || >=22.0.0,
+ node: ^20.19.0 || ^22.12.0 || >=24.0.0,
npm: ^6.11.0 || ^7.5.6 || >=8.0.0,
yarn: '>= 1.13.0',
}
peerDependencies:
- '@angular/compiler-cli': ^19.0.0
- '@angular/localize': ^19.0.0
- '@angular/platform-server': ^19.0.0
- '@angular/service-worker': ^19.0.0
- '@angular/ssr': ^19.0.4
- '@web/test-runner': ^0.19.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.0.5
+ '@web/test-runner': ^0.20.0
browser-sync: ^3.0.2
jest: ^29.5.0
jest-environment-jsdom: ^29.5.0
karma: ^6.3.0
- ng-packagr: ^19.0.0
+ ng-packagr: ^20.0.0
protractor: ^7.0.0
- tailwindcss: ^2.0.0 || ^3.0.0
- typescript: '>=5.5 <5.7'
+ tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0
+ typescript: '>=5.8 <5.9'
peerDependenciesMeta:
+ '@angular/core':
+ optional: true
'@angular/localize':
optional: true
+ '@angular/platform-browser':
+ optional: true
'@angular/platform-server':
optional: true
'@angular/service-worker':
@@ -243,14 +249,14 @@ packages:
tailwindcss:
optional: true
- '@angular-devkit/build-webpack@0.1900.4':
+ '@angular-devkit/build-webpack@0.2000.5':
resolution:
{
- integrity: sha512-eovr5Am8EwxF7d/y0Hbfz/KYWnOXXVXVwquPUcg8JBI19lLbfctz4+71Vjz2qGroijr2FlZztRpmhd498SLt/A==,
+ integrity: sha512-tdzw1ieaXWureLWz86fVh2OhHE0XuJGJGYEukjqsxExV/ZZ9Y0avYEIqDaC8RrPE1mHiM7W9in1DgYvPmsWxHw==,
}
engines:
{
- node: ^18.19.1 || ^20.11.1 || >=22.0.0,
+ node: ^20.19.0 || ^22.12.0 || >=24.0.0,
npm: ^6.11.0 || ^7.5.6 || >=8.0.0,
yarn: '>= 1.13.0',
}
@@ -258,14 +264,14 @@ packages:
webpack: ^5.30.0
webpack-dev-server: ^5.0.2
- '@angular-devkit/core@19.0.4':
+ '@angular-devkit/core@20.0.5':
resolution:
{
- integrity: sha512-+imxIj1JLr2hbUYQePHgkTUKr0VmlxNSZvIREcCWtXUcdCypiwhJAtGXv6MfpB4hAx+FJZYEpVWeLwYOS/gW0A==,
+ integrity: sha512-bFaFP984GxqfC1WYlUEFuwkDO657ynxI51cE3J6yfwP92ykyF/MXzV0S9tRBhx5rcLVgCAiohxmzKdxPhoLWSA==,
}
engines:
{
- node: ^18.19.1 || ^20.11.1 || >=22.0.0,
+ node: ^20.19.0 || ^22.12.0 || >=24.0.0,
npm: ^6.11.0 || ^7.5.6 || >=8.0.0,
yarn: '>= 1.13.0',
}
@@ -275,222 +281,244 @@ packages:
chokidar:
optional: true
- '@angular-devkit/schematics@19.0.4':
+ '@angular-devkit/schematics@20.0.5':
resolution:
{
- integrity: sha512-2r6Qs4N5NSPho+qzegCYS8kIgylXyH4DHaS7HJ5+4XvM1I8V8AII8payLWkUK0i29XufVoD5XfPUFnjxZrBfYQ==,
+ integrity: sha512-3bcYIk6x5mgDIC6K9z9HWqOJ450pglawZbKr4auME/Rt39xt0YT4IaTDhQYYuXU+NQ7mjKOSmqmOBwD2qcwsyw==,
}
engines:
{
- node: ^18.19.1 || ^20.11.1 || >=22.0.0,
+ 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/bundled-angular-compiler@19.0.1':
+ '@angular-eslint/bundled-angular-compiler@20.1.1':
resolution:
{
- integrity: sha512-ENnRzQdXKKisX0G2b7FmQu1IfhvPCrpZW2I4KMXNTOEp4+eouIoUzzHgM0dsRaXwB/RUfwBblTuAx8HZHW1oxw==,
+ integrity: sha512-hEWh/upyTj2bhyRmbNnGtlOXhBSEHwLg8/9YYhwmiNApQwKcvcg7lkstZMEVrKievNHZT6Wh4dWZvjRjMqLNSg==,
}
- '@angular-eslint/eslint-plugin-template@19.0.1':
+ '@angular-eslint/eslint-plugin-template@20.1.1':
resolution:
{
- integrity: sha512-PIsv12/Rom7OUbPuSBvwtwt0hH06/cq8LMy1TQHByT2GL7/PRTn+kIrFG+eYx1IyRJXdtXjKcilLVRW8CDoFpA==,
+ integrity: sha512-dRqfxYvgOC4DZqvRTmxoIUMeIqTzcIkRcMVEuP8qvR10KHAWDkV7xT4f7BAee9deI/lzoAk3tk5wkQg6POQo7Q==,
}
peerDependencies:
+ '@angular-eslint/template-parser': 20.1.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@19.0.1':
+ '@angular-eslint/eslint-plugin@20.1.1':
resolution:
{
- integrity: sha512-pjS/G65ilytiQWhpz1EU7kOyNn11ZyonRZmLgH1MoES6LW2m+a9B5+zLSd+JOQxiRIkdcVeyCzRWmku0LmHBsg==,
+ integrity: sha512-h+D6T35UGIuG0keYPH7dc6OTdfTVJ8GoIhCIpoAmVGhdIdfXIISvDvvX/QPiZtTcefik3vEZEGRiI/Nzc5xImw==,
}
peerDependencies:
'@typescript-eslint/utils': ^7.11.0 || ^8.0.0
eslint: ^8.57.0 || ^9.0.0
typescript: '*'
- '@angular-eslint/template-parser@19.0.1':
+ '@angular-eslint/template-parser@20.1.1':
resolution:
{
- integrity: sha512-h0d9sPHxjJza+KkEBuVhxGdwWS9te65ZpQbltMzC8Lug6iusIu+bGM2UigKWU5SsFoOwfQ1/4mIJJ7H2+Em+pQ==,
+ integrity: sha512-giIMYORf8P8MbBxh6EUfiR/7Y+omxJtK2C7a8lYTtLSOIGO0D8c8hXx9hTlPcdupVX+xZXDuZ85c9JDen+JSSA==,
}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '*'
- '@angular-eslint/utils@19.0.1':
+ '@angular-eslint/utils@20.1.1':
resolution:
{
- integrity: sha512-t0jlld7GhaZnvKmlqwHEhzteJ1hfTNsqhYycDO1GthXXohswtmS2uePMrD2LDUS/YyHFyDdXLjdxtSmDLifK0Q==,
+ integrity: sha512-hqbzGqa/0Ua90r4TMn4oZVnLuwIF6dqEfH7SlstB224h/7+nKoi67aHkmUq7VItWXpDDe+f1opeR01GKS9fNog==,
}
peerDependencies:
'@typescript-eslint/utils': ^7.11.0 || ^8.0.0
eslint: ^8.57.0 || ^9.0.0
typescript: '*'
- '@angular/animations@19.0.3':
+ '@angular/animations@20.0.6':
resolution:
{
- integrity: sha512-YWoXM2S5p+Eq6cX1xjtFaai23oVNnbf3u34pEQCyKDjZpqI5lMu8e63lQT0tf7fZttEWlNUYRTwQ9+MpZ0sjzQ==,
+ integrity: sha512-OS37BTq9mhD6EuO7Pogl8e0eKGGuedWbcEDO23SdgCf0PL3rLgcubHWilOusfoLmGX+hTYHDq2AQhVgik9Z1Hg==,
}
- engines: { node: ^18.19.1 || ^20.11.1 || >=22.0.0 }
+ engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 }
peerDependencies:
- '@angular/core': 19.0.3
+ '@angular/common': 20.0.6
+ '@angular/core': 20.0.6
- '@angular/build@19.0.4':
+ '@angular/build@20.0.5':
resolution:
{
- integrity: sha512-ubsNjLb54VkZwcPQ21Ke8aAHiIrRIcv7gG3R6/6XOoWeK1K2+tsv8bnO4mz5cHgzWOspLOT7FDC83NJjrKX3Nw==,
+ integrity: sha512-HQnKEuBhKURoaXkvTsgNbW8LyxVGYPMR/9e+KpJZv06NgJHXZumLtbkg1f1IF1d4d60SY1g+ienjFOu+Yj1FfQ==,
}
engines:
{
- node: ^18.19.1 || ^20.11.1 || >=22.0.0,
+ node: ^20.19.0 || ^22.12.0 || >=24.0.0,
npm: ^6.11.0 || ^7.5.6 || >=8.0.0,
yarn: '>= 1.13.0',
}
peerDependencies:
- '@angular/compiler': ^19.0.0
- '@angular/compiler-cli': ^19.0.0
- '@angular/localize': ^19.0.0
- '@angular/platform-server': ^19.0.0
- '@angular/service-worker': ^19.0.0
- '@angular/ssr': ^19.0.4
+ '@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.0.5
+ karma: ^6.4.0
less: ^4.2.0
+ ng-packagr: ^20.0.0
postcss: ^8.4.0
- tailwindcss: ^2.0.0 || ^3.0.0
- typescript: '>=5.5 <5.7'
+ tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0
+ tslib: ^2.3.0
+ typescript: '>=5.8 <5.9'
+ vitest: ^3.1.1
peerDependenciesMeta:
+ '@angular/core':
+ optional: true
'@angular/localize':
optional: true
+ '@angular/platform-browser':
+ optional: true
'@angular/platform-server':
optional: true
'@angular/service-worker':
optional: true
'@angular/ssr':
optional: true
+ karma:
+ optional: true
less:
optional: true
+ ng-packagr:
+ optional: true
postcss:
optional: true
tailwindcss:
optional: true
+ vitest:
+ optional: true
- '@angular/cli@19.0.4':
+ '@angular/cli@20.0.5':
resolution:
{
- integrity: sha512-jxnD9qkhelcRMCrHDCxNsWgn6HQCvMIj8uI0T2eB9Vy93q2YWUo/fWl2Sy4gFlR+VNeF+1hYhPLb/vqLLzjWuA==,
+ integrity: sha512-NbpVdgtMz0tQpDGULw+X6d1w7TWFSYfKY2UI6V4YoBuvg81k/O9splzsbG707UwaeK0hhjca0B2dDa+ASFuDVg==,
}
engines:
{
- node: ^18.19.1 || ^20.11.1 || >=22.0.0,
+ node: ^20.19.0 || ^22.12.0 || >=24.0.0,
npm: ^6.11.0 || ^7.5.6 || >=8.0.0,
yarn: '>= 1.13.0',
}
hasBin: true
- '@angular/common@19.0.3':
+ '@angular/common@20.0.6':
resolution:
{
- integrity: sha512-YyBVZU+LQ38R+/U5vF/b1T3muROKpR0kkupMw7VKnGhQfgrRX5Dk3H2nr9ritt0zPc7TOUuQSlHMf3QWah2GDg==,
+ integrity: sha512-NRsq2gI4CH8nEy8yEZFySEmZ4U+1Y1yGzdIFubrKmtE2NXxR4KFGvQCkBLCLh6hNQXQx+Soe126bqByA6oIaFw==,
}
- engines: { node: ^18.19.1 || ^20.11.1 || >=22.0.0 }
+ engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 }
peerDependencies:
- '@angular/core': 19.0.3
+ '@angular/core': 20.0.6
rxjs: ^6.5.3 || ^7.4.0
- '@angular/compiler-cli@19.0.3':
+ '@angular/compiler-cli@20.0.6':
resolution:
{
- integrity: sha512-nayLcC3hSHoGKXCZInMdFcIZJEHYkEGNsdAutgCMuSj+lXCGuRUysuGC0rGzJc2R6nhgfaLJnO8T/O5acqaqdA==,
+ integrity: sha512-A1H/Haq3O7SlMuH14Clj6Z6YhA9FtYQXpKnW1FrFbWOaTp1MpYFIVunL4duDOyRhrr3M9+AtEabbJu3fS7/XyA==,
}
- engines: { node: ^18.19.1 || ^20.11.1 || >=22.0.0 }
+ engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 }
hasBin: true
peerDependencies:
- '@angular/compiler': 19.0.3
- typescript: '>=5.5 <5.7'
+ '@angular/compiler': 20.0.6
+ typescript: '>=5.8 <5.9'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- '@angular/compiler@19.0.3':
+ '@angular/compiler@20.0.6':
resolution:
{
- integrity: sha512-cxtK4SlHAPstcXfjwOaoR1dAszrzo2iDF8ZiihbZPgKUG3m27qIU3Lp5XBgxfZPlO4jh6TXkWznY7f6Tyxkb0Q==,
+ integrity: sha512-pgkOUnufEtzuEnjrL4BqFJCCayp1Si8cT5ZBq8CsYoQUETiYFMT2kf1OEV09vPNH4owxuzE42Wa4fEyWMRWdbA==,
}
- engines: { node: ^18.19.1 || ^20.11.1 || >=22.0.0 }
- peerDependencies:
- '@angular/core': 19.0.3
- peerDependenciesMeta:
- '@angular/core':
- optional: true
+ engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 }
- '@angular/core@19.0.3':
+ '@angular/core@20.0.6':
resolution:
{
- integrity: sha512-WM844gDzrbHtcM2TJB9DmfCmenUYyNSI6h924CeppDW5oG8ShinQGiWNjF5oI6EZ4tG60uK3QvCm3kjr1dmbOA==,
+ integrity: sha512-PLSRl8vM8I+HOlAJFiTcRMNbRj2Clb7lpQqUfkeBSk8bBWOy9fLlscoY3JOk0tXoUTnW6lbRB1LmAFuYAQZzAA==,
}
- engines: { node: ^18.19.1 || ^20.11.1 || >=22.0.0 }
+ engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 }
peerDependencies:
+ '@angular/compiler': 20.0.6
rxjs: ^6.5.3 || ^7.4.0
zone.js: ~0.15.0
+ peerDependenciesMeta:
+ '@angular/compiler':
+ optional: true
+ zone.js:
+ optional: true
- '@angular/forms@19.0.3':
+ '@angular/forms@20.0.6':
resolution:
{
- integrity: sha512-8wf8yDR6cW+lOhpzhmxUOiI5Wjr1Kf7o8NuJ2P5K6b7IMNRzRyR5q/6R4NUwtF6aaJ1wNqmSof+goQmtn1HOcw==,
+ integrity: sha512-/SZB2g0Nd4zRHTXEnhG9Xnr0BcSPIbKwpanvkiOyyQlh8ab/DxGVoX/y8ovVw7lhxIXS0+cvloKpIbGCVmQHdw==,
}
- engines: { node: ^18.19.1 || ^20.11.1 || >=22.0.0 }
+ engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 }
peerDependencies:
- '@angular/common': 19.0.3
- '@angular/core': 19.0.3
- '@angular/platform-browser': 19.0.3
+ '@angular/common': 20.0.6
+ '@angular/core': 20.0.6
+ '@angular/platform-browser': 20.0.6
rxjs: ^6.5.3 || ^7.4.0
- '@angular/language-service@19.0.3':
+ '@angular/language-service@20.0.6':
resolution:
{
- integrity: sha512-SkUFggQayulgMWW4rwslLVCD7woZ1m7dCB87NCQdlZv9NIrHbNkaPfxHzaX3YrdKhw+u65XcttzD7cworcMcVQ==,
+ integrity: sha512-aVd3oIwIEYiIPiJOLBpjoBl+Sd+IdIKIam8uYAtoeq3CH+n9UPl1U0Zspl47yUZgbeYU63SAOKF9rthqGPzKCQ==,
}
- engines: { node: ^18.19.1 || ^20.11.1 || >=22.0.0 }
+ engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 }
- '@angular/platform-browser-dynamic@19.0.3':
+ '@angular/platform-browser-dynamic@20.0.6':
resolution:
{
- integrity: sha512-gFh+QN7JvepnD3mS0XmOtDmfY8h5sSkk2/guesE2A68Na8q+M3fGZlz7I37tCXToLth5us1X0Gi0UPCSESc4SA==,
+ integrity: sha512-Bolskz1hGGxgmKMR0YRSJvrnrvvSr7WfgikwglkWsSYXRi8kG2vjl2PC/F+OFCjhstw+XlE4qqkoE32LjV1s8A==,
}
- engines: { node: ^18.19.1 || ^20.11.1 || >=22.0.0 }
+ engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 }
peerDependencies:
- '@angular/common': 19.0.3
- '@angular/compiler': 19.0.3
- '@angular/core': 19.0.3
- '@angular/platform-browser': 19.0.3
+ '@angular/common': 20.0.6
+ '@angular/compiler': 20.0.6
+ '@angular/core': 20.0.6
+ '@angular/platform-browser': 20.0.6
- '@angular/platform-browser@19.0.3':
+ '@angular/platform-browser@20.0.6':
resolution:
{
- integrity: sha512-vggWHSzOsCpYqnGq5IIN+n7xdEvXfgUGaMdgzPhFMTsnlMTUs5+VEFl9tX9FANHkXKB5S1RttVyvEXRqJM9ncQ==,
+ integrity: sha512-EZC6ILD0nXOddNuwqQqwTzvRgXs/1kZoRGzdG8zpHhRREBf6VFMZ+g7IN3EKnYN4hDL5EMxIKIsIcQjmCDsu2A==,
}
- engines: { node: ^18.19.1 || ^20.11.1 || >=22.0.0 }
+ engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 }
peerDependencies:
- '@angular/animations': 19.0.3
- '@angular/common': 19.0.3
- '@angular/core': 19.0.3
+ '@angular/animations': 20.0.6
+ '@angular/common': 20.0.6
+ '@angular/core': 20.0.6
peerDependenciesMeta:
'@angular/animations':
optional: true
- '@angular/router@19.0.3':
+ '@angular/router@20.0.6':
resolution:
{
- integrity: sha512-L/s8crRC6nj5knmHsnPeOXMNdC7vUOSOvTQonXhmT0FdlP9bPnnRrNeVDnLnd8AzjPSBfIFE2eQw6T8jCwdxMA==,
+ integrity: sha512-qmG08dm/uUUe70tjcy0hTLFa7hc8hIDpXovKl2olB+ziGqTuGUTJBC0A6tPc344m9EHknCHHmaC+03U+i1BtLw==,
}
- engines: { node: ^18.19.1 || ^20.11.1 || >=22.0.0 }
+ engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 }
peerDependencies:
- '@angular/common': 19.0.3
- '@angular/core': 19.0.3
- '@angular/platform-browser': 19.0.3
+ '@angular/common': 20.0.6
+ '@angular/core': 20.0.6
+ '@angular/platform-browser': 20.0.6
rxjs: ^6.5.3 || ^7.4.0
'@babel/code-frame@7.24.7':
@@ -507,6 +535,13 @@ packages:
}
engines: { node: '>=6.9.0' }
+ '@babel/code-frame@7.27.1':
+ resolution:
+ {
+ integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==,
+ }
+ engines: { node: '>=6.9.0' }
+
'@babel/compat-data@7.25.2':
resolution:
{
@@ -521,6 +556,13 @@ packages:
}
engines: { node: '>=6.9.0' }
+ '@babel/compat-data@7.28.0':
+ resolution:
+ {
+ integrity: sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==,
+ }
+ engines: { node: '>=6.9.0' }
+
'@babel/core@7.25.2':
resolution:
{
@@ -535,17 +577,24 @@ packages:
}
engines: { node: '>=6.9.0' }
- '@babel/generator@7.25.0':
+ '@babel/core@7.27.1':
resolution:
{
- integrity: sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==,
+ integrity: sha512-IaaGWsQqfsQWVLqMn9OB92MNN7zukfVA4s7KKAI0KfrrDsZ0yhi5uV4baBuLuN7n3vsZpwP8asPPcVwApxvjBQ==,
+ }
+ engines: { node: '>=6.9.0' }
+
+ '@babel/core@7.27.7':
+ resolution:
+ {
+ integrity: sha512-BU2f9tlKQ5CAthiMIgpzAh4eDTLWo1mqi9jqE2OxMG0E/OM199VJt2q8BztTxpnSW0i1ymdwLXRJnYzvDM5r2w==,
}
engines: { node: '>=6.9.0' }
- '@babel/generator@7.26.2':
+ '@babel/generator@7.25.0':
resolution:
{
- integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==,
+ integrity: sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==,
}
engines: { node: '>=6.9.0' }
@@ -556,10 +605,17 @@ packages:
}
engines: { node: '>=6.9.0' }
- '@babel/helper-annotate-as-pure@7.24.7':
+ '@babel/generator@7.27.1':
+ resolution:
+ {
+ integrity: sha512-UnJfnIpc/+JO0/+KRVQNGU+y5taA5vCbwN8+azkX6beii/ZF+enZJSOKo11ZSzGJjlNfJHfQtmQT8H+9TXPG2w==,
+ }
+ engines: { node: '>=6.9.0' }
+
+ '@babel/generator@7.28.0':
resolution:
{
- integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==,
+ integrity: sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==,
}
engines: { node: '>=6.9.0' }
@@ -570,10 +626,17 @@ packages:
}
engines: { node: '>=6.9.0' }
- '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
+ '@babel/helper-annotate-as-pure@7.27.1':
+ resolution:
+ {
+ integrity: sha512-WnuuDILl9oOBbKnb4L+DyODx7iC47XfzmNCpTttFsSp6hTG7XZxu60+4IO+2/hPfcGOoKbFiwoI/+zwARbNQow==,
+ }
+ engines: { node: '>=6.9.0' }
+
+ '@babel/helper-annotate-as-pure@7.27.3':
resolution:
{
- integrity: sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==,
+ integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==,
}
engines: { node: '>=6.9.0' }
@@ -591,14 +654,12 @@ packages:
}
engines: { node: '>=6.9.0' }
- '@babel/helper-create-class-features-plugin@7.25.0':
+ '@babel/helper-compilation-targets@7.27.2':
resolution:
{
- integrity: sha512-GYM6BxeQsETc9mnct+nIIpf63SAyzvyYN7UB/IlTyd+MBg06afFGp0mIeUqGyWgS2mxad6vqbMrHVlaL3m70sQ==,
+ integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==,
}
engines: { node: '>=6.9.0' }
- peerDependencies:
- '@babel/core': ^7.0.0
'@babel/helper-create-class-features-plugin@7.25.9':
resolution:
@@ -609,10 +670,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.25.2':
+ '@babel/helper-create-class-features-plugin@7.27.1':
resolution:
{
- integrity: sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==,
+ integrity: sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -627,6 +688,15 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-create-regexp-features-plugin@7.27.1':
+ resolution:
+ {
+ integrity: sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==,
+ }
+ engines: { node: '>=6.9.0' }
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-define-polyfill-provider@0.6.2':
resolution:
{
@@ -635,10 +705,18 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- '@babel/helper-member-expression-to-functions@7.24.8':
+ '@babel/helper-define-polyfill-provider@0.6.5':
+ resolution:
+ {
+ integrity: sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==,
+ }
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
+ '@babel/helper-globals@7.28.0':
resolution:
{
- integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==,
+ integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==,
}
engines: { node: '>=6.9.0' }
@@ -649,6 +727,13 @@ packages:
}
engines: { node: '>=6.9.0' }
+ '@babel/helper-member-expression-to-functions@7.27.1':
+ resolution:
+ {
+ integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==,
+ }
+ engines: { node: '>=6.9.0' }
+
'@babel/helper-module-imports@7.24.7':
resolution:
{
@@ -663,6 +748,13 @@ packages:
}
engines: { node: '>=6.9.0' }
+ '@babel/helper-module-imports@7.27.1':
+ resolution:
+ {
+ integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==,
+ }
+ engines: { node: '>=6.9.0' }
+
'@babel/helper-module-transforms@7.25.2':
resolution:
{
@@ -681,12 +773,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-optimise-call-expression@7.24.7':
+ '@babel/helper-module-transforms@7.27.3':
resolution:
{
- integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==,
+ integrity: sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==,
}
engines: { node: '>=6.9.0' }
+ peerDependencies:
+ '@babel/core': ^7.0.0
'@babel/helper-optimise-call-expression@7.25.9':
resolution:
@@ -695,6 +789,13 @@ packages:
}
engines: { node: '>=6.9.0' }
+ '@babel/helper-optimise-call-expression@7.27.1':
+ resolution:
+ {
+ integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==,
+ }
+ engines: { node: '>=6.9.0' }
+
'@babel/helper-plugin-utils@7.24.8':
resolution:
{
@@ -709,14 +810,12 @@ packages:
}
engines: { node: '>=6.9.0' }
- '@babel/helper-remap-async-to-generator@7.25.0':
+ '@babel/helper-plugin-utils@7.27.1':
resolution:
{
- integrity: sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==,
+ integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==,
}
engines: { node: '>=6.9.0' }
- peerDependencies:
- '@babel/core': ^7.0.0
'@babel/helper-remap-async-to-generator@7.25.9':
resolution:
@@ -727,10 +826,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-replace-supers@7.25.0':
+ '@babel/helper-remap-async-to-generator@7.27.1':
resolution:
{
- integrity: sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==,
+ integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -745,17 +844,19 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-simple-access@7.24.7':
+ '@babel/helper-replace-supers@7.27.1':
resolution:
{
- integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==,
+ integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==,
}
engines: { node: '>=6.9.0' }
+ peerDependencies:
+ '@babel/core': ^7.0.0
- '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
+ '@babel/helper-simple-access@7.24.7':
resolution:
{
- integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==,
+ integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==,
}
engines: { node: '>=6.9.0' }
@@ -766,6 +867,13 @@ packages:
}
engines: { node: '>=6.9.0' }
+ '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
+ resolution:
+ {
+ integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==,
+ }
+ engines: { node: '>=6.9.0' }
+
'@babel/helper-split-export-declaration@7.24.7':
resolution:
{
@@ -787,6 +895,13 @@ packages:
}
engines: { node: '>=6.9.0' }
+ '@babel/helper-string-parser@7.27.1':
+ resolution:
+ {
+ integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==,
+ }
+ engines: { node: '>=6.9.0' }
+
'@babel/helper-validator-identifier@7.24.7':
resolution:
{
@@ -801,6 +916,13 @@ packages:
}
engines: { node: '>=6.9.0' }
+ '@babel/helper-validator-identifier@7.27.1':
+ resolution:
+ {
+ integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==,
+ }
+ engines: { node: '>=6.9.0' }
+
'@babel/helper-validator-option@7.24.8':
resolution:
{
@@ -815,10 +937,10 @@ packages:
}
engines: { node: '>=6.9.0' }
- '@babel/helper-wrap-function@7.25.0':
+ '@babel/helper-validator-option@7.27.1':
resolution:
{
- integrity: sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==,
+ integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==,
}
engines: { node: '>=6.9.0' }
@@ -829,6 +951,13 @@ packages:
}
engines: { node: '>=6.9.0' }
+ '@babel/helper-wrap-function@7.27.1':
+ resolution:
+ {
+ integrity: sha512-NFJK2sHUvrjo8wAU/nQTWU890/zB2jj0qBcCbZbbf+005cAsv6tMjXz31fBign6M5ov1o0Bllu+9nbqkfsjjJQ==,
+ }
+ engines: { node: '>=6.9.0' }
+
'@babel/helpers@7.25.0':
resolution:
{
@@ -843,6 +972,13 @@ packages:
}
engines: { node: '>=6.9.0' }
+ '@babel/helpers@7.27.6':
+ resolution:
+ {
+ integrity: sha512-muE8Tt8M22638HU31A3CgfSUciwz1fhATfoVai05aPXGor//CdWDCbnlY1yvBPo07njuVOCNGCSp/GTt12lIug==,
+ }
+ engines: { node: '>=6.9.0' }
+
'@babel/highlight@7.24.7':
resolution:
{
@@ -866,14 +1002,13 @@ packages:
engines: { node: '>=6.0.0' }
hasBin: true
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3':
+ '@babel/parser@7.28.0':
resolution:
{
- integrity: sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==,
+ integrity: sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==,
}
- engines: { node: '>=6.9.0' }
- peerDependencies:
- '@babel/core': ^7.0.0
+ engines: { node: '>=6.0.0' }
+ hasBin: true
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9':
resolution:
@@ -884,10 +1019,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1':
resolution:
{
- integrity: sha512-Bm4bH2qsX880b/3ziJ8KD711LT7z4u8CFudmjqle65AZj/HNUFhEf90dqYv6O86buWvSBmeQDjv0Tn2aF/bIBA==,
+ integrity: sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -902,10 +1037,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1':
resolution:
{
- integrity: sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==,
+ integrity: sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -920,14 +1055,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1':
resolution:
{
- integrity: sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==,
+ integrity: sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
- '@babel/core': ^7.13.0
+ '@babel/core': ^7.0.0
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9':
resolution:
@@ -938,14 +1073,14 @@ packages:
peerDependencies:
'@babel/core': ^7.13.0
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1':
resolution:
{
- integrity: sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==,
+ integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.13.0
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9':
resolution:
@@ -956,6 +1091,15 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1':
+ resolution:
+ {
+ integrity: sha512-6BpaYGDavZqkI6yT+KSPdpZFfpnd68UKXbcjI9pJ13pvHhPrCKWOOLp+ysvMeA+DxnhuPpgIaRpxRxo5A9t5jw==,
+ }
+ engines: { node: '>=6.9.0' }
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/plugin-proposal-decorators@7.24.7':
resolution:
{
@@ -998,15 +1142,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-class-static-block@7.14.5':
- resolution:
- {
- integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==,
- }
- engines: { node: '>=6.9.0' }
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-decorators@7.24.7':
resolution:
{
@@ -1016,53 +1151,37 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-dynamic-import@7.8.3':
- resolution:
- {
- integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==,
- }
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-export-namespace-from@7.8.3':
- resolution:
- {
- integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==,
- }
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-import-assertions@7.24.7':
+ '@babel/plugin-syntax-import-assertions@7.26.0':
resolution:
{
- integrity: sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==,
+ integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-assertions@7.26.0':
+ '@babel/plugin-syntax-import-assertions@7.27.1':
resolution:
{
- integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==,
+ integrity: sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.24.7':
+ '@babel/plugin-syntax-import-attributes@7.26.0':
resolution:
{
- integrity: sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==,
+ integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.26.0':
+ '@babel/plugin-syntax-import-attributes@7.27.1':
resolution:
{
- integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==,
+ integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1141,15 +1260,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-private-property-in-object@7.14.5':
- resolution:
- {
- integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==,
- }
- engines: { node: '>=6.9.0' }
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-top-level-await@7.14.5':
resolution:
{
@@ -1177,15 +1287,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-arrow-functions@7.24.7':
- resolution:
- {
- integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==,
- }
- engines: { node: '>=6.9.0' }
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-arrow-functions@7.25.9':
resolution:
{
@@ -1195,10 +1296,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-generator-functions@7.25.0':
+ '@babel/plugin-transform-arrow-functions@7.27.1':
resolution:
{
- integrity: sha512-uaIi2FdqzjpAMvVqvB51S42oC2JEVgh0LDsGfZVDysWE8LrJtQC2jvKmOqEYThKyB7bDEb7BP1GYWDm7tABA0Q==,
+ integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1213,10 +1314,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-to-generator@7.24.7':
+ '@babel/plugin-transform-async-generator-functions@7.27.1':
resolution:
{
- integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==,
+ integrity: sha512-eST9RrwlpaoJBDHShc+DS2SG4ATTi2MYNb4OxYkf3n+7eb49LWpnS+HSpVfW4x927qQwgk8A2hGNVaajAEw0EA==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1231,10 +1332,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoped-functions@7.24.7':
+ '@babel/plugin-transform-async-to-generator@7.27.1':
resolution:
{
- integrity: sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==,
+ integrity: sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1249,10 +1350,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.25.0':
+ '@babel/plugin-transform-block-scoped-functions@7.27.1':
resolution:
{
- integrity: sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==,
+ integrity: sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1267,10 +1368,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-properties@7.24.7':
+ '@babel/plugin-transform-block-scoping@7.28.0':
resolution:
{
- integrity: sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==,
+ integrity: sha512-gKKnwjpdx5sER/wl0WN0efUBFzF/56YZO0RJrSYP4CljXnP31ByY7fol89AzomdlLNzI36AvOTmYHsnZTCkq8Q==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1285,14 +1386,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-static-block@7.24.7':
+ '@babel/plugin-transform-class-properties@7.27.1':
resolution:
{
- integrity: sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==,
+ integrity: sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
- '@babel/core': ^7.12.0
+ '@babel/core': ^7.0.0-0
'@babel/plugin-transform-class-static-block@7.26.0':
resolution:
@@ -1303,14 +1404,14 @@ packages:
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.25.0':
+ '@babel/plugin-transform-class-static-block@7.27.1':
resolution:
{
- integrity: sha512-xyi6qjr/fYU304fiRwFbekzkqVJZ6A7hOjWZd+89FVcBqPV3S9Wuozz82xdpLspckeaafntbzglaW4pqpzvtSw==,
+ integrity: sha512-s734HmYU78MVzZ++joYM+NkJusItbdRcbm+AGRgJCt3iA+yux0QpD9cBVdz3tKyrjVYWRl7j0mHSmv4lhV0aoA==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.12.0
'@babel/plugin-transform-classes@7.25.9':
resolution:
@@ -1321,10 +1422,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-computed-properties@7.24.7':
+ '@babel/plugin-transform-classes@7.28.0':
resolution:
{
- integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==,
+ integrity: sha512-IjM1IoJNw72AZFlj33Cu8X0q2XK/6AaVC3jQu+cgQ5lThWD5ajnuUAml80dqRmOhmPkTH8uAwnpMu9Rvj0LTRA==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1339,10 +1440,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.24.8':
+ '@babel/plugin-transform-computed-properties@7.27.1':
resolution:
{
- integrity: sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==,
+ integrity: sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1357,10 +1458,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dotall-regex@7.24.7':
+ '@babel/plugin-transform-destructuring@7.28.0':
resolution:
{
- integrity: sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==,
+ integrity: sha512-v1nrSMBiKcodhsyJ4Gf+Z0U/yawmJDBOTpEB3mcQY52r9RIyPneGyAS/yM6seP/8I+mWI3elOMtT5dB8GJVs+A==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1375,10 +1476,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-keys@7.24.7':
+ '@babel/plugin-transform-dotall-regex@7.27.1':
resolution:
{
- integrity: sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==,
+ integrity: sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1393,14 +1494,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0':
+ '@babel/plugin-transform-duplicate-keys@7.27.1':
resolution:
{
- integrity: sha512-YLpb4LlYSc3sCUa35un84poXoraOiQucUTTu8X1j18JV+gNa8E0nyUf/CjZ171IRGr4jEguF+vzJU66QZhn29g==,
+ integrity: sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.0.0-0
'@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9':
resolution:
@@ -1411,14 +1512,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-dynamic-import@7.24.7':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1':
resolution:
{
- integrity: sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==,
+ integrity: sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
'@babel/plugin-transform-dynamic-import@7.25.9':
resolution:
@@ -1429,10 +1530,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-exponentiation-operator@7.24.7':
+ '@babel/plugin-transform-dynamic-import@7.27.1':
resolution:
{
- integrity: sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==,
+ integrity: sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1447,10 +1548,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-export-namespace-from@7.24.7':
+ '@babel/plugin-transform-exponentiation-operator@7.27.1':
resolution:
{
- integrity: sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==,
+ integrity: sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1465,10 +1566,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-for-of@7.24.7':
+ '@babel/plugin-transform-export-namespace-from@7.27.1':
resolution:
{
- integrity: sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==,
+ integrity: sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1483,10 +1584,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-function-name@7.25.1':
+ '@babel/plugin-transform-for-of@7.27.1':
resolution:
{
- integrity: sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==,
+ integrity: sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1501,10 +1602,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-json-strings@7.24.7':
+ '@babel/plugin-transform-function-name@7.27.1':
resolution:
{
- integrity: sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==,
+ integrity: sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1519,10 +1620,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-literals@7.25.2':
+ '@babel/plugin-transform-json-strings@7.27.1':
resolution:
{
- integrity: sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==,
+ integrity: sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1537,10 +1638,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-logical-assignment-operators@7.24.7':
+ '@babel/plugin-transform-literals@7.27.1':
resolution:
{
- integrity: sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==,
+ integrity: sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1555,10 +1656,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-member-expression-literals@7.24.7':
+ '@babel/plugin-transform-logical-assignment-operators@7.27.1':
resolution:
{
- integrity: sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==,
+ integrity: sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1573,10 +1674,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-amd@7.24.7':
+ '@babel/plugin-transform-member-expression-literals@7.27.1':
resolution:
{
- integrity: sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==,
+ integrity: sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1591,10 +1692,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-commonjs@7.24.8':
+ '@babel/plugin-transform-modules-amd@7.27.1':
resolution:
{
- integrity: sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==,
+ integrity: sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1609,10 +1710,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-systemjs@7.25.0':
+ '@babel/plugin-transform-modules-commonjs@7.27.1':
resolution:
{
- integrity: sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==,
+ integrity: sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1627,10 +1728,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-umd@7.24.7':
+ '@babel/plugin-transform-modules-systemjs@7.27.1':
resolution:
{
- integrity: sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==,
+ integrity: sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1645,14 +1746,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-named-capturing-groups-regex@7.24.7':
+ '@babel/plugin-transform-modules-umd@7.27.1':
resolution:
{
- integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==,
+ integrity: sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.0.0-0
'@babel/plugin-transform-named-capturing-groups-regex@7.25.9':
resolution:
@@ -1663,14 +1764,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-new-target@7.24.7':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.27.1':
resolution:
{
- integrity: sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==,
+ integrity: sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
'@babel/plugin-transform-new-target@7.25.9':
resolution:
@@ -1681,10 +1782,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.7':
+ '@babel/plugin-transform-new-target@7.27.1':
resolution:
{
- integrity: sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==,
+ integrity: sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1699,10 +1800,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-numeric-separator@7.24.7':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.27.1':
resolution:
{
- integrity: sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==,
+ integrity: sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1717,10 +1818,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-rest-spread@7.24.7':
+ '@babel/plugin-transform-numeric-separator@7.27.1':
resolution:
{
- integrity: sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==,
+ integrity: sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1735,10 +1836,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-super@7.24.7':
+ '@babel/plugin-transform-object-rest-spread@7.28.0':
resolution:
{
- integrity: sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==,
+ integrity: sha512-9VNGikXxzu5eCiQjdE4IZn8sb9q7Xsk5EXLDBKUYg1e/Tve8/05+KJEtcxGxAgCY5t/BpKQM+JEL/yT4tvgiUA==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1753,10 +1854,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-catch-binding@7.24.7':
+ '@babel/plugin-transform-object-super@7.27.1':
resolution:
{
- integrity: sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==,
+ integrity: sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1771,10 +1872,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-chaining@7.24.8':
+ '@babel/plugin-transform-optional-catch-binding@7.27.1':
resolution:
{
- integrity: sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==,
+ integrity: sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1789,10 +1890,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-parameters@7.24.7':
+ '@babel/plugin-transform-optional-chaining@7.27.1':
resolution:
{
- integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==,
+ integrity: sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1807,10 +1908,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-methods@7.24.7':
+ '@babel/plugin-transform-parameters@7.27.7':
resolution:
{
- integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==,
+ integrity: sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1825,10 +1926,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-property-in-object@7.24.7':
+ '@babel/plugin-transform-private-methods@7.27.1':
resolution:
{
- integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==,
+ integrity: sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1843,10 +1944,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-property-literals@7.24.7':
+ '@babel/plugin-transform-private-property-in-object@7.27.1':
resolution:
{
- integrity: sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==,
+ integrity: sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1861,10 +1962,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.24.7':
+ '@babel/plugin-transform-property-literals@7.27.1':
resolution:
{
- integrity: sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==,
+ integrity: sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1879,6 +1980,15 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-regenerator@7.28.0':
+ resolution:
+ {
+ integrity: sha512-LOAozRVbqxEVjSKfhGnuLoE4Kz4Oc5UJzuvFUhSsQzdCdaAQu06mG8zDv2GFSerM62nImUZ7K92vxnQcLSDlCQ==,
+ }
+ engines: { node: '>=6.9.0' }
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-regexp-modifiers@7.26.0':
resolution:
{
@@ -1888,14 +1998,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-reserved-words@7.24.7':
+ '@babel/plugin-transform-regexp-modifiers@7.27.1':
resolution:
{
- integrity: sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==,
+ integrity: sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
'@babel/plugin-transform-reserved-words@7.25.9':
resolution:
@@ -1906,10 +2016,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-runtime@7.24.7':
+ '@babel/plugin-transform-reserved-words@7.27.1':
resolution:
{
- integrity: sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==,
+ integrity: sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1924,10 +2034,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-shorthand-properties@7.24.7':
+ '@babel/plugin-transform-runtime@7.27.1':
resolution:
{
- integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==,
+ integrity: sha512-TqGF3desVsTcp3WrJGj4HfKokfCXCLcHpt4PJF0D8/iT6LPd9RS82Upw3KPeyr6B22Lfd3DO8MVrmp0oRkUDdw==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1942,10 +2052,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-spread@7.24.7':
+ '@babel/plugin-transform-shorthand-properties@7.27.1':
resolution:
{
- integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==,
+ integrity: sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1960,10 +2070,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-sticky-regex@7.24.7':
+ '@babel/plugin-transform-spread@7.27.1':
resolution:
{
- integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==,
+ integrity: sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1978,10 +2088,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-template-literals@7.24.7':
+ '@babel/plugin-transform-sticky-regex@7.27.1':
resolution:
{
- integrity: sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==,
+ integrity: sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -1996,10 +2106,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typeof-symbol@7.24.8':
+ '@babel/plugin-transform-template-literals@7.27.1':
resolution:
{
- integrity: sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==,
+ integrity: sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -2014,19 +2124,19 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.25.2':
+ '@babel/plugin-transform-typeof-symbol@7.27.1':
resolution:
{
- integrity: sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==,
+ integrity: sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-escapes@7.24.7':
+ '@babel/plugin-transform-typescript@7.25.2':
resolution:
{
- integrity: sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==,
+ integrity: sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -2041,10 +2151,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-property-regex@7.24.7':
+ '@babel/plugin-transform-unicode-escapes@7.27.1':
resolution:
{
- integrity: sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==,
+ integrity: sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -2059,10 +2169,10 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-regex@7.24.7':
+ '@babel/plugin-transform-unicode-property-regex@7.27.1':
resolution:
{
- integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==,
+ integrity: sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
@@ -2077,14 +2187,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-sets-regex@7.24.7':
+ '@babel/plugin-transform-unicode-regex@7.27.1':
resolution:
{
- integrity: sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==,
+ integrity: sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.0.0-0
'@babel/plugin-transform-unicode-sets-regex@7.25.9':
resolution:
@@ -2095,14 +2205,14 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/preset-env@7.25.3':
+ '@babel/plugin-transform-unicode-sets-regex@7.27.1':
resolution:
{
- integrity: sha512-QsYW7UeAaXvLPX9tdVliMJE7MD7M6MLYVTovRTIwhoYQVFHR1rM4wO8wqAezYi3/BpSD+NzVCZ69R6smWiIi8g==,
+ integrity: sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==,
}
engines: { node: '>=6.9.0' }
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
'@babel/preset-env@7.26.0':
resolution:
@@ -2113,6 +2223,15 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/preset-env@7.27.2':
+ resolution:
+ {
+ integrity: sha512-Ma4zSuYSlGNRlCLO+EAzLnCmJK2vdstgv+n7aUP+/IKZrOfWHOJVdSJtuub8RzHTj3ahD37k5OKJWvzf16TQyQ==,
+ }
+ engines: { node: '>=6.9.0' }
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/preset-modules@0.1.6-no-external-plugins':
resolution:
{
@@ -2130,23 +2249,17 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/regjsgen@0.8.0':
- resolution:
- {
- integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==,
- }
-
- '@babel/runtime@7.25.0':
+ '@babel/runtime@7.26.0':
resolution:
{
- integrity: sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==,
+ integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==,
}
engines: { node: '>=6.9.0' }
- '@babel/runtime@7.26.0':
+ '@babel/runtime@7.27.1':
resolution:
{
- integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==,
+ integrity: sha512-1x3D2xEk2fRo3PAhwQwu5UubzgiVWSXTBfWpVd2Mx2AzRqJuDJCsgaDVZ7HB5iGzDW1Hl1sWN2mFyKjmR9uAog==,
}
engines: { node: '>=6.9.0' }
@@ -2164,6 +2277,13 @@ packages:
}
engines: { node: '>=6.9.0' }
+ '@babel/template@7.27.2':
+ resolution:
+ {
+ integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==,
+ }
+ engines: { node: '>=6.9.0' }
+
'@babel/traverse@7.25.3':
resolution:
{
@@ -2178,6 +2298,13 @@ packages:
}
engines: { node: '>=6.9.0' }
+ '@babel/traverse@7.28.0':
+ resolution:
+ {
+ integrity: sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==,
+ }
+ engines: { node: '>=6.9.0' }
+
'@babel/types@7.25.2':
resolution:
{
@@ -2192,18 +2319,24 @@ packages:
}
engines: { node: '>=6.9.0' }
+ '@babel/types@7.28.0':
+ resolution:
+ {
+ integrity: sha512-jYnje+JyZG5YThjHiF28oT4SIZLnYOcSBb6+SDaFIyzDVSkXQmQQYclJ2R+YxcdmK0AX6x1E5OQNtuh3jHDrUg==,
+ }
+ engines: { node: '>=6.9.0' }
+
'@bcoe/v8-coverage@0.2.3':
resolution:
{
integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==,
}
- '@colors/colors@1.5.0':
+ '@bufbuild/protobuf@2.6.0':
resolution:
{
- integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==,
+ integrity: sha512-6cuonJVNOIL7lTj5zgo/Rc2bKAo4/GvN+rKCrUj7GdEHRzCk8zKOfFwUsL9nAVk5rSIsRmlgcpLzTRysopEeeg==,
}
- engines: { node: '>=0.1.90' }
'@cspotcode/source-map-support@0.8.1':
resolution:
@@ -2311,10 +2444,10 @@ packages:
peerDependencies:
postcss-selector-parser: ^6.0.10
- '@cypress/request@3.0.1':
+ '@cypress/request@3.0.8':
resolution:
{
- integrity: sha512-TWivJlJi8ZDx2wGOw1dbLuHJKUYX7bWySw377nlnGOW3hP9/MUKIsEdXT/YngWxVdgNCHRBmFlBipE+5/2ZZlQ==,
+ integrity: sha512-h0NFgh1mJmm1nr4jCwkGHwKneVYKghUyWe6TMNrk0B9zsjAJxpg8C4/+BAcmLgCPa1vj1V8rNUaILl+zYRUWBQ==,
}
engines: { node: '>= 6' }
@@ -2337,652 +2470,670 @@ packages:
integrity: sha512-E7Vgw78I93we4ZWdYCb4DGAwRROGkMIXk7/y87UmANR+J6qsWusmC3gLt0H+O0KOt5e6O38U8oJamgbudrES/w==,
}
+ '@emnapi/core@1.4.3':
+ resolution:
+ {
+ integrity: sha512-4m62DuCE07lw01soJwPiBGC0nAww0Q+RY70VZ+n49yDIO13yyinhbWCeNnaob0lakDtWQzSdtNWzJeOJt2ma+g==,
+ }
+
'@emnapi/runtime@1.2.0':
resolution:
{
integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==,
}
+ '@emnapi/runtime@1.4.3':
+ resolution:
+ {
+ integrity: sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==,
+ }
+
'@emnapi/wasi-threads@1.0.1':
resolution:
{
integrity: sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==,
}
- '@esbuild/aix-ppc64@0.21.5':
+ '@emnapi/wasi-threads@1.0.2':
resolution:
{
- integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==,
+ integrity: sha512-5n3nTJblwRi8LlXkJ9eBzu+kZR8Yxcc7ubakyQTFzPMtIhFpUBRbsnc2Dv88IZDIbCDlBiWrknhB4Lsz7mg6BA==,
}
- engines: { node: '>=12' }
- cpu: [ppc64]
- os: [aix]
- '@esbuild/aix-ppc64@0.23.0':
+ '@esbuild/aix-ppc64@0.24.0':
resolution:
{
- integrity: sha512-3sG8Zwa5fMcA9bgqB8AfWPQ+HFke6uD3h1s3RIwUNK8EG7a4buxvuFTs3j1IMs2NXAk9F30C/FF4vxRgQCcmoQ==,
+ integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==,
}
engines: { node: '>=18' }
cpu: [ppc64]
os: [aix]
- '@esbuild/aix-ppc64@0.24.0':
+ '@esbuild/aix-ppc64@0.25.5':
resolution:
{
- integrity: sha512-WtKdFM7ls47zkKHFVzMz8opM7LkcsIp9amDUBIAWirg70RM71WRSjdILPsY5Uv1D42ZpUfaPILDlfactHgsRkw==,
+ integrity: sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==,
}
engines: { node: '>=18' }
cpu: [ppc64]
os: [aix]
- '@esbuild/android-arm64@0.21.5':
+ '@esbuild/android-arm64@0.17.19':
resolution:
{
- integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==,
+ integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==,
}
engines: { node: '>=12' }
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.23.0':
+ '@esbuild/android-arm64@0.24.0':
resolution:
{
- integrity: sha512-EuHFUYkAVfU4qBdyivULuu03FhJO4IJN9PGuABGrFy4vUuzk91P2d+npxHcFdpUnfYKy0PuV+n6bKIpHOB3prQ==,
+ integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==,
}
engines: { node: '>=18' }
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.24.0':
+ '@esbuild/android-arm64@0.25.5':
resolution:
{
- integrity: sha512-Vsm497xFM7tTIPYK9bNTYJyF/lsP590Qc1WxJdlB6ljCbdZKU9SY8i7+Iin4kyhV/KV5J2rOKsBQbB77Ab7L/w==,
+ integrity: sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==,
}
engines: { node: '>=18' }
cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.21.5':
+ '@esbuild/android-arm@0.17.19':
resolution:
{
- integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==,
+ integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==,
}
engines: { node: '>=12' }
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.23.0':
+ '@esbuild/android-arm@0.24.0':
resolution:
{
- integrity: sha512-+KuOHTKKyIKgEEqKbGTK8W7mPp+hKinbMBeEnNzjJGyFcWsfrXjSTNluJHCY1RqhxFurdD8uNXQDei7qDlR6+g==,
+ integrity: sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==,
}
engines: { node: '>=18' }
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.24.0':
+ '@esbuild/android-arm@0.25.5':
resolution:
{
- integrity: sha512-arAtTPo76fJ/ICkXWetLCc9EwEHKaeya4vMrReVlEIUCAUncH7M4bhMQ+M9Vf+FFOZJdTNMXNBrWwW+OXWpSew==,
+ integrity: sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==,
}
engines: { node: '>=18' }
cpu: [arm]
os: [android]
- '@esbuild/android-x64@0.21.5':
+ '@esbuild/android-x64@0.17.19':
resolution:
{
- integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==,
+ integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==,
}
engines: { node: '>=12' }
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.23.0':
+ '@esbuild/android-x64@0.24.0':
resolution:
{
- integrity: sha512-WRrmKidLoKDl56LsbBMhzTTBxrsVwTKdNbKDalbEZr0tcsBgCLbEtoNthOW6PX942YiYq8HzEnb4yWQMLQuipQ==,
+ integrity: sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==,
}
engines: { node: '>=18' }
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.24.0':
+ '@esbuild/android-x64@0.25.5':
resolution:
{
- integrity: sha512-t8GrvnFkiIY7pa7mMgJd7p8p8qqYIz1NYiAoKc75Zyv73L3DZW++oYMSHPRarcotTKuSs6m3hTOa5CKHaS02TQ==,
+ integrity: sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==,
}
engines: { node: '>=18' }
cpu: [x64]
os: [android]
- '@esbuild/darwin-arm64@0.21.5':
+ '@esbuild/darwin-arm64@0.17.19':
resolution:
{
- integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==,
+ integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==,
}
engines: { node: '>=12' }
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.23.0':
+ '@esbuild/darwin-arm64@0.24.0':
resolution:
{
- integrity: sha512-YLntie/IdS31H54Ogdn+v50NuoWF5BDkEUFpiOChVa9UnKpftgwzZRrI4J132ETIi+D8n6xh9IviFV3eXdxfow==,
+ integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==,
}
engines: { node: '>=18' }
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.24.0':
+ '@esbuild/darwin-arm64@0.25.5':
resolution:
{
- integrity: sha512-CKyDpRbK1hXwv79soeTJNHb5EiG6ct3efd/FTPdzOWdbZZfGhpbcqIpiD0+vwmpu0wTIL97ZRPZu8vUt46nBSw==,
+ integrity: sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==,
}
engines: { node: '>=18' }
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.21.5':
+ '@esbuild/darwin-x64@0.17.19':
resolution:
{
- integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==,
+ integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==,
}
engines: { node: '>=12' }
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.23.0':
+ '@esbuild/darwin-x64@0.24.0':
resolution:
{
- integrity: sha512-IMQ6eme4AfznElesHUPDZ+teuGwoRmVuuixu7sv92ZkdQcPbsNHzutd+rAfaBKo8YK3IrBEi9SLLKWJdEvJniQ==,
+ integrity: sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==,
}
engines: { node: '>=18' }
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.24.0':
+ '@esbuild/darwin-x64@0.25.5':
resolution:
{
- integrity: sha512-rgtz6flkVkh58od4PwTRqxbKH9cOjaXCMZgWD905JOzjFKW+7EiUObfd/Kav+A6Gyud6WZk9w+xu6QLytdi2OA==,
+ integrity: sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==,
}
engines: { node: '>=18' }
cpu: [x64]
os: [darwin]
- '@esbuild/freebsd-arm64@0.21.5':
+ '@esbuild/freebsd-arm64@0.17.19':
resolution:
{
- integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==,
+ integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==,
}
engines: { node: '>=12' }
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.23.0':
+ '@esbuild/freebsd-arm64@0.24.0':
resolution:
{
- integrity: sha512-0muYWCng5vqaxobq6LB3YNtevDFSAZGlgtLoAc81PjUfiFz36n4KMpwhtAd4he8ToSI3TGyuhyx5xmiWNYZFyw==,
+ integrity: sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==,
}
engines: { node: '>=18' }
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.24.0':
+ '@esbuild/freebsd-arm64@0.25.5':
resolution:
{
- integrity: sha512-6Mtdq5nHggwfDNLAHkPlyLBpE5L6hwsuXZX8XNmHno9JuL2+bg2BX5tRkwjyfn6sKbxZTq68suOjgWqCicvPXA==,
+ integrity: sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==,
}
engines: { node: '>=18' }
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.21.5':
+ '@esbuild/freebsd-x64@0.17.19':
resolution:
{
- integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==,
+ integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==,
}
engines: { node: '>=12' }
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.23.0':
+ '@esbuild/freebsd-x64@0.24.0':
resolution:
{
- integrity: sha512-XKDVu8IsD0/q3foBzsXGt/KjD/yTKBCIwOHE1XwiXmrRwrX6Hbnd5Eqn/WvDekddK21tfszBSrE/WMaZh+1buQ==,
+ integrity: sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==,
}
engines: { node: '>=18' }
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.24.0':
+ '@esbuild/freebsd-x64@0.25.5':
resolution:
{
- integrity: sha512-D3H+xh3/zphoX8ck4S2RxKR6gHlHDXXzOf6f/9dbFt/NRBDIE33+cVa49Kil4WUjxMGW0ZIYBYtaGCa2+OsQwQ==,
+ integrity: sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==,
}
engines: { node: '>=18' }
cpu: [x64]
os: [freebsd]
- '@esbuild/linux-arm64@0.21.5':
+ '@esbuild/linux-arm64@0.17.19':
resolution:
{
- integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==,
+ integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==,
}
engines: { node: '>=12' }
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.23.0':
+ '@esbuild/linux-arm64@0.24.0':
resolution:
{
- integrity: sha512-j1t5iG8jE7BhonbsEg5d9qOYcVZv/Rv6tghaXM/Ug9xahM0nX/H2gfu6X6z11QRTMT6+aywOMA8TDkhPo8aCGw==,
+ integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==,
}
engines: { node: '>=18' }
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.24.0':
+ '@esbuild/linux-arm64@0.25.5':
resolution:
{
- integrity: sha512-TDijPXTOeE3eaMkRYpcy3LarIg13dS9wWHRdwYRnzlwlA370rNdZqbcp0WTyyV/k2zSxfko52+C7jU5F9Tfj1g==,
+ integrity: sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==,
}
engines: { node: '>=18' }
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.21.5':
+ '@esbuild/linux-arm@0.17.19':
resolution:
{
- integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==,
+ integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==,
}
engines: { node: '>=12' }
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.23.0':
+ '@esbuild/linux-arm@0.24.0':
resolution:
{
- integrity: sha512-SEELSTEtOFu5LPykzA395Mc+54RMg1EUgXP+iw2SJ72+ooMwVsgfuwXo5Fn0wXNgWZsTVHwY2cg4Vi/bOD88qw==,
+ integrity: sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==,
}
engines: { node: '>=18' }
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.24.0':
+ '@esbuild/linux-arm@0.25.5':
resolution:
{
- integrity: sha512-gJKIi2IjRo5G6Glxb8d3DzYXlxdEj2NlkixPsqePSZMhLudqPhtZ4BUrpIuTjJYXxvF9njql+vRjB2oaC9XpBw==,
+ integrity: sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==,
}
engines: { node: '>=18' }
cpu: [arm]
os: [linux]
- '@esbuild/linux-ia32@0.21.5':
+ '@esbuild/linux-ia32@0.17.19':
resolution:
{
- integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==,
+ integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==,
}
engines: { node: '>=12' }
cpu: [ia32]
os: [linux]
- '@esbuild/linux-ia32@0.23.0':
+ '@esbuild/linux-ia32@0.24.0':
resolution:
{
- integrity: sha512-P7O5Tkh2NbgIm2R6x1zGJJsnacDzTFcRWZyTTMgFdVit6E98LTxO+v8LCCLWRvPrjdzXHx9FEOA8oAZPyApWUA==,
+ integrity: sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==,
}
engines: { node: '>=18' }
cpu: [ia32]
os: [linux]
- '@esbuild/linux-ia32@0.24.0':
+ '@esbuild/linux-ia32@0.25.5':
resolution:
{
- integrity: sha512-K40ip1LAcA0byL05TbCQ4yJ4swvnbzHscRmUilrmP9Am7//0UjPreh4lpYzvThT2Quw66MhjG//20mrufm40mA==,
+ integrity: sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==,
}
engines: { node: '>=18' }
cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.21.5':
+ '@esbuild/linux-loong64@0.17.19':
resolution:
{
- integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==,
+ integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==,
}
engines: { node: '>=12' }
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.23.0':
+ '@esbuild/linux-loong64@0.24.0':
resolution:
{
- integrity: sha512-InQwepswq6urikQiIC/kkx412fqUZudBO4SYKu0N+tGhXRWUqAx+Q+341tFV6QdBifpjYgUndV1hhMq3WeJi7A==,
+ integrity: sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==,
}
engines: { node: '>=18' }
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.24.0':
+ '@esbuild/linux-loong64@0.25.5':
resolution:
{
- integrity: sha512-0mswrYP/9ai+CU0BzBfPMZ8RVm3RGAN/lmOMgW4aFUSOQBjA31UP8Mr6DDhWSuMwj7jaWOT0p0WoZ6jeHhrD7g==,
+ integrity: sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==,
}
engines: { node: '>=18' }
cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.21.5':
+ '@esbuild/linux-mips64el@0.17.19':
resolution:
{
- integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==,
+ integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==,
}
engines: { node: '>=12' }
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.23.0':
+ '@esbuild/linux-mips64el@0.24.0':
resolution:
{
- integrity: sha512-J9rflLtqdYrxHv2FqXE2i1ELgNjT+JFURt/uDMoPQLcjWQA5wDKgQA4t/dTqGa88ZVECKaD0TctwsUfHbVoi4w==,
+ integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==,
}
engines: { node: '>=18' }
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.24.0':
+ '@esbuild/linux-mips64el@0.25.5':
resolution:
{
- integrity: sha512-hIKvXm0/3w/5+RDtCJeXqMZGkI2s4oMUGj3/jM0QzhgIASWrGO5/RlzAzm5nNh/awHE0A19h/CvHQe6FaBNrRA==,
+ integrity: sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==,
}
engines: { node: '>=18' }
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.21.5':
+ '@esbuild/linux-ppc64@0.17.19':
resolution:
{
- integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==,
+ integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==,
}
engines: { node: '>=12' }
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.23.0':
+ '@esbuild/linux-ppc64@0.24.0':
resolution:
{
- integrity: sha512-cShCXtEOVc5GxU0fM+dsFD10qZ5UpcQ8AM22bYj0u/yaAykWnqXJDpd77ublcX6vdDsWLuweeuSNZk4yUxZwtw==,
+ integrity: sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==,
}
engines: { node: '>=18' }
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.24.0':
+ '@esbuild/linux-ppc64@0.25.5':
resolution:
{
- integrity: sha512-HcZh5BNq0aC52UoocJxaKORfFODWXZxtBaaZNuN3PUX3MoDsChsZqopzi5UupRhPHSEHotoiptqikjN/B77mYQ==,
+ integrity: sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==,
}
engines: { node: '>=18' }
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.21.5':
+ '@esbuild/linux-riscv64@0.17.19':
resolution:
{
- integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==,
+ integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==,
}
engines: { node: '>=12' }
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.23.0':
+ '@esbuild/linux-riscv64@0.24.0':
resolution:
{
- integrity: sha512-HEtaN7Y5UB4tZPeQmgz/UhzoEyYftbMXrBCUjINGjh3uil+rB/QzzpMshz3cNUxqXN7Vr93zzVtpIDL99t9aRw==,
+ integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==,
}
engines: { node: '>=18' }
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.24.0':
+ '@esbuild/linux-riscv64@0.25.5':
resolution:
{
- integrity: sha512-bEh7dMn/h3QxeR2KTy1DUszQjUrIHPZKyO6aN1X4BCnhfYhuQqedHaa5MxSQA/06j3GpiIlFGSsy1c7Gf9padw==,
+ integrity: sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==,
}
engines: { node: '>=18' }
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-s390x@0.21.5':
+ '@esbuild/linux-s390x@0.17.19':
resolution:
{
- integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==,
+ integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==,
}
engines: { node: '>=12' }
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.23.0':
+ '@esbuild/linux-s390x@0.24.0':
resolution:
{
- integrity: sha512-WDi3+NVAuyjg/Wxi+o5KPqRbZY0QhI9TjrEEm+8dmpY9Xir8+HE/HNx2JoLckhKbFopW0RdO2D72w8trZOV+Wg==,
+ integrity: sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==,
}
engines: { node: '>=18' }
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.24.0':
+ '@esbuild/linux-s390x@0.25.5':
resolution:
{
- integrity: sha512-ZcQ6+qRkw1UcZGPyrCiHHkmBaj9SiCD8Oqd556HldP+QlpUIe2Wgn3ehQGVoPOvZvtHm8HPx+bH20c9pvbkX3g==,
+ integrity: sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==,
}
engines: { node: '>=18' }
cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.21.5':
+ '@esbuild/linux-x64@0.17.19':
resolution:
{
- integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==,
+ integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==,
}
engines: { node: '>=12' }
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.23.0':
+ '@esbuild/linux-x64@0.24.0':
resolution:
{
- integrity: sha512-a3pMQhUEJkITgAw6e0bWA+F+vFtCciMjW/LPtoj99MhVt+Mfb6bbL9hu2wmTZgNd994qTAEw+U/r6k3qHWWaOQ==,
+ integrity: sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==,
}
engines: { node: '>=18' }
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.24.0':
+ '@esbuild/linux-x64@0.25.5':
resolution:
{
- integrity: sha512-vbutsFqQ+foy3wSSbmjBXXIJ6PL3scghJoM8zCL142cGaZKAdCZHyf+Bpu/MmX9zT9Q0zFBVKb36Ma5Fzfa8xA==,
+ integrity: sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==,
}
engines: { node: '>=18' }
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-x64@0.21.5':
+ '@esbuild/netbsd-arm64@0.25.5':
+ resolution:
+ {
+ integrity: sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==,
+ }
+ engines: { node: '>=18' }
+ cpu: [arm64]
+ os: [netbsd]
+
+ '@esbuild/netbsd-x64@0.17.19':
resolution:
{
- integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==,
+ integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==,
}
engines: { node: '>=12' }
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.23.0':
+ '@esbuild/netbsd-x64@0.24.0':
resolution:
{
- integrity: sha512-cRK+YDem7lFTs2Q5nEv/HHc4LnrfBCbH5+JHu6wm2eP+d8OZNoSMYgPZJq78vqQ9g+9+nMuIsAO7skzphRXHyw==,
+ integrity: sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==,
}
engines: { node: '>=18' }
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.24.0':
+ '@esbuild/netbsd-x64@0.25.5':
resolution:
{
- integrity: sha512-hjQ0R/ulkO8fCYFsG0FZoH+pWgTTDreqpqY7UnQntnaKv95uP5iW3+dChxnx7C3trQQU40S+OgWhUVwCjVFLvg==,
+ integrity: sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==,
}
engines: { node: '>=18' }
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.23.0':
+ '@esbuild/openbsd-arm64@0.24.0':
resolution:
{
- integrity: sha512-suXjq53gERueVWu0OKxzWqk7NxiUWSUlrxoZK7usiF50C6ipColGR5qie2496iKGYNLhDZkPxBI3erbnYkU0rQ==,
+ integrity: sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==,
}
engines: { node: '>=18' }
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-arm64@0.24.0':
+ '@esbuild/openbsd-arm64@0.25.5':
resolution:
{
- integrity: sha512-MD9uzzkPQbYehwcN583yx3Tu5M8EIoTD+tUgKF982WYL9Pf5rKy9ltgD0eUgs8pvKnmizxjXZyLt0z6DC3rRXg==,
+ integrity: sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==,
}
engines: { node: '>=18' }
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.21.5':
+ '@esbuild/openbsd-x64@0.17.19':
resolution:
{
- integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==,
+ integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==,
}
engines: { node: '>=12' }
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.23.0':
+ '@esbuild/openbsd-x64@0.24.0':
resolution:
{
- integrity: sha512-6p3nHpby0DM/v15IFKMjAaayFhqnXV52aEmv1whZHX56pdkK+MEaLoQWj+H42ssFarP1PcomVhbsR4pkz09qBg==,
+ integrity: sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==,
}
engines: { node: '>=18' }
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.24.0':
+ '@esbuild/openbsd-x64@0.25.5':
resolution:
{
- integrity: sha512-4ir0aY1NGUhIC1hdoCzr1+5b43mw99uNwVzhIq1OY3QcEwPDO3B7WNXBzaKY5Nsf1+N11i1eOfFcq+D/gOS15Q==,
+ integrity: sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==,
}
engines: { node: '>=18' }
cpu: [x64]
os: [openbsd]
- '@esbuild/sunos-x64@0.21.5':
+ '@esbuild/sunos-x64@0.17.19':
resolution:
{
- integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==,
+ integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==,
}
engines: { node: '>=12' }
cpu: [x64]
os: [sunos]
- '@esbuild/sunos-x64@0.23.0':
+ '@esbuild/sunos-x64@0.24.0':
resolution:
{
- integrity: sha512-BFelBGfrBwk6LVrmFzCq1u1dZbG4zy/Kp93w2+y83Q5UGYF1d8sCzeLI9NXjKyujjBBniQa8R8PzLFAUrSM9OA==,
+ integrity: sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==,
}
engines: { node: '>=18' }
cpu: [x64]
os: [sunos]
- '@esbuild/sunos-x64@0.24.0':
+ '@esbuild/sunos-x64@0.25.5':
resolution:
{
- integrity: sha512-jVzdzsbM5xrotH+W5f1s+JtUy1UWgjU0Cf4wMvffTB8m6wP5/kx0KiaLHlbJO+dMgtxKV8RQ/JvtlFcdZ1zCPA==,
+ integrity: sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==,
}
engines: { node: '>=18' }
cpu: [x64]
os: [sunos]
- '@esbuild/win32-arm64@0.21.5':
+ '@esbuild/win32-arm64@0.17.19':
resolution:
{
- integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==,
+ integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==,
}
engines: { node: '>=12' }
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.23.0':
+ '@esbuild/win32-arm64@0.24.0':
resolution:
{
- integrity: sha512-lY6AC8p4Cnb7xYHuIxQ6iYPe6MfO2CC43XXKo9nBXDb35krYt7KGhQnOkRGar5psxYkircpCqfbNDB4uJbS2jQ==,
+ integrity: sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==,
}
engines: { node: '>=18' }
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.24.0':
+ '@esbuild/win32-arm64@0.25.5':
resolution:
{
- integrity: sha512-iKc8GAslzRpBytO2/aN3d2yb2z8XTVfNV0PjGlCxKo5SgWmNXx82I/Q3aG1tFfS+A2igVCY97TJ8tnYwpUWLCA==,
+ integrity: sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==,
}
engines: { node: '>=18' }
cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.21.5':
+ '@esbuild/win32-ia32@0.17.19':
resolution:
{
- integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==,
+ integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==,
}
engines: { node: '>=12' }
cpu: [ia32]
os: [win32]
- '@esbuild/win32-ia32@0.23.0':
+ '@esbuild/win32-ia32@0.24.0':
resolution:
{
- integrity: sha512-7L1bHlOTcO4ByvI7OXVI5pNN6HSu6pUQq9yodga8izeuB1KcT2UkHaH6118QJwopExPn0rMHIseCTx1CRo/uNA==,
+ integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==,
}
engines: { node: '>=18' }
cpu: [ia32]
os: [win32]
- '@esbuild/win32-ia32@0.24.0':
+ '@esbuild/win32-ia32@0.25.5':
resolution:
{
- integrity: sha512-vQW36KZolfIudCcTnaTpmLQ24Ha1RjygBo39/aLkM2kmjkWmZGEJ5Gn9l5/7tzXA42QGIoWbICfg6KLLkIw6yw==,
+ integrity: sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==,
}
engines: { node: '>=18' }
cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.21.5':
+ '@esbuild/win32-x64@0.17.19':
resolution:
{
- integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==,
+ integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==,
}
engines: { node: '>=12' }
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.23.0':
+ '@esbuild/win32-x64@0.24.0':
resolution:
{
- integrity: sha512-Arm+WgUFLUATuoxCJcahGuk6Yj9Pzxd6l11Zb/2aAuv5kWWvvfhLFo2fni4uSK5vzlUdCGZ/BdV5tH8klj8p8g==,
+ integrity: sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==,
}
engines: { node: '>=18' }
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.24.0':
+ '@esbuild/win32-x64@0.25.5':
resolution:
{
- integrity: sha512-7IAFPrjSQIJrGsK6flwg7NFmwBoSTyF3rl7If0hNUFQU4ilTsEPL6GuMuU9BfIWVVGuRnuIidkSMC+c0Otu8IA==,
+ integrity: sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==,
}
engines: { node: '>=18' }
cpu: [x64]
@@ -3040,118 +3191,156 @@ packages:
}
deprecated: Use @eslint/object-schema instead
- '@inquirer/checkbox@4.0.3':
+ '@inquirer/checkbox@4.1.9':
resolution:
{
- integrity: sha512-CEt9B4e8zFOGtc/LYeQx5m8nfqQeG/4oNNv0PUvXGG0mys+wR/WbJ3B4KfSQ4Fcr3AQfpiuFOi3fVvmPfvNbxw==,
+ integrity: sha512-DBJBkzI5Wx4jFaYm221LHvAhpKYkhVS0k9plqHwaHhofGNxvYB7J3Bz8w+bFJ05zaMb0sZNHo4KdmENQFlNTuQ==,
}
engines: { node: '>=18' }
peerDependencies:
'@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
- '@inquirer/confirm@5.0.2':
+ '@inquirer/confirm@5.1.10':
resolution:
{
- integrity: sha512-KJLUHOaKnNCYzwVbryj3TNBxyZIrr56fR5N45v6K9IPrbT6B7DcudBMfylkV1A8PUdJE15mybkEQyp2/ZUpxUA==,
+ integrity: sha512-FxbQ9giWxUWKUk2O5XZ6PduVnH2CZ/fmMKMBkH71MHJvWr7WL5AHKevhzF1L5uYWB2P548o1RzVxrNd3dpmk6g==,
}
engines: { node: '>=18' }
peerDependencies:
'@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
- '@inquirer/core@10.1.1':
+ '@inquirer/core@10.1.14':
resolution:
{
- integrity: sha512-rmZVXy9iZvO3ZStEe/ayuuwIJ23LSF13aPMlLMTQARX6lGUBDHGV8UB5i9MRrfy0+mZwt5/9bdy8llszSD3NQA==,
+ integrity: sha512-Ma+ZpOJPewtIYl6HZHZckeX1STvDnHTCB2GVINNUlSEn2Am6LddWwfPkIGY0IUFVjUUrr/93XlBwTK6mfLjf0A==,
}
engines: { node: '>=18' }
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
- '@inquirer/editor@4.2.0':
+ '@inquirer/editor@4.2.14':
resolution:
{
- integrity: sha512-Z3LeGsD3WlItDqLxTPciZDbGtm0wrz7iJGS/uUxSiQxef33ZrBq7LhsXg30P7xrWz1kZX4iGzxxj5SKZmJ8W+w==,
+ integrity: sha512-yd2qtLl4QIIax9DTMZ1ZN2pFrrj+yL3kgIWxm34SS6uwCr0sIhsNyudUjAo5q3TqI03xx4SEBkUJqZuAInp9uA==,
}
engines: { node: '>=18' }
peerDependencies:
'@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
- '@inquirer/expand@4.0.3':
+ '@inquirer/expand@4.0.16':
resolution:
{
- integrity: sha512-MDszqW4HYBpVMmAoy/FA9laLrgo899UAga0itEjsYrBthKieDZNc0e16gdn7N3cQ0DSf/6zsTBZMuDYDQU4ktg==,
+ integrity: sha512-oiDqafWzMtofeJyyGkb1CTPaxUkjIcSxePHHQCfif8t3HV9pHcw1Kgdw3/uGpDvaFfeTluwQtWiqzPVjAqS3zA==,
}
engines: { node: '>=18' }
peerDependencies:
'@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
- '@inquirer/figures@1.0.8':
+ '@inquirer/figures@1.0.12':
resolution:
{
- integrity: sha512-tKd+jsmhq21AP1LhexC0pPwsCxEhGgAkg28byjJAd+xhmIs8LUX8JbUc3vBf3PhLxWiB5EvyBE5X7JSPAqMAqg==,
+ integrity: sha512-MJttijd8rMFcKJC8NYmprWr6hD3r9Gd9qUC0XwPNwoEPWSMVJwA2MlXxF+nhZZNMY+HXsWa+o7KY2emWYIn0jQ==,
}
engines: { node: '>=18' }
- '@inquirer/input@4.1.0':
+ '@inquirer/input@4.2.0':
resolution:
{
- integrity: sha512-16B8A9hY741yGXzd8UJ9R8su/fuuyO2e+idd7oVLYjP23wKJ6ILRIIHcnXe8/6AoYgwRS2zp4PNsW/u/iZ24yg==,
+ integrity: sha512-opqpHPB1NjAmDISi3uvZOTrjEEU5CWVu/HBkDby8t93+6UxYX0Z7Ps0Ltjm5sZiEbWenjubwUkivAEYQmy9xHw==,
}
engines: { node: '>=18' }
peerDependencies:
'@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
- '@inquirer/number@3.0.3':
+ '@inquirer/number@3.0.16':
resolution:
{
- integrity: sha512-HA/W4YV+5deKCehIutfGBzNxWH1nhvUC67O4fC9ufSijn72yrYnRmzvC61dwFvlXIG1fQaYWi+cqNE9PaB9n6Q==,
+ integrity: sha512-kMrXAaKGavBEoBYUCgualbwA9jWUx2TjMA46ek+pEKy38+LFpL9QHlTd8PO2kWPUgI/KB+qi02o4y2rwXbzr3Q==,
}
engines: { node: '>=18' }
peerDependencies:
'@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
- '@inquirer/password@4.0.3':
+ '@inquirer/password@4.0.16':
resolution:
{
- integrity: sha512-3qWjk6hS0iabG9xx0U1plwQLDBc/HA/hWzLFFatADpR6XfE62LqPr9GpFXBkLU0KQUaIXZ996bNG+2yUvocH8w==,
+ integrity: sha512-g8BVNBj5Zeb5/Y3cSN+hDUL7CsIFDIuVxb9EPty3lkxBaYpjL5BNRKSYOF9yOLe+JOcKFd+TSVeADQ4iSY7rbg==,
}
engines: { node: '>=18' }
peerDependencies:
'@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
- '@inquirer/prompts@7.1.0':
+ '@inquirer/prompts@7.5.1':
resolution:
{
- integrity: sha512-5U/XiVRH2pp1X6gpNAjWOglMf38/Ys522ncEHIKT1voRUvSj/DQnR22OVxHnwu5S+rCFaUiPQ57JOtMFQayqYA==,
+ integrity: sha512-5AOrZPf2/GxZ+SDRZ5WFplCA2TAQgK3OYrXCYmJL5NaTu4ECcoWFlfUZuw7Es++6Njv7iu/8vpYJhuzxUH76Vg==,
}
engines: { node: '>=18' }
peerDependencies:
'@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
- '@inquirer/rawlist@4.0.3':
+ '@inquirer/rawlist@4.1.4':
resolution:
{
- integrity: sha512-5MhinSzfmOiZlRoPezfbJdfVCZikZs38ja3IOoWe7H1dxL0l3Z2jAUgbBldeyhhOkELdGvPlBfQaNbeLslib1w==,
+ integrity: sha512-5GGvxVpXXMmfZNtvWw4IsHpR7RzqAR624xtkPd1NxxlV5M+pShMqzL4oRddRkg8rVEOK9fKdJp1jjVML2Lr7TQ==,
}
engines: { node: '>=18' }
peerDependencies:
'@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
- '@inquirer/search@3.0.3':
+ '@inquirer/search@3.0.16':
resolution:
{
- integrity: sha512-mQTCbdNolTGvGGVCJSI6afDwiSGTV+fMLPEIMDJgIV6L/s3+RYRpxt6t0DYnqMQmemnZ/Zq0vTIRwoHT1RgcTg==,
+ integrity: sha512-POCmXo+j97kTGU6aeRjsPyuCpQQfKcMXdeTMw708ZMtWrj5aykZvlUxH4Qgz3+Y1L/cAVZsSpA+UgZCu2GMOMg==,
}
engines: { node: '>=18' }
peerDependencies:
'@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
- '@inquirer/select@4.0.3':
+ '@inquirer/select@4.2.4':
resolution:
{
- integrity: sha512-OZfKDtDE8+J54JYAFTUGZwvKNfC7W/gFCjDkcsO7HnTH/wljsZo9y/FJquOxMy++DY0+9l9o/MOZ8s5s1j5wmw==,
+ integrity: sha512-unTppUcTjmnbl/q+h8XeQDhAqIOmwWYWNyiiP2e3orXrg6tOaa5DHXja9PChCSbChOsktyKgOieRZFnajzxoBg==,
}
engines: { node: '>=18' }
peerDependencies:
'@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
'@inquirer/type@1.5.5':
resolution:
@@ -3160,14 +3349,17 @@ packages:
}
engines: { node: '>=18' }
- '@inquirer/type@3.0.1':
+ '@inquirer/type@3.0.7':
resolution:
{
- integrity: sha512-+ksJMIy92sOAiAccGpcKZUc3bYO07cADnscIxHBknEm3uNts3movSmBofc1908BNy5edKscxYeAdaX1NXkHS6A==,
+ integrity: sha512-PfunHQcjwnju84L+ycmcMKB/pTPIngjUJvfnRhKY6FKPuYXlM4aQCb/nIdTFR6BEhMjFvngzvng/vBAJMZpLSA==,
}
engines: { node: '>=18' }
peerDependencies:
'@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
'@isaacs/cliui@8.0.2':
resolution:
@@ -3305,6 +3497,12 @@ packages:
}
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ '@jridgewell/gen-mapping@0.3.12':
+ resolution:
+ {
+ integrity: sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==,
+ }
+
'@jridgewell/gen-mapping@0.3.5':
resolution:
{
@@ -3344,6 +3542,12 @@ packages:
integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==,
}
+ '@jridgewell/trace-mapping@0.3.29':
+ resolution:
+ {
+ integrity: sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==,
+ }
+
'@jridgewell/trace-mapping@0.3.9':
resolution:
{
@@ -3383,82 +3587,133 @@ packages:
integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==,
}
- '@listr2/prompt-adapter-inquirer@2.0.18':
+ '@listr2/prompt-adapter-inquirer@2.0.22':
resolution:
{
- integrity: sha512-0hz44rAcrphyXcA8IS7EJ2SCoaBZD2u5goE8S/e+q/DL+dOGpqpcLidVOFeLG3VgML62SXmfRLAhWt0zL1oW4Q==,
+ integrity: sha512-hV36ZoY+xKL6pYOt1nPNnkciFkn89KZwqLhAFzJvYysAvL5uBQdiADZx/8bIDXIukzzwG0QlPYolgMzQUtKgpQ==,
}
engines: { node: '>=18.0.0' }
peerDependencies:
'@inquirer/prompts': '>= 3 < 8'
- '@lmdb/lmdb-darwin-arm64@3.1.5':
+ '@lmdb/lmdb-darwin-arm64@3.3.0':
resolution:
{
- integrity: sha512-ue5PSOzHMCIYrfvPP/MRS6hsKKLzqqhcdAvJCO8uFlDdj598EhgnacuOTuqA6uBK5rgiZXfDWyb7DVZSiBKxBA==,
+ integrity: sha512-LipbQobyEfQtu8WixasaFUZZ+JCGlho4OWwWIQ5ol0rB1RKkcZvypu7sS1CBvofBGVAa3vbOh8IOGQMrbmL5dg==,
}
cpu: [arm64]
os: [darwin]
- '@lmdb/lmdb-darwin-x64@3.1.5':
+ '@lmdb/lmdb-darwin-x64@3.3.0':
resolution:
{
- integrity: sha512-CGhsb0R5vE6mMNCoSfxHFD8QTvBHM51gs4DBeigTYHWnYv2V5YpJkC4rMo5qAAFifuUcc0+a8a3SIU0c9NrfNw==,
+ integrity: sha512-yA+9P+ZeA3vg76BLXWeUomIAjxfmSmR2eg8fueHXDg5Xe1Xmkl9JCKuHXUhtJ+mMVcH12d5k4kJBLbyXTadfGQ==,
}
cpu: [x64]
os: [darwin]
- '@lmdb/lmdb-linux-arm64@3.1.5':
+ '@lmdb/lmdb-linux-arm64@3.3.0':
resolution:
{
- integrity: sha512-LAjaoOcBHGj6fiYB8ureiqPoph4eygbXu4vcOF+hsxiY74n8ilA7rJMmGUT0K0JOB5lmRQHSmor3mytRjS4qeQ==,
+ integrity: sha512-OeWvSgjXXZ/zmtLqqL78I3910F6UYpUubmsUU+iBHo6nTtjkpXms95rJtGrjkWQqwswKBD7xSMplbYC4LEsiPA==,
}
cpu: [arm64]
os: [linux]
- '@lmdb/lmdb-linux-arm@3.1.5':
+ '@lmdb/lmdb-linux-arm@3.3.0':
resolution:
{
- integrity: sha512-3WeW328DN+xB5PZdhSWmqE+t3+44xWXEbqQ+caWJEZfOFdLp9yklBZEbVqVdqzznkoaXJYxTCp996KD6HmANeg==,
+ integrity: sha512-EDYrW9kle+8wI19JCj/PhRnGoCN9bked5cdOPdo1wdgH/HzjgoLPFTn9DHlZccgTEVhp3O+bpWXdN/rWySVvjw==,
}
cpu: [arm]
os: [linux]
- '@lmdb/lmdb-linux-x64@3.1.5':
+ '@lmdb/lmdb-linux-x64@3.3.0':
resolution:
{
- integrity: sha512-k/IklElP70qdCXOQixclSl2GPLFiopynGoKX1FqDd1/H0E3Fo1oPwjY2rEVu+0nS3AOw1sryStdXk8CW3cVIsw==,
+ integrity: sha512-wDd02mt5ScX4+xd6g78zKBr6ojpgCJCTrllCAabjgap5FzuETqOqaQfKhO+tJuGWv/J5q+GIds6uY7rNFueOxg==,
}
cpu: [x64]
os: [linux]
- '@lmdb/lmdb-win32-x64@3.1.5':
+ '@lmdb/lmdb-win32-arm64@3.3.0':
+ resolution:
+ {
+ integrity: sha512-COotWhHJgzXULLiEjOgWQwqig6PoA+6ji6W+sDl6M1HhMXWIymEVHGs0edsVSNtsNSCAWMxJgR3asv6FNX/2EA==,
+ }
+ cpu: [arm64]
+ os: [win32]
+
+ '@lmdb/lmdb-win32-x64@3.3.0':
resolution:
{
- integrity: sha512-KYar6W8nraZfSJspcK7Kp7hdj238X/FNauYbZyrqPBrtsXI1hvI4/KcRcRGP50aQoV7fkKDyJERlrQGMGTZUsA==,
+ integrity: sha512-kqUgQH+l8HDbkAapx+aoko7Ez4X4DqkIraOqY/k0QY5EN/iialVlFpBUXh4wFXzirdmEVjbIUMrceUh0Kh8LeA==,
}
cpu: [x64]
os: [win32]
- '@module-federation/bridge-react-webpack-plugin@0.7.6':
+ '@modern-js/node-bundle-require@2.67.6':
+ resolution:
+ {
+ integrity: sha512-rRiDQkrm3kgn0E/GNrcvqo4c71PaUs2R8Xmpv6GUKbEr6lz7VNgfZmAhdAQPtNfRfiBe+1sFLzEcwfEdDo/dTA==,
+ }
+
+ '@modern-js/utils@2.67.6':
+ resolution:
+ {
+ integrity: sha512-cxY7HsSH0jIN3rlL6RZ0tgzC1tH0gHW++8X6h7sXCNCylhUdbGZI9yTGbpAS8bU7c97NmPaTKg+/ILt00Kju1Q==,
+ }
+
+ '@module-federation/bridge-react-webpack-plugin@0.15.0':
+ resolution:
+ {
+ integrity: sha512-bbinV0gC82x0JGrT6kNV1tQHi4UBxqY79mZJKWVbGpSMPM+nifC9y/nQCYhZZajT7D/5zIHNkP0BKrQmPA7ArA==,
+ }
+
+ '@module-federation/bridge-react-webpack-plugin@0.16.0':
+ resolution:
+ {
+ integrity: sha512-4HP5keHby66ql5NTe3sXgRaSbWuYCxwIrhO+TI5FsJyBVmVlHuc6ZxhdbV7ssU/u4u2ri0qPL9x1ALwnNie/pw==,
+ }
+
+ '@module-federation/cli@0.15.0':
+ resolution:
+ {
+ integrity: sha512-ZFQ7TA7vwSro4n21/+9cGxVkeRU9IcXcQGs1GIToz/JFvomTHbGN33iplR3GNMhuMNyXQ/wxe2gWkEmIBCzW2w==,
+ }
+ engines: { node: '>=16.0.0' }
+ hasBin: true
+
+ '@module-federation/cli@0.16.0':
+ resolution:
+ {
+ integrity: sha512-4H9i7vgkRqvVk8VcbGl8LoFZOwLXnXOyefIwQdpxAyG3i99AzuUScTaD2/uGNq/fM+iybo8DGyWy/P6leNHqBQ==,
+ }
+ engines: { node: '>=16.0.0' }
+ hasBin: true
+
+ '@module-federation/data-prefetch@0.15.0':
resolution:
{
- integrity: sha512-eD1JZDQ+h5WLdA58MmAE1DzLwvFaGJeeam3Tswc/sEUb4QGT86X4Fme+dMTBRYRoAq/tRYql3DlVTFhdmrUVzg==,
+ integrity: sha512-ivAnthD4SbBoT3590qLzCyKELGyfa7nj8BEjWjb6BNrP5Eu8sHX3Q2wHf76QsYfuwErtjaMU87N7dTe2ELZPVg==,
}
+ peerDependencies:
+ react: '>=16.9.0'
+ react-dom: '>=16.9.0'
- '@module-federation/data-prefetch@0.7.6':
+ '@module-federation/data-prefetch@0.16.0':
resolution:
{
- integrity: sha512-AMpfnuIAK/Y5M682BUsnc13ARCEKhEvb0tXF4S+l7jfL08oE9gyo+G/nk0LIzZBO2mLDz5g2AydAERanM6gswQ==,
+ integrity: sha512-+6dxkU5MEORhx5/wrQVMxY/7vW7P23dxn+VCMCtH0FLhocYbyhVtJD+ecEVKI2ZV6WvLRS472u24Fz6C4QJq5A==,
}
peerDependencies:
react: '>=16.9.0'
react-dom: '>=16.9.0'
- '@module-federation/dts-plugin@0.7.6':
+ '@module-federation/dts-plugin@0.15.0':
resolution:
{
- integrity: sha512-K8T8+Ip+fCQkTOxAQbAW47drphN36+WcvcOusn/fsIT+1exdhyvqxSCj8V7MLCtjA9kGDi0jHIGN6MN4p2cV0Q==,
+ integrity: sha512-UztaFAhpCpsy+EUOP1BiqlYpRdD4h2TUITphCmThO1grOCqU7dYYwGjWNy37NtJeykRRznH3FU0+iGBG3Oiw6w==,
}
peerDependencies:
typescript: ^4.9.0 || ^5.0.0
@@ -3467,124 +3722,115 @@ packages:
vue-tsc:
optional: true
- '@module-federation/enhanced@0.7.6':
+ '@module-federation/dts-plugin@0.16.0':
resolution:
{
- integrity: sha512-ivTVuRKhew/25fiblAW22RybYzyacQsvnQG3y9zSNsYbwcj+0u7THWMmsK8vNKxDUpjxuQulCK07BEycDjoB5Q==,
+ integrity: sha512-A5ToViydF/JSdnrpxSKx4y38bGAs9CMXdWetrf9mD0Ha15aB3LQDn+1dFzUaiUk4bHblbzRB6BZnKFy7rPzB8g==,
}
peerDependencies:
typescript: ^4.9.0 || ^5.0.0
vue-tsc: '>=1.0.24'
- webpack: ^5.0.0
peerDependenciesMeta:
- typescript:
- optional: true
vue-tsc:
optional: true
- webpack:
- optional: true
-
- '@module-federation/error-codes@0.7.6':
- resolution:
- {
- integrity: sha512-XVzX/sRFj1h5JvOOVMoFppxq0t1t3o/AlEICHgWX+dybIwJgz9g4gihZOWVZfz5/xsKGcUwdH5X7Z2nkuYhJEw==,
- }
-
- '@module-federation/managers@0.7.6':
- resolution:
- {
- integrity: sha512-NW0LJ6TL13oN004D9e50EalcGZyTYHHgyaeKOc90Omb/HMeHxjyhHx7wl1TLRwVN2E5Rk+IO0JrwgrdlNMfAzg==,
- }
-
- '@module-federation/manifest@0.7.6':
- resolution:
- {
- integrity: sha512-xBrFwLjDMUjKRnp+P4X29ZNyhgXSsp+SfrBxVsKJpEESOHalDoNClbo6gXvZAvkBZyo9sY3SJhAwduDwNkg04w==,
- }
- '@module-federation/node@2.6.11':
+ '@module-federation/enhanced@0.15.0':
resolution:
{
- integrity: sha512-ytCNML9Q9dQ7Xi/pTYp4Y+yP/YUiFyyCa8BEKnSt5Ipiqtu4QMxj46EkOIgvLv0nSlK+xOVgAzqtXLI89SfhCg==,
+ integrity: sha512-YzGcjdggtR+VrNdIgT1nvhT+V6I+LnrdsLV3YfOB0iVkOe4+YFbDLZJK16CuYRSm/HTR38LVbziE/6tWcibKYw==,
}
+ hasBin: true
peerDependencies:
- next: '*'
- react: ^16||^17||^18
- react-dom: ^16||^17||^18
- webpack: ^5.40.0
+ typescript: ^4.9.0 || ^5.0.0
+ vue-tsc: '>=1.0.24'
+ webpack: ^5.0.0
peerDependenciesMeta:
- next:
+ typescript:
optional: true
- react:
+ vue-tsc:
optional: true
- react-dom:
+ webpack:
optional: true
- '@module-federation/rspack@0.7.6':
+ '@module-federation/enhanced@0.16.0':
resolution:
{
- integrity: sha512-alfX85C+2AQLXGrtpa08ImwhHIGwFIkJ/6i/XhxpYL5iFu0mC0xRIJPJUw0tiBWdFpP4p+Ykij3hP3FqfvaiKg==,
+ integrity: sha512-ShkQeNXDBLmKMpOF3B+omXU59lVvogsEzRNmNxnnTNz+/zd/MgHxLwOLcNr2bNxdDPk0Ejz/n9GXG4YQKDaJpA==,
}
+ hasBin: true
peerDependencies:
typescript: ^4.9.0 || ^5.0.0
vue-tsc: '>=1.0.24'
+ webpack: ^5.0.0
peerDependenciesMeta:
typescript:
optional: true
vue-tsc:
optional: true
+ webpack:
+ optional: true
+
+ '@module-federation/error-codes@0.15.0':
+ resolution:
+ {
+ integrity: sha512-CFJSF+XKwTcy0PFZ2l/fSUpR4z247+Uwzp1sXVkdIfJ/ATsnqf0Q01f51qqSEA6MYdQi6FKos9FIcu3dCpQNdg==,
+ }
- '@module-federation/runtime-tools@0.5.1':
+ '@module-federation/error-codes@0.16.0':
resolution:
{
- integrity: sha512-nfBedkoZ3/SWyO0hnmaxuz0R0iGPSikHZOAZ0N/dVSQaIzlffUo35B5nlC2wgWIc0JdMZfkwkjZRrnuuDIJbzg==,
+ integrity: sha512-TfmA45b8vvISniGudMg8jjIy1q3tLPon0QN/JdFp5f8AJ8/peICN5b+dkEQnWsAVg2fEusYhk9dO7z3nUeJM8A==,
}
- '@module-federation/runtime-tools@0.7.6':
+ '@module-federation/inject-external-runtime-core-plugin@0.15.0':
resolution:
{
- integrity: sha512-SvokF6gn2sNrTEPG51H0LrowHnf3iNfznO2PzKpxAhZOBdb1pm0wJPwWSMHYrjMdDpjr7bzaqAywnkHdA6lqeQ==,
+ integrity: sha512-D6+FO2oj2Gr6QpfWv3i9RI9VJM2IFCMiFQKg5zOpKw1qdrPRWb35fiXAXGjw9RrVgrZz0Z1b9OP4zC9hfbpnQQ==,
}
+ peerDependencies:
+ '@module-federation/runtime-tools': 0.15.0
- '@module-federation/runtime@0.5.1':
+ '@module-federation/inject-external-runtime-core-plugin@0.16.0':
resolution:
{
- integrity: sha512-xgiMUWwGLWDrvZc9JibuEbXIbhXg6z2oUkemogSvQ4LKvrl/n0kbqP1Blk669mXzyWbqtSp6PpvNdwaE1aN5xQ==,
+ integrity: sha512-kVW5DTxg1K/sqadVvg/r2s5ArZVH4VaVsw+/24dllfUQwn7opVorVMrI491zqz8NpSBjN2MHykWMLPQnSW659g==,
}
+ peerDependencies:
+ '@module-federation/runtime-tools': 0.16.0
- '@module-federation/runtime@0.7.6':
+ '@module-federation/managers@0.15.0':
resolution:
{
- integrity: sha512-TEEDbGwaohZ2dMa+Sk/Igq8XpcyfjqJfbL20mdAZeifSFVZYRSCaTd/xIXP7pEw8+5BaCMc4YfCf/XcjFAUrVA==,
+ integrity: sha512-YMIiFRgMHtuMcLBgOYyfkFpwU9vo6l0VjOZE5Wdr33DltQBUgp9Lo8+2AkyZ4TTkelqjvUWSNKKYV3MV4GL7gw==,
}
- '@module-federation/sdk@0.5.1':
+ '@module-federation/managers@0.16.0':
resolution:
{
- integrity: sha512-exvchtjNURJJkpqjQ3/opdbfeT2wPKvrbnGnyRkrwW5o3FH1LaST1tkiNviT6OXTexGaVc2DahbdniQHVtQ7pA==,
+ integrity: sha512-ySWz7j+D9CjKDWgSKkAOTIn7m1Jd8BTNglcsMK66jL3Z76kYFX+oUtogJXu5mV/MiHUkTyp6Pv8AEeaTArdgBw==,
}
- '@module-federation/sdk@0.7.6':
+ '@module-federation/manifest@0.15.0':
resolution:
{
- integrity: sha512-MFE+RtsHnutZOCp2eKpa3A/yzZ8tOPmjX7QRdVnB2qqR9JA2SH3ZP5+cYq76tzFQZvU1BCWAQVNMvqGOW2yVZQ==,
+ integrity: sha512-x+UVFkdoKiNZhpUO8H/9jlM3nmC5bIApZvbC2TQuNva+ElCPotdhEO8jduiVkBnc2lr8D9qnFm8U5Kx/aFnGlA==,
}
- '@module-federation/third-party-dts-extractor@0.7.6':
+ '@module-federation/manifest@0.16.0':
resolution:
{
- integrity: sha512-JME76/rgr41AKXG6kUTQXdQJiMCypN3qHOgPv4VuIag10UdLo/0gdeN6PYronvYmvPOQMfYev80GcEwl4l531A==,
+ integrity: sha512-O9UY4JDlzXmZWzxuvG9dqGForZWcz0Lh5IU9GyPOCDNysVLAejwuwO/Vptohs0D2T3C8U0x/Bd29XqOVu3J/kw==,
}
- '@module-federation/utilities@3.1.29':
+ '@module-federation/node@2.7.8':
resolution:
{
- integrity: sha512-yhHOgm3mkZBvQzT4HoBJAVhGIa7Nfhpd4Zdc11g0vYEMapU6lfN5HHipUFdj6bLUzHhDyrY6CaF3syqTuabAfQ==,
+ integrity: sha512-z1b8vvzswPmHqwegQCJ7M/doJ1uTJilyEXAzS0STmWzYTV16I4I6IalIgOjHr8JknMzs7GfF2ja1S+2AjiEfrg==,
}
peerDependencies:
next: '*'
- react: ^16 || ^17 || ^18
- react-dom: ^16 || ^17 || ^18
+ react: ^16||^17||^18||^19
+ react-dom: ^16||^17||^18||^19
webpack: ^5.40.0
peerDependenciesMeta:
next:
@@ -3594,59 +3840,149 @@ packages:
react-dom:
optional: true
- '@module-federation/webpack-bundler-runtime@0.5.1':
+ '@module-federation/rspack@0.15.0':
resolution:
{
- integrity: sha512-mMhRFH0k2VjwHt3Jol9JkUsmI/4XlrAoBG3E0o7HoyoPYv1UFOWyqAflfANcUPgbYpvqmyLzDcO+3IT36LXnrA==,
+ integrity: sha512-nRz0JHcoTz+M5A+wXCG3981lmPeEm91EZe4q5GVfbVhvlAf/Ctd26qSz4lXuyUA1Ar5afBTxKvqWy7xh4wcg2A==,
}
+ peerDependencies:
+ '@rspack/core': '>=0.7'
+ typescript: ^4.9.0 || ^5.0.0
+ vue-tsc: '>=1.0.24'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ vue-tsc:
+ optional: true
- '@module-federation/webpack-bundler-runtime@0.7.6':
+ '@module-federation/rspack@0.16.0':
resolution:
{
- integrity: sha512-kB9hQ0BfwNAcQWGskDEOxYP2z2bB/1ABXKr8MDomCFl2mbW3vvfYMQrb8UhJmJvE3rbGI/iXhJUdgBLNREnjUg==,
+ integrity: sha512-42JiUVqVevosbwxNKV2KxOyrE6BGQXneUjg8AE7+K9pm4p0j180se5xpFerDMQf2blU4gJs4Wjgpj5q1EFQLUw==,
}
+ peerDependencies:
+ '@rspack/core': '>=0.7'
+ typescript: ^4.9.0 || ^5.0.0
+ vue-tsc: '>=1.0.24'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ vue-tsc:
+ optional: true
- '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
+ '@module-federation/runtime-core@0.15.0':
resolution:
{
- integrity: sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==,
+ integrity: sha512-RYzI61fRDrhyhaEOXH3AgIGlHiot0wPFXu7F43cr+ZnTi+VlSYWLdlZ4NBuT9uV6JSmH54/c+tEZm5SXgKR2sQ==,
}
- cpu: [arm64]
- os: [darwin]
- '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.3':
+ '@module-federation/runtime-core@0.16.0':
resolution:
{
- integrity: sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw==,
+ integrity: sha512-5SECQowG4hlUVBRk/y6bnYLfxbsl5NcMmqn043WPe7NDOhGQWbTuYibJ3Bk+ZBv5U4uYLEmXipBGDc1FKsHklQ==,
}
- cpu: [x64]
- os: [darwin]
- '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.3':
+ '@module-federation/runtime-tools@0.15.0':
resolution:
{
- integrity: sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==,
+ integrity: sha512-kzFn3ObUeBp5vaEtN1WMxhTYBuYEErxugu1RzFUERD21X3BZ+b4cWwdFJuBDlsmVjctIg/QSOoZoPXRKAO0foA==,
}
- cpu: [arm64]
- os: [linux]
- '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.3':
+ '@module-federation/runtime-tools@0.16.0':
resolution:
{
- integrity: sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==,
+ integrity: sha512-OzmXNluXBQ2E6znzX4m9CJt1MFHVGmbN8c8MSKcYIDcLzLSKBQAiaz9ZUMhkyWx2YrPgD134glyPEqJrc+fY8A==,
}
- cpu: [arm]
- os: [linux]
- '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.3':
+ '@module-federation/runtime@0.15.0':
resolution:
{
- integrity: sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg==,
+ integrity: sha512-dTPsCNum9Bhu3yPOcrPYq0YnM9eCMMMNB1wuiqf1+sFbQlNApF0vfZxooqz3ln0/MpgE0jerVvFsLVGfqvC9Ug==,
}
- cpu: [x64]
- os: [linux]
- '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3':
+ '@module-federation/runtime@0.16.0':
+ resolution:
+ {
+ integrity: sha512-6o84WI8Qhc9O3HwPLx89kTvOSkyUOHQr73R/zr0I04sYhlMJgw5xTwXeGE7bQAmNgbJclzW9Kh7JTP7+3o3CHg==,
+ }
+
+ '@module-federation/sdk@0.15.0':
+ resolution:
+ {
+ integrity: sha512-PWiYbGcJrKUD6JZiEPihrXhV3bgXdll4bV7rU+opV7tHaun+Z0CdcawjZ82Xnpb8MCPGmqHwa1MPFeUs66zksw==,
+ }
+
+ '@module-federation/sdk@0.16.0':
+ resolution:
+ {
+ integrity: sha512-UXJW1WWuDoDmScX0tpISjl4xIRPzAiN62vg9etuBdAEUM+ja9rz/zwNZaByiUPFS2aqlj2RHenCRvIapE8mYEg==,
+ }
+
+ '@module-federation/third-party-dts-extractor@0.15.0':
+ resolution:
+ {
+ integrity: sha512-rML74G1NB9wtHubXP+ZTMI5HZkYypN/E93w8Zkwr6rc/k1eoZZza2lghw2znCNeu3lDlhvI9i4iaVsJQrX4oQA==,
+ }
+
+ '@module-federation/third-party-dts-extractor@0.16.0':
+ resolution:
+ {
+ integrity: sha512-Q/stS4DshYCHWmsHnd7sbtbBieB4XjQ7cf5EZzWDd9DVpRaghXbt4rDhP+Vwcg2MM6RvmxQFcapiILMBzxMvJQ==,
+ }
+
+ '@module-federation/webpack-bundler-runtime@0.15.0':
+ resolution:
+ {
+ integrity: sha512-i+3wu2Ljh2TmuUpsnjwZVupOVqV50jP0ndA8PSP4gwMKlgdGeaZ4VH5KkHAXGr2eiYUxYLMrJXz1+eILJqeGDg==,
+ }
+
+ '@module-federation/webpack-bundler-runtime@0.16.0':
+ resolution:
+ {
+ integrity: sha512-yqIDQTelJZP0Rxml0OXv4Er8Kbdxy7NFh6PCzPwDFWI1SkiokJ3uXQJBvtlxZ3lOnCDYOzdHstqa8sJG4JP02Q==,
+ }
+
+ '@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
+ resolution:
+ {
+ integrity: sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==,
+ }
+ cpu: [arm64]
+ os: [darwin]
+
+ '@msgpackr-extract/msgpackr-extract-darwin-x64@3.0.3':
+ resolution:
+ {
+ integrity: sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw==,
+ }
+ cpu: [x64]
+ os: [darwin]
+
+ '@msgpackr-extract/msgpackr-extract-linux-arm64@3.0.3':
+ resolution:
+ {
+ integrity: sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==,
+ }
+ cpu: [arm64]
+ os: [linux]
+
+ '@msgpackr-extract/msgpackr-extract-linux-arm@3.0.3':
+ resolution:
+ {
+ integrity: sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==,
+ }
+ cpu: [arm]
+ os: [linux]
+
+ '@msgpackr-extract/msgpackr-extract-linux-x64@3.0.3':
+ resolution:
+ {
+ integrity: sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg==,
+ }
+ cpu: [x64]
+ os: [linux]
+
+ '@msgpackr-extract/msgpackr-extract-win32-x64@3.0.3':
resolution:
{
integrity: sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ==,
@@ -3805,26 +4141,32 @@ packages:
}
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==,
}
- '@ngtools/webpack@19.0.4':
+ '@ngtools/webpack@20.0.5':
resolution:
{
- integrity: sha512-N3WCbQz5ipdAZoSWHNf81RLET6+isq35+GZu9u0StpFtJCpXAmRRAv4vdMUYL7DLOzRmvEgwww6Rd5AwGeLFSw==,
+ integrity: sha512-XH+NTCaOT0gBN7XXmNgMSOsQ0VXwv6E/dKcg1iu4DqYpxklYZ7EdhgVZn5vhwpqff3VRwJ8VFzp4U38AuppXrg==,
}
engines:
{
- node: ^18.19.1 || ^20.11.1 || >=22.0.0,
+ node: ^20.19.0 || ^22.12.0 || >=24.0.0,
npm: ^6.11.0 || ^7.5.6 || >=8.0.0,
yarn: '>= 1.13.0',
}
peerDependencies:
- '@angular/compiler-cli': ^19.0.0
- typescript: '>=5.5 <5.7'
+ '@angular/compiler-cli': ^20.0.0
+ typescript: '>=5.8 <5.9'
webpack: ^5.54.0
'@nodelib/fs.scandir@2.1.5':
@@ -3912,53 +4254,62 @@ packages:
}
engines: { node: ^18.17.0 || >=20.5.0 }
- '@nx/angular@20.2.1':
+ '@nx/angular@21.2.2':
resolution:
{
- integrity: sha512-gXaYO9ECwg397ueA/WCWHrojksaXbNv+erdjXXLG973KNcQFzJqLS/l/1IktVNu0OpQvdAVqCKTpXN5RYlxCJA==,
+ integrity: sha512-fDBx2QmxvnPEzLjqFiauDt8o9nhsZL4ortcIbdlGXgHvU78Wvj3q/joI9zCXsvbT62xJxNubb3fVafl79xLjgQ==,
}
peerDependencies:
- '@angular-devkit/build-angular': '>= 17.0.0 < 20.0.0'
- '@angular-devkit/core': '>= 17.0.0 < 20.0.0'
- '@angular-devkit/schematics': '>= 17.0.0 < 20.0.0'
- '@schematics/angular': '>= 17.0.0 < 20.0.0'
+ '@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'
rxjs: ^6.5.3 || ^7.5.0
+ peerDependenciesMeta:
+ '@angular-devkit/build-angular':
+ optional: true
+ '@angular/build':
+ optional: true
+ ng-packagr:
+ optional: true
- '@nx/cypress@20.2.1':
+ '@nx/cypress@21.2.2':
resolution:
{
- integrity: sha512-4O3HzajFEI4xjr0LUMI7h+HVMSHywFRwln9Ud3qrvMXy3bbu42dRCOgBJ4qeGs7KUAjGcxlzK0dgq7AXm/vsRw==,
+ integrity: sha512-5yzhsof7aRNNutCRDVy1zSb04z9ZhrYRaeK+uxoTTwBmzPRtieZCPQhfPr171cEIQVbZhyK/7HYtb0Zji8xaKA==,
}
peerDependencies:
- cypress: '>= 3 < 14'
+ cypress: '>= 3 < 15'
peerDependenciesMeta:
cypress:
optional: true
- '@nx/devkit@20.2.1':
+ '@nx/devkit@21.2.2':
resolution:
{
- integrity: sha512-boNTu7Z7oHkYjrYg5Wzg+cQfbEJ2nntRj1eI99w8mp4qz2B4PEEjJOB0BZafR54ZcKpGEbyp/QBB945GsjTUbw==,
+ integrity: sha512-fBeFY8wW9cb6AWjPGNZVa8nhYpDVu1hDPirxy+Z0Uxe3uo6BfwP9ZrUVIj99yGi2accEcvNx0ccygaa0aPzKng==,
}
peerDependencies:
- nx: '>= 19 <= 21'
+ nx: 21.2.2
- '@nx/eslint-plugin@20.2.1':
+ '@nx/eslint-plugin@21.2.2':
resolution:
{
- integrity: sha512-cgJWWuORPOWssxq0qC7ZWOiqZoa4cH4kyVMIjsv6CAKFfFvUjIOu/nH19WeRIt8KgTEot3l6li/f+XmYo0GfFw==,
+ integrity: sha512-3QeRTDrRBrdL3mieWFTTaRvw1+FMa/KZAJn854JGjjSTXbFvrQXZQ+vY/n9VYkCrOpf9L5FWL7dw1MP05Vt3GQ==,
}
peerDependencies:
'@typescript-eslint/parser': ^6.13.2 || ^7.0.0 || ^8.0.0
- eslint-config-prettier: ^9.0.0
+ eslint-config-prettier: ^10.0.0
peerDependenciesMeta:
eslint-config-prettier:
optional: true
- '@nx/eslint@20.2.1':
+ '@nx/eslint@21.2.2':
resolution:
{
- integrity: sha512-HY3Sy7AOZR9Z5NZ0kv/aagma/7DviYg+dCH4mHBja5nJmzX0XtAwxcTIzJuo2DBNMw/4aDfGtGgwhXyRhnmXsw==,
+ integrity: sha512-YErnbbkD2gXf9mhnk5T4J5j106bITw2qcA4COCuKpycnX/gszSed9OnU1vCsaza0ah+2CoNWioer2pi4x1WcAA==,
}
peerDependencies:
'@zkochan/js-yaml': 0.0.7
@@ -3967,135 +4318,134 @@ packages:
'@zkochan/js-yaml':
optional: true
- '@nx/jest@20.2.1':
+ '@nx/jest@21.2.2':
resolution:
{
- integrity: sha512-bTNF3uHF+y0HvP+09MFEce2eqhSku73O8+akJk4M8eEaXlyWjWG54V0x8cYkZV57D8tYPiYQpWlhtLNkQA45YA==,
+ integrity: sha512-6R0eGmcUSKCxUQNbaz7G+1O6qnyeTY1xsaizD+8TnyZVd732OUb8KBP8OSmtSQ0spKpbQDcu3CMx+w0ZcBUM1g==,
}
- '@nx/js@20.2.1':
+ '@nx/js@21.2.2':
resolution:
{
- integrity: sha512-2Ecsk7VRODXys6IgjVVhq+8zzajJzfes5SOdc82DApuNEb/cqj7gTKZlIFvqjup7t3z5yyXFd2Vi9js/JfCcZQ==,
+ integrity: sha512-mwDHfNRynPTZBQY+EwTaY6nKJrzem4soI84iGDU9XQiLfBdZwjo27UzLsqYVWsDanhmVt7FtNBmpluSpWw/h8g==,
}
peerDependencies:
- verdaccio: ^5.0.4
+ verdaccio: ^6.0.5
peerDependenciesMeta:
verdaccio:
optional: true
- '@nx/module-federation@20.2.1':
+ '@nx/module-federation@21.2.2':
resolution:
{
- integrity: sha512-yGYjU78WaA19WdbDphYnYbEGYPdiFKUtDHdrDedXPGQQT6P7XD38iLDnGJ/dz1XytEKrAgZeBPKqa8lDKxqgoA==,
+ integrity: sha512-jV2D1NcWbLE9UYg/moW7D7eG7TvUdYmcUXrA6H/RbcGHyNwZpu6lyj3x/cypAOdmqUuEPHhMFbNM5HvMCAXTEg==,
}
- '@nx/nx-darwin-arm64@20.2.1':
+ '@nx/nx-darwin-arm64@21.2.2':
resolution:
{
- integrity: sha512-nJcyPZfH6Vq4cG6gRnQ8PcnVOLePeT3exzLnQu0I4I2EtCTPyCSRA3gxoGzZ3qZFMQTsCbwv4HYfdx42AXOTAQ==,
+ integrity: sha512-qDF1SHW9UYzFQBRA3MGLYDPCU/j1ACasAdjv5kMXXBtmg+1WC3mZ/KO84wXJE7j9ImXOPKm9dmiW63LfXteXZw==,
}
- engines: { node: '>= 10' }
cpu: [arm64]
os: [darwin]
- '@nx/nx-darwin-x64@20.2.1':
+ '@nx/nx-darwin-x64@21.2.2':
resolution:
{
- integrity: sha512-SEiN8fjEs010ME4PRP8O9f8qG8AMZBGz8hOkF6ZrdlC+iEi4iyAGpgWFq8PKBlpVW4G5gxR91Y7eVaTKAsgH5w==,
+ integrity: sha512-gdxOcfGonAD+eM5oKKd+2rcrGWmJOfON5HJpLkDfgOO/vyb6FUQub3xUu/JB2RAJ4r6iW/8JZxzheFDIiHDEug==,
}
- engines: { node: '>= 10' }
cpu: [x64]
os: [darwin]
- '@nx/nx-freebsd-x64@20.2.1':
+ '@nx/nx-freebsd-x64@21.2.2':
resolution:
{
- integrity: sha512-/yEKS9q17EG2Ci130McvpZM5YUghH1ql9UXWbVmitufn+RQD90hoblkG/B+cxJeZonrdKAjdpLQ+hfVz+FBd/g==,
+ integrity: sha512-uO+k4AXGchOlzsoE3uljBKYlI84hv15R2CcLfXjbwrIw+0YZOIeZ/pDYNZMpOy1HePTuCVUxaYQCEBO7N2PI3w==,
}
- engines: { node: '>= 10' }
cpu: [x64]
os: [freebsd]
- '@nx/nx-linux-arm-gnueabihf@20.2.1':
+ '@nx/nx-linux-arm-gnueabihf@21.2.2':
resolution:
{
- integrity: sha512-DPtRjTCJ5++stTGtjqYftCb2c0CNed2s2EZZLQuDP+tikTsLm0d3S3ZaU5eHhqZW35tQuMOVweOfC1nJ3/DTSA==,
+ integrity: sha512-7ZaZKJNqQvvXs66GYdvY7kJoZ3wFnaIamjdlFYtH+5oQdCTqRTHb9HsB0/q6pf5nEDCEW/FJkXszKgCfViDZLA==,
}
- engines: { node: '>= 10' }
cpu: [arm]
os: [linux]
- '@nx/nx-linux-arm64-gnu@20.2.1':
+ '@nx/nx-linux-arm64-gnu@21.2.2':
resolution:
{
- integrity: sha512-ggGwHOEP6UjXeqv6DtRxizeBnX/zRZi8BRJbEJBwAt1cAUnLlklk8d+Hmjs+j/FlFXBV9f+ylpAqoYkplFR8jg==,
+ integrity: sha512-M1YuraXtzYTm/HXDAUWN7e009lWFTvpFF1Z38f7IuB07u76ARw1Fb/BcjVYHwt65QR70AcM7MQ5Fpq7PThHPkw==,
}
- engines: { node: '>= 10' }
cpu: [arm64]
os: [linux]
- '@nx/nx-linux-arm64-musl@20.2.1':
+ '@nx/nx-linux-arm64-musl@21.2.2':
resolution:
{
- integrity: sha512-HZBGxsBJUFbWVTiyJxqt0tS8tlvp+Tp0D533mGKW75cU0rv9dnmbtTwkkkx+LXqerjSRvNS3Qtj0Uh2w92Vtig==,
+ integrity: sha512-raXkg8uijQFOgfKadUzwkFetyFb5pQbY0u6aLz0o9Eq5ml82B8ODrHwZdj2YLVNx2bB2Y0nq6R6HeYQRB94xIQ==,
}
- engines: { node: '>= 10' }
cpu: [arm64]
os: [linux]
- '@nx/nx-linux-x64-gnu@20.2.1':
+ '@nx/nx-linux-x64-gnu@21.2.2':
resolution:
{
- integrity: sha512-pTytPwGiPRakqz2PKiWTSRNm9taE1U9n0+kRAAFzbOtzeW+eIoebe5xY5QMoZ+XtIZ6pJM2BUOyMD+/TX57r8Q==,
+ integrity: sha512-je6D2kG8jCB72QVrYRXs4xRrU2g2zQREqODt+s1zI2lWlMDJcBwxDxGtlxXM3mDyeUGCh2s9nlkrA0GCTin1LQ==,
}
- engines: { node: '>= 10' }
cpu: [x64]
os: [linux]
- '@nx/nx-linux-x64-musl@20.2.1':
+ '@nx/nx-linux-x64-musl@21.2.2':
resolution:
{
- integrity: sha512-p3egqe5zmwiDl6xSwHi2K9UZWiKbZ/s/j4qV+pZttzMyNPfhohTeP+VwQqjTeQ1hPBl2YhwmmktEPsIPYJG7YA==,
+ integrity: sha512-ZDCNM0iBACq5Wgb1+JY20jMMRmxQKIDAoCrkxMciSAjh5s/1fGOboqWmKoztwW5g9QPJs/GdOojWbesu4B42eg==,
}
- engines: { node: '>= 10' }
cpu: [x64]
os: [linux]
- '@nx/nx-win32-arm64-msvc@20.2.1':
+ '@nx/nx-win32-arm64-msvc@21.2.2':
resolution:
{
- integrity: sha512-Wujist6k08pjgWWQ1pjXrCArmMgnyIXNVmDP14cWo1KHecBuxNWa9i62PrxQ0K8MLYMcAzLHJxN9t54GzBbd+g==,
+ integrity: sha512-jQRWpp2i5yAYD0FcZWZu6HMVxPWGEEa1DAf9wn7gHsORCehYH91GeOeVmaXcsPEg56uN+QhJhpIRIcDE5Ob4kw==,
}
- engines: { node: '>= 10' }
cpu: [arm64]
os: [win32]
- '@nx/nx-win32-x64-msvc@20.2.1':
+ '@nx/nx-win32-x64-msvc@21.2.2':
resolution:
{
- integrity: sha512-tsEYfNV2+CWSQmbh9TM8cX5wk6F2QAH0tfvt4topyOOaR40eszW8qc/eDM/kkJ5nj87BbNEqPBQAYFE0AP1OMA==,
+ integrity: sha512-qBrVdqYVRV1KQFyRtQbtic/R5ByH9F0kZJoQM3hSmcHgbg2s2+v9ivnaik4L6iX8FbAoCjYYm+J8L42yuOgCJA==,
}
- engines: { node: '>= 10' }
cpu: [x64]
os: [win32]
- '@nx/web@20.2.1':
+ '@nx/rspack@21.2.2':
+ resolution:
+ {
+ integrity: sha512-wOMtsQX9VmvQi2vR8zzP8hqOxaPoy1sn/rCj/1PgnS5UOsAA2aUwnUPB6UWPCxqZA76TY1dYmyq+j8IxKgxV8Q==,
+ }
+ peerDependencies:
+ '@module-federation/enhanced': ^0.15.0
+ '@module-federation/node': ^2.6.26
+
+ '@nx/web@21.2.2':
resolution:
{
- integrity: sha512-o8/onqLqxnPw3vW/QQPjiFVE/K3Hclg8tw4pnlzCxis258ywZc8iAtmIZnDJeO3VenMagjRJdzwOZ49yDFvj2Q==,
+ integrity: sha512-WWskMms4uz6pjv5wXH/0KPokSIexPAjIiuoBVi6EvFt7UG06Z/3h/o7HnepJQAPgjiORASvsedBPKjXqNMfCOQ==,
}
- '@nx/webpack@20.2.1':
+ '@nx/webpack@21.2.2':
resolution:
{
- integrity: sha512-nw64O2qHMXKiMmDi/MdvQUCBAs18AvhrAjigQ2lINsk643Akg1gI/ZvXUZ2GIZLsdNNWT9jHPm66cUfX2mYpPg==,
+ integrity: sha512-GdNugQ+qjal/jhNz4BkZvVA9mxYhplRpvE4ZWwKgj3UYL3ZpfGS6SKMXXS3IOaFmD8yX9my9+DpYQ2rXRd+UvQ==,
}
- '@nx/workspace@20.2.1':
+ '@nx/workspace@21.2.2':
resolution:
{
- integrity: sha512-YJnOyqJDzuTHOWQ/eFCfBwGg0x3ByxBYk4PPF48tUN21TLoXbq39GP+/I3tsRNm9rvhcOTRoGybWu06t21ty4Q==,
+ integrity: sha512-Q/EJgc+QOyFjNcAmMw6zn6BRdoKxaWvrl/WDyiG3vwcmnUCdFlT+KRZ6ux7cVXMEVLLpQIHStxyS3sdGpXl6HA==,
}
'@parcel/watcher-android-arm64@2.5.0':
@@ -4261,14 +4611,6 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.26.0':
- resolution:
- {
- integrity: sha512-gJNwtPDGEaOEgejbaseY6xMFu+CPltsc8/T+diUTTbOQLqD+bnrJq9ulH6WD69TqwqWmrfRAtUv30cCFZlbGTQ==,
- }
- cpu: [arm]
- os: [android]
-
'@rollup/rollup-android-arm-eabi@4.28.1':
resolution:
{
@@ -4277,12 +4619,12 @@ packages:
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.26.0':
+ '@rollup/rollup-android-arm-eabi@4.40.2':
resolution:
{
- integrity: sha512-YJa5Gy8mEZgz5JquFruhJODMq3lTHWLm1fOy+HIANquLzfIOzE9RA5ie3JjCdVb9r46qfAQY/l947V0zfGJ0OQ==,
+ integrity: sha512-JkdNEq+DFxZfUwxvB58tHMHBHVgX23ew41g1OQinthJ+ryhdRk67O31S7sYw8u2lTjHUPFxwar07BBt1KHp/hg==,
}
- cpu: [arm64]
+ cpu: [arm]
os: [android]
'@rollup/rollup-android-arm64@4.28.1':
@@ -4293,13 +4635,13 @@ packages:
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.26.0':
+ '@rollup/rollup-android-arm64@4.40.2':
resolution:
{
- integrity: sha512-ErTASs8YKbqTBoPLp/kA1B1Um5YSom8QAc4rKhg7b9tyyVqDBlQxy7Bf2wW7yIlPGPg2UODDQcbkTlruPzDosw==,
+ integrity: sha512-13unNoZ8NzUmnndhPTkWPWbX3vtHodYmy+I9kuLxN+F+l+x3LdVF7UCu8TWVMt1POHLh6oDHhnOA04n8oJZhBw==,
}
cpu: [arm64]
- os: [darwin]
+ os: [android]
'@rollup/rollup-darwin-arm64@4.28.1':
resolution:
@@ -4309,12 +4651,12 @@ packages:
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.26.0':
+ '@rollup/rollup-darwin-arm64@4.40.2':
resolution:
{
- integrity: sha512-wbgkYDHcdWW+NqP2mnf2NOuEbOLzDblalrOWcPyY6+BRbVhliavon15UploG7PpBRQ2bZJnbmh8o3yLoBvDIHA==,
+ integrity: sha512-Gzf1Hn2Aoe8VZzevHostPX23U7N5+4D36WJNHK88NZHCJr7aVMG4fadqkIf72eqVPGjGc0HJHNuUaUcxiR+N/w==,
}
- cpu: [x64]
+ cpu: [arm64]
os: [darwin]
'@rollup/rollup-darwin-x64@4.28.1':
@@ -4325,13 +4667,13 @@ packages:
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.26.0':
+ '@rollup/rollup-darwin-x64@4.40.2':
resolution:
{
- integrity: sha512-Y9vpjfp9CDkAG4q/uwuhZk96LP11fBz/bYdyg9oaHYhtGZp7NrbkQrj/66DYMMP2Yo/QPAsVHkV891KyO52fhg==,
+ integrity: sha512-47N4hxa01a4x6XnJoskMKTS8XZ0CZMd8YTbINbi+w03A2w4j1RTlnGHOz/P0+Bg1LaVL6ufZyNprSg+fW5nYQQ==,
}
- cpu: [arm64]
- os: [freebsd]
+ cpu: [x64]
+ os: [darwin]
'@rollup/rollup-freebsd-arm64@4.28.1':
resolution:
@@ -4341,12 +4683,12 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.26.0':
+ '@rollup/rollup-freebsd-arm64@4.40.2':
resolution:
{
- integrity: sha512-A/jvfCZ55EYPsqeaAt/yDAG4q5tt1ZboWMHEvKAH9Zl92DWvMIbnZe/f/eOXze65aJaaKbL+YeM0Hz4kLQvdwg==,
+ integrity: sha512-8t6aL4MD+rXSHHZUR1z19+9OFJ2rl1wGKvckN47XFRVO+QL/dUSpKA2SLRo4vMg7ELA8pzGpC+W9OEd1Z/ZqoQ==,
}
- cpu: [x64]
+ cpu: [arm64]
os: [freebsd]
'@rollup/rollup-freebsd-x64@4.28.1':
@@ -4357,13 +4699,13 @@ packages:
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.26.0':
+ '@rollup/rollup-freebsd-x64@4.40.2':
resolution:
{
- integrity: sha512-paHF1bMXKDuizaMODm2bBTjRiHxESWiIyIdMugKeLnjuS1TCS54MF5+Y5Dx8Ui/1RBPVRE09i5OUlaLnv8OGnA==,
+ integrity: sha512-C+AyHBzfpsOEYRFjztcYUFsH4S7UsE9cDtHCtma5BK8+ydOZYgMmWg1d/4KBytQspJCld8ZIujFMAdKG1xyr4Q==,
}
- cpu: [arm]
- os: [linux]
+ cpu: [x64]
+ os: [freebsd]
'@rollup/rollup-linux-arm-gnueabihf@4.28.1':
resolution:
@@ -4373,10 +4715,10 @@ packages:
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.26.0':
+ '@rollup/rollup-linux-arm-gnueabihf@4.40.2':
resolution:
{
- integrity: sha512-cwxiHZU1GAs+TMxvgPfUDtVZjdBdTsQwVnNlzRXC5QzIJ6nhfB4I1ahKoe9yPmoaA/Vhf7m9dB1chGPpDRdGXg==,
+ integrity: sha512-de6TFZYIvJwRNjmW3+gaXiZ2DaWL5D5yGmSYzkdzjBDS3W+B9JQ48oZEsmMvemqjtAFzE16DIBLqd6IQQRuG9Q==,
}
cpu: [arm]
os: [linux]
@@ -4389,12 +4731,12 @@ packages:
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.26.0':
+ '@rollup/rollup-linux-arm-musleabihf@4.40.2':
resolution:
{
- integrity: sha512-4daeEUQutGRCW/9zEo8JtdAgtJ1q2g5oHaoQaZbMSKaIWKDQwQ3Yx0/3jJNmpzrsScIPtx/V+1AfibLisb3AMQ==,
+ integrity: sha512-urjaEZubdIkacKc930hUDOfQPysezKla/O9qV+O89enqsqUmQm8Xj8O/vh0gHg4LYfv7Y7UsE3QjzLQzDYN1qg==,
}
- cpu: [arm64]
+ cpu: [arm]
os: [linux]
'@rollup/rollup-linux-arm64-gnu@4.28.1':
@@ -4405,10 +4747,10 @@ packages:
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.26.0':
+ '@rollup/rollup-linux-arm64-gnu@4.40.2':
resolution:
{
- integrity: sha512-eGkX7zzkNxvvS05ROzJ/cO/AKqNvR/7t1jA3VZDi2vRniLKwAWxUr85fH3NsvtxU5vnUUKFHKh8flIBdlo2b3Q==,
+ integrity: sha512-KlE8IC0HFOC33taNt1zR8qNlBYHj31qGT1UqWqtvR/+NuCVhfufAq9fxO8BMFC22Wu0rxOwGVWxtCMvZVLmhQg==,
}
cpu: [arm64]
os: [linux]
@@ -4421,6 +4763,14 @@ packages:
cpu: [arm64]
os: [linux]
+ '@rollup/rollup-linux-arm64-musl@4.40.2':
+ resolution:
+ {
+ integrity: sha512-j8CgxvfM0kbnhu4XgjnCWJQyyBOeBI1Zq91Z850aUddUmPeQvuAy6OiMdPS46gNFgy8gN1xkYyLgwLYZG3rBOg==,
+ }
+ cpu: [arm64]
+ os: [linux]
+
'@rollup/rollup-linux-loongarch64-gnu@4.28.1':
resolution:
{
@@ -4429,12 +4779,12 @@ packages:
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.26.0':
+ '@rollup/rollup-linux-loongarch64-gnu@4.40.2':
resolution:
{
- integrity: sha512-Odp/lgHbW/mAqw/pU21goo5ruWsytP7/HCC/liOt0zcGG0llYWKrd10k9Fj0pdj3prQ63N5yQLCLiE7HTX+MYw==,
+ integrity: sha512-Ybc/1qUampKuRF4tQXc7G7QY9YRyeVSykfK36Y5Qc5dmrIxwFhrOzqaVTNoZygqZ1ZieSWTibfFhQ5qK8jpWxw==,
}
- cpu: [ppc64]
+ cpu: [loong64]
os: [linux]
'@rollup/rollup-linux-powerpc64le-gnu@4.28.1':
@@ -4445,12 +4795,12 @@ packages:
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.26.0':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.40.2':
resolution:
{
- integrity: sha512-MBR2ZhCTzUgVD0OJdTzNeF4+zsVogIR1U/FsyuFerwcqjZGvg2nYe24SAHp8O5sN8ZkRVbHwlYeHqcSQ8tcYew==,
+ integrity: sha512-3FCIrnrt03CCsZqSYAOW/k9n625pjpuMzVfeI+ZBUSDT3MVIFDSPfSUgIl9FqUftxcUXInvFah79hE1c9abD+Q==,
}
- cpu: [riscv64]
+ cpu: [ppc64]
os: [linux]
'@rollup/rollup-linux-riscv64-gnu@4.28.1':
@@ -4461,12 +4811,20 @@ packages:
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.26.0':
+ '@rollup/rollup-linux-riscv64-gnu@4.40.2':
resolution:
{
- integrity: sha512-YYcg8MkbN17fMbRMZuxwmxWqsmQufh3ZJFxFGoHjrE7bv0X+T6l3glcdzd7IKLiwhT+PZOJCblpnNlz1/C3kGQ==,
+ integrity: sha512-QNU7BFHEvHMp2ESSY3SozIkBPaPBDTsfVNGx3Xhv+TdvWXFGOSH2NJvhD1zKAT6AyuuErJgbdvaJhYVhVqrWTg==,
}
- cpu: [s390x]
+ 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-s390x-gnu@4.28.1':
@@ -4477,12 +4835,12 @@ packages:
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.26.0':
+ '@rollup/rollup-linux-s390x-gnu@4.40.2':
resolution:
{
- integrity: sha512-ZuwpfjCwjPkAOxpjAEjabg6LRSfL7cAJb6gSQGZYjGhadlzKKywDkCUnJ+KEfrNY1jH5EEoSIKLCb572jSiglA==,
+ integrity: sha512-B7LKIz+0+p348JoAL4X/YxGx9zOx3sR+o6Hj15Y3aaApNfAshK8+mWZEf759DXfRLeL2vg5LYJBB7DdcleYCoQ==,
}
- cpu: [x64]
+ cpu: [s390x]
os: [linux]
'@rollup/rollup-linux-x64-gnu@4.28.1':
@@ -4493,10 +4851,10 @@ packages:
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.26.0':
+ '@rollup/rollup-linux-x64-gnu@4.40.2':
resolution:
{
- integrity: sha512-+HJD2lFS86qkeF8kNu0kALtifMpPCZU80HvwztIKnYwym3KnA1os6nsX4BGSTLtS2QVAGG1P3guRgsYyMA0Yhg==,
+ integrity: sha512-lG7Xa+BmBNwpjmVUbmyKxdQJ3Q6whHjMjzQplOs5Z+Gj7mxPtWakGHqzMqNER68G67kmCX9qX57aRsW5V0VOng==,
}
cpu: [x64]
os: [linux]
@@ -4509,13 +4867,13 @@ packages:
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.26.0':
+ '@rollup/rollup-linux-x64-musl@4.40.2':
resolution:
{
- integrity: sha512-WUQzVFWPSw2uJzX4j6YEbMAiLbs0BUysgysh8s817doAYhR5ybqTI1wtKARQKo6cGop3pHnrUJPFCsXdoFaimQ==,
+ integrity: sha512-tD46wKHd+KJvsmije4bUskNuvWKFcTOIM9tZ/RrmIvcXnbi0YK/cKS9FzFtAm7Oxi2EhV5N2OpfFB348vSQRXA==,
}
- cpu: [arm64]
- os: [win32]
+ cpu: [x64]
+ os: [linux]
'@rollup/rollup-win32-arm64-msvc@4.28.1':
resolution:
@@ -4525,12 +4883,12 @@ packages:
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.26.0':
+ '@rollup/rollup-win32-arm64-msvc@4.40.2':
resolution:
{
- integrity: sha512-D4CxkazFKBfN1akAIY6ieyOqzoOoBV1OICxgUblWxff/pSjCA2khXlASUx7mK6W1oP4McqhgcCsu6QaLj3WMWg==,
+ integrity: sha512-Bjv/HG8RRWLNkXwQQemdsWw4Mg+IJ29LK+bJPW2SCzPKOUaMmPEppQlu/Fqk1d7+DX3V7JbFdbkh/NMmurT6Pg==,
}
- cpu: [ia32]
+ cpu: [arm64]
os: [win32]
'@rollup/rollup-win32-ia32-msvc@4.28.1':
@@ -4541,12 +4899,12 @@ packages:
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.26.0':
+ '@rollup/rollup-win32-ia32-msvc@4.40.2':
resolution:
{
- integrity: sha512-2x8MO1rm4PGEP0xWbubJW5RtbNLk3puzAMaLQd3B3JHVw4KcHlmXcO+Wewx9zCoo7EUFiMlu/aZbCJ7VjMzAag==,
+ integrity: sha512-dt1llVSGEsGKvzeIO76HToiYPNPYPkmjhMHhP00T9S4rDern8P2ZWvWAQUEJ+R1UdMWJ/42i/QqJ2WV765GZcA==,
}
- cpu: [x64]
+ cpu: [ia32]
os: [win32]
'@rollup/rollup-win32-x64-msvc@4.28.1':
@@ -4557,6 +4915,14 @@ packages:
cpu: [x64]
os: [win32]
+ '@rollup/rollup-win32-x64-msvc@4.40.2':
+ resolution:
+ {
+ integrity: sha512-bwspbWB04XJpeElvsp+DCylKfF4trJDa2Y9Go8O6A7YLX2LIKGcNK/CYImJN6ZP4DcuOHB4Utl3iCbnR62DudA==,
+ }
+ cpu: [x64]
+ os: [win32]
+
'@rollup/wasm-node@4.28.1':
resolution:
{
@@ -4565,88 +4931,95 @@ packages:
engines: { node: '>=18.0.0', npm: '>=8.0.0' }
hasBin: true
- '@rspack/binding-darwin-arm64@1.1.5':
+ '@rspack/binding-darwin-arm64@1.4.4':
resolution:
{
- integrity: sha512-eEynmyPPl+OGYQ9LRFwiQosyRfcca3OQB73akqY4mqDRl39OyiBjq7347DLHJysgbm9z+B1bsiLuh2xc6mdclQ==,
+ integrity: sha512-r5Vr1DcKXemYfJhNabRTpRonZvzyRq8H7ggDJqxWpIR+SGmtZ62hErSic8DBFeEF5k8SZc5in6L4YXUZgYaibg==,
}
cpu: [arm64]
os: [darwin]
- '@rspack/binding-darwin-x64@1.1.5':
+ '@rspack/binding-darwin-x64@1.4.4':
resolution:
{
- integrity: sha512-I6HPRgogewU5v1OKe3noEzq2U1FCEYAbW+smy+lPvpTW+3X6PlVMzTT4oelhB0EXDQ+KxjXH9KpOKON1hg/JGg==,
+ integrity: sha512-fyHjrug2xT3CU3nqzviL41I1PfJOv2/5T1+TdME8GzM5grWI1XFnCcXXocKhGuEpv6xHFdRZz9x7C9k7uQ4UCw==,
}
cpu: [x64]
os: [darwin]
- '@rspack/binding-linux-arm64-gnu@1.1.5':
+ '@rspack/binding-linux-arm64-gnu@1.4.4':
resolution:
{
- integrity: sha512-LQnqucNa6Dr6y3By+/M2ARO4jDR3AM+PuCsHgzlYT0RDRLS+Ow3f50WbNBf7eI/DhrEA0aucYL3sz1ljguB3EA==,
+ integrity: sha512-8UDmKFUgrt4w/sBHZtixBppAC+ObOwRbm3oSMhZMn+T3+BhBSDCUXhbGQDiKc7WG04cxyGhvwIocBckkdb1rSg==,
}
cpu: [arm64]
os: [linux]
- '@rspack/binding-linux-arm64-musl@1.1.5':
+ '@rspack/binding-linux-arm64-musl@1.4.4':
resolution:
{
- integrity: sha512-b9L/9HJxrWY4cezPWqgj28I9Xe2XxwLHu8x0CMGobwF2XKR0QQVLAst38RW/EusJ8TURdyvNEOuRZlWEIJuYOw==,
+ integrity: sha512-Wtf9WR6VXYa1Y+uTa5uaTBcTX0eVzyM6d/0pLS6qJgwLYN4wOvi0VcOctLkUNaMpA72TsmGOnls8QBsDPLZRtg==,
}
cpu: [arm64]
os: [linux]
- '@rspack/binding-linux-x64-gnu@1.1.5':
+ '@rspack/binding-linux-x64-gnu@1.4.4':
resolution:
{
- integrity: sha512-0az52ZXTg/ErCGC1v/oFLWByKAiXvng4euv+prwMWF6p1pA7lfLRLzdibDFO4KgC16Zlfcg3hqs7YikLng4x+w==,
+ integrity: sha512-vc0e6ZkXJIVwHXDfkxFb62e/OpX0KuekjvD+rzs7A122Nt7R37YSilqGpZXWDlqlRjJlBxA73ORakJORsR3oww==,
}
cpu: [x64]
os: [linux]
- '@rspack/binding-linux-x64-musl@1.1.5':
+ '@rspack/binding-linux-x64-musl@1.4.4':
resolution:
{
- integrity: sha512-EF/LJTtCTkuti2gJnCyvXHC5Q2L5M4+RXm5kj9Bfu/t0Zmmfe6Jd5QUsifgogioeL0ZsH/Pou5QiiVcOFcqFKQ==,
+ integrity: sha512-PL5iL2CbdDZwI6MBOfTQnryqT9esjPDZP6a2bxbT+IiyWyBoZjCXnjwYOB5dvIL4Hyrma8XJFwT5dAlFvGrzyQ==,
}
cpu: [x64]
os: [linux]
- '@rspack/binding-win32-arm64-msvc@1.1.5':
+ '@rspack/binding-wasm32-wasi@1.4.4':
resolution:
{
- integrity: sha512-VEqhK6HwIHby6gtOkxIx66SkqYndiaP1ddZ3X39RLE40TY3KlNgfG/SzbN9J5Qb+8jjq3ogV8n50+wLEGkhiWw==,
+ integrity: sha512-/+uq1R+xzXknBDbcZWR0sbQwasZ2maPDSJ1rsnlBG6lQc447HbuwwZqjMpD8+TjpNunAS1E1mHuxql5IbL5UKg==,
+ }
+ cpu: [wasm32]
+
+ '@rspack/binding-win32-arm64-msvc@1.4.4':
+ resolution:
+ {
+ integrity: sha512-8advF9WPaq4HndjeYIsUX7GNPMqJ8vTalZLdF1bJ0c1PXyp3igyG6ruJeJ4vsXT3/HmVy1AmK3FzHRmy7AT5Mw==,
}
cpu: [arm64]
os: [win32]
- '@rspack/binding-win32-ia32-msvc@1.1.5':
+ '@rspack/binding-win32-ia32-msvc@1.4.4':
resolution:
{
- integrity: sha512-Yi2BwYehc5/sRVgI7zTGYJKjnV8UszAJt/stWdFHaq82chHiuuF/tQd1WcBUq0Iin9ylBMo16mRJAuFkFmJ74Q==,
+ integrity: sha512-I3BqOEu8gHoMvxECdHS+a+fPMipzO3yrI+0uBjzeJY7UpkD9hjNH6MU2xTI8FxUDY2XYNbJv1EJkXd72VzSpaA==,
}
cpu: [ia32]
os: [win32]
- '@rspack/binding-win32-x64-msvc@1.1.5':
+ '@rspack/binding-win32-x64-msvc@1.4.4':
resolution:
{
- integrity: sha512-4UArXYqJO1Ni7TmCw1T11JnrwfpoThDdiQ9k1P1voBWK3bDahPEBOptk9ZPu2+ZuRX8hFrvumRKkLY3oy7fTMw==,
+ integrity: sha512-8Ju4ZSbBS6VLcgf53OTJcfMWYIR0pHSdHhfYZC16Vb5weWa89Hh0v3ClA0PqSt1hnAAFCMMOM9CcAPwk8P3gIg==,
}
cpu: [x64]
os: [win32]
- '@rspack/binding@1.1.5':
+ '@rspack/binding@1.4.4':
resolution:
{
- integrity: sha512-RsSkgi56Q5XUXut0qweLSE1C4Ogcm7g/ueKoOgsbHAYVKrCs9/dTFlPHWSIAaI7QWh0GWEePR/MM2O2HIu+1rw==,
+ integrity: sha512-Z4Ir04eLbq5BwkSF74h/dBtkbTpcGrMtmi5b6YqMvFtGrT12R6K3P58hnXmrxqypKncbW4rI0JJOYkQa+gMteg==,
}
- '@rspack/core@1.1.5':
+ '@rspack/core@1.4.4':
resolution:
{
- integrity: sha512-/FmxDeMuW8fJkhz8fHuCu7OiJHFKW78xclEu7LkEujWl4PqJgdWjUL/6FWIj50spRwj6PRfuc31hFSL4hbNfCA==,
+ integrity: sha512-TqEUHXbG5zNQ72djFfEg2A1/RoQF57QUhBU22ZLspbr3GcWmHou6noAa6i7lMn47RE4LWVnNyOCyMZyjXrrvYA==,
}
engines: { node: '>=16.0.0' }
peerDependencies:
@@ -4655,6 +5028,15 @@ packages:
'@swc/helpers':
optional: true
+ '@rspack/dev-server@1.1.3':
+ resolution:
+ {
+ integrity: sha512-jWPeyiZiGpbLYGhwHvwxhaa4rsr8CQvsWkWslqeMLb2uXwmyy3UWjUR1q+AhAPnf0gs3lZoFZ1hjBQVecHKUvg==,
+ }
+ engines: { node: '>= 18.12.0' }
+ peerDependencies:
+ '@rspack/core': '*'
+
'@rspack/lite-tapable@1.0.1':
resolution:
{
@@ -4662,14 +5044,26 @@ packages:
}
engines: { node: '>=16.0.0' }
- '@schematics/angular@19.0.4':
+ '@rspack/plugin-react-refresh@1.4.3':
+ resolution:
+ {
+ integrity: sha512-wZx4vWgy5oMEvgyNGd/oUKcdnKaccYWHCRkOqTdAPJC3WcytxhTX+Kady8ERurSBiLyQpoMiU3Iyd+F1Y2Arbw==,
+ }
+ peerDependencies:
+ react-refresh: '>=0.10.0 <1.0.0'
+ webpack-hot-middleware: 2.x
+ peerDependenciesMeta:
+ webpack-hot-middleware:
+ optional: true
+
+ '@schematics/angular@20.0.5':
resolution:
{
- integrity: sha512-1fXBtkA/AjgMPxHLpGlw7NuT/wggCqAwBAmDnSiRnBBV7Pgs/tHorLgh7A9eoUi3c8CYCuAh8zqWNyjBGGigOQ==,
+ integrity: sha512-CVscKyuDHULxKEo4rl/jOlr4mrkCwfWdoA7Xp63dEY3lIM895Oiw9SUhfmk4n5PaEGtlDbIV1TNnPXNrc+y3ww==,
}
engines:
{
- node: ^18.19.1 || ^20.11.1 || >=22.0.0,
+ node: ^20.19.0 || ^22.12.0 || >=24.0.0,
npm: ^6.11.0 || ^7.5.6 || >=8.0.0,
yarn: '>= 1.13.0',
}
@@ -4722,13 +5116,6 @@ packages:
integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==,
}
- '@sindresorhus/merge-streams@2.3.0':
- resolution:
- {
- integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==,
- }
- engines: { node: '>=18' }
-
'@sinonjs/commons@3.0.1':
resolution:
{
@@ -4741,6 +5128,12 @@ packages:
integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==,
}
+ '@swc/helpers@0.5.17':
+ resolution:
+ {
+ integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==,
+ }
+
'@tootallnate/once@2.0.0':
resolution:
{
@@ -4859,16 +5252,16 @@ packages:
integrity: sha512-gi6WQJ7cHRgZxtkQEoyHMppPjq9Kxo5Tjn2prSKDSmZrCz8TZ3jSRCeTJm+WoM+oB0WG37bRqLzaaU3q7JypGg==,
}
- '@types/estree@1.0.5':
+ '@types/estree@1.0.6':
resolution:
{
- integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==,
+ integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==,
}
- '@types/estree@1.0.6':
+ '@types/estree@1.0.7':
resolution:
{
- integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==,
+ integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==,
}
'@types/express-serve-static-core@4.19.5':
@@ -5204,14 +5597,14 @@ packages:
integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==,
}
- '@vitejs/plugin-basic-ssl@1.1.0':
+ '@vitejs/plugin-basic-ssl@2.0.0':
resolution:
{
- integrity: sha512-wO4Dk/rm8u7RNhOf95ZzcEmC9rYOncYgvq4z3duaJrCgjN8BxAnDVyndanfcJZ0O6XZzHz6Q0hTimxTg8Y9g/A==,
+ integrity: sha512-gc9Tjg8bUxBVSTzeWT3Njc0Cl3PakHFKdNfABnZWiUgbxqmHDEn7uECv3fHVylxoYgNzAcmU7ZrILz+BwSo3sA==,
}
- engines: { node: '>=14.6.0' }
+ engines: { node: ^18.0.0 || ^20.0.0 || >=22.0.0 }
peerDependencies:
- vite: ^3.0.0 || ^4.0.0 || ^5.0.0
+ vite: ^6.0.0
'@webassemblyjs/ast@1.12.1':
resolution:
@@ -5219,90 +5612,180 @@ packages:
integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==,
}
+ '@webassemblyjs/ast@1.14.1':
+ resolution:
+ {
+ integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==,
+ }
+
'@webassemblyjs/floating-point-hex-parser@1.11.6':
resolution:
{
integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==,
}
+ '@webassemblyjs/floating-point-hex-parser@1.13.2':
+ resolution:
+ {
+ integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==,
+ }
+
'@webassemblyjs/helper-api-error@1.11.6':
resolution:
{
integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==,
}
+ '@webassemblyjs/helper-api-error@1.13.2':
+ resolution:
+ {
+ integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==,
+ }
+
'@webassemblyjs/helper-buffer@1.12.1':
resolution:
{
integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==,
}
+ '@webassemblyjs/helper-buffer@1.14.1':
+ resolution:
+ {
+ integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==,
+ }
+
'@webassemblyjs/helper-numbers@1.11.6':
resolution:
{
integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==,
}
+ '@webassemblyjs/helper-numbers@1.13.2':
+ resolution:
+ {
+ integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==,
+ }
+
'@webassemblyjs/helper-wasm-bytecode@1.11.6':
resolution:
{
integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==,
}
+ '@webassemblyjs/helper-wasm-bytecode@1.13.2':
+ resolution:
+ {
+ integrity: sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==,
+ }
+
'@webassemblyjs/helper-wasm-section@1.12.1':
resolution:
{
integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==,
}
+ '@webassemblyjs/helper-wasm-section@1.14.1':
+ resolution:
+ {
+ integrity: sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==,
+ }
+
'@webassemblyjs/ieee754@1.11.6':
resolution:
{
integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==,
}
+ '@webassemblyjs/ieee754@1.13.2':
+ resolution:
+ {
+ integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==,
+ }
+
'@webassemblyjs/leb128@1.11.6':
resolution:
{
integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==,
}
+ '@webassemblyjs/leb128@1.13.2':
+ resolution:
+ {
+ integrity: sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==,
+ }
+
'@webassemblyjs/utf8@1.11.6':
resolution:
{
integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==,
}
+ '@webassemblyjs/utf8@1.13.2':
+ resolution:
+ {
+ integrity: sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==,
+ }
+
'@webassemblyjs/wasm-edit@1.12.1':
resolution:
{
integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==,
}
+ '@webassemblyjs/wasm-edit@1.14.1':
+ resolution:
+ {
+ integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==,
+ }
+
'@webassemblyjs/wasm-gen@1.12.1':
resolution:
{
integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==,
}
+ '@webassemblyjs/wasm-gen@1.14.1':
+ resolution:
+ {
+ integrity: sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==,
+ }
+
'@webassemblyjs/wasm-opt@1.12.1':
resolution:
{
integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==,
}
+ '@webassemblyjs/wasm-opt@1.14.1':
+ resolution:
+ {
+ integrity: sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==,
+ }
+
'@webassemblyjs/wasm-parser@1.12.1':
resolution:
{
integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==,
}
+ '@webassemblyjs/wasm-parser@1.14.1':
+ resolution:
+ {
+ integrity: sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==,
+ }
+
'@webassemblyjs/wast-printer@1.12.1':
resolution:
{
integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==,
}
+ '@webassemblyjs/wast-printer@1.14.1':
+ resolution:
+ {
+ integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==,
+ }
+
'@xtuc/ieee754@1.2.0':
resolution:
{
@@ -5362,23 +5845,6 @@ packages:
integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==,
}
- acorn-import-assertions@1.9.0:
- resolution:
- {
- integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==,
- }
- deprecated: package has been renamed to acorn-import-attributes
- peerDependencies:
- acorn: ^8
-
- acorn-import-attributes@1.9.5:
- resolution:
- {
- integrity: sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==,
- }
- peerDependencies:
- acorn: ^8
-
acorn-jsx@5.3.2:
resolution:
{
@@ -5438,10 +5904,10 @@ packages:
}
engines: { node: '>= 6.0.0' }
- agent-base@7.1.1:
+ agent-base@7.1.3:
resolution:
{
- integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==,
+ integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==,
}
engines: { node: '>= 14' }
@@ -5686,22 +6152,32 @@ packages:
peerDependencies:
postcss: ^8.1.0
- aws-sign2@0.7.0:
+ autoprefixer@10.4.21:
resolution:
{
- integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==,
+ integrity: sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==,
}
-
- aws4@1.13.1:
+ engines: { node: ^10 || ^12 || >=14 }
+ hasBin: true
+ peerDependencies:
+ postcss: ^8.1.0
+
+ aws-sign2@0.7.0:
+ resolution:
+ {
+ integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==,
+ }
+
+ aws4@1.13.1:
resolution:
{
integrity: sha512-u5w79Rd7SU4JaIlA/zFqG+gOiuq25q5VLyZ8E+ijJeILuTxVzZgp2CaGw/UTw6pXYN9XMO9yiqj/nEHmhTG5CA==,
}
- axios@1.7.8:
+ axios@1.10.0:
resolution:
{
- integrity: sha512-Uu0wb7KNqK2t5K+YQyVCLM76prD5sRFjKHbJYCP1J7JFGEQ6nN7HWn9+04LAeiJ3ji54lgS/gZCH1oxyrf1SPw==,
+ integrity: sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw==,
}
axobject-query@4.1.0:
@@ -5720,15 +6196,15 @@ packages:
peerDependencies:
'@babel/core': ^7.8.0
- babel-loader@9.1.3:
+ babel-loader@10.0.0:
resolution:
{
- integrity: sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==,
+ integrity: sha512-z8jt+EdS61AMw22nSfoNJAZ0vrtmhPRVi6ghL3rCeRZI8cdNYFiV5xeV3HbE7rlZZNmGH8BVccwWt8/ED0QOHA==,
}
- engines: { node: '>= 14.15.0' }
+ engines: { node: ^18.20.0 || ^20.10.0 || >=22.0.0 }
peerDependencies:
'@babel/core': ^7.12.0
- webpack: '>=5'
+ webpack: '>=5.61.0'
babel-loader@9.2.1:
resolution:
@@ -5762,11 +6238,12 @@ packages:
}
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
- babel-plugin-macros@2.8.0:
+ babel-plugin-macros@3.1.0:
resolution:
{
- integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==,
+ integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==,
}
+ engines: { node: '>=10', npm: '>=6' }
babel-plugin-polyfill-corejs2@0.4.11:
resolution:
@@ -5784,6 +6261,14 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-polyfill-corejs3@0.11.1:
+ resolution:
+ {
+ integrity: sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==,
+ }
+ peerDependencies:
+ '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+
babel-plugin-polyfill-regenerator@0.6.2:
resolution:
{
@@ -5852,11 +6337,12 @@ packages:
integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==,
}
- beasties@0.1.0:
+ beasties@0.3.4:
resolution:
{
- integrity: sha512-+Ssscd2gVG24qRNC+E2g88D+xsQW4xwakWtKAiGEQ3Pw54/FGdyo9RrfxhGhEv6ilFVbB7r3Lgx+QnAxnSpECw==,
+ integrity: sha512-NmzN1zN1cvGccXFyZ73335+ASXwBlVWcUPssiUDIlFdfyatHPRRufjCd5w8oPaQPvVnf9ELklaCGb1gi9FBwIw==,
}
+ engines: { node: '>=14.0.0' }
big.js@5.2.2:
resolution:
@@ -5889,10 +6375,10 @@ packages:
integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==,
}
- body-parser@1.20.2:
+ body-parser@1.20.3:
resolution:
{
- integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==,
+ integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==,
}
engines: { node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16 }
@@ -5943,6 +6429,14 @@ packages:
engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
hasBin: true
+ browserslist@4.25.1:
+ resolution:
+ {
+ integrity: sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==,
+ }
+ engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
+ hasBin: true
+
bs-logger@0.2.6:
resolution:
{
@@ -5964,6 +6458,12 @@ packages:
engines: { node: '>= 0.4.0' }
hasBin: true
+ buffer-builder@0.2.0:
+ resolution:
+ {
+ integrity: sha512-7VPMEPuYznPSoR21NE1zvd2Xna6c/CloiZCfcMXR1Jny6PjX0N4Nsa38zcBFo/FMK+BlA+FLKbJCQ0i2yxp+Xg==,
+ }
+
buffer-crc32@0.2.13:
resolution:
{
@@ -6024,6 +6524,13 @@ packages:
}
engines: { node: '>=6' }
+ call-bind-apply-helpers@1.0.2:
+ resolution:
+ {
+ integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==,
+ }
+ engines: { node: '>= 0.4' }
+
call-bind@1.0.7:
resolution:
{
@@ -6031,6 +6538,13 @@ packages:
}
engines: { node: '>= 0.4' }
+ call-bound@1.0.4:
+ resolution:
+ {
+ integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==,
+ }
+ engines: { node: '>= 0.4' }
+
callsites@3.1.0:
resolution:
{
@@ -6070,6 +6584,12 @@ packages:
integrity: sha512-0S/FDhf4ZiqrTUiQ39dKeUjYRjkv7lOZU1Dgif2rIqrTzX/1wV2hfKu9TOm1IHkdSijfLswxTFzl/cvir+SLSQ==,
}
+ caniuse-lite@1.0.30001727:
+ resolution:
+ {
+ integrity: sha512-pB68nIHmbN6L/4C6MH1DokyR3bYqFwjaSs/sWDHGj4CTcFtQUQMuJftVwWkXq7mNWOybD3KhUv3oWHoGxgP14Q==,
+ }
+
caseless@0.12.0:
resolution:
{
@@ -6097,6 +6617,13 @@ packages:
}
engines: { node: '>=10' }
+ chalk@5.4.1:
+ resolution:
+ {
+ integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==,
+ }
+ engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 }
+
char-regex@1.0.2:
resolution:
{
@@ -6159,6 +6686,13 @@ packages:
}
engines: { node: '>=8' }
+ ci-info@4.3.0:
+ resolution:
+ {
+ integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==,
+ }
+ engines: { node: '>=8' }
+
cjs-module-lexer@1.3.1:
resolution:
{
@@ -6200,10 +6734,10 @@ packages:
}
engines: { node: '>=6' }
- cli-table3@0.6.5:
+ cli-table3@0.6.1:
resolution:
{
- integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==,
+ integrity: sha512-w0q/enDHhPLq44ovMGdQeeDLvwxwavsJX7oQGYt/LrBlYsyaxyDnp6z3QzFut/6kLLKnlcUVJLrpB7KBfgG/RA==,
}
engines: { node: 10.* || >= 12.* }
@@ -6235,6 +6769,13 @@ packages:
}
engines: { node: '>=12' }
+ cliui@9.0.1:
+ resolution:
+ {
+ integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==,
+ }
+ engines: { node: '>=20' }
+
clone-deep@4.0.1:
resolution:
{
@@ -6299,6 +6840,19 @@ packages:
integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==,
}
+ colorjs.io@0.5.2:
+ resolution:
+ {
+ integrity: sha512-twmVoizEW7ylZSN32OgKdXRmo1qg+wT5/6C3xu5b9QsWzSFAhHLn2xd8ro0diCsKfCj1RdaTP/nrcW+vAoQPIw==,
+ }
+
+ colors@1.4.0:
+ resolution:
+ {
+ integrity: sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==,
+ }
+ engines: { node: '>=0.1.90' }
+
columnify@1.6.0:
resolution:
{
@@ -6313,12 +6867,19 @@ packages:
}
engines: { node: '>= 0.8' }
- commander@12.1.0:
+ commander@11.1.0:
resolution:
{
- integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==,
+ integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==,
}
- engines: { node: '>=18' }
+ engines: { node: '>=16' }
+
+ commander@14.0.0:
+ resolution:
+ {
+ integrity: sha512-2uM9rYjPvyq39NwLRqaiLtWHyDC1FvryJDa2ATTVims5YAS4PupsEQsDvP14FqhFr0P49CYDugi59xaxJlTXRA==,
+ }
+ engines: { node: '>=20' }
commander@2.20.3:
resolution:
@@ -6353,12 +6914,6 @@ packages:
}
engines: { node: '>=4.0.0' }
- commondir@1.0.1:
- resolution:
- {
- integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==,
- }
-
compressible@2.0.18:
resolution:
{
@@ -6424,10 +6979,10 @@ packages:
integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==,
}
- cookie@0.6.0:
+ cookie@0.7.1:
resolution:
{
- integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==,
+ integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==,
}
engines: { node: '>= 0.6' }
@@ -6453,25 +7008,25 @@ packages:
peerDependencies:
webpack: ^5.1.0
- copy-webpack-plugin@12.0.2:
+ copy-webpack-plugin@13.0.0:
resolution:
{
- integrity: sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA==,
+ integrity: sha512-FgR/h5a6hzJqATDGd9YG41SeDViH+0bkHn6WNXCi5zKAZkeESeSxLySSsFLHqLEVCh0E+rITmCf0dusXWYukeQ==,
}
engines: { node: '>= 18.12.0' }
peerDependencies:
webpack: ^5.1.0
- core-js-compat@3.38.0:
+ core-js-compat@3.39.0:
resolution:
{
- integrity: sha512-75LAicdLa4OJVwFxFbQR3NdnZjNgX6ILpVcVzcC4T2smerB5lELMrJQQQoWV6TiuC/vlaFqgU2tKQx9w5s0e0A==,
+ integrity: sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==,
}
- core-js-compat@3.39.0:
+ core-js-compat@3.43.0:
resolution:
{
- integrity: sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==,
+ integrity: sha512-2GML2ZsCc5LR7hZYz4AXmjQw8zuy2T//2QntwdnpuYI7jteT6GVYJL7F6C2C57R7gSYrcqVW3lAALefdbhBLDA==,
}
core-util-is@1.0.2:
@@ -6493,13 +7048,6 @@ packages:
}
engines: { node: '>= 0.4.0' }
- cosmiconfig@6.0.0:
- resolution:
- {
- integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==,
- }
- engines: { node: '>=8' }
-
cosmiconfig@7.1.0:
resolution:
{
@@ -6744,12 +7292,12 @@ packages:
integrity: sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==,
}
- cypress@13.13.2:
+ cypress@14.5.1:
resolution:
{
- integrity: sha512-PvJQU33933NvS1StfzEb8/mu2kMy4dABwCF+yd5Bi7Qly1HOVf+Bufrygee/tlmty/6j5lX+KIi8j9Q3JUMbhA==,
+ integrity: sha512-vYBeZKW3UAtxwv5mFuSlOBCYhyO0H86TeDKRJ7TgARyHiREIaiDjeHtqjzrXRFrdz9KnNavqlm+z+hklC7v8XQ==,
}
- engines: { node: ^16.0.0 || ^18.0.0 || >=20.0.0 }
+ engines: { node: ^18.0.0 || ^20.0.0 || >=22.0.0 }
hasBin: true
dashdash@1.14.1:
@@ -6813,6 +7361,18 @@ packages:
supports-color:
optional: true
+ debug@4.4.1:
+ resolution:
+ {
+ integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==,
+ }
+ engines: { node: '>=6.0' }
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
decimal.js@10.4.3:
resolution:
{
@@ -6863,13 +7423,6 @@ packages:
}
engines: { node: '>=18' }
- default-gateway@6.0.3:
- resolution:
- {
- integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==,
- }
- engines: { node: '>= 10' }
-
defaults@1.0.4:
resolution:
{
@@ -7042,6 +7595,12 @@ packages:
integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==,
}
+ domutils@3.2.2:
+ resolution:
+ {
+ integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==,
+ }
+
dotenv-expand@11.0.6:
resolution:
{
@@ -7056,6 +7615,13 @@ packages:
}
engines: { node: '>=12' }
+ dunder-proto@1.0.1:
+ resolution:
+ {
+ integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==,
+ }
+ engines: { node: '>= 0.4' }
+
eastasianwidth@0.2.0:
resolution:
{
@@ -7082,6 +7648,12 @@ packages:
engines: { node: '>=0.10.0' }
hasBin: true
+ electron-to-chromium@1.5.179:
+ resolution:
+ {
+ integrity: sha512-UWKi/EbBopgfFsc5k61wFpV7WrnnSlSzW/e2XcBmS6qKYTivZlLtoll5/rdqRTxGglGHkmkW0j0pFNJG10EUIQ==,
+ }
+
electron-to-chromium@1.5.6:
resolution:
{
@@ -7133,6 +7705,13 @@ packages:
}
engines: { node: '>= 0.8' }
+ encodeurl@2.0.0:
+ resolution:
+ {
+ integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==,
+ }
+ engines: { node: '>= 0.8' }
+
encoding@0.1.13:
resolution:
{
@@ -7173,6 +7752,13 @@ packages:
}
engines: { node: '>=0.12' }
+ entities@6.0.1:
+ resolution:
+ {
+ integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==,
+ }
+ engines: { node: '>=0.12' }
+
env-paths@2.2.1:
resolution:
{
@@ -7206,6 +7792,12 @@ packages:
integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==,
}
+ error-stack-parser@2.1.4:
+ resolution:
+ {
+ integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==,
+ }
+
es-define-property@1.0.0:
resolution:
{
@@ -7213,6 +7805,13 @@ packages:
}
engines: { node: '>= 0.4' }
+ es-define-property@1.0.1:
+ resolution:
+ {
+ integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==,
+ }
+ engines: { node: '>= 0.4' }
+
es-errors@1.3.0:
resolution:
{
@@ -7226,13 +7825,12 @@ packages:
integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==,
}
- esbuild-wasm@0.23.0:
+ es-object-atoms@1.1.1:
resolution:
{
- integrity: sha512-6jP8UmWy6R6TUUV8bMuC3ZyZ6lZKI56x0tkxyCIqWwRRJ/DgeQKneh/Oid5EoGoPFLrGNkz47ZEtWAYuiY/u9g==,
+ integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==,
}
- engines: { node: '>=18' }
- hasBin: true
+ engines: { node: '>= 0.4' }
esbuild-wasm@0.24.0:
resolution:
@@ -7242,20 +7840,20 @@ packages:
engines: { node: '>=18' }
hasBin: true
- esbuild@0.21.5:
+ esbuild-wasm@0.25.5:
resolution:
{
- integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==,
+ integrity: sha512-V/rbdOws2gDcnCAECfPrajhuafI0WY4WumUgc8ZHwOLnvmM0doLQ+dqvVFI2qkVxQsvo6880aC9IjpyDqcwwTw==,
}
- engines: { node: '>=12' }
+ engines: { node: '>=18' }
hasBin: true
- esbuild@0.23.0:
+ esbuild@0.17.19:
resolution:
{
- integrity: sha512-1lvV17H2bMYda/WaFb2jLPeHU3zml2k4/yagNMG8Q/YtfMjCwEUZa2eXXMgZTVSL5q1n4H7sQ0X6CdJDqqeCFA==,
+ integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==,
}
- engines: { node: '>=18' }
+ engines: { node: '>=12' }
hasBin: true
esbuild@0.24.0:
@@ -7266,6 +7864,14 @@ packages:
engines: { node: '>=18' }
hasBin: true
+ esbuild@0.25.5:
+ resolution:
+ {
+ integrity: sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==,
+ }
+ engines: { node: '>=18' }
+ hasBin: true
+
escalade@3.1.2:
resolution:
{
@@ -7315,10 +7921,10 @@ packages:
engines: { node: '>=6.0' }
hasBin: true
- eslint-config-prettier@9.1.0:
+ eslint-config-prettier@10.1.5:
resolution:
{
- integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==,
+ integrity: sha512-zc1UmCpNltmVY34vuLRV61r1K27sWuX39E+uyUnY8xS2Bex88VV9cugG+UZbRSRGtGyFboj+D8JODyme1plMpw==,
}
hasBin: true
peerDependencies:
@@ -7511,10 +8117,10 @@ packages:
integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==,
}
- express@4.19.2:
+ express@4.21.2:
resolution:
{
- integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==,
+ integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==,
}
engines: { node: '>= 0.10.0' }
@@ -7552,17 +8158,17 @@ packages:
integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==,
}
- fast-glob@3.2.7:
+ fast-glob@3.3.2:
resolution:
{
- integrity: sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==,
+ integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==,
}
- engines: { node: '>=8' }
+ engines: { node: '>=8.6.0' }
- fast-glob@3.3.2:
+ fast-glob@3.3.3:
resolution:
{
- integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==,
+ integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==,
}
engines: { node: '>=8.6.0' }
@@ -7609,6 +8215,17 @@ packages:
integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==,
}
+ fdir@6.4.6:
+ resolution:
+ {
+ integrity: sha512-hiFoqpyZcfNm1yc4u8oWCf9A2c4D3QjCrks3zmoVKVxpQRzmPNar1hUJcBG2RQHvEVGDN+Jm81ZheVLAQMK6+w==,
+ }
+ peerDependencies:
+ picomatch: ^3 || ^4
+ peerDependenciesMeta:
+ picomatch:
+ optional: true
+
figures@3.2.0:
resolution:
{
@@ -7636,26 +8253,26 @@ packages:
}
engines: { node: '>=8' }
- finalhandler@1.2.0:
+ finalhandler@1.3.1:
resolution:
{
- integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==,
+ integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==,
}
engines: { node: '>= 0.8' }
- find-cache-dir@3.3.2:
+ find-cache-dir@4.0.0:
resolution:
{
- integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==,
+ integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==,
}
- engines: { node: '>=8' }
+ engines: { node: '>=14.16' }
- find-cache-dir@4.0.0:
+ find-cache-directory@6.0.0:
resolution:
{
- integrity: sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==,
+ integrity: sha512-CvFd5ivA6HcSHbD+59P7CyzINHXzwhuQK8RY7CxJZtgDSAtRlHiCaQpZQ2lMR/WRyUIEmzUvL6G2AGurMfegZA==,
}
- engines: { node: '>=14.16' }
+ engines: { node: '>=20' }
find-file-up@2.0.1:
resolution:
@@ -7671,6 +8288,13 @@ packages:
}
engines: { node: '>=8' }
+ find-up-simple@1.0.1:
+ resolution:
+ {
+ integrity: sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==,
+ }
+ engines: { node: '>=18' }
+
find-up@4.1.0:
resolution:
{
@@ -7751,13 +8375,6 @@ packages:
vue-template-compiler:
optional: true
- form-data@2.3.3:
- resolution:
- {
- integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==,
- }
- engines: { node: '>= 0.12' }
-
form-data@4.0.0:
resolution:
{
@@ -7886,6 +8503,13 @@ packages:
}
engines: { node: '>= 0.4' }
+ get-intrinsic@1.3.0:
+ resolution:
+ {
+ integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==,
+ }
+ engines: { node: '>= 0.4' }
+
get-package-type@0.1.0:
resolution:
{
@@ -7893,6 +8517,13 @@ packages:
}
engines: { node: '>=8.0.0' }
+ get-proto@1.0.1:
+ resolution:
+ {
+ integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==,
+ }
+ engines: { node: '>= 0.4' }
+
get-stream@5.2.0:
resolution:
{
@@ -8009,18 +8640,18 @@ packages:
}
engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 }
- globby@14.0.2:
+ gopd@1.0.1:
resolution:
{
- integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==,
+ integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==,
}
- engines: { node: '>=18' }
- gopd@1.0.1:
+ gopd@1.2.0:
resolution:
{
- integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==,
+ integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==,
}
+ engines: { node: '>= 0.4' }
graceful-fs@4.2.11:
resolution:
@@ -8080,6 +8711,13 @@ packages:
}
engines: { node: '>= 0.4' }
+ has-symbols@1.1.0:
+ resolution:
+ {
+ integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==,
+ }
+ engines: { node: '>= 0.4' }
+
has-tostringtag@1.0.2:
resolution:
{
@@ -8087,6 +8725,13 @@ packages:
}
engines: { node: '>= 0.4' }
+ hasha@5.2.2:
+ resolution:
+ {
+ integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==,
+ }
+ engines: { node: '>=8' }
+
hasown@2.0.2:
resolution:
{
@@ -8135,10 +8780,10 @@ packages:
}
engines: { node: '>=12' }
- html-entities@2.5.2:
+ html-entities@2.6.0:
resolution:
{
- integrity: sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==,
+ integrity: sha512-kig+rMn/QOVRvr7c86gQ8lWXq+Hkv6CbAH1hLu+RG338StTpE8Z0b44SDVaqVu7HGKf27frdmUYEs9hTUX/cLQ==,
}
html-escaper@2.0.2:
@@ -8147,10 +8792,10 @@ packages:
integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==,
}
- htmlparser2@9.1.0:
+ htmlparser2@10.0.0:
resolution:
{
- integrity: sha512-5zfg6mHUoaer/97TxnGpxmbR7zJtPwIYFMZ/H5ucTlPZhKvtum05yiPK3Mgai3a0DyVxv7qYqoweaEd2nrYQzQ==,
+ integrity: sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==,
}
http-assert@1.5.0:
@@ -8213,10 +8858,10 @@ packages:
}
engines: { node: '>= 14' }
- http-proxy-middleware@2.0.6:
+ http-proxy-middleware@2.0.9:
resolution:
{
- integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==,
+ integrity: sha512-c1IyJYLYppU574+YI7R4QyX2ystMtVXZwIdzazUIPIJsHuWNd+mho2j+bKoHftndicGj9yh+xjd+l0yj7VeT1Q==,
}
engines: { node: '>=12.0.0' }
peerDependencies:
@@ -8232,6 +8877,13 @@ packages:
}
engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+ http-proxy-middleware@3.0.5:
+ resolution:
+ {
+ integrity: sha512-GLZZm1X38BPY4lkXA01jhwxvDoOkkXqjgVyUzVxiEK4iuRu03PZoYHhHRwxnfhQMDuaxi3vVri0YgSro/1oWqg==,
+ }
+ engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 }
+
http-proxy@1.18.1:
resolution:
{
@@ -8247,10 +8899,10 @@ packages:
engines: { node: '>=12' }
hasBin: true
- http-signature@1.3.6:
+ http-signature@1.4.0:
resolution:
{
- integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==,
+ integrity: sha512-G5akfn7eKbpDN+8nPS/cb57YeA1jLTVxjpCj7tmm3QKPdyDy7T+qSC40e9ptydSWvkwjSXw1VbkpyEm39ukeAg==,
}
engines: { node: '>=0.10' }
@@ -8261,10 +8913,10 @@ packages:
}
engines: { node: '>= 6' }
- https-proxy-agent@7.0.5:
+ https-proxy-agent@7.0.6:
resolution:
{
- integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==,
+ integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==,
}
engines: { node: '>= 14' }
@@ -8347,12 +8999,6 @@ packages:
engines: { node: '>=0.10.0' }
hasBin: true
- immutable@4.3.7:
- resolution:
- {
- integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==,
- }
-
immutable@5.0.3:
resolution:
{
@@ -8467,17 +9113,17 @@ packages:
}
engines: { node: '>=8' }
- is-ci@3.0.1:
+ is-core-module@2.15.0:
resolution:
{
- integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==,
+ integrity: sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==,
}
- hasBin: true
+ engines: { node: '>= 0.4' }
- is-core-module@2.15.0:
+ is-core-module@2.16.1:
resolution:
{
- integrity: sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA==,
+ integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==,
}
engines: { node: '>= 0.4' }
@@ -8568,6 +9214,13 @@ packages:
}
engines: { node: '>=8' }
+ is-interactive@2.0.0:
+ resolution:
+ {
+ integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==,
+ }
+ engines: { node: '>=12' }
+
is-network-error@1.1.0:
resolution:
{
@@ -8636,6 +9289,20 @@ packages:
}
engines: { node: '>=10' }
+ is-unicode-supported@1.3.0:
+ resolution:
+ {
+ integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==,
+ }
+ engines: { node: '>=12' }
+
+ is-unicode-supported@2.1.0:
+ resolution:
+ {
+ integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==,
+ }
+ engines: { node: '>=18' }
+
is-what@3.14.1:
resolution:
{
@@ -8689,13 +9356,6 @@ packages:
}
engines: { node: '>=0.10.0' }
- isomorphic-rslog@0.0.6:
- resolution:
- {
- integrity: sha512-HM0q6XqQ93psDlqvuViNs/Ea3hAyGDkIdVAHlrEocjjAwGrs1fZ+EdQjS9eUPacnYB7Y8SoDdSY3H8p3ce205A==,
- }
- engines: { node: '>=14.17.6' }
-
isomorphic-ws@5.0.0:
resolution:
{
@@ -8911,18 +9571,22 @@ packages:
jest-resolve:
optional: true
- jest-preset-angular@14.4.2:
+ jest-preset-angular@14.6.0:
resolution:
{
- integrity: sha512-BYYv0FaTDfBNh8WyA9mpOV3krfw20kurBGK8INZUnv7KZDAWZuQtCET4TwTWxSNQ9jS1OX1+a5weCm/bTDDM1A==,
+ integrity: sha512-LGSKLCsUhtrs2dw6f7ega/HOS8/Ni/1gV+oXmxPHmJDLHFpM6cI78Monmz8Z1P87a/A4OwnKilxgPRr+6Pzmgg==,
}
engines: { node: ^14.15.0 || >=16.10.0 }
peerDependencies:
- '@angular/compiler-cli': '>=15.0.0 <20.0.0'
- '@angular/core': '>=15.0.0 <20.0.0'
- '@angular/platform-browser-dynamic': '>=15.0.0 <20.0.0'
+ '@angular/compiler-cli': '>=15.0.0 <21.0.0'
+ '@angular/core': '>=15.0.0 <21.0.0'
+ '@angular/platform-browser-dynamic': '>=15.0.0 <21.0.0'
jest: ^29.0.0
+ jsdom: '>=20.0.0'
typescript: '>=4.8'
+ peerDependenciesMeta:
+ jsdom:
+ optional: true
jest-regex-util@29.6.3:
resolution:
@@ -9065,13 +9729,6 @@ packages:
canvas:
optional: true
- jsesc@0.5.0:
- resolution:
- {
- integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==,
- }
- hasBin: true
-
jsesc@2.5.2:
resolution:
{
@@ -9243,10 +9900,10 @@ packages:
}
engines: { node: '>= 10' }
- koa@2.15.3:
+ koa@2.16.1:
resolution:
{
- integrity: sha512-j/8tY9j5t+GVMLeioLaxweJiKUayFhlGqNTzf2ZGwL0ZCQijd2RLHK0SLW5Tsko8YyyqCZC2cojIb0/s62qTAg==,
+ integrity: sha512-umfX9d3iuSxTQP4pnzLOz0HKnPg0FaUUIKcye2lOiz3KPu1Y3M3xlz76dISdFPQs37P9eJz1wUpcTS6KDPn9fA==,
}
engines: { node: ^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4 }
@@ -9273,10 +9930,10 @@ packages:
less: ^3.5.0 || ^4.0.0
webpack: ^5.0.0
- less-loader@12.2.0:
+ less-loader@12.3.0:
resolution:
{
- integrity: sha512-MYUxjSQSBUQmowc0l5nPieOYwMzGPUaTzB6inNW/bdPEG9zOL3eAAD1Qw5ZxSPk7we5dMojHwNODYMV1hq4EVg==,
+ integrity: sha512-0M6+uYulvYIWs52y0LqN4+QM9TqWAohYSNTo4htE8Z7Cn3G/qQMEmktfHmyJT23k+20kU9zHH2wrfFXkxNLtVw==,
}
engines: { node: '>= 18.12.0' }
peerDependencies:
@@ -9305,6 +9962,14 @@ packages:
engines: { node: '>=6' }
hasBin: true
+ less@4.3.0:
+ resolution:
+ {
+ integrity: sha512-X9RyH9fvemArzfdP8Pi3irr7lor2Ok4rOttDXBhlwDg+wKQsXOXgHWduAJE1EsF7JJx0w0bcO6BC6tCKKYnXKA==,
+ }
+ engines: { node: '>=14' }
+ hasBin: true
+
leven@3.1.0:
resolution:
{
@@ -9362,17 +10027,17 @@ packages:
enquirer:
optional: true
- listr2@8.2.5:
+ listr2@8.3.3:
resolution:
{
- integrity: sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==,
+ integrity: sha512-LWzX2KsqcB1wqQ4AHgYb4RsDXauQiqhjLk+6hjbaeHG4zpjjVAB6wC/gz6X0l+Du1cN3pUB5ZlrvTbhGSNnUQQ==,
}
engines: { node: '>=18.0.0' }
- lmdb@3.1.5:
+ lmdb@3.3.0:
resolution:
{
- integrity: sha512-46Mch5Drq+A93Ss3gtbg+Xuvf5BOgIuvhKDWoGa3HcPHI6BL2NCOkRdSx1D4VfzwrxhnsjbyIVsLRlQHu6URvw==,
+ integrity: sha512-MgJocUI6QEiSXQBFWLeyo1R7eQj8Rke5dlPxX0KFwli8/bsCxpM/KbXO5y0qmV/5llQ3wpneDWcTYxa+4vn8iQ==,
}
hasBin: true
@@ -9467,6 +10132,13 @@ packages:
}
engines: { node: '>=10' }
+ log-symbols@6.0.0:
+ resolution:
+ {
+ integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==,
+ }
+ engines: { node: '>=18' }
+
log-update@4.0.0:
resolution:
{
@@ -9520,16 +10192,16 @@ packages:
}
engines: { node: '>=12' }
- magic-string@0.30.11:
+ magic-string@0.30.12:
resolution:
{
- integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==,
+ integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==,
}
- magic-string@0.30.12:
+ magic-string@0.30.17:
resolution:
{
- integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==,
+ integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==,
}
make-dir@2.1.0:
@@ -9572,6 +10244,13 @@ packages:
integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==,
}
+ math-intrinsics@1.1.0:
+ resolution:
+ {
+ integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==,
+ }
+ engines: { node: '>= 0.4' }
+
mdn-data@2.0.28:
resolution:
{
@@ -9605,10 +10284,17 @@ packages:
}
engines: { node: '>= 4.0.0' }
- merge-descriptors@1.0.1:
+ memfs@4.17.2:
+ resolution:
+ {
+ integrity: sha512-NgYhCOWgovOXSzvYgUW0LQ7Qy72rWQMGGFJDoWg4G30RHd3z77VbYdtJ4fembJXBy8pMIUA31XNAupobOQlwdg==,
+ }
+ engines: { node: '>= 4.0.0' }
+
+ merge-descriptors@1.0.3:
resolution:
{
- integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==,
+ integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==,
}
merge-stream@2.0.0:
@@ -9852,10 +10538,10 @@ packages:
engines: { node: '>=10' }
hasBin: true
- mrmime@2.0.0:
+ mrmime@2.0.1:
resolution:
{
- integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==,
+ integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==,
}
engines: { node: '>=10' }
@@ -9911,6 +10597,14 @@ packages:
}
engines: { node: ^18.17.0 || >=20.5.0 }
+ nanoid@3.3.11:
+ resolution:
+ {
+ integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==,
+ }
+ engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 }
+ hasBin: true
+
nanoid@3.3.7:
resolution:
{
@@ -9953,41 +10647,28 @@ packages:
integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==,
}
- ng-packagr@19.0.1:
+ ng-packagr@20.0.1:
resolution:
{
- integrity: sha512-PnXa/y3ce3v4bKJNtUBS7qcNoyv5g/tSthoMe23NyMV5kjNY4+hJT7h64zK+8tnJWTelCbIpoep7tmSPsOifBA==,
+ integrity: sha512-MDqUwAg5tXpbOmt7DJH+qvycgNgxEPchwWUy7//1p6lOl2VvbF/XxrC4kAt948YQIkn1UhPxLXHIIcpZt5rt9g==,
}
- engines: { node: ^18.19.1 || >=20.11.1 }
+ engines: { node: ^20.19.0 || ^22.12.0 || >=24.0.0 }
hasBin: true
peerDependencies:
- '@angular/compiler-cli': ^19.0.0-next.0
- tailwindcss: ^2.0.0 || ^3.0.0
+ '@angular/compiler-cli': ^20.0.0 || ^20.1.0-next.0
+ tailwindcss: ^2.0.0 || ^3.0.0 || ^4.0.0
tslib: ^2.3.0
- typescript: '>=5.5 <5.7'
+ typescript: '>=5.8 <5.9'
peerDependenciesMeta:
tailwindcss:
optional: true
- nice-napi@1.0.2:
- resolution:
- {
- integrity: sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==,
- }
- os: ['!win32']
-
node-abort-controller@3.1.1:
resolution:
{
integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==,
}
- node-addon-api@3.2.1:
- resolution:
- {
- integrity: sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==,
- }
-
node-addon-api@6.1.0:
resolution:
{
@@ -10026,13 +10707,6 @@ packages:
}
hasBin: true
- node-gyp-build@4.8.1:
- resolution:
- {
- integrity: sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==,
- }
- hasBin: true
-
node-gyp@11.0.0:
resolution:
{
@@ -10059,6 +10733,12 @@ packages:
integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==,
}
+ node-releases@2.0.19:
+ resolution:
+ {
+ integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==,
+ }
+
node-schedule@2.1.1:
resolution:
{
@@ -10123,19 +10803,19 @@ packages:
}
engines: { node: ^16.14.0 || >=18.0.0 }
- npm-package-arg@12.0.0:
+ npm-package-arg@12.0.2:
resolution:
{
- integrity: sha512-ZTE0hbwSdTNL+Stx2zxSqdu2KZfNDcrtrLdIk7XGnQFYBWYDho/ORvXtn5XEePcL3tFpGjHCV3X3xrtDh7eZ+A==,
+ integrity: sha512-f1NpFjNI9O4VbKMOlA5QoBq/vSQPORHcTZ2feJpFkTHJ9eQkdlmZEKSjcAhxTGInC7RlEyScT9ui67NaOsjFWA==,
}
engines: { node: ^18.17.0 || >=20.5.0 }
- npm-packlist@9.0.0:
+ npm-packlist@10.0.0:
resolution:
{
- integrity: sha512-8qSayfmHJQTx3nJWYbbUmflpyarbLMBc6LCAjYsiGtXxDB68HaZpb8re6zeaLGxZzDuMdhsg70jryJe+RrItVQ==,
+ integrity: sha512-rht9U6nS8WOBDc53eipZNPo5qkAV4X2rhKE2Oj1DYUQ3DieXfj0mKkVmjnf3iuNdtMd8WfLdi2L6ASkD/8a+Kg==,
}
- engines: { node: ^18.17.0 || >=20.5.0 }
+ engines: { node: ^20.17.0 || >=22.9.0 }
npm-pick-manifest@10.0.0:
resolution:
@@ -10170,10 +10850,10 @@ packages:
integrity: sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w==,
}
- nx@20.2.1:
+ nx@21.2.2:
resolution:
{
- integrity: sha512-zUw1DT9BW2ajbDZgcUFKfysGqrbJwsMRjPxT6GthuqcLtDc2iJi3+/UBTLsITSeiw4Za4qPVxjaK4+yma9Ju5w==,
+ integrity: sha512-SP+gojzJhvUfGPw94myECAvF+a7KDQe8c1HUr2HOPR20oSukpdhZM2B1Ki4FGUUuzOcCILhNT2QHLo82+FGLng==,
}
hasBin: true
peerDependencies:
@@ -10192,6 +10872,13 @@ packages:
}
engines: { node: '>= 0.4' }
+ object-inspect@1.13.4:
+ resolution:
+ {
+ integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==,
+ }
+ engines: { node: '>= 0.4' }
+
obuf@1.1.2:
resolution:
{
@@ -10245,6 +10932,13 @@ packages:
}
engines: { node: '>=18' }
+ open@10.1.2:
+ resolution:
+ {
+ integrity: sha512-cxN6aIDPz6rm8hbebcP7vrQNhvRcveZoJU72Y7vskh4oIm+BZwBECnx5nTmrlres1Qapvx27Qo1Auukpf8PKXw==,
+ }
+ engines: { node: '>=18' }
+
open@8.4.2:
resolution:
{
@@ -10273,12 +10967,12 @@ packages:
}
engines: { node: '>=10' }
- ora@5.4.1:
+ ora@8.2.0:
resolution:
{
- integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==,
+ integrity: sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==,
}
- engines: { node: '>=10' }
+ engines: { node: '>=18' }
ordered-binary@1.5.3:
resolution:
@@ -10375,12 +11069,12 @@ packages:
integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==,
}
- pacote@20.0.0:
+ pacote@21.0.0:
resolution:
{
- integrity: sha512-pRjC5UFwZCgx9kUFDVM9YEahv4guZ1nSLqwmWiLUnDbGsjs+U5w7z6Uc8HNR1a6x8qnu5y9xtGE6D1uAuYz+0A==,
+ integrity: sha512-lcqexq73AMv6QNLo7SOpz0JJoaGdS3rBFgF122NZVl1bApo2mfu+XzUBU/X/XsiJu+iUmKpekRayqQYAs+PhkA==,
}
- engines: { node: ^18.17.0 || >=20.5.0 }
+ engines: { node: ^20.17.0 || >=22.9.0 }
hasBin: true
parent-module@1.0.1:
@@ -10411,10 +11105,10 @@ packages:
}
engines: { node: '>=0.10.0' }
- parse5-html-rewriting-stream@7.0.0:
+ parse5-html-rewriting-stream@7.1.0:
resolution:
{
- integrity: sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==,
+ integrity: sha512-2ifK6Jb+ONoqOy5f+cYHsqvx1obHQdvIk13Jmt/5ezxP0U9p+fqd+R6O73KblGswyuzBYfetmsfK9ThMgnuPPg==,
}
parse5-sax-parser@7.0.0:
@@ -10483,10 +11177,10 @@ packages:
}
engines: { node: '>=16 || 14 >=14.18' }
- path-to-regexp@0.1.7:
+ path-to-regexp@0.1.12:
resolution:
{
- integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==,
+ integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==,
}
path-type@4.0.0:
@@ -10496,13 +11190,6 @@ packages:
}
engines: { node: '>=8' }
- path-type@5.0.0:
- resolution:
- {
- integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==,
- }
- engines: { node: '>=12' }
-
pend@1.2.0:
resolution:
{
@@ -10562,23 +11249,19 @@ packages:
}
engines: { node: '>= 6' }
- piscina@4.6.1:
- resolution:
- {
- integrity: sha512-z30AwWGtQE+Apr+2WBZensP2lIvwoaMcOPkQlIEmSGMJNUvaYACylPYrQM6wSdUNJlnDVMSpLv7xTMJqlVshOA==,
- }
-
- piscina@4.7.0:
+ piscina@5.1.1:
resolution:
{
- integrity: sha512-b8hvkpp9zS0zsfa939b/jXbe64Z2gZv0Ha7FYPNUiDIB1y2AtxcOZdfP8xN8HFjUaqQiT9gRlfjAsoL8vdJ1Iw==,
+ integrity: sha512-9rPDIPsCwOivatEZGM8+apgM7AiTDLSnpwMmLaSmdm2PeND8bFJzZLZZxyrJjLH8Xx/MpKoVaKf+vZOWALNHbw==,
}
+ engines: { node: '>=20.x' }
- piscina@4.8.0:
+ piscina@5.1.2:
resolution:
{
- integrity: sha512-EZJb+ZxDrQf3dihsUL7p42pjNyrNIFJCrRHPMgxu/svsj+P3xS3fuEWp7k2+rfsavfl1N0G29b1HGs7J0m8rZA==,
+ integrity: sha512-9cE/BTA/xhDiyNUEj6EKWLEQC17fh/24ydYzQwcA7QdYh75K6kzL2GHvxDF5i9rFGtUaaKk7/u4xp07qiKXccQ==,
}
+ engines: { node: '>=20.x' }
pkg-dir@4.2.0:
resolution:
@@ -10594,6 +11277,13 @@ packages:
}
engines: { node: '>=14.16' }
+ pkg-dir@8.0.0:
+ resolution:
+ {
+ integrity: sha512-4peoBq4Wks0riS0z8741NVv+/8IiTvqnZAr8QGgtdifrtpdXbNw/FxRS1l6NFqm4EMzuS0EDqNNx4XGaz8cuyQ==,
+ }
+ engines: { node: '>=18' }
+
portfinder@1.0.32:
resolution:
{
@@ -11213,6 +11903,13 @@ packages:
}
engines: { node: ^10 || ^12 || >=14 }
+ postcss@8.5.3:
+ resolution:
+ {
+ integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==,
+ }
+ engines: { node: ^10 || ^12 || >=14 }
+
prelude-ls@1.2.1:
resolution:
{
@@ -11344,24 +12041,17 @@ packages:
integrity: sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA==,
}
- qs@6.10.4:
- resolution:
- {
- integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==,
- }
- engines: { node: '>=0.6' }
-
- qs@6.11.0:
+ qs@6.13.0:
resolution:
{
- integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==,
+ integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==,
}
engines: { node: '>=0.6' }
- qs@6.13.0:
+ qs@6.14.0:
resolution:
{
- integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==,
+ integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==,
}
engines: { node: '>=0.6' }
@@ -11417,6 +12107,13 @@ packages:
integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==,
}
+ react-refresh@0.17.0:
+ resolution:
+ {
+ integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==,
+ }
+ engines: { node: '>=0.10.0' }
+
react@18.3.1:
resolution:
{
@@ -11463,13 +12160,6 @@ packages:
integrity: sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==,
}
- regenerate-unicode-properties@10.1.1:
- resolution:
- {
- integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==,
- }
- engines: { node: '>=4' }
-
regenerate-unicode-properties@10.2.0:
resolution:
{
@@ -11501,13 +12191,6 @@ packages:
integrity: sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==,
}
- regexpu-core@5.3.2:
- resolution:
- {
- integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==,
- }
- engines: { node: '>=4' }
-
regexpu-core@6.2.0:
resolution:
{
@@ -11528,13 +12211,6 @@ packages:
}
hasBin: true
- regjsparser@0.9.1:
- resolution:
- {
- integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==,
- }
- hasBin: true
-
request-progress@3.0.0:
resolution:
{
@@ -11596,20 +12272,28 @@ packages:
}
engines: { node: '>=12' }
- resolve.exports@1.1.0:
+ resolve.exports@2.0.2:
resolution:
{
- integrity: sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==,
+ integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==,
}
engines: { node: '>=10' }
- resolve.exports@2.0.2:
+ resolve.exports@2.0.3:
resolution:
{
- integrity: sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==,
+ integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==,
}
engines: { node: '>=10' }
+ resolve@1.22.10:
+ resolution:
+ {
+ integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==,
+ }
+ engines: { node: '>= 0.4' }
+ hasBin: true
+
resolve@1.22.8:
resolution:
{
@@ -11673,13 +12357,15 @@ packages:
}
hasBin: true
- rollup@4.26.0:
+ rollup-plugin-dts@6.2.1:
resolution:
{
- integrity: sha512-ilcl12hnWonG8f+NxU6BlgysVA0gvY2l8N0R84S1HcINbW20bvwuCngJkkInV6LXhwRpucsW5k1ovDwEdBVrNg==,
+ integrity: sha512-sR3CxYUl7i2CHa0O7bA45mCrgADyAQ0tVtGSqi3yvH28M+eg1+g5d7kQ9hLvEz5dorK3XVsH5L2jwHLQf72DzA==,
}
- engines: { node: '>=18.0.0', npm: '>=8.0.0' }
- hasBin: true
+ engines: { node: '>=16' }
+ peerDependencies:
+ rollup: ^3.29.4 || ^4
+ typescript: ^4.5 || ^5.0
rollup@4.28.1:
resolution:
@@ -11689,6 +12375,20 @@ packages:
engines: { node: '>=18.0.0', npm: '>=8.0.0' }
hasBin: true
+ rollup@4.40.2:
+ resolution:
+ {
+ integrity: sha512-tfUOg6DTP4rhQ3VjOO6B4wyrJnGOX85requAXvqYTHsOgb2TFJdZ3aWpT8W2kPoypSGP7dZUyzxJ9ee4buM5Fg==,
+ }
+ engines: { node: '>=18.0.0', npm: '>=8.0.0' }
+ hasBin: true
+
+ rslog@1.2.9:
+ resolution:
+ {
+ integrity: sha512-KSjM8jJKYYaKgI4jUGZZ4kdTBTM/EIGH1JnoB0ptMkzcyWaHeXW9w6JVLCYs37gh8sFZkLLqAyBb2sT02bqpcQ==,
+ }
+
run-applescript@7.0.0:
resolution:
{
@@ -11708,6 +12408,12 @@ packages:
integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==,
}
+ rxjs@7.8.2:
+ resolution:
+ {
+ integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==,
+ }
+
safe-buffer@5.1.2:
resolution:
{
@@ -11726,32 +12432,162 @@ packages:
integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==,
}
- sass-loader@12.6.0:
+ sass-embedded-android-arm64@1.89.2:
resolution:
{
- integrity: sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==,
+ integrity: sha512-+pq7a7AUpItNyPu61sRlP6G2A8pSPpyazASb+8AK2pVlFayCSPAEgpwpCE9A2/Xj86xJZeMizzKUHxM2CBCUxA==,
}
- engines: { node: '>= 12.13.0' }
- peerDependencies:
- fibers: '>= 3.1.0'
- node-sass: ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
- sass: ^1.3.0
- sass-embedded: '*'
- webpack: ^5.0.0
- peerDependenciesMeta:
- fibers:
- optional: true
- node-sass:
- optional: true
- sass:
- optional: true
- sass-embedded:
- optional: true
+ engines: { node: '>=14.0.0' }
+ cpu: [arm64]
+ os: [android]
+
+ sass-embedded-android-arm@1.89.2:
+ resolution:
+ {
+ integrity: sha512-oHAPTboBHRZlDBhyRB6dvDKh4KvFs+DZibDHXbkSI6dBZxMTT+Yb2ivocHnctVGucKTLQeT7+OM5DjWHyynL/A==,
+ }
+ engines: { node: '>=14.0.0' }
+ cpu: [arm]
+ os: [android]
+
+ sass-embedded-android-riscv64@1.89.2:
+ resolution:
+ {
+ integrity: sha512-HfJJWp/S6XSYvlGAqNdakeEMPOdhBkj2s2lN6SHnON54rahKem+z9pUbCriUJfM65Z90lakdGuOfidY61R9TYg==,
+ }
+ engines: { node: '>=14.0.0' }
+ cpu: [riscv64]
+ os: [android]
+
+ sass-embedded-android-x64@1.89.2:
+ resolution:
+ {
+ integrity: sha512-BGPzq53VH5z5HN8de6jfMqJjnRe1E6sfnCWFd4pK+CAiuM7iw5Fx6BQZu3ikfI1l2GY0y6pRXzsVLdp/j4EKEA==,
+ }
+ engines: { node: '>=14.0.0' }
+ cpu: [x64]
+ os: [android]
+
+ sass-embedded-darwin-arm64@1.89.2:
+ resolution:
+ {
+ integrity: sha512-UCm3RL/tzMpG7DsubARsvGUNXC5pgfQvP+RRFJo9XPIi6elopY5B6H4m9dRYDpHA+scjVthdiDwkPYr9+S/KGw==,
+ }
+ engines: { node: '>=14.0.0' }
+ cpu: [arm64]
+ os: [darwin]
+
+ sass-embedded-darwin-x64@1.89.2:
+ resolution:
+ {
+ integrity: sha512-D9WxtDY5VYtMApXRuhQK9VkPHB8R79NIIR6xxVlN2MIdEid/TZWi1MHNweieETXhWGrKhRKglwnHxxyKdJYMnA==,
+ }
+ engines: { node: '>=14.0.0' }
+ cpu: [x64]
+ os: [darwin]
+
+ sass-embedded-linux-arm64@1.89.2:
+ resolution:
+ {
+ integrity: sha512-2N4WW5LLsbtrWUJ7iTpjvhajGIbmDR18ZzYRywHdMLpfdPApuHPMDF5CYzHbS+LLx2UAx7CFKBnj5LLjY6eFgQ==,
+ }
+ engines: { node: '>=14.0.0' }
+ cpu: [arm64]
+ os: [linux]
+
+ sass-embedded-linux-arm@1.89.2:
+ resolution:
+ {
+ integrity: sha512-leP0t5U4r95dc90o8TCWfxNXwMAsQhpWxTkdtySDpngoqtTy3miMd7EYNYd1znI0FN1CBaUvbdCMbnbPwygDlA==,
+ }
+ engines: { node: '>=14.0.0' }
+ cpu: [arm]
+ os: [linux]
+
+ sass-embedded-linux-musl-arm64@1.89.2:
+ resolution:
+ {
+ integrity: sha512-nTyuaBX6U1A/cG7WJh0pKD1gY8hbg1m2SnzsyoFG+exQ0lBX/lwTLHq3nyhF+0atv7YYhYKbmfz+sjPP8CZ9lw==,
+ }
+ engines: { node: '>=14.0.0' }
+ cpu: [arm64]
+ os: [linux]
+
+ sass-embedded-linux-musl-arm@1.89.2:
+ resolution:
+ {
+ integrity: sha512-Z6gG2FiVEEdxYHRi2sS5VIYBmp17351bWtOCUZ/thBM66+e70yiN6Eyqjz80DjL8haRUegNQgy9ZJqsLAAmr9g==,
+ }
+ engines: { node: '>=14.0.0' }
+ cpu: [arm]
+ os: [linux]
+
+ sass-embedded-linux-musl-riscv64@1.89.2:
+ resolution:
+ {
+ integrity: sha512-N6oul+qALO0SwGY8JW7H/Vs0oZIMrRMBM4GqX3AjM/6y8JsJRxkAwnfd0fDyK+aICMFarDqQonQNIx99gdTZqw==,
+ }
+ engines: { node: '>=14.0.0' }
+ cpu: [riscv64]
+ os: [linux]
+
+ sass-embedded-linux-musl-x64@1.89.2:
+ resolution:
+ {
+ integrity: sha512-K+FmWcdj/uyP8GiG9foxOCPfb5OAZG0uSVq80DKgVSC0U44AdGjvAvVZkrgFEcZ6cCqlNC2JfYmslB5iqdL7tg==,
+ }
+ engines: { node: '>=14.0.0' }
+ cpu: [x64]
+ os: [linux]
+
+ sass-embedded-linux-riscv64@1.89.2:
+ resolution:
+ {
+ integrity: sha512-g9nTbnD/3yhOaskeqeBQETbtfDQWRgsjHok6bn7DdAuwBsyrR3JlSFyqKc46pn9Xxd9SQQZU8AzM4IR+sY0A0w==,
+ }
+ engines: { node: '>=14.0.0' }
+ cpu: [riscv64]
+ os: [linux]
- sass-loader@16.0.3:
+ sass-embedded-linux-x64@1.89.2:
resolution:
{
- integrity: sha512-gosNorT1RCkuCMyihv6FBRR7BMV06oKRAs+l4UMp1mlcVg9rWN6KMmUj3igjQwmYys4mDP3etEYJgiHRbgHCHA==,
+ integrity: sha512-Ax7dKvzncyQzIl4r7012KCMBvJzOz4uwSNoyoM5IV6y5I1f5hEwI25+U4WfuTqdkv42taCMgpjZbh9ERr6JVMQ==,
+ }
+ engines: { node: '>=14.0.0' }
+ cpu: [x64]
+ os: [linux]
+
+ sass-embedded-win32-arm64@1.89.2:
+ resolution:
+ {
+ integrity: sha512-j96iJni50ZUsfD6tRxDQE2QSYQ2WrfHxeiyAXf41Kw0V4w5KYR/Sf6rCZQLMTUOHnD16qTMVpQi20LQSqf4WGg==,
+ }
+ engines: { node: '>=14.0.0' }
+ cpu: [arm64]
+ os: [win32]
+
+ sass-embedded-win32-x64@1.89.2:
+ resolution:
+ {
+ integrity: sha512-cS2j5ljdkQsb4PaORiClaVYynE9OAPZG/XjbOMxpQmjRIf7UroY4PEIH+Waf+y47PfXFX9SyxhYuw2NIKGbEng==,
+ }
+ engines: { node: '>=14.0.0' }
+ cpu: [x64]
+ os: [win32]
+
+ sass-embedded@1.89.2:
+ resolution:
+ {
+ integrity: sha512-Ack2K8rc57kCFcYlf3HXpZEJFNUX8xd8DILldksREmYXQkRHI879yy8q4mRDJgrojkySMZqmmmW1NxrFxMsYaA==,
+ }
+ engines: { node: '>=16.0.0' }
+ hasBin: true
+
+ sass-loader@16.0.5:
+ resolution:
+ {
+ integrity: sha512-oL+CMBXrj6BZ/zOq4os+UECPL+bWqt6OAC6DWS8Ln8GZRcMDjlJ4JC3FBDuHJdYaFWIdKNIBYmtZtK2MaMkNIw==,
}
engines: { node: '>= 18.12.0' }
peerDependencies:
@@ -11772,26 +12608,26 @@ packages:
webpack:
optional: true
- sass@1.77.8:
+ sass@1.82.0:
resolution:
{
- integrity: sha512-4UHg6prsrycW20fqLGPShtEvo/WyHRVRHwOP4DzkUrObWoWI05QBSfzU71TVB7PFaL104TwNaHpjlWXAZbQiNQ==,
+ integrity: sha512-j4GMCTa8elGyN9A7x7bEglx0VgSpNUG4W4wNedQ33wSMdnkqQCT8HTwOaVSV4e6yQovcu/3Oc4coJP/l0xhL2Q==,
}
engines: { node: '>=14.0.0' }
hasBin: true
- sass@1.80.7:
+ sass@1.88.0:
resolution:
{
- integrity: sha512-MVWvN0u5meytrSjsU7AWsbhoXi1sc58zADXFllfZzbsBT1GHjjar6JwBINYPRrkx/zqnQ6uqbQuHgE95O+C+eQ==,
+ integrity: sha512-sF6TWQqjFvr4JILXzG4ucGOLELkESHL+I5QJhh7CNaE+Yge0SI+ehCatsXhJ7ymU1hAFcIS3/PBpjdIbXoyVbg==,
}
engines: { node: '>=14.0.0' }
hasBin: true
- sass@1.82.0:
+ sass@1.89.2:
resolution:
{
- integrity: sha512-j4GMCTa8elGyN9A7x7bEglx0VgSpNUG4W4wNedQ33wSMdnkqQCT8HTwOaVSV4e6yQovcu/3Oc4coJP/l0xhL2Q==,
+ integrity: sha512-xCmtksBKd/jdJ9Bt9p7nPKiuqrlBMBuuGkQlkhZjjQk3Ty48lv93k5Dq6OPkKt4XwxDJ7tvlfrTa1MPA9bf+QA==,
}
engines: { node: '>=14.0.0' }
hasBin: true
@@ -11829,7 +12665,14 @@ packages:
}
engines: { node: '>= 12.13.0' }
- secure-compare@3.0.1:
+ schema-utils@4.3.2:
+ resolution:
+ {
+ integrity: sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==,
+ }
+ engines: { node: '>= 10.13.0' }
+
+ secure-compare@3.0.1:
resolution:
{
integrity: sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==,
@@ -11870,10 +12713,18 @@ packages:
engines: { node: '>=10' }
hasBin: true
- send@0.18.0:
+ semver@7.7.2:
+ resolution:
+ {
+ integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==,
+ }
+ engines: { node: '>=10' }
+ hasBin: true
+
+ send@0.19.0:
resolution:
{
- integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==,
+ integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==,
}
engines: { node: '>= 0.8.0' }
@@ -11890,10 +12741,10 @@ packages:
}
engines: { node: '>= 0.8.0' }
- serve-static@1.15.0:
+ serve-static@1.16.2:
resolution:
{
- integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==,
+ integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==,
}
engines: { node: '>= 0.8.0' }
@@ -11943,6 +12794,27 @@ packages:
integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==,
}
+ side-channel-list@1.0.0:
+ resolution:
+ {
+ integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==,
+ }
+ engines: { node: '>= 0.4' }
+
+ side-channel-map@1.0.1:
+ resolution:
+ {
+ integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==,
+ }
+ engines: { node: '>= 0.4' }
+
+ side-channel-weakmap@1.0.2:
+ resolution:
+ {
+ integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==,
+ }
+ engines: { node: '>= 0.4' }
+
side-channel@1.0.6:
resolution:
{
@@ -11950,6 +12822,13 @@ packages:
}
engines: { node: '>= 0.4' }
+ side-channel@1.1.0:
+ resolution:
+ {
+ integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==,
+ }
+ engines: { node: '>= 0.4' }
+
signal-exit@3.0.7:
resolution:
{
@@ -11990,13 +12869,6 @@ packages:
}
engines: { node: '>=12' }
- slash@5.1.0:
- resolution:
- {
- integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==,
- }
- engines: { node: '>=14.16' }
-
slice-ansi@3.0.0:
resolution:
{
@@ -12184,6 +13056,12 @@ packages:
}
engines: { node: '>=10' }
+ stackframe@1.3.4:
+ resolution:
+ {
+ integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==,
+ }
+
statuses@1.5.0:
resolution:
{
@@ -12198,6 +13076,13 @@ packages:
}
engines: { node: '>= 0.8' }
+ stdin-discarder@0.2.2:
+ resolution:
+ {
+ integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==,
+ }
+ engines: { node: '>=18' }
+
streamroller@3.1.5:
resolution:
{
@@ -12359,18 +13244,25 @@ packages:
engines: { node: '>=14.0.0' }
hasBin: true
- symbol-observable@4.0.0:
+ symbol-tree@3.2.4:
+ resolution:
+ {
+ integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==,
+ }
+
+ sync-child-process@1.0.2:
resolution:
{
- integrity: sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==,
+ integrity: sha512-8lD+t2KrrScJ/7KXCSyfhT3/hRq78rC0wBFqNJXv3mZyn6hW2ypM05JmlSvtqRbeq6jqA94oHbxAr2vYsJ8vDA==,
}
- engines: { node: '>=0.10' }
+ engines: { node: '>=16.0.0' }
- symbol-tree@3.2.4:
+ sync-message-port@1.1.3:
resolution:
{
- integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==,
+ integrity: sha512-GTt8rSKje5FilG+wEdfCkOcLL7LWqpMlr2c3LRuKt/YXxcJ52aGSbGBAdI4L3aaqfrBt6y711El53ItyH1NWzg==,
}
+ engines: { node: '>=16.0.0' }
tapable@2.2.1:
resolution:
@@ -12419,6 +13311,25 @@ packages:
uglify-js:
optional: true
+ terser-webpack-plugin@5.3.14:
+ resolution:
+ {
+ integrity: sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==,
+ }
+ 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.36.0:
resolution:
{
@@ -12427,6 +13338,14 @@ packages:
engines: { node: '>=10' }
hasBin: true
+ terser@5.39.1:
+ resolution:
+ {
+ integrity: sha512-Mm6+uad0ZuDtcV8/4uOZQDQ8RuiC5Pu+iZRedJtF7yA/27sPL7d++In/AJKpWZlU3SYMPPkVfwetn6sgZ66pUA==,
+ }
+ engines: { node: '>=10' }
+ hasBin: true
+
test-exclude@6.0.0:
resolution:
{
@@ -12467,6 +13386,33 @@ packages:
integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==,
}
+ tinyglobby@0.2.13:
+ resolution:
+ {
+ integrity: sha512-mEwzpUgrLySlveBwEVDMKk5B57bhLPYovRfPAXD5gA/98Opn0rCDj3GtLwFvCvH5RK9uPCExUROW5NjDwvqkxw==,
+ }
+ engines: { node: '>=12.0.0' }
+
+ tinyglobby@0.2.14:
+ resolution:
+ {
+ integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==,
+ }
+ engines: { node: '>=12.0.0' }
+
+ tldts-core@6.1.86:
+ resolution:
+ {
+ integrity: sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==,
+ }
+
+ tldts@6.1.86:
+ resolution:
+ {
+ integrity: sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==,
+ }
+ hasBin: true
+
tmp@0.0.33:
resolution:
{
@@ -12515,6 +13461,13 @@ packages:
}
engines: { node: '>=6' }
+ tough-cookie@5.1.2:
+ resolution:
+ {
+ integrity: sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==,
+ }
+ engines: { node: '>=16' }
+
tr46@0.0.3:
resolution:
{
@@ -12553,6 +13506,28 @@ packages:
peerDependencies:
typescript: '>=4.2.0'
+ ts-api-utils@2.1.0:
+ resolution:
+ {
+ integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==,
+ }
+ engines: { node: '>=18.12' }
+ peerDependencies:
+ typescript: '>=4.8.4'
+
+ ts-checker-rspack-plugin@1.1.4:
+ resolution:
+ {
+ integrity: sha512-lDpKuAubxUlsonUE1LpZS5fw7tfjutNb0lwjAo0k8OcxpWv/q18ytaD6eZXdjrFdTEFNIHtKp9dNkUKGky8SgA==,
+ }
+ engines: { node: '>=16.0.0' }
+ peerDependencies:
+ '@rspack/core': ^1.0.0
+ typescript: '>=3.8.0'
+ peerDependenciesMeta:
+ '@rspack/core':
+ optional: true
+
ts-jest@29.2.4:
resolution:
{
@@ -12580,6 +13555,36 @@ packages:
esbuild:
optional: true
+ ts-jest@29.4.0:
+ resolution:
+ {
+ integrity: sha512-d423TJMnJGu80/eSgfQ5w/R+0zFJvdtTxwtF9KzFFunOpSeD+79lHJQIiAhluJoyGRbvj9NZJsl9WjCUo0ND7Q==,
+ }
+ engines: { node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0 }
+ hasBin: true
+ peerDependencies:
+ '@babel/core': '>=7.0.0-beta.0 <8'
+ '@jest/transform': ^29.0.0 || ^30.0.0
+ '@jest/types': ^29.0.0 || ^30.0.0
+ babel-jest: ^29.0.0 || ^30.0.0
+ esbuild: '*'
+ jest: ^29.0.0 || ^30.0.0
+ jest-util: ^29.0.0 || ^30.0.0
+ typescript: '>=4.3 <6'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ '@jest/transform':
+ optional: true
+ '@jest/types':
+ optional: true
+ babel-jest:
+ optional: true
+ esbuild:
+ optional: true
+ jest-util:
+ optional: true
+
ts-loader@9.5.1:
resolution:
{
@@ -12687,6 +13692,20 @@ packages:
}
engines: { node: '>=10' }
+ type-fest@0.8.1:
+ resolution:
+ {
+ integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==,
+ }
+ engines: { node: '>=8' }
+
+ type-fest@4.41.0:
+ resolution:
+ {
+ integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==,
+ }
+ engines: { node: '>=16' }
+
type-is@1.6.18:
resolution:
{
@@ -12700,10 +13719,10 @@ packages:
integrity: sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==,
}
- typescript@5.6.3:
+ typescript@5.8.3:
resolution:
{
- integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==,
+ integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==,
}
engines: { node: '>=14.17' }
hasBin: true
@@ -12742,13 +13761,6 @@ packages:
}
engines: { node: '>=4' }
- unicorn-magic@0.1.0:
- resolution:
- {
- integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==,
- }
- engines: { node: '>=18' }
-
union@0.5.0:
resolution:
{
@@ -12830,6 +13842,15 @@ packages:
peerDependencies:
browserslist: '>= 4.21.0'
+ update-browserslist-db@1.1.3:
+ resolution:
+ {
+ integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==,
+ }
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
+
uri-js@4.4.1:
resolution:
{
@@ -12901,6 +13922,12 @@ packages:
}
engines: { node: ^18.17.0 || >=20.5.0 }
+ varint@6.0.0:
+ resolution:
+ {
+ integrity: sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==,
+ }
+
vary@1.1.2:
resolution:
{
@@ -12915,25 +13942,30 @@ packages:
}
engines: { '0': node >=0.6.0 }
- vite@5.4.11:
+ vite@6.3.5:
resolution:
{
- integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==,
+ integrity: sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==,
}
- engines: { node: ^18.0.0 || >=20.0.0 }
+ engines: { node: ^18.0.0 || ^20.0.0 || >=22.0.0 }
hasBin: true
peerDependencies:
- '@types/node': ^18.0.0 || >=20.0.0
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ jiti: '>=1.21.0'
less: '*'
lightningcss: ^1.21.0
sass: '*'
sass-embedded: '*'
stylus: '*'
sugarss: '*'
- terser: ^5.4.0
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
peerDependenciesMeta:
'@types/node':
optional: true
+ jiti:
+ optional: true
less:
optional: true
lightningcss:
@@ -12948,6 +13980,10 @@ packages:
optional: true
terser:
optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
w3c-xmlserializer@4.0.0:
resolution:
@@ -12962,13 +13998,6 @@ packages:
integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==,
}
- watchpack@2.4.1:
- resolution:
- {
- integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==,
- }
- engines: { node: '>=10.13.0' }
-
watchpack@2.4.2:
resolution:
{
@@ -13019,10 +14048,10 @@ packages:
webpack:
optional: true
- webpack-dev-server@5.0.4:
+ webpack-dev-server@5.2.1:
resolution:
{
- integrity: sha512-dljXhUgx3HqKP2d8J/fUMvhxGhzjeNVarDLcbO/EWMSgRizDkxHQDZQaLFL5VJY9tRBj2Gz+rvCEYYvhbqPHNA==,
+ integrity: sha512-ml/0HIj9NLpVKOMq+SuBPLHcmbG+TGIjXRHsYfZwocUBIqEvws8NnS/V9AFQ5FKP+tgn5adwVwRrTEpGL33QFQ==,
}
engines: { node: '>= 18.12.0' }
hasBin: true
@@ -13035,10 +14064,10 @@ packages:
webpack-cli:
optional: true
- webpack-dev-server@5.1.0:
+ webpack-dev-server@5.2.2:
resolution:
{
- integrity: sha512-aQpaN81X6tXie1FoOB7xlMfCsN19pSvRAeYUHOdFWOlhpQ/LlbfTqYwwmEDFV0h8GGuqmCmKmT+pxcUV/Nt2gQ==,
+ integrity: sha512-QcQ72gh8a+7JO63TAx/6XZf/CWhgMzu5m0QirvPfGvptOusAxG12w2+aua1Jkjr7hzaWDnJ2n6JFeexMHI+Zjg==,
}
engines: { node: '>= 18.12.0' }
hasBin: true
@@ -13092,10 +14121,10 @@ packages:
html-webpack-plugin:
optional: true
- webpack@5.88.0:
+ webpack@5.96.1:
resolution:
{
- integrity: sha512-O3jDhG5e44qIBSi/P6KpcCcH7HD+nYIHVBhdWFxcLOcIGN8zGo5nqF3BjyNCxIh4p1vFdNnreZv2h2KkoAw3lw==,
+ integrity: sha512-l2LlBSvVZGhL4ZrPwyr8+37AunkcYj5qh8o6u2/2rzoPc8gxFJkLj1WxNgooi9pnoc06jh0BjuXnamM4qlujZA==,
}
engines: { node: '>=10.13.0' }
hasBin: true
@@ -13105,10 +14134,10 @@ packages:
webpack-cli:
optional: true
- webpack@5.94.0:
+ webpack@5.99.8:
resolution:
{
- integrity: sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==,
+ integrity: sha512-lQ3CPiSTpfOnrEGeXDwoq5hIGzSjmwD72GdfVzF7CQAI7t47rJG9eDWvcEkEn3CUQymAElVvDg3YNTlCYj+qUQ==,
}
engines: { node: '>=10.13.0' }
hasBin: true
@@ -13118,10 +14147,10 @@ packages:
webpack-cli:
optional: true
- webpack@5.96.1:
+ webpack@5.99.9:
resolution:
{
- integrity: sha512-l2LlBSvVZGhL4ZrPwyr8+37AunkcYj5qh8o6u2/2rzoPc8gxFJkLj1WxNgooi9pnoc06jh0BjuXnamM4qlujZA==,
+ integrity: sha512-brOPwM3JnmOa+7kd3NsmOUOwbDAj8FT9xDsG3IW0MgbN9yZV7Oi/s/+MNQ/EcSMqw7qfoRyXPoeEWT8zLVdVGg==,
}
engines: { node: '>=10.13.0' }
hasBin: true
@@ -13331,6 +14360,13 @@ packages:
}
engines: { node: '>=12' }
+ yargs-parser@22.0.0:
+ resolution:
+ {
+ integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==,
+ }
+ engines: { node: ^20.19.0 || ^22.12.0 || >=23 }
+
yargs@17.7.2:
resolution:
{
@@ -13338,6 +14374,13 @@ packages:
}
engines: { node: '>=12' }
+ yargs@18.0.0:
+ resolution:
+ {
+ integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==,
+ }
+ engines: { node: ^20.19.0 || ^22.12.0 || >=23 }
+
yauzl@2.10.0:
resolution:
{
@@ -13379,12 +14422,6 @@ packages:
}
engines: { node: '>=18' }
- zone.js@0.14.10:
- resolution:
- {
- integrity: sha512-YGAhaO7J5ywOXW6InXNlLmfU194F8lVgu7bRntUF3TiG8Y3nBK0x1UJJuHUP/e8IyihkjCYqhCScpSwnlaSRkQ==,
- }
-
snapshots:
'@adobe/css-tools@4.3.3': {}
@@ -13393,77 +14430,78 @@ snapshots:
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- '@angular-devkit/architect@0.1900.4(chokidar@4.0.1)':
+ '@angular-devkit/architect@0.2000.5(chokidar@4.0.1)':
dependencies:
- '@angular-devkit/core': 19.0.4(chokidar@4.0.1)
- rxjs: 7.8.1
+ '@angular-devkit/core': 20.0.5(chokidar@4.0.1)
+ rxjs: 7.8.2
transitivePeerDependencies:
- chokidar
- '@angular-devkit/build-angular@19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@rspack/core@1.1.5)(@types/node@20.14.15)(chokidar@4.0.1)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3)))(ng-packagr@19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3))(tslib@2.6.3)(typescript@5.6.3))(stylus@0.64.0)(typescript@5.6.3)(vite@5.4.11(@types/node@20.14.15)(less@4.2.0)(sass@1.80.7)(stylus@0.64.0)(terser@5.36.0))':
+ '@angular-devkit/build-angular@20.0.5(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(@angular/compiler@20.0.6)(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(@angular/platform-browser@20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@types/node@20.14.15)(chokidar@4.0.1)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3)))(jiti@1.21.6)(ng-packagr@20.0.1(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3))(sass-embedded@1.89.2)(stylus@0.64.0)(typescript@5.8.3)(yaml@2.6.1)':
dependencies:
'@ampproject/remapping': 2.3.0
- '@angular-devkit/architect': 0.1900.4(chokidar@4.0.1)
- '@angular-devkit/build-webpack': 0.1900.4(chokidar@4.0.1)(webpack-dev-server@5.1.0(webpack@5.96.1(esbuild@0.24.0)))(webpack@5.96.1(esbuild@0.24.0))
- '@angular-devkit/core': 19.0.4(chokidar@4.0.1)
- '@angular/build': 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@types/node@20.14.15)(chokidar@4.0.1)(less@4.2.0)(postcss@8.4.49)(stylus@0.64.0)(terser@5.36.0)(typescript@5.6.3)
- '@angular/compiler-cli': 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3)
- '@babel/core': 7.26.0
- '@babel/generator': 7.26.2
- '@babel/helper-annotate-as-pure': 7.25.9
+ '@angular-devkit/architect': 0.2000.5(chokidar@4.0.1)
+ '@angular-devkit/build-webpack': 0.2000.5(chokidar@4.0.1)(webpack-dev-server@5.2.1(webpack@5.99.8(esbuild@0.25.5)))(webpack@5.99.8(esbuild@0.25.5))
+ '@angular-devkit/core': 20.0.5(chokidar@4.0.1)
+ '@angular/build': 20.0.5(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(@angular/compiler@20.0.6)(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(@angular/platform-browser@20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@types/node@20.14.15)(chokidar@4.0.1)(jiti@1.21.6)(less@4.3.0)(ng-packagr@20.0.1(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3))(postcss@8.5.3)(sass-embedded@1.89.2)(stylus@0.64.0)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.6.1)
+ '@angular/compiler-cli': 20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3)
+ '@babel/core': 7.27.1
+ '@babel/generator': 7.27.1
+ '@babel/helper-annotate-as-pure': 7.27.1
'@babel/helper-split-export-declaration': 7.24.7
- '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0)
- '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
- '@babel/runtime': 7.26.0
+ '@babel/plugin-transform-async-generator-functions': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-runtime': 7.27.1(@babel/core@7.27.1)
+ '@babel/preset-env': 7.27.2(@babel/core@7.27.1)
+ '@babel/runtime': 7.27.1
'@discoveryjs/json-ext': 0.6.3
- '@ngtools/webpack': 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3))(typescript@5.6.3)(webpack@5.96.1(esbuild@0.24.0))
- '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.11(@types/node@20.14.15)(less@4.2.0)(sass@1.80.7)(stylus@0.64.0)(terser@5.36.0))
+ '@ngtools/webpack': 20.0.5(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(typescript@5.8.3)(webpack@5.99.8(esbuild@0.25.5))
ansi-colors: 4.1.3
- autoprefixer: 10.4.20(postcss@8.4.49)
- babel-loader: 9.2.1(@babel/core@7.26.0)(webpack@5.96.1(esbuild@0.24.0))
- browserslist: 4.23.3
- copy-webpack-plugin: 12.0.2(webpack@5.96.1(esbuild@0.24.0))
- css-loader: 7.1.2(@rspack/core@1.1.5)(webpack@5.96.1(esbuild@0.24.0))
- esbuild-wasm: 0.24.0
- fast-glob: 3.3.2
- http-proxy-middleware: 3.0.3
+ autoprefixer: 10.4.21(postcss@8.5.3)
+ babel-loader: 10.0.0(@babel/core@7.27.1)(webpack@5.99.8(esbuild@0.25.5))
+ browserslist: 4.24.2
+ copy-webpack-plugin: 13.0.0(webpack@5.99.8(esbuild@0.25.5))
+ css-loader: 7.1.2(@rspack/core@1.4.4(@swc/helpers@0.5.17))(webpack@5.99.8(esbuild@0.25.5))
+ esbuild-wasm: 0.25.5
+ fast-glob: 3.3.3
+ 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.2.0
- less-loader: 12.2.0(@rspack/core@1.1.5)(less@4.2.0)(webpack@5.96.1(esbuild@0.24.0))
- license-webpack-plugin: 4.0.2(webpack@5.96.1(esbuild@0.24.0))
+ less: 4.3.0
+ less-loader: 12.3.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(less@4.3.0)(webpack@5.99.8(esbuild@0.25.5))
+ license-webpack-plugin: 4.0.2(webpack@5.99.8(esbuild@0.25.5))
loader-utils: 3.3.1
- mini-css-extract-plugin: 2.9.2(webpack@5.96.1(esbuild@0.24.0))
- open: 10.1.0
- ora: 5.4.1
+ mini-css-extract-plugin: 2.9.2(webpack@5.99.8(esbuild@0.25.5))
+ open: 10.1.2
+ ora: 8.2.0
picomatch: 4.0.2
- piscina: 4.7.0
- postcss: 8.4.49
- postcss-loader: 8.1.1(@rspack/core@1.1.5)(postcss@8.4.49)(typescript@5.6.3)(webpack@5.96.1(esbuild@0.24.0))
+ piscina: 5.1.1
+ postcss: 8.5.3
+ postcss-loader: 8.1.1(@rspack/core@1.4.4(@swc/helpers@0.5.17))(postcss@8.5.3)(typescript@5.8.3)(webpack@5.99.8(esbuild@0.25.5))
resolve-url-loader: 5.0.0
- rxjs: 7.8.1
- sass: 1.80.7
- sass-loader: 16.0.3(@rspack/core@1.1.5)(sass@1.80.7)(webpack@5.96.1(esbuild@0.24.0))
- semver: 7.6.3
- source-map-loader: 5.0.0(webpack@5.96.1(esbuild@0.24.0))
+ rxjs: 7.8.2
+ sass: 1.88.0
+ sass-loader: 16.0.5(@rspack/core@1.4.4(@swc/helpers@0.5.17))(sass-embedded@1.89.2)(sass@1.88.0)(webpack@5.99.8(esbuild@0.25.5))
+ semver: 7.7.2
+ source-map-loader: 5.0.0(webpack@5.99.8(esbuild@0.25.5))
source-map-support: 0.5.21
- terser: 5.36.0
+ terser: 5.39.1
tree-kill: 1.2.2
tslib: 2.8.1
- typescript: 5.6.3
- webpack: 5.96.1(esbuild@0.24.0)
- webpack-dev-middleware: 7.4.2(webpack@5.96.1(esbuild@0.24.0))
- webpack-dev-server: 5.1.0(webpack@5.94.0)
+ typescript: 5.8.3
+ webpack: 5.99.8(esbuild@0.25.5)
+ webpack-dev-middleware: 7.4.2(webpack@5.99.8(esbuild@0.25.5))
+ webpack-dev-server: 5.2.1(webpack@5.99.9)
webpack-merge: 6.0.1
- webpack-subresource-integrity: 5.1.0(webpack@5.96.1(esbuild@0.24.0))
+ webpack-subresource-integrity: 5.1.0(webpack@5.99.8(esbuild@0.25.5))
optionalDependencies:
- esbuild: 0.24.0
- jest: 29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3))
+ '@angular/core': 20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)
+ '@angular/platform-browser': 20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))
+ esbuild: 0.25.5
+ jest: 29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3))
jest-environment-jsdom: 29.7.0
- ng-packagr: 19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3))(tslib@2.6.3)(typescript@5.6.3)
+ ng-packagr: 20.0.1(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3)
transitivePeerDependencies:
- '@angular/compiler'
- '@rspack/core'
@@ -13473,149 +14511,215 @@ snapshots:
- chokidar
- debug
- html-webpack-plugin
+ - jiti
- lightningcss
- node-sass
- sass-embedded
- stylus
- sugarss
- supports-color
+ - tsx
- uglify-js
- utf-8-validate
- - vite
+ - vitest
- webpack-cli
+ - yaml
- '@angular-devkit/build-webpack@0.1900.4(chokidar@4.0.1)(webpack-dev-server@5.1.0(webpack@5.96.1(esbuild@0.24.0)))(webpack@5.96.1(esbuild@0.24.0))':
+ '@angular-devkit/build-webpack@0.2000.5(chokidar@4.0.1)(webpack-dev-server@5.2.1(webpack@5.99.8(esbuild@0.25.5)))(webpack@5.99.8(esbuild@0.25.5))':
dependencies:
- '@angular-devkit/architect': 0.1900.4(chokidar@4.0.1)
- rxjs: 7.8.1
- webpack: 5.96.1(esbuild@0.24.0)
- webpack-dev-server: 5.1.0(webpack@5.94.0)
+ '@angular-devkit/architect': 0.2000.5(chokidar@4.0.1)
+ rxjs: 7.8.2
+ webpack: 5.99.8(esbuild@0.25.5)
+ webpack-dev-server: 5.2.1(webpack@5.99.9)
transitivePeerDependencies:
- chokidar
- '@angular-devkit/core@19.0.4(chokidar@4.0.1)':
+ '@angular-devkit/core@20.0.5(chokidar@4.0.1)':
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.1
+ rxjs: 7.8.2
source-map: 0.7.4
optionalDependencies:
chokidar: 4.0.1
- '@angular-devkit/schematics@19.0.4(chokidar@4.0.1)':
+ '@angular-devkit/schematics@20.0.5(chokidar@4.0.1)':
dependencies:
- '@angular-devkit/core': 19.0.4(chokidar@4.0.1)
+ '@angular-devkit/core': 20.0.5(chokidar@4.0.1)
jsonc-parser: 3.3.1
- magic-string: 0.30.12
- ora: 5.4.1
- rxjs: 7.8.1
+ magic-string: 0.30.17
+ ora: 8.2.0
+ rxjs: 7.8.2
transitivePeerDependencies:
- chokidar
- '@angular-eslint/bundled-angular-compiler@19.0.1': {}
+ '@angular-eslint/bundled-angular-compiler@20.1.1': {}
- '@angular-eslint/eslint-plugin-template@19.0.1(@typescript-eslint/types@8.16.0)(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)':
+ '@angular-eslint/eslint-plugin-template@20.1.1(@angular-eslint/template-parser@20.1.1(eslint@8.57.0)(typescript@5.8.3))(@typescript-eslint/types@8.16.0)(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.8.3))(eslint@8.57.0)(typescript@5.8.3)':
dependencies:
- '@angular-eslint/bundled-angular-compiler': 19.0.1
- '@angular-eslint/utils': 19.0.1(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)
+ '@angular-eslint/bundled-angular-compiler': 20.1.1
+ '@angular-eslint/template-parser': 20.1.1(eslint@8.57.0)(typescript@5.8.3)
+ '@angular-eslint/utils': 20.1.1(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.8.3))(eslint@8.57.0)(typescript@5.8.3)
'@typescript-eslint/types': 8.16.0
- '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.6.3)
+ '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.8.3)
aria-query: 5.3.2
axobject-query: 4.1.0
eslint: 8.57.0
- typescript: 5.6.3
+ typescript: 5.8.3
- '@angular-eslint/eslint-plugin@19.0.1(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)':
+ '@angular-eslint/eslint-plugin@20.1.1(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.8.3))(eslint@8.57.0)(typescript@5.8.3)':
dependencies:
- '@angular-eslint/bundled-angular-compiler': 19.0.1
- '@angular-eslint/utils': 19.0.1(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)
- '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.6.3)
+ '@angular-eslint/bundled-angular-compiler': 20.1.1
+ '@angular-eslint/utils': 20.1.1(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.8.3))(eslint@8.57.0)(typescript@5.8.3)
+ '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.8.3)
eslint: 8.57.0
- typescript: 5.6.3
+ ts-api-utils: 2.1.0(typescript@5.8.3)
+ typescript: 5.8.3
- '@angular-eslint/template-parser@19.0.1(eslint@8.57.0)(typescript@5.6.3)':
+ '@angular-eslint/template-parser@20.1.1(eslint@8.57.0)(typescript@5.8.3)':
dependencies:
- '@angular-eslint/bundled-angular-compiler': 19.0.1
+ '@angular-eslint/bundled-angular-compiler': 20.1.1
eslint: 8.57.0
eslint-scope: 8.0.2
- typescript: 5.6.3
+ typescript: 5.8.3
- '@angular-eslint/utils@19.0.1(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)':
+ '@angular-eslint/utils@20.1.1(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.8.3))(eslint@8.57.0)(typescript@5.8.3)':
dependencies:
- '@angular-eslint/bundled-angular-compiler': 19.0.1
- '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.6.3)
+ '@angular-eslint/bundled-angular-compiler': 20.1.1
+ '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.8.3)
eslint: 8.57.0
- typescript: 5.6.3
+ typescript: 5.8.3
+
+ '@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))':
+ dependencies:
+ '@angular/common': 20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1)
+ '@angular/core': 20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)
+ tslib: 2.8.1
- '@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))':
+ '@angular/build@20.0.5(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(@angular/compiler@20.0.6)(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(@angular/platform-browser@20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@types/node@20.14.15)(chokidar@4.0.1)(jiti@1.21.6)(less@4.1.3)(ng-packagr@20.0.1(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3))(postcss@8.4.41)(sass-embedded@1.89.2)(stylus@0.64.0)(terser@5.39.1)(tslib@2.6.3)(typescript@5.8.3)(yaml@2.6.1)':
dependencies:
- '@angular/core': 19.0.3(rxjs@7.8.1)(zone.js@0.14.10)
+ '@ampproject/remapping': 2.3.0
+ '@angular-devkit/architect': 0.2000.5(chokidar@4.0.1)
+ '@angular/compiler': 20.0.6
+ '@angular/compiler-cli': 20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3)
+ '@babel/core': 7.27.1
+ '@babel/helper-annotate-as-pure': 7.27.1
+ '@babel/helper-split-export-declaration': 7.24.7
+ '@inquirer/confirm': 5.1.10(@types/node@20.14.15)
+ '@vitejs/plugin-basic-ssl': 2.0.0(vite@6.3.5(@types/node@20.14.15)(jiti@1.21.6)(less@4.1.3)(sass-embedded@1.89.2)(sass@1.88.0)(stylus@0.64.0)(terser@5.39.1)(yaml@2.6.1))
+ beasties: 0.3.4
+ browserslist: 4.24.2
+ esbuild: 0.25.5
+ 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
+ mrmime: 2.0.1
+ parse5-html-rewriting-stream: 7.1.0
+ picomatch: 4.0.2
+ piscina: 5.1.1
+ rollup: 4.40.2
+ sass: 1.88.0
+ semver: 7.7.2
+ source-map-support: 0.5.21
+ tinyglobby: 0.2.13
tslib: 2.6.3
+ typescript: 5.8.3
+ vite: 6.3.5(@types/node@20.14.15)(jiti@1.21.6)(less@4.1.3)(sass-embedded@1.89.2)(sass@1.88.0)(stylus@0.64.0)(terser@5.39.1)(yaml@2.6.1)
+ watchpack: 2.4.2
+ optionalDependencies:
+ '@angular/core': 20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)
+ '@angular/platform-browser': 20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))
+ less: 4.1.3
+ lmdb: 3.3.0
+ ng-packagr: 20.0.1(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3)
+ postcss: 8.4.41
+ transitivePeerDependencies:
+ - '@types/node'
+ - chokidar
+ - jiti
+ - lightningcss
+ - sass-embedded
+ - stylus
+ - sugarss
+ - supports-color
+ - terser
+ - tsx
+ - yaml
+ optional: true
- '@angular/build@19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@types/node@20.14.15)(chokidar@4.0.1)(less@4.2.0)(postcss@8.4.49)(stylus@0.64.0)(terser@5.36.0)(typescript@5.6.3)':
+ '@angular/build@20.0.5(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(@angular/compiler@20.0.6)(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(@angular/platform-browser@20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@types/node@20.14.15)(chokidar@4.0.1)(jiti@1.21.6)(less@4.3.0)(ng-packagr@20.0.1(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3))(postcss@8.5.3)(sass-embedded@1.89.2)(stylus@0.64.0)(terser@5.39.1)(tslib@2.8.1)(typescript@5.8.3)(yaml@2.6.1)':
dependencies:
'@ampproject/remapping': 2.3.0
- '@angular-devkit/architect': 0.1900.4(chokidar@4.0.1)
- '@angular/compiler': 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))
- '@angular/compiler-cli': 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3)
- '@babel/core': 7.26.0
- '@babel/helper-annotate-as-pure': 7.25.9
+ '@angular-devkit/architect': 0.2000.5(chokidar@4.0.1)
+ '@angular/compiler': 20.0.6
+ '@angular/compiler-cli': 20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3)
+ '@babel/core': 7.27.1
+ '@babel/helper-annotate-as-pure': 7.27.1
'@babel/helper-split-export-declaration': 7.24.7
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
- '@inquirer/confirm': 5.0.2(@types/node@20.14.15)
- '@vitejs/plugin-basic-ssl': 1.1.0(vite@5.4.11(@types/node@20.14.15)(less@4.2.0)(sass@1.80.7)(stylus@0.64.0)(terser@5.36.0))
- beasties: 0.1.0
- browserslist: 4.23.3
- esbuild: 0.24.0
- fast-glob: 3.3.2
- https-proxy-agent: 7.0.5
+ '@inquirer/confirm': 5.1.10(@types/node@20.14.15)
+ '@vitejs/plugin-basic-ssl': 2.0.0(vite@6.3.5(@types/node@20.14.15)(jiti@1.21.6)(less@4.3.0)(sass-embedded@1.89.2)(sass@1.88.0)(stylus@0.64.0)(terser@5.39.1)(yaml@2.6.1))
+ beasties: 0.3.4
+ browserslist: 4.24.2
+ esbuild: 0.25.5
+ https-proxy-agent: 7.0.6
istanbul-lib-instrument: 6.0.3
- listr2: 8.2.5
- magic-string: 0.30.12
- mrmime: 2.0.0
- parse5-html-rewriting-stream: 7.0.0
+ jsonc-parser: 3.3.1
+ listr2: 8.3.3
+ magic-string: 0.30.17
+ mrmime: 2.0.1
+ parse5-html-rewriting-stream: 7.1.0
picomatch: 4.0.2
- piscina: 4.7.0
- rollup: 4.26.0
- sass: 1.80.7
- semver: 7.6.3
- typescript: 5.6.3
- vite: 5.4.11(@types/node@20.14.15)(less@4.1.3)(sass@1.77.8)(stylus@0.64.0)(terser@5.36.0)
+ piscina: 5.1.1
+ rollup: 4.40.2
+ sass: 1.88.0
+ semver: 7.7.2
+ source-map-support: 0.5.21
+ tinyglobby: 0.2.13
+ tslib: 2.8.1
+ typescript: 5.8.3
+ vite: 6.3.5(@types/node@20.14.15)(jiti@1.21.6)(less@4.1.3)(sass-embedded@1.89.2)(sass@1.89.2)(stylus@0.64.0)(terser@5.39.1)(yaml@2.6.1)
watchpack: 2.4.2
optionalDependencies:
- less: 4.2.0
- lmdb: 3.1.5
- postcss: 8.4.49
+ '@angular/core': 20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)
+ '@angular/platform-browser': 20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))
+ less: 4.3.0
+ lmdb: 3.3.0
+ ng-packagr: 20.0.1(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3)
+ postcss: 8.5.3
transitivePeerDependencies:
- '@types/node'
- chokidar
+ - jiti
- lightningcss
- sass-embedded
- stylus
- sugarss
- supports-color
- terser
+ - tsx
+ - yaml
- '@angular/cli@19.0.4(@types/node@20.14.15)(chokidar@4.0.1)':
+ '@angular/cli@20.0.5(@types/node@20.14.15)(chokidar@4.0.1)':
dependencies:
- '@angular-devkit/architect': 0.1900.4(chokidar@4.0.1)
- '@angular-devkit/core': 19.0.4(chokidar@4.0.1)
- '@angular-devkit/schematics': 19.0.4(chokidar@4.0.1)
- '@inquirer/prompts': 7.1.0(@types/node@20.14.15)
- '@listr2/prompt-adapter-inquirer': 2.0.18(@inquirer/prompts@7.1.0(@types/node@20.14.15))
- '@schematics/angular': 19.0.4(chokidar@4.0.1)
+ '@angular-devkit/architect': 0.2000.5(chokidar@4.0.1)
+ '@angular-devkit/core': 20.0.5(chokidar@4.0.1)
+ '@angular-devkit/schematics': 20.0.5(chokidar@4.0.1)
+ '@inquirer/prompts': 7.5.1(@types/node@20.14.15)
+ '@listr2/prompt-adapter-inquirer': 2.0.22(@inquirer/prompts@7.5.1(@types/node@20.14.15))
+ '@schematics/angular': 20.0.5(chokidar@4.0.1)
'@yarnpkg/lockfile': 1.1.0
ini: 5.0.0
jsonc-parser: 3.3.1
- listr2: 8.2.5
- npm-package-arg: 12.0.0
+ listr2: 8.3.3
+ npm-package-arg: 12.0.2
npm-pick-manifest: 10.0.0
- pacote: 20.0.0
- resolve: 1.22.8
- semver: 7.6.3
- symbol-observable: 4.0.0
+ pacote: 21.0.0
+ resolve: 1.22.10
+ semver: 7.7.2
yargs: 17.7.2
transitivePeerDependencies:
- '@types/node'
@@ -13623,72 +14727,72 @@ snapshots:
- chokidar
- supports-color
- '@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1)':
+ '@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1)':
dependencies:
- '@angular/core': 19.0.3(rxjs@7.8.1)(zone.js@0.14.10)
+ '@angular/core': 20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)
rxjs: 7.8.1
- tslib: 2.6.3
+ tslib: 2.8.1
- '@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3)':
+ '@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3)':
dependencies:
- '@angular/compiler': 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))
- '@babel/core': 7.26.0
+ '@angular/compiler': 20.0.6
+ '@babel/core': 7.27.7
'@jridgewell/sourcemap-codec': 1.5.0
chokidar: 4.0.1
convert-source-map: 1.9.0
reflect-metadata: 0.2.2
semver: 7.6.3
- tslib: 2.6.3
- typescript: 5.6.3
- yargs: 17.7.2
+ tslib: 2.8.1
+ yargs: 18.0.0
+ optionalDependencies:
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))':
+ '@angular/compiler@20.0.6':
dependencies:
- tslib: 2.6.3
- optionalDependencies:
- '@angular/core': 19.0.3(rxjs@7.8.1)(zone.js@0.14.10)
+ tslib: 2.8.1
- '@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)':
+ '@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)':
dependencies:
rxjs: 7.8.1
- tslib: 2.6.3
- zone.js: 0.14.10
+ tslib: 2.8.1
+ optionalDependencies:
+ '@angular/compiler': 20.0.6
- '@angular/forms@19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(rxjs@7.8.1)':
+ '@angular/forms@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(@angular/platform-browser@20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(rxjs@7.8.1)':
dependencies:
- '@angular/common': 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1)
- '@angular/core': 19.0.3(rxjs@7.8.1)(zone.js@0.14.10)
- '@angular/platform-browser': 19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))
+ '@angular/common': 20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1)
+ '@angular/core': 20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)
+ '@angular/platform-browser': 20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))
rxjs: 7.8.1
- tslib: 2.6.3
+ tslib: 2.8.1
- '@angular/language-service@19.0.3': {}
+ '@angular/language-service@20.0.6': {}
- '@angular/platform-browser-dynamic@19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))':
+ '@angular/platform-browser-dynamic@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/compiler@20.0.6)(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(@angular/platform-browser@20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))':
dependencies:
- '@angular/common': 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1)
- '@angular/compiler': 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))
- '@angular/core': 19.0.3(rxjs@7.8.1)(zone.js@0.14.10)
- '@angular/platform-browser': 19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))
- tslib: 2.6.3
+ '@angular/common': 20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1)
+ '@angular/compiler': 20.0.6
+ '@angular/core': 20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)
+ '@angular/platform-browser': 20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))
+ tslib: 2.8.1
- '@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))':
+ '@angular/platform-browser@20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))':
dependencies:
- '@angular/common': 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1)
- '@angular/core': 19.0.3(rxjs@7.8.1)(zone.js@0.14.10)
- tslib: 2.6.3
+ '@angular/common': 20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1)
+ '@angular/core': 20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)
+ tslib: 2.8.1
optionalDependencies:
- '@angular/animations': 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))
+ '@angular/animations': 20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))
- '@angular/router@19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(rxjs@7.8.1)':
+ '@angular/router@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(@angular/platform-browser@20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(rxjs@7.8.1)':
dependencies:
- '@angular/common': 19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1)
- '@angular/core': 19.0.3(rxjs@7.8.1)(zone.js@0.14.10)
- '@angular/platform-browser': 19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))
+ '@angular/common': 20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1)
+ '@angular/core': 20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)
+ '@angular/platform-browser': 20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))
rxjs: 7.8.1
- tslib: 2.6.3
+ tslib: 2.8.1
'@babel/code-frame@7.24.7':
dependencies:
@@ -13701,10 +14805,18 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.1.1
+ '@babel/code-frame@7.27.1':
+ dependencies:
+ '@babel/helper-validator-identifier': 7.27.1
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
+
'@babel/compat-data@7.25.2': {}
'@babel/compat-data@7.26.3': {}
+ '@babel/compat-data@7.28.0': {}
+
'@babel/core@7.25.2':
dependencies:
'@ampproject/remapping': 2.3.0
@@ -13729,7 +14841,7 @@ snapshots:
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.2
+ '@babel/generator': 7.26.3
'@babel/helper-compilation-targets': 7.25.9
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
'@babel/helpers': 7.26.0
@@ -13745,6 +14857,46 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/core@7.27.1':
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.27.1
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.1)
+ '@babel/helpers': 7.27.6
+ '@babel/parser': 7.28.0
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.28.0
+ '@babel/types': 7.28.0
+ convert-source-map: 2.0.0
+ debug: 4.3.6(supports-color@8.1.1)
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/core@7.27.7':
+ 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/helpers': 7.27.6
+ '@babel/parser': 7.28.0
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.28.0
+ '@babel/types': 7.28.0
+ convert-source-map: 2.0.0
+ debug: 4.3.6(supports-color@8.1.1)
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/generator@7.25.0':
dependencies:
'@babel/types': 7.25.2
@@ -13752,7 +14904,7 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
- '@babel/generator@7.26.2':
+ '@babel/generator@7.26.3':
dependencies:
'@babel/parser': 7.26.3
'@babel/types': 7.26.3
@@ -13760,28 +14912,33 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.0.2
- '@babel/generator@7.26.3':
+ '@babel/generator@7.27.1':
dependencies:
- '@babel/parser': 7.26.3
- '@babel/types': 7.26.3
+ '@babel/parser': 7.28.0
+ '@babel/types': 7.28.0
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.0.2
- '@babel/helper-annotate-as-pure@7.24.7':
+ '@babel/generator@7.28.0':
dependencies:
- '@babel/types': 7.25.2
+ '@babel/parser': 7.28.0
+ '@babel/types': 7.28.0
+ '@jridgewell/gen-mapping': 0.3.12
+ '@jridgewell/trace-mapping': 0.3.29
+ jsesc: 3.0.2
'@babel/helper-annotate-as-pure@7.25.9':
dependencies:
'@babel/types': 7.26.3
- '@babel/helper-builder-binary-assignment-operator-visitor@7.24.7':
+ '@babel/helper-annotate-as-pure@7.27.1':
dependencies:
- '@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
- transitivePeerDependencies:
- - supports-color
+ '@babel/types': 7.28.0
+
+ '@babel/helper-annotate-as-pure@7.27.3':
+ dependencies:
+ '@babel/types': 7.28.0
'@babel/helper-compilation-targets@7.25.2':
dependencies:
@@ -13799,18 +14956,13 @@ snapshots:
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.25.0(@babel/core@7.25.2)':
+ '@babel/helper-compilation-targets@7.27.2':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.24.8
- '@babel/helper-optimise-call-expression': 7.24.7
- '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/traverse': 7.25.3
+ '@babel/compat-data': 7.28.0
+ '@babel/helper-validator-option': 7.27.1
+ browserslist: 4.24.2
+ lru-cache: 5.1.1
semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
'@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -13825,56 +14977,75 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.25.2(@babel/core@7.25.2)':
+ '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.25.9
- regexpu-core: 5.3.2
+ '@babel/core': 7.27.1
+ '@babel/helper-annotate-as-pure': 7.27.1
+ '@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.1)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ '@babel/traverse': 7.28.0
semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-create-regexp-features-plugin@7.25.2(@babel/core@7.26.0)':
+ '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-annotate-as-pure': 7.25.9
- regexpu-core: 5.3.2
+ '@babel/helper-annotate-as-pure': 7.27.1
+ regexpu-core: 6.2.0
semver: 6.3.1
- '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.0)':
+ '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/core': 7.27.1
+ '@babel/helper-annotate-as-pure': 7.27.1
regexpu-core: 6.2.0
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.25.2)':
+ '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.27.1
+ '@babel/helper-annotate-as-pure': 7.27.1
+ regexpu-core: 6.2.0
+ semver: 6.3.1
+
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
debug: 4.3.6(supports-color@8.1.1)
lodash.debounce: 4.0.8
- resolve: 1.22.8
+ resolve: 1.22.10
transitivePeerDependencies:
- supports-color
- '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.26.0)':
+ '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.27.1
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
debug: 4.3.6(supports-color@8.1.1)
lodash.debounce: 4.0.8
- resolve: 1.22.8
+ resolve: 1.22.10
transitivePeerDependencies:
- supports-color
- '@babel/helper-member-expression-to-functions@7.24.8':
+ '@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.27.1)':
dependencies:
- '@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/core': 7.27.1
+ '@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
transitivePeerDependencies:
- supports-color
+ '@babel/helper-globals@7.28.0': {}
+
'@babel/helper-member-expression-to-functions@7.25.9':
dependencies:
'@babel/traverse': 7.26.4
@@ -13882,6 +15053,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-member-expression-to-functions@7.27.1':
+ dependencies:
+ '@babel/traverse': 7.28.0
+ '@babel/types': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-module-imports@7.24.7':
dependencies:
'@babel/traverse': 7.25.3
@@ -13896,6 +15074,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-module-imports@7.27.1':
+ dependencies:
+ '@babel/traverse': 7.28.0
+ '@babel/types': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
@@ -13915,26 +15100,37 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-optimise-call-expression@7.24.7':
+ '@babel/helper-module-transforms@7.27.3(@babel/core@7.27.1)':
dependencies:
- '@babel/types': 7.25.2
+ '@babel/core': 7.27.1
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+ '@babel/traverse': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-transforms@7.27.3(@babel/core@7.27.7)':
+ dependencies:
+ '@babel/core': 7.27.7
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+ '@babel/traverse': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
'@babel/helper-optimise-call-expression@7.25.9':
dependencies:
'@babel/types': 7.26.3
+ '@babel/helper-optimise-call-expression@7.27.1':
+ dependencies:
+ '@babel/types': 7.28.0
+
'@babel/helper-plugin-utils@7.24.8': {}
'@babel/helper-plugin-utils@7.25.9': {}
- '@babel/helper-remap-async-to-generator@7.25.0(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-wrap-function': 7.25.0
- '@babel/traverse': 7.25.3
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-plugin-utils@7.27.1': {}
'@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -13945,12 +15141,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.25.0(@babel/core@7.25.2)':
+ '@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-member-expression-to-functions': 7.24.8
- '@babel/helper-optimise-call-expression': 7.24.7
- '@babel/traverse': 7.25.3
+ '@babel/core': 7.27.1
+ '@babel/helper-annotate-as-pure': 7.27.1
+ '@babel/helper-wrap-function': 7.27.1
+ '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
@@ -13963,14 +15159,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-simple-access@7.24.7':
+ '@babel/helper-replace-supers@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/core': 7.27.1
+ '@babel/helper-member-expression-to-functions': 7.27.1
+ '@babel/helper-optimise-call-expression': 7.27.1
+ '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
- '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
+ '@babel/helper-simple-access@7.24.7':
dependencies:
'@babel/traverse': 7.25.3
'@babel/types': 7.25.2
@@ -13984,29 +15182,34 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-skip-transparent-expression-wrappers@7.27.1':
+ dependencies:
+ '@babel/traverse': 7.28.0
+ '@babel/types': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-split-export-declaration@7.24.7':
dependencies:
- '@babel/types': 7.25.2
+ '@babel/types': 7.26.3
'@babel/helper-string-parser@7.24.8': {}
'@babel/helper-string-parser@7.25.9': {}
+ '@babel/helper-string-parser@7.27.1': {}
+
'@babel/helper-validator-identifier@7.24.7': {}
'@babel/helper-validator-identifier@7.25.9': {}
+ '@babel/helper-validator-identifier@7.27.1': {}
+
'@babel/helper-validator-option@7.24.8': {}
'@babel/helper-validator-option@7.25.9': {}
- '@babel/helper-wrap-function@7.25.0':
- dependencies:
- '@babel/template': 7.25.0
- '@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-validator-option@7.27.1': {}
'@babel/helper-wrap-function@7.25.9':
dependencies:
@@ -14016,6 +15219,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/helper-wrap-function@7.27.1':
+ dependencies:
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.28.0
+ '@babel/types': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helpers@7.25.0':
dependencies:
'@babel/template': 7.25.0
@@ -14026,6 +15237,11 @@ snapshots:
'@babel/template': 7.25.9
'@babel/types': 7.26.3
+ '@babel/helpers@7.27.6':
+ dependencies:
+ '@babel/template': 7.27.2
+ '@babel/types': 7.28.0
+
'@babel/highlight@7.24.7':
dependencies:
'@babel/helper-validator-identifier': 7.24.7
@@ -14041,13 +15257,9 @@ snapshots:
dependencies:
'@babel/types': 7.26.3
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.3(@babel/core@7.25.2)':
+ '@babel/parser@7.28.0':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/traverse': 7.25.3
- transitivePeerDependencies:
- - supports-color
+ '@babel/types': 7.28.0
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -14057,34 +15269,33 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.0(@babel/core@7.25.2)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/traverse': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.0(@babel/core@7.25.2)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -14095,11 +15306,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.0(@babel/core@7.25.2)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/traverse': 7.25.3
+ '@babel/core': 7.27.1
+ '@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.1)
transitivePeerDependencies:
- supports-color
@@ -14111,169 +15323,229 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.25.2)
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)':
+ '@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.2)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
- '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.24.8
+ optional: true
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.24.8
+ optional: true
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.24.8
+ optional: true
- '@babel/plugin-syntax-import-assertions@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-syntax-import-attributes@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.27.1)':
+ dependencies:
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.24.8
+ optional: true
+
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.24.8
+ optional: true
+
'@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.24.8
+
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.24.8
+ optional: true
+
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.24.8
+ optional: true
+
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.24.8
+ optional: true
+
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.24.8
+ optional: true
+
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.24.8
+ optional: true
+
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.24.8
+ optional: true
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.24.8
+ optional: true
+
'@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.25.2)':
dependencies:
'@babel/core': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.26.0)
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.27.1)
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-async-generator-functions@7.25.0(@babel/core@7.25.2)':
+ '@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
- '@babel/traverse': 7.25.3
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -14284,12 +15556,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-async-generator-functions@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.25.2)
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.27.1)
+ '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
@@ -14302,33 +15574,34 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@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.27.1)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-block-scoping@7.25.0(@babel/core@7.25.2)':
+ '@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-class-properties@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-block-scoping@7.28.0(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -14338,12 +15611,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
+ '@babel/core': 7.27.1
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -14355,15 +15627,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.25.0(@babel/core@7.25.2)':
+ '@babel/plugin-transform-class-static-block@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
- '@babel/traverse': 7.25.3
- globals: 11.12.0
+ '@babel/core': 7.27.1
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -14379,11 +15647,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-classes@7.28.0(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/template': 7.25.0
+ '@babel/core': 7.27.1
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-globals': 7.28.0
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.1)
+ '@babel/traverse': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -14391,21 +15665,24 @@ snapshots:
'@babel/helper-plugin-utils': 7.25.9
'@babel/template': 7.25.9
- '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.25.2)':
+ '@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/template': 7.27.2
'@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-dotall-regex@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/traverse': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -14413,21 +15690,21 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-duplicate-keys@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.0(@babel/core@7.25.2)':
+ '@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -14435,48 +15712,41 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-dynamic-import@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
+ '@babel/core': 7.27.1
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-exponentiation-operator@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-export-namespace-from@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2)
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-for-of@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -14486,12 +15756,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.25.1(@babel/core@7.25.2)':
+ '@babel/plugin-transform-for-of@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/traverse': 7.25.3
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -14504,55 +15773,54 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-json-strings@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-function-name@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
+ '@babel/core': 7.27.1
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/traverse': 7.28.0
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-literals@7.25.2(@babel/core@7.25.2)':
+ '@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-logical-assignment-operators@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-literals@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-member-expression-literals@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-modules-amd@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -14562,12 +15830,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.25.2)':
+ '@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-simple-access': 7.24.7
+ '@babel/core': 7.27.1
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.1)
+ '@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -14579,13 +15846,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.25.0(@babel/core@7.25.2)':
+ '@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-identifier': 7.24.7
- '@babel/traverse': 7.25.3
+ '@babel/core': 7.27.1
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.1)
+ '@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -14599,11 +15864,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.1)
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+ '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
@@ -14615,11 +15882,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-module-transforms': 7.27.3(@babel/core@7.27.1)
+ '@babel/helper-plugin-utils': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -14627,45 +15896,41 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-new-target@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-new-target@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-numeric-separator@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-object-rest-spread@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2)
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -14674,11 +15939,14 @@ snapshots:
'@babel/helper-plugin-utils': 7.25.9
'@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-object-super@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-object-rest-spread@7.28.0(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2)
+ '@babel/core': 7.27.1
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.27.1)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.27.1)
+ '@babel/traverse': 7.28.0
transitivePeerDependencies:
- supports-color
@@ -14690,25 +15958,23 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-catch-binding@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-object-super@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.1)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-optional-chaining@7.24.8(@babel/core@7.25.2)':
+ '@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -14718,23 +15984,23 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-parameters@7.27.7(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -14744,13 +16010,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
+ '@babel/core': 7.27.1
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -14763,21 +16027,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-property-literals@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-annotate-as-pure': 7.27.1
+ '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/helper-plugin-utils': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-regenerator@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- regenerator-transform: 0.15.2
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -14785,33 +16052,32 @@ snapshots:
'@babel/helper-plugin-utils': 7.25.9
regenerator-transform: 0.15.2
+ '@babel/plugin-transform-regenerator@7.28.0(@babel/core@7.27.1)':
+ dependencies:
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-reserved-words@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-runtime@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.2)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.2)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.2)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-runtime@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -14825,23 +16091,27 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-runtime@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@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.1)
+ babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.27.1)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.27.1)
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-spread@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -14851,62 +16121,64 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-spread@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-template-literals@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-typeof-symbol@7.24.8(@babel/core@7.25.2)':
+ '@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-typescript@7.25.2(@babel/core@7.25.2)':
+ '@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-unicode-escapes@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-typescript@7.25.2(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.0)':
dependencies:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-unicode-property-regex@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -14914,11 +16186,11 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -14926,11 +16198,11 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
- '@babel/plugin-transform-unicode-sets-regex@7.24.7(@babel/core@7.25.2)':
+ '@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.25.2)
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
@@ -14938,94 +16210,11 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
'@babel/helper-plugin-utils': 7.25.9
- '@babel/preset-env@7.25.3(@babel/core@7.25.2)':
+ '@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.27.1)':
dependencies:
- '@babel/compat-data': 7.25.2
- '@babel/core': 7.25.2
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-option': 7.24.8
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.3(@babel/core@7.25.2)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.25.2)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.25.2)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.25.2)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-assertions': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-attributes': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.25.2)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.25.2)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.2)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.25.2)
- '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-async-generator-functions': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-block-scoped-functions': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-class-static-block': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-classes': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-dotall-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-duplicate-keys': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-transform-dynamic-import': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-exponentiation-operator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-export-namespace-from': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-for-of': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.25.2)
- '@babel/plugin-transform-json-strings': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.25.2)
- '@babel/plugin-transform-logical-assignment-operators': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-member-expression-literals': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-amd': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-systemjs': 7.25.0(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-umd': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-new-target': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-numeric-separator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-object-rest-spread': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-object-super': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-optional-catch-binding': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-optional-chaining': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-property-literals': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-regenerator': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-reserved-words': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-template-literals': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-typeof-symbol': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-escapes': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-property-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-unicode-sets-regex': 7.24.7(@babel/core@7.25.2)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.25.2)
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.25.2)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.25.2)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.25.2)
- core-js-compat: 3.38.0
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.27.1
+ '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.27.1)
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/preset-env@7.26.0(@babel/core@7.26.0)':
dependencies:
@@ -15102,41 +16291,112 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.25.9
- '@babel/types': 7.25.2
- esutils: 2.0.3
+ '@babel/preset-env@7.27.2(@babel/core@7.27.1)':
+ dependencies:
+ '@babel/compat-data': 7.28.0
+ '@babel/core': 7.27.1
+ '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-validator-option': 7.27.1
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.27.1)
+ '@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.27.1)
+ '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-async-generator-functions': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.27.1)
+ '@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-class-static-block': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-classes': 7.28.0(@babel/core@7.27.1)
+ '@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.27.1)
+ '@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-literals': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-object-rest-spread': 7.28.0(@babel/core@7.27.1)
+ '@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.27.1)
+ '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-regenerator': 7.28.0(@babel/core@7.27.1)
+ '@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-spread': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.27.1)
+ '@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.27.1)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.27.1)
+ babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.27.1)
+ babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.27.1)
+ babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.27.1)
+ 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.26.0)':
dependencies:
'@babel/core': 7.26.0
- '@babel/helper-plugin-utils': 7.25.9
- '@babel/types': 7.25.2
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/types': 7.26.3
esutils: 2.0.3
- '@babel/preset-typescript@7.24.7(@babel/core@7.25.2)':
- dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-option': 7.24.8
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.25.2)
- '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.25.2)
- transitivePeerDependencies:
- - supports-color
-
- '@babel/regjsgen@0.8.0': {}
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.27.1)':
+ dependencies:
+ '@babel/core': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/types': 7.26.3
+ esutils: 2.0.3
- '@babel/runtime@7.25.0':
+ '@babel/preset-typescript@7.24.7(@babel/core@7.26.0)':
dependencies:
- regenerator-runtime: 0.14.1
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
'@babel/runtime@7.26.0':
dependencies:
regenerator-runtime: 0.14.1
+ '@babel/runtime@7.27.1': {}
+
'@babel/template@7.25.0':
dependencies:
'@babel/code-frame': 7.24.7
@@ -15149,6 +16409,12 @@ snapshots:
'@babel/parser': 7.26.3
'@babel/types': 7.26.3
+ '@babel/template@7.27.2':
+ dependencies:
+ '@babel/code-frame': 7.27.1
+ '@babel/parser': 7.28.0
+ '@babel/types': 7.28.0
+
'@babel/traverse@7.25.3':
dependencies:
'@babel/code-frame': 7.24.7
@@ -15173,6 +16439,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@babel/traverse@7.28.0':
+ dependencies:
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.28.0
+ '@babel/helper-globals': 7.28.0
+ '@babel/parser': 7.28.0
+ '@babel/template': 7.27.2
+ '@babel/types': 7.28.0
+ debug: 4.3.6(supports-color@8.1.1)
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/types@7.25.2':
dependencies:
'@babel/helper-string-parser': 7.24.8
@@ -15184,10 +16462,14 @@ snapshots:
'@babel/helper-string-parser': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
+ '@babel/types@7.28.0':
+ dependencies:
+ '@babel/helper-string-parser': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
+
'@bcoe/v8-coverage@0.2.3': {}
- '@colors/colors@1.5.0':
- optional: true
+ '@bufbuild/protobuf@2.6.0': {}
'@cspotcode/source-map-support@0.8.1':
dependencies:
@@ -15250,7 +16532,7 @@ snapshots:
dependencies:
postcss-selector-parser: 6.1.1
- '@cypress/request@3.0.1':
+ '@cypress/request@3.0.8':
dependencies:
aws-sign2: 0.7.0
aws4: 1.13.1
@@ -15258,16 +16540,16 @@ snapshots:
combined-stream: 1.0.8
extend: 3.0.2
forever-agent: 0.6.1
- form-data: 2.3.3
- http-signature: 1.3.6
+ form-data: 4.0.0
+ http-signature: 1.4.0
is-typedarray: 1.0.0
isstream: 0.1.2
json-stringify-safe: 5.0.1
mime-types: 2.1.35
performance-now: 2.1.0
- qs: 6.10.4
+ qs: 6.14.0
safe-buffer: 5.2.1
- tough-cookie: 4.1.4
+ tough-cookie: 5.1.2
tunnel-agent: 0.6.0
uuid: 8.3.2
@@ -15283,229 +16565,245 @@ snapshots:
'@emnapi/core@1.2.0':
dependencies:
'@emnapi/wasi-threads': 1.0.1
- tslib: 2.6.3
+ tslib: 2.8.1
- '@emnapi/runtime@1.2.0':
+ '@emnapi/core@1.4.3':
dependencies:
- tslib: 2.6.3
+ '@emnapi/wasi-threads': 1.0.2
+ tslib: 2.8.1
+ optional: true
- '@emnapi/wasi-threads@1.0.1':
+ '@emnapi/runtime@1.2.0':
dependencies:
- tslib: 2.6.3
+ tslib: 2.8.1
- '@esbuild/aix-ppc64@0.21.5':
+ '@emnapi/runtime@1.4.3':
+ dependencies:
+ tslib: 2.8.1
optional: true
- '@esbuild/aix-ppc64@0.23.0':
+ '@emnapi/wasi-threads@1.0.1':
+ dependencies:
+ tslib: 2.8.1
+
+ '@emnapi/wasi-threads@1.0.2':
+ dependencies:
+ tslib: 2.8.1
optional: true
'@esbuild/aix-ppc64@0.24.0':
optional: true
- '@esbuild/android-arm64@0.21.5':
+ '@esbuild/aix-ppc64@0.25.5':
optional: true
- '@esbuild/android-arm64@0.23.0':
+ '@esbuild/android-arm64@0.17.19':
optional: true
'@esbuild/android-arm64@0.24.0':
optional: true
- '@esbuild/android-arm@0.21.5':
+ '@esbuild/android-arm64@0.25.5':
optional: true
- '@esbuild/android-arm@0.23.0':
+ '@esbuild/android-arm@0.17.19':
optional: true
'@esbuild/android-arm@0.24.0':
optional: true
- '@esbuild/android-x64@0.21.5':
+ '@esbuild/android-arm@0.25.5':
optional: true
- '@esbuild/android-x64@0.23.0':
+ '@esbuild/android-x64@0.17.19':
optional: true
'@esbuild/android-x64@0.24.0':
optional: true
- '@esbuild/darwin-arm64@0.21.5':
+ '@esbuild/android-x64@0.25.5':
optional: true
- '@esbuild/darwin-arm64@0.23.0':
+ '@esbuild/darwin-arm64@0.17.19':
optional: true
'@esbuild/darwin-arm64@0.24.0':
optional: true
- '@esbuild/darwin-x64@0.21.5':
+ '@esbuild/darwin-arm64@0.25.5':
optional: true
- '@esbuild/darwin-x64@0.23.0':
+ '@esbuild/darwin-x64@0.17.19':
optional: true
'@esbuild/darwin-x64@0.24.0':
optional: true
- '@esbuild/freebsd-arm64@0.21.5':
+ '@esbuild/darwin-x64@0.25.5':
optional: true
- '@esbuild/freebsd-arm64@0.23.0':
+ '@esbuild/freebsd-arm64@0.17.19':
optional: true
'@esbuild/freebsd-arm64@0.24.0':
optional: true
- '@esbuild/freebsd-x64@0.21.5':
+ '@esbuild/freebsd-arm64@0.25.5':
optional: true
- '@esbuild/freebsd-x64@0.23.0':
+ '@esbuild/freebsd-x64@0.17.19':
optional: true
'@esbuild/freebsd-x64@0.24.0':
optional: true
- '@esbuild/linux-arm64@0.21.5':
+ '@esbuild/freebsd-x64@0.25.5':
optional: true
- '@esbuild/linux-arm64@0.23.0':
+ '@esbuild/linux-arm64@0.17.19':
optional: true
'@esbuild/linux-arm64@0.24.0':
optional: true
- '@esbuild/linux-arm@0.21.5':
+ '@esbuild/linux-arm64@0.25.5':
optional: true
- '@esbuild/linux-arm@0.23.0':
+ '@esbuild/linux-arm@0.17.19':
optional: true
'@esbuild/linux-arm@0.24.0':
optional: true
- '@esbuild/linux-ia32@0.21.5':
+ '@esbuild/linux-arm@0.25.5':
optional: true
- '@esbuild/linux-ia32@0.23.0':
+ '@esbuild/linux-ia32@0.17.19':
optional: true
'@esbuild/linux-ia32@0.24.0':
optional: true
- '@esbuild/linux-loong64@0.21.5':
+ '@esbuild/linux-ia32@0.25.5':
optional: true
- '@esbuild/linux-loong64@0.23.0':
+ '@esbuild/linux-loong64@0.17.19':
optional: true
'@esbuild/linux-loong64@0.24.0':
optional: true
- '@esbuild/linux-mips64el@0.21.5':
+ '@esbuild/linux-loong64@0.25.5':
optional: true
- '@esbuild/linux-mips64el@0.23.0':
+ '@esbuild/linux-mips64el@0.17.19':
optional: true
'@esbuild/linux-mips64el@0.24.0':
optional: true
- '@esbuild/linux-ppc64@0.21.5':
+ '@esbuild/linux-mips64el@0.25.5':
optional: true
- '@esbuild/linux-ppc64@0.23.0':
+ '@esbuild/linux-ppc64@0.17.19':
optional: true
'@esbuild/linux-ppc64@0.24.0':
optional: true
- '@esbuild/linux-riscv64@0.21.5':
+ '@esbuild/linux-ppc64@0.25.5':
optional: true
- '@esbuild/linux-riscv64@0.23.0':
+ '@esbuild/linux-riscv64@0.17.19':
optional: true
'@esbuild/linux-riscv64@0.24.0':
optional: true
- '@esbuild/linux-s390x@0.21.5':
+ '@esbuild/linux-riscv64@0.25.5':
optional: true
- '@esbuild/linux-s390x@0.23.0':
+ '@esbuild/linux-s390x@0.17.19':
optional: true
'@esbuild/linux-s390x@0.24.0':
optional: true
- '@esbuild/linux-x64@0.21.5':
+ '@esbuild/linux-s390x@0.25.5':
optional: true
- '@esbuild/linux-x64@0.23.0':
+ '@esbuild/linux-x64@0.17.19':
optional: true
'@esbuild/linux-x64@0.24.0':
optional: true
- '@esbuild/netbsd-x64@0.21.5':
+ '@esbuild/linux-x64@0.25.5':
+ optional: true
+
+ '@esbuild/netbsd-arm64@0.25.5':
optional: true
- '@esbuild/netbsd-x64@0.23.0':
+ '@esbuild/netbsd-x64@0.17.19':
optional: true
'@esbuild/netbsd-x64@0.24.0':
optional: true
- '@esbuild/openbsd-arm64@0.23.0':
+ '@esbuild/netbsd-x64@0.25.5':
optional: true
'@esbuild/openbsd-arm64@0.24.0':
optional: true
- '@esbuild/openbsd-x64@0.21.5':
+ '@esbuild/openbsd-arm64@0.25.5':
optional: true
- '@esbuild/openbsd-x64@0.23.0':
+ '@esbuild/openbsd-x64@0.17.19':
optional: true
'@esbuild/openbsd-x64@0.24.0':
optional: true
- '@esbuild/sunos-x64@0.21.5':
+ '@esbuild/openbsd-x64@0.25.5':
optional: true
- '@esbuild/sunos-x64@0.23.0':
+ '@esbuild/sunos-x64@0.17.19':
optional: true
'@esbuild/sunos-x64@0.24.0':
optional: true
- '@esbuild/win32-arm64@0.21.5':
+ '@esbuild/sunos-x64@0.25.5':
optional: true
- '@esbuild/win32-arm64@0.23.0':
+ '@esbuild/win32-arm64@0.17.19':
optional: true
'@esbuild/win32-arm64@0.24.0':
optional: true
- '@esbuild/win32-ia32@0.21.5':
+ '@esbuild/win32-arm64@0.25.5':
optional: true
- '@esbuild/win32-ia32@0.23.0':
+ '@esbuild/win32-ia32@0.17.19':
optional: true
'@esbuild/win32-ia32@0.24.0':
optional: true
- '@esbuild/win32-x64@0.21.5':
+ '@esbuild/win32-ia32@0.25.5':
optional: true
- '@esbuild/win32-x64@0.23.0':
+ '@esbuild/win32-x64@0.17.19':
optional: true
'@esbuild/win32-x64@0.24.0':
optional: true
+ '@esbuild/win32-x64@0.25.5':
+ optional: true
+
'@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)':
dependencies:
eslint: 8.57.0
@@ -15541,114 +16839,124 @@ snapshots:
'@humanwhocodes/object-schema@2.0.3': {}
- '@inquirer/checkbox@4.0.3(@types/node@20.14.15)':
+ '@inquirer/checkbox@4.1.9(@types/node@20.14.15)':
dependencies:
- '@inquirer/core': 10.1.1(@types/node@20.14.15)
- '@inquirer/figures': 1.0.8
- '@inquirer/type': 3.0.1(@types/node@20.14.15)
- '@types/node': 20.14.15
+ '@inquirer/core': 10.1.14(@types/node@20.14.15)
+ '@inquirer/figures': 1.0.12
+ '@inquirer/type': 3.0.7(@types/node@20.14.15)
ansi-escapes: 4.3.2
yoctocolors-cjs: 2.1.2
+ optionalDependencies:
+ '@types/node': 20.14.15
- '@inquirer/confirm@5.0.2(@types/node@20.14.15)':
+ '@inquirer/confirm@5.1.10(@types/node@20.14.15)':
dependencies:
- '@inquirer/core': 10.1.1(@types/node@20.14.15)
- '@inquirer/type': 3.0.1(@types/node@20.14.15)
+ '@inquirer/core': 10.1.14(@types/node@20.14.15)
+ '@inquirer/type': 3.0.7(@types/node@20.14.15)
+ optionalDependencies:
'@types/node': 20.14.15
- '@inquirer/core@10.1.1(@types/node@20.14.15)':
+ '@inquirer/core@10.1.14(@types/node@20.14.15)':
dependencies:
- '@inquirer/figures': 1.0.8
- '@inquirer/type': 3.0.1(@types/node@20.14.15)
+ '@inquirer/figures': 1.0.12
+ '@inquirer/type': 3.0.7(@types/node@20.14.15)
ansi-escapes: 4.3.2
cli-width: 4.1.0
mute-stream: 2.0.0
signal-exit: 4.1.0
- strip-ansi: 6.0.1
wrap-ansi: 6.2.0
yoctocolors-cjs: 2.1.2
- transitivePeerDependencies:
- - '@types/node'
+ optionalDependencies:
+ '@types/node': 20.14.15
- '@inquirer/editor@4.2.0(@types/node@20.14.15)':
+ '@inquirer/editor@4.2.14(@types/node@20.14.15)':
dependencies:
- '@inquirer/core': 10.1.1(@types/node@20.14.15)
- '@inquirer/type': 3.0.1(@types/node@20.14.15)
- '@types/node': 20.14.15
+ '@inquirer/core': 10.1.14(@types/node@20.14.15)
+ '@inquirer/type': 3.0.7(@types/node@20.14.15)
external-editor: 3.1.0
+ optionalDependencies:
+ '@types/node': 20.14.15
- '@inquirer/expand@4.0.3(@types/node@20.14.15)':
+ '@inquirer/expand@4.0.16(@types/node@20.14.15)':
dependencies:
- '@inquirer/core': 10.1.1(@types/node@20.14.15)
- '@inquirer/type': 3.0.1(@types/node@20.14.15)
- '@types/node': 20.14.15
+ '@inquirer/core': 10.1.14(@types/node@20.14.15)
+ '@inquirer/type': 3.0.7(@types/node@20.14.15)
yoctocolors-cjs: 2.1.2
+ optionalDependencies:
+ '@types/node': 20.14.15
- '@inquirer/figures@1.0.8': {}
+ '@inquirer/figures@1.0.12': {}
- '@inquirer/input@4.1.0(@types/node@20.14.15)':
+ '@inquirer/input@4.2.0(@types/node@20.14.15)':
dependencies:
- '@inquirer/core': 10.1.1(@types/node@20.14.15)
- '@inquirer/type': 3.0.1(@types/node@20.14.15)
+ '@inquirer/core': 10.1.14(@types/node@20.14.15)
+ '@inquirer/type': 3.0.7(@types/node@20.14.15)
+ optionalDependencies:
'@types/node': 20.14.15
- '@inquirer/number@3.0.3(@types/node@20.14.15)':
+ '@inquirer/number@3.0.16(@types/node@20.14.15)':
dependencies:
- '@inquirer/core': 10.1.1(@types/node@20.14.15)
- '@inquirer/type': 3.0.1(@types/node@20.14.15)
+ '@inquirer/core': 10.1.14(@types/node@20.14.15)
+ '@inquirer/type': 3.0.7(@types/node@20.14.15)
+ optionalDependencies:
'@types/node': 20.14.15
- '@inquirer/password@4.0.3(@types/node@20.14.15)':
+ '@inquirer/password@4.0.16(@types/node@20.14.15)':
dependencies:
- '@inquirer/core': 10.1.1(@types/node@20.14.15)
- '@inquirer/type': 3.0.1(@types/node@20.14.15)
- '@types/node': 20.14.15
+ '@inquirer/core': 10.1.14(@types/node@20.14.15)
+ '@inquirer/type': 3.0.7(@types/node@20.14.15)
ansi-escapes: 4.3.2
+ optionalDependencies:
+ '@types/node': 20.14.15
- '@inquirer/prompts@7.1.0(@types/node@20.14.15)':
- dependencies:
- '@inquirer/checkbox': 4.0.3(@types/node@20.14.15)
- '@inquirer/confirm': 5.0.2(@types/node@20.14.15)
- '@inquirer/editor': 4.2.0(@types/node@20.14.15)
- '@inquirer/expand': 4.0.3(@types/node@20.14.15)
- '@inquirer/input': 4.1.0(@types/node@20.14.15)
- '@inquirer/number': 3.0.3(@types/node@20.14.15)
- '@inquirer/password': 4.0.3(@types/node@20.14.15)
- '@inquirer/rawlist': 4.0.3(@types/node@20.14.15)
- '@inquirer/search': 3.0.3(@types/node@20.14.15)
- '@inquirer/select': 4.0.3(@types/node@20.14.15)
+ '@inquirer/prompts@7.5.1(@types/node@20.14.15)':
+ dependencies:
+ '@inquirer/checkbox': 4.1.9(@types/node@20.14.15)
+ '@inquirer/confirm': 5.1.10(@types/node@20.14.15)
+ '@inquirer/editor': 4.2.14(@types/node@20.14.15)
+ '@inquirer/expand': 4.0.16(@types/node@20.14.15)
+ '@inquirer/input': 4.2.0(@types/node@20.14.15)
+ '@inquirer/number': 3.0.16(@types/node@20.14.15)
+ '@inquirer/password': 4.0.16(@types/node@20.14.15)
+ '@inquirer/rawlist': 4.1.4(@types/node@20.14.15)
+ '@inquirer/search': 3.0.16(@types/node@20.14.15)
+ '@inquirer/select': 4.2.4(@types/node@20.14.15)
+ optionalDependencies:
'@types/node': 20.14.15
- '@inquirer/rawlist@4.0.3(@types/node@20.14.15)':
+ '@inquirer/rawlist@4.1.4(@types/node@20.14.15)':
dependencies:
- '@inquirer/core': 10.1.1(@types/node@20.14.15)
- '@inquirer/type': 3.0.1(@types/node@20.14.15)
- '@types/node': 20.14.15
+ '@inquirer/core': 10.1.14(@types/node@20.14.15)
+ '@inquirer/type': 3.0.7(@types/node@20.14.15)
yoctocolors-cjs: 2.1.2
+ optionalDependencies:
+ '@types/node': 20.14.15
- '@inquirer/search@3.0.3(@types/node@20.14.15)':
+ '@inquirer/search@3.0.16(@types/node@20.14.15)':
dependencies:
- '@inquirer/core': 10.1.1(@types/node@20.14.15)
- '@inquirer/figures': 1.0.8
- '@inquirer/type': 3.0.1(@types/node@20.14.15)
- '@types/node': 20.14.15
+ '@inquirer/core': 10.1.14(@types/node@20.14.15)
+ '@inquirer/figures': 1.0.12
+ '@inquirer/type': 3.0.7(@types/node@20.14.15)
yoctocolors-cjs: 2.1.2
+ optionalDependencies:
+ '@types/node': 20.14.15
- '@inquirer/select@4.0.3(@types/node@20.14.15)':
+ '@inquirer/select@4.2.4(@types/node@20.14.15)':
dependencies:
- '@inquirer/core': 10.1.1(@types/node@20.14.15)
- '@inquirer/figures': 1.0.8
- '@inquirer/type': 3.0.1(@types/node@20.14.15)
- '@types/node': 20.14.15
+ '@inquirer/core': 10.1.14(@types/node@20.14.15)
+ '@inquirer/figures': 1.0.12
+ '@inquirer/type': 3.0.7(@types/node@20.14.15)
ansi-escapes: 4.3.2
yoctocolors-cjs: 2.1.2
+ optionalDependencies:
+ '@types/node': 20.14.15
'@inquirer/type@1.5.5':
dependencies:
mute-stream: 1.0.0
- '@inquirer/type@3.0.1(@types/node@20.14.15)':
- dependencies:
+ '@inquirer/type@3.0.7(@types/node@20.14.15)':
+ optionalDependencies:
'@types/node': 20.14.15
'@isaacs/cliui@8.0.2':
@@ -15683,7 +16991,7 @@ snapshots:
jest-util: 29.7.0
slash: 3.0.0
- '@jest/core@29.7.0(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3))':
+ '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3))':
dependencies:
'@jest/console': 29.7.0
'@jest/reporters': 29.7.0
@@ -15697,7 +17005,7 @@ snapshots:
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3))
+ jest-config: 29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3))
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -15836,6 +17144,11 @@ snapshots:
'@types/yargs': 17.0.33
chalk: 4.1.2
+ '@jridgewell/gen-mapping@0.3.12':
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.0
+ '@jridgewell/trace-mapping': 0.3.29
+
'@jridgewell/gen-mapping@0.3.5':
dependencies:
'@jridgewell/set-array': 1.2.1
@@ -15858,6 +17171,11 @@ snapshots:
'@jridgewell/resolve-uri': 3.1.2
'@jridgewell/sourcemap-codec': 1.5.0
+ '@jridgewell/trace-mapping@0.3.29':
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.5.0
+
'@jridgewell/trace-mapping@0.3.9':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
@@ -15881,61 +17199,121 @@ snapshots:
'@leichtgewicht/ip-codec@2.0.5': {}
- '@listr2/prompt-adapter-inquirer@2.0.18(@inquirer/prompts@7.1.0(@types/node@20.14.15))':
+ '@listr2/prompt-adapter-inquirer@2.0.22(@inquirer/prompts@7.5.1(@types/node@20.14.15))':
dependencies:
- '@inquirer/prompts': 7.1.0(@types/node@20.14.15)
+ '@inquirer/prompts': 7.5.1(@types/node@20.14.15)
'@inquirer/type': 1.5.5
- '@lmdb/lmdb-darwin-arm64@3.1.5':
+ '@lmdb/lmdb-darwin-arm64@3.3.0':
optional: true
- '@lmdb/lmdb-darwin-x64@3.1.5':
+ '@lmdb/lmdb-darwin-x64@3.3.0':
optional: true
- '@lmdb/lmdb-linux-arm64@3.1.5':
+ '@lmdb/lmdb-linux-arm64@3.3.0':
optional: true
- '@lmdb/lmdb-linux-arm@3.1.5':
+ '@lmdb/lmdb-linux-arm@3.3.0':
optional: true
- '@lmdb/lmdb-linux-x64@3.1.5':
+ '@lmdb/lmdb-linux-x64@3.3.0':
optional: true
- '@lmdb/lmdb-win32-x64@3.1.5':
+ '@lmdb/lmdb-win32-arm64@3.3.0':
optional: true
- '@module-federation/bridge-react-webpack-plugin@0.7.6':
+ '@lmdb/lmdb-win32-x64@3.3.0':
+ optional: true
+
+ '@modern-js/node-bundle-require@2.67.6':
+ dependencies:
+ '@modern-js/utils': 2.67.6
+ '@swc/helpers': 0.5.17
+ esbuild: 0.17.19
+
+ '@modern-js/utils@2.67.6':
+ dependencies:
+ '@swc/helpers': 0.5.17
+ caniuse-lite: 1.0.30001687
+ lodash: 4.17.21
+ rslog: 1.2.9
+
+ '@module-federation/bridge-react-webpack-plugin@0.15.0':
+ dependencies:
+ '@module-federation/sdk': 0.15.0
+ '@types/semver': 7.5.8
+ semver: 7.6.3
+
+ '@module-federation/bridge-react-webpack-plugin@0.16.0':
dependencies:
- '@module-federation/sdk': 0.7.6
+ '@module-federation/sdk': 0.16.0
'@types/semver': 7.5.8
semver: 7.6.3
- '@module-federation/data-prefetch@0.7.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@module-federation/cli@0.15.0(typescript@5.8.3)':
dependencies:
- '@module-federation/runtime': 0.7.6
- '@module-federation/sdk': 0.7.6
+ '@modern-js/node-bundle-require': 2.67.6
+ '@module-federation/dts-plugin': 0.15.0(typescript@5.8.3)
+ '@module-federation/sdk': 0.15.0
+ chalk: 3.0.0
+ commander: 11.1.0
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - supports-color
+ - typescript
+ - utf-8-validate
+ - vue-tsc
+
+ '@module-federation/cli@0.16.0(typescript@5.8.3)':
+ dependencies:
+ '@modern-js/node-bundle-require': 2.67.6
+ '@module-federation/dts-plugin': 0.16.0(typescript@5.8.3)
+ '@module-federation/sdk': 0.16.0
+ chalk: 3.0.0
+ commander: 11.1.0
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - supports-color
+ - typescript
+ - utf-8-validate
+ - vue-tsc
+
+ '@module-federation/data-prefetch@0.15.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@module-federation/runtime': 0.15.0
+ '@module-federation/sdk': 0.15.0
+ fs-extra: 9.1.0
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
+ '@module-federation/data-prefetch@0.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@module-federation/runtime': 0.16.0
+ '@module-federation/sdk': 0.16.0
fs-extra: 9.1.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@module-federation/dts-plugin@0.7.6(typescript@5.6.3)':
+ '@module-federation/dts-plugin@0.15.0(typescript@5.8.3)':
dependencies:
- '@module-federation/error-codes': 0.7.6
- '@module-federation/managers': 0.7.6
- '@module-federation/sdk': 0.7.6
- '@module-federation/third-party-dts-extractor': 0.7.6
+ '@module-federation/error-codes': 0.15.0
+ '@module-federation/managers': 0.15.0
+ '@module-federation/sdk': 0.15.0
+ '@module-federation/third-party-dts-extractor': 0.15.0
adm-zip: 0.5.15
ansi-colors: 4.1.3
- axios: 1.7.8
+ axios: 1.10.0
chalk: 3.0.0
fs-extra: 9.1.0
isomorphic-ws: 5.0.0(ws@8.18.0)
- koa: 2.15.3
+ koa: 2.16.1
lodash.clonedeepwith: 4.5.0
log4js: 6.9.1
node-schedule: 2.1.1
rambda: 9.2.1
- typescript: 5.6.3
+ typescript: 5.8.3
ws: 8.18.0
transitivePeerDependencies:
- bufferutil
@@ -15943,22 +17321,108 @@ snapshots:
- supports-color
- utf-8-validate
- '@module-federation/enhanced@0.7.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(webpack@5.88.0)':
+ '@module-federation/dts-plugin@0.16.0(typescript@5.8.3)':
dependencies:
- '@module-federation/bridge-react-webpack-plugin': 0.7.6
- '@module-federation/data-prefetch': 0.7.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@module-federation/dts-plugin': 0.7.6(typescript@5.6.3)
- '@module-federation/managers': 0.7.6
- '@module-federation/manifest': 0.7.6(typescript@5.6.3)
- '@module-federation/rspack': 0.7.6(typescript@5.6.3)
- '@module-federation/runtime-tools': 0.7.6
- '@module-federation/sdk': 0.7.6
+ '@module-federation/error-codes': 0.16.0
+ '@module-federation/managers': 0.16.0
+ '@module-federation/sdk': 0.16.0
+ '@module-federation/third-party-dts-extractor': 0.16.0
+ adm-zip: 0.5.15
+ ansi-colors: 4.1.3
+ axios: 1.10.0
+ chalk: 3.0.0
+ fs-extra: 9.1.0
+ isomorphic-ws: 5.0.0(ws@8.18.0)
+ koa: 2.16.1
+ lodash.clonedeepwith: 4.5.0
+ log4js: 6.9.1
+ node-schedule: 2.1.1
+ rambda: 9.2.1
+ typescript: 5.8.3
+ ws: 8.18.0
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - supports-color
+ - utf-8-validate
+
+ '@module-federation/enhanced@0.15.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)(webpack@5.96.1)':
+ dependencies:
+ '@module-federation/bridge-react-webpack-plugin': 0.15.0
+ '@module-federation/cli': 0.15.0(typescript@5.8.3)
+ '@module-federation/data-prefetch': 0.15.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@module-federation/dts-plugin': 0.15.0(typescript@5.8.3)
+ '@module-federation/error-codes': 0.15.0
+ '@module-federation/inject-external-runtime-core-plugin': 0.15.0(@module-federation/runtime-tools@0.15.0)
+ '@module-federation/managers': 0.15.0
+ '@module-federation/manifest': 0.15.0(typescript@5.8.3)
+ '@module-federation/rspack': 0.15.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(typescript@5.8.3)
+ '@module-federation/runtime-tools': 0.15.0
+ '@module-federation/sdk': 0.15.0
+ btoa: 1.2.1
+ schema-utils: 4.3.2
+ upath: 2.0.1
+ optionalDependencies:
+ typescript: 5.8.3
+ webpack: 5.96.1
+ transitivePeerDependencies:
+ - '@rspack/core'
+ - bufferutil
+ - debug
+ - react
+ - react-dom
+ - supports-color
+ - utf-8-validate
+
+ '@module-federation/enhanced@0.16.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)(webpack@5.96.1)':
+ dependencies:
+ '@module-federation/bridge-react-webpack-plugin': 0.16.0
+ '@module-federation/cli': 0.16.0(typescript@5.8.3)
+ '@module-federation/data-prefetch': 0.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@module-federation/dts-plugin': 0.16.0(typescript@5.8.3)
+ '@module-federation/error-codes': 0.16.0
+ '@module-federation/inject-external-runtime-core-plugin': 0.16.0(@module-federation/runtime-tools@0.16.0)
+ '@module-federation/managers': 0.16.0
+ '@module-federation/manifest': 0.16.0(typescript@5.8.3)
+ '@module-federation/rspack': 0.16.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(typescript@5.8.3)
+ '@module-federation/runtime-tools': 0.16.0
+ '@module-federation/sdk': 0.16.0
+ btoa: 1.2.1
+ schema-utils: 4.3.2
+ upath: 2.0.1
+ optionalDependencies:
+ typescript: 5.8.3
+ webpack: 5.96.1
+ transitivePeerDependencies:
+ - '@rspack/core'
+ - bufferutil
+ - debug
+ - react
+ - react-dom
+ - supports-color
+ - utf-8-validate
+
+ '@module-federation/enhanced@0.16.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)(webpack@5.99.9)':
+ dependencies:
+ '@module-federation/bridge-react-webpack-plugin': 0.16.0
+ '@module-federation/cli': 0.16.0(typescript@5.8.3)
+ '@module-federation/data-prefetch': 0.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@module-federation/dts-plugin': 0.16.0(typescript@5.8.3)
+ '@module-federation/error-codes': 0.16.0
+ '@module-federation/inject-external-runtime-core-plugin': 0.16.0(@module-federation/runtime-tools@0.16.0)
+ '@module-federation/managers': 0.16.0
+ '@module-federation/manifest': 0.16.0(typescript@5.8.3)
+ '@module-federation/rspack': 0.16.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(typescript@5.8.3)
+ '@module-federation/runtime-tools': 0.16.0
+ '@module-federation/sdk': 0.16.0
btoa: 1.2.1
+ schema-utils: 4.3.2
upath: 2.0.1
optionalDependencies:
- typescript: 5.6.3
- webpack: 5.88.0
+ typescript: 5.8.3
+ webpack: 5.99.9
transitivePeerDependencies:
+ - '@rspack/core'
- bufferutil
- debug
- react
@@ -15966,19 +17430,50 @@ snapshots:
- supports-color
- utf-8-validate
- '@module-federation/error-codes@0.7.6': {}
+ '@module-federation/error-codes@0.15.0': {}
+
+ '@module-federation/error-codes@0.16.0': {}
+
+ '@module-federation/inject-external-runtime-core-plugin@0.15.0(@module-federation/runtime-tools@0.15.0)':
+ dependencies:
+ '@module-federation/runtime-tools': 0.15.0
+
+ '@module-federation/inject-external-runtime-core-plugin@0.16.0(@module-federation/runtime-tools@0.16.0)':
+ dependencies:
+ '@module-federation/runtime-tools': 0.16.0
+
+ '@module-federation/managers@0.15.0':
+ dependencies:
+ '@module-federation/sdk': 0.15.0
+ find-pkg: 2.0.0
+ fs-extra: 9.1.0
- '@module-federation/managers@0.7.6':
+ '@module-federation/managers@0.16.0':
dependencies:
- '@module-federation/sdk': 0.7.6
+ '@module-federation/sdk': 0.16.0
find-pkg: 2.0.0
fs-extra: 9.1.0
- '@module-federation/manifest@0.7.6(typescript@5.6.3)':
+ '@module-federation/manifest@0.15.0(typescript@5.8.3)':
+ dependencies:
+ '@module-federation/dts-plugin': 0.15.0(typescript@5.8.3)
+ '@module-federation/managers': 0.15.0
+ '@module-federation/sdk': 0.15.0
+ chalk: 3.0.0
+ find-pkg: 2.0.0
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - supports-color
+ - typescript
+ - utf-8-validate
+ - vue-tsc
+
+ '@module-federation/manifest@0.16.0(typescript@5.8.3)':
dependencies:
- '@module-federation/dts-plugin': 0.7.6(typescript@5.6.3)
- '@module-federation/managers': 0.7.6
- '@module-federation/sdk': 0.7.6
+ '@module-federation/dts-plugin': 0.16.0(typescript@5.8.3)
+ '@module-federation/managers': 0.16.0
+ '@module-federation/sdk': 0.16.0
chalk: 3.0.0
find-pkg: 2.0.0
transitivePeerDependencies:
@@ -15989,20 +17484,41 @@ snapshots:
- utf-8-validate
- vue-tsc
- '@module-federation/node@2.6.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(webpack@5.88.0)':
+ '@module-federation/node@2.7.8(@rspack/core@1.4.4(@swc/helpers@0.5.17))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)(webpack@5.96.1)':
+ dependencies:
+ '@module-federation/enhanced': 0.16.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)(webpack@5.96.1)
+ '@module-federation/runtime': 0.16.0
+ '@module-federation/sdk': 0.16.0
+ btoa: 1.2.1
+ encoding: 0.1.13
+ node-fetch: 2.7.0(encoding@0.1.13)
+ webpack: 5.96.1
+ optionalDependencies:
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ transitivePeerDependencies:
+ - '@rspack/core'
+ - bufferutil
+ - debug
+ - supports-color
+ - typescript
+ - utf-8-validate
+ - vue-tsc
+
+ '@module-federation/node@2.7.8(@rspack/core@1.4.4(@swc/helpers@0.5.17))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)(webpack@5.99.9)':
dependencies:
- '@module-federation/enhanced': 0.7.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(webpack@5.88.0)
- '@module-federation/runtime': 0.7.6
- '@module-federation/sdk': 0.7.6
- '@module-federation/utilities': 3.1.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(webpack@5.88.0)
+ '@module-federation/enhanced': 0.16.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)(webpack@5.99.9)
+ '@module-federation/runtime': 0.16.0
+ '@module-federation/sdk': 0.16.0
btoa: 1.2.1
encoding: 0.1.13
node-fetch: 2.7.0(encoding@0.1.13)
- webpack: 5.88.0
+ webpack: 5.99.9
optionalDependencies:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
transitivePeerDependencies:
+ - '@rspack/core'
- bufferutil
- debug
- supports-color
@@ -16010,70 +17526,101 @@ snapshots:
- utf-8-validate
- vue-tsc
- '@module-federation/rspack@0.7.6(typescript@5.6.3)':
+ '@module-federation/rspack@0.15.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(typescript@5.8.3)':
+ dependencies:
+ '@module-federation/bridge-react-webpack-plugin': 0.15.0
+ '@module-federation/dts-plugin': 0.15.0(typescript@5.8.3)
+ '@module-federation/inject-external-runtime-core-plugin': 0.15.0(@module-federation/runtime-tools@0.15.0)
+ '@module-federation/managers': 0.15.0
+ '@module-federation/manifest': 0.15.0(typescript@5.8.3)
+ '@module-federation/runtime-tools': 0.15.0
+ '@module-federation/sdk': 0.15.0
+ '@rspack/core': 1.4.4(@swc/helpers@0.5.17)
+ btoa: 1.2.1
+ optionalDependencies:
+ typescript: 5.8.3
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - supports-color
+ - utf-8-validate
+
+ '@module-federation/rspack@0.16.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(typescript@5.8.3)':
dependencies:
- '@module-federation/bridge-react-webpack-plugin': 0.7.6
- '@module-federation/dts-plugin': 0.7.6(typescript@5.6.3)
- '@module-federation/managers': 0.7.6
- '@module-federation/manifest': 0.7.6(typescript@5.6.3)
- '@module-federation/runtime-tools': 0.7.6
- '@module-federation/sdk': 0.7.6
+ '@module-federation/bridge-react-webpack-plugin': 0.16.0
+ '@module-federation/dts-plugin': 0.16.0(typescript@5.8.3)
+ '@module-federation/inject-external-runtime-core-plugin': 0.16.0(@module-federation/runtime-tools@0.16.0)
+ '@module-federation/managers': 0.16.0
+ '@module-federation/manifest': 0.16.0(typescript@5.8.3)
+ '@module-federation/runtime-tools': 0.16.0
+ '@module-federation/sdk': 0.16.0
+ '@rspack/core': 1.4.4(@swc/helpers@0.5.17)
+ btoa: 1.2.1
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.8.3
transitivePeerDependencies:
- bufferutil
- debug
- supports-color
- utf-8-validate
- '@module-federation/runtime-tools@0.5.1':
+ '@module-federation/runtime-core@0.15.0':
dependencies:
- '@module-federation/runtime': 0.5.1
- '@module-federation/webpack-bundler-runtime': 0.5.1
+ '@module-federation/error-codes': 0.15.0
+ '@module-federation/sdk': 0.15.0
- '@module-federation/runtime-tools@0.7.6':
+ '@module-federation/runtime-core@0.16.0':
dependencies:
- '@module-federation/runtime': 0.7.6
- '@module-federation/webpack-bundler-runtime': 0.7.6
+ '@module-federation/error-codes': 0.16.0
+ '@module-federation/sdk': 0.16.0
- '@module-federation/runtime@0.5.1':
+ '@module-federation/runtime-tools@0.15.0':
dependencies:
- '@module-federation/sdk': 0.5.1
+ '@module-federation/runtime': 0.15.0
+ '@module-federation/webpack-bundler-runtime': 0.15.0
- '@module-federation/runtime@0.7.6':
+ '@module-federation/runtime-tools@0.16.0':
dependencies:
- '@module-federation/error-codes': 0.7.6
- '@module-federation/sdk': 0.7.6
+ '@module-federation/runtime': 0.16.0
+ '@module-federation/webpack-bundler-runtime': 0.16.0
- '@module-federation/sdk@0.5.1': {}
+ '@module-federation/runtime@0.15.0':
+ dependencies:
+ '@module-federation/error-codes': 0.15.0
+ '@module-federation/runtime-core': 0.15.0
+ '@module-federation/sdk': 0.15.0
- '@module-federation/sdk@0.7.6':
+ '@module-federation/runtime@0.16.0':
dependencies:
- isomorphic-rslog: 0.0.6
+ '@module-federation/error-codes': 0.16.0
+ '@module-federation/runtime-core': 0.16.0
+ '@module-federation/sdk': 0.16.0
+
+ '@module-federation/sdk@0.15.0': {}
+
+ '@module-federation/sdk@0.16.0': {}
- '@module-federation/third-party-dts-extractor@0.7.6':
+ '@module-federation/third-party-dts-extractor@0.15.0':
dependencies:
find-pkg: 2.0.0
fs-extra: 9.1.0
resolve: 1.22.8
- '@module-federation/utilities@3.1.29(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(webpack@5.88.0)':
+ '@module-federation/third-party-dts-extractor@0.16.0':
dependencies:
- '@module-federation/sdk': 0.7.6
- webpack: 5.88.0
- optionalDependencies:
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ find-pkg: 2.0.0
+ fs-extra: 9.1.0
+ resolve: 1.22.8
- '@module-federation/webpack-bundler-runtime@0.5.1':
+ '@module-federation/webpack-bundler-runtime@0.15.0':
dependencies:
- '@module-federation/runtime': 0.5.1
- '@module-federation/sdk': 0.5.1
+ '@module-federation/runtime': 0.15.0
+ '@module-federation/sdk': 0.15.0
- '@module-federation/webpack-bundler-runtime@0.7.6':
+ '@module-federation/webpack-bundler-runtime@0.16.0':
dependencies:
- '@module-federation/runtime': 0.7.6
- '@module-federation/sdk': 0.7.6
+ '@module-federation/runtime': 0.16.0
+ '@module-federation/sdk': 0.16.0
'@msgpackr-extract/msgpackr-extract-darwin-arm64@3.0.3':
optional: true
@@ -16161,17 +17708,24 @@ snapshots:
'@napi-rs/nice-win32-x64-msvc': 1.0.1
optional: true
+ '@napi-rs/wasm-runtime@0.2.11':
+ dependencies:
+ '@emnapi/core': 1.4.3
+ '@emnapi/runtime': 1.4.3
+ '@tybys/wasm-util': 0.9.0
+ optional: true
+
'@napi-rs/wasm-runtime@0.2.4':
dependencies:
'@emnapi/core': 1.2.0
'@emnapi/runtime': 1.2.0
'@tybys/wasm-util': 0.9.0
- '@ngtools/webpack@19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3))(typescript@5.6.3)(webpack@5.96.1(esbuild@0.24.0))':
+ '@ngtools/webpack@20.0.5(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(typescript@5.8.3)(webpack@5.99.8(esbuild@0.25.5))':
dependencies:
- '@angular/compiler-cli': 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3)
- typescript: 5.6.3
- webpack: 5.96.1(esbuild@0.24.0)
+ '@angular/compiler-cli': 20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3)
+ typescript: 5.8.3
+ webpack: 5.99.8(esbuild@0.25.5)
'@nodelib/fs.scandir@2.1.5':
dependencies:
@@ -16187,9 +17741,9 @@ snapshots:
'@npmcli/agent@3.0.0':
dependencies:
- agent-base: 7.1.1
+ agent-base: 7.1.3
http-proxy-agent: 7.0.2
- https-proxy-agent: 7.0.5
+ https-proxy-agent: 7.0.6
lru-cache: 10.4.3
socks-proxy-agent: 8.0.4
transitivePeerDependencies:
@@ -16197,7 +17751,7 @@ snapshots:
'@npmcli/fs@4.0.0':
dependencies:
- semver: 7.6.3
+ semver: 7.7.2
'@npmcli/git@6.0.1':
dependencies:
@@ -16208,7 +17762,7 @@ snapshots:
proc-log: 5.0.0
promise-inflight: 1.0.1
promise-retry: 2.0.1
- semver: 7.6.3
+ semver: 7.7.2
which: 5.0.0
transitivePeerDependencies:
- bluebird
@@ -16228,7 +17782,7 @@ snapshots:
json-parse-even-better-errors: 4.0.0
normalize-package-data: 7.0.0
proc-log: 5.0.0
- semver: 7.6.3
+ semver: 7.7.2
transitivePeerDependencies:
- bluebird
@@ -16250,39 +17804,44 @@ snapshots:
- bluebird
- supports-color
- '@nx/angular@20.2.1(flbrlfta5kdvjegznppuhm67ga)':
- dependencies:
- '@angular-devkit/build-angular': 19.0.4(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@rspack/core@1.1.5)(@types/node@20.14.15)(chokidar@4.0.1)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3)))(ng-packagr@19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3))(tslib@2.6.3)(typescript@5.6.3))(stylus@0.64.0)(typescript@5.6.3)(vite@5.4.11(@types/node@20.14.15)(less@4.2.0)(sass@1.80.7)(stylus@0.64.0)(terser@5.36.0))
- '@angular-devkit/core': 19.0.4(chokidar@4.0.1)
- '@angular-devkit/schematics': 19.0.4(chokidar@4.0.1)
- '@nx/devkit': 20.2.1(nx@20.2.1)
- '@nx/eslint': 20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@20.2.1)
- '@nx/js': 20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(nx@20.2.1)(typescript@5.6.3)
- '@nx/module-federation': 20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(nx@20.2.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)
- '@nx/web': 20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(nx@20.2.1)(typescript@5.6.3)
- '@nx/webpack': 20.2.1(@babel/traverse@7.26.4)(@rspack/core@1.1.5)(@types/node@20.14.15)(nx@20.2.1)(typescript@5.6.3)
- '@nx/workspace': 20.2.1
- '@phenomnomnominal/tsquery': 5.0.1(typescript@5.6.3)
- '@schematics/angular': 19.0.4(chokidar@4.0.1)
- '@typescript-eslint/type-utils': 8.16.0(eslint@8.57.0)(typescript@5.6.3)
- chalk: 4.1.2
- magic-string: 0.30.11
- minimatch: 9.0.3
- piscina: 4.6.1
+ '@nx/angular@21.2.2(6ql3hrwkfgtta4ewsed2ppwa3m)':
+ dependencies:
+ '@angular-devkit/core': 20.0.5(chokidar@4.0.1)
+ '@angular-devkit/schematics': 20.0.5(chokidar@4.0.1)
+ '@nx/devkit': 21.2.2(nx@21.2.2)
+ '@nx/eslint': 21.2.2(@babel/traverse@7.28.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@21.2.2)
+ '@nx/js': 21.2.2(@babel/traverse@7.28.0)(nx@21.2.2)
+ '@nx/module-federation': 21.2.2(@babel/traverse@7.28.0)(@swc/helpers@0.5.17)(nx@21.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)
+ '@nx/rspack': 21.2.2(@babel/traverse@7.28.0)(@module-federation/enhanced@0.16.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)(webpack@5.99.9))(@module-federation/node@2.7.8(@rspack/core@1.4.4(@swc/helpers@0.5.17))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)(webpack@5.99.9))(@swc/helpers@0.5.17)(@types/express@4.17.21)(less@4.1.3)(nx@21.2.2)(react-dom@18.3.1(react@18.3.1))(react-refresh@0.17.0)(react@18.3.1)(typescript@5.8.3)
+ '@nx/web': 21.2.2(@babel/traverse@7.28.0)(nx@21.2.2)
+ '@nx/webpack': 21.2.2(@babel/traverse@7.28.0)(@rspack/core@1.4.4(@swc/helpers@0.5.17))(nx@21.2.2)(typescript@5.8.3)
+ '@nx/workspace': 21.2.2
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
+ '@schematics/angular': 20.0.5(chokidar@4.0.1)
+ '@typescript-eslint/type-utils': 8.16.0(eslint@8.57.0)(typescript@5.8.3)
+ enquirer: 2.3.6
+ magic-string: 0.30.12
+ picocolors: 1.1.1
+ picomatch: 4.0.2
rxjs: 7.8.1
semver: 7.6.3
- tslib: 2.6.3
+ tslib: 2.8.1
webpack-merge: 5.10.0
+ optionalDependencies:
+ '@angular-devkit/build-angular': 20.0.5(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(@angular/compiler@20.0.6)(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(@angular/platform-browser@20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@types/node@20.14.15)(chokidar@4.0.1)(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3)))(jiti@1.21.6)(ng-packagr@20.0.1(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3))(sass-embedded@1.89.2)(stylus@0.64.0)(typescript@5.8.3)(yaml@2.6.1)
+ '@angular/build': 20.0.5(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(@angular/compiler@20.0.6)(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(@angular/platform-browser@20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@types/node@20.14.15)(chokidar@4.0.1)(jiti@1.21.6)(less@4.1.3)(ng-packagr@20.0.1(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3))(postcss@8.4.41)(sass-embedded@1.89.2)(stylus@0.64.0)(terser@5.39.1)(tslib@2.6.3)(typescript@5.8.3)(yaml@2.6.1)
+ ng-packagr: 20.0.1(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3)
transitivePeerDependencies:
- '@babel/traverse'
+ - '@module-federation/enhanced'
+ - '@module-federation/node'
- '@parcel/css'
- '@rspack/core'
- '@swc-node/register'
- '@swc/core'
- '@swc/css'
- '@swc/helpers'
- - '@swc/wasm'
- - '@types/node'
+ - '@types/express'
- '@zkochan/js-yaml'
- bufferutil
- clean-css
@@ -16290,15 +17849,15 @@ snapshots:
- debug
- esbuild
- eslint
- - fibers
- html-webpack-plugin
+ - less
- lightningcss
- next
- node-sass
- nx
- react
- react-dom
- - sass-embedded
+ - react-refresh
- supports-color
- typescript
- uglify-js
@@ -16307,23 +17866,24 @@ snapshots:
- vue-template-compiler
- vue-tsc
- webpack-cli
+ - webpack-hot-middleware
- '@nx/cypress@20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(@zkochan/js-yaml@0.0.7)(cypress@13.13.2)(eslint@8.57.0)(nx@20.2.1)(typescript@5.6.3)':
+ '@nx/cypress@21.2.2(@babel/traverse@7.28.0)(@zkochan/js-yaml@0.0.7)(cypress@14.5.1)(eslint@8.57.0)(nx@21.2.2)(typescript@5.8.3)':
dependencies:
- '@nx/devkit': 20.2.1(nx@20.2.1)
- '@nx/eslint': 20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@20.2.1)
- '@nx/js': 20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(nx@20.2.1)(typescript@5.6.3)
- '@phenomnomnominal/tsquery': 5.0.1(typescript@5.6.3)
+ '@nx/devkit': 21.2.2(nx@21.2.2)
+ '@nx/eslint': 21.2.2(@babel/traverse@7.28.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@21.2.2)
+ '@nx/js': 21.2.2(@babel/traverse@7.28.0)(nx@21.2.2)
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
detect-port: 1.6.1
- tslib: 2.6.3
+ semver: 7.6.3
+ tree-kill: 1.2.2
+ tslib: 2.8.1
optionalDependencies:
- cypress: 13.13.2
+ cypress: 14.5.1
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- - '@swc/wasm'
- - '@types/node'
- '@zkochan/js-yaml'
- debug
- eslint
@@ -16332,39 +17892,38 @@ snapshots:
- typescript
- verdaccio
- '@nx/devkit@20.2.1(nx@20.2.1)':
+ '@nx/devkit@21.2.2(nx@21.2.2)':
dependencies:
ejs: 3.1.10
enquirer: 2.3.6
ignore: 5.3.1
minimatch: 9.0.3
- nx: 20.2.1
+ nx: 21.2.2
semver: 7.6.3
tmp: 0.2.3
- tslib: 2.6.3
+ tslib: 2.8.1
yargs-parser: 21.1.1
- '@nx/eslint-plugin@20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint-config-prettier@9.1.0(eslint@8.57.0))(eslint@8.57.0)(nx@20.2.1)(typescript@5.6.3)':
+ '@nx/eslint-plugin@21.2.2(@babel/traverse@7.28.0)(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.8.3))(eslint-config-prettier@10.1.5(eslint@8.57.0))(eslint@8.57.0)(nx@21.2.2)(typescript@5.8.3)':
dependencies:
- '@nx/devkit': 20.2.1(nx@20.2.1)
- '@nx/js': 20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(nx@20.2.1)(typescript@5.6.3)
- '@typescript-eslint/parser': 7.18.0(eslint@8.57.0)(typescript@5.6.3)
- '@typescript-eslint/type-utils': 8.16.0(eslint@8.57.0)(typescript@5.6.3)
- '@typescript-eslint/utils': 8.16.0(eslint@8.57.0)(typescript@5.6.3)
+ '@nx/devkit': 21.2.2(nx@21.2.2)
+ '@nx/js': 21.2.2(@babel/traverse@7.28.0)(nx@21.2.2)
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
+ '@typescript-eslint/parser': 7.18.0(eslint@8.57.0)(typescript@5.8.3)
+ '@typescript-eslint/type-utils': 8.16.0(eslint@8.57.0)(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.16.0(eslint@8.57.0)(typescript@5.8.3)
chalk: 4.1.2
confusing-browser-globals: 1.0.11
globals: 15.12.0
jsonc-eslint-parser: 2.4.0
semver: 7.6.3
- tslib: 2.6.3
+ tslib: 2.8.1
optionalDependencies:
- eslint-config-prettier: 9.1.0(eslint@8.57.0)
+ eslint-config-prettier: 10.1.5(eslint@8.57.0)
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- - '@swc/wasm'
- - '@types/node'
- debug
- eslint
- nx
@@ -16372,49 +17931,46 @@ snapshots:
- typescript
- verdaccio
- '@nx/eslint@20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@20.2.1)':
+ '@nx/eslint@21.2.2(@babel/traverse@7.28.0)(@zkochan/js-yaml@0.0.7)(eslint@8.57.0)(nx@21.2.2)':
dependencies:
- '@nx/devkit': 20.2.1(nx@20.2.1)
- '@nx/js': 20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(nx@20.2.1)(typescript@5.6.3)
+ '@nx/devkit': 21.2.2(nx@21.2.2)
+ '@nx/js': 21.2.2(@babel/traverse@7.28.0)(nx@21.2.2)
eslint: 8.57.0
semver: 7.6.3
- tslib: 2.6.3
- typescript: 5.6.3
+ tslib: 2.8.1
+ typescript: 5.8.3
optionalDependencies:
'@zkochan/js-yaml': 0.0.7
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- - '@swc/wasm'
- - '@types/node'
- debug
- nx
- supports-color
- verdaccio
- '@nx/jest@20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(nx@20.2.1)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3))(typescript@5.6.3)':
+ '@nx/jest@21.2.2(@babel/traverse@7.28.0)(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(nx@21.2.2)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3))(typescript@5.8.3)':
dependencies:
'@jest/reporters': 29.7.0
'@jest/test-result': 29.7.0
- '@nx/devkit': 20.2.1(nx@20.2.1)
- '@nx/js': 20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(nx@20.2.1)(typescript@5.6.3)
- '@phenomnomnominal/tsquery': 5.0.1(typescript@5.6.3)
- chalk: 4.1.2
+ '@nx/devkit': 21.2.2(nx@21.2.2)
+ '@nx/js': 21.2.2(@babel/traverse@7.28.0)(nx@21.2.2)
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
identity-obj-proxy: 3.0.0
- jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3))
+ jest-config: 29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3))
jest-resolve: 29.7.0
jest-util: 29.7.0
minimatch: 9.0.3
- resolve.exports: 1.1.0
+ picocolors: 1.1.1
+ resolve.exports: 2.0.3
semver: 7.6.3
- tslib: 2.6.3
+ tslib: 2.8.1
yargs-parser: 21.1.1
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- - '@swc/wasm'
- '@types/node'
- babel-plugin-macros
- debug
@@ -16425,70 +17981,64 @@ snapshots:
- typescript
- verdaccio
- '@nx/js@20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(nx@20.2.1)(typescript@5.6.3)':
+ '@nx/js@21.2.2(@babel/traverse@7.28.0)(nx@21.2.2)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-class-properties': 7.24.7(@babel/core@7.25.2)
- '@babel/plugin-transform-runtime': 7.24.7(@babel/core@7.25.2)
- '@babel/preset-env': 7.25.3(@babel/core@7.25.2)
- '@babel/preset-typescript': 7.24.7(@babel/core@7.25.2)
- '@babel/runtime': 7.25.0
- '@nx/devkit': 20.2.1(nx@20.2.1)
- '@nx/workspace': 20.2.1
+ '@babel/core': 7.26.0
+ '@babel/plugin-proposal-decorators': 7.24.7(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
+ '@babel/preset-typescript': 7.24.7(@babel/core@7.26.0)
+ '@babel/runtime': 7.26.0
+ '@nx/devkit': 21.2.2(nx@21.2.2)
+ '@nx/workspace': 21.2.2
'@zkochan/js-yaml': 0.0.7
- babel-plugin-const-enum: 1.2.0(@babel/core@7.25.2)
- babel-plugin-macros: 2.8.0
- babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.25.2)(@babel/traverse@7.26.4)
+ babel-plugin-const-enum: 1.2.0(@babel/core@7.26.0)
+ babel-plugin-macros: 3.1.0
+ babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.26.0)(@babel/traverse@7.28.0)
chalk: 4.1.2
columnify: 1.6.0
detect-port: 1.6.1
enquirer: 2.3.6
- fast-glob: 3.2.7
ignore: 5.3.1
js-tokens: 4.0.0
jsonc-parser: 3.2.0
- minimatch: 9.0.3
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.6.3
source-map-support: 0.5.19
- ts-node: 10.9.1(@types/node@20.14.15)(typescript@5.6.3)
- tsconfig-paths: 4.2.0
- tslib: 2.6.3
+ tinyglobby: 0.2.14
+ tslib: 2.8.1
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- - '@swc/wasm'
- - '@types/node'
- debug
- nx
- supports-color
- - typescript
- '@nx/module-federation@20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(nx@20.2.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)':
+ '@nx/module-federation@21.2.2(@babel/traverse@7.28.0)(@swc/helpers@0.5.17)(nx@21.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)':
dependencies:
- '@module-federation/enhanced': 0.7.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(webpack@5.88.0)
- '@module-federation/node': 2.6.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.6.3)(webpack@5.88.0)
- '@module-federation/sdk': 0.7.6
- '@nx/devkit': 20.2.1(nx@20.2.1)
- '@nx/js': 20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(nx@20.2.1)(typescript@5.6.3)
- '@nx/web': 20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(nx@20.2.1)(typescript@5.6.3)
- '@rspack/core': 1.1.5
- express: 4.19.2
+ '@module-federation/enhanced': 0.15.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)(webpack@5.96.1)
+ '@module-federation/node': 2.7.8(@rspack/core@1.4.4(@swc/helpers@0.5.17))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)(webpack@5.96.1)
+ '@module-federation/sdk': 0.15.0
+ '@nx/devkit': 21.2.2(nx@21.2.2)
+ '@nx/js': 21.2.2(@babel/traverse@7.28.0)(nx@21.2.2)
+ '@nx/web': 21.2.2(@babel/traverse@7.28.0)(nx@21.2.2)
+ '@rspack/core': 1.4.4(@swc/helpers@0.5.17)
+ express: 4.21.2
http-proxy-middleware: 3.0.3
picocolors: 1.1.1
- tslib: 2.6.3
- webpack: 5.88.0
+ tslib: 2.8.1
+ webpack: 5.96.1
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- '@swc/helpers'
- - '@swc/wasm'
- - '@types/node'
- bufferutil
- debug
- esbuild
@@ -16504,95 +18054,153 @@ snapshots:
- vue-tsc
- webpack-cli
- '@nx/nx-darwin-arm64@20.2.1':
+ '@nx/nx-darwin-arm64@21.2.2':
optional: true
- '@nx/nx-darwin-x64@20.2.1':
+ '@nx/nx-darwin-x64@21.2.2':
optional: true
- '@nx/nx-freebsd-x64@20.2.1':
+ '@nx/nx-freebsd-x64@21.2.2':
optional: true
- '@nx/nx-linux-arm-gnueabihf@20.2.1':
+ '@nx/nx-linux-arm-gnueabihf@21.2.2':
optional: true
- '@nx/nx-linux-arm64-gnu@20.2.1':
+ '@nx/nx-linux-arm64-gnu@21.2.2':
optional: true
- '@nx/nx-linux-arm64-musl@20.2.1':
+ '@nx/nx-linux-arm64-musl@21.2.2':
optional: true
- '@nx/nx-linux-x64-gnu@20.2.1':
+ '@nx/nx-linux-x64-gnu@21.2.2':
optional: true
- '@nx/nx-linux-x64-musl@20.2.1':
+ '@nx/nx-linux-x64-musl@21.2.2':
optional: true
- '@nx/nx-win32-arm64-msvc@20.2.1':
+ '@nx/nx-win32-arm64-msvc@21.2.2':
optional: true
- '@nx/nx-win32-x64-msvc@20.2.1':
+ '@nx/nx-win32-x64-msvc@21.2.2':
optional: true
- '@nx/web@20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(nx@20.2.1)(typescript@5.6.3)':
+ '@nx/rspack@21.2.2(@babel/traverse@7.28.0)(@module-federation/enhanced@0.16.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)(webpack@5.99.9))(@module-federation/node@2.7.8(@rspack/core@1.4.4(@swc/helpers@0.5.17))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)(webpack@5.99.9))(@swc/helpers@0.5.17)(@types/express@4.17.21)(less@4.1.3)(nx@21.2.2)(react-dom@18.3.1(react@18.3.1))(react-refresh@0.17.0)(react@18.3.1)(typescript@5.8.3)':
+ dependencies:
+ '@module-federation/enhanced': 0.16.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)(webpack@5.99.9)
+ '@module-federation/node': 2.7.8(@rspack/core@1.4.4(@swc/helpers@0.5.17))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)(webpack@5.99.9)
+ '@nx/devkit': 21.2.2(nx@21.2.2)
+ '@nx/js': 21.2.2(@babel/traverse@7.28.0)(nx@21.2.2)
+ '@nx/module-federation': 21.2.2(@babel/traverse@7.28.0)(@swc/helpers@0.5.17)(nx@21.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.8.3)
+ '@nx/web': 21.2.2(@babel/traverse@7.28.0)(nx@21.2.2)
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
+ '@rspack/core': 1.4.4(@swc/helpers@0.5.17)
+ '@rspack/dev-server': 1.1.3(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@types/express@4.17.21)(webpack@5.96.1)
+ '@rspack/plugin-react-refresh': 1.4.3(react-refresh@0.17.0)
+ autoprefixer: 10.4.20(postcss@8.4.49)
+ browserslist: 4.24.2
+ css-loader: 6.11.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(webpack@5.96.1)
+ enquirer: 2.3.6
+ express: 4.21.2
+ http-proxy-middleware: 3.0.3
+ less-loader: 11.1.0(less@4.1.3)(webpack@5.96.1)
+ license-webpack-plugin: 4.0.2(webpack@5.96.1)
+ loader-utils: 2.0.4
+ parse5: 4.0.0
+ picocolors: 1.1.1
+ postcss: 8.4.49
+ postcss-import: 14.1.0(postcss@8.4.49)
+ postcss-loader: 8.1.1(@rspack/core@1.4.4(@swc/helpers@0.5.17))(postcss@8.4.49)(typescript@5.8.3)(webpack@5.96.1)
+ sass: 1.89.2
+ sass-embedded: 1.89.2
+ sass-loader: 16.0.5(@rspack/core@1.4.4(@swc/helpers@0.5.17))(sass-embedded@1.89.2)(sass@1.89.2)(webpack@5.96.1)
+ source-map-loader: 5.0.0(webpack@5.96.1)
+ style-loader: 3.3.4(webpack@5.96.1)
+ ts-checker-rspack-plugin: 1.1.4(@rspack/core@1.4.4(@swc/helpers@0.5.17))(typescript@5.8.3)
+ tslib: 2.8.1
+ webpack: 5.96.1
+ webpack-node-externals: 3.0.0
+ transitivePeerDependencies:
+ - '@babel/traverse'
+ - '@swc-node/register'
+ - '@swc/core'
+ - '@swc/helpers'
+ - '@types/express'
+ - bufferutil
+ - debug
+ - esbuild
+ - less
+ - next
+ - node-sass
+ - nx
+ - react
+ - react-dom
+ - react-refresh
+ - supports-color
+ - typescript
+ - uglify-js
+ - utf-8-validate
+ - verdaccio
+ - vue-tsc
+ - webpack-cli
+ - webpack-hot-middleware
+
+ '@nx/web@21.2.2(@babel/traverse@7.28.0)(nx@21.2.2)':
dependencies:
- '@nx/devkit': 20.2.1(nx@20.2.1)
- '@nx/js': 20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(nx@20.2.1)(typescript@5.6.3)
+ '@nx/devkit': 21.2.2(nx@21.2.2)
+ '@nx/js': 21.2.2(@babel/traverse@7.28.0)(nx@21.2.2)
detect-port: 1.6.1
http-server: 14.1.1
picocolors: 1.1.1
- tslib: 2.6.3
+ tslib: 2.8.1
transitivePeerDependencies:
- '@babel/traverse'
- '@swc-node/register'
- '@swc/core'
- - '@swc/wasm'
- - '@types/node'
- debug
- nx
- supports-color
- - typescript
- verdaccio
- '@nx/webpack@20.2.1(@babel/traverse@7.26.4)(@rspack/core@1.1.5)(@types/node@20.14.15)(nx@20.2.1)(typescript@5.6.3)':
+ '@nx/webpack@21.2.2(@babel/traverse@7.28.0)(@rspack/core@1.4.4(@swc/helpers@0.5.17))(nx@21.2.2)(typescript@5.8.3)':
dependencies:
- '@babel/core': 7.25.2
- '@nx/devkit': 20.2.1(nx@20.2.1)
- '@nx/js': 20.2.1(@babel/traverse@7.26.4)(@types/node@20.14.15)(nx@20.2.1)(typescript@5.6.3)
- '@phenomnomnominal/tsquery': 5.0.1(typescript@5.6.3)
+ '@babel/core': 7.26.0
+ '@nx/devkit': 21.2.2(nx@21.2.2)
+ '@nx/js': 21.2.2(@babel/traverse@7.28.0)(nx@21.2.2)
+ '@phenomnomnominal/tsquery': 5.0.1(typescript@5.8.3)
ajv: 8.17.1
autoprefixer: 10.4.20(postcss@8.4.49)
- babel-loader: 9.1.3(@babel/core@7.25.2)(webpack@5.94.0)
- browserslist: 4.23.3
- copy-webpack-plugin: 10.2.4(webpack@5.94.0)
- css-loader: 6.11.0(@rspack/core@1.1.5)(webpack@5.94.0)
- css-minimizer-webpack-plugin: 5.0.1(webpack@5.94.0)
- fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.6.3)(webpack@5.94.0)
+ babel-loader: 9.2.1(@babel/core@7.26.0)(webpack@5.99.9)
+ browserslist: 4.24.2
+ copy-webpack-plugin: 10.2.4(webpack@5.99.9)
+ css-loader: 6.11.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(webpack@5.99.9)
+ css-minimizer-webpack-plugin: 5.0.1(webpack@5.99.9)
+ fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.8.3)(webpack@5.99.9)
less: 4.1.3
- less-loader: 11.1.0(less@4.1.3)(webpack@5.94.0)
- license-webpack-plugin: 4.0.2(webpack@5.94.0)
+ less-loader: 11.1.0(less@4.1.3)(webpack@5.99.9)
+ license-webpack-plugin: 4.0.2(webpack@5.99.9)
loader-utils: 2.0.4
- mini-css-extract-plugin: 2.4.7(webpack@5.94.0)
+ mini-css-extract-plugin: 2.4.7(webpack@5.99.9)
parse5: 4.0.0
picocolors: 1.1.1
postcss: 8.4.49
postcss-import: 14.1.0(postcss@8.4.49)
- postcss-loader: 6.2.1(postcss@8.4.49)(webpack@5.94.0)
+ postcss-loader: 6.2.1(postcss@8.4.49)(webpack@5.99.9)
rxjs: 7.8.1
- sass: 1.77.8
- sass-loader: 12.6.0(sass@1.77.8)(webpack@5.94.0)
- source-map-loader: 5.0.0(webpack@5.94.0)
- style-loader: 3.3.4(webpack@5.94.0)
+ sass: 1.89.2
+ sass-embedded: 1.89.2
+ sass-loader: 16.0.5(@rspack/core@1.4.4(@swc/helpers@0.5.17))(sass-embedded@1.89.2)(sass@1.89.2)(webpack@5.99.9)
+ source-map-loader: 5.0.0(webpack@5.99.9)
+ style-loader: 3.3.4(webpack@5.99.9)
stylus: 0.64.0
- stylus-loader: 7.1.3(stylus@0.64.0)(webpack@5.94.0)
- terser-webpack-plugin: 5.3.10(webpack@5.94.0)
- ts-loader: 9.5.1(typescript@5.6.3)(webpack@5.94.0)
+ stylus-loader: 7.1.3(stylus@0.64.0)(webpack@5.99.9)
+ terser-webpack-plugin: 5.3.10(webpack@5.99.9)
+ ts-loader: 9.5.1(typescript@5.8.3)(webpack@5.99.9)
tsconfig-paths-webpack-plugin: 4.0.0
- tslib: 2.6.3
- webpack: 5.94.0
- webpack-dev-server: 5.0.4(webpack@5.94.0)
+ tslib: 2.8.1
+ webpack: 5.99.9
+ webpack-dev-server: 5.2.2(webpack@5.99.9)
webpack-node-externals: 3.0.0
- webpack-subresource-integrity: 5.1.0(webpack@5.94.0)
+ webpack-subresource-integrity: 5.1.0(webpack@5.99.9)
transitivePeerDependencies:
- '@babel/traverse'
- '@parcel/css'
@@ -16600,19 +18208,15 @@ snapshots:
- '@swc-node/register'
- '@swc/core'
- '@swc/css'
- - '@swc/wasm'
- - '@types/node'
- bufferutil
- clean-css
- csso
- debug
- esbuild
- - fibers
- html-webpack-plugin
- lightningcss
- node-sass
- nx
- - sass-embedded
- supports-color
- typescript
- uglify-js
@@ -16621,13 +18225,15 @@ snapshots:
- vue-template-compiler
- webpack-cli
- '@nx/workspace@20.2.1':
+ '@nx/workspace@21.2.2':
dependencies:
- '@nx/devkit': 20.2.1(nx@20.2.1)
+ '@nx/devkit': 21.2.2(nx@21.2.2)
+ '@zkochan/js-yaml': 0.0.7
chalk: 4.1.2
enquirer: 2.3.6
- nx: 20.2.1
- tslib: 2.6.3
+ nx: 21.2.2
+ picomatch: 4.0.2
+ tslib: 2.8.1
yargs-parser: 21.1.1
transitivePeerDependencies:
- '@swc-node/register'
@@ -16695,10 +18301,10 @@ snapshots:
'@parcel/watcher-win32-x64': 2.5.0
optional: true
- '@phenomnomnominal/tsquery@5.0.1(typescript@5.6.3)':
+ '@phenomnomnominal/tsquery@5.0.1(typescript@5.8.3)':
dependencies:
esquery: 1.6.0
- typescript: 5.6.3
+ typescript: 5.8.3
'@pkgjs/parseargs@0.11.0':
optional: true
@@ -16711,181 +18317,217 @@ snapshots:
'@rollup/pluginutils@5.1.0(rollup@4.28.1)':
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
estree-walker: 2.0.2
picomatch: 2.3.1
optionalDependencies:
rollup: 4.28.1
- '@rollup/rollup-android-arm-eabi@4.26.0':
- optional: true
-
'@rollup/rollup-android-arm-eabi@4.28.1':
optional: true
- '@rollup/rollup-android-arm64@4.26.0':
+ '@rollup/rollup-android-arm-eabi@4.40.2':
optional: true
'@rollup/rollup-android-arm64@4.28.1':
optional: true
- '@rollup/rollup-darwin-arm64@4.26.0':
+ '@rollup/rollup-android-arm64@4.40.2':
optional: true
'@rollup/rollup-darwin-arm64@4.28.1':
optional: true
- '@rollup/rollup-darwin-x64@4.26.0':
+ '@rollup/rollup-darwin-arm64@4.40.2':
optional: true
'@rollup/rollup-darwin-x64@4.28.1':
optional: true
- '@rollup/rollup-freebsd-arm64@4.26.0':
+ '@rollup/rollup-darwin-x64@4.40.2':
optional: true
'@rollup/rollup-freebsd-arm64@4.28.1':
optional: true
- '@rollup/rollup-freebsd-x64@4.26.0':
+ '@rollup/rollup-freebsd-arm64@4.40.2':
optional: true
'@rollup/rollup-freebsd-x64@4.28.1':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.26.0':
+ '@rollup/rollup-freebsd-x64@4.40.2':
optional: true
'@rollup/rollup-linux-arm-gnueabihf@4.28.1':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.26.0':
+ '@rollup/rollup-linux-arm-gnueabihf@4.40.2':
optional: true
'@rollup/rollup-linux-arm-musleabihf@4.28.1':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.26.0':
+ '@rollup/rollup-linux-arm-musleabihf@4.40.2':
optional: true
'@rollup/rollup-linux-arm64-gnu@4.28.1':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.26.0':
+ '@rollup/rollup-linux-arm64-gnu@4.40.2':
optional: true
'@rollup/rollup-linux-arm64-musl@4.28.1':
optional: true
+ '@rollup/rollup-linux-arm64-musl@4.40.2':
+ optional: true
+
'@rollup/rollup-linux-loongarch64-gnu@4.28.1':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.26.0':
+ '@rollup/rollup-linux-loongarch64-gnu@4.40.2':
optional: true
'@rollup/rollup-linux-powerpc64le-gnu@4.28.1':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.26.0':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.40.2':
optional: true
'@rollup/rollup-linux-riscv64-gnu@4.28.1':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.26.0':
+ '@rollup/rollup-linux-riscv64-gnu@4.40.2':
+ optional: true
+
+ '@rollup/rollup-linux-riscv64-musl@4.40.2':
optional: true
'@rollup/rollup-linux-s390x-gnu@4.28.1':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.26.0':
+ '@rollup/rollup-linux-s390x-gnu@4.40.2':
optional: true
'@rollup/rollup-linux-x64-gnu@4.28.1':
optional: true
- '@rollup/rollup-linux-x64-musl@4.26.0':
+ '@rollup/rollup-linux-x64-gnu@4.40.2':
optional: true
'@rollup/rollup-linux-x64-musl@4.28.1':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.26.0':
+ '@rollup/rollup-linux-x64-musl@4.40.2':
optional: true
'@rollup/rollup-win32-arm64-msvc@4.28.1':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.26.0':
+ '@rollup/rollup-win32-arm64-msvc@4.40.2':
optional: true
'@rollup/rollup-win32-ia32-msvc@4.28.1':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.26.0':
+ '@rollup/rollup-win32-ia32-msvc@4.40.2':
optional: true
'@rollup/rollup-win32-x64-msvc@4.28.1':
optional: true
+ '@rollup/rollup-win32-x64-msvc@4.40.2':
+ optional: true
+
'@rollup/wasm-node@4.28.1':
dependencies:
'@types/estree': 1.0.6
optionalDependencies:
fsevents: 2.3.3
- '@rspack/binding-darwin-arm64@1.1.5':
+ '@rspack/binding-darwin-arm64@1.4.4':
+ optional: true
+
+ '@rspack/binding-darwin-x64@1.4.4':
optional: true
- '@rspack/binding-darwin-x64@1.1.5':
+ '@rspack/binding-linux-arm64-gnu@1.4.4':
optional: true
- '@rspack/binding-linux-arm64-gnu@1.1.5':
+ '@rspack/binding-linux-arm64-musl@1.4.4':
optional: true
- '@rspack/binding-linux-arm64-musl@1.1.5':
+ '@rspack/binding-linux-x64-gnu@1.4.4':
optional: true
- '@rspack/binding-linux-x64-gnu@1.1.5':
+ '@rspack/binding-linux-x64-musl@1.4.4':
optional: true
- '@rspack/binding-linux-x64-musl@1.1.5':
+ '@rspack/binding-wasm32-wasi@1.4.4':
+ dependencies:
+ '@napi-rs/wasm-runtime': 0.2.11
optional: true
- '@rspack/binding-win32-arm64-msvc@1.1.5':
+ '@rspack/binding-win32-arm64-msvc@1.4.4':
optional: true
- '@rspack/binding-win32-ia32-msvc@1.1.5':
+ '@rspack/binding-win32-ia32-msvc@1.4.4':
optional: true
- '@rspack/binding-win32-x64-msvc@1.1.5':
+ '@rspack/binding-win32-x64-msvc@1.4.4':
optional: true
- '@rspack/binding@1.1.5':
+ '@rspack/binding@1.4.4':
optionalDependencies:
- '@rspack/binding-darwin-arm64': 1.1.5
- '@rspack/binding-darwin-x64': 1.1.5
- '@rspack/binding-linux-arm64-gnu': 1.1.5
- '@rspack/binding-linux-arm64-musl': 1.1.5
- '@rspack/binding-linux-x64-gnu': 1.1.5
- '@rspack/binding-linux-x64-musl': 1.1.5
- '@rspack/binding-win32-arm64-msvc': 1.1.5
- '@rspack/binding-win32-ia32-msvc': 1.1.5
- '@rspack/binding-win32-x64-msvc': 1.1.5
-
- '@rspack/core@1.1.5':
- dependencies:
- '@module-federation/runtime-tools': 0.5.1
- '@rspack/binding': 1.1.5
+ '@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.17)':
+ dependencies:
+ '@module-federation/runtime-tools': 0.15.0
+ '@rspack/binding': 1.4.4
'@rspack/lite-tapable': 1.0.1
- caniuse-lite: 1.0.30001651
+ optionalDependencies:
+ '@swc/helpers': 0.5.17
+
+ '@rspack/dev-server@1.1.3(@rspack/core@1.4.4(@swc/helpers@0.5.17))(@types/express@4.17.21)(webpack@5.96.1)':
+ dependencies:
+ '@rspack/core': 1.4.4(@swc/helpers@0.5.17)
+ 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.96.1)
+ ws: 8.18.0
+ transitivePeerDependencies:
+ - '@types/express'
+ - bufferutil
+ - debug
+ - supports-color
+ - utf-8-validate
+ - webpack
+ - webpack-cli
'@rspack/lite-tapable@1.0.1': {}
- '@schematics/angular@19.0.4(chokidar@4.0.1)':
+ '@rspack/plugin-react-refresh@1.4.3(react-refresh@0.17.0)':
+ dependencies:
+ error-stack-parser: 2.1.4
+ html-entities: 2.6.0
+ react-refresh: 0.17.0
+
+ '@schematics/angular@20.0.5(chokidar@4.0.1)':
dependencies:
- '@angular-devkit/core': 19.0.4(chokidar@4.0.1)
- '@angular-devkit/schematics': 19.0.4(chokidar@4.0.1)
+ '@angular-devkit/core': 20.0.5(chokidar@4.0.1)
+ '@angular-devkit/schematics': 20.0.5(chokidar@4.0.1)
jsonc-parser: 3.3.1
transitivePeerDependencies:
- chokidar
@@ -16924,8 +18566,6 @@ snapshots:
'@sinclair/typebox@0.27.8': {}
- '@sindresorhus/merge-streams@2.3.0': {}
-
'@sinonjs/commons@3.0.1':
dependencies:
type-detect: 4.0.8
@@ -16934,6 +18574,10 @@ snapshots:
dependencies:
'@sinonjs/commons': 3.0.1
+ '@swc/helpers@0.5.17':
+ dependencies:
+ tslib: 2.8.1
+
'@tootallnate/once@2.0.0': {}
'@trysound/sax@0.2.0': {}
@@ -16955,7 +18599,7 @@ snapshots:
'@tybys/wasm-util@0.9.0':
dependencies:
- tslib: 2.6.3
+ tslib: 2.8.1
'@types/babel__core@7.20.5':
dependencies:
@@ -17006,10 +18650,10 @@ snapshots:
'@types/estree': 1.0.6
'@types/json-schema': 7.0.15
- '@types/estree@1.0.5': {}
-
'@types/estree@1.0.6': {}
+ '@types/estree@1.0.7': {}
+
'@types/express-serve-static-core@4.19.5':
dependencies:
'@types/node': 20.14.15
@@ -17119,34 +18763,34 @@ snapshots:
'@types/node': 20.14.15
optional: true
- '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3))(eslint@8.57.0)(typescript@5.6.3)':
+ '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.8.3))(eslint@8.57.0)(typescript@5.8.3)':
dependencies:
'@eslint-community/regexpp': 4.11.0
- '@typescript-eslint/parser': 7.18.0(eslint@8.57.0)(typescript@5.6.3)
+ '@typescript-eslint/parser': 7.18.0(eslint@8.57.0)(typescript@5.8.3)
'@typescript-eslint/scope-manager': 7.18.0
- '@typescript-eslint/type-utils': 7.18.0(eslint@8.57.0)(typescript@5.6.3)
- '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.6.3)
+ '@typescript-eslint/type-utils': 7.18.0(eslint@8.57.0)(typescript@5.8.3)
+ '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.8.3)
'@typescript-eslint/visitor-keys': 7.18.0
eslint: 8.57.0
graphemer: 1.4.0
ignore: 5.3.1
natural-compare: 1.4.0
- ts-api-utils: 1.3.0(typescript@5.6.3)
+ ts-api-utils: 1.3.0(typescript@5.8.3)
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.6.3)':
+ '@typescript-eslint/parser@7.18.0(eslint@8.57.0)(typescript@5.8.3)':
dependencies:
'@typescript-eslint/scope-manager': 7.18.0
'@typescript-eslint/types': 7.18.0
- '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.6.3)
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.8.3)
'@typescript-eslint/visitor-keys': 7.18.0
debug: 4.3.6(supports-color@8.1.1)
eslint: 8.57.0
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
@@ -17160,27 +18804,27 @@ snapshots:
'@typescript-eslint/types': 8.16.0
'@typescript-eslint/visitor-keys': 8.16.0
- '@typescript-eslint/type-utils@7.18.0(eslint@8.57.0)(typescript@5.6.3)':
+ '@typescript-eslint/type-utils@7.18.0(eslint@8.57.0)(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.6.3)
- '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.6.3)
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.8.3)
+ '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.8.3)
debug: 4.3.6(supports-color@8.1.1)
eslint: 8.57.0
- ts-api-utils: 1.3.0(typescript@5.6.3)
+ ts-api-utils: 1.3.0(typescript@5.8.3)
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@8.16.0(eslint@8.57.0)(typescript@5.6.3)':
+ '@typescript-eslint/type-utils@8.16.0(eslint@8.57.0)(typescript@5.8.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.6.3)
- '@typescript-eslint/utils': 8.16.0(eslint@8.57.0)(typescript@5.6.3)
+ '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.8.3)
+ '@typescript-eslint/utils': 8.16.0(eslint@8.57.0)(typescript@5.8.3)
debug: 4.3.6(supports-color@8.1.1)
eslint: 8.57.0
- ts-api-utils: 1.3.0(typescript@5.6.3)
+ ts-api-utils: 1.3.0(typescript@5.8.3)
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
@@ -17188,7 +18832,7 @@ snapshots:
'@typescript-eslint/types@8.16.0': {}
- '@typescript-eslint/typescript-estree@7.18.0(typescript@5.6.3)':
+ '@typescript-eslint/typescript-estree@7.18.0(typescript@5.8.3)':
dependencies:
'@typescript-eslint/types': 7.18.0
'@typescript-eslint/visitor-keys': 7.18.0
@@ -17197,13 +18841,13 @@ snapshots:
is-glob: 4.0.3
minimatch: 9.0.5
semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.6.3)
+ ts-api-utils: 1.3.0(typescript@5.8.3)
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@8.16.0(typescript@5.6.3)':
+ '@typescript-eslint/typescript-estree@8.16.0(typescript@5.8.3)':
dependencies:
'@typescript-eslint/types': 8.16.0
'@typescript-eslint/visitor-keys': 8.16.0
@@ -17211,33 +18855,33 @@ snapshots:
fast-glob: 3.3.2
is-glob: 4.0.3
minimatch: 9.0.5
- semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.6.3)
+ semver: 7.7.2
+ ts-api-utils: 1.3.0(typescript@5.8.3)
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.6.3)':
+ '@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.8.3)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
'@typescript-eslint/scope-manager': 7.18.0
'@typescript-eslint/types': 7.18.0
- '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.6.3)
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.8.3)
eslint: 8.57.0
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@8.16.0(eslint@8.57.0)(typescript@5.6.3)':
+ '@typescript-eslint/utils@8.16.0(eslint@8.57.0)(typescript@5.8.3)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
'@typescript-eslint/scope-manager': 8.16.0
'@typescript-eslint/types': 8.16.0
- '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.6.3)
+ '@typescript-eslint/typescript-estree': 8.16.0(typescript@5.8.3)
eslint: 8.57.0
optionalDependencies:
- typescript: 5.6.3
+ typescript: 5.8.3
transitivePeerDependencies:
- supports-color
@@ -17253,29 +18897,53 @@ snapshots:
'@ungap/structured-clone@1.2.0': {}
- '@vitejs/plugin-basic-ssl@1.1.0(vite@5.4.11(@types/node@20.14.15)(less@4.2.0)(sass@1.80.7)(stylus@0.64.0)(terser@5.36.0))':
+ '@vitejs/plugin-basic-ssl@2.0.0(vite@6.3.5(@types/node@20.14.15)(jiti@1.21.6)(less@4.1.3)(sass-embedded@1.89.2)(sass@1.88.0)(stylus@0.64.0)(terser@5.39.1)(yaml@2.6.1))':
+ dependencies:
+ vite: 6.3.5(@types/node@20.14.15)(jiti@1.21.6)(less@4.1.3)(sass-embedded@1.89.2)(sass@1.88.0)(stylus@0.64.0)(terser@5.39.1)(yaml@2.6.1)
+ optional: true
+
+ '@vitejs/plugin-basic-ssl@2.0.0(vite@6.3.5(@types/node@20.14.15)(jiti@1.21.6)(less@4.3.0)(sass-embedded@1.89.2)(sass@1.88.0)(stylus@0.64.0)(terser@5.39.1)(yaml@2.6.1))':
dependencies:
- vite: 5.4.11(@types/node@20.14.15)(less@4.1.3)(sass@1.77.8)(stylus@0.64.0)(terser@5.36.0)
+ vite: 6.3.5(@types/node@20.14.15)(jiti@1.21.6)(less@4.1.3)(sass-embedded@1.89.2)(sass@1.89.2)(stylus@0.64.0)(terser@5.39.1)(yaml@2.6.1)
'@webassemblyjs/ast@1.12.1':
dependencies:
'@webassemblyjs/helper-numbers': 1.11.6
'@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@webassemblyjs/ast@1.14.1':
+ dependencies:
+ '@webassemblyjs/helper-numbers': 1.13.2
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+
'@webassemblyjs/floating-point-hex-parser@1.11.6': {}
+ '@webassemblyjs/floating-point-hex-parser@1.13.2': {}
+
'@webassemblyjs/helper-api-error@1.11.6': {}
+ '@webassemblyjs/helper-api-error@1.13.2': {}
+
'@webassemblyjs/helper-buffer@1.12.1': {}
+ '@webassemblyjs/helper-buffer@1.14.1': {}
+
'@webassemblyjs/helper-numbers@1.11.6':
dependencies:
'@webassemblyjs/floating-point-hex-parser': 1.11.6
'@webassemblyjs/helper-api-error': 1.11.6
'@xtuc/long': 4.2.2
+ '@webassemblyjs/helper-numbers@1.13.2':
+ dependencies:
+ '@webassemblyjs/floating-point-hex-parser': 1.13.2
+ '@webassemblyjs/helper-api-error': 1.13.2
+ '@xtuc/long': 4.2.2
+
'@webassemblyjs/helper-wasm-bytecode@1.11.6': {}
+ '@webassemblyjs/helper-wasm-bytecode@1.13.2': {}
+
'@webassemblyjs/helper-wasm-section@1.12.1':
dependencies:
'@webassemblyjs/ast': 1.12.1
@@ -17283,16 +18951,33 @@ snapshots:
'@webassemblyjs/helper-wasm-bytecode': 1.11.6
'@webassemblyjs/wasm-gen': 1.12.1
+ '@webassemblyjs/helper-wasm-section@1.14.1':
+ dependencies:
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-buffer': 1.14.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/wasm-gen': 1.14.1
+
'@webassemblyjs/ieee754@1.11.6':
dependencies:
'@xtuc/ieee754': 1.2.0
+ '@webassemblyjs/ieee754@1.13.2':
+ dependencies:
+ '@xtuc/ieee754': 1.2.0
+
'@webassemblyjs/leb128@1.11.6':
dependencies:
'@xtuc/long': 4.2.2
+ '@webassemblyjs/leb128@1.13.2':
+ dependencies:
+ '@xtuc/long': 4.2.2
+
'@webassemblyjs/utf8@1.11.6': {}
+ '@webassemblyjs/utf8@1.13.2': {}
+
'@webassemblyjs/wasm-edit@1.12.1':
dependencies:
'@webassemblyjs/ast': 1.12.1
@@ -17304,6 +18989,17 @@ snapshots:
'@webassemblyjs/wasm-parser': 1.12.1
'@webassemblyjs/wast-printer': 1.12.1
+ '@webassemblyjs/wasm-edit@1.14.1':
+ dependencies:
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-buffer': 1.14.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/helper-wasm-section': 1.14.1
+ '@webassemblyjs/wasm-gen': 1.14.1
+ '@webassemblyjs/wasm-opt': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
+ '@webassemblyjs/wast-printer': 1.14.1
+
'@webassemblyjs/wasm-gen@1.12.1':
dependencies:
'@webassemblyjs/ast': 1.12.1
@@ -17312,6 +19008,14 @@ snapshots:
'@webassemblyjs/leb128': 1.11.6
'@webassemblyjs/utf8': 1.11.6
+ '@webassemblyjs/wasm-gen@1.14.1':
+ dependencies:
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/ieee754': 1.13.2
+ '@webassemblyjs/leb128': 1.13.2
+ '@webassemblyjs/utf8': 1.13.2
+
'@webassemblyjs/wasm-opt@1.12.1':
dependencies:
'@webassemblyjs/ast': 1.12.1
@@ -17319,6 +19023,13 @@ snapshots:
'@webassemblyjs/wasm-gen': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
+ '@webassemblyjs/wasm-opt@1.14.1':
+ dependencies:
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-buffer': 1.14.1
+ '@webassemblyjs/wasm-gen': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
+
'@webassemblyjs/wasm-parser@1.12.1':
dependencies:
'@webassemblyjs/ast': 1.12.1
@@ -17328,11 +19039,25 @@ snapshots:
'@webassemblyjs/leb128': 1.11.6
'@webassemblyjs/utf8': 1.11.6
+ '@webassemblyjs/wasm-parser@1.14.1':
+ dependencies:
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-api-error': 1.13.2
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/ieee754': 1.13.2
+ '@webassemblyjs/leb128': 1.13.2
+ '@webassemblyjs/utf8': 1.13.2
+
'@webassemblyjs/wast-printer@1.12.1':
dependencies:
'@webassemblyjs/ast': 1.12.1
'@xtuc/long': 4.2.2
+ '@webassemblyjs/wast-printer@1.14.1':
+ dependencies:
+ '@webassemblyjs/ast': 1.14.1
+ '@xtuc/long': 4.2.2
+
'@xtuc/ieee754@1.2.0': {}
'@xtuc/long@4.2.2': {}
@@ -17342,7 +19067,7 @@ snapshots:
'@yarnpkg/parsers@3.0.2':
dependencies:
js-yaml: 3.14.1
- tslib: 2.6.3
+ tslib: 2.8.1
'@zkochan/js-yaml@0.0.7':
dependencies:
@@ -17362,14 +19087,6 @@ snapshots:
acorn: 8.12.1
acorn-walk: 8.3.3
- acorn-import-assertions@1.9.0(acorn@8.12.1):
- dependencies:
- acorn: 8.12.1
-
- acorn-import-attributes@1.9.5(acorn@8.12.1):
- dependencies:
- acorn: 8.12.1
-
acorn-jsx@5.3.2(acorn@8.12.1):
dependencies:
acorn: 8.12.1
@@ -17397,11 +19114,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- agent-base@7.1.1:
- dependencies:
- debug: 4.3.6(supports-color@8.1.1)
- transitivePeerDependencies:
- - supports-color
+ agent-base@7.1.3: {}
aggregate-error@3.1.0:
dependencies:
@@ -17528,11 +19241,21 @@ snapshots:
postcss: 8.4.49
postcss-value-parser: 4.2.0
+ autoprefixer@10.4.21(postcss@8.5.3):
+ dependencies:
+ browserslist: 4.25.1
+ caniuse-lite: 1.0.30001727
+ fraction.js: 4.3.7
+ normalize-range: 0.1.2
+ picocolors: 1.1.1
+ postcss: 8.5.3
+ postcss-value-parser: 4.2.0
+
aws-sign2@0.7.0: {}
aws4@1.13.1: {}
- axios@1.7.8:
+ axios@1.10.0:
dependencies:
follow-redirects: 1.15.6(debug@4.3.6)
form-data: 4.0.0
@@ -17555,26 +19278,39 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-loader@9.1.3(@babel/core@7.25.2)(webpack@5.94.0):
+ babel-jest@29.7.0(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.25.2
- find-cache-dir: 4.0.0
- schema-utils: 4.2.0
- webpack: 5.94.0
+ '@babel/core': 7.26.0
+ '@jest/transform': 29.7.0
+ '@types/babel__core': 7.20.5
+ babel-plugin-istanbul: 6.1.1
+ babel-preset-jest: 29.6.3(@babel/core@7.26.0)
+ chalk: 4.1.2
+ graceful-fs: 4.2.11
+ slash: 3.0.0
+ transitivePeerDependencies:
+ - supports-color
+ optional: true
+
+ babel-loader@10.0.0(@babel/core@7.27.1)(webpack@5.99.8(esbuild@0.25.5)):
+ dependencies:
+ '@babel/core': 7.27.1
+ find-up: 5.0.0
+ webpack: 5.99.8(esbuild@0.25.5)
- babel-loader@9.2.1(@babel/core@7.26.0)(webpack@5.96.1(esbuild@0.24.0)):
+ babel-loader@9.2.1(@babel/core@7.26.0)(webpack@5.99.9):
dependencies:
'@babel/core': 7.26.0
find-cache-dir: 4.0.0
schema-utils: 4.2.0
- webpack: 5.96.1(esbuild@0.24.0)
+ webpack: 5.99.9
- babel-plugin-const-enum@1.2.0(@babel/core@7.25.2):
+ babel-plugin-const-enum@1.2.0(@babel/core@7.26.0):
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.25.2)
- '@babel/traverse': 7.25.3
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
+ '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.26.0)
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
@@ -17595,35 +19331,27 @@ snapshots:
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.6
- babel-plugin-macros@2.8.0:
+ babel-plugin-macros@3.1.0:
dependencies:
- '@babel/runtime': 7.25.0
- cosmiconfig: 6.0.0
+ '@babel/runtime': 7.26.0
+ cosmiconfig: 7.1.0
resolve: 1.22.8
- babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.25.2):
- dependencies:
- '@babel/compat-data': 7.25.2
- '@babel/core': 7.25.2
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.26.0):
dependencies:
- '@babel/compat-data': 7.25.2
+ '@babel/compat-data': 7.28.0
'@babel/core': 7.26.0
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.25.2):
+ babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.27.1):
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
- core-js-compat: 3.38.0
+ '@babel/compat-data': 7.28.0
+ '@babel/core': 7.27.1
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.27.1)
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -17631,14 +19359,15 @@ snapshots:
dependencies:
'@babel/core': 7.26.0
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.0)
- core-js-compat: 3.38.0
+ core-js-compat: 3.39.0
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.25.2):
+ babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.27.1):
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.25.2)
+ '@babel/core': 7.27.1
+ '@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.27.1)
+ core-js-compat: 3.43.0
transitivePeerDependencies:
- supports-color
@@ -17649,12 +19378,19 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.25.2)(@babel/traverse@7.26.4):
+ babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.27.1):
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.27.1
+ '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.27.1)
+ transitivePeerDependencies:
+ - supports-color
+
+ babel-plugin-transform-typescript-metadata@0.3.2(@babel/core@7.26.0)(@babel/traverse@7.28.0):
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.25.9
optionalDependencies:
- '@babel/traverse': 7.26.4
+ '@babel/traverse': 7.28.0
babel-preset-current-node-syntax@1.0.1(@babel/core@7.25.2):
dependencies:
@@ -17672,12 +19408,36 @@ snapshots:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.2)
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.25.2)
+ babel-preset-current-node-syntax@1.0.1(@babel/core@7.26.0):
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.0)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.0)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.0)
+ optional: true
+
babel-preset-jest@29.6.3(@babel/core@7.25.2):
dependencies:
'@babel/core': 7.25.2
babel-plugin-jest-hoist: 29.6.3
babel-preset-current-node-syntax: 1.0.1(@babel/core@7.25.2)
+ babel-preset-jest@29.6.3(@babel/core@7.26.0):
+ dependencies:
+ '@babel/core': 7.26.0
+ babel-plugin-jest-hoist: 29.6.3
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.26.0)
+ optional: true
+
balanced-match@1.0.2: {}
base64-js@1.5.1: {}
@@ -17692,15 +19452,15 @@ snapshots:
dependencies:
tweetnacl: 0.14.5
- beasties@0.1.0:
+ beasties@0.3.4:
dependencies:
css-select: 5.1.0
css-what: 6.1.0
dom-serializer: 2.0.0
domhandler: 5.0.3
- htmlparser2: 9.1.0
+ htmlparser2: 10.0.0
picocolors: 1.1.1
- postcss: 8.4.49
+ postcss: 8.5.3
postcss-media-query-parser: 0.2.3
big.js@5.2.2: {}
@@ -17717,7 +19477,7 @@ snapshots:
bluebird@3.7.2: {}
- body-parser@1.20.2:
+ body-parser@1.20.3:
dependencies:
bytes: 3.1.2
content-type: 1.0.5
@@ -17727,7 +19487,7 @@ snapshots:
http-errors: 2.0.0
iconv-lite: 0.4.24
on-finished: 2.4.1
- qs: 6.11.0
+ qs: 6.13.0
raw-body: 2.5.2
type-is: 1.6.18
unpipe: 1.0.0
@@ -17768,6 +19528,13 @@ snapshots:
node-releases: 2.0.18
update-browserslist-db: 1.1.1(browserslist@4.24.2)
+ browserslist@4.25.1:
+ dependencies:
+ caniuse-lite: 1.0.30001727
+ electron-to-chromium: 1.5.179
+ node-releases: 2.0.19
+ update-browserslist-db: 1.1.3(browserslist@4.25.1)
+
bs-logger@0.2.6:
dependencies:
fast-json-stable-stringify: 2.1.0
@@ -17778,6 +19545,8 @@ snapshots:
btoa@1.2.1: {}
+ buffer-builder@0.2.0: {}
+
buffer-crc32@0.2.13: {}
buffer-from@1.1.2: {}
@@ -17817,6 +19586,11 @@ snapshots:
cachedir@2.4.0: {}
+ call-bind-apply-helpers@1.0.2:
+ dependencies:
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+
call-bind@1.0.7:
dependencies:
es-define-property: 1.0.0
@@ -17825,6 +19599,11 @@ snapshots:
get-intrinsic: 1.2.4
set-function-length: 1.2.2
+ call-bound@1.0.4:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ get-intrinsic: 1.3.0
+
callsites@3.1.0: {}
camelcase@5.3.1: {}
@@ -17833,8 +19612,8 @@ snapshots:
caniuse-api@3.0.0:
dependencies:
- browserslist: 4.23.3
- caniuse-lite: 1.0.30001651
+ browserslist: 4.24.2
+ caniuse-lite: 1.0.30001687
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
@@ -17842,6 +19621,8 @@ snapshots:
caniuse-lite@1.0.30001687: {}
+ caniuse-lite@1.0.30001727: {}
+
caseless@0.12.0: {}
chalk@2.4.2:
@@ -17860,6 +19641,8 @@ snapshots:
ansi-styles: 4.3.0
supports-color: 7.2.0
+ chalk@5.4.1: {}
+
char-regex@1.0.2: {}
chardet@0.7.0: {}
@@ -17890,6 +19673,8 @@ snapshots:
ci-info@3.9.0: {}
+ ci-info@4.3.0: {}
+
cjs-module-lexer@1.3.1: {}
clean-stack@2.2.0: {}
@@ -17906,11 +19691,11 @@ snapshots:
cli-spinners@2.9.2: {}
- cli-table3@0.6.5:
+ cli-table3@0.6.1:
dependencies:
string-width: 4.2.3
optionalDependencies:
- '@colors/colors': 1.5.0
+ colors: 1.4.0
cli-truncate@2.1.0:
dependencies:
@@ -17930,6 +19715,12 @@ snapshots:
strip-ansi: 6.0.1
wrap-ansi: 7.0.0
+ cliui@9.0.1:
+ dependencies:
+ string-width: 7.2.0
+ strip-ansi: 7.1.0
+ wrap-ansi: 9.0.0
+
clone-deep@4.0.1:
dependencies:
is-plain-object: 2.0.4
@@ -17958,6 +19749,11 @@ snapshots:
colorette@2.0.20: {}
+ colorjs.io@0.5.2: {}
+
+ colors@1.4.0:
+ optional: true
+
columnify@1.6.0:
dependencies:
strip-ansi: 6.0.1
@@ -17967,7 +19763,9 @@ snapshots:
dependencies:
delayed-stream: 1.0.0
- commander@12.1.0: {}
+ commander@11.1.0: {}
+
+ commander@14.0.0: {}
commander@2.20.3: {}
@@ -17979,8 +19777,6 @@ snapshots:
common-tags@1.8.2: {}
- commondir@1.0.1: {}
-
compressible@2.0.18:
dependencies:
mime-db: 1.53.0
@@ -18015,7 +19811,7 @@ snapshots:
cookie-signature@1.0.6: {}
- cookie@0.6.0: {}
+ cookie@0.7.1: {}
cookies@0.9.1:
dependencies:
@@ -18026,7 +19822,7 @@ snapshots:
dependencies:
is-what: 3.14.1
- copy-webpack-plugin@10.2.4(webpack@5.94.0):
+ copy-webpack-plugin@10.2.4(webpack@5.99.9):
dependencies:
fast-glob: 3.3.2
glob-parent: 6.0.2
@@ -18034,40 +19830,31 @@ snapshots:
normalize-path: 3.0.0
schema-utils: 4.2.0
serialize-javascript: 6.0.2
- webpack: 5.94.0
+ webpack: 5.99.9
- copy-webpack-plugin@12.0.2(webpack@5.96.1(esbuild@0.24.0)):
+ copy-webpack-plugin@13.0.0(webpack@5.99.8(esbuild@0.25.5)):
dependencies:
- fast-glob: 3.3.2
glob-parent: 6.0.2
- globby: 14.0.2
normalize-path: 3.0.0
schema-utils: 4.2.0
serialize-javascript: 6.0.2
- webpack: 5.96.1(esbuild@0.24.0)
-
- core-js-compat@3.38.0:
- dependencies:
- browserslist: 4.23.3
+ tinyglobby: 0.2.14
+ webpack: 5.99.8(esbuild@0.25.5)
core-js-compat@3.39.0:
dependencies:
browserslist: 4.24.2
+ core-js-compat@3.43.0:
+ dependencies:
+ browserslist: 4.25.1
+
core-util-is@1.0.2: {}
core-util-is@1.0.3: {}
corser@2.0.1: {}
- cosmiconfig@6.0.0:
- dependencies:
- '@types/parse-json': 4.0.2
- import-fresh: 3.3.0
- parse-json: 5.2.0
- path-type: 4.0.0
- yaml: 1.10.2
-
cosmiconfig@7.1.0:
dependencies:
'@types/parse-json': 4.0.2
@@ -18076,22 +19863,22 @@ snapshots:
path-type: 4.0.0
yaml: 1.10.2
- cosmiconfig@9.0.0(typescript@5.6.3):
+ cosmiconfig@9.0.0(typescript@5.8.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.6.3
+ typescript: 5.8.3
- create-jest@29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3)):
+ create-jest@29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3)):
dependencies:
'@jest/types': 29.6.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3))
+ jest-config: 29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3))
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -18126,7 +19913,7 @@ snapshots:
postcss: 8.4.41
postcss-selector-parser: 6.1.1
- css-loader@6.11.0(@rspack/core@1.1.5)(webpack@5.94.0):
+ css-loader@6.11.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(webpack@5.96.1):
dependencies:
icss-utils: 5.1.0(postcss@8.4.49)
postcss: 8.4.49
@@ -18135,12 +19922,12 @@ snapshots:
postcss-modules-scope: 3.2.0(postcss@8.4.49)
postcss-modules-values: 4.0.0(postcss@8.4.49)
postcss-value-parser: 4.2.0
- semver: 7.6.3
+ semver: 7.7.2
optionalDependencies:
- '@rspack/core': 1.1.5
- webpack: 5.94.0
+ '@rspack/core': 1.4.4(@swc/helpers@0.5.17)
+ webpack: 5.96.1
- css-loader@7.1.2(@rspack/core@1.1.5)(webpack@5.96.1(esbuild@0.24.0)):
+ css-loader@6.11.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(webpack@5.99.9):
dependencies:
icss-utils: 5.1.0(postcss@8.4.49)
postcss: 8.4.49
@@ -18149,12 +19936,26 @@ snapshots:
postcss-modules-scope: 3.2.0(postcss@8.4.49)
postcss-modules-values: 4.0.0(postcss@8.4.49)
postcss-value-parser: 4.2.0
- semver: 7.6.3
+ semver: 7.7.2
+ optionalDependencies:
+ '@rspack/core': 1.4.4(@swc/helpers@0.5.17)
+ webpack: 5.99.9
+
+ css-loader@7.1.2(@rspack/core@1.4.4(@swc/helpers@0.5.17))(webpack@5.99.8(esbuild@0.25.5)):
+ dependencies:
+ icss-utils: 5.1.0(postcss@8.5.3)
+ postcss: 8.5.3
+ postcss-modules-extract-imports: 3.1.0(postcss@8.5.3)
+ postcss-modules-local-by-default: 4.0.5(postcss@8.5.3)
+ 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
optionalDependencies:
- '@rspack/core': 1.1.5
- webpack: 5.96.1(esbuild@0.24.0)
+ '@rspack/core': 1.4.4(@swc/helpers@0.5.17)
+ webpack: 5.99.8(esbuild@0.25.5)
- css-minimizer-webpack-plugin@5.0.1(webpack@5.94.0):
+ css-minimizer-webpack-plugin@5.0.1(webpack@5.99.9):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
cssnano: 6.1.2(postcss@8.4.49)
@@ -18162,7 +19963,7 @@ snapshots:
postcss: 8.4.49
schema-utils: 4.2.0
serialize-javascript: 6.0.2
- webpack: 5.94.0
+ webpack: 5.99.9
css-prefers-color-scheme@6.0.3(postcss@8.4.41):
dependencies:
@@ -18194,7 +19995,7 @@ snapshots:
cssnano-preset-default@6.1.2(postcss@8.4.49):
dependencies:
- browserslist: 4.23.3
+ browserslist: 4.24.2
css-declaration-sorter: 7.2.0(postcss@8.4.49)
cssnano-utils: 4.0.2(postcss@8.4.49)
postcss: 8.4.49
@@ -18250,9 +20051,9 @@ snapshots:
cuint@0.2.2: {}
- cypress@13.13.2:
+ cypress@14.5.1:
dependencies:
- '@cypress/request': 3.0.1
+ '@cypress/request': 3.0.8
'@cypress/xvfb': 1.2.4(supports-color@8.1.1)
'@types/sinonjs__fake-timers': 8.1.1
'@types/sizzle': 2.3.8
@@ -18263,8 +20064,9 @@ snapshots:
cachedir: 2.4.0
chalk: 4.1.2
check-more-types: 2.24.0
+ ci-info: 4.3.0
cli-cursor: 3.1.0
- cli-table3: 0.6.5
+ cli-table3: 0.6.1
commander: 6.2.1
common-tags: 1.8.2
dayjs: 1.11.12
@@ -18277,7 +20079,7 @@ snapshots:
figures: 3.2.0
fs-extra: 9.1.0
getos: 3.2.1
- is-ci: 3.0.1
+ hasha: 5.2.2
is-installed-globally: 0.4.0
lazy-ass: 1.6.0
listr2: 3.14.0(enquirer@2.4.1)
@@ -18289,9 +20091,10 @@ snapshots:
process: 0.11.10
proxy-from-env: 1.0.0
request-progress: 3.0.0
- semver: 7.6.3
+ semver: 7.7.2
supports-color: 8.1.1
tmp: 0.2.3
+ tree-kill: 1.2.2
untildify: 4.0.0
yauzl: 2.10.0
@@ -18325,9 +20128,15 @@ snapshots:
optionalDependencies:
supports-color: 8.1.1
+ debug@4.4.1:
+ dependencies:
+ ms: 2.1.3
+
decimal.js@10.4.3: {}
- dedent@1.5.3: {}
+ dedent@1.5.3(babel-plugin-macros@3.1.0):
+ optionalDependencies:
+ babel-plugin-macros: 3.1.0
deep-equal@1.0.1: {}
@@ -18342,10 +20151,6 @@ snapshots:
bundle-name: 4.1.0
default-browser-id: 5.0.0
- default-gateway@6.0.3:
- dependencies:
- execa: 5.1.1
-
defaults@1.0.4:
dependencies:
clone: 1.0.4
@@ -18427,12 +20232,24 @@ snapshots:
domelementtype: 2.3.0
domhandler: 5.0.3
+ domutils@3.2.2:
+ dependencies:
+ dom-serializer: 2.0.0
+ domelementtype: 2.3.0
+ domhandler: 5.0.3
+
dotenv-expand@11.0.6:
dependencies:
dotenv: 16.4.5
dotenv@16.4.5: {}
+ dunder-proto@1.0.1:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-errors: 1.3.0
+ gopd: 1.2.0
+
eastasianwidth@0.2.0: {}
ecc-jsbn@0.1.2:
@@ -18446,6 +20263,8 @@ snapshots:
dependencies:
jake: 10.9.2
+ electron-to-chromium@1.5.179: {}
+
electron-to-chromium@1.5.6: {}
electron-to-chromium@1.5.71: {}
@@ -18462,6 +20281,8 @@ snapshots:
encodeurl@1.0.2: {}
+ encodeurl@2.0.0: {}
+
encoding@0.1.13:
dependencies:
iconv-lite: 0.6.3
@@ -18486,6 +20307,8 @@ snapshots:
entities@4.5.0: {}
+ entities@6.0.1: {}
+
env-paths@2.2.1: {}
environment@1.1.0: {}
@@ -18501,71 +20324,52 @@ snapshots:
dependencies:
is-arrayish: 0.2.1
+ error-stack-parser@2.1.4:
+ 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: {}
- esbuild-wasm@0.23.0: {}
+ es-object-atoms@1.1.1:
+ dependencies:
+ es-errors: 1.3.0
esbuild-wasm@0.24.0: {}
- esbuild@0.21.5:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.21.5
- '@esbuild/android-arm': 0.21.5
- '@esbuild/android-arm64': 0.21.5
- '@esbuild/android-x64': 0.21.5
- '@esbuild/darwin-arm64': 0.21.5
- '@esbuild/darwin-x64': 0.21.5
- '@esbuild/freebsd-arm64': 0.21.5
- '@esbuild/freebsd-x64': 0.21.5
- '@esbuild/linux-arm': 0.21.5
- '@esbuild/linux-arm64': 0.21.5
- '@esbuild/linux-ia32': 0.21.5
- '@esbuild/linux-loong64': 0.21.5
- '@esbuild/linux-mips64el': 0.21.5
- '@esbuild/linux-ppc64': 0.21.5
- '@esbuild/linux-riscv64': 0.21.5
- '@esbuild/linux-s390x': 0.21.5
- '@esbuild/linux-x64': 0.21.5
- '@esbuild/netbsd-x64': 0.21.5
- '@esbuild/openbsd-x64': 0.21.5
- '@esbuild/sunos-x64': 0.21.5
- '@esbuild/win32-arm64': 0.21.5
- '@esbuild/win32-ia32': 0.21.5
- '@esbuild/win32-x64': 0.21.5
-
- esbuild@0.23.0:
+ esbuild-wasm@0.25.5: {}
+
+ esbuild@0.17.19:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.23.0
- '@esbuild/android-arm': 0.23.0
- '@esbuild/android-arm64': 0.23.0
- '@esbuild/android-x64': 0.23.0
- '@esbuild/darwin-arm64': 0.23.0
- '@esbuild/darwin-x64': 0.23.0
- '@esbuild/freebsd-arm64': 0.23.0
- '@esbuild/freebsd-x64': 0.23.0
- '@esbuild/linux-arm': 0.23.0
- '@esbuild/linux-arm64': 0.23.0
- '@esbuild/linux-ia32': 0.23.0
- '@esbuild/linux-loong64': 0.23.0
- '@esbuild/linux-mips64el': 0.23.0
- '@esbuild/linux-ppc64': 0.23.0
- '@esbuild/linux-riscv64': 0.23.0
- '@esbuild/linux-s390x': 0.23.0
- '@esbuild/linux-x64': 0.23.0
- '@esbuild/netbsd-x64': 0.23.0
- '@esbuild/openbsd-arm64': 0.23.0
- '@esbuild/openbsd-x64': 0.23.0
- '@esbuild/sunos-x64': 0.23.0
- '@esbuild/win32-arm64': 0.23.0
- '@esbuild/win32-ia32': 0.23.0
- '@esbuild/win32-x64': 0.23.0
- optional: true
+ '@esbuild/android-arm': 0.17.19
+ '@esbuild/android-arm64': 0.17.19
+ '@esbuild/android-x64': 0.17.19
+ '@esbuild/darwin-arm64': 0.17.19
+ '@esbuild/darwin-x64': 0.17.19
+ '@esbuild/freebsd-arm64': 0.17.19
+ '@esbuild/freebsd-x64': 0.17.19
+ '@esbuild/linux-arm': 0.17.19
+ '@esbuild/linux-arm64': 0.17.19
+ '@esbuild/linux-ia32': 0.17.19
+ '@esbuild/linux-loong64': 0.17.19
+ '@esbuild/linux-mips64el': 0.17.19
+ '@esbuild/linux-ppc64': 0.17.19
+ '@esbuild/linux-riscv64': 0.17.19
+ '@esbuild/linux-s390x': 0.17.19
+ '@esbuild/linux-x64': 0.17.19
+ '@esbuild/netbsd-x64': 0.17.19
+ '@esbuild/openbsd-x64': 0.17.19
+ '@esbuild/sunos-x64': 0.17.19
+ '@esbuild/win32-arm64': 0.17.19
+ '@esbuild/win32-ia32': 0.17.19
+ '@esbuild/win32-x64': 0.17.19
esbuild@0.24.0:
optionalDependencies:
@@ -18593,6 +20397,35 @@ snapshots:
'@esbuild/win32-arm64': 0.24.0
'@esbuild/win32-ia32': 0.24.0
'@esbuild/win32-x64': 0.24.0
+ optional: true
+
+ esbuild@0.25.5:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.25.5
+ '@esbuild/android-arm': 0.25.5
+ '@esbuild/android-arm64': 0.25.5
+ '@esbuild/android-x64': 0.25.5
+ '@esbuild/darwin-arm64': 0.25.5
+ '@esbuild/darwin-x64': 0.25.5
+ '@esbuild/freebsd-arm64': 0.25.5
+ '@esbuild/freebsd-x64': 0.25.5
+ '@esbuild/linux-arm': 0.25.5
+ '@esbuild/linux-arm64': 0.25.5
+ '@esbuild/linux-ia32': 0.25.5
+ '@esbuild/linux-loong64': 0.25.5
+ '@esbuild/linux-mips64el': 0.25.5
+ '@esbuild/linux-ppc64': 0.25.5
+ '@esbuild/linux-riscv64': 0.25.5
+ '@esbuild/linux-s390x': 0.25.5
+ '@esbuild/linux-x64': 0.25.5
+ '@esbuild/netbsd-arm64': 0.25.5
+ '@esbuild/netbsd-x64': 0.25.5
+ '@esbuild/openbsd-arm64': 0.25.5
+ '@esbuild/openbsd-x64': 0.25.5
+ '@esbuild/sunos-x64': 0.25.5
+ '@esbuild/win32-arm64': 0.25.5
+ '@esbuild/win32-ia32': 0.25.5
+ '@esbuild/win32-x64': 0.25.5
escalade@3.1.2: {}
@@ -18614,7 +20447,7 @@ snapshots:
optionalDependencies:
source-map: 0.6.1
- eslint-config-prettier@9.1.0(eslint@8.57.0):
+ eslint-config-prettier@10.1.5(eslint@8.57.0):
dependencies:
eslint: 8.57.0
@@ -18763,34 +20596,34 @@ snapshots:
exponential-backoff@3.1.1: {}
- express@4.19.2:
+ express@4.21.2:
dependencies:
accepts: 1.3.8
array-flatten: 1.1.1
- body-parser: 1.20.2
+ body-parser: 1.20.3
content-disposition: 0.5.4
content-type: 1.0.5
- cookie: 0.6.0
+ cookie: 0.7.1
cookie-signature: 1.0.6
debug: 2.6.9
depd: 2.0.0
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
etag: 1.8.1
- finalhandler: 1.2.0
+ finalhandler: 1.3.1
fresh: 0.5.2
http-errors: 2.0.0
- merge-descriptors: 1.0.1
+ merge-descriptors: 1.0.3
methods: 1.1.2
on-finished: 2.4.1
parseurl: 1.3.3
- path-to-regexp: 0.1.7
+ path-to-regexp: 0.1.12
proxy-addr: 2.0.7
- qs: 6.11.0
+ qs: 6.13.0
range-parser: 1.2.1
safe-buffer: 5.2.1
- send: 0.18.0
- serve-static: 1.15.0
+ send: 0.19.0
+ serve-static: 1.16.2
setprototypeof: 1.2.0
statuses: 2.0.1
type-is: 1.6.18
@@ -18821,21 +20654,21 @@ snapshots:
fast-deep-equal@3.1.3: {}
- fast-glob@3.2.7:
+ fast-glob@3.3.2:
dependencies:
'@nodelib/fs.stat': 2.0.5
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.8
+ micromatch: 4.0.7
- fast-glob@3.3.2:
+ fast-glob@3.3.3:
dependencies:
'@nodelib/fs.stat': 2.0.5
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.7
+ micromatch: 4.0.8
fast-json-stable-stringify@2.1.0: {}
@@ -18859,6 +20692,10 @@ snapshots:
dependencies:
pend: 1.2.0
+ fdir@6.4.6(picomatch@4.0.2):
+ optionalDependencies:
+ picomatch: 4.0.2
+
figures@3.2.0:
dependencies:
escape-string-regexp: 1.0.5
@@ -18875,10 +20712,10 @@ snapshots:
dependencies:
to-regex-range: 5.0.1
- finalhandler@1.2.0:
+ finalhandler@1.3.1:
dependencies:
debug: 2.6.9
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
on-finished: 2.4.1
parseurl: 1.3.3
@@ -18887,17 +20724,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- find-cache-dir@3.3.2:
- dependencies:
- commondir: 1.0.1
- make-dir: 3.1.0
- pkg-dir: 4.2.0
-
find-cache-dir@4.0.0:
dependencies:
common-path-prefix: 3.0.0
pkg-dir: 7.0.0
+ find-cache-directory@6.0.0:
+ dependencies:
+ common-path-prefix: 3.0.0
+ pkg-dir: 8.0.0
+
find-file-up@2.0.1:
dependencies:
resolve-dir: 1.0.1
@@ -18906,6 +20742,8 @@ snapshots:
dependencies:
find-file-up: 2.0.1
+ find-up-simple@1.0.1: {}
+
find-up@4.1.0:
dependencies:
locate-path: 5.0.0
@@ -18942,9 +20780,9 @@ snapshots:
forever-agent@0.6.1: {}
- fork-ts-checker-webpack-plugin@7.2.13(typescript@5.6.3)(webpack@5.94.0):
+ fork-ts-checker-webpack-plugin@7.2.13(typescript@5.8.3)(webpack@5.99.9):
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.26.2
chalk: 4.1.2
chokidar: 3.6.0
cosmiconfig: 7.1.0
@@ -18954,16 +20792,10 @@ snapshots:
minimatch: 3.1.2
node-abort-controller: 3.1.1
schema-utils: 3.3.0
- semver: 7.6.3
+ semver: 7.7.2
tapable: 2.2.1
- typescript: 5.6.3
- webpack: 5.94.0
-
- form-data@2.3.3:
- dependencies:
- asynckit: 0.4.0
- combined-stream: 1.0.8
- mime-types: 2.1.35
+ typescript: 5.8.3
+ webpack: 5.99.9
form-data@4.0.0:
dependencies:
@@ -19033,8 +20865,26 @@ snapshots:
has-symbols: 1.0.3
hasown: 2.0.2
+ get-intrinsic@1.3.0:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
+ function-bind: 1.1.2
+ get-proto: 1.0.1
+ gopd: 1.2.0
+ has-symbols: 1.1.0
+ hasown: 2.0.2
+ math-intrinsics: 1.1.0
+
get-package-type@0.1.0: {}
+ get-proto@1.0.1:
+ dependencies:
+ dunder-proto: 1.0.1
+ es-object-atoms: 1.1.1
+
get-stream@5.2.0:
dependencies:
pump: 3.0.0
@@ -19121,19 +20971,12 @@ snapshots:
merge2: 1.4.1
slash: 4.0.0
- globby@14.0.2:
- dependencies:
- '@sindresorhus/merge-streams': 2.3.0
- fast-glob: 3.3.2
- ignore: 5.3.1
- path-type: 5.0.0
- slash: 5.1.0
- unicorn-magic: 0.1.0
-
gopd@1.0.1:
dependencies:
get-intrinsic: 1.2.4
+ gopd@1.2.0: {}
+
graceful-fs@4.2.11: {}
graphemer@1.4.0: {}
@@ -19154,10 +20997,17 @@ snapshots:
has-symbols@1.0.3: {}
+ has-symbols@1.1.0: {}
+
has-tostringtag@1.0.2:
dependencies:
has-symbols: 1.0.3
+ hasha@5.2.2:
+ dependencies:
+ is-stream: 2.0.1
+ type-fest: 0.8.1
+
hasown@2.0.2:
dependencies:
function-bind: 1.1.2
@@ -19187,16 +21037,16 @@ snapshots:
dependencies:
whatwg-encoding: 2.0.0
- html-entities@2.5.2: {}
+ html-entities@2.6.0: {}
html-escaper@2.0.2: {}
- htmlparser2@9.1.0:
+ htmlparser2@10.0.0:
dependencies:
domelementtype: 2.3.0
domhandler: 5.0.3
- domutils: 3.1.0
- entities: 4.5.0
+ domutils: 3.2.2
+ entities: 6.0.1
http-assert@1.5.0:
dependencies:
@@ -19242,12 +21092,12 @@ snapshots:
http-proxy-agent@7.0.2:
dependencies:
- agent-base: 7.1.1
- debug: 4.3.6(supports-color@8.1.1)
+ agent-base: 7.1.3
+ debug: 4.4.1
transitivePeerDependencies:
- supports-color
- http-proxy-middleware@2.0.6(@types/express@4.17.21):
+ http-proxy-middleware@2.0.9(@types/express@4.17.21):
dependencies:
'@types/http-proxy': 1.17.15
http-proxy: 1.18.1(debug@4.3.6)
@@ -19270,6 +21120,17 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ http-proxy-middleware@3.0.5:
+ dependencies:
+ '@types/http-proxy': 1.17.15
+ debug: 4.3.6(supports-color@8.1.1)
+ http-proxy: 1.18.1(debug@4.3.6)
+ is-glob: 4.0.3
+ is-plain-object: 5.0.0
+ micromatch: 4.0.8
+ transitivePeerDependencies:
+ - supports-color
+
http-proxy@1.18.1(debug@4.3.6):
dependencies:
eventemitter3: 4.0.7
@@ -19297,7 +21158,7 @@ snapshots:
- debug
- supports-color
- http-signature@1.3.6:
+ http-signature@1.4.0:
dependencies:
assert-plus: 1.0.0
jsprim: 2.0.2
@@ -19310,9 +21171,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- https-proxy-agent@7.0.5:
+ https-proxy-agent@7.0.6:
dependencies:
- agent-base: 7.1.1
+ agent-base: 7.1.3
debug: 4.3.6(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -19335,6 +21196,10 @@ snapshots:
dependencies:
postcss: 8.4.49
+ icss-utils@5.1.0(postcss@8.5.3):
+ dependencies:
+ postcss: 8.5.3
+
identity-obj-proxy@3.0.0:
dependencies:
harmony-reflect: 1.6.2
@@ -19350,8 +21215,6 @@ snapshots:
image-size@0.5.5:
optional: true
- immutable@4.3.7: {}
-
immutable@5.0.3: {}
import-fresh@3.3.0:
@@ -19385,7 +21248,7 @@ snapshots:
injection-js@2.4.0:
dependencies:
- tslib: 2.6.3
+ tslib: 2.8.1
ip-address@9.0.5:
dependencies:
@@ -19402,11 +21265,11 @@ snapshots:
dependencies:
binary-extensions: 2.3.0
- is-ci@3.0.1:
+ is-core-module@2.15.0:
dependencies:
- ci-info: 3.9.0
+ hasown: 2.0.2
- is-core-module@2.15.0:
+ is-core-module@2.16.1:
dependencies:
hasown: 2.0.2
@@ -19445,6 +21308,8 @@ snapshots:
is-interactive@1.0.0: {}
+ is-interactive@2.0.0: {}
+
is-network-error@1.1.0: {}
is-number@7.0.0: {}
@@ -19467,6 +21332,10 @@ snapshots:
is-unicode-supported@0.1.0: {}
+ is-unicode-supported@1.3.0: {}
+
+ is-unicode-supported@2.1.0: {}
+
is-what@3.14.1: {}
is-windows@1.0.2: {}
@@ -19487,8 +21356,6 @@ snapshots:
isobject@3.0.1: {}
- isomorphic-rslog@0.0.6: {}
-
isomorphic-ws@5.0.0(ws@8.18.0):
dependencies:
ws: 8.18.0
@@ -19555,7 +21422,7 @@ snapshots:
jest-util: 29.7.0
p-limit: 3.1.0
- jest-circus@29.7.0:
+ jest-circus@29.7.0(babel-plugin-macros@3.1.0):
dependencies:
'@jest/environment': 29.7.0
'@jest/expect': 29.7.0
@@ -19564,7 +21431,7 @@ snapshots:
'@types/node': 20.14.15
chalk: 4.1.2
co: 4.6.0
- dedent: 1.5.3
+ dedent: 1.5.3(babel-plugin-macros@3.1.0)
is-generator-fn: 2.1.0
jest-each: 29.7.0
jest-matcher-utils: 29.7.0
@@ -19581,16 +21448,16 @@ snapshots:
- babel-plugin-macros
- supports-color
- jest-cli@29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3)):
+ jest-cli@29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3)):
dependencies:
- '@jest/core': 29.7.0(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3))
+ '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3))
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3))
+ create-jest: 29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3))
exit: 0.1.2
import-local: 3.2.0
- jest-config: 29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3))
+ jest-config: 29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3))
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -19600,7 +21467,7 @@ snapshots:
- supports-color
- ts-node
- jest-config@29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3)):
+ jest-config@29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3)):
dependencies:
'@babel/core': 7.25.2
'@jest/test-sequencer': 29.7.0
@@ -19611,7 +21478,7 @@ snapshots:
deepmerge: 4.3.1
glob: 7.2.3
graceful-fs: 4.2.11
- jest-circus: 29.7.0
+ jest-circus: 29.7.0(babel-plugin-macros@3.1.0)
jest-environment-node: 29.7.0
jest-get-type: 29.6.3
jest-regex-util: 29.6.3
@@ -19626,7 +21493,7 @@ snapshots:
strip-json-comments: 3.1.1
optionalDependencies:
'@types/node': 20.14.15
- ts-node: 10.9.1(@types/node@20.14.15)(typescript@5.6.3)
+ ts-node: 10.9.1(@types/node@20.14.15)(typescript@5.8.3)
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -19730,21 +21597,22 @@ snapshots:
optionalDependencies:
jest-resolve: 29.7.0
- jest-preset-angular@14.4.2(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser-dynamic@19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))))(@babel/core@7.25.2)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.2))(jest@29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3)))(typescript@5.6.3):
+ jest-preset-angular@14.6.0(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(@angular/platform-browser-dynamic@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/compiler@20.0.6)(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(@angular/platform-browser@20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))))(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3)))(jsdom@20.0.3)(typescript@5.8.3):
dependencies:
- '@angular/compiler-cli': 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3)
- '@angular/core': 19.0.3(rxjs@7.8.1)(zone.js@0.14.10)
- '@angular/platform-browser-dynamic': 19.0.3(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(@angular/platform-browser@19.0.3(@angular/animations@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(@angular/common@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10))(rxjs@7.8.1))(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))
+ '@angular/compiler-cli': 20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3)
+ '@angular/core': 20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)
+ '@angular/platform-browser-dynamic': 20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/compiler@20.0.6)(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(@angular/platform-browser@20.0.6(@angular/animations@20.0.6(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))(@angular/common@20.0.6(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1))(rxjs@7.8.1))(@angular/core@20.0.6(@angular/compiler@20.0.6)(rxjs@7.8.1)))
bs-logger: 0.2.6
- esbuild-wasm: 0.23.0
- jest: 29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3))
+ esbuild-wasm: 0.24.0
+ jest: 29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3))
jest-environment-jsdom: 29.7.0
jest-util: 29.7.0
pretty-format: 29.7.0
- ts-jest: 29.2.4(@babel/core@7.25.2)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.2))(esbuild@0.23.0)(jest@29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3)))(typescript@5.6.3)
- typescript: 5.6.3
+ ts-jest: 29.4.0(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(esbuild@0.24.0)(jest-util@29.7.0)(jest@29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3)))(typescript@5.8.3)
+ typescript: 5.8.3
optionalDependencies:
- esbuild: 0.23.0
+ esbuild: 0.24.0
+ jsdom: 20.0.3
transitivePeerDependencies:
- '@babel/core'
- '@jest/transform'
@@ -19850,7 +21718,7 @@ snapshots:
jest-util: 29.7.0
natural-compare: 1.4.0
pretty-format: 29.7.0
- semver: 7.6.3
+ semver: 7.7.2
transitivePeerDependencies:
- supports-color
@@ -19896,12 +21764,12 @@ snapshots:
merge-stream: 2.0.0
supports-color: 8.1.1
- jest@29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3)):
+ jest@29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3)):
dependencies:
- '@jest/core': 29.7.0(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3))
+ '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3))
'@jest/types': 29.6.3
import-local: 3.2.0
- jest-cli: 29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3))
+ jest-cli: 29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3))
transitivePeerDependencies:
- '@types/node'
- babel-plugin-macros
@@ -19958,8 +21826,6 @@ snapshots:
- supports-color
- utf-8-validate
- jsesc@0.5.0: {}
-
jsesc@2.5.2: {}
jsesc@3.0.2: {}
@@ -19984,7 +21850,7 @@ snapshots:
jsonc-eslint-parser@2.4.0:
dependencies:
- acorn: 8.12.1
+ acorn: 8.14.0
eslint-visitor-keys: 3.4.3
espree: 9.6.1
semver: 7.6.3
@@ -20037,7 +21903,7 @@ snapshots:
co: 4.6.0
koa-compose: 4.1.0
- koa@2.15.3:
+ koa@2.16.1:
dependencies:
accepts: 1.3.8
cache-content-type: 1.0.1
@@ -20072,24 +21938,30 @@ snapshots:
lazy-ass@1.6.0: {}
- less-loader@11.1.0(less@4.1.3)(webpack@5.94.0):
+ less-loader@11.1.0(less@4.1.3)(webpack@5.96.1):
dependencies:
klona: 2.0.6
less: 4.1.3
- webpack: 5.94.0
+ webpack: 5.96.1
- less-loader@12.2.0(@rspack/core@1.1.5)(less@4.2.0)(webpack@5.96.1(esbuild@0.24.0)):
+ less-loader@11.1.0(less@4.1.3)(webpack@5.99.9):
dependencies:
- less: 4.2.0
+ klona: 2.0.6
+ less: 4.1.3
+ webpack: 5.99.9
+
+ less-loader@12.3.0(@rspack/core@1.4.4(@swc/helpers@0.5.17))(less@4.3.0)(webpack@5.99.8(esbuild@0.25.5)):
+ dependencies:
+ less: 4.3.0
optionalDependencies:
- '@rspack/core': 1.1.5
- webpack: 5.96.1(esbuild@0.24.0)
+ '@rspack/core': 1.4.4(@swc/helpers@0.5.17)
+ webpack: 5.99.8(esbuild@0.25.5)
less@4.1.3:
dependencies:
copy-anything: 2.0.6
parse-node-version: 1.0.1
- tslib: 2.6.3
+ tslib: 2.8.1
optionalDependencies:
errno: 0.1.8
graceful-fs: 4.2.11
@@ -20113,6 +21985,20 @@ snapshots:
needle: 3.3.1
source-map: 0.6.1
+ less@4.3.0:
+ 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:
@@ -20120,17 +22006,23 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
- license-webpack-plugin@4.0.2(webpack@5.94.0):
+ license-webpack-plugin@4.0.2(webpack@5.96.1):
+ dependencies:
+ webpack-sources: 3.2.3
+ optionalDependencies:
+ webpack: 5.96.1
+
+ license-webpack-plugin@4.0.2(webpack@5.99.8(esbuild@0.25.5)):
dependencies:
webpack-sources: 3.2.3
optionalDependencies:
- webpack: 5.94.0
+ webpack: 5.99.8(esbuild@0.25.5)
- license-webpack-plugin@4.0.2(webpack@5.96.1(esbuild@0.24.0)):
+ license-webpack-plugin@4.0.2(webpack@5.99.9):
dependencies:
webpack-sources: 3.2.3
optionalDependencies:
- webpack: 5.96.1(esbuild@0.24.0)
+ webpack: 5.99.9
lilconfig@3.1.2: {}
@@ -20151,7 +22043,7 @@ snapshots:
optionalDependencies:
enquirer: 2.4.1
- listr2@8.2.5:
+ listr2@8.3.3:
dependencies:
cli-truncate: 4.0.0
colorette: 2.0.20
@@ -20160,7 +22052,7 @@ snapshots:
rfdc: 1.4.1
wrap-ansi: 9.0.0
- lmdb@3.1.5:
+ lmdb@3.3.0:
dependencies:
msgpackr: 1.11.2
node-addon-api: 6.1.0
@@ -20168,12 +22060,13 @@ snapshots:
ordered-binary: 1.5.3
weak-lru-cache: 1.2.2
optionalDependencies:
- '@lmdb/lmdb-darwin-arm64': 3.1.5
- '@lmdb/lmdb-darwin-x64': 3.1.5
- '@lmdb/lmdb-linux-arm': 3.1.5
- '@lmdb/lmdb-linux-arm64': 3.1.5
- '@lmdb/lmdb-linux-x64': 3.1.5
- '@lmdb/lmdb-win32-x64': 3.1.5
+ '@lmdb/lmdb-darwin-arm64': 3.3.0
+ '@lmdb/lmdb-darwin-x64': 3.3.0
+ '@lmdb/lmdb-linux-arm': 3.3.0
+ '@lmdb/lmdb-linux-arm64': 3.3.0
+ '@lmdb/lmdb-linux-x64': 3.3.0
+ '@lmdb/lmdb-win32-arm64': 3.3.0
+ '@lmdb/lmdb-win32-x64': 3.3.0
optional: true
loader-runner@4.3.0: {}
@@ -20217,6 +22110,11 @@ snapshots:
chalk: 4.1.2
is-unicode-supported: 0.1.0
+ log-symbols@6.0.0:
+ dependencies:
+ chalk: 5.4.1
+ is-unicode-supported: 1.3.0
+
log-update@4.0.0:
dependencies:
ansi-escapes: 4.3.2
@@ -20256,11 +22154,11 @@ snapshots:
luxon@3.5.0: {}
- magic-string@0.30.11:
+ magic-string@0.30.12:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
- magic-string@0.30.12:
+ magic-string@0.30.17:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
@@ -20276,7 +22174,7 @@ snapshots:
make-dir@4.0.0:
dependencies:
- semver: 7.6.3
+ semver: 7.7.2
make-error@1.3.6: {}
@@ -20300,6 +22198,8 @@ snapshots:
dependencies:
tmpl: 1.0.5
+ math-intrinsics@1.1.0: {}
+
mdn-data@2.0.28: {}
mdn-data@2.0.30: {}
@@ -20317,7 +22217,14 @@ snapshots:
tree-dump: 1.0.2(tslib@2.8.1)
tslib: 2.8.1
- merge-descriptors@1.0.1: {}
+ memfs@4.17.2:
+ dependencies:
+ '@jsonjoy.com/json-pack': 1.1.0(tslib@2.8.1)
+ '@jsonjoy.com/util': 1.3.0(tslib@2.8.1)
+ tree-dump: 1.0.2(tslib@2.8.1)
+ tslib: 2.8.1
+
+ merge-descriptors@1.0.3: {}
merge-stream@2.0.0: {}
@@ -20351,16 +22258,16 @@ snapshots:
mimic-function@5.0.1: {}
- mini-css-extract-plugin@2.4.7(webpack@5.94.0):
+ mini-css-extract-plugin@2.4.7(webpack@5.99.9):
dependencies:
schema-utils: 4.2.0
- webpack: 5.94.0
+ webpack: 5.99.9
- mini-css-extract-plugin@2.9.2(webpack@5.96.1(esbuild@0.24.0)):
+ mini-css-extract-plugin@2.9.2(webpack@5.99.8(esbuild@0.25.5)):
dependencies:
schema-utils: 4.2.0
tapable: 2.2.1
- webpack: 5.96.1(esbuild@0.24.0)
+ webpack: 5.99.8(esbuild@0.25.5)
minimalistic-assert@1.0.1: {}
@@ -20436,7 +22343,7 @@ snapshots:
mkdirp@3.0.1: {}
- mrmime@2.0.0: {}
+ mrmime@2.0.1: {}
ms@2.0.0: {}
@@ -20470,6 +22377,8 @@ snapshots:
mute-stream@2.0.0: {}
+ nanoid@3.3.11: {}
+
nanoid@3.3.7: {}
natural-compare@1.4.0: {}
@@ -20486,45 +22395,37 @@ snapshots:
neo-async@2.6.2: {}
- ng-packagr@19.0.1(@angular/compiler-cli@19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3))(tslib@2.6.3)(typescript@5.6.3):
+ ng-packagr@20.0.1(@angular/compiler-cli@20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3))(tslib@2.6.3)(typescript@5.8.3):
dependencies:
- '@angular/compiler-cli': 19.0.3(@angular/compiler@19.0.3(@angular/core@19.0.3(rxjs@7.8.1)(zone.js@0.14.10)))(typescript@5.6.3)
+ '@ampproject/remapping': 2.3.0
+ '@angular/compiler-cli': 20.0.6(@angular/compiler@20.0.6)(typescript@5.8.3)
'@rollup/plugin-json': 6.1.0(rollup@4.28.1)
'@rollup/wasm-node': 4.28.1
ajv: 8.17.1
ansi-colors: 4.1.3
- browserslist: 4.23.3
+ browserslist: 4.24.2
chokidar: 4.0.1
- commander: 12.1.0
- convert-source-map: 2.0.0
+ commander: 14.0.0
dependency-graph: 1.0.0
- esbuild: 0.24.0
- fast-glob: 3.3.2
- find-cache-dir: 3.3.2
+ esbuild: 0.25.5
+ find-cache-directory: 6.0.0
injection-js: 2.4.0
jsonc-parser: 3.3.1
less: 4.2.0
- ora: 5.4.1
- piscina: 4.8.0
+ ora: 8.2.0
+ piscina: 5.1.2
postcss: 8.4.49
+ rollup-plugin-dts: 6.2.1(rollup@4.28.1)(typescript@5.8.3)
rxjs: 7.8.1
sass: 1.82.0
+ tinyglobby: 0.2.14
tslib: 2.6.3
- typescript: 5.6.3
+ typescript: 5.8.3
optionalDependencies:
rollup: 4.28.1
- nice-napi@1.0.2:
- dependencies:
- node-addon-api: 3.2.1
- node-gyp-build: 4.8.1
- optional: true
-
node-abort-controller@3.1.1: {}
- node-addon-api@3.2.1:
- optional: true
-
node-addon-api@6.1.0:
optional: true
@@ -20544,9 +22445,6 @@ snapshots:
detect-libc: 2.0.3
optional: true
- node-gyp-build@4.8.1:
- optional: true
-
node-gyp@11.0.0:
dependencies:
env-paths: 2.2.1
@@ -20556,7 +22454,7 @@ snapshots:
make-fetch-happen: 14.0.3
nopt: 8.0.0
proc-log: 5.0.0
- semver: 7.6.3
+ semver: 7.7.2
tar: 7.4.3
which: 5.0.0
transitivePeerDependencies:
@@ -20568,6 +22466,8 @@ snapshots:
node-releases@2.0.18: {}
+ node-releases@2.0.19: {}
+
node-schedule@2.1.1:
dependencies:
cron-parser: 4.9.0
@@ -20581,7 +22481,7 @@ snapshots:
normalize-package-data@7.0.0:
dependencies:
hosted-git-info: 8.0.2
- semver: 7.6.3
+ semver: 7.7.2
validate-npm-package-license: 3.0.4
normalize-path@3.0.0: {}
@@ -20594,7 +22494,7 @@ snapshots:
npm-install-checks@7.1.1:
dependencies:
- semver: 7.6.3
+ semver: 7.7.2
npm-normalize-package-bin@4.0.0: {}
@@ -20605,14 +22505,14 @@ snapshots:
semver: 7.6.3
validate-npm-package-name: 5.0.1
- npm-package-arg@12.0.0:
+ npm-package-arg@12.0.2:
dependencies:
hosted-git-info: 8.0.2
proc-log: 5.0.0
- semver: 7.6.3
+ semver: 7.7.2
validate-npm-package-name: 6.0.0
- npm-packlist@9.0.0:
+ npm-packlist@10.0.0:
dependencies:
ignore-walk: 7.0.0
@@ -20620,8 +22520,8 @@ snapshots:
dependencies:
npm-install-checks: 7.1.1
npm-normalize-package-bin: 4.0.0
- npm-package-arg: 12.0.0
- semver: 7.6.3
+ npm-package-arg: 12.0.2
+ semver: 7.7.2
npm-registry-fetch@18.0.2:
dependencies:
@@ -20631,7 +22531,7 @@ snapshots:
minipass: 7.1.2
minipass-fetch: 4.0.0
minizlib: 3.0.1
- npm-package-arg: 12.0.0
+ npm-package-arg: 12.0.2
proc-log: 5.0.0
transitivePeerDependencies:
- supports-color
@@ -20646,13 +22546,13 @@ snapshots:
nwsapi@2.2.12: {}
- nx@20.2.1:
+ nx@21.2.2:
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.7.8
+ axios: 1.10.0
chalk: 4.1.2
cli-cursor: 3.1.0
cli-spinners: 2.6.1
@@ -20672,31 +22572,35 @@ snapshots:
npm-run-path: 4.0.1
open: 8.4.2
ora: 5.3.0
+ resolve.exports: 2.0.3
semver: 7.6.3
string-width: 4.2.3
tar-stream: 2.2.0
tmp: 0.2.3
+ tree-kill: 1.2.2
tsconfig-paths: 4.2.0
- tslib: 2.6.3
+ tslib: 2.8.1
yaml: 2.6.1
yargs: 17.7.2
yargs-parser: 21.1.1
optionalDependencies:
- '@nx/nx-darwin-arm64': 20.2.1
- '@nx/nx-darwin-x64': 20.2.1
- '@nx/nx-freebsd-x64': 20.2.1
- '@nx/nx-linux-arm-gnueabihf': 20.2.1
- '@nx/nx-linux-arm64-gnu': 20.2.1
- '@nx/nx-linux-arm64-musl': 20.2.1
- '@nx/nx-linux-x64-gnu': 20.2.1
- '@nx/nx-linux-x64-musl': 20.2.1
- '@nx/nx-win32-arm64-msvc': 20.2.1
- '@nx/nx-win32-x64-msvc': 20.2.1
+ '@nx/nx-darwin-arm64': 21.2.2
+ '@nx/nx-darwin-x64': 21.2.2
+ '@nx/nx-freebsd-x64': 21.2.2
+ '@nx/nx-linux-arm-gnueabihf': 21.2.2
+ '@nx/nx-linux-arm64-gnu': 21.2.2
+ '@nx/nx-linux-arm64-musl': 21.2.2
+ '@nx/nx-linux-x64-gnu': 21.2.2
+ '@nx/nx-linux-x64-musl': 21.2.2
+ '@nx/nx-win32-arm64-msvc': 21.2.2
+ '@nx/nx-win32-x64-msvc': 21.2.2
transitivePeerDependencies:
- debug
object-inspect@1.13.2: {}
+ object-inspect@1.13.4: {}
+
obuf@1.1.2: {}
on-finished@2.4.1:
@@ -20726,6 +22630,13 @@ snapshots:
is-inside-container: 1.0.0
is-wsl: 3.1.0
+ open@10.1.2:
+ dependencies:
+ default-browser: 5.2.1
+ define-lazy-prop: 3.0.0
+ is-inside-container: 1.0.0
+ is-wsl: 3.1.0
+
open@8.4.2:
dependencies:
define-lazy-prop: 2.0.0
@@ -20754,17 +22665,17 @@ snapshots:
strip-ansi: 6.0.1
wcwidth: 1.0.1
- ora@5.4.1:
+ ora@8.2.0:
dependencies:
- bl: 4.1.0
- chalk: 4.1.2
- cli-cursor: 3.1.0
+ chalk: 5.4.1
+ cli-cursor: 5.0.0
cli-spinners: 2.9.2
- is-interactive: 1.0.0
- is-unicode-supported: 0.1.0
- log-symbols: 4.1.0
- strip-ansi: 6.0.1
- wcwidth: 1.0.1
+ is-interactive: 2.0.0
+ is-unicode-supported: 2.1.0
+ log-symbols: 6.0.0
+ stdin-discarder: 0.2.2
+ string-width: 7.2.0
+ strip-ansi: 7.1.0
ordered-binary@1.5.3:
optional: true
@@ -20813,7 +22724,7 @@ snapshots:
package-json-from-dist@1.0.0: {}
- pacote@20.0.0:
+ pacote@21.0.0:
dependencies:
'@npmcli/git': 6.0.1
'@npmcli/installed-package-contents': 3.0.0
@@ -20823,8 +22734,8 @@ snapshots:
cacache: 19.0.1
fs-minipass: 3.0.3
minipass: 7.1.2
- npm-package-arg: 12.0.0
- npm-packlist: 9.0.0
+ npm-package-arg: 12.0.2
+ npm-packlist: 10.0.0
npm-pick-manifest: 10.0.0
npm-registry-fetch: 18.0.2
proc-log: 5.0.0
@@ -20851,9 +22762,9 @@ snapshots:
parse-passwd@1.0.0: {}
- parse5-html-rewriting-stream@7.0.0:
+ parse5-html-rewriting-stream@7.1.0:
dependencies:
- entities: 4.5.0
+ entities: 6.0.1
parse5: 7.1.2
parse5-sax-parser: 7.0.0
@@ -20884,12 +22795,10 @@ snapshots:
lru-cache: 10.4.3
minipass: 7.1.2
- path-to-regexp@0.1.7: {}
+ path-to-regexp@0.1.12: {}
path-type@4.0.0: {}
- path-type@5.0.0: {}
-
pend@1.2.0: {}
performance-now@2.1.0: {}
@@ -20909,15 +22818,11 @@ snapshots:
pirates@4.0.6: {}
- piscina@4.6.1:
- optionalDependencies:
- nice-napi: 1.0.2
-
- piscina@4.7.0:
+ piscina@5.1.1:
optionalDependencies:
'@napi-rs/nice': 1.0.1
- piscina@4.8.0:
+ piscina@5.1.2:
optionalDependencies:
'@napi-rs/nice': 1.0.1
@@ -20929,6 +22834,10 @@ snapshots:
dependencies:
find-up: 6.3.0
+ pkg-dir@8.0.0:
+ dependencies:
+ find-up-simple: 1.0.1
+
portfinder@1.0.32:
dependencies:
async: 2.6.4
@@ -20970,7 +22879,7 @@ snapshots:
postcss-colormin@6.1.0(postcss@8.4.49):
dependencies:
- browserslist: 4.23.3
+ browserslist: 4.24.2
caniuse-api: 3.0.0
colord: 2.9.3
postcss: 8.4.49
@@ -20978,7 +22887,7 @@ snapshots:
postcss-convert-values@6.1.0(postcss@8.4.49):
dependencies:
- browserslist: 4.23.3
+ browserslist: 4.24.2
postcss: 8.4.49
postcss-value-parser: 4.2.0
@@ -21076,23 +22985,35 @@ snapshots:
postcss: 8.4.41
postcss-value-parser: 4.2.0
- postcss-loader@6.2.1(postcss@8.4.49)(webpack@5.94.0):
+ postcss-loader@6.2.1(postcss@8.4.49)(webpack@5.99.9):
dependencies:
cosmiconfig: 7.1.0
klona: 2.0.6
postcss: 8.4.49
- semver: 7.6.3
- webpack: 5.94.0
+ semver: 7.7.2
+ webpack: 5.99.9
- postcss-loader@8.1.1(@rspack/core@1.1.5)(postcss@8.4.49)(typescript@5.6.3)(webpack@5.96.1(esbuild@0.24.0)):
+ postcss-loader@8.1.1(@rspack/core@1.4.4(@swc/helpers@0.5.17))(postcss@8.4.49)(typescript@5.8.3)(webpack@5.96.1):
dependencies:
- cosmiconfig: 9.0.0(typescript@5.6.3)
+ cosmiconfig: 9.0.0(typescript@5.8.3)
jiti: 1.21.6
postcss: 8.4.49
- semver: 7.6.3
+ semver: 7.7.2
+ optionalDependencies:
+ '@rspack/core': 1.4.4(@swc/helpers@0.5.17)
+ webpack: 5.96.1
+ transitivePeerDependencies:
+ - typescript
+
+ postcss-loader@8.1.1(@rspack/core@1.4.4(@swc/helpers@0.5.17))(postcss@8.5.3)(typescript@5.8.3)(webpack@5.99.8(esbuild@0.25.5)):
+ dependencies:
+ cosmiconfig: 9.0.0(typescript@5.8.3)
+ jiti: 1.21.6
+ postcss: 8.5.3
+ semver: 7.7.2
optionalDependencies:
- '@rspack/core': 1.1.5
- webpack: 5.96.1(esbuild@0.24.0)
+ '@rspack/core': 1.4.4(@swc/helpers@0.5.17)
+ webpack: 5.99.8(esbuild@0.25.5)
transitivePeerDependencies:
- typescript
@@ -21114,7 +23035,7 @@ snapshots:
postcss-merge-rules@6.1.1(postcss@8.4.49):
dependencies:
- browserslist: 4.23.3
+ browserslist: 4.24.2
caniuse-api: 3.0.0
cssnano-utils: 4.0.2(postcss@8.4.49)
postcss: 8.4.49
@@ -21134,7 +23055,7 @@ snapshots:
postcss-minify-params@6.1.0(postcss@8.4.49):
dependencies:
- browserslist: 4.23.3
+ browserslist: 4.24.2
cssnano-utils: 4.0.2(postcss@8.4.49)
postcss: 8.4.49
postcss-value-parser: 4.2.0
@@ -21148,6 +23069,10 @@ snapshots:
dependencies:
postcss: 8.4.49
+ postcss-modules-extract-imports@3.1.0(postcss@8.5.3):
+ dependencies:
+ postcss: 8.5.3
+
postcss-modules-local-by-default@4.0.5(postcss@8.4.49):
dependencies:
icss-utils: 5.1.0(postcss@8.4.49)
@@ -21155,16 +23080,33 @@ snapshots:
postcss-selector-parser: 6.1.1
postcss-value-parser: 4.2.0
+ postcss-modules-local-by-default@4.0.5(postcss@8.5.3):
+ dependencies:
+ icss-utils: 5.1.0(postcss@8.5.3)
+ postcss: 8.5.3
+ postcss-selector-parser: 6.1.1
+ postcss-value-parser: 4.2.0
+
postcss-modules-scope@3.2.0(postcss@8.4.49):
dependencies:
postcss: 8.4.49
postcss-selector-parser: 6.1.1
+ postcss-modules-scope@3.2.0(postcss@8.5.3):
+ dependencies:
+ postcss: 8.5.3
+ postcss-selector-parser: 6.1.1
+
postcss-modules-values@4.0.0(postcss@8.4.49):
dependencies:
icss-utils: 5.1.0(postcss@8.4.49)
postcss: 8.4.49
+ postcss-modules-values@4.0.0(postcss@8.5.3):
+ dependencies:
+ icss-utils: 5.1.0(postcss@8.5.3)
+ postcss: 8.5.3
+
postcss-nesting@10.2.0(postcss@8.4.41):
dependencies:
'@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.1.1)
@@ -21202,7 +23144,7 @@ snapshots:
postcss-normalize-unicode@6.1.0(postcss@8.4.49):
dependencies:
- browserslist: 4.23.3
+ browserslist: 4.24.2
postcss: 8.4.49
postcss-value-parser: 4.2.0
@@ -21296,7 +23238,7 @@ snapshots:
postcss-reduce-initial@6.1.0(postcss@8.4.49):
dependencies:
- browserslist: 4.23.3
+ browserslist: 4.24.2
caniuse-api: 3.0.0
postcss: 8.4.49
@@ -21352,6 +23294,12 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
+ postcss@8.5.3:
+ dependencies:
+ nanoid: 3.3.11
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+
prelude-ls@1.2.1: {}
prettier@2.8.8: {}
@@ -21407,17 +23355,13 @@ snapshots:
pure-rand@6.1.0: {}
- qs@6.10.4:
- dependencies:
- side-channel: 1.0.6
-
- qs@6.11.0:
+ qs@6.13.0:
dependencies:
side-channel: 1.0.6
- qs@6.13.0:
+ qs@6.14.0:
dependencies:
- side-channel: 1.0.6
+ side-channel: 1.1.0
querystringify@2.2.0: {}
@@ -21446,6 +23390,8 @@ snapshots:
react-is@18.3.1: {}
+ react-refresh@0.17.0: {}
+
react@18.3.1:
dependencies:
loose-envify: 1.4.0
@@ -21478,10 +23424,6 @@ snapshots:
reflect-metadata@0.2.2: {}
- regenerate-unicode-properties@10.1.1:
- dependencies:
- regenerate: 1.4.2
-
regenerate-unicode-properties@10.2.0:
dependencies:
regenerate: 1.4.2
@@ -21496,15 +23438,6 @@ snapshots:
regex-parser@2.3.0: {}
- regexpu-core@5.3.2:
- dependencies:
- '@babel/regjsgen': 0.8.0
- regenerate: 1.4.2
- regenerate-unicode-properties: 10.1.1
- regjsparser: 0.9.1
- unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.1.0
-
regexpu-core@6.2.0:
dependencies:
regenerate: 1.4.2
@@ -21520,10 +23453,6 @@ snapshots:
dependencies:
jsesc: 3.0.2
- regjsparser@0.9.1:
- dependencies:
- jsesc: 0.5.0
-
request-progress@3.0.0:
dependencies:
throttleit: 1.0.1
@@ -21552,13 +23481,19 @@ snapshots:
adjust-sourcemap-loader: 4.0.0
convert-source-map: 1.9.0
loader-utils: 2.0.4
- postcss: 8.4.49
+ postcss: 8.5.3
source-map: 0.6.1
- resolve.exports@1.1.0: {}
-
resolve.exports@2.0.2: {}
+ resolve.exports@2.0.3: {}
+
+ resolve@1.22.10:
+ dependencies:
+ is-core-module: 2.16.1
+ path-parse: 1.0.7
+ supports-preserve-symlinks-flag: 1.0.0
+
resolve@1.22.8:
dependencies:
is-core-module: 2.15.0
@@ -21591,29 +23526,13 @@ snapshots:
dependencies:
glob: 10.4.5
- rollup@4.26.0:
+ rollup-plugin-dts@6.2.1(rollup@4.28.1)(typescript@5.8.3):
dependencies:
- '@types/estree': 1.0.6
+ magic-string: 0.30.17
+ rollup: 4.28.1
+ typescript: 5.8.3
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.26.0
- '@rollup/rollup-android-arm64': 4.26.0
- '@rollup/rollup-darwin-arm64': 4.26.0
- '@rollup/rollup-darwin-x64': 4.26.0
- '@rollup/rollup-freebsd-arm64': 4.26.0
- '@rollup/rollup-freebsd-x64': 4.26.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.26.0
- '@rollup/rollup-linux-arm-musleabihf': 4.26.0
- '@rollup/rollup-linux-arm64-gnu': 4.26.0
- '@rollup/rollup-linux-arm64-musl': 4.26.0
- '@rollup/rollup-linux-powerpc64le-gnu': 4.26.0
- '@rollup/rollup-linux-riscv64-gnu': 4.26.0
- '@rollup/rollup-linux-s390x-gnu': 4.26.0
- '@rollup/rollup-linux-x64-gnu': 4.26.0
- '@rollup/rollup-linux-x64-musl': 4.26.0
- '@rollup/rollup-win32-arm64-msvc': 4.26.0
- '@rollup/rollup-win32-ia32-msvc': 4.26.0
- '@rollup/rollup-win32-x64-msvc': 4.26.0
- fsevents: 2.3.3
+ '@babel/code-frame': 7.26.2
rollup@4.28.1:
dependencies:
@@ -21639,7 +23558,34 @@ snapshots:
'@rollup/rollup-win32-ia32-msvc': 4.28.1
'@rollup/rollup-win32-x64-msvc': 4.28.1
fsevents: 2.3.3
- optional: true
+
+ rollup@4.40.2:
+ dependencies:
+ '@types/estree': 1.0.7
+ 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
+
+ rslog@1.2.9: {}
run-applescript@7.0.0: {}
@@ -21651,35 +23597,128 @@ snapshots:
dependencies:
tslib: 2.6.3
+ rxjs@7.8.2:
+ dependencies:
+ tslib: 2.8.1
+
safe-buffer@5.1.2: {}
safe-buffer@5.2.1: {}
safer-buffer@2.1.2: {}
- sass-loader@12.6.0(sass@1.77.8)(webpack@5.94.0):
+ sass-embedded-android-arm64@1.89.2:
+ optional: true
+
+ sass-embedded-android-arm@1.89.2:
+ optional: true
+
+ sass-embedded-android-riscv64@1.89.2:
+ optional: true
+
+ sass-embedded-android-x64@1.89.2:
+ optional: true
+
+ sass-embedded-darwin-arm64@1.89.2:
+ optional: true
+
+ sass-embedded-darwin-x64@1.89.2:
+ optional: true
+
+ sass-embedded-linux-arm64@1.89.2:
+ optional: true
+
+ sass-embedded-linux-arm@1.89.2:
+ optional: true
+
+ sass-embedded-linux-musl-arm64@1.89.2:
+ optional: true
+
+ sass-embedded-linux-musl-arm@1.89.2:
+ optional: true
+
+ sass-embedded-linux-musl-riscv64@1.89.2:
+ optional: true
+
+ sass-embedded-linux-musl-x64@1.89.2:
+ optional: true
+
+ sass-embedded-linux-riscv64@1.89.2:
+ optional: true
+
+ sass-embedded-linux-x64@1.89.2:
+ optional: true
+
+ sass-embedded-win32-arm64@1.89.2:
+ optional: true
+
+ sass-embedded-win32-x64@1.89.2:
+ optional: true
+
+ sass-embedded@1.89.2:
+ dependencies:
+ '@bufbuild/protobuf': 2.6.0
+ buffer-builder: 0.2.0
+ colorjs.io: 0.5.2
+ immutable: 5.0.3
+ rxjs: 7.8.1
+ supports-color: 8.1.1
+ sync-child-process: 1.0.2
+ varint: 6.0.0
+ optionalDependencies:
+ sass-embedded-android-arm: 1.89.2
+ sass-embedded-android-arm64: 1.89.2
+ sass-embedded-android-riscv64: 1.89.2
+ sass-embedded-android-x64: 1.89.2
+ sass-embedded-darwin-arm64: 1.89.2
+ sass-embedded-darwin-x64: 1.89.2
+ sass-embedded-linux-arm: 1.89.2
+ sass-embedded-linux-arm64: 1.89.2
+ sass-embedded-linux-musl-arm: 1.89.2
+ sass-embedded-linux-musl-arm64: 1.89.2
+ sass-embedded-linux-musl-riscv64: 1.89.2
+ sass-embedded-linux-musl-x64: 1.89.2
+ sass-embedded-linux-riscv64: 1.89.2
+ sass-embedded-linux-x64: 1.89.2
+ 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.17))(sass-embedded@1.89.2)(sass@1.88.0)(webpack@5.99.8(esbuild@0.25.5)):
dependencies:
- klona: 2.0.6
neo-async: 2.6.2
- webpack: 5.94.0
optionalDependencies:
- sass: 1.77.8
+ '@rspack/core': 1.4.4(@swc/helpers@0.5.17)
+ sass: 1.88.0
+ sass-embedded: 1.89.2
+ webpack: 5.99.8(esbuild@0.25.5)
- sass-loader@16.0.3(@rspack/core@1.1.5)(sass@1.80.7)(webpack@5.96.1(esbuild@0.24.0)):
+ sass-loader@16.0.5(@rspack/core@1.4.4(@swc/helpers@0.5.17))(sass-embedded@1.89.2)(sass@1.89.2)(webpack@5.96.1):
dependencies:
neo-async: 2.6.2
optionalDependencies:
- '@rspack/core': 1.1.5
- sass: 1.80.7
- webpack: 5.96.1(esbuild@0.24.0)
+ '@rspack/core': 1.4.4(@swc/helpers@0.5.17)
+ sass: 1.89.2
+ sass-embedded: 1.89.2
+ webpack: 5.96.1
- sass@1.77.8:
+ sass-loader@16.0.5(@rspack/core@1.4.4(@swc/helpers@0.5.17))(sass-embedded@1.89.2)(sass@1.89.2)(webpack@5.99.9):
dependencies:
- chokidar: 3.6.0
- immutable: 4.3.7
+ neo-async: 2.6.2
+ optionalDependencies:
+ '@rspack/core': 1.4.4(@swc/helpers@0.5.17)
+ sass: 1.89.2
+ sass-embedded: 1.89.2
+ webpack: 5.99.9
+
+ sass@1.82.0:
+ dependencies:
+ chokidar: 4.0.1
+ immutable: 5.0.3
source-map-js: 1.2.1
+ optionalDependencies:
+ '@parcel/watcher': 2.5.0
- sass@1.80.7:
+ sass@1.88.0:
dependencies:
chokidar: 4.0.1
immutable: 5.0.3
@@ -21687,7 +23726,7 @@ snapshots:
optionalDependencies:
'@parcel/watcher': 2.5.0
- sass@1.82.0:
+ sass@1.89.2:
dependencies:
chokidar: 4.0.1
immutable: 5.0.3
@@ -21718,6 +23757,13 @@ snapshots:
ajv-formats: 2.1.1(ajv@8.17.1)
ajv-keywords: 5.1.0(ajv@8.17.1)
+ schema-utils@4.3.2:
+ 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)
+
secure-compare@3.0.1: {}
select-hose@2.0.0: {}
@@ -21734,7 +23780,9 @@ snapshots:
semver@7.6.3: {}
- send@0.18.0:
+ semver@7.7.2: {}
+
+ send@0.19.0:
dependencies:
debug: 2.6.9
depd: 2.0.0
@@ -21768,12 +23816,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- serve-static@1.15.0:
+ serve-static@1.16.2:
dependencies:
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
parseurl: 1.3.3
- send: 0.18.0
+ send: 0.19.0
transitivePeerDependencies:
- supports-color
@@ -21802,6 +23850,26 @@ snapshots:
shell-quote@1.8.1: {}
+ side-channel-list@1.0.0:
+ dependencies:
+ es-errors: 1.3.0
+ object-inspect: 1.13.4
+
+ side-channel-map@1.0.1:
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ object-inspect: 1.13.4
+
+ side-channel-weakmap@1.0.2:
+ dependencies:
+ call-bound: 1.0.4
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ object-inspect: 1.13.4
+ side-channel-map: 1.0.1
+
side-channel@1.0.6:
dependencies:
call-bind: 1.0.7
@@ -21809,6 +23877,14 @@ snapshots:
get-intrinsic: 1.2.4
object-inspect: 1.13.2
+ side-channel@1.1.0:
+ dependencies:
+ es-errors: 1.3.0
+ object-inspect: 1.13.4
+ side-channel-list: 1.0.0
+ side-channel-map: 1.0.1
+ side-channel-weakmap: 1.0.2
+
signal-exit@3.0.7: {}
signal-exit@4.1.0: {}
@@ -21830,8 +23906,6 @@ snapshots:
slash@4.0.0: {}
- slash@5.1.0: {}
-
slice-ansi@3.0.0:
dependencies:
ansi-styles: 4.3.0
@@ -21864,8 +23938,8 @@ snapshots:
socks-proxy-agent@8.0.4:
dependencies:
- agent-base: 7.1.1
- debug: 4.3.6(supports-color@8.1.1)
+ agent-base: 7.1.3
+ debug: 4.4.1
socks: 2.8.3
transitivePeerDependencies:
- supports-color
@@ -21881,17 +23955,23 @@ snapshots:
source-map-js@1.2.1: {}
- source-map-loader@5.0.0(webpack@5.94.0):
+ source-map-loader@5.0.0(webpack@5.96.1):
+ dependencies:
+ iconv-lite: 0.6.3
+ source-map-js: 1.2.1
+ webpack: 5.96.1
+
+ source-map-loader@5.0.0(webpack@5.99.8(esbuild@0.25.5)):
dependencies:
iconv-lite: 0.6.3
source-map-js: 1.2.1
- webpack: 5.94.0
+ webpack: 5.99.8(esbuild@0.25.5)
- source-map-loader@5.0.0(webpack@5.96.1(esbuild@0.24.0)):
+ source-map-loader@5.0.0(webpack@5.99.9):
dependencies:
iconv-lite: 0.6.3
source-map-js: 1.2.1
- webpack: 5.96.1(esbuild@0.24.0)
+ webpack: 5.99.9
source-map-support@0.5.13:
dependencies:
@@ -21971,10 +24051,14 @@ snapshots:
dependencies:
escape-string-regexp: 2.0.0
+ stackframe@1.3.4: {}
+
statuses@1.5.0: {}
statuses@2.0.1: {}
+ stdin-discarder@0.2.2: {}
+
streamroller@3.1.5:
dependencies:
date-format: 4.0.14
@@ -22030,22 +24114,26 @@ snapshots:
strip-json-comments@3.1.1: {}
- style-loader@3.3.4(webpack@5.94.0):
+ style-loader@3.3.4(webpack@5.96.1):
+ dependencies:
+ webpack: 5.96.1
+
+ style-loader@3.3.4(webpack@5.99.9):
dependencies:
- webpack: 5.94.0
+ webpack: 5.99.9
stylehacks@6.1.1(postcss@8.4.49):
dependencies:
- browserslist: 4.23.3
+ browserslist: 4.24.2
postcss: 8.4.49
postcss-selector-parser: 6.1.1
- stylus-loader@7.1.3(stylus@0.64.0)(webpack@5.94.0):
+ stylus-loader@7.1.3(stylus@0.64.0)(webpack@5.99.9):
dependencies:
fast-glob: 3.3.2
normalize-path: 3.0.0
stylus: 0.64.0
- webpack: 5.94.0
+ webpack: 5.99.9
stylus@0.64.0:
dependencies:
@@ -22081,10 +24169,14 @@ snapshots:
csso: 5.0.5
picocolors: 1.1.1
- symbol-observable@4.0.0: {}
-
symbol-tree@3.2.4: {}
+ sync-child-process@1.0.2:
+ dependencies:
+ sync-message-port: 1.1.3
+
+ sync-message-port@1.1.3: {}
+
tapable@2.2.1: {}
tar-stream@2.2.0:
@@ -22113,39 +24205,55 @@ snapshots:
mkdirp: 3.0.1
yallist: 5.0.0
- terser-webpack-plugin@5.3.10(esbuild@0.24.0)(webpack@5.96.1(esbuild@0.24.0)):
+ terser-webpack-plugin@5.3.10(webpack@5.96.1):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
terser: 5.36.0
- webpack: 5.96.1(esbuild@0.24.0)
- optionalDependencies:
- esbuild: 0.24.0
+ webpack: 5.96.1
- terser-webpack-plugin@5.3.10(webpack@5.88.0):
+ terser-webpack-plugin@5.3.10(webpack@5.99.9):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
terser: 5.36.0
- webpack: 5.88.0
+ webpack: 5.99.9
- terser-webpack-plugin@5.3.10(webpack@5.94.0):
+ terser-webpack-plugin@5.3.14(esbuild@0.25.5)(webpack@5.99.8(esbuild@0.25.5)):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
- schema-utils: 3.3.0
+ schema-utils: 4.3.2
serialize-javascript: 6.0.2
- terser: 5.36.0
- webpack: 5.94.0
+ terser: 5.39.1
+ webpack: 5.99.8(esbuild@0.25.5)
+ optionalDependencies:
+ esbuild: 0.25.5
+
+ terser-webpack-plugin@5.3.14(webpack@5.99.9):
+ dependencies:
+ '@jridgewell/trace-mapping': 0.3.25
+ jest-worker: 27.5.1
+ schema-utils: 4.3.2
+ serialize-javascript: 6.0.2
+ terser: 5.39.1
+ webpack: 5.99.9
terser@5.36.0:
dependencies:
'@jridgewell/source-map': 0.3.6
- acorn: 8.12.1
+ acorn: 8.14.0
+ commander: 2.20.3
+ source-map-support: 0.5.21
+
+ terser@5.39.1:
+ dependencies:
+ '@jridgewell/source-map': 0.3.6
+ acorn: 8.14.0
commander: 2.20.3
source-map-support: 0.5.21
@@ -22167,6 +24275,22 @@ snapshots:
thunky@1.1.0: {}
+ tinyglobby@0.2.13:
+ dependencies:
+ fdir: 6.4.6(picomatch@4.0.2)
+ picomatch: 4.0.2
+
+ tinyglobby@0.2.14:
+ dependencies:
+ fdir: 6.4.6(picomatch@4.0.2)
+ picomatch: 4.0.2
+
+ tldts-core@6.1.86: {}
+
+ tldts@6.1.86:
+ dependencies:
+ tldts-core: 6.1.86
+
tmp@0.0.33:
dependencies:
os-tmpdir: 1.0.2
@@ -22190,6 +24314,10 @@ snapshots:
universalify: 0.2.0
url-parse: 1.5.10
+ tough-cookie@5.1.2:
+ dependencies:
+ tldts: 6.1.86
+
tr46@0.0.3: {}
tr46@3.0.0:
@@ -22202,41 +24330,78 @@ snapshots:
tree-kill@1.2.2: {}
- ts-api-utils@1.3.0(typescript@5.6.3):
+ 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):
dependencies:
- typescript: 5.6.3
+ typescript: 5.8.3
+
+ ts-checker-rspack-plugin@1.1.4(@rspack/core@1.4.4(@swc/helpers@0.5.17))(typescript@5.8.3):
+ dependencies:
+ '@babel/code-frame': 7.26.2
+ '@rspack/lite-tapable': 1.0.1
+ chokidar: 3.6.0
+ is-glob: 4.0.3
+ memfs: 4.17.2
+ minimatch: 9.0.5
+ picocolors: 1.1.1
+ typescript: 5.8.3
+ optionalDependencies:
+ '@rspack/core': 1.4.4(@swc/helpers@0.5.17)
- ts-jest@29.2.4(@babel/core@7.25.2)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.25.2))(esbuild@0.23.0)(jest@29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3)))(typescript@5.6.3):
+ ts-jest@29.2.4(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(jest@29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3)))(typescript@5.8.3):
dependencies:
bs-logger: 0.2.6
ejs: 3.1.10
fast-json-stable-stringify: 2.1.0
- jest: 29.7.0(@types/node@20.14.15)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3))
+ jest: 29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3))
jest-util: 29.7.0
json5: 2.2.3
lodash.memoize: 4.1.2
make-error: 1.3.6
semver: 7.6.3
- typescript: 5.6.3
+ typescript: 5.8.3
yargs-parser: 21.1.1
optionalDependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.25.2)
- esbuild: 0.23.0
+ babel-jest: 29.7.0(@babel/core@7.26.0)
+
+ ts-jest@29.4.0(@babel/core@7.26.0)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.0))(esbuild@0.24.0)(jest-util@29.7.0)(jest@29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3)))(typescript@5.8.3):
+ dependencies:
+ bs-logger: 0.2.6
+ ejs: 3.1.10
+ fast-json-stable-stringify: 2.1.0
+ jest: 29.7.0(@types/node@20.14.15)(babel-plugin-macros@3.1.0)(ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.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
+ yargs-parser: 21.1.1
+ optionalDependencies:
+ '@babel/core': 7.26.0
+ '@jest/transform': 29.7.0
+ '@jest/types': 29.6.3
+ babel-jest: 29.7.0(@babel/core@7.26.0)
+ esbuild: 0.24.0
+ jest-util: 29.7.0
- ts-loader@9.5.1(typescript@5.6.3)(webpack@5.94.0):
+ ts-loader@9.5.1(typescript@5.8.3)(webpack@5.99.9):
dependencies:
chalk: 4.1.2
enhanced-resolve: 5.17.1
micromatch: 4.0.8
- semver: 7.6.3
+ semver: 7.7.2
source-map: 0.7.4
- typescript: 5.6.3
- webpack: 5.94.0
+ typescript: 5.8.3
+ webpack: 5.99.9
- ts-node@10.9.1(@types/node@20.14.15)(typescript@5.6.3):
+ ts-node@10.9.1(@types/node@20.14.15)(typescript@5.8.3):
dependencies:
'@cspotcode/source-map-support': 0.8.1
'@tsconfig/node10': 1.0.11
@@ -22250,7 +24415,7 @@ snapshots:
create-require: 1.1.1
diff: 4.0.2
make-error: 1.3.6
- typescript: 5.6.3
+ typescript: 5.8.3
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
@@ -22275,7 +24440,7 @@ snapshots:
tuf-js@3.0.1:
dependencies:
'@tufjs/models': 3.0.1
- debug: 4.3.6(supports-color@8.1.1)
+ debug: 4.4.1
make-fetch-happen: 14.0.3
transitivePeerDependencies:
- supports-color
@@ -22296,6 +24461,10 @@ snapshots:
type-fest@0.21.3: {}
+ type-fest@0.8.1: {}
+
+ type-fest@4.41.0: {}
+
type-is@1.6.18:
dependencies:
media-typer: 0.3.0
@@ -22303,7 +24472,7 @@ snapshots:
typed-assert@1.0.9: {}
- typescript@5.6.3: {}
+ typescript@5.8.3: {}
undici-types@5.26.5: {}
@@ -22318,8 +24487,6 @@ snapshots:
unicode-property-aliases-ecmascript@2.1.0: {}
- unicorn-magic@0.1.0: {}
-
union@0.5.0:
dependencies:
qs: 6.13.0
@@ -22356,6 +24523,12 @@ snapshots:
escalade: 3.2.0
picocolors: 1.1.1
+ update-browserslist-db@1.1.3(browserslist@4.25.1):
+ dependencies:
+ browserslist: 4.25.1
+ escalade: 3.2.0
+ picocolors: 1.1.1
+
uri-js@4.4.1:
dependencies:
punycode: 2.3.1
@@ -22390,6 +24563,8 @@ snapshots:
validate-npm-package-name@6.0.0: {}
+ varint@6.0.0: {}
+
vary@1.1.2: {}
verror@1.10.0:
@@ -22398,18 +24573,44 @@ snapshots:
core-util-is: 1.0.2
extsprintf: 1.3.0
- vite@5.4.11(@types/node@20.14.15)(less@4.1.3)(sass@1.77.8)(stylus@0.64.0)(terser@5.36.0):
+ vite@6.3.5(@types/node@20.14.15)(jiti@1.21.6)(less@4.1.3)(sass-embedded@1.89.2)(sass@1.88.0)(stylus@0.64.0)(terser@5.39.1)(yaml@2.6.1):
dependencies:
- esbuild: 0.21.5
- postcss: 8.4.49
- rollup: 4.26.0
+ esbuild: 0.25.5
+ fdir: 6.4.6(picomatch@4.0.2)
+ picomatch: 4.0.2
+ postcss: 8.5.3
+ rollup: 4.40.2
+ tinyglobby: 0.2.13
+ optionalDependencies:
+ '@types/node': 20.14.15
+ fsevents: 2.3.3
+ jiti: 1.21.6
+ less: 4.1.3
+ sass: 1.88.0
+ sass-embedded: 1.89.2
+ stylus: 0.64.0
+ terser: 5.39.1
+ yaml: 2.6.1
+ optional: true
+
+ vite@6.3.5(@types/node@20.14.15)(jiti@1.21.6)(less@4.1.3)(sass-embedded@1.89.2)(sass@1.89.2)(stylus@0.64.0)(terser@5.39.1)(yaml@2.6.1):
+ dependencies:
+ esbuild: 0.25.5
+ fdir: 6.4.6(picomatch@4.0.2)
+ picomatch: 4.0.2
+ postcss: 8.5.3
+ rollup: 4.40.2
+ tinyglobby: 0.2.13
optionalDependencies:
'@types/node': 20.14.15
fsevents: 2.3.3
+ jiti: 1.21.6
less: 4.1.3
- sass: 1.77.8
+ sass: 1.89.2
+ sass-embedded: 1.89.2
stylus: 0.64.0
- terser: 5.36.0
+ terser: 5.39.1
+ yaml: 2.6.1
w3c-xmlserializer@4.0.0:
dependencies:
@@ -22419,11 +24620,6 @@ snapshots:
dependencies:
makeerror: 1.0.12
- watchpack@2.4.1:
- dependencies:
- glob-to-regexp: 0.4.1
- graceful-fs: 4.2.11
-
watchpack@2.4.2:
dependencies:
glob-to-regexp: 0.4.1
@@ -22444,7 +24640,18 @@ snapshots:
webidl-conversions@7.0.0: {}
- webpack-dev-middleware@7.4.2(webpack@5.94.0):
+ webpack-dev-middleware@7.4.2(webpack@5.96.1):
+ dependencies:
+ colorette: 2.0.20
+ memfs: 4.11.1
+ mime-types: 2.1.35
+ on-finished: 2.4.1
+ range-parser: 1.2.1
+ schema-utils: 4.2.0
+ optionalDependencies:
+ webpack: 5.96.1
+
+ webpack-dev-middleware@7.4.2(webpack@5.99.8(esbuild@0.25.5)):
dependencies:
colorette: 2.0.20
memfs: 4.11.1
@@ -22453,9 +24660,9 @@ snapshots:
range-parser: 1.2.1
schema-utils: 4.2.0
optionalDependencies:
- webpack: 5.94.0
+ webpack: 5.99.8(esbuild@0.25.5)
- webpack-dev-middleware@7.4.2(webpack@5.96.1(esbuild@0.24.0)):
+ webpack-dev-middleware@7.4.2(webpack@5.99.9):
dependencies:
colorette: 2.0.20
memfs: 4.11.1
@@ -22464,13 +24671,52 @@ snapshots:
range-parser: 1.2.1
schema-utils: 4.2.0
optionalDependencies:
- webpack: 5.96.1(esbuild@0.24.0)
+ webpack: 5.99.9
+
+ webpack-dev-server@5.2.1(webpack@5.99.9):
+ dependencies:
+ '@types/bonjour': 3.5.13
+ '@types/connect-history-api-fallback': 1.5.4
+ '@types/express': 4.17.21
+ '@types/express-serve-static-core': 4.19.5
+ '@types/serve-index': 1.9.4
+ '@types/serve-static': 1.15.7
+ '@types/sockjs': 0.3.36
+ '@types/ws': 8.5.12
+ ansi-html-community: 0.0.8
+ bonjour-service: 1.2.1
+ chokidar: 3.6.0
+ colorette: 2.0.20
+ compression: 1.7.4
+ connect-history-api-fallback: 2.0.0
+ express: 4.21.2
+ graceful-fs: 4.2.11
+ http-proxy-middleware: 2.0.9(@types/express@4.17.21)
+ ipaddr.js: 2.2.0
+ launch-editor: 2.8.1
+ open: 10.1.2
+ p-retry: 6.2.0
+ schema-utils: 4.2.0
+ 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)
+ ws: 8.18.0
+ optionalDependencies:
+ webpack: 5.99.9
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - supports-color
+ - utf-8-validate
- webpack-dev-server@5.0.4(webpack@5.94.0):
+ webpack-dev-server@5.2.2(webpack@5.96.1):
dependencies:
'@types/bonjour': 3.5.13
'@types/connect-history-api-fallback': 1.5.4
'@types/express': 4.17.21
+ '@types/express-serve-static-core': 4.19.5
'@types/serve-index': 1.9.4
'@types/serve-static': 1.15.7
'@types/sockjs': 0.3.36
@@ -22481,36 +24727,34 @@ snapshots:
colorette: 2.0.20
compression: 1.7.4
connect-history-api-fallback: 2.0.0
- default-gateway: 6.0.3
- express: 4.19.2
+ express: 4.21.2
graceful-fs: 4.2.11
- html-entities: 2.5.2
- http-proxy-middleware: 2.0.6(@types/express@4.17.21)
+ http-proxy-middleware: 2.0.9(@types/express@4.17.21)
ipaddr.js: 2.2.0
launch-editor: 2.8.1
open: 10.1.0
p-retry: 6.2.0
- rimraf: 5.0.10
schema-utils: 4.2.0
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.94.0)
+ webpack-dev-middleware: 7.4.2(webpack@5.96.1)
ws: 8.18.0
optionalDependencies:
- webpack: 5.94.0
+ webpack: 5.96.1
transitivePeerDependencies:
- bufferutil
- debug
- supports-color
- utf-8-validate
- webpack-dev-server@5.1.0(webpack@5.94.0):
+ webpack-dev-server@5.2.2(webpack@5.99.9):
dependencies:
'@types/bonjour': 3.5.13
'@types/connect-history-api-fallback': 1.5.4
'@types/express': 4.17.21
+ '@types/express-serve-static-core': 4.19.5
'@types/serve-index': 1.9.4
'@types/serve-static': 1.15.7
'@types/sockjs': 0.3.36
@@ -22521,10 +24765,9 @@ snapshots:
colorette: 2.0.20
compression: 1.7.4
connect-history-api-fallback: 2.0.0
- express: 4.19.2
+ express: 4.21.2
graceful-fs: 4.2.11
- html-entities: 2.5.2
- http-proxy-middleware: 2.0.6(@types/express@4.17.21)
+ http-proxy-middleware: 2.0.9(@types/express@4.17.21)
ipaddr.js: 2.2.0
launch-editor: 2.8.1
open: 10.1.0
@@ -22534,10 +24777,10 @@ snapshots:
serve-index: 1.9.1
sockjs: 0.3.24
spdy: 4.0.2
- webpack-dev-middleware: 7.4.2(webpack@5.94.0)
+ webpack-dev-middleware: 7.4.2(webpack@5.99.9)
ws: 8.18.0
optionalDependencies:
- webpack: 5.94.0
+ webpack: 5.99.9
transitivePeerDependencies:
- bufferutil
- debug
@@ -22560,26 +24803,25 @@ snapshots:
webpack-sources@3.2.3: {}
- webpack-subresource-integrity@5.1.0(webpack@5.94.0):
+ webpack-subresource-integrity@5.1.0(webpack@5.99.8(esbuild@0.25.5)):
dependencies:
typed-assert: 1.0.9
- webpack: 5.94.0
+ webpack: 5.99.8(esbuild@0.25.5)
- webpack-subresource-integrity@5.1.0(webpack@5.96.1(esbuild@0.24.0)):
+ webpack-subresource-integrity@5.1.0(webpack@5.99.9):
dependencies:
typed-assert: 1.0.9
- webpack: 5.96.1(esbuild@0.24.0)
+ webpack: 5.99.9
- webpack@5.88.0:
+ webpack@5.96.1:
dependencies:
'@types/eslint-scope': 3.7.7
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/wasm-edit': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.12.1
- acorn-import-assertions: 1.9.0(acorn@8.12.1)
- browserslist: 4.23.3
+ acorn: 8.14.0
+ browserslist: 4.24.2
chrome-trace-event: 1.0.4
enhanced-resolve: 5.17.1
es-module-lexer: 1.5.4
@@ -22593,23 +24835,24 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(webpack@5.88.0)
- watchpack: 2.4.1
+ terser-webpack-plugin: 5.3.10(webpack@5.96.1)
+ watchpack: 2.4.2
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
- webpack@5.94.0:
+ webpack@5.99.8(esbuild@0.25.5):
dependencies:
- '@types/estree': 1.0.5
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/wasm-edit': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.12.1
- acorn-import-attributes: 1.9.5(acorn@8.12.1)
- browserslist: 4.23.3
+ '@types/eslint-scope': 3.7.7
+ '@types/estree': 1.0.6
+ '@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.14.0
+ browserslist: 4.24.2
chrome-trace-event: 1.0.4
enhanced-resolve: 5.17.1
es-module-lexer: 1.5.4
@@ -22621,23 +24864,24 @@ snapshots:
loader-runner: 4.3.0
mime-types: 2.1.35
neo-async: 2.6.2
- schema-utils: 3.3.0
+ schema-utils: 4.3.2
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(webpack@5.94.0)
- watchpack: 2.4.1
+ terser-webpack-plugin: 5.3.14(esbuild@0.25.5)(webpack@5.99.8(esbuild@0.25.5))
+ watchpack: 2.4.2
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
- esbuild
- uglify-js
- webpack@5.96.1(esbuild@0.24.0):
+ webpack@5.99.9:
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.6
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/wasm-edit': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
+ '@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.14.0
browserslist: 4.24.2
chrome-trace-event: 1.0.4
@@ -22651,10 +24895,10 @@ snapshots:
loader-runner: 4.3.0
mime-types: 2.1.35
neo-async: 2.6.2
- schema-utils: 3.3.0
+ schema-utils: 4.3.2
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(esbuild@0.24.0)(webpack@5.96.1(esbuild@0.24.0))
- watchpack: 2.4.1
+ terser-webpack-plugin: 5.3.14(webpack@5.99.9)
+ watchpack: 2.4.2
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
@@ -22756,16 +25000,27 @@ snapshots:
yargs-parser@21.1.1: {}
+ yargs-parser@22.0.0: {}
+
yargs@17.7.2:
dependencies:
cliui: 8.0.1
- escalade: 3.1.2
+ escalade: 3.2.0
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
y18n: 5.0.8
yargs-parser: 21.1.1
+ yargs@18.0.0:
+ dependencies:
+ cliui: 9.0.1
+ escalade: 3.2.0
+ get-caller-file: 2.0.5
+ string-width: 7.2.0
+ y18n: 5.0.8
+ yargs-parser: 22.0.0
+
yauzl@2.10.0:
dependencies:
buffer-crc32: 0.2.13
@@ -22780,5 +25035,3 @@ snapshots:
yocto-queue@1.1.1: {}
yoctocolors-cjs@2.1.2: {}
-
- zone.js@0.14.10: {}